-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
52 lines (52 loc) · 1.53 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": "mpoiriert/nucleus",
"type": "library",
"minimum-stability": "dev",
"prefer-stable": true,
"description": "Reusable library",
"keywords": ["framework"],
"license": "MIT",
"authors": [
{
"name": "Martin Poirier Theoret",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3",
"doctrine/common": "2.3.*",
"doctrine/annotations": "1.*",
"symfony/event-dispatcher": "2.4.*",
"symfony/property-access": "2.4.*",
"symfony/routing": "2.4.*",
"symfony/http-foundation": "2.4.*",
"symfony/validator": "2.4.*",
"twig/twig": "1.*",
"kriswallsmith/assetic": "1.1.*",
"leafo/scssphp": "0.0.*",
"leafo/lessphp": "0.4.*",
"symfony/yaml": "2.4.*",
"symfony/filesystem": "2.4.*",
"symfony/dependency-injection": "2.4.0",
"symfony/expression-language": "2.4.*",
"symfony/config": "2.4.*",
"symfony/console": "2.4.*",
"maximebf/debugbar": "*",
"monolog/monolog": "1.7.*",
"psr/log": "1.0.0",
"lisachenko/go-aop-php": "0.4.0",
"sami/sami": "1.0",
"shuber/curl": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "4.2.*",
"phpmd/phpmd": "1.4.*"
},
"autoload": {
"psr-0": {
"Nucleus\\": "src/"
},
"files": ["src/Nucleus/IService/functions.php", "src/Nucleus/Framework/nucleus-autoload.php"]
},
"include-path": ["src/"]
}