-
Notifications
You must be signed in to change notification settings - Fork 26
/
composer.json
69 lines (69 loc) · 1.76 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
{
"name": "simplesquid/nova-enum-field",
"description": "A Laravel Nova field to add enums to resources.",
"license": "MIT",
"keywords": [
"simplesquid",
"laravel",
"nova",
"field",
"enum",
"nova-enum-field"
],
"authors": [
{
"name": "Matthew Poulter",
"email": "matthew.poulter@simplesquid.co.za",
"homepage": "https://simplesquid.co.za/",
"role": "Developer"
}
],
"homepage": "https://github.com/simplesquid/nova-enum-field",
"require": {
"php": "^8.1",
"bensampo/laravel-enum": "^5.0 || ^6.0",
"illuminate/support": "^10.0 || ^11.0",
"laravel/nova": "^4.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.44",
"laravel/pint": "^1.2",
"mockery/mockery": "^1.3.3",
"nunomaduro/collision": "^7.0 || ^8.0",
"orchestra/testbench": "^8.0 || ^9.0",
"phpunit/phpunit": "^10.1",
"quotevelocity/novaunit": "^4.0",
"symfony/var-dumper": "^6.0 || ^7.0"
},
"repositories": [
{
"type": "composer",
"url": "https://nova.laravel.com"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"SimpleSquid\\Nova\\Fields\\Enum\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"SimpleSquid\\Nova\\Fields\\Enum\\Tests\\": "tests"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
},
"sort-packages": true
},
"extra": {
"laravel": {
"providers": []
}
},
"scripts": {
"test": "vendor/bin/phpunit --colors=always"
}
}