forked from bluzphp/framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.43 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
{
"name": "bluzphp/framework",
"description": "Lightweight PHP framework",
"type": "library",
"require": {
"php": ">=5.4",
"ext-PDO": "*",
"ext-pdo_mysql": "*",
"ext-json": "*",
"psr/log": "1.*"
},
"require-dev": {
"phpunit/phpunit": "4.1.*",
"satooshi/php-coveralls": "dev-master",
"squizlabs/php_codesniffer": "1.*"
},
"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)"
},
"autoload": {
"psr-4": {
"Bluz\\": "src/",
"Bluz\\Tests\\": "tests/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"
}