-
-
Notifications
You must be signed in to change notification settings - Fork 76
/
composer.json
50 lines (50 loc) · 1.33 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
{
"name": "sandreas/m4b-tool",
"minimum-stability": "dev",
"prefer-stable": true,
"platform":{"php":"7.4"},
"require": {
"monolog/monolog": "^1.22",
"symfony/console": "^4.0",
"symfony/process": "^4.0",
"symfony/cache": "^4.0",
"twig/twig": "^3.0",
"sandreas/php-time": "dev-master",
"sandreas/php-strings": "dev-master",
"ext-simplexml": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-dom": "*",
"ext-libxml": "*",
"ext-zip": "*",
"ext-curl": "*",
"lywzx/php-epub": "^0.1.2",
"erusev/parsedown": "dev-master#cb17b6477dfff935958ba01325f2e8a2bfa6dab3 as 1.7.1",
"doctrine/collections": "^1.6",
"wapmorgan/media-file": "^0.1.4",
"psr/http-message": "^1.0"
},
"autoload": {
"psr-4": {
"M4bTool\\": "src/library/"
}
},
"config": {
"optimize-autoloader": true
},
"require-dev": {
"mikey179/vfsstream": "^1.6",
"phpunit/phpunit": "^9.5",
"mockery/mockery": "^1.4"
},
"repositories": [
{
"type": "vcs",
"url": "[email protected]:sandreas/php-strings.git"
},
{
"type": "vcs",
"url": "[email protected]:sandreas/php-time.git"
}
]
}