-
Notifications
You must be signed in to change notification settings - Fork 26
/
composer.json
61 lines (61 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
54
55
56
57
58
59
60
61
{
"name": "awurth/slim-base",
"description": "Slim PHP Micro-Framework skeleton",
"keywords": [
"slim",
"eloquent",
"twig",
"bootstrap",
"framework",
"boilerplate",
"skeleton"
],
"homepage": "https://github.com/awurth/Slim",
"license": "MIT",
"authors": [
{
"name": "Alexis Wurth",
"email": "awurth.dev@gmail.com",
"homepage": "https://github.com/awurth"
}
],
"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.0",
"slim/flash": "^0.2.0",
"slim/slim": "^3.0",
"slim/twig-view": "^2.0",
"symfony/console": "^3.0|^4.0",
"symfony/dotenv": "^3.0|^4.0",
"symfony/http-foundation": "^3.0|^4.0"
},
"require-dev": {
"codedungeon/phpunit-result-printer": "^0.6.1",
"phpunit/phpunit": "^4.8|^5.0|^6.0",
"symfony/var-dumper": "^4.1"
},
"config": {
"sort-packages": true
},
"scripts": {
"start": "php -S 0.0.0.0:8080 -t public",
"test": "phpunit"
}
}