-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 1.02 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
{
"name": "dannymeyer/laminas-di-helper",
"license": "MIT",
"type": "library",
"description": "DI helper",
"authors": [
{
"name": "Danny Meyer",
"email": "[email protected]",
"role": "Developer"
}
],
"autoload": {
"classmap": [
"src/"
]
},
"autoload-dev": {
"classmap": [
"test/"
]
},
"require": {
"laminas/laminas-di": "^3.1",
"laminas/laminas-servicemanager": "^3.4",
"laminas/laminas-config-aggregator": "^1.2",
"laminas/laminas-stdlib": "^3.2"
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"symplify/easy-coding-standard": "^7.1"
},
"scripts": {
"check-codestyle": [
"cd vendor/bin && ecs check ../../src --set psr12",
"cd vendor/bin && ecs check ../../test --set psr12"
],
"check-tests": [
"cd vendor/bin && phpunit -c ../../config/phpunit.xml"
]
}
}