forked from RhysLees/nova-about
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
62 lines (62 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
{
"name": "fabfischer/nova-about",
"description": "This is a package to add about information for Laravel Nova. updated to support Laravel 11",
"keywords": [
"RhysLees",
"laravel",
"nova-about"
],
"homepage": "https://github.com/fabfischer/nova-about",
"license": "MIT",
"authors": [
{
"name": "Rhys Lees",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Fabian Fischer",
"role": "Developer"
}
],
"repositories": {
"nova":{
"type": "composer",
"url": "https://nova.laravel.com"
}
},
"require": {
"php": "^8.2",
"spatie/laravel-package-tools": "^1.9.2",
"laravel/nova": "^4",
"illuminate/contracts": "^10.0||^11",
"illuminate/console": "^10.0||^11"
},
"require-dev": {
"laravel/pint": "^1.5",
"nunomaduro/collision": "^7.0"
},
"autoload": {
"psr-4": {
"RhysLees\\NovaAbout\\": "src"
}
},
"scripts": {
"format": "vendor/bin/pint"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"RhysLees\\NovaAbout\\NovaAboutServiceProvider"
],
"aliases": {
"NovaAbout": "RhysLees\\NovaAbout\\Facades\\NovaAbout"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}