-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
80 lines (80 loc) · 1.92 KB
/
composer.json
File metadata and controls
80 lines (80 loc) · 1.92 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "rtcamp/oneaccess",
"type": "wordpress-plugin",
"authors": [
{
"name": "rtCamp",
"email": "marketing@rtcamp.com",
"homepage": "https://rtcamp.com"
}
],
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true,
"composer/installers": true
},
"platform": {
"php": "8.0"
},
"sort-packages": true,
"preferred-install": "dist"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"installer-paths": {
"vendor/{$vendor}/{$name}/": [
"wpackagist-plugin/plugin-check",
"woocommerce/action-scheduler"
]
}
},
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org",
"only": [
"wpackagist-plugin/*",
"wpackagist-theme/*"
]
}
],
"autoload": {
"psr-4": {
"OneAccess\\": "inc/"
},
"files": [
"vendor/woocommerce/action-scheduler/action-scheduler.php"
]
},
"require": {
"php": "^8",
"woocommerce/action-scheduler": "^3.9.3"
},
"require-dev": {
"automattic/vipwpcs": "^3.0",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"phpcompatibility/php-compatibility": "^10.0.0-alpha",
"phpcompatibility/phpcompatibility-wp": "^3.0.0-alpha",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan-deprecation-rules": "^2.0.3",
"phpstan/phpstan-phpunit": "^2.0.3",
"phpstan/phpstan": "^2.1.22",
"phpunit/phpunit": "^8.5|^9.6",
"slevomat/coding-standard": "^8.0",
"squizlabs/php_codesniffer": "^3.9",
"szepeviktor/phpstan-wordpress": "^2.0.2",
"wp-coding-standards/wpcs": "^3.1",
"wp-phpunit/wp-phpunit": "^6.5",
"wpackagist-plugin/plugin-check": "~1.6.0",
"yoast/phpunit-polyfills": "^4.0"
},
"scripts": {
"format": "phpcbf",
"lint": "phpcs",
"phpstan": "phpstan analyse --memory-limit=1G",
"test": "vendor/bin/phpunit -c phpunit.xml.dist",
"test-multisite": "WP_MULTISITE=1 phpunit --exclude-group=ms-excluded"
}
}