-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 967 Bytes
/
composer.json
File metadata and controls
42 lines (42 loc) · 967 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
41
42
{
"name": "ilvalerione/state-machine",
"description": "State machine with laravel/eloquent integration",
"keywords": ["laravel", "state machine", "php"],
"license": "MIT",
"authors": [
{
"name": "Valerio Barbera",
"email": "support@logengine.dev"
}
],
"require": {
"php": ">=7.1.0",
"illuminate/support": "5.*",
"symfony/property-access": "^4.0"
},
"require-dev": {
"orchestra/testbench": "~3.0"
},
"autoload": {
"psr-4": {
"Aventure\\StateMachine\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Aventure\\StateMachine\\ServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}