├── .gitattributes ├── .gitignore ├── .travis.yml ├── README.md ├── composer.json ├── phpunit ├── phpunit.xml.dist ├── src ├── Builder.php └── BuilderException.php └── tests ├── BuilderTest.php ├── BuilderWorkTest.php ├── invalid_empty.sql ├── invalid_name.sql ├── true.sql └── true_long.sql /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LionsHead/YepSQL/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | vendor/* 2 | bin/* 3 | Vagrantfile 4 | .DS_Store 5 | composer.lock 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LionsHead/YepSQL/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LionsHead/YepSQL/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LionsHead/YepSQL/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LionsHead/YepSQL/HEAD/phpunit -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LionsHead/YepSQL/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LionsHead/YepSQL/HEAD/src/Builder.php -------------------------------------------------------------------------------- /src/BuilderException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LionsHead/YepSQL/HEAD/src/BuilderException.php -------------------------------------------------------------------------------- /tests/BuilderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LionsHead/YepSQL/HEAD/tests/BuilderTest.php -------------------------------------------------------------------------------- /tests/BuilderWorkTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LionsHead/YepSQL/HEAD/tests/BuilderWorkTest.php -------------------------------------------------------------------------------- /tests/invalid_empty.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LionsHead/YepSQL/HEAD/tests/invalid_empty.sql -------------------------------------------------------------------------------- /tests/invalid_name.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LionsHead/YepSQL/HEAD/tests/invalid_name.sql -------------------------------------------------------------------------------- /tests/true.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LionsHead/YepSQL/HEAD/tests/true.sql -------------------------------------------------------------------------------- /tests/true_long.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LionsHead/YepSQL/HEAD/tests/true_long.sql --------------------------------------------------------------------------------