├── .github ├── FUNDING.yml └── workflows │ └── test.yml ├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml.dist ├── src ├── Attributes │ └── Unlocked.php ├── Features │ └── SupportLockedProperties │ │ ├── SupportLockedProperties.php │ │ └── UnitTest.php ├── LivewireStrict.php └── LivewireStrictServiceProvider.php └── tests └── TestCase.php /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: PhiloNL 2 | -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wire-elements/livewire-strict/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wire-elements/livewire-strict/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wire-elements/livewire-strict/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wire-elements/livewire-strict/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wire-elements/livewire-strict/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wire-elements/livewire-strict/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Attributes/Unlocked.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wire-elements/livewire-strict/HEAD/src/Attributes/Unlocked.php -------------------------------------------------------------------------------- /src/Features/SupportLockedProperties/SupportLockedProperties.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wire-elements/livewire-strict/HEAD/src/Features/SupportLockedProperties/SupportLockedProperties.php -------------------------------------------------------------------------------- /src/Features/SupportLockedProperties/UnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wire-elements/livewire-strict/HEAD/src/Features/SupportLockedProperties/UnitTest.php -------------------------------------------------------------------------------- /src/LivewireStrict.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wire-elements/livewire-strict/HEAD/src/LivewireStrict.php -------------------------------------------------------------------------------- /src/LivewireStrictServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wire-elements/livewire-strict/HEAD/src/LivewireStrictServiceProvider.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wire-elements/livewire-strict/HEAD/tests/TestCase.php --------------------------------------------------------------------------------