-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
59 lines (59 loc) · 2.07 KB
/
composer.json
File metadata and controls
59 lines (59 loc) · 2.07 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "kraftbj/beer-slurper",
"description": "Slurp data from Untappd into your site!",
"type": "wordpress-plugin",
"keywords": [],
"homepage": "https://kraft.im/",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Brandon Kraft",
"email": "public@brandonkraft.com",
"homepage": "https://kraft.im/",
"role": "Developer"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"automattic/jetpack-autoloader": true,
"roots/wordpress-core-installer": true
}
},
"require": {
"php": ">=7.4",
"woocommerce/action-scheduler": "^3.9",
"automattic/jetpack-autoloader": "^5.0"
},
"require-dev": {
"phpunit/phpunit" : "^9.6",
"brianium/paratest" : "^6.11",
"automattic/wordbless" : "^0.6",
"yoast/phpunit-polyfills" : "^3.0"
},
"scripts": {
"post-install-cmd": "WorDBless\\Composer\\InstallDropin::copy",
"post-update-cmd": "WorDBless\\Composer\\InstallDropin::copy",
"test": "phpunit",
"test:all": "phpunit --testsuite all",
"test:unit": "phpunit --testsuite unit",
"test:integration": "phpunit --testsuite integration",
"test:e2e": "phpunit --testsuite e2e",
"test:cli": "phpunit --testsuite cli",
"test:core": "phpunit --testsuite core",
"test:api": "phpunit --filter API_Tests",
"test:oauth": "phpunit --filter OAuth_Tests",
"test:post": "phpunit --filter Post_Tests",
"test:checkin": "phpunit --filter Checkin_Tests",
"test:brewery": "phpunit --filter Brewery_Tests",
"test:venue": "phpunit --filter Venue_Tests",
"test:badge": "phpunit --filter Badge_Tests",
"test:companion": "phpunit --filter Companion_Tests",
"test:queue": "phpunit --filter Queue_Tests",
"test:import": "phpunit --filter Import_Tests",
"test:cpt": "phpunit --filter CPT_Tests",
"test:admin": "phpunit --filter Admin_Tests",
"test:coverage": "phpunit --coverage-html coverage"
}
}