-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
51 lines (51 loc) · 1.24 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
{
"name": "owc/zgw-api",
"description": "PHP implementation of the ZGW API, with an optional WordPress integration.",
"license": "EUPL-1.2",
"authors": [
{
"name": "Sander de Kroon",
"email": "[email protected]",
"homepage": "https://www.sanderdekroon.net"
},
{
"name": "Yard | Digital Agency",
"email": "[email protected]",
"homepage": "https://www.yard.nl"
}
],
"type": "library",
"require": {
"php": "^7.4|^8.0",
"php-di/php-di": "^6.0",
"firebase/php-jwt": "^6.1",
"monolog/monolog": "^2"
},
"require-dev": {
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^9.0",
"friendsofphp/php-cs-fixer": "^3.0",
"szepeviktor/phpstan-wordpress": "^1.0"
},
"suggest": {
"cmb2/cmb2": "Adds a settings page in WordPress for configuring clients"
},
"autoload": {
"psr-4": {
"OWC\\ZGW\\": "./src"
},
"files": [
"./helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"OWC\\ZGW\\Tests\\": "./tests/Unit"
}
},
"scripts": {
"test": "clear && ./vendor/bin/phpunit --testsuite 'main' --colors=always",
"format": "vendor/bin/php-cs-fixer fix",
"phpstan": "./vendor/bin/phpstan analyse -c phpstan.neon --memory-limit 1g"
}
}