-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
42 lines (42 loc) · 1.29 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
{
"name": "cointokio/coingecko-api-client",
"description": "Fetch data from the CoinGecko API, intended for use in WordPress plugins or themes.",
"keywords": ["api", "client", "coingecko", "coingecko.com", "php", "wordpress"],
"homepage": "https://github.com/cointokio/coingecko-api-client",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Cointokio",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Barry Ceelen",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/cointokio/coingecko-api-client/issues?state=open",
"source": "https://github.com/cointokio/coingecko-api-client"
},
"require-dev": {
"automattic/vipwpcs": "*",
"brainmaestro/composer-git-hooks": "^2.8"
},
"scripts": {
"lint": "phpcs --standard=phpcs.ruleset.xml",
"post-install-cmd": "cghooks add --ignore-lock",
"post-update-cmd": "cghooks update"
},
"extra": {
"hooks": {
"config": {
"stop-on-failure": ["pre-commit"]
},
"pre-commit": [
"composer run lint"
]
}
}
}