-
-
Notifications
You must be signed in to change notification settings - Fork 459
/
composer.json
70 lines (70 loc) · 1.67 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
66
67
68
69
70
{
"name": "cviebrock/eloquent-sluggable",
"description": "Easy creation of slugs for your Eloquent models in Laravel",
"keywords": [
"eloquent-sluggable",
"eloquent",
"sluggable",
"laravel",
"lumen",
"slug"
],
"homepage": "https://github.com/cviebrock/eloquent-sluggable",
"license": "MIT",
"authors": [
{
"name": "Colin Viebrock",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"cocur/slugify": "^4.3",
"illuminate/config": "^11.0",
"illuminate/database": "^11.0",
"illuminate/support": "^11.0"
},
"require-dev": {
"mockery/mockery": "^1.4.4",
"orchestra/testbench": "^9.0",
"pestphp/pest": "^2.28"
},
"autoload": {
"psr-4": {
"Cviebrock\\EloquentSluggable\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Cviebrock\\EloquentSluggable\\Tests\\": "tests"
}
},
"scripts": {
"fresh": [
"rm -rf vendor composer.lock",
"composer install"
],
"tests": [
"rm -rf build",
"XDEBUG_MODE=coverage php vendor/bin/pest"
]
},
"extra": {
"laravel": {
"providers": [
"Cviebrock\\EloquentSluggable\\ServiceProvider"
]
},
"branch-alias": {
"dev-master": "11.0.x-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}