-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (57 loc) · 1.6 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
{
"name": "cupcakelabs/t3",
"type": "wordpress-plugin",
"description": "A WordPress plugin that lets you run Tumblr Themes.",
"homepage": "https://github.com/Automattic/T3/",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Cupcake Labs",
"homepage": "https://cupcakelabs.wordpress.com/"
}
],
"require": {
"php": ">=7.3",
"ext-json": "*"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"phpunit/phpunit": "^8",
"yoast/phpunit-polyfills": "^3.0",
"wp-cli/wp-cli-bundle": "^2.11",
"automattic/jetpack-codesniffer": "^4.0"
},
"autoload": {
"psr-4": {
"CupcakeLabs\\T3\\": "src/"
}
},
"autoload-dev": {},
"scripts": {
"wp": "vendor/bin/wp",
"phpunit": "vendor/bin/phpunit",
"generate-autoloader": "@composer dump-autoload -o",
"format:php": "phpcbf --standard=./.phpcs.xml --basepath=. . -v",
"lint:php": "phpcs --standard=./.phpcs.xml --basepath=. . -v -s",
"internationalize": [
"@makepot",
"@updatepo",
"@makejson"
],
"makepot": "wp i18n make-pot .",
"updatepo": "wp i18n update-po ./languages/tumblr3.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
}
}
}