├── LICENSE.md ├── README.md ├── composer.json ├── phpunit.xml.dist ├── src └── Model │ └── Behavior │ └── CsvBehavior.php └── tests ├── Fixture └── PostsFixture.php ├── TestCase └── Model │ └── Behavior │ └── CsvBehaviorTest.php ├── cases ├── behaviors │ └── empty ├── components │ └── empty ├── controllers │ └── empty ├── helpers │ └── empty └── models │ └── empty ├── fixtures └── empty └── groups └── empty /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProLoser/CakePHP-CSV/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProLoser/CakePHP-CSV/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProLoser/CakePHP-CSV/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProLoser/CakePHP-CSV/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Model/Behavior/CsvBehavior.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProLoser/CakePHP-CSV/HEAD/src/Model/Behavior/CsvBehavior.php -------------------------------------------------------------------------------- /tests/Fixture/PostsFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProLoser/CakePHP-CSV/HEAD/tests/Fixture/PostsFixture.php -------------------------------------------------------------------------------- /tests/TestCase/Model/Behavior/CsvBehaviorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProLoser/CakePHP-CSV/HEAD/tests/TestCase/Model/Behavior/CsvBehaviorTest.php -------------------------------------------------------------------------------- /tests/cases/behaviors/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/cases/components/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/cases/controllers/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/cases/helpers/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/cases/models/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/groups/empty: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------