-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 1.03 KB
/
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
32
33
34
35
36
37
38
39
{
"name": "springdevs/subscription",
"description": "woocommerce subscription",
"type": "wordpress-plugin",
"license": "GPLv2",
"authors": [
{
"name": "https://springdevs.com/",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"require-dev": {
"wp-coding-standards/wpcs": "dev-develop",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"phpcompatibility/phpcompatibility-wp": "dev-master",
"phpstan/phpstan": "1.12.x-dev",
"szepeviktor/phpstan-wordpress": "dev-master",
"php-stubs/woocommerce-stubs": "dev-master",
"symfony/var-dumper": "7.2.x-dev"
},
"scripts": {
"phpcs": "phpcs -p . --standard=PHPCompatibilityWP --ignore=vendor/*",
"phpstan": "phpstan analyse --debug --memory-limit=2048M"
},
"autoload": {
"psr-4": {
"SpringDevs\\Subscription\\": "includes/"
},
"files": [
"includes/functions.php"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}