-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 846 Bytes
/
composer.json
File metadata and controls
34 lines (34 loc) · 846 Bytes
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
{
"name": "twitch-analytics/platform-age",
"description": "A PHP-based REST API that provides Twitch user account analytics",
"type": "project",
"require": {
"php": "^8.3",
"ext-json": "*"
},
"require-dev": {
"mockery/mockery": "^1.6",
"phpunit/phpunit": "^10.0",
"squizlabs/php_codesniffer": "^3.7"
},
"autoload": {
"psr-4": {
"TwitchAnalytics\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TwitchAnalytics\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"test:coverage": "phpunit --coverage-html coverage",
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"start": "php -S localhost:8000 -t public"
},
"config": {
"sort-packages": true
}
}