-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
39 lines (39 loc) · 896 Bytes
/
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
{
"name": "pldin601/musicloud",
"description": "Web Based Music Player",
"type": "project",
"authors": [
{
"name": "Roman Lakhtadyr",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"prefer-stable": true,
"scripts": {
"test": "phpunit",
"migrate": "migrate"
},
"require": {
"php": ">=8.0",
"ext-pdo_pgsql": ">=8.0",
"josegonzalez/dotenv": "3.2.0",
"malkusch/lock": "1.4",
"ext-json": ">=8.0",
"ext-pdo": ">=8.0",
"ext-iconv": ">=8.0"
},
"autoload": {
"psr-4": {}
},
"autoload-dev": {
"psr-4": {
"": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "9.4.4",
"squizlabs/php_codesniffer": "3.5.8",
"mikey179/vfsstream": "1.6.10"
}
}