-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
63 lines (63 loc) · 1.96 KB
/
Copy pathcomposer.json
File metadata and controls
63 lines (63 loc) · 1.96 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
{
"name": "starisian/sparxstar-gluon",
"description": "A WordPress plugin template by Starisian Technologies with PSR-4 autoloading and modular architecture.",
"license": "proprietary",
"authors": [
{
"name": "Max Barrett",
"email": "support@starisian.com",
"homepage": "https://www.starisian.com"
}
],
"require": {
"php": "^8.2",
"composer/installers": "^2.3",
"wordpress/abilities-api": "^0.4.0",
"wordpress/mcp-adapter": "^0.4.1"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^1",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^1",
"phpunit/phpunit": "^10",
"rector/rector": "^1.2",
"squizlabs/php_codesniffer": "^3",
"szepeviktor/phpstan-wordpress": "^1.3",
"wp-coding-standards/wpcs": "^3"
},
"autoload": {
"psr-4": {
"Starisian\\Sparxstar\\Gluon\\": "src",
"Starisian\\Sparxstar\\Gluon\\": "src/"
}
},
"scripts": {
"lint:php": "phpcs -q",
"fix:php": "phpcbf",
"analyze:php": "phpstan analyse -c phpstan.neon.dist --no-progress",
"test:php": "phpunit",
"refactor:php": "vendor/bin/rector process --dry-run",
"refactor:php:fix": "vendor/bin/rector process",
"post-install-cmd": [
"@composer dump-autoload"
],
"post-update-cmd": [
"@composer dump-autoload"
]
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"installer-name": "starisian-plugin-template"
}
}