-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
60 lines (60 loc) · 1.5 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
51
52
53
54
55
56
57
58
59
60
{
"name": "coisa/service-provider",
"type": "library",
"description": "Interop ServiceProvider utility tools.",
"license": "MIT",
"authors": [
{
"name": "Felipe Sayão Lobato Abreu",
"email": "github@felipeabreu.com.br"
}
],
"require": {
"php": "^7.2|^8.0",
"coisa/exceptions": "^1.0",
"container-interop/service-provider": "^0.4.0",
"psr/container": "^1.0|^2.0"
},
"require-dev": {
"coisa/php-cs-fixer": "^2.0",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpunit/phpunit": "^8.5",
"sensiolabs/security-checker": "^6.0",
"squizlabs/php_codesniffer": "^3.6"
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"autoload": {
"psr-4": {
"CoiSA\\ServiceProvider\\": "src/"
},
"files": [
"config/autoload.php"
]
},
"autoload-dev": {
"psr-4": {
"CoiSA\\ServiceProvider\\Test\\": "tests/"
}
},
"minimum-stability": "stable",
"scripts": {
"check": [
"@lint",
"@test",
"@sniff",
"@cs-check"
],
"cs-check": "php-cs-fixer fix --dry-run --diff",
"cs-fix": "php-cs-fixer fix",
"lint": "parallel-lint --exclude vendor .",
"sniff": "phpcs",
"test": "phpunit --color=always"
}
}