-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
41 lines (41 loc) · 970 Bytes
/
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
{
"name": "outhebox/nova-fields-agent",
"description": "This field give the ability to hide fields from your resources table on mobile screens for a better responsive concept",
"keywords": [
"laravel",
"nova",
"mobile",
"responsive",
"Mohamed Ashraf",
"OutheBox"
],
"license": "MIT",
"authors": [
{
"name": "Mohamed Ashraf",
"email": "[email protected]",
"role": "Owner"
}
],
"require": {
"php": ">=7.1.0",
"jenssegers/agent": "^2.6"
},
"autoload": {
"psr-4": {
"Outhebox\\NovaFieldsAgent\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Outhebox\\NovaFieldsAgent\\FieldServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}