-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
63 lines (63 loc) · 2.03 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
62
63
{
"name": "oanhnn/slim-skeleton",
"type": "application",
"description": "A skeleton for Slim framework",
"keyworks": ["skeleton", "Slim framework", "micro framework", "Slim", "API", "REST", "RESTful"],
"license": "MIT",
"homepage": "https://github.com/oanhnn/slim-skeleton",
"support": {
"issues": "https://github.com/oanhnn/slim-skeleton/issues",
"source": "https://github.com/oanhnn/slim-skeleton"
},
"authors": [
{
"name": "Oanh Nguyen",
"email": "[email protected]",
"homepage": "https://oanhnn.github.io/"
}
],
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"require": {
"php": ">=5.5.0",
"monolog/monolog": "~1.13",
"slim/slim": "~3.0",
"slim/php-view": "^2.0",
"slim/http-cache": "^0.3.0",
"doctrine/dbal": "^2.5"
},
"require-dev": {
"phpunit/phpunit": "~4.8",
"squizlabs/php_codesniffer": "*"
},
"suggest": {
"monolog/monolog": "Required to use log service provider (~1.13)",
"slim/php-view": "Required to use PHP view service provider (^2.0).",
"slim/twig-view": "Required to use Twig view service provider (^2.0).",
"slim/http-cache": "Required to use http cache service provider (^0.3.0).",
"slim/csrf": "Required to protect CSRF attack by csrf middleware (^0.4.0).",
"slim/flash": "Required to use flash message service provider (^0.1.0)",
"doctrine/dbal": "Required to use Doctrine DBAL service provider (^2.5).",
"cakephp/database": "Required to use CakePHP Database service provider (^3.1)."
},
"config": {
"preferred-install": "dist"
},
"scripts": {
"post-create-project-cmd": [
"App\\Console\\Scripts::postCreateProjectCmd"
],
"test": [
"./vendor/bin/phpcs",
"./vendor/bin/phpunit"
],
"deploy": "./vendor/bin/dep deploy",
"install-gulp": "npm install",
"install-deployer": "@composer require deployer/deployer:^3.3 --dev",
"gulp-run": "node_modules/.bin/gulp",
"server": "php -S 0.0.0.0:8888 -t public public/index.php > /dev/null 2>&1 &"
}
}