-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathcomposer.json
61 lines (60 loc) · 1.6 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
{
"name": "danack/imagick-demos",
"license": "MIT",
"require-dev": {
"mikey179/vfsstream": "1.4.0",
"danack/coding-standard": "0.3.0",
"phpunit/phpunit": "9.5.6",
"phpstan/phpstan-strict-rules": "^0.12.9",
"slevomat/coding-standard": "^7.0.13",
"squizlabs/php_codesniffer": "^3.6.0",
"yoast/yoastcs": "2.1.0"
},
"repositories": [
{
"type": "git",
"url": "https://github.com/Danack/Params.git"
}
],
"require": {
"rdlowrey/auryn": "^1.3.0",
"danack/configurator": "1.1.1",
"danack/console": "^2.6.0",
"danack/esprintf": "2.0.0",
"danack/filefilter": "^0.0.1",
"danack/datatype": "^0.5.1",
"danack/slim-auryn-invoker": "dev-master",
"ext-json": "*",
"slim/slim": "3.7.0",
"fluentdom/fluentdom": "v4.1.3",
"nikic/fast-route": "^1.0",
"predis/predis": "^1.0.1",
"room11/caching": "^0.0.4",
"room11/http": "^0.2.1",
"danack/var-map": "^0.6.0",
"twig/twig": "^2.11",
"ext-curl": "*",
"dmore/chrome-mink-driver": "^2.8",
"ext-dom": "*"
},
"autoload": {
"files": ["src/functions.php"],
"psr-0": {
"ImagickDemo": ["./src/" ],
"Stats": ["./src/" ]
}
},
"autoload-dev": {
"psr-0": {
"ImagickDemoTest\\": "test/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"prefer-dist": true,
"config": {
"platform": {
"php": "8.0"
}
}
}