-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
composer.json
80 lines (80 loc) · 2.51 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "orchestra/foundation",
"description": "Orchestra Platform Foundation",
"homepage": "http://orchestraplatform.com/docs/latest/",
"keywords": ["orchestra-platform", "orchestral", "laravel", "administrator", "admin", "user-management"],
"license": "MIT",
"authors": [
{
"name": "Mior Muhammad Zaki",
"email": "[email protected]",
"homepage": "https://github.com/crynobone"
}
],
"autoload": {
"psr-4": {
"Orchestra\\Foundation\\" : "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Orchestra\\Tests\\Controller\\" : "tests/Controller/",
"Orchestra\\Tests\\Feature\\" : "tests/Feature/",
"Orchestra\\Tests\\Unit\\" : "tests/Unit/"
}
},
"require": {
"php": "^7.3 || ^8.0",
"laravel/framework": "^8.40",
"laravie/authen": "^2.5",
"laravie/html": "^7.1",
"orchestra/asset": "^6.0",
"orchestra/auth": "^6.0",
"orchestra/contracts": "^6.0",
"orchestra/extension": "^6.0",
"orchestra/html": "^6.1",
"orchestra/kernel": "^6.0",
"orchestra/memory": "^6.0",
"orchestra/messages": "^6.0",
"orchestra/model": "^6.0",
"orchestra/notifier": "^6.0",
"orchestra/support": "^6.1.1",
"orchestra/translation": "^6.0",
"orchestra/view": "^6.0",
"orchestra/widget": "^6.0"
},
"require-dev": {
"orchestra/canvas": "^6.1",
"orchestra/installer": "^6.0",
"orchestra/testing": "^6.0"
},
"suggest": {
"orchestra/avatar": "Add gravatar support for Orchestra Platform (^6.0).",
"orchestra/installer": "Allow Orchestra Platform to be installed in new application (^6.0).",
"orchestra/testing": "Allow better unit testing support for Orchestra Platform (^6.0)."
},
"scripts": {
"test": [
"./vendor/bin/phpunit --testsuite=Unit --colors=always",
"./vendor/bin/phpunit --testsuite=Controller --colors=always",
"./vendor/bin/phpunit --testsuite=Feature --colors=always"
],
"update:frontend": [
"bower update",
"bower-installer",
"gulp --production"
]
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "6.0-dev"
}
},
"minimum-stability": "dev"
}