-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
60 lines (60 loc) · 1.28 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
{
"name": "rougin/spark-plug",
"description": "Codeigniter 3 in a single variable.",
"keywords": [ "codeigniter", "php", "spark-plug" ],
"homepage": "https://roug.in/spark-plug/",
"license": "MIT",
"authors":
[
{
"email": "[email protected]",
"homepage": "https://roug.in/",
"name": "Rougin Gutib",
"role": "Software Engineer"
}
],
"require":
{
"php": ">=5.3.0"
},
"require-dev":
{
"phpunit/phpunit": "~4.2|~5.7|~6.0|~7.0|~8.0|~9.0",
"rougin/codeigniter": "~3.0",
"sanmai/phpunit-legacy-adapter": "~6.1|~8.0"
},
"autoload":
{
"psr-4":
{
"Rougin\\SparkPlug\\": "src"
}
},
"autoload-dev":
{
"psr-4":
{
"Rougin\\SparkPlug\\": "tests"
}
},
"scripts":
{
"test": "phpunit"
},
"extra":
{
"branch-alias":
{
"dev-master": "1.0-dev"
}
},
"suggest":
{
"rougin/codeigniter": "A Composer-based Codeigniter 3.",
"rougin/combustor": "MVC code generator for Codeigniter 3.",
"rougin/credo": "A Doctrine ORM wrapper for Codeigniter 3.",
"rougin/ignite": "A Composer-based Codeigniter 3 project.",
"rougin/refinery": "\"Ready-to-eat\" migrations for Codeigniter 3.",
"rougin/wildfire": "A Query Builder wrapper for Codeigniter 3."
}
}