-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.39 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
49
50
{
"name": "nenglish7/optimize",
"type": "library",
"keywords": [
"optimize",
"secure-by-default",
"secure-coding",
"php-security",
"helper-lib",
"php5-6",
"php7-0",
"php7-1",
"php7-2"
],
"description": "Optimize your php to ensure that all the functions and classes are defined for complete compatibility. Enable helper functions and classes to speed up the development of your web application.",
"homepage": "https://github.com/Nenglish7/Optimize",
"license": "Apache-2.0",
"authors": [
{
"name": "Nicholas English",
"homepage": "https://github.com/Nenglish7",
"email": "nenglish0820@outlook.com",
"role": "Owner/Developer"
}
],
"require": {
"php": "^5.6|^7",
"symfony/polyfill-php72": "*",
"symfony/polyfill-php71": "*",
"symfony/polyfill-php70": "*",
"psr/container": "*",
"psr/log": "*"
},
"autoload": {
"psr-4": {
"Nenglish7\\Optimize\\Class\\": "./src"
},
"files": ["./boot.php"]
},
"require-dev": {
"squizlabs/php_codesniffer": "^3",
"phpunit/phpunit": "^5|^6"
},
"config": {
"preferred-install": "dist",
"optimize-autoloader": true
},
"minimum-stability": "stable",
"prefer-stable": true
}