-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
71 lines (71 loc) · 2.2 KB
/
composer.json
File metadata and controls
71 lines (71 loc) · 2.2 KB
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
{
"name": "pronamic/wp-pronamic-domain-mapping",
"type": "wordpress-plugin",
"description": "The Pronamic Domain Mapping plugin allows you to map domains to custom domain name pages.",
"keywords": ["pronamic", "wordpress", "domain", "mapping", "landingpage", "dns", "map", "seo"],
"homepage": "https://github.com/pronamic/wp-pronamic-pay",
"license": "GPL-3.0-or-later" ,
"authors": [
{
"name": "Remco Tolsma",
"email": "remco@pronamic.nl",
"homepage": "https://www.remcotolsma.nl/",
"role": "Developer"
}
],
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org/"
}
],
"autoload": {
"psr-4": {
"Pronamic\\WordPress\\DomainMapping\\": "src/"
},
"files": [
"includes/post.php",
"includes/version.php"
]
},
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"roots/wordpress-core-installer": true
},
"platform": {
"php": "8.2"
},
"sort-packages": true,
"wp-slug": "pronamic-domain-mapping"
},
"require": {
"php": "8.2",
"composer/installers": "^2.3"
},
"require-dev": {
"php-coveralls/php-coveralls": "^2.4",
"phpcompatibility/php-compatibility": "^9.3",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"phpmd/phpmd": "^2.9",
"pronamic/wp-coding-standards": "^2.4",
"roots/wordpress": "^6.9",
"wp-phpunit/wp-phpunit": "^6.9",
"yoast/phpunit-polyfills": "^4.0"
},
"scripts": {
"coveralls": "vendor/bin/php-coveralls -v",
"phpcbf":"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": "vendor/bin/phpstan analyse",
"phpunit": "vendor/bin/phpunit --colors=always",
"post-install-cmd": "echo 'Optionally run: composer bin all install'",
"post-update-cmd": "echo 'Optionally run: composer bin all update'",
"psalm": "vendor/bin/psalm",
"make-pot": "wp i18n make-pot . languages/pronamic_domain_mapping.pot --slug='pronamic_domain_mapping'",
"update-po": "find languages/*.po -type f -exec msgmerge --update --backup=off {} languages/pronamic_domain_mapping.pot \\;"
}
}