-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
52 lines (52 loc) · 1.62 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
{
"name": "aptoma/silex-extras",
"type": "library",
"description": "Collection of common stuff for Silex powered applications",
"keywords": ["silex"],
"homepage": "https://github.com/aptoma/silex-extras",
"license": "MIT",
"autoload": {
"psr-0": {
"Aptoma": "src/"
}
},
"require": {
"monolog/monolog": "^1.23",
"symfony/http-foundation": "^3.3",
"symfony/http-kernel": "~3.3",
"symfony/browser-kit": "^3.3",
"symfony/css-selector": "^3.3",
"symfony/monolog-bridge": "^3.3",
"symfony/security": "^3.3",
"symfony/finder": "^3.3",
"symfony/filesystem": "^3.3",
"silex/silex": "^2.2",
"pimple/pimple": "^3.2",
"doctrine/cache": "^1.6"
},
"suggest": {
"ext-ftp": "Allows using Ftp services.",
"guzzlehttp/guzzle": "In order to use Guzzle service provider",
"doctrine/cache": "In order to use Doctrine\\Cache compatible Memcached",
"predis/predis": "In order to use Redis cache with Doctrine"
},
"require-dev": {
"phpmd/phpmd": "^2.6",
"twig/twig": "^2.4",
"squizlabs/php_codesniffer": "^3.1",
"guzzlehttp/guzzle": "^6.3",
"pdepend/pdepend": "^2.5",
"codeclimate/php-test-reporter": "^0.4.4",
"predis/predis": "^1.1",
"phpunit/phpunit": "^6.3"
},
"minimum-stability": "stable",
"authors": [
{
"name": "Gunnar Lium",
"email": "gunnar@aptoma.com",
"homepage": "https://github.com/gunnarlium",
"role": "Developer"
}
]
}