-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
63 lines (63 loc) · 1.9 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
{
"name": "eventespresso/event-espresso-core",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"description": "Event Espresso 4 Core for WordPress: Build an Event Ticketing Website Today!",
"authors": [
{
"name": "Event Espresso Teem",
"email": "developers@eventspresso.com",
"homepage": "https://developer.eventespresso.com"
}
],
"homepage": "https://eventespresso.com",
"keywords": [
"event-espresso",
"wordpress",
"events",
"event-management",
"event-tickets",
"event-registration",
"ticketing-system"
],
"support": {
"issues": "https://github.com/eventespresso/event-espresso-core/issues",
"forum": "https://eventespresso/support/forums",
"source": "https://github.com/eventespresso/event-espresso-core",
"docs": "https://github.com/eventespresso/event-espresso-core/tree/master/docs"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/eventespresso/ee-coding-standards"
}
],
"require-dev": {
"eventespresso/ee-coding-standards": "dev-master",
"roave/security-advisories": "dev-master",
"yoast/phpunit-polyfills": "^1.0"
},
"require": {
"php": ">=7.1",
"ext-json": "*",
"ext-mbstring": "*",
"ext-openssl": "*"
},
"config": {
"allow-plugins": {
"eventespresso/*": true,
"phpunit/phpunit": true,
"roave/security-advisories": true,
"yoast/phpunit-polyfills": true
}
},
"scripts": {
"config-eventespressocs": [
"\"vendor/bin/phpcs\" --config-set installed_paths ../../../vendor/wp-coding-standards/wpcs,../../../vendor/wimg/php-compatibility,../../../vendor/eventespresso/ee-coding-standards",
"\"vendor/bin/phpcs\" --config-set default_standard EventEspresso"
],
"lint": "\"vendor/bin/phpcs\" --runtime-set testVersion 7.1-",
"lint:skip-warnings": "\"vendor/bin/phpcs\" -n --runtime-set testVersion 7.1-",
"lint:fix": "\"vendor/bin/phpcbf\" --standard=phpcs.xml --ignore=assets/*,languages/*,*/index.php"
}
}