|
2 | 2 | === |
3 | 3 |
|
4 | 4 | Abstraction to SQL queries by using a PDO Wrapper |
| 5 | + |
| 6 | +[](https://travis-ci.org/appdeck/sql) |
| 7 | +[](https://packagist.org/packages/appdeck/sql) |
| 8 | +[](https://packagist.org/packages/appdeck/sql) |
| 9 | + |
| 10 | +Installation |
| 11 | +------------ |
| 12 | +This library can be found on [Packagist](https://packagist.org/packages/appdeck/sql). |
| 13 | +The recommended way to install this is through [composer](http://getcomposer.org). |
| 14 | + |
| 15 | +Edit your `composer.json` and add: |
| 16 | + |
| 17 | +```json |
| 18 | +{ |
| 19 | + "require": { |
| 20 | + "appdeck/sql": "0.1.*" |
| 21 | + } |
| 22 | +} |
| 23 | +``` |
| 24 | + |
| 25 | +And install dependencies: |
| 26 | + |
| 27 | +```bash |
| 28 | +$ curl -sS https://getcomposer.org/installer | php |
| 29 | +$ php composer.phar install |
| 30 | +``` |
| 31 | + |
| 32 | +Features |
| 33 | +-------- |
| 34 | + - PSR-0 compliant for easy interoperability |
| 35 | + |
| 36 | +Examples |
| 37 | +-------- |
| 38 | +Examples of basic usage are located in the examples/ directory. |
| 39 | + |
| 40 | +Bugs and feature requests |
| 41 | +------------------------- |
| 42 | +Have a bug or a feature request? [Please open a new issue](https://github.com/appdeck/sql/issues). |
| 43 | +Before opening any issue, please search for existing issues and read the [Issue Guidelines](https://github.com/necolas/issue-guidelines), written by [Nicolas Gallagher](https://github.com/necolas/). |
| 44 | + |
| 45 | +Versioning |
| 46 | +---------- |
| 47 | +sql will be maintained under the Semantic Versioning guidelines as much as possible. |
| 48 | + |
| 49 | +Releases will be numbered with the following format: |
| 50 | + |
| 51 | +`<major>.<minor>.<patch>` |
| 52 | + |
| 53 | +And constructed with the following guidelines: |
| 54 | + |
| 55 | +* Breaking backward compatibility bumps the major (and resets the minor and patch) |
| 56 | +* New additions without breaking backward compatibility bumps the minor (and resets the patch) |
| 57 | +* Bug fixes and misc changes bumps the patch |
| 58 | + |
| 59 | +For more information on SemVer, please visit [http://semver.org/](http://semver.org/). |
| 60 | + |
| 61 | +Authors |
| 62 | +------- |
| 63 | +**Flávio Heleno** |
| 64 | + |
| 65 | ++ [http://twitter.com/flavioheleno](http://twitter.com/flavioheleno) |
| 66 | ++ [http://github.com/flavioheleno](http://github.com/flavioheleno) |
| 67 | + |
| 68 | +**Vinícius Campitelli** |
| 69 | + |
| 70 | ++ [http://twitter.com/vcampitelli](http://twitter.com/vcampitelli) |
| 71 | ++ [http://github.com/vcampitelli](http://github.com/vcampitelli) |
| 72 | + |
| 73 | +Copyright and license |
| 74 | +--------------------- |
| 75 | + |
| 76 | +Copyright 2014 appdeck under [GPL-3.0](LICENSE). |
0 commit comments