├── LICENSE ├── README.md ├── composer.json ├── config └── license-connector.php └── src ├── Exceptions ├── AuthException.php └── LicenseConnectorException.php ├── Facades └── LicenseConnector.php ├── Http └── Middleware │ └── LicenseGuardMiddleware.php ├── LicenseConnectorServiceProvider.php ├── Services └── ConnectorService.php └── Traits └── CacheKeys.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-ready/license-connector/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-ready/license-connector/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-ready/license-connector/HEAD/composer.json -------------------------------------------------------------------------------- /config/license-connector.php: -------------------------------------------------------------------------------- 1 | null, 5 | ]; 6 | -------------------------------------------------------------------------------- /src/Exceptions/AuthException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-ready/license-connector/HEAD/src/Exceptions/AuthException.php -------------------------------------------------------------------------------- /src/Exceptions/LicenseConnectorException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-ready/license-connector/HEAD/src/Exceptions/LicenseConnectorException.php -------------------------------------------------------------------------------- /src/Facades/LicenseConnector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-ready/license-connector/HEAD/src/Facades/LicenseConnector.php -------------------------------------------------------------------------------- /src/Http/Middleware/LicenseGuardMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-ready/license-connector/HEAD/src/Http/Middleware/LicenseGuardMiddleware.php -------------------------------------------------------------------------------- /src/LicenseConnectorServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-ready/license-connector/HEAD/src/LicenseConnectorServiceProvider.php -------------------------------------------------------------------------------- /src/Services/ConnectorService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-ready/license-connector/HEAD/src/Services/ConnectorService.php -------------------------------------------------------------------------------- /src/Traits/CacheKeys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-ready/license-connector/HEAD/src/Traits/CacheKeys.php --------------------------------------------------------------------------------