-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
58 lines (58 loc) · 1.58 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
{
"name": "rossbearman/eloquent-calamari",
"description": "Obfuscate incrementing IDs with Sqids for Laravel and Eloquent.",
"keywords": ["sqids","laravel","eloquent","hashids"],
"homepage": "https://github.com/rossbearman/eloquent-calamari",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Ross Bearman",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"ext-mbstring": "*",
"illuminate/config": "^10.0 | ^11.0",
"illuminate/contracts": "^10.0 | ^11.0",
"illuminate/database": "^10.0 | ^11.0",
"illuminate/support": "^10.0 | ^11.0",
"sqids/sqids": "^0.4.0"
},
"require-dev": {
"larastan/larastan": "^2.9",
"laravel/pint": "^1.13",
"orchestra/testbench": "^8.21 | ^v9.0",
"phpunit/phpunit": "^10.5"
},
"autoload": {
"psr-4": {
"RossBearman\\Sqids\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"RossBearman\\Sqids\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"RossBearman\\Sqids\\SqidsServiceProvider"
]
}
},
"config": {
"sort-packages": true,
"preferred-install": "dist",
"optimize-autoloader": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"lint": "@php vendor/bin/pint",
"analyse": "@php vendor/bin/phpstan analyse",
"test": "@php vendor/bin/phpunit"
}
}