This repository was archived by the owner on Jan 2, 2020. It is now read-only.
forked from MichaelGooden/phpstan-zend-mvc
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
60 lines (60 loc) · 1.65 KB
/
Copy pathcomposer.json
File metadata and controls
60 lines (60 loc) · 1.65 KB
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
{
"name": "slam/phpstan-zend-framework",
"type": "phpstan-extension",
"description": "Zend Framework 3 MVC controller plugin extension for PHPStan.",
"license": "MIT",
"authors": [
{
"name": "Greg Bell",
"email": "greg@bitwombat.com.au"
},
{
"name": "Michael Gooden",
"email": "me@michaelgooden.net"
},
{
"name": "Filippo Tessarotto",
"email": "zoeslam@gmail.com"
}
],
"require": {
"php": "^7.1",
"phpstan/phpstan": "^0.11.8",
"zendframework/zend-mvc": "^3.1"
},
"require-dev": {
"phpstan/phpstan-phpunit": "^0.11",
"phpunit/phpunit": "^7.5",
"roave/security-advisories": "dev-master",
"slam/php-cs-fixer-extensions": "^1.17",
"slam/php-debug-r": "^1.4",
"zendframework/zend-cache": "^2.8",
"zendframework/zend-filter": "^2.9",
"zendframework/zend-form": "^2.14",
"zendframework/zend-hydrator": "^2.4 || ^3.0",
"zendframework/zend-i18n": "^2.9",
"zendframework/zend-inputfilter": "^2.10",
"zendframework/zend-log": "^2.10",
"zendframework/zend-mail": "^2.10",
"zendframework/zend-mvc": "^3.1",
"zendframework/zend-paginator": "^2.8",
"zendframework/zend-validator": "^2.12"
},
"extra": {
"phpstan": {
"includes": [
"extension.neon"
]
}
},
"autoload": {
"psr-4": {
"ZendPhpStan\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/"
]
}
}