-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.14 KB
/
composer.json
File metadata and controls
53 lines (53 loc) · 1.14 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
{
"name": "codeages/biz-framework",
"description": "A service layer framework.",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Codeages\\Biz\\Framework\\": "src/"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require": {
"php": ">=7.2.5",
"pimple/pimple": "~3.2",
"symfony/event-dispatcher": "^5.4.35",
"symfony/finder": "^5.4.35",
"symfony/console": "^5.4.35",
"symfony/lock": "^5.4.35",
"doctrine/common": "3.0.3",
"doctrine/dbal": "~2.4",
"doctrine/annotations": "~1.2",
"davedevelopment/phpmig": "~1.2",
"mtdowling/cron-expression": "~1.2",
"webpatser/laravel-uuid": "~2.0",
"monolog/monolog": "^1.20",
"vlucas/valitron": "^1.4",
"ext-json": "*"
},
"require-dev": {
"mockery/mockery": "^0.9.9",
"phpunit/phpunit": "^9.1 || ^10.1",
"ramsey/uuid": "^3.9",
"phpspec/prophecy": "^1.18",
"phpspec/prophecy-phpunit": "^2.1"
},
"config": {
"bin-dir": "bin"
},
"suggest": {
"ext-redis": "*",
"ext-pcntl": "*"
},
"bin": [
"bin/biz"
]
}