-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
38 lines (38 loc) · 999 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
{
"name": "plugin/bw-besluiten",
"description": "Burgermeesters en Wethouders Besluiten Plugin",
"authors": [
{
"name": "Yard | Digital Agency",
"email": "[email protected]",
"homepage": "https://www.yard.nl"
}
],
"type": "wordpress-plugin",
"repositories": [],
"require": {
"php": ">=7.0"
},
"require-dev": {
"10up/wp_mock": "dev-master",
"friendsofphp/php-cs-fixer": "^2.0",
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^8.0",
"szepeviktor/phpstan-wordpress": "^0.7.0"
},
"autoload": {
"psr-4": {
"OWC\\Besluiten\\": "./src/Besluiten"
}
},
"autoload-dev": {
"psr-4": {
"OWC\\Besluiten\\Tests\\": "./tests/Unit"
}
},
"scripts": {
"test": "clear && ./vendor/bin/phpunit --testsuite 'Unit Test Suite' --colors=always",
"format": "vendor/bin/php-cs-fixer fix",
"phpstan": "./vendor/bin/phpstan analyse"
}
}