-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
108 lines (107 loc) · 2.77 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
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "pressody/pressody-conductor",
"version": "0.12.0",
"description": "Deliver a smooth, secure existence for a Pressody WP Site.",
"keywords": [
"pressody",
"pixelgrade",
"infrastructure",
"wordpress",
"composer"
],
"type": "wordpress-plugin",
"homepage": "https://github.com/pressody/pressody-conductor",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Vlad Olaru",
"email": "[email protected]",
"homepage": "https://thinkwritecode.com/"
}
],
"support": {
"issues": "https://github.com/pressody/pressody-conductor/issues",
"source": "https://github.com/pressody/pressody-conductor"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"prefer-stable": true,
"repositories": {
"wordpress": {
"type": "vcs",
"url": "https://github.com/WordPress/wordpress-develop",
"no-api": true
}
},
"require": {
"php": "^7.4",
"ext-json": "*",
"automattic/jetpack-constants": "^1.6",
"cedaro/wp-plugin": "^0.4.0",
"chamilo/pclzip": "^2.8",
"composer/composer": "^2.0",
"composer/installers": "^1.0",
"composer/semver": "^3.2",
"gordalina/cachetool": "^6.0",
"hashids/hashids": "^4.1",
"htmlburger/carbon-fields": "^3.2",
"oscarotero/env": "^2.1",
"pimple/pimple": "^3.2",
"psr/container": "^1.0",
"psr/log": "^1.0",
"rmccue/requests": "^1.8",
"vlucas/phpdotenv": "^5.3",
"woocommerce/action-scheduler": "^3.2",
"wp-cli/wp-cli": "*"
},
"require-dev": {
"brain/monkey": "^2.2",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
"phpcompatibility/phpcompatibility-wp": "^2",
"phpunit/phpunit": "^7.5",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^3.3",
"wordpress/wordpress": "^5.6",
"wp-cli/i18n-command": "dev-master",
"wp-coding-standards/wpcs": "^1"
},
"autoload": {
"psr-4": {
"Pressody\\Conductor\\": "src/"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Pressody\\Conductor\\Tests\\": "tests/phpunit/"
},
"files": [
]
},
"extra": {
"installer-paths": {
"vendor/{$vendor}/{$name}/": ["woocommerce/action-scheduler"]
}
},
"scripts": {
"install-codestandards": [
"Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin::run"
],
"phpcs": "./vendor/bin/phpcs",
"tests": "./vendor/bin/phpunit --colors=always",
"tests-unit": "./vendor/bin/phpunit --testsuite=Unit --colors=always",
"tests-integration": "./vendor/bin/phpunit --testsuite=Integration --colors=always",
"makepot": "./vendor/bin/wp i18n make-pot . languages/pressody-conductor.pot",
"prepare-for-release": [
"composer install",
"composer makepot",
"composer install --no-dev --prefer-dist",
"composer dump-autoload --no-dev --optimize"
]
}
}