-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 970 Bytes
/
composer.json
File metadata and controls
40 lines (40 loc) · 970 Bytes
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
{
"name": "dimonka2/flatstate",
"description": "Model states manager with simplified state declaration for Laravel",
"type": "library",
"homepage": "https://github.com/Dimonka2",
"license": "MIT",
"authors": [
{
"name": "Dmitry Gultyaev",
"email": "dimonka@gmail.com"
}
],
"keywords": [
"laravel",
"php",
"state",
"helper"
],
"minimum-stability": "dev",
"require": {
"php": "^7 | ^8",
"laravel/framework": "^7 | ^8 | ^9 | ^10 | ^11.0",
"composer/composer": "^2"
},
"extra": {
"laravel": {
"providers": [
"dimonka2\\flatstate\\FlatstateServiceProvider"
],
"aliases": {
"Flatstate": "dimonka2\\flatstate\\Flatstate"
}
}
},
"autoload": {
"psr-4": {
"dimonka2\\flatstate\\": "src/"
}
}
}