-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
66 lines (66 loc) · 1.73 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
{
"name": "konekt/appshell",
"description": "Foundation for Laravel business applications",
"type": "library",
"minimum-stability": "dev",
"prefer-stable": true,
"keywords": ["laravel", "concord", "concord-box"],
"license": "MIT",
"authors": [
{
"name": "Attila Fulop",
"homepage": "https://github.com/fulopattila122"
}
],
"support": {
"issues": "https://github.com/artkonekt/appshell"
},
"require": {
"php": "^8.2",
"ext-json": "*",
"konekt/concord": "^1.15",
"konekt/customer": "^3.3",
"konekt/address": "^3.4",
"konekt/user": "^3.0",
"konekt/acl": "^2.0",
"konekt/menu": "^1.9",
"konekt/gears": "^1.12",
"konekt/enum": "^4.1",
"konekt/enum-eloquent": "^1.8.1",
"konekt/xtend": "^1.1",
"konekt/html": "^6.5",
"laracasts/flash": "^3.2.1",
"cviebrock/eloquent-sluggable": "^10.0|^11.0",
"diglactic/laravel-breadcrumbs": "^8.0|^9.0",
"laravel/framework": "^10.0|^11.0"
},
"require-dev": {
"ext-sqlite3": "*",
"phpunit/phpunit": "^10.0",
"orchestra/testbench": "^8.0|^9.0",
"mockery/mockery": "^1.6.2"
},
"conflict": {
"doctrine/dbal": ">=4.0"
},
"autoload": {
"psr-4": {
"Konekt\\AppShell\\": "src"
},
"files": [
"src/Support/helpers.php",
"src/Support/theme.php",
"src/Support/icon.php"
]
},
"autoload-dev": {
"psr-4": {
"Konekt\\AppShell\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "4.0.x-dev"
}
}
}