-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
66 lines (66 loc) · 2 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
{
"name": "pronamic/pronamic-client",
"description": "WordPress plugin for Pronamic clients.",
"type": "wordpress-plugin",
"autoload": {
"psr-4": {
"Pronamic\\WordPress\\PronamicClient\\": "classes/"
},
"files": [
"includes/credits.php",
"includes/functions.php",
"includes/version.php"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"roots/wordpress-core-installer": true,
"automattic/jetpack-autoloader": true
},
"platform": {
"php": "8.0"
},
"platform-check": false,
"sort-packages": true,
"wp-slug": "pronamic-client"
},
"require": {
"php": ">=8.0",
"automattic/jetpack-autoloader": "^3.0",
"pronamic/pronamic-mollie-user-agent": "^1.0",
"pronamic/pronamic-wp-updater": "^1.0"
},
"require-dev": {
"overtrue/phplint": "^9.0",
"phpcompatibility/php-compatibility": "^9.3",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"pronamic/changelog-md-to-wordpress-plugin-readme-txt": "^1.0",
"pronamic/pronamic-cli": "^1.1",
"pronamic/wp-coding-standards": "^2.0",
"roots/wordpress": "^6.3",
"vrana/adminer": "^4.8"
},
"scripts": {
"build": [
"Pronamic\\ChangelogMdToWordPressPluginReadmeTxt\\Synchronizer::run",
"rm -rf ./build",
"mkdir ./build",
"mkdir ./build/stage-1",
"rsync --recursive --verbose --exclude-from=.distignore --exclude-from=.gitignore ./ ./build/stage-1/",
"composer install --no-dev --prefer-dist --optimize-autoloader --working-dir=./build/stage-1/",
"vendor/bin/wp i18n make-pot ./build/stage-1/ --slug=pronamic-client",
"vendor/bin/wp dist-archive ./build/stage-1/ --plugin-dirname=pronamic-client"
],
"translate": [
"@build",
"rsync --recursive --delete --verbose ./build/project/languages/ ./languages/"
],
"phpcbf": "XDEBUG_MODE=off vendor/bin/phpcbf",
"phpcs": "XDEBUG_MODE=off vendor/bin/phpcs -s -v --ignore=packages,build",
"phplint": "vendor/bin/phplint",
"version": [
"Pronamic\\ChangelogMdToWordPressPluginReadmeTxt\\Synchronizer::run"
]
}
}