-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
63 lines (62 loc) · 1.75 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": "saeven/zf3-circlical-autowire",
"description": "Annotation based routing, and magic Controller creation for Laminas and ZF3.",
"type": "library",
"license": "MPL-2.0",
"homepage": "https://github.com/Saeven/zf3-circlical-autowire",
"keywords": [
"router",
"laminas",
"autowire",
"zf3",
"annotation",
"acl",
"controller"
],
"authors": [
{
"name": "Alexandre Lemaire",
"email": "[email protected]",
"homepage": "http://circlical.com/",
"role": "Paper Stapler"
}
],
"minimum-stability": "dev",
"require": {
"php": "~8.0.12 || ~8.1.0 || ~8.2.0 || ~8.3.0",
"laminas/laminas-mvc": "^3.3",
"laminas/laminas-servicemanager": "^3.11",
"laminas/laminas-eventmanager": "^3.4",
"laminas/laminas-router": "^3.5",
"laminas/laminas-form": "*",
"laminas/laminas-modulemanager": "*",
"laminas/laminas-validator": "*",
"laminas/laminas-config": "^3.7",
"laminas/laminas-cli": "^1.4.0",
"doctrine/annotations": "^1.13.0",
"roave/better-reflection": "^4.12 | ^5.4 | ^6.24",
"psr/container": "*"
},
"require-dev": {
"phpspec/phpspec": "6.1.* | ^7.0.1 | ^7.2.0",
"friends-of-phpspec/phpspec-code-coverage": "@stable",
"codacy/coverage": "dev-master",
"phpstan/phpstan": "^1.10",
"laminas/laminas-coding-standard": "^2.3.0"
},
"autoload": {
"psr-4": {
"CirclicalAutoWire\\": "src/CirclicalAutoWire"
}
},
"scripts": {
"cs": "mkdir -p tmp && vendor/bin/phpcs",
"stan": "vendor/bin/phpstan analyse -c ./phpstan.neon --memory-limit 1G --xdebug --ansi -vvv src",
"spec": "vendor/bin/phpspec run"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}