-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
31 lines (31 loc) · 904 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
{
"name": "cyruscollier/wp-test",
"description": "A framework for running unit and integration tests on WordPress",
"keywords": ["wordpress", "test-driven development", "phpspec", "phpunit"],
"homepage": "http://github.com/cyruscollier/wp-test",
"type": "library",
"authors": [
{
"name": "Cyrus Collier",
"email": "web@cyruscollier.com",
"homepage": "http://www.collierwebdesign.com"
}
],
"license": "MIT",
"require": {
"wp-phpunit/wp-phpunit": "^6.7",
"phpunit/phpunit": "^9.6.21",
"symfony/console": "^7.2|^6.4|^5.4",
"symfony/yaml": "^7.2|^6.4|^5.4",
"yoast/phpunit-polyfills": "^3.0"
},
"autoload": {
"psr-4": {
"WPTest\\": "src/"
}
},
"bin": ["bin/wp-test"],
"extra": {
"wordpress-install-dir": "wordpress"
}
}