-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
42 lines (42 loc) · 1.27 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": "jofner/twitch-sdk",
"type": "library",
"description": "TwitchTV API SDK for PHP",
"keywords": ["twitch", "api", "sdk"],
"homepage": "https://github.com/jofner/Twitch-SDK",
"license": "MIT",
"authors": [
{
"name": "Josef Ohnheiser",
"homepage": "https://www.jofner.cz"
}
],
"require": {
"php": ">=5.3.0",
"ext-curl": "*"
},
"require-dev": {
"phpunit/phpunit": "4.3.*",
"jakub-onderka/php-console-highlighter": "^0.3.2",
"jakub-onderka/php-parallel-lint": "^0.9.2",
"squizlabs/php_codesniffer": "^2.7"
},
"autoload": {
"psr-0": {
"jofner\\SDK\\TwitchTV": "src/"
},
"classmap": [
"src/jofner/SDK/TwitchTV/TwitchSDK.php"
]
},
"scripts": {
"build": [
"@composer install --no-progress --no-interaction --no-suggest",
"@lint",
"@phpcs"
],
"lint": "parallel-lint -j 10 --exclude var --exclude vendor .",
"phpcs": "phpcs --standard=ruleset.xml --extensions=php --encoding=utf-8 --tab-width=4 -sp src",
"phpcbf": "phpcbf --standard=ruleset.xml --extensions=php --encoding=utf-8 --tab-width=4 -sp --no-patch src"
}
}