-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
71 lines (71 loc) · 2.11 KB
/
composer.json
File metadata and controls
71 lines (71 loc) · 2.11 KB
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
61
62
63
64
65
66
67
68
69
70
71
{
"name": "digipolisgent/api-client",
"description": "This package provides interfaces and abstract implementations to create an API client.",
"license": "MIT",
"type": "library",
"keywords": [
"api",
"client",
"digipolisgent",
"district09"
],
"authors": [
{
"name": "Peter Decuyper",
"email": "peter.decuyper@district09.gent"
},
{
"name": "Jelle Sebreghts",
"email": "sebreghts.jelle@district09.gent"
},
{
"name": "Lennart Van Vaerenbergh",
"email": "lennart.vanvaerenbergh@district09.gent"
}
],
"homepage": "https://github.com/digipolisgent/php_package_api-client",
"require": {
"php": "^7.4 || ^8.0",
"ext-json": "*",
"guzzlehttp/guzzle": "^6.5 || ^7.0",
"jumbojett/openid-connect-php": "^1",
"psr/http-message": "^1.0",
"psr/simple-cache": "^1.0"
},
"require-dev": {
"district09/qa-php": "^1.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"DigipolisGent\\API\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DigipolisGent\\Tests\\API\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"phpro/grumphp-shim": true
}
},
"extra": {
"grumphp": {
"config-default-path": "vendor/district09/qa-php/configs/grumphp.yml"
}
},
"scripts": {
"post-install-cmd": "vendor/bin/grumphp git:init",
"coverage": "vendor/bin/phpunit --configuration=phpunit.qa-php.xml --coverage-html build/coverage",
"grumphp": "vendor/bin/grumphp run",
"phpcpd": "vendor/bin/grumphp run --tasks=phpcpd",
"phpcs": "vendor/bin/grumphp run --tasks=phpcs",
"phpmd": "vendor/bin/grumphp run --tasks=phpmd",
"phpstan": "vendor/bin/grumphp run --tasks=phpstan",
"phpunit": "vendor/bin/phpunit --configuration=phpunit.qa-php.xml"
}
}