commit 4c0890f936979c2210d03ebe55ca3edd1d784f7c Author: Tom Lingham Date: Sun Jul 13 21:12:07 2014 +1000 Initial Commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5826402 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +/vendor +composer.phar +composer.lock +.DS_Store diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..aa14ee5 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,14 @@ +language: php + +php: + - 5.3 + - 5.4 + - 5.5 + - 5.6 + - hhvm + +before_script: + - composer self-update + - composer install --prefer-source --no-interaction --dev + +script: phpunit diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..50d49e2 --- /dev/null +++ b/composer.json @@ -0,0 +1,20 @@ +{ + "name": "tom-lingham/searchy", + "description": "", + "authors": [ + { + "name": "Tom Lingham", + "email": "tjlingham@gmail.com" + } + ], + "require": { + "php": ">=5.4.0", + "illuminate/support": "4.2.*" + }, + "autoload": { + "psr-0": { + "TomLingham\\Searchy": "src/" + } + }, + "minimum-stability": "stable" +} diff --git a/phpunit.xml b/phpunit.xml new file mode 100644 index 0000000..3347b75 --- /dev/null +++ b/phpunit.xml @@ -0,0 +1,18 @@ + + + + + ./tests/ + + + diff --git a/src/TomLingham/Searchy/SearchyServiceProvider.php b/src/TomLingham/Searchy/SearchyServiceProvider.php new file mode 100644 index 0000000..97fd8d8 --- /dev/null +++ b/src/TomLingham/Searchy/SearchyServiceProvider.php @@ -0,0 +1,42 @@ +package('tom-lingham/searchy'); + } + + /** + * Get the services provided by the provider. + * + * @return array + */ + public function provides() + { + return array(); + } + +} diff --git a/tests/.gitkeep b/tests/.gitkeep new file mode 100644 index 0000000..e69de29