-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
52 lines (52 loc) · 1.42 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
{
"name": "awurth/slim-base",
"description": "Slim PHP Micro-Framework skeleton",
"keywords": ["slim", "eloquent", "twig", "semantic", "framework", "boilerplate", "skeleton"],
"homepage": "https://github.com/awurth/Slim",
"license": "MIT",
"authors": [
{
"name": "Aviq Baihaqy",
"email": "aviq.baihaqy@gmail.com",
"homepage": "https://github.com/baihaqyaviq"
}
],
"autoload": {
"psr-4": {
"App\\": "app/"
}
},
"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": {
"codedungeon/phpunit-result-printer": "^0.6.1",
"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"
}
}