-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
70 lines (70 loc) · 1.57 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
{
"name": "elie29/zend-phpdi-config",
"description": "PSR-11 PHP-DI autowire container configurator for Laminas, Mezzio, ZF2, ZF3 and Zend Expressive applications",
"type": "library",
"license": "MIT",
"minimum-stability": "stable",
"keywords": [
"expressive",
"zf",
"zendframework",
"laminas",
"mezzio",
"php-di",
"di",
"container",
"psr-11"
],
"authors": [
{
"name": "Elie NEHME",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/elie29/zend-di-config/issues",
"source": "https://github.com/elie29/zend-di-config"
},
"require": {
"php": "^8.1",
"laminas/laminas-stdlib": "^3.2",
"php-di/php-di": "^6.3 || ^7.0"
},
"require-dev": {
"laminas/laminas-coding-standard": "^2.1.4",
"mikey179/vfsstream": "^1.6.11",
"mockery/mockery": "^1.0",
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/phpstan": "^1.8",
"phpstan/phpstan-mockery": "^1.1",
"phpunit/phpunit": "^9.0"
},
"autoload": {
"psr-4": {
"Elie\\PHPDI\\Config\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"ElieTest\\PHPDI\\Config\\": "tests"
}
},
"config": {
"sort-packages": true,
"allow-plugins": true
},
"bin": [
"bin/add-autowires-entry"
],
"scripts": {
"check": [
"@cs-check",
"@test"
],
"phpstan": "phpstan analyse src tests --error-format=checkstyle > phpstan.xml || true",
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit",
"test-coverage": "phpunit --coverage-clover clover.xml"
}
}