forked from litstack/litstack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
67 lines (67 loc) · 1.92 KB
/
composer.json
File metadata and controls
67 lines (67 loc) · 1.92 KB
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
{
"name": "litstack/litstack",
"description": "Laravel Content-Administration",
"type": "project",
"license": "MIT",
"scripts": {
"test": "rm -rf vendor/orchestra && composer install && php tests/install && vendor/bin/phpunit",
"fix": "vendor/bin/php-cs-fixer fix --allow-risky=yes --config=fixer/.php_cs"
},
"require": {
"php": "^7.4|^8.0",
"litstack/lang": "^3.0.4",
"erusev/parsedown-extra": "^0.8",
"spatie/laravel-permission": "^2.0|^3.0",
"astrotomic/laravel-translatable": "^11.0",
"cviebrock/eloquent-sluggable": "^7.0|^8.0",
"spatie/laravel-medialibrary": "^8.0|^9.0",
"livewire/livewire": "^1.0|^2.0",
"friendsofphp/php-cs-fixer": "^2.0"
},
"require-dev": {
"facade/ignition": "~2.0",
"orchestra/testbench": "^5.2|^6.0",
"mockery/mockery": "^1.4",
"laravel/dusk": "^6.1",
"orchestra/testbench-dusk": "^5.2|^6.0",
"phpunit/phpunit": "^8.0|^9.0",
"laravel/legacy-factories": "^1.0.4"
},
"authors": [
{
"name": "Jannes Behrens",
"email": "jannes@aw-studio.de"
},
{
"name": "Lennart Carstens-Behrens",
"email": "lennart.carbe@gmail.com"
}
],
"autoload": {
"files": [
"src/Foundation/helpers.php",
"src/Support/helpers.php"
],
"psr-4": {
"Ignite\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/php",
"Lit\\": "vendor/orchestra/testbench-dusk/laravel/lit/app"
}
},
"extra": {
"laravel": {
"providers": [
"Ignite\\Foundation\\LitstackServiceProvider"
]
},
"branch-alias": {
"dev-master": "3.x-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}