mapguesser/composer.json

27 lines
565 B
JSON
Raw Normal View History

{
"name": "esoko/mapguesser",
"type": "project",
"description": "MapGuesser Application",
"license": "GNU GPL 3.0",
"require": {
2020-06-02 22:11:51 +02:00
"vlucas/phpdotenv": "^4.1",
2020-06-14 17:14:41 +02:00
"symfony/console": "^5.1",
2021-03-20 15:50:55 +01:00
"phpmailer/phpmailer": "^6.1",
"fzaninotto/faker": "^1.9"
},
2020-06-25 00:27:01 +02:00
"require-dev": {
2020-07-05 21:35:49 +02:00
"phpunit/phpunit": "^9",
"phpstan/phpstan": "^0.12.32"
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');\""
]
}
}