├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml ├── src ├── Teepluss │ └── Categorize │ │ ├── Categories │ │ ├── Category.php │ │ ├── CategoryInterface.php │ │ ├── Provider.php │ │ └── ProviderInterface.php │ │ ├── Categorize.php │ │ ├── CategorizeServiceProvider.php │ │ ├── CategoryHierarchy │ │ ├── Hierarchy.php │ │ ├── HierarchyInterface.php │ │ ├── Provider.php │ │ └── ProviderInterface.php │ │ ├── CategoryRelates │ │ ├── Provider.php │ │ ├── ProviderInterface.php │ │ ├── Relate.php │ │ └── RelateInterface.php │ │ └── Facades │ │ └── Categorize.php ├── config │ └── config.php └── migrations │ ├── 2013_09_05_041254_create_categories_table.php │ ├── 2013_09_05_041349_create_category_hierarchy_table.php │ └── 2013_09_05_041407_create_category_relates_table.php └── tests ├── .gitkeep └── CategorizeTest.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teepluss/laravel4-categorize/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teepluss/laravel4-categorize/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teepluss/laravel4-categorize/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teepluss/laravel4-categorize/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teepluss/laravel4-categorize/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teepluss/laravel4-categorize/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Teepluss/Categorize/Categories/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teepluss/laravel4-categorize/HEAD/src/Teepluss/Categorize/Categories/Category.php -------------------------------------------------------------------------------- /src/Teepluss/Categorize/Categories/CategoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teepluss/laravel4-categorize/HEAD/src/Teepluss/Categorize/Categories/CategoryInterface.php -------------------------------------------------------------------------------- /src/Teepluss/Categorize/Categories/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teepluss/laravel4-categorize/HEAD/src/Teepluss/Categorize/Categories/Provider.php -------------------------------------------------------------------------------- /src/Teepluss/Categorize/Categories/ProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teepluss/laravel4-categorize/HEAD/src/Teepluss/Categorize/Categories/ProviderInterface.php -------------------------------------------------------------------------------- /src/Teepluss/Categorize/Categorize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teepluss/laravel4-categorize/HEAD/src/Teepluss/Categorize/Categorize.php -------------------------------------------------------------------------------- /src/Teepluss/Categorize/CategorizeServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teepluss/laravel4-categorize/HEAD/src/Teepluss/Categorize/CategorizeServiceProvider.php -------------------------------------------------------------------------------- /src/Teepluss/Categorize/CategoryHierarchy/Hierarchy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teepluss/laravel4-categorize/HEAD/src/Teepluss/Categorize/CategoryHierarchy/Hierarchy.php -------------------------------------------------------------------------------- /src/Teepluss/Categorize/CategoryHierarchy/HierarchyInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teepluss/laravel4-categorize/HEAD/src/Teepluss/Categorize/CategoryHierarchy/HierarchyInterface.php -------------------------------------------------------------------------------- /src/Teepluss/Categorize/CategoryHierarchy/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teepluss/laravel4-categorize/HEAD/src/Teepluss/Categorize/CategoryHierarchy/Provider.php -------------------------------------------------------------------------------- /src/Teepluss/Categorize/CategoryHierarchy/ProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teepluss/laravel4-categorize/HEAD/src/Teepluss/Categorize/CategoryHierarchy/ProviderInterface.php -------------------------------------------------------------------------------- /src/Teepluss/Categorize/CategoryRelates/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teepluss/laravel4-categorize/HEAD/src/Teepluss/Categorize/CategoryRelates/Provider.php -------------------------------------------------------------------------------- /src/Teepluss/Categorize/CategoryRelates/ProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teepluss/laravel4-categorize/HEAD/src/Teepluss/Categorize/CategoryRelates/ProviderInterface.php -------------------------------------------------------------------------------- /src/Teepluss/Categorize/CategoryRelates/Relate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teepluss/laravel4-categorize/HEAD/src/Teepluss/Categorize/CategoryRelates/Relate.php -------------------------------------------------------------------------------- /src/Teepluss/Categorize/CategoryRelates/RelateInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teepluss/laravel4-categorize/HEAD/src/Teepluss/Categorize/CategoryRelates/RelateInterface.php -------------------------------------------------------------------------------- /src/Teepluss/Categorize/Facades/Categorize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teepluss/laravel4-categorize/HEAD/src/Teepluss/Categorize/Facades/Categorize.php -------------------------------------------------------------------------------- /src/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teepluss/laravel4-categorize/HEAD/src/config/config.php -------------------------------------------------------------------------------- /src/migrations/2013_09_05_041254_create_categories_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teepluss/laravel4-categorize/HEAD/src/migrations/2013_09_05_041254_create_categories_table.php -------------------------------------------------------------------------------- /src/migrations/2013_09_05_041349_create_category_hierarchy_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teepluss/laravel4-categorize/HEAD/src/migrations/2013_09_05_041349_create_category_hierarchy_table.php -------------------------------------------------------------------------------- /src/migrations/2013_09_05_041407_create_category_relates_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teepluss/laravel4-categorize/HEAD/src/migrations/2013_09_05_041407_create_category_relates_table.php -------------------------------------------------------------------------------- /tests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/CategorizeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teepluss/laravel4-categorize/HEAD/tests/CategorizeTest.php --------------------------------------------------------------------------------