-
Notifications
You must be signed in to change notification settings - Fork 172
/
Copy pathcomposer.json
56 lines (56 loc) · 1.31 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
{
"name": "vinkla/hashids",
"description": "A Hashids bridge for Laravel",
"license": "MIT",
"keywords": [
"hashids",
"laravel"
],
"authors": [
{
"name": "Vincent Klaiber",
"homepage": "https://github.com/vinkla"
}
],
"require": {
"php": "^8.2",
"graham-campbell/manager": "^5.0",
"hashids/hashids": "^5.0",
"illuminate/contracts": "^11.0",
"illuminate/support": "^11.0"
},
"require-dev": {
"graham-campbell/analyzer": "^4.1",
"graham-campbell/testbench": "^6.1",
"mockery/mockery": "^1.6.6",
"phpunit/phpunit": "^11.5"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Vinkla\\Hashids\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Vinkla\\Tests\\Hashids\\": "tests/"
}
},
"config": {
"preferred-install": "dist"
},
"extra": {
"branch-alias": {
"dev-master": "12.0-dev"
},
"laravel": {
"aliases": {
"Hashids": "Vinkla\\Hashids\\Facades\\Hashids"
},
"providers": [
"Vinkla\\Hashids\\HashidsServiceProvider"
]
}
}
}