-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
executable file
·51 lines (51 loc) · 1.03 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": "rozklad/acf-field-type-json",
"type": "wordpress-plugin",
"license": "MIT",
"description": "Advanced Custom Fields - JSON",
"homepage": "https://rozklad.dev",
"authors": [
{
"name": "rozklad",
"email": "[email protected]",
"homepage": "https://rozklad.dev"
},
{
"name": "mattluk",
"email": "[email protected]"
}
],
"keywords": [
"wordpress",
"acf"
],
"require": {
"php": "^7.2|^8.0",
"composer/installers": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "^7|^8",
"yoast/phpunit-polyfills": "^1.0",
"mockery/mockery": "1.2",
"brain/monkey": "2.*"
},
"autoload": {
"psr-4": {
"AcfFieldTypeJson\\": "./src"
}
},
"autoload-dev": {
"psr-4": {
"AcfFieldTypeJson\\Tests\\": "./tests"
}
},
"config": {
"allow-plugins": {
"composer/installers": true
}
},
"scripts": {
"test": "phpunit --config=phpunit-unit.xml",
"test:wordpress": "phpunit --config=phpunit-integration.xml"
}
}