-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
103 lines (103 loc) · 2.72 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
{
"name": "pressody/pressody-retailer",
"version": "0.16.0",
"description": "Define and manage Pressody (PD) solutions to be purchased and used on customers' websites.",
"keywords": [
"pressody",
"infrastructure",
"wordpress",
"composer"
],
"type": "wordpress-plugin",
"homepage": "https://github.com/pressody/pressody-retailer",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Vlad Olaru",
"email": "[email protected]",
"homepage": "https://thinkwritecode.com/"
}
],
"support": {
"issues": "https://github.com/pressody/pressody-retailer/issues",
"source": "https://github.com/pressody/pressody-retailer"
},
"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",
"berlindb/core": "^2.0",
"cedaro/wp-plugin": "^0.4.0",
"chamilo/pclzip": "^2.8",
"composer/composer": "^2.0",
"composer/installers": "^1.0",
"composer/semver": "^3.2",
"defuse/php-encryption": "^2.3",
"hashids/hashids": "^4.1",
"htmlburger/carbon-fields": "^3.2",
"oscarotero/env": "^2.1",
"pimple/pimple": "^3.2",
"pixelgrade/wp-post-notes": "*",
"psr/container": "^1.0",
"psr/log": "^1.0",
"vlucas/phpdotenv": "^5.3"
},
"require-dev": {
"brain/monkey": "^2.2",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
"php-stubs/woocommerce-stubs": "^5.6",
"phpcompatibility/phpcompatibility-wp": "^2",
"phpunit/phpunit": "^7.5",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^3.3",
"szepeviktor/phpstan-wordpress": "^0.7.7",
"wordpress/wordpress": "^5.6",
"wp-cli/i18n-command": "dev-master",
"wp-coding-standards/wpcs": "^1"
},
"autoload": {
"psr-4": {
"Pressody\\Retailer\\": "src/"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Pressody\\Retailer\\Tests\\": "tests/phpunit/"
},
"files": [
]
},
"scripts": {
"install-codestandards": [
"Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin::run"
],
"phpcs": "./vendor/bin/phpcs",
"phpstan": ".vendor/bin/phpstan analyze",
"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-retailer.pot",
"prepare-for-release": [
"composer install",
"composer makepot",
"composer install --no-dev --prefer-dist",
"composer dump-autoload --no-dev --optimize"
]
}
}