-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
71 lines (71 loc) · 1.53 KB
/
composer.json
File metadata and controls
71 lines (71 loc) · 1.53 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
{
"name": "roxyapi/roxyapi",
"description": "RoxyAPI for WordPress. Astrology, tarot, numerology, dreams, I Ching, biorhythm, and more.",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"homepage": "https://roxyapi.com",
"authors": [
{
"name": "RoxyAPI",
"homepage": "https://roxyapi.com"
}
],
"support": {
"issues": "https://github.com/RoxyAPI/sdk-wordpress/issues",
"source": "https://github.com/RoxyAPI/sdk-wordpress"
},
"keywords": [
"wordpress",
"wordpress-plugin",
"astrology",
"tarot",
"numerology",
"horoscope",
"iching",
"biorhythm",
"roxyapi"
],
"require": {
"php": ">=7.4"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"yoast/phpunit-polyfills": "^2.0",
"wp-coding-standards/wpcs": "^3.0",
"phpcompatibility/phpcompatibility-wp": "*",
"phpcsstandards/phpcsextra": "*",
"squizlabs/php_codesniffer": "^3.9",
"phpstan/phpstan": "^2.0",
"phpstan/extension-installer": "^1.4",
"szepeviktor/phpstan-wordpress": "^2.0",
"php-stubs/wordpress-stubs": "^6.5"
},
"autoload": {
"psr-4": {
"RoxyAPI\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"RoxyAPI\\Tests\\": "tests/phpunit/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
},
"sort-packages": true,
"platform": {
"php": "8.1.0"
}
},
"scripts": {
"lint": "phpcs",
"lint:fix": "phpcbf",
"format": "phpcbf",
"format:check": "phpcs",
"stan": "phpstan analyze --memory-limit=1G",
"test": "phpunit"
}
}