├── .github └── workflows │ └── run-tests.yml ├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml ├── quicksand-banner.png ├── src ├── DeleteOldSoftDeletes.php ├── QuicksandServiceProvider.php └── config │ └── quicksand.php └── tests ├── QuicksandDeleteTest.php ├── database ├── factories │ ├── CarFactory.php │ ├── GlobalScopedThingFactory.php │ ├── PersonFactory.php │ └── ThingFactory.php └── migrations │ ├── 2014_10_12_000000_create_quicksand_car_table.php │ ├── 2014_10_12_000000_create_quicksand_global_scoped_things_table.php │ ├── 2014_10_12_000000_create_quicksand_people_table.php │ ├── 2014_10_12_000000_create_quicksand_pivot_table.php │ ├── 2014_10_12_000000_create_quicksand_places_table.php │ └── 2014_10_12_000000_create_quicksand_things_table.php └── models ├── Car.php ├── GlobalScopedThing.php ├── Person.php ├── Place.php └── Thing.php /.github/workflows/run-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/quicksand/HEAD/.github/workflows/run-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | .phpunit.result.cache 3 | composer.lock 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/quicksand/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/quicksand/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/quicksand/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/quicksand/HEAD/phpunit.xml -------------------------------------------------------------------------------- /quicksand-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/quicksand/HEAD/quicksand-banner.png -------------------------------------------------------------------------------- /src/DeleteOldSoftDeletes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/quicksand/HEAD/src/DeleteOldSoftDeletes.php -------------------------------------------------------------------------------- /src/QuicksandServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/quicksand/HEAD/src/QuicksandServiceProvider.php -------------------------------------------------------------------------------- /src/config/quicksand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/quicksand/HEAD/src/config/quicksand.php -------------------------------------------------------------------------------- /tests/QuicksandDeleteTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/quicksand/HEAD/tests/QuicksandDeleteTest.php -------------------------------------------------------------------------------- /tests/database/factories/CarFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/quicksand/HEAD/tests/database/factories/CarFactory.php -------------------------------------------------------------------------------- /tests/database/factories/GlobalScopedThingFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/quicksand/HEAD/tests/database/factories/GlobalScopedThingFactory.php -------------------------------------------------------------------------------- /tests/database/factories/PersonFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/quicksand/HEAD/tests/database/factories/PersonFactory.php -------------------------------------------------------------------------------- /tests/database/factories/ThingFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/quicksand/HEAD/tests/database/factories/ThingFactory.php -------------------------------------------------------------------------------- /tests/database/migrations/2014_10_12_000000_create_quicksand_car_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/quicksand/HEAD/tests/database/migrations/2014_10_12_000000_create_quicksand_car_table.php -------------------------------------------------------------------------------- /tests/database/migrations/2014_10_12_000000_create_quicksand_global_scoped_things_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/quicksand/HEAD/tests/database/migrations/2014_10_12_000000_create_quicksand_global_scoped_things_table.php -------------------------------------------------------------------------------- /tests/database/migrations/2014_10_12_000000_create_quicksand_people_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/quicksand/HEAD/tests/database/migrations/2014_10_12_000000_create_quicksand_people_table.php -------------------------------------------------------------------------------- /tests/database/migrations/2014_10_12_000000_create_quicksand_pivot_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/quicksand/HEAD/tests/database/migrations/2014_10_12_000000_create_quicksand_pivot_table.php -------------------------------------------------------------------------------- /tests/database/migrations/2014_10_12_000000_create_quicksand_places_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/quicksand/HEAD/tests/database/migrations/2014_10_12_000000_create_quicksand_places_table.php -------------------------------------------------------------------------------- /tests/database/migrations/2014_10_12_000000_create_quicksand_things_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/quicksand/HEAD/tests/database/migrations/2014_10_12_000000_create_quicksand_things_table.php -------------------------------------------------------------------------------- /tests/models/Car.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/quicksand/HEAD/tests/models/Car.php -------------------------------------------------------------------------------- /tests/models/GlobalScopedThing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/quicksand/HEAD/tests/models/GlobalScopedThing.php -------------------------------------------------------------------------------- /tests/models/Person.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/quicksand/HEAD/tests/models/Person.php -------------------------------------------------------------------------------- /tests/models/Place.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/quicksand/HEAD/tests/models/Place.php -------------------------------------------------------------------------------- /tests/models/Thing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/quicksand/HEAD/tests/models/Thing.php --------------------------------------------------------------------------------