-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
67 lines (67 loc) · 1.59 KB
/
composer.json
File metadata and controls
67 lines (67 loc) · 1.59 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
{
"name": "saltus/framework",
"type": "project",
"license": "GPL-3.0-only",
"description": "",
"homepage": "https://saltus.io/",
"authors": [
{
"name": "Saltus Plugin Framework",
"email": "web@saltus.io",
"homepage": "https://saltus.io/"
}
],
"keywords": [
"wordpress", "composer", "vagrant", "wp"
],
"repositories": {
"0": {
"type": "composer",
"url": "https://wpackagist.org"
}
},
"autoload": {
"psr-4": {
"Saltus\\WP\\Framework\\": "src/"
},
"classmap": [
"lib/codestar-framework/"
]
},
"autoload-dev": {
"psr-4": {
"Saltus\\WP\\Framework\\Tests\\": "tests/"
}
},
"require": {
"php": ">=7.4",
"hassankhan/config": "^3.2.0"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"digitalrevolution/php-codesniffer-baseline": "^1.1.2",
"php-stubs/woocommerce-stubs": "^10.6.2",
"php-stubs/wordpress-stubs": "^6.7",
"phpcompatibility/phpcompatibility-wp": "*",
"phpstan/extension-installer": "^1.3",
"phpunit/phpunit": "^12.5.15",
"squizlabs/php_codesniffer": "^3.9",
"szepeviktor/phpstan-wordpress": "^2.1",
"wp-coding-standards/wpcs": "^3.1",
"yoast/phpunit-polyfills": "^4.0"
},
"scripts": {
"test": "./vendor/bin/phpunit -c phpunit.xml",
"phpstan": "./vendor/bin/phpstan analyse --memory-limit=2G",
"phpcs": "./vendor/bin/phpcs --standard=phpcs.xml"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true,
"digitalrevolution/php-codesniffer-baseline": true
}
}
}