forked from HalalSoft/laravel-select2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 851 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
{
"name": "halalsoft/laravel-select2",
"description": "Simple laravel package to make easier using select2 ajax with the filter ",
"type": "library",
"keywords": [
"laravel",
"select2",
"ajax"
],
"license": "MIT",
"authors": [
{
"name": "Dyas Yaskur",
"email": "[email protected]",
"homepage": "http://yaskur.com"
}
],
"require": {
"php": ">=7.0",
"illuminate/support": ">=5.5"
},
"autoload": {
"psr-4": {
"HalalSoft\\LaravelSelect2\\": "src/LaravelSelect2/"
},
"files": [
"src/LaravelSelect2/helpers.php"
]
},
"extra": {
"laravel": {
"providers": [
"HalalSoft\\LaravelSelect2\\Select2ServiceProvider"
],
"aliases": {
"Select2": "HalalSoft\\LaravelSelect2\\Select2"
}
}
},
"minimum-stability": "dev"}