-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
101 lines (88 loc) · 2.5 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
{
"name": "a8cteam51/team51-plugin-scaffold",
"type": "wordpress-plugin",
"description": "A scaffold for WP.com Special Projects plugins.",
"homepage": "https://github.com/a8cteam51/team51-plugin-scaffold",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "WordPress.com Special Projects Team",
"homepage": "https://wpspecialprojects.wordpress.com/"
},
{
"name": "Contributors",
"homepage": "https://github.com/a8cteam51/team51-plugin-scaffold/graphs/contributors"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/a8cteam51/team51-configs"
},
{
"type": "composer",
"url": "https://wpackagist.org"
}
],
"require": {
"php": ">=8.0",
"ext-json": "*",
"siftscience/sift-php": "^4.7"
},
"require-dev": {
"a8cteam51/team51-configs": "dev-trunk",
"johnpbloch/wordpress-core": "^6.4",
"wpackagist-plugin/woocommerce": "^8.6",
"wp-cli/i18n-command": "^2.6",
"squizlabs/php_codesniffer": "3.*",
"dealerdirect/phpcodesniffer-composer-installer": "*",
"phpcompatibility/phpcompatibility-wp": "*",
"wp-coding-standards/wpcs": "dev-develop",
"roave/security-advisories": "dev-latest",
"phpunit/phpunit": "^9.6",
"yoast/phpunit-polyfills": "^3.0"
},
"autoload": {
"psr-4": {
"WPCOMSpecialProjects\\Scaffold\\": "src/"
},
"classmap": []
},
"autoload-dev": {
},
"scripts": {
"generate-autoloader": "@composer dump-autoload -o",
"format:php": "phpcbf --standard=./.phpcs.xml --basepath=. . -v",
"lint:php": "phpcs --standard=./.phpcs.xml --basepath=. . -v",
"internationalize": [
"@makepot",
"@updatepo",
"@makejson"
],
"makepot": "wp i18n make-pot .",
"updatepo": "wp i18n update-po ./languages/sift-for-woocommerce.pot",
"makejson": "wp i18n make-json ./languages --pretty-print --no-purge",
"makemo": "wp i18n make-mo ./languages",
"packages-install": "@composer install --ignore-platform-reqs --no-interaction",
"packages-update": [
"@composer clear-cache",
"@composer update --prefer-stable --no-interaction"
]
},
"config": {
"allow-plugins": {
"composer/*": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"installer-paths": {
"vendor/wpackagist-plugin/{$name}/": [
"type:wordpress-plugin"
],
"vendor/wpackagist-theme/{$name}/": [
"type:wordpress-theme"
]
}
}
}