forked from simplesquid/nova-advanced-number-field
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
53 lines (53 loc) · 1.32 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
{
"name": "jeffersonsimaogoncalves/nova-advanced-number-field",
"description": "A Laravel Nova field which adds additional functionality to the default Number field.",
"keywords": [
"simplesquid",
"laravel",
"nova",
"field",
"number",
"nova-advanced-number-field"
],
"homepage": "https://github.com/simplesquid/nova-advanced-number-field",
"license": "MIT",
"authors": [
{
"name": "Matthew Poulter",
"email": "[email protected]",
"homepage": "https://simplesquid.co.za/",
"role": "Developer"
}
],
"repositories": [
{
"type": "composer",
"url": "https://nova.laravel.com"
}
],
"require": {
"php": "^7.3|^8.0",
"laravel/nova": "^4.0"
},
"require-dev": {
"symfony/var-dumper": "^4.3",
"orchestra/testbench": "^5.0",
"phpunit/phpunit": "^8.0"
},
"autoload": {
"psr-4": {
"SimpleSquid\\Nova\\Fields\\AdvancedNumber\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"SimpleSquid\\Skeleton\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"config": {
"sort-packages": true
}
}