-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 1.05 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
{
"name": "postmatic/comment-iq-api-client",
"type": "library",
"description": "A WordPress client for the CommentIQ HTTP API",
"keywords": ["commentiq", "api"],
"homepage": "https://github.com/postmatic/comment-iq-api-client",
"license": "GPL-2.0+",
"authors": [
{
"name": "Carl Alexander",
"email": "[email protected]"
},
{
"name": "Dylan Kuhn",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Postmatic\\CommentIQ\\": "psr-4"
}
},
"require": {
"php": ">=5.3.3"
},
"require-dev": {
"wp-coding-standards/wpcs": "^0.10.0"
},
"scripts": {
"post-install-cmd": [
"phpcs --config-set installed_paths vendor/wp-coding-standards/wpcs",
"ln -sf ../../bin/pre-commit.sh .git/hooks/pre-commit"
],
"format": [
"phpcbf --standard=WordPress --exclude=Generic.Files.LowercasedFilename psr-4"
],
"sniff": [
"phpcs --standard=WordPress --exclude=Generic.Files.LowercasedFilename psr-4"
]
}
}