-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
62 lines (62 loc) · 2.4 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
{
"name": "pronamic/wp-http",
"description": "WordPress HTTP library.",
"type": "wordpress-plugin",
"autoload": {
"psr-4": {
"Pronamic\\WordPress\\Http\\": "src"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"roots/wordpress-core-installer": true,
"bamarni/composer-bin-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require": {
"php": ">=7.4"
},
"require-dev": {
"automattic/wordbless": "^0.3 || ^0.4",
"bamarni/composer-bin-plugin": "^1.4",
"php-coveralls/php-coveralls": "^2.4",
"phpmd/phpmd": "^2.9",
"phpstan/phpstan": "^1.11",
"pronamic/pronamic-cli": "^1.1",
"pronamic/wp-coding-standards": "^2.2",
"roots/wordpress": "^6.0",
"szepeviktor/phpstan-wordpress": "^1.3",
"vimeo/psalm": "^5.25",
"yoast/phpunit-polyfills": "^1.0"
},
"scripts": {
"coverage": "XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-clover build/logs/clover.xml --coverage-text",
"coverage-clover": "XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-clover build/logs/clover.xml",
"coverage-html": "XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-html build/coverage-html",
"coverage-text": "XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-text",
"coveralls": "vendor/bin/php-coveralls -v",
"phpcbf": "XDEBUG_MODE=off vendor/bin/phpcbf",
"phpcs": "XDEBUG_MODE=off vendor/bin/phpcs -s -v",
"phplint": "find src tests -name '*.php' | xargs -n 1 -P 4 php -l",
"phpmd": "vendor/bin/phpmd src,tests text phpmd.ruleset.xml --suffixes php",
"phpstan": "XDEBUG_MODE=off vendor/bin/phpstan analyse --memory-limit=-1",
"phpunit": "XDEBUG_MODE=off vendor/bin/phpunit",
"post-install-cmd": [
"echo 'Optionally run: composer bin all install'",
"mkdir -p wordpress/wp-content && cp vendor/automattic/wordbless/src/dbless-wpdb.php wordpress/wp-content/db.php"
],
"post-update-cmd": [
"echo 'Optionally run: composer bin all update'",
"mkdir -p wordpress/wp-content && cp vendor/automattic/wordbless/src/dbless-wpdb.php wordpress/wp-content/db.php"
],
"psalm": "vendor/bin/psalm",
"phpdoc": "XDEBUG_MODE=off vendor/bin/phpdoc --setting='guides.enabled=true'",
"build-docs": [
"XDEBUG_MODE=off vendor/bin/wp-documentor parse ./src/ --format=phpdocumentor-rst --type=actions > docs/actions.rst",
"XDEBUG_MODE=off vendor/bin/wp-documentor parse ./src/ --format=phpdocumentor-rst --type=filters > docs/filters.rst",
"@phpdoc"
]
}
}