-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
60 lines (60 loc) · 1.66 KB
/
composer.json
File metadata and controls
60 lines (60 loc) · 1.66 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
{
"name": "aegiswp/theme",
"version": "1.0.0-rc.3",
"description": "Aegis — Native Block Framework for WordPress",
"type": "wordpress-theme",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Atmostfear Entertainment",
"homepage": "https://www.atmostfear-entertainment.com/"
}
],
"require": {
"php": ">=8.1",
"enshrined/svg-sanitize": "^0.22",
"psr/container": "^2.0"
},
"require-dev": {
"aegis/wpaudit": "@dev",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"phpunit/phpunit": "^10.5",
"squizlabs/php_codesniffer": "^3.12",
"wp-coding-standards/wpcs": "^3.2"
},
"repositories": [
{
"type": "path",
"url": "tools/wpaudit"
}
],
"autoload": {
"psr-4": {
"Aegis\\": "src/"
},
"files": [
"src/bootstrap.php"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"optimize-autoloader": true,
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true,
"scripts": {
"standards:check": "phpcs",
"standards:fix": "phpcbf",
"analyze": "@standards:check",
"lint": "@standards:check",
"test": "phpunit -c phpunit.xml",
"test:php": "phpunit -c phpunit.xml",
"test:wpaudit": [
"composer install --no-interaction --working-dir=tools/wpaudit",
"@php tools/wpaudit/vendor/bin/phpunit -c tools/wpaudit/phpunit.xml"
]
}
}