-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
38 lines (38 loc) · 997 Bytes
/
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
{
"name": "danack/configurator",
"description": "Generates config files from PHP, JSON and Yaml data files.",
"keywords": ["php", "config", "environment", "configuration", "tool", "UTF-8"],
"license": "MIT",
"autoload": {
"psr-0": {
"Configurator": "src/"
}
},
"autoload-dev": {
"psr-0": { "ExampleApp\\": "example/" }
},
"bin": [
"bin/classconfig",
"bin/configurate",
"bin/genenv",
"bin/fpmconv"
],
"require-dev": {
"mikey179/vfsstream": "^1.4.0",
"phpunit/phpunit": "9.5.6",
"squizlabs/php_codesniffer": "^3.6.0",
"symfony/yaml": "^2.8.2"
},
"require": {
"rdlowrey/auryn": "^1.0.2",
"danack/console": "^2.6.1",
"php": "^7.2 || ^8.0"
},
"authors": [
{
"name": "Dan Ackroyd",
"email": "Danack@basereality.com",
"homepage": "http://www.basereality.com"
}
]
}