-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
68 lines (68 loc) · 1.72 KB
/
composer.json
File metadata and controls
68 lines (68 loc) · 1.72 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "dystcz/flow",
"description": "Manage workflows, business processes, multistep forms and more in Laravel.",
"keywords": [
"dystcz",
"flow",
"workflow",
"business-processes",
"php",
"laravel"
],
"homepage": "https://github.com/dystcz/flow",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Jakub Theimer",
"email": "jakub@dy.st",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"illuminate/support": "^9.0|^10.0",
"laravel/framework": "^9.2|^10.0",
"marcovo/laravel-dag-model": "^0.4.0",
"spatie/laravel-medialibrary": "^10.0.0",
"spatie/laravel-schemaless-attributes": "^2.4"
},
"require-dev": {
"laravel/pint": "^1.5",
"nunomaduro/collision": "^6.4",
"orchestra/testbench": "^7.21",
"pestphp/pest-plugin-laravel": "^1.4",
"phpunit/phpunit": "^9.0"
},
"autoload": {
"psr-4": {
"Dystcz\\Flow\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Dystcz\\Flow\\Tests\\": "tests"
}
},
"scripts": {
"test": "./vendor/bin/pest",
"test-coverage": "vendor/bin/pest --coverage-html coverage"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
},
"extra": {
"laravel": {
"providers": [
"Dystcz\\Flow\\FlowServiceProvider"
],
"aliases": {
"Flow": "Dystcz\\Flow\\FlowFacade"
}
}
}
}