-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
76 lines (76 loc) · 1.96 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
67
68
69
70
71
72
73
74
75
76
{
"name": "restrictcontent/restrict-content",
"version": "3.2.13",
"type": "wordpress-plugin",
"description": "A simple, yet powerful membership solution for WordPress.",
"keywords": [ "rcp", "pippin", "membership"],
"homepage": "https://restrictcontentpro.com",
"authors": [
{
"name": "Pippin Williamson",
"email": "[email protected]",
"homepage": "https://restrictcontentpro.com"
},
{
"name": "Israel Barragan",
"email": "[email protected]",
"homepage": "https://restrictcontentpro.com"
}
],
"scripts": {
"cs": "./vendor/squizlabs/php_codesniffer/bin/phpcs .",
"cbf": "./vendor/squizlabs/php_codesniffer/bin/phpcbf .",
"strauss": [
"test -f ./bin/strauss.phar || curl -o bin/strauss.phar -L -C - https://github.com/BrianHenryIE/strauss/releases/download/0.13.0/strauss.phar",
"@php bin/strauss.phar",
"echo \"<?php\" > vendor/lucatume/di52/aliases.php",
"echo \"<?php\" > vendor/strauss/lucatume/di52/aliases.php"
],
"post-install-cmd": [
"@strauss"
],
"post-update-cmd": [
"@strauss"
]
},
"require": {
"lucatume/di52": "^3.0",
"stellarwp/container-contract": "^1.0",
"stellarwp/telemetry": "^1.0.5"
},
"autoload": {
"psr-4": {
"RCP\\": "core/includes/"
}
},
"require-dev": {
"squizlabs/php_codesniffer": "3.*",
"wp-coding-standards/wpcs": "^2.3",
"dealerdirect/phpcodesniffer-composer-installer": "dev-master",
"phpunit/phpunit": "^7",
"szepeviktor/phpstan-wordpress": "^1.1"
},
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"strauss": {
"target_directory": "vendor/strauss",
"classmap_prefix": "RCP",
"constant_prefix": "RCP",
"namespace_prefix": "RCP",
"delete_vendor_files": true,
"include_modified_date": false,
"include_author": false,
"packages": [
"lucatume/di52",
"psr/container",
"stellarwp/container-contract",
"stellarwp/telemetry"
]
}
}
}