-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.32 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "louis-cuny/Xavier",
"description": "Xavier - Robot",
"homepage": "https://github.com/louis-cuny/Xavier",
"authors": [
{
"name": "Louis Cuny",
"email": "[email protected]",
"homepage": "https://github.com/louis-cuny"
},{
"name": "Luc Andre"
},{
"name": "Allan Demarbre"
}
],
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require": {
"php": "^7.0",
"awurth/slim-helpers": "^1.0",
"awurth/slim-validation": "^3.0",
"cartalyst/sentinel": "^2.0",
"illuminate/database": "^5.4",
"illuminate/events": "^5.4",
"monolog/monolog": "^1.23",
"respect/validation": "^1.1",
"slim/csrf": "^0.8.1",
"slim/flash": "^0.2.0",
"slim/slim": "^3.8",
"slim/twig-view": "^2.3",
"symfony/console": "^3.3",
"symfony/dotenv": "^3.0",
"symfony/http-foundation": "^3.3"
},
"require-dev": {
"phpunit/phpunit": "^4.8|^5.0|^6.0"
},
"config": {
"sort-packages": true
},
"scripts": {
"start": "php -S 0.0.0.0:8080 -t public",
"test": "phpunit"
}
}