-
Notifications
You must be signed in to change notification settings - Fork 22
/
composer.json
29 lines (29 loc) · 1.18 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
{
"name": "LilaConcepts/LilaConceptsBestPracticeBundle",
"version": "1.0.0-alpha",
"description": "Simple common, starter, empty, boilerplate-bundle to show best practice bundle development for Symfony2.1. This bundle has the right directory structure, coding standards, unittests and functional tests. It uses the Travis Continuous Integration buildbot, Composer for dependency management and Twig for templating. Read the documentation and fork/clone if you wish.",
"keywords": ["symfony", "development", "bundle"],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Andre Lambert",
"email": "[email protected]",
"homepage": "http://digitaalcv.nl/"
},
{
"name": "Evert Littooy",
"email": "[email protected]",
"homepage": "http://littooy.nl/"
}
],
"require": {
"php": ">=5.3",
"symfony/framework-bundle": "2.*",
"symfony/symfony": "2.*"
},
"autoload": {
"psr-0": { "LilaConcepts\\Bundle\\LilaConceptsBestPracticeBundle": "" }
},
"target-dir": "LilaConcepts/Bundle/LilaConceptsBestPracticeBundle"
}