-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
46 lines (46 loc) · 1.5 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
{
"name": "eventespresso/eea-paypal-smart-buttons",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"description": "An add-on for Event Espresso 4.",
"authors" : [
{
"name": "Event Espresso Teem",
"email": "developers@eventspresso.com",
"homepage": "http://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/eea-paypal-smart-buttons/issues",
"forum": "https://eventespresso/support/forums",
"source": "https://github.com/eventespresso/eea-paypal-smart-buttons",
"docs": "https://github.com/eventespresso/eea-paypal-smart-buttons/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"
},
"require": {
"composer/installers": "~1.0",
"php": ">=5.5"
},
"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",
"lint:skip-warnings": "vendor/bin/phpcs -n",
"lint:fix": "vendor/bin/phpcbf"
}
}