forked from ezimuel/zend-expressive-api
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
97 lines (97 loc) · 3.22 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "mezzio/mezzio-skeleton",
"description": "Zend expressive skeleton. Begin developing PSR-15 middleware applications in seconds!",
"type": "project",
"homepage": "https://github.com/mezzio/mezzio-skeleton",
"license": "BSD-3-Clause",
"keywords": [
"skeleton",
"middleware",
"psr",
"psr-7",
"psr-11",
"psr-15",
"zf",
"zendframework",
"mezzio"
],
"config": {
"sort-packages": true
},
"extra": {
"zf": {
"component-whitelist": [
"mezzio/mezzio",
"mezzio/mezzio-helpers",
"mezzio/mezzio-router",
"laminas/laminas-httphandlerrunner",
"mezzio/mezzio-fastroute"
]
}
},
"support": {
"issues": "https://github.com/mezzio/mezzio-skeleton/issues",
"source": "https://github.com/mezzio/mezzio-skeleton",
"rss": "https://github.com/mezzio/mezzio-skeleton/releases.atom",
"slack": "https://zendframework-slack.herokuapp.com",
"forum": "https://discourse.zendframework.com/c/questions/expressive"
},
"require": {
"php": "^7.4",
"roave/security-advisories": "dev-master",
"laminas/laminas-component-installer": "^2.1.1",
"laminas/laminas-config-aggregator": "^1.0",
"laminas/laminas-diactoros": "^2.0",
"mezzio/mezzio": "^3.0.1",
"mezzio/mezzio-helpers": "^5.0",
"laminas/laminas-stdlib": "^3.1",
"laminas/laminas-servicemanager": "^3.3",
"mezzio/mezzio-fastroute": "^3.0",
"laminas/laminas-db": "^2.9.3",
"mezzio/mezzio-problem-details": "^1.0",
"laminas/laminas-hydrator": "^4.0",
"mezzio/mezzio-hal": "^2.0",
"laminas/laminas-paginator": "^2.8.1",
"laminas/laminas-inputfilter": "^2.8.1",
"mezzio/mezzio-authentication": "^1.0",
"mezzio/mezzio-authentication-oauth2": "^2.0",
"laminas/laminas-dependency-plugin": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^7.0.1",
"laminas/laminas-coding-standard": "~2.0.0",
"mezzio/mezzio-tooling": "^1.0",
"laminas/laminas-development-mode": "^3.1"
},
"autoload": {
"psr-4": {
"App\\": "src/App/"
}
},
"autoload-dev": {
"psr-4": {
"AppTest\\": "test/AppTest/"
}
},
"scripts": {
"post-create-project-cmd": [
"@development-enable"
],
"development-disable": "laminas-development-mode disable",
"development-enable": "laminas-development-mode enable",
"development-status": "laminas-development-mode status",
"expressive": "expressive --ansi",
"check": [
"@cs-check",
"@test",
"@analyze"
],
"analyze": "phpstan analyze -l max -c ./phpstan.installer.neon ./src ./config",
"clear-config-cache": "php bin/clear-config-cache.php",
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"serve": "php -S 0.0.0.0:8080 -t public/",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
}
}