-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
39 lines (39 loc) · 982 Bytes
/
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
{
"name": "bluzphp/bluzman",
"description": "Bluzman - Simple workflow manager for Bluz Skeleton",
"type": "library",
"minimum-stability": "dev",
"license": "MIT",
"authors": [
{
"name": "Bluzman Contributors",
"homepage": "https://github.com/bluzphp/bluzman/graphs/contributors"
}
],
"require": {
"php": ">=7.4",
"bluzphp/framework": "~7.13",
"codeception/codeception": "~4.1",
"composer/composer": "~2.1",
"robmorgan/phinx": "~0.12",
"symfony/console": "~5.3",
"symfony/event-dispatcher": "~5.3",
"symfony/filesystem": "~5.3",
"symfony/finder": "~5.3",
"symfony/process": "~5.3",
"symfony/yaml": "~5.3"
},
"require-dev": {
"phpunit/phpunit": "~9.5",
"mockery/mockery": "~1.4",
"nelmio/alice": "~3.8",
"php-coveralls/php-coveralls": "~2.4",
"squizlabs/php_codesniffer": "~3.6"
},
"bin": ["bin/bluzman"],
"autoload": {
"psr-4": {
"Bluzman\\": "src/"
}
}
}