-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 969 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
39
40
41
42
{
"name": "nenglish7/function",
"type": "library",
"keywords": [
"php5-6",
"php7-0",
"php7-1",
"php7-2",
"php-library",
"function"
],
"description": "A complete list full of custom functions that can do so much more.",
"homepage": "https://github.com/Nenglish7/Function",
"license": "MIT",
"authors": [
{
"name": "Nicholas English",
"email": "nenglish0820@outlook.com",
"homepage": "https://github.com/Nenglish7"
}
],
"require": {
"php": "^5.6|^7"
},
"autoload": {
"files": [
"function.php"
]
},
"require-dev": {
"phpunit/phpunit": "^5|^6"
},
"scripts": {
"test": "./vendor/bin/phpunit"
},
"config": {
"preferred-install": "dist",
"optimize-autoloader": true
},
"minimum-stability": "stable",
"prefer-stable": true
}