-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
47 lines (47 loc) · 1.26 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
{
"name": "dhii/services",
"description": "A collection of useful DI service implementations.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Dhii Team",
"email": "development@dhii.co"
}
],
"prefer-stable": true,
"minimum-stability": "dev",
"require": {
"php": "^7.1 | ^8.0",
"psr/container": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^7.0 | ^8.0 | ^9.0",
"codeclimate/php-test-reporter": "<=0.3.2",
"vimeo/psalm": "^4.8",
"slevomat/coding-standard": "^6.0"
},
"autoload": {
"psr-4": {
"Dhii\\Services\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Dhii\\Services\\Tests\\Unit\\": "tests/unit",
"Dhii\\Services\\Tests\\Func\\": "tests/functional",
"Dhii\\Services\\Tests\\Stubs\\": "tests/stubs",
"Dhii\\Services\\Tests\\Helpers\\": "tests/helpers"
}
},
"scripts": {
"test": "phpunit",
"csfix": "php-cs-fixer fix -vvv",
"psalm": "psalm --show-info --threads=8 --diff"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}