-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
41 lines (41 loc) · 1.01 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
{
"name": "opsway/laminas-service-manager-attributes",
"description": "Laminas service manager attributes based config builder",
"type": "library",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "OpsWay",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"laminas/laminas-servicemanager": "^3.6 || ^4.1"
},
"require-dev": {
"opsway/psr12-strict-coding-standard": "^1.1",
"phpunit/phpunit": "^9.5 || ^10.5",
"psalm/plugin-phpunit": "^0.19.0",
"vimeo/psalm": "^4.22 || ^5.22"
},
"autoload": {
"psr-4": {
"OpsWay\\Laminas\\ServiceManager\\Attributes\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"OpsWay\\Tests\\": "tests/"
}
},
"scripts": {
"cs-check": "phpcs",
"cs-fix": "phpcbf"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
}
}