-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.46 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
51
52
53
{
"name": "genial-framework/optimize",
"keywords": [
"php-library",
"php-component",
"genial-framework",
"optimization",
"php72"
],
"description": "Optimize component from Genial Framework. A well coded repository used to rewrite the internal functions, classes, and constants for better use.",
"homepage": "https://github.com/genial-framework/Optimize",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Nicholas English",
"email": "nenglish0820@outlook.com",
"homepage": "https://github.com/obozaxy",
"role": "Develop/Maintain"
},
{
"name": "Repository Contributors",
"homepage": "https://github.com/genial-framework/Optimize/graphs/contributors",
"role": "Contribute"
}
],
"autoload": {
"psr-4": {
"Genial\\Optimize\\": "src/"
},
"files": [
"./rewrite-functions.php",
"./rewrite-classes.php",
"./custom-functions.php",
"./custom-classes.php"
]
},
"require": {
"php": "^7.2",
"ext-runkit": "*"
},
"require-dev": {
"phpunit/phpunit": "^7"
},
"scripts": {
"test": "./vendor/bin/phpunit"
},
"config": {
"preferred-install": "dist",
"optimize-autoloader": true,
"sort-packages": true
},
"prefer-stable": true
}