-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1.04 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
{
"name": "v-dem/queasy-config",
"description": "Configuration classes (currently supports PHP, INI, XML and JSON configs), part of QuEasy PHP Framework",
"homepage": "https://github.com/v-dem/queasy-config/",
"keywords": ["php", "config", "configuration", "ini", "json", "xml", "queasy", "framework"],
"license": "LGPL-3.0-only",
"minimum-stability": "dev",
"version": "1.1.0",
"authors": [
{
"name": "Vitaly Demyanenko",
"email": "[email protected]"
}
],
"config": {
"preferred-install": "dist"
},
"require": {
"php": ">=5.3.0|>=7.0.0",
"v-dem/queasy-helper": "1.*"
},
"require-dev": {
"php": ">=7.2.0",
"phpunit/phpunit": "*"
},
"autoload":{
"psr-4":{
"queasy\\config\\": "src/"
}
},
"autoload-dev":{
"psr-4":{
"queasy\\config\\tests\\": "tests/src/"
}
},
"scripts": {
"test": "phpunit --coverage-clover coverage.xml"
}
}