-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
44 lines (44 loc) · 1.27 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
{
"name": "orchestra/support",
"description": "Support Component for Orchestra Platform",
"homepage": "http://orchestraplatform.com/docs/latest/components/support/",
"keywords": ["orchestra-platform", "orchestral", "laravel", "validator", "utilities"],
"license": "MIT",
"authors": [
{
"name": "Mior Muhammad Zaki",
"email": "[email protected]",
"homepage": "https://github.com/crynobone"
}
],
"autoload": {
"psr-4": {
"Orchestra\\Support\\Facades\\" : "src/Facades/",
"Orchestra\\Support\\Providers\\" : "src/Providers/",
"Orchestra\\Support\\" : "src/Support/"
}
},
"require": {
"php": "^8.0",
"illuminate/support": "^9.0",
"orchestra/contracts": "^7.0",
"statamic/stringy": "^3.1"
},
"require-dev": {
"orchestra/testbench": "^7.1"
},
"replace": {
"orchestra/support-core": "self.version",
"orchestra/support-facades": "self.version",
"orchestra/support-providers": "self.version"
},
"extra": {
"branch-alias": {
"dev-master": "7.0-dev"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev"
}