-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
61 lines (60 loc) · 1.66 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": "slim/slim-skeleton",
"description": "A Slim Framework skeleton application for rapid development",
"keywords": ["microframework", "rest", "router", "psr7"],
"homepage": "http://github.com/slimphp/Slim-Skeleton",
"license": "MIT",
"authors": [
{
"name": "Josh Lockhart",
"email": "[email protected]",
"homepage": "http://www.joshlockhart.com/"
}
],
"require": {
"php": ">=7.1.0",
"slim/slim": "^3.1",
"slim/php-view": "^2.0",
"monolog/monolog": "^1.17",
"slim/twig-view": "^2.4",
"swiftmailer/swiftmailer": "^6.1",
"google/apiclient": "^2.2",
"doctrine/orm": "^2.6",
"egulias/email-validator": "^2.1",
"symfony/event-dispatcher": "^4.1",
"symfony/lock": "^4.1",
"symfony/process": "^4.1",
"symfony/twig-bridge": "^4.1",
"symfony/dotenv": "^4.1",
"slim/flash": "^0.4.0",
"illuminate/database": "^5.7",
"respect/validation": "^1.1",
"phpunit/php-invoker": "^2.0",
"robmorgan/phinx": "^0.10.6",
"gumlet/php-image-resize": "^1.9",
"emanueleminotto/simple-html-dom": "^1.5",
"fabpot/goutte": "^3.2",
"symfony/asset": "^4.3"
},
"require-dev": {
"phpunit/phpunit": "^7"
},
"autoload": {
"classmap": [
"src",
"services"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"process-timeout" : 0
},
"scripts": {
"start": "php -S localhost:8080 -t public",
"test": "phpunit"
}
}