mapguesser/composer.json

31 lines
613 B
JSON
Raw Normal View History

{
"name": "esoko/mapguesser",
"type": "project",
"description": "MapGuesser Application",
"license": "GNU GPL 3.0",
2023-04-07 20:27:26 +02:00
"repositories": [
{
"url": "https://git.esoko.eu/esoko/soko-web.git",
"type": "git"
}
],
"require": {
2023-05-02 13:18:03 +02:00
"esoko/soko-web": "0.10",
2021-03-20 15:50:55 +01:00
"fzaninotto/faker": "^1.9"
},
2020-06-25 00:27:01 +02:00
"require-dev": {
2023-04-07 20:27:26 +02:00
"phpunit/phpunit": "^9.6",
"phpstan/phpstan": "^1.10"
2020-06-25 00:27:01 +02:00
},
"autoload": {
"psr-4": {
"MapGuesser\\": "src"
}
},
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
]
}
}