-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
69 lines (69 loc) · 1.56 KB
/
composer.json
File metadata and controls
69 lines (69 loc) · 1.56 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
61
62
63
64
65
66
67
68
69
{
"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": "elie29@gmail.com"
}
],
"support": {
"issues": "https://github.com/elie29/zend-di-config/issues",
"source": "https://github.com/elie29/zend-di-config"
},
"require": {
"php": "^8.2",
"laminas/laminas-stdlib": "^3.12",
"php-di/php-di": "^7.0"
},
"require-dev": {
"mikey179/vfsstream": "^1.6",
"phpunit/phpunit": "^11.0",
"phpro/grumphp": "^2.0"
},
"autoload": {
"psr-4": {
"Elie\\PHPDI\\Config\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"ElieTest\\PHPDI\\Config\\": "tests"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpro/grumphp": true
},
"optimize-autoloader": true,
"platform": {
"php": "8.2"
}
},
"bin": [
"bin/add-autowires-entry"
],
"scripts": {
"test": "phpunit --color=always --display-deprecations --display-errors --display-warnings --no-coverage",
"test-coverage": "@php -d xdebug.mode=coverage vendor/bin/phpunit --display-phpunit-deprecations --color=always",
"cover": [
"@test-coverage",
"php -S localhost:5001 -t build/coverage"
]
}
}