-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
45 lines (39 loc) · 1.17 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
{
"name": "umisoft/umi.framework-dev",
"description": "UMI.Framework Version 1 Development Package",
"keywords": ["umi", "framework", "development"],
"type": "library",
"license": "BSD-3-Clause",
"homepage": "http://umi-framework.ru/",
"minimum-stability": "dev",
"require": {
"php": ">=5.4.0",
"lib-pcre": "*",
"ext-mbstring": "*",
"ext-pdo": "*",
"umisoft/phpmorphy": "1.*",
"symfony/http-foundation": "2.4.*",
"psr/log": "1.*",
"doctrine/dbal": "2.4.*",
"twig/twig": "1.*",
"swiftmailer/swiftmailer": "5.*",
"monolog/monolog": "1.7.*",
"firephp/firephp-core": "dev-master"
},
"replace" : {
"umisoft/umi.framework": "self.version",
"umisoft/extension-twig" : "self.version",
"umisoft/extension-monolog" : "self.version"
},
"require-dev" : {
"phing/phing": "2.7.*",
"phpunit/phpunit": "3.*"
},
"autoload": {
"psr-4": {
"umi\\": "library/",
"umi\\extension\\twig\\" : "extension/twig/",
"umi\\extension\\monolog\\" : "extension/monolog/"
}
}
}