├── .gitignore ├── .scrutinizer.yml ├── .styleci.yml ├── .travis.yml ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json ├── config └── userstamps.php ├── phpunit.xml ├── src ├── Concerns │ └── HasUserStamps.php ├── Database │ └── Schema │ │ └── Macros │ │ ├── MacroInterface.php │ │ └── UserStampsMacro.php ├── Observers │ └── UserStampObserver.php └── UserStampsServiceProvider.php └── tests ├── Models ├── LaravelUserstamp.php └── User.php ├── TestCase.php └── Unit ├── DatabaseMacrcoTest.php └── UserstampsTest.php /.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | vendor 3 | .phpunit.result.cache 4 | .idea 5 | -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqits/laravel-userstamps/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- 1 | preset: laravel -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqits/laravel-userstamps/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqits/laravel-userstamps/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqits/laravel-userstamps/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqits/laravel-userstamps/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqits/laravel-userstamps/HEAD/composer.json -------------------------------------------------------------------------------- /config/userstamps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqits/laravel-userstamps/HEAD/config/userstamps.php -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqits/laravel-userstamps/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Concerns/HasUserStamps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqits/laravel-userstamps/HEAD/src/Concerns/HasUserStamps.php -------------------------------------------------------------------------------- /src/Database/Schema/Macros/MacroInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqits/laravel-userstamps/HEAD/src/Database/Schema/Macros/MacroInterface.php -------------------------------------------------------------------------------- /src/Database/Schema/Macros/UserStampsMacro.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqits/laravel-userstamps/HEAD/src/Database/Schema/Macros/UserStampsMacro.php -------------------------------------------------------------------------------- /src/Observers/UserStampObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqits/laravel-userstamps/HEAD/src/Observers/UserStampObserver.php -------------------------------------------------------------------------------- /src/UserStampsServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqits/laravel-userstamps/HEAD/src/UserStampsServiceProvider.php -------------------------------------------------------------------------------- /tests/Models/LaravelUserstamp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqits/laravel-userstamps/HEAD/tests/Models/LaravelUserstamp.php -------------------------------------------------------------------------------- /tests/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqits/laravel-userstamps/HEAD/tests/Models/User.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqits/laravel-userstamps/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/DatabaseMacrcoTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqits/laravel-userstamps/HEAD/tests/Unit/DatabaseMacrcoTest.php -------------------------------------------------------------------------------- /tests/Unit/UserstampsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqits/laravel-userstamps/HEAD/tests/Unit/UserstampsTest.php --------------------------------------------------------------------------------