-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
46 lines (45 loc) · 1.33 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
43
44
45
46
{
"name": "sajed-zarinpour/spotplayer",
"description": "A wrapper for spotplayer.ir video service (DRM) API.",
"license": "MIT",
"type": "library",
"keywords": [
"library",
"spotplayer"
],
"homepage": "https://github.com/sajed-zarrinpour/spotplayer/",
"support": {
"issues": "https://github.com/sajed-zarrinpour/spotplayer/issues",
"source": "https://github.com/sajed-zarrinpour/spotplayer/",
"docs": "https://sajed-zarrinpour.github.io/docs.spotplayer/",
"rss": "https://github.com/sajed-zarrinpour/spotplayer/releases.atom",
"security": "https://github.com/sajed-zarrinpour/spotplayer/security/advisories"
},
"autoload": {
"psr-4": {
"SajedZarinpour\\SpotPlayer\\": "src/"
},
"files": [
"src/Helpers/helpers.php"
]
},
"authors": [
{
"name": "Sajed Zarinpour",
"email": "[email protected]"
}
],
"extra": {
"laravel": {
"providers": [
"SajedZarinpour\\SpotPlayer\\Providers\\SpotPlayerServiceProvider"
],
"aliases": {
"SpotPlayer": "SajedZarinpour\\SpotPlayer\\Facades\\SpotPlayer"
}
}
},
"require": {
"ext-curl": "*"
}
}