Add composer.json file

This commit is contained in:
Timothy Warren 2012-07-17 14:45:52 -04:00
parent 1e71b225c5
commit 77e692740f
3 changed files with 28 additions and 0 deletions

9
.php_cs Normal file
View File

@ -0,0 +1,9 @@
<?php
$finder = Symfony\CS\Finder\DefaultFinder::create()
->exclude(__DIR__.'/tests/simpletest/')
->in(__DIR__);
return Symfony\CS\Config\Config::create()
->fixers(array('linefeed','short_tag','trailing_spaces','php_closing_tag','return','visibility','include','elseif'))
->finder($finder);

19
composer.json Normal file
View File

@ -0,0 +1,19 @@
{
"name":"aviat4ion/query",
"type":"library",
"description":"Database Query Builder and Abstraction layer",
"keywords":["database", "query builder"],
"homepage":"https://github.com/aviat4ion/Query",
"license":"dbad-license",
"authors": [
{
"name": "Timothy J. Warren",
"email": "tim@timshomepage.net",
"homepage": "https://timshomepage.net",
"role": "Developer"
}
],
"require": {
"php": ">=5.2.0"
}
}

Binary file not shown.