-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathcomposer.json
52 lines (52 loc) · 1.83 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
{
"name": "bluzphp/framework",
"description": "Lightweight PHP framework",
"type": "library",
"require": {
"php": ">=7.4",
"ext-PDO": "*",
"ext-pdo_mysql": "*",
"ext-json": "*",
"ext-ctype": "*",
"bluzphp/collection": "~1.0",
"psr/log": "~1.1",
"laminas/laminas-diactoros": "~2.6",
"laminas/laminas-httphandlerrunner": "~1.4",
"symfony/cache": "^5.3"
},
"require-dev": {
"codeception/codeception": "~4.1",
"codeception/module-asserts": "~1.3",
"codeception/module-phpbrowser": "~1.0",
"php-coveralls/php-coveralls": "~2.4",
"squizlabs/php_codesniffer": "~3.6",
"phploc/phploc": "~7.0"
},
"suggest": {
"ext-gettext": "required by Bluz\\Translator (https://github.com/bluzphp/framework/wiki/Translator)",
"ext-redis": "required by Redis adapter for Bluz\\Cache (https://github.com/bluzphp/framework/wiki/Cache)",
"ext-memcached": "required by Memcached adapter for Bluz\\Cache (https://github.com/bluzphp/framework/wiki/Cache)",
"phpmailer/phpmailer": "required by Bluz\\Mailer (https://github.com/bluzphp/framework/wiki/Mailer)",
"predis/predis": "required by Redis adapter for Bluz\\Cache (https://github.com/bluzphp/framework/wiki/Cache)"
},
"autoload": {
"psr-4": {
"Bluz\\": "src/"
},
"files": [
"src/_functions.php",
"src/_loader.php"
]
},
"authors": [
{
"name": "Bluz Framework Contributors",
"homepage": "https://github.com/bluzphp/framework/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/bluzphp/framework/issues",
"wiki": "https://github.com/bluzphp/framework/wiki"
},
"license": "MIT"
}