mapguesser/composer.json

25 lines
498 B
JSON
Raw Permalink 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",
"phpmailer/phpmailer": "^6.1"
},
2020-06-25 00:27:01 +02:00
"require-dev": {
"phpunit/phpunit": "^9"
},
"autoload": {
"psr-4": {
"MapGuesser\\": "src"
}
},
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
]
}
}