-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 783 Bytes
/
composer.json
File metadata and controls
36 lines (36 loc) · 783 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
35
36
{
"name": "jc21/plex-api",
"description": "PHP Api for Plex",
"keywords": [
"plex",
"api",
"media"
],
"homepage": "https://github.com/jc21/plex-api",
"license": "BSD-1-Clause",
"authors": [
{
"name": "Jamie Curnow",
"email": "jc@jc21.com"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=7.4",
"ext-curl": "*"
},
"require-dev": {
"symfony/dotenv": "6.2.x-dev",
"phpunit/phpunit": "^9"
},
"autoload": {
"psr-0": {
"jc21": "src"
}
},
"scripts": {
"test": "php vendor/bin/phpunit",
"sections": "php tests/SectionList.php",
"items": "php tests/ItemList.php"
}
}