-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.78 KB
/
Copy pathcomposer.json
File metadata and controls
52 lines (52 loc) · 1.78 KB
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
{
"$schema": "https://getcomposer.org/schema.json",
"name": "pushery/polyslug-for-laravel",
"description": "Polymorphic, multilingual routable identity for Eloquent — leak-safe IDs, per-locale slugs, and hreflang out of the box.",
"keywords": [
"laravel"
],
"license": "MIT",
"type": "library",
"homepage": "https://github.com/pushery/polyslug-for-laravel",
"support": {
"issues": "https://github.com/pushery/polyslug-for-laravel/issues",
"source": "https://github.com/pushery/polyslug-for-laravel"
},
"require": {
"php": "^8.4",
"ext-json": "*",
"illuminate/collections": "^13.0",
"illuminate/console": "^13.0",
"illuminate/container": "^13.0",
"illuminate/contracts": "^13.0",
"illuminate/database": "^13.0",
"illuminate/filesystem": "^13.0",
"illuminate/http": "^13.0",
"illuminate/routing": "^13.0",
"illuminate/support": "^13.0",
"illuminate/view": "^13.0",
"sqids/sqids": "^0.5.0"
},
"suggest": {
"laravel/head": "Lets a Polyslug model describe its own <head>: Head::polyslug($model) writes the canonical URL, the reciprocal hreflang set, the Open Graph locale set and the robots directive from the model's own slug data. Needs Laravel 13.17+, which is laravel/head's own floor - Polyslug itself needs only 13.0."
},
"autoload": {
"psr-4": {
"Polyslug\\": "src/"
}
},
"config": {
"sort-packages": true,
"process-timeout": 0,
"allow-plugins": {}
},
"extra": {
"laravel": {
"providers": [
"Polyslug\\PolyslugServiceProvider"
]
}
},
"minimum-stability": "stable",
"prefer-stable": true
}