-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
40 lines (40 loc) · 1009 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": "frenzy/turbolinks",
"description": "Frenzy Turbolinks makes following links in your web application faster with Laravel",
"keywords": [
"laravel", "turbolinks",
"javascript", "larasset", "assets", "ajax", "pjax"
],
"license": "MIT",
"authors": [
{
"name": "Studio Frénétic",
"email": "info@studiofrenetic.com"
},
{
"name": "Tortue Torche",
"email": "tortuetorche@spam.me"
}
],
"require": {
"barryvdh/laravel-stack-middleware": "~1.2.5",
"helthe/turbolinks": "^4.0.0"
},
"autoload": {
"psr-0": {
"Frenzy\\Turbolinks\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Frenzy\\Turbolinks\\TurbolinksServiceProvider"
]
}
},
"config": {
"preferred-install": "dist"
},
"prefer-stable": true,
"minimum-stability": "dev"
}