-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
55 lines (55 loc) · 1.39 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
{
"name": "afshinpersian/afshlim_framework",
"description": "Slim fullstack framework in my way!",
"type": "project",
"license": "MIT",
"keywords": [
"PHP",
"Slim",
"Framework",
"Skeleton",
"Blade",
"Eloquent",
"Command Line",
"Flash",
"VarDumper",
"cli-tool",
"console",
"phpunit",
"Modular",
"Json APi"
],
"require": {
"php": ">= 7.0.0",
"slim/slim": "^3.0",
"vlucas/phpdotenv": "^2.4",
"illuminate/database": "~5.5",
"illuminate/pagination":"~5.5.0",
"slim/flash": "^0.4.0",
"slim/csrf": "^0.8.2",
"monolog/monolog": "^1.23",
"buchin/slim-blade-view":"dev-master",
"runcmf/runtracy": "^0.2.3",
"symfony/console": "^3.3",
"davedevelopment/phpmig": "^1.4",
"zeuxisoo/slim-whoops": "0.6.*",
"zhangshize/slim-facades": "^1.1",
"davidepastore/slim-validation": "^0.5.0",
"swiftmailer/swiftmailer": "^6.0",
"gregwar/image": "2.*"
},
"require-dev": {
"phpunit/phpunit": "5.4.*",
"symfony/process": "2.*"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Core\\": "core/"
}
},
"scripts": {
"start": "php -S localhost:7000 -t public/",
"test": "phpunit"
}
}