├── .php-cs-fixer.dist.php ├── .styleci.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── composer.json └── src ├── CastUsingJsonFlags.php ├── CastableDataTransferObject.php └── Casts └── DataTransferObject.php /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessarcher/laravel-castable-data-transfer-object/HEAD/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessarcher/laravel-castable-data-transfer-object/HEAD/.styleci.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessarcher/laravel-castable-data-transfer-object/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessarcher/laravel-castable-data-transfer-object/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessarcher/laravel-castable-data-transfer-object/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessarcher/laravel-castable-data-transfer-object/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessarcher/laravel-castable-data-transfer-object/HEAD/composer.json -------------------------------------------------------------------------------- /src/CastUsingJsonFlags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessarcher/laravel-castable-data-transfer-object/HEAD/src/CastUsingJsonFlags.php -------------------------------------------------------------------------------- /src/CastableDataTransferObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessarcher/laravel-castable-data-transfer-object/HEAD/src/CastableDataTransferObject.php -------------------------------------------------------------------------------- /src/Casts/DataTransferObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessarcher/laravel-castable-data-transfer-object/HEAD/src/Casts/DataTransferObject.php --------------------------------------------------------------------------------