├── .gitignore ├── .travis.yml ├── README.md ├── composer.json ├── phpunit.xml.dist ├── src ├── ExtraPropertiesBehavior.php ├── ExtraPropertiesBehaviorObjectBuilderModifier.php ├── ExtraPropertiesBehaviorPeerBuilderModifier.php ├── ExtraPropertiesBehaviorQueryBuilderModifier.php └── templates │ ├── queryFilterByExtraProperty.php │ └── queryFilterByExtraPropertyWithDefault.php └── tests ├── ExtraPropertiesBehaviorPeerBuilderTest.php ├── ExtraPropertiesBehaviorTest.php └── bootstrap.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carpe-Hora/ExtraPropertiesBehavior/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carpe-Hora/ExtraPropertiesBehavior/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carpe-Hora/ExtraPropertiesBehavior/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carpe-Hora/ExtraPropertiesBehavior/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carpe-Hora/ExtraPropertiesBehavior/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/ExtraPropertiesBehavior.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carpe-Hora/ExtraPropertiesBehavior/HEAD/src/ExtraPropertiesBehavior.php -------------------------------------------------------------------------------- /src/ExtraPropertiesBehaviorObjectBuilderModifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carpe-Hora/ExtraPropertiesBehavior/HEAD/src/ExtraPropertiesBehaviorObjectBuilderModifier.php -------------------------------------------------------------------------------- /src/ExtraPropertiesBehaviorPeerBuilderModifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carpe-Hora/ExtraPropertiesBehavior/HEAD/src/ExtraPropertiesBehaviorPeerBuilderModifier.php -------------------------------------------------------------------------------- /src/ExtraPropertiesBehaviorQueryBuilderModifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carpe-Hora/ExtraPropertiesBehavior/HEAD/src/ExtraPropertiesBehaviorQueryBuilderModifier.php -------------------------------------------------------------------------------- /src/templates/queryFilterByExtraProperty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carpe-Hora/ExtraPropertiesBehavior/HEAD/src/templates/queryFilterByExtraProperty.php -------------------------------------------------------------------------------- /src/templates/queryFilterByExtraPropertyWithDefault.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carpe-Hora/ExtraPropertiesBehavior/HEAD/src/templates/queryFilterByExtraPropertyWithDefault.php -------------------------------------------------------------------------------- /tests/ExtraPropertiesBehaviorPeerBuilderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carpe-Hora/ExtraPropertiesBehavior/HEAD/tests/ExtraPropertiesBehaviorPeerBuilderTest.php -------------------------------------------------------------------------------- /tests/ExtraPropertiesBehaviorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carpe-Hora/ExtraPropertiesBehavior/HEAD/tests/ExtraPropertiesBehaviorTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carpe-Hora/ExtraPropertiesBehavior/HEAD/tests/bootstrap.php --------------------------------------------------------------------------------