-
-
Notifications
You must be signed in to change notification settings - Fork 51
/
composer.json
96 lines (96 loc) · 2.32 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
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "cedaro/satispress",
"description": "Generate a Composer repository from installed WordPress plugins and themes.",
"keywords": [
"wordpress",
"composer",
"satis"
],
"type": "wordpress-plugin",
"homepage": "https://github.com/cedaro/satispress",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Brady Vercher",
"email": "[email protected]",
"homepage": "https://www.cedaro.com/"
},
{
"name": "Gary Jones",
"homepage": "https://gamajo.com",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/cedaro/satispress/issues",
"source": "https://github.com/cedaro/satispress"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/installers": true
},
"preferred-install": "dist",
"sort-packages": true
},
"prefer-stable": true,
"repositories": {
"wordpress": {
"type": "vcs",
"url": "https://github.com/WordPress/wordpress-develop",
"no-api": true
},
"wp-test-suite": {
"type": "vcs",
"url": "https://github.com/cedaro/wp-test-suite"
}
},
"require": {
"php": ">=8.0",
"cedaro/wp-plugin": "^0.5",
"composer/installers": "^2.0",
"composer/semver": "^3.2",
"pimple/pimple": "^3.5",
"psr/container": "^2.0",
"psr/log": "^2.0"
},
"require-dev": {
"brain/monkey": "^2.2",
"cedaro/wp-test-suite": "dev-develop",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"phpcompatibility/phpcompatibility-wp": "^2",
"phpunit/phpunit": "^8",
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^3.3",
"wordpress/wordpress": "^6.6",
"wp-cli/i18n-command": "dev-main",
"wp-coding-standards/wpcs": "^3"
},
"autoload": {
"psr-4": {
"SatisPress\\": "src/"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"SatisPress\\Test\\": "tests/phpunit/"
}
},
"scripts": {
"install-codestandards": [
"Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin::run"
],
"makepot": "./vendor/bin/wp i18n make-pot . languages/satispress.pot",
"phpcs": "./vendor/bin/phpcs",
"prepare-for-release": [
"composer install",
"composer makepot",
"composer install --no-dev --prefer-dist",
"composer dump-autoload --no-dev --optimize"
],
"test": "./vendor/bin/phpunit --testsuite=Unit --colors=always"
}
}