-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
59 lines (59 loc) · 1.68 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
{
"name": "demvsystems/werte",
"description": "Abbildung von allgemeinen Werten",
"type": "library",
"authors": [
{
"name": "DEMV-Systems",
"email": "[email protected]",
"homepage": "https://github.com/demvsystems"
}
],
"homepage": "https://github.com/demvsystems/werte",
"require": {
"php": "^7.4 || ^8.1",
"ext-json": "*",
"guzzlehttp/psr7": "^1 || ^2"
},
"require-dev": {
"codeception/specify": "^0.4.5",
"doctrine/instantiator": "^1.4",
"ergebnis/composer-normalize": "^2.8",
"php-parallel-lint/php-parallel-lint": "^1.2",
"phpstan/phpstan": "^1",
"phpstan/phpstan-deprecation-rules": "^1",
"phpstan/phpstan-phpunit": "^1",
"phpunit/phpunit": "^7.5 || ^9.5",
"spaceemotion/php-coding-standard": "dev-wip/v1"
},
"autoload": {
"psr-4": {
"Demv\\Http\\": "src/Http",
"Demv\\Utils\\": "src/Utils",
"Demv\\Werte\\": "src/Werte"
}
},
"autoload-dev": {
"psr-4": {
"Demv\\Http\\Tests\\": "tests/Http",
"Demv\\Utils\\Tests\\": "tests/Utils",
"Demv\\Werte\\Tests\\": "tests/Werte"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
},
"platform": {
"php": "7.4"
}
},
"scripts": {
"analyze": "phpcstd",
"coverage": "./vendor/bin/phpunit --coverage-clover=coverage.xml",
"coverage-html": "./vendor/bin/phpunit --coverage-html=coverage",
"test": [
"./vendor/bin/phpunit"
]
}
}