-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
48 lines (48 loc) · 1.48 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
{
"name": "v-dem/queasy-framework",
"description": "QuEasy PHP framework, main package",
"homepage": "https://github.com/v-dem/queasy-framework/",
"keywords": ["php", "framework", "mvc"],
"license": "LGPL-3.0-only",
"version": "1.1.0",
"minimum-stability": "dev",
"authors": [
{
"name": "Vitaly Demyanenko",
"email": "[email protected]"
}
],
"config": {
"preferred-install": "dist"
},
"require": {
"php": ">=5.3.0|>=7.0.0",
"psr/log": "~1.1",
"psr/http-message": "~1.0",
"fig/http-message-util": "~1.0"
},
"require-dev": {
"php": ">=7.1.0",
"phpunit/phpunit": "~10",
"v-dem/queasy-helper": "1.*",
"ext-xdebug": "*"
},
"suggest": {
"v-dem/queasy-config": "Configuration provider package, supports PHP (and multifile configs in this case), INI, XML and JSON (and YAML in future) formats",
"v-dem/queasy-log": "PSR-3 compatible logger package, supports file system log writer, console and email (using mail() function)",
"v-dem/queasy-db": "PDO wrapper classes, simple SQL builder"
},
"autoload":{
"psr-4":{
"queasy\\framework\\": "src/"
}
},
"autoload-dev":{
"psr-4":{
"queasy\\framework\\tests\\": "tests/src/"
}
},
"scripts": {
"test": "XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-clover coverage.xml"
}
}