rvr-nextgen/composer.json

31 lines
594 B
JSON
Raw Permalink Normal View History

2023-04-08 00:42:55 +02:00
{
"name": "esoko/rvr",
"type": "project",
"description": "RVR Application",
"license": "GNU AGPL 3.0",
"repositories": [
{
"url": "https://git.esoko.eu/esoko/soko-web.git",
"type": "git"
}
],
"require": {
2023-09-28 14:30:13 +02:00
"esoko/soko-web": "0.15",
2023-04-08 19:06:14 +02:00
"firebase/php-jwt": "^6.4"
2023-04-08 00:42:55 +02:00
},
"require-dev": {
2023-09-27 21:27:34 +02:00
"phpunit/phpunit": "^10.3",
2023-04-08 00:42:55 +02:00
"phpstan/phpstan": "^1.10"
},
"autoload": {
"psr-4": {
"RVR\\": "src"
}
},
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
]
}
}