-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
52 lines (52 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
{
"name": "mikeymike/php-rfc-digestor",
"description": "CLI tool to help you digest and track PHP RFC pages",
"license": "MIT",
"authors": [
{
"name": "Michael Woodward",
"email": "[email protected]"
}
],
"require" : {
"php" : ">=5.4",
"symfony/console": "~2.6",
"symfony/css-selector": "~2.6",
"noodlehaus/config": "dev-master",
"swiftmailer/swiftmailer": "~5.3",
"openbuildings/swiftmailer-css-inliner": "~0.2",
"twig/twig": "~1.0",
"silex/silex": "~1.3",
"symfony/form": "^2.7",
"symfony/security-csrf": "^2.7",
"symfony/validator": "^2.7",
"symfony/config": "^2.7",
"symfony/twig-bridge": "^2.7",
"symfony/translation": "^2.7",
"doctrine/dbal": "~2.2",
"dflydev/doctrine-orm-service-provider": "~1.0",
"frlnc/php-slack": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "~4.1",
"squizlabs/php_codesniffer": "1.4.*"
},
"autoload" : {
"psr-4" : {
"MikeyMike\\RfcDigestor\\": "src"
}
},
"autoload-dev": {
"psr-4": { "MikeyMike\\RfcDigestorTest\\": "test/" }
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/chrisboulton/php-diff"
},
{
"type": "vcs",
"url": "https://github.com/Northys/CSS-Inliner"
}
]
}