-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
48 lines (48 loc) · 1.11 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
{
"name": "plugin/openpub-internal-data",
"description": "OpenPub Internal Data Plugin",
"authors": [
{
"name": "Yard | Digital Agency",
"email": "[email protected]",
"homepage": "https://www.yard.nl"
}
],
"type": "wordpress-plugin",
"repositories": [
{
"type": "vcs",
"url": "[email protected]:OpenWebconcept/plugin-openpub-base.git"
},
{
"type": "composer",
"url": "https://wpackagist.org"
}
],
"require": {
"php": "^7.0|^8.0",
"plugin/openpub-base": "^3.0",
"wpackagist-plugin/cmb2": "2.11.*"
},
"require-dev": {
"mockery/mockery": "^1.5",
"phpunit/phpunit": "^9.0",
"10up/wp_mock": "~0.5",
"friendsofphp/php-cs-fixer": "^2.18"
},
"autoload-dev": {
"psr-4": {
"OWC\\PUB\\InternalData\\": "./src/InternalData",
"OWC\\PUB\\InternalData\\Tests\\": "./tests"
}
},
"scripts": {
"test": "clear && ./vendor/bin/phpunit --testsuite 'Unit Test Suite' --colors=always",
"format": "vendor/bin/php-cs-fixer fix"
},
"config": {
"allow-plugins": {
"composer/installers": true
}
}
}