├── .php-cs-fixer.dist.php ├── LICENSE.md ├── composer.json └── src ├── Attributes ├── Computed.php └── Once.php ├── Support.php └── Traits └── WithComputedProperties.php /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryangjchandler/computed-properties/HEAD/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryangjchandler/computed-properties/HEAD/LICENSE.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryangjchandler/computed-properties/HEAD/composer.json -------------------------------------------------------------------------------- /src/Attributes/Computed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryangjchandler/computed-properties/HEAD/src/Attributes/Computed.php -------------------------------------------------------------------------------- /src/Attributes/Once.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryangjchandler/computed-properties/HEAD/src/Attributes/Once.php -------------------------------------------------------------------------------- /src/Support.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryangjchandler/computed-properties/HEAD/src/Support.php -------------------------------------------------------------------------------- /src/Traits/WithComputedProperties.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryangjchandler/computed-properties/HEAD/src/Traits/WithComputedProperties.php --------------------------------------------------------------------------------