diff --git a/.gitignore b/.gitignore index e851fef..998544c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ app/backup app/cache app/file +app/vendor box/.vagrant box/vagrant.log diff --git a/composer.json b/composer.json index b9cb795..f1f79ce 100644 --- a/composer.json +++ b/composer.json @@ -2,43 +2,18 @@ "name": "titan-framework/instance", "description": "Basic source and directory structure to create a new instance of Titan Framework.", "type": "project", - "license": "BSD-3-Clause", + "license": "MIT", "authors": [ { "name": "Camilo Carromeu", "email": "camilo@carromeu.com" - }, - { - "name": "Hercules da Costa Sandim", - "email": "herculessandim@gmail.com" - }, - { - "name": "Humberto Rafael Henrique Pereira", - "email": "begnini@gmail.com" - }, - { - "name": "Marcelo Augusto Santos Turine", - "email": "mturine@gmail.com" - }, - { - "name": "Marcio Aparecido InĂ¡cio da Silva", - "email": "mapsiva@gmail.com" - }, - { - "name": "Maxwell Sampaio dos Santos", - "email": "maxs.santos@gmail.com" - }, - { - "name": "Rodrigo Coin Curvo", - "email": "rodrigoccurvo@gmail.com" - }, - { - "name": "Vitor Mesaque Alves de Lima", - "email": "vitormesaque@gmail.com" } ], "minimum-stability": "stable", "require": { - "php": ">=5.3.3" - } + "php": ">=5.2" + }, + "config": { + "vendor-dir": "app/vendor" + } }