-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.23 KB
/
Copy pathcomposer.json
File metadata and controls
48 lines (48 loc) · 1.23 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
{
"name": "hatchyu/laravel-sequence",
"description": "Concurrency-safe Laravel sequence numbers using database transactions, row-level locking, grouping, formatting, and model integration.",
"license": "MIT",
"authors": [
{
"name": "Raju Koyilandy",
"email": "hello@rajeshmk.com"
}
],
"require": {
"php": "^8.3",
"laravel/framework": "^10.0||^11.0||^12.0||^13.0"
},
"require-dev": {
"driftingly/rector-laravel": "^2.1",
"laravel/pint": "^1.28",
"rector/rector": "^2.3",
"pestphp/pest": "^2.8",
"pestphp/pest-plugin-laravel": "^2.0"
},
"autoload": {
"psr-4": {
"Hatchyu\\Sequence\\": "src"
},
"files": [
"helper-functions/sequence-helpers.php"
]
},
"extra": {
"branch-alias": {
"dev-main": "2.0.x-dev"
},
"laravel": {
"providers": [
"Hatchyu\\Sequence\\SequenceServiceProvider"
]
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}