-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
65 lines (65 loc) · 1.58 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
{
"name": "efficiently/jquery-laravel",
"description": "This package provides jQuery and the jQuery-ujs driver for your Laravel >= 6 application.",
"keywords": [
"jquery",
"laravel",
"laravel 6",
"laravel 7",
"laravel 8",
"larasset",
"assets",
"asset pipeline",
"pipeline",
"javascript",
"ujs",
"unobtrusive",
"ajax"
],
"license": "MIT",
"authors": [
{
"name": "Tortue Torche",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2||^8.0",
"illuminate/support": "~6.0||~7.0||~8.0",
"laravelcollective/html": "^6.2.0"
},
"require-dev": {
"phpunit/phpunit": "^8.2.3||~9.0",
"mockery/mockery": "~1.3.3||^1.4.2",
"orchestra/testbench": "~4.0||~5.0||~6.0",
"anahkiasen/former": "~4.6.0"
},
"autoload": {
"files": [
"src/Efficiently/JqueryLaravel/helpers.php"
],
"psr-4": {
"Efficiently\\JqueryLaravel\\": "src/Efficiently/JqueryLaravel/"
}
},
"autoload-dev": {
"classmap": [
"tests/JqlTestCase.php"
],
"psr-4": {
"Jql\\": "tests/fixtures/jql/"
}
},
"extra": {
"laravel": {
"providers": [
"Efficiently\\JqueryLaravel\\JqueryLaravelServiceProvider"
]
}
},
"config": {
"preferred-install": "dist"
},
"prefer-stable": true,
"minimum-stability": "dev"
}