-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
41 lines (41 loc) · 994 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
40
41
{
"name": "orchestra/installer",
"description": "Orchestra Platform Installer",
"license": "MIT",
"keywords": ["orchestra-platform", "orchestral", "installer"],
"authors": [
{
"name": "Mior Muhammad Zaki",
"email": "[email protected]",
"homepage": "https://github.com/crynobone"
}
],
"autoload": {
"psr-4": {
"Orchestra\\Installation\\" : "src/"
}
},
"autoload-dev": {
"psr-4": {
"Orchestra\\Installation\\Tests\\" : "tests/"
}
},
"require": {
"php": "^7.3 || ^8.0",
"orchestra/contracts": "^6.0"
},
"require-dev": {
"orchestra/canvas": "^6.1",
"orchestra/foundation": "^6.0",
"orchestra/testing": "^6.0"
},
"extra": {
"branch-alias": {
"dev-master": "6.0-dev"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev"
}