-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
65 lines (65 loc) · 1.69 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
59
60
61
62
63
64
65
{
"name": "ringierimu/state-workflow",
"type": "library",
"description": "Laravel State Workflow provide tools for defining and managing workflows and activities with ease.",
"keywords": [
"workflow",
"state management",
"state machine",
"state workflow",
"laravel"
],
"homepage": "https://github.com/RingierIMU/state-workflow",
"license": "MIT",
"authors": [
{
"name": "Norby Baruani",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.0",
"illuminate/events": "^9.52|^10.0",
"illuminate/support": "^9.52|^10.0",
"symfony/event-dispatcher": "^5.1",
"symfony/workflow": "^5.1",
"symfony/property-access": "^5.1"
},
"require-dev": {
"funkjedi/composer-include-files": "^1.0",
"mockery/mockery": "^1.3|^1.4.2",
"orchestra/testbench": "^6.24|^7.0|^8.0",
"phpunit/phpunit": "^9.5|^10.0"
},
"extra": {
"include_files": [
"tests/Fixtures/Helpers.php"
],
"laravel": {
"providers": [
"Ringierimu\\StateWorkflow\\StateWorkflowServiceProvider"
]
}
},
"autoload": {
"psr-4": {
"Ringierimu\\StateWorkflow\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ringierimu\\StateWorkflow\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"funkjedi/composer-include-files": true
}
},
"scripts": {
"test": "phpunit"
}
}