-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1 KB
/
Copy pathcomposer.json
File metadata and controls
41 lines (41 loc) · 1 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
{
"name": "wpify/model",
"description": "WPify Model",
"type": "library",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Daniel Mejta",
"email": "daniel@mejta.net"
}
],
"autoload": {
"psr-4": {
"Wpify\\Model\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Wpify\\Model\\Tests\\": "tests/"
}
},
"scripts": {
"test": "wp-env run tests-cli --env-cwd=wp-content/wpify-model vendor/bin/phpunit",
"test:multisite": "wp-env run tests-cli --env-cwd=wp-content/wpify-model vendor/bin/phpunit -c phpunit-multisite.xml",
"test:coverage": "wp-env run tests-cli --env-cwd=wp-content/wpify-model vendor/bin/phpunit --coverage-clover coverage.xml"
},
"require": {
"php": ">=8.0.0"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"yoast/phpunit-polyfills": "^1.1",
"roots/wordpress": "~7.0.2",
"wp-phpunit/wp-phpunit": "~7.0.2"
},
"config": {
"allow-plugins": {
"roots/wordpress-core-installer": true
}
}
}