-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
33 lines (32 loc) · 983 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
32
33
{
"name": "u311/carexperiment",
"description": "Car Experiment Game.",
"authors": [
{
"name": "Ofer Tchernichovski",
"email": "[email protected]"
},
{
"name": "Daniel Fimiarz",
"email": "[email protected]"
}
],
"require": {
"symfony/http-foundation": "v2.7.5",
"twig/twig": "v1.22.2",
"symfony/yaml": "v2.7.5",
"google/recaptcha": "1.1.2"
},
"require-dev":{
"phpunit/phpunit": "4.8.*"
},
"autoload": {
"psr-4": {
"u311\\carexperiment\\view\\": "u311/carexperiment/view/",
"u311\\carexperiment\\ctrl\\": "u311/carexperiment/ctrl/",
"u311\\carexperiment\\config\\": "u311/carexperiment/config/",
"u311\\carexperiment\\component\\": "u311/carexperiment/component/",
"u311\\carexperiment\\model\\": "u311/carexperiment/model/"
}
}
}