-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.35 KB
/
composer.json
File metadata and controls
62 lines (62 loc) · 1.35 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "modelesque/laravel-web-api-spotify",
"description": "Make REST requests to Spotify's Web API in a Laravel app.",
"version": "1.0.0",
"keywords": ["php", "laravel", "package", "library"],
"license": "MIT",
"type": "library",
"require": {
"php": "^8.1",
"illuminate/database": "^12.46",
"illuminate/http": "^12.46",
"illuminate/support": "^12.46",
"modelesque/laravel-api-token-manager": "@dev"
},
"require-dev": {
"barryvdh/laravel-ide-helper": "^3.6",
"mockery/mockery": "^1.6",
"orchestra/testbench": "^10.9",
"pestphp/pest": "^4.3",
"pestphp/pest-plugin-laravel": "^4.0"
},
"repositories": [
{
"type": "path",
"url": "../laravel-api-token-manager",
"options": {
"symlink": true
}
}
],
"autoload": {
"psr-4": {
"Modelesque\\Api\\Spotify\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Modelesque\\Api\\Spotify\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Modelesque\\Api\\Spotify\\SpotifyServiceProvider"
]
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Ryan White",
"email": "modelesquebiz@gmail.com"
}
]
}