-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
61 lines (61 loc) · 1.31 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
54
55
56
57
58
59
60
61
{
"name": "rougin/wildfire",
"description": "Query Builder wrapper for Codeigniter 3.",
"keywords": [ "codeigniter", "query-builder", "wildfire" ],
"homepage": "https://roug.in/wildfire/",
"license": "MIT",
"authors":
[
{
"name": "Rougin Gutib",
"email": "[email protected]",
"homepage": "http://roug.in",
"role": "Software Engineer"
}
],
"require":
{
"php": ">=5.4.0"
},
"require-dev":
{
"phpunit/phpunit": "~4.2|~5.7|~6.0|~7.0|~8.0|~9.0",
"rougin/codeigniter": "~3.0",
"rougin/spark-plug": "~0.5",
"sanmai/phpunit-legacy-adapter": "~6.1|~8.0"
},
"autoload":
{
"psr-4":
{
"Rougin\\Wildfire\\": "src"
}
},
"autoload-dev":
{
"psr-4":
{
"Rougin\\Wildfire\\": "tests"
}
},
"scripts":
{
"test": "phpunit"
},
"extra":
{
"branch-alias":
{
"dev-master": "1.0-dev"
}
},
"suggest":
{
"rougin/codeigniter": "Packaged \"system\" of Codeigniter 3.",
"rougin/combustor": "MVC code generator for Codeigniter 3.",
"rougin/credo": "Doctrine ORM wrapper for Codeigniter 3.",
"rougin/ignite": "Yet another Codeigniter 3 project template.",
"rougin/refinery": "\"Ready-to-eat\" Codeigniter 3 migrations.",
"rougin/spark-plug": "Codeigniter 3 projects as variables."
}
}