-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
31 lines (31 loc) · 990 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"name": "colares/my-wonderland",
"description": "Find the best place for you live regarding the music you love",
"type": "project",
"require": {
"vlucas/phpdotenv": "^2.4",
"guzzlehttp/guzzle": "^6.3",
"phpFastCache/phpFastCache": "^6.1",
"twig/twig": "^2.4",
"nikic/fast-route": "^1.3",
"phpunit/phpunit": "^7.1"
},
"license": "MIT",
"authors": [
{
"name": "Thiago Colares",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"MyWonderland\\": "src/",
"MyWonderland\\Domain\\Model\\": "src/domain/model",
"MyWonderland\\Domain\\Manager\\": "src/domain/manager",
"MyWonderland\\Service\\": "src/service",
"MyWonderland\\Controller\\": "src/controller",
"MyWonderland\\Test\\": "src/tests",
"MyWonderland\\Test\\Service\\": "src/tests/service"
}
}
}