-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
47 lines (47 loc) · 1.82 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
{
"name": "laterpay/laterpay-wordpress-plugin",
"description": "This is the official Laterpay plugin for selling digital content with WordPress",
"license": "MIT",
"version": "2.9.6",
"config": {
"vendor-dir": "laterpay/vendor",
"secure-http": true
},
"repositories": [
{
"type": "package",
"package": {
"name": "automattic/vipwpcs",
"version": "2.2.0",
"canonical": false,
"type": "phpcodesniffer-standard",
"source": {
"url": "https://github.com/Automattic/VIP-Coding-Standards.git",
"type": "git",
"reference": "master"
}
}
},
{
"type": "git",
"url": "https://github.com/laterpay/laterpay-client-php.git"
}
],
"require": {
"php": ">=5.6",
"laterpay/laterpay-client-php": "dev-develop"
},
"require-dev": {
"wp-coding-standards/wpcs": "*",
"automattic/vipwpcs": "^2.2.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
"phpcompatibility/phpcompatibility-wp": "*"
},
"scripts": {
"post-install-cmd": "find laterpay/vendor/ -type d -name \".git\" | xargs rm -rf",
"post-update-cmd": "find laterpay/vendor/ -type d -name \".git\" | xargs rm -rf",
"phpcs": "\"laterpay/vendor/bin/phpcs\" -s --standard=ruleset.xml",
"phpcbf": "\"laterpay/vendor/bin/phpcbf\" --standard=ruleset.xml",
"phpcompat": "\"laterpay/vendor/bin/phpcs\" -p --standard=PHPCompatibilityWP laterpay/application laterpay/views laterpay/laterpay-load.php laterpay/laterpay.php laterpay/vendor/laterpay/laterpay-client-php --runtime-set testVersion 5.6- --extensions=php"
}
}