-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 1.2 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
{
"name": "syzerphp-framework/environment",
"type": "library",
"keywords": ["php7", "library", "php-framework", "syzerphp-framework", "enviroment", "configuration", "php-component", "component"],
"description": "Environment component for SyzerPHP Framework.",
"homepage": "https://github.com/SyzerPHP/Environment",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Nicholas English",
"email": "nenglish0820@outlook.com",
"homepage": "https://github.com/Nenglish7",
"role": "Developer"
},
{
"name": "SyzerPHP Contributors",
"homepage": "https://github.com/orgs/SyzerPHP/people",
"role": "Contribute"
}
],
"require": {
"php": "^7.2"
},
"autoload": {
"psr-4": { "SyzerPHP\\Environment\\": ""},
"exclude-from-classmap": [
"/tests/"
]
},
"require-dev": {
"phpunit/phpunit": "^6.5"
},
"scripts": {
"test": "./vendor/bin/phpunit"
},
"config": {
"preferred-install": "dist",
"optimize-autoloader": true
},
"minimum-stability": "stable",
"prefer-stable": true
}