-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
59 lines (59 loc) · 1.33 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
{
"name": "dev-pledge/slim-skeleton",
"description": "A Slim Framework skeleton application for rapid development with Docker And Swoole Using Domain Driven Development DDD",
"keywords": [
"microframework",
"rest",
"router",
"psr7",
"swoole",
"domain driven development",
"docker",
"Framework Application Domain"
],
"homepage": "https://github.com/Dev-Pledge/SlimSkeleton",
"license": "MIT",
"authors": [
{
"name": "Tom Wright",
"email": "[email protected]"
},
{
"name": "John Saunders",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5.0",
"slim/slim": "^3.1",
"slim/php-view": "^2.0",
"monolog/monolog": "^1.17",
"tomwright/extended-pdo": "^1.0",
"tomwright/json": "^1.0",
"vlucas/phpdotenv": "^2.4",
"sentry/sentry": "^1.8",
"dev-pledge/slim-integrations": "dev-master"
},
"require-dev": {
"phpunit/phpunit": ">=4.8 < 6.0",
"eaglewu/swoole-ide-helper": "dev-master"
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"autoload": {
"psr-4": {
"DevPledge\\": "src/"
}
},
"config": {
"process-timeout": 0
},
"scripts": {
"start-docker": "docker-compose up",
"start-php": "php -S localhost:8080 -t public index.php",
"test": "phpunit"
}
}