-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
50 lines (50 loc) · 1.34 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
{
"name": "jsoumelidis/zend-sf-di-config",
"description": "PSR-11 Symfony DI container configurator for ZF and Expressive applications",
"license": "BSD-3-Clause",
"keywords": [
"expressive",
"zf",
"zendframework",
"symfony di",
"container",
"psr-11"
],
"config": {
"sort-packages": true
},
"require": {
"php": ">=7.1",
"symfony/dependency-injection": "^3.4 || ^4.4.9 || ^5.0.9"
},
"require-dev": {
"laminas/laminas-coding-standard": "~2.1.2",
"laminas/laminas-container-config-test": "^0.4.0 || 0.4.x-dev",
"phpspec/prophecy-phpunit": "^2.0.1",
"phpunit/phpunit": ">=9.3.0",
"symfony/config": "^4.4.9 || ^5.0.9"
},
"autoload": {
"psr-4": {
"JSoumelidis\\SymfonyDI\\Config\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"JSoumelidisTest\\SymfonyDI\\Config\\": "test"
}
},
"suggest": {
"symfony/config": "Required for symfony DI dumping functionality"
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
}
}