-
Notifications
You must be signed in to change notification settings - Fork 250
/
composer.json
64 lines (64 loc) · 1.48 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
{
"name": "tightenco/ziggy",
"description": "Use your Laravel named routes in JavaScript.",
"keywords": [
"laravel",
"routes",
"javascript",
"ziggy"
],
"homepage": "https://github.com/tighten/ziggy",
"license": "MIT",
"authors": [
{
"name": "Daniel Coulbourne",
"email": "[email protected]"
},
{
"name": "Jake Bathman",
"email": "[email protected]"
},
{
"name": "Jacob Baker-Kretzmar",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"ext-json": "*",
"laravel/framework": ">=9.0"
},
"require-dev": {
"laravel/folio": "^1.1",
"orchestra/testbench": "^7.0 || ^8.0 || ^9.0",
"pestphp/pest": "^2.26",
"pestphp/pest-plugin-laravel": "^2.4"
},
"autoload": {
"psr-4": {
"Tighten\\Ziggy\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Tighten\\Ziggy\\ZiggyServiceProvider"
]
}
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"kylekatarnls/update-helper": true,
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}