-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 912 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 912 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
{
"name": "fosco-maestro/music-player",
"description": "Music Player with Spotify search",
"authors": [
{
"name": "Pavlo Voznenko",
"email": "p.voznenko@gmail.com",
"homepage": "https://twitter.com/pvoznenko",
"role": "Author"
}
],
"autoload": {
"psr-4": {
"App\\": "App/",
"MusicPlayer\\": "src/MusicPlayer/",
"Tests\\": "tests/Tests/"
}
},
"require": {
"php": ">=5.4",
"guzzle/guzzle": "3.*",
"phpunit/phpunit": "4.*",
"guzzlehttp/guzzle": "4.*",
"predis/predis": "1.0.0"
},
"suggest": {
"PHP APC": "The Alternative PHP Cache (APC) is a free and open opcode cache for PHP. Its goal is to provide a free, open, and robust framework for caching and optimizing PHP intermediate code"
},
"license": "MIT"
}