├── .semver ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Controller └── Component │ └── PrgComponent.php ├── Docs ├── Documentation │ ├── Configuration.md │ ├── Examples.md │ ├── Installation.md │ ├── Named-Parameters-vs-Query-Strings.md │ ├── Overview.md │ └── Post-Redirect-Get.md ├── Home.md └── Tutorials │ └── Quick-Start.md ├── LICENSE.txt ├── Locale ├── deu │ └── LC_MESSAGES │ │ └── search.po ├── fre │ └── LC_MESSAGES │ │ └── search.po ├── por │ └── LC_MESSAGES │ │ └── search.po ├── rus │ └── LC_MESSAGES │ │ └── search.po ├── search.pot └── spa │ └── LC_MESSAGES │ └── search.po ├── Model └── Behavior │ └── SearchableBehavior.php ├── README.md ├── Test ├── Case │ ├── AllSearchTest.php │ ├── Controller │ │ └── Component │ │ │ └── PrgComponentTest.php │ └── Model │ │ └── Behavior │ │ └── SearchableBehaviorTest.php └── Fixture │ ├── ArticleFixture.php │ ├── PostFixture.php │ ├── TagFixture.php │ └── TaggedFixture.php └── composer.json /.semver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/search/HEAD/.semver -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/search/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/search/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/search/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Controller/Component/PrgComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/search/HEAD/Controller/Component/PrgComponent.php -------------------------------------------------------------------------------- /Docs/Documentation/Configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/search/HEAD/Docs/Documentation/Configuration.md -------------------------------------------------------------------------------- /Docs/Documentation/Examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/search/HEAD/Docs/Documentation/Examples.md -------------------------------------------------------------------------------- /Docs/Documentation/Installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/search/HEAD/Docs/Documentation/Installation.md -------------------------------------------------------------------------------- /Docs/Documentation/Named-Parameters-vs-Query-Strings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/search/HEAD/Docs/Documentation/Named-Parameters-vs-Query-Strings.md -------------------------------------------------------------------------------- /Docs/Documentation/Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/search/HEAD/Docs/Documentation/Overview.md -------------------------------------------------------------------------------- /Docs/Documentation/Post-Redirect-Get.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/search/HEAD/Docs/Documentation/Post-Redirect-Get.md -------------------------------------------------------------------------------- /Docs/Home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/search/HEAD/Docs/Home.md -------------------------------------------------------------------------------- /Docs/Tutorials/Quick-Start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/search/HEAD/Docs/Tutorials/Quick-Start.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/search/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Locale/deu/LC_MESSAGES/search.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/search/HEAD/Locale/deu/LC_MESSAGES/search.po -------------------------------------------------------------------------------- /Locale/fre/LC_MESSAGES/search.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/search/HEAD/Locale/fre/LC_MESSAGES/search.po -------------------------------------------------------------------------------- /Locale/por/LC_MESSAGES/search.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/search/HEAD/Locale/por/LC_MESSAGES/search.po -------------------------------------------------------------------------------- /Locale/rus/LC_MESSAGES/search.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/search/HEAD/Locale/rus/LC_MESSAGES/search.po -------------------------------------------------------------------------------- /Locale/search.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/search/HEAD/Locale/search.pot -------------------------------------------------------------------------------- /Locale/spa/LC_MESSAGES/search.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/search/HEAD/Locale/spa/LC_MESSAGES/search.po -------------------------------------------------------------------------------- /Model/Behavior/SearchableBehavior.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/search/HEAD/Model/Behavior/SearchableBehavior.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/search/HEAD/README.md -------------------------------------------------------------------------------- /Test/Case/AllSearchTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/search/HEAD/Test/Case/AllSearchTest.php -------------------------------------------------------------------------------- /Test/Case/Controller/Component/PrgComponentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/search/HEAD/Test/Case/Controller/Component/PrgComponentTest.php -------------------------------------------------------------------------------- /Test/Case/Model/Behavior/SearchableBehaviorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/search/HEAD/Test/Case/Model/Behavior/SearchableBehaviorTest.php -------------------------------------------------------------------------------- /Test/Fixture/ArticleFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/search/HEAD/Test/Fixture/ArticleFixture.php -------------------------------------------------------------------------------- /Test/Fixture/PostFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/search/HEAD/Test/Fixture/PostFixture.php -------------------------------------------------------------------------------- /Test/Fixture/TagFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/search/HEAD/Test/Fixture/TagFixture.php -------------------------------------------------------------------------------- /Test/Fixture/TaggedFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/search/HEAD/Test/Fixture/TaggedFixture.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/search/HEAD/composer.json --------------------------------------------------------------------------------