-
Notifications
You must be signed in to change notification settings - Fork 17
/
composer.json
58 lines (58 loc) · 1.57 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
{
"name": "cygnite/framework",
"description": "Cygnite PHP Framework",
"type": "library",
"keywords": ["Cygnite", "PHP", "Framework"],
"homepage": "http://www.cygniteframework.com",
"license": "MIT",
"support": {
"issues": "https://github.com/cygnite/framework/issues",
"source": "https://github.com/cygnite/framework"
},
"authors": [{
"name": "Sanjoy Dey",
"email": "[email protected]"
}, {
"name": "Cygnite Contributors",
"homepage": "https://github.com/cygnite/framework/graphs/contributors"
}],
"require": {
"php": ">=5.6.4",
"twig/twig": "2.1.*",
"symfony/console": "3.2.*",
"tracy/tracy": "2.4.*",
"ircmaxell/password-compat": "1.0.*",
"swiftmailer/swiftmailer": "5.4.*",
"monolog/monolog": "~1.22",
"nesbot/carbon": "~1.20",
"league/flysystem": "~1.0",
"symfony/finder": "~3.2"
},
"require-dev": {
"mockery/mockery": "~0.9.7",
"phpunit/phpunit": "~6.0",
"predis/predis": "1.1.*",
"squizlabs/php_codesniffer": "^2.8"
},
"autoload": {
"files": ["src/Cygnite/Helpers/Support.php"],
"psr-4": {
"Cygnite\\": "src/Cygnite"
}
},
"autoload-dev": {
"psr-4": {
"Cygnite\\Tests\\": "tests/Cygnite"
}
},
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}