Add composer.json file
This commit is contained in:
parent
1e71b225c5
commit
6e76493562
9
.php_cs
Normal file
9
.php_cs
Normal 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
19
composer.json
Normal 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.
Loading…
Reference in New Issue
Block a user