-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
62 lines (57 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
54
55
56
57
58
59
60
61
62
{
"type": "library",
"name": "sqon/app",
"description": "Command line application for managing Sqons.",
"keywords": ["PHP", "sqlite", "container"],
"license": [
"MIT",
"Apache-2.0"
],
"support": {
"issues": "https://github.com/sqon/app/issues",
"source": "https://github.com/sqon/app"
},
"authors": [
{
"name": "Kevin Herrera",
"email": "[email protected]",
"homepage": "http://kevin.herrera.io/",
"role": "Developer"
}
],
"autoload": {
"files": [
"src/Sqon/functions.php"
],
"psr-4": {
"Sqon\\Builder\\": "src/Sqon/Builder",
"Sqon\\Console\\": "src/Sqon/Console"
}
},
"autoload-dev": {
"files": [
"tests/functions.php"
],
"psr-4": {
"Test\\Sqon\\Builder\\": "tests/Sqon/Builder",
"Test\\Sqon\\Console\\": "tests/Sqon/Console",
"Test\\Sqon\\Test\\": "tests/Sqon/Test"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"require": {
"php": ">=5.6",
"ext-pdo_sqlite": "*",
"kherge/file-manager": "^1.1",
"sqon/sqon": "^0.10",
"symfony/event-dispatcher": "^2.7",
"symfony/config": "^2.7",
"symfony/console": "^2.7",
"symfony/process": "^2.7",
"symfony/yaml": "^2.7"
}
}