-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
66 lines (66 loc) · 1.54 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": "grrr-amsterdam/nova-pages-tool",
"description": "A Laravel Nova Tool to manage pages.",
"keywords": [
"laravel",
"nova"
],
"license": "MIT",
"require": {
"php": "~8.0",
"alexwenzel/nova-dependency-container": "^1.11",
"axn/laravel-eloquent-authorable": "dev-l11-compatibility",
"eminiarts/nova-tabs": "^2.0",
"gwd/seo-meta-nova-field": "dev-nova-4-compatibility",
"laravel/nova": "^4.0",
"outl1ne/nova-menu-builder": "^7.0",
"outl1ne/nova-multiselect-field": "^4.0",
"spatie/once": "^1.1|^2.0|^3.0",
"whitecube/nova-flexible-content": "^1.0"
},
"autoload": {
"psr-4": {
"Grrr\\Pages\\": "src/",
"Grrr\\Pages\\Database\\Factories\\": "database/factories/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"repositories": [
{
"type": "composer",
"url": "https://nova.laravel.com"
},
{
"type": "vcs",
"url": "https://github.com/mucenica-bogdan/seo-meta-field-nova"
},
{
"type": "vcs",
"url": "https://github.com/laravel-shift/laravel-eloquent-authorable.git"
}
],
"extra": {
"laravel": {
"providers": [
"Grrr\\Pages\\ToolServiceProvider"
]
}
},
"require-dev": {
"orchestra/testbench": "^6.7",
"phpunit/phpunit": "^8.1"
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"test": "./vendor/bin/phpunit --colors=always",
"format": "./node_modules/.bin/prettier --write ."
}
}