-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 936 Bytes
/
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": "spacetab-io/obelix",
"description": "Reads an array with dot-notation and asterix (wildcard).",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "roquie",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4"
},
"require-dev": {
"infection/infection": "^0.26.0",
"phpstan/phpstan": "^1.3.3",
"phpunit/phpunit": "^9",
"symfony/var-dumper": "^5.0"
},
"autoload": {
"psr-4": {
"Spacetab\\Obelix\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Spacetab\\Tests\\Obelix\\": "tests"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": true
}
},
"archive": {
"exclude": ["obelix.jpg"]
},
"scripts": {
"check": [
"phpunit --stop-on-fail --coverage-text",
"phpstan analyse src --level 8",
"infection --threads=4 -s"
]
}
}