This website requires JavaScript.
Explore
Help
Register
Sign In
davidl
/
laravel-api-kit
Watch
1
Star
0
Fork
0
You've already forked laravel-api-kit
Code
Issues
Pull Requests
Actions
Packages
Projects
Releases
Wiki
Activity
Files
98b8ff236b96e4ff503c78c0420cc2fb9a31710b
laravel-api-kit
/
app
/
Http
/
Controllers
/
Controller.php
11 lines
103 B
PHP
Raw
Normal View
History
Unescape
Escape
feat: Initial Laravel API-only starter kit - Laravel 12 with Sanctum authentication - API versioning with grazulex/laravel-apiroute - spatie/laravel-query-builder for filtering/sorting - spatie/laravel-data for DTOs - dedoc/scramble for auto API documentation - Pest PHP testing framework - Docker development environment - Standardized JSON API responses - Rate limiting and CORS configuration - Comprehensive README documentation
2025-12-25 06:33:21 +01:00
<
?
php
feat: integrate PHPStan, Rector and Pint code quality tools (#13) * feat: integrate PHPStan, Rector and Pint code quality tools - Add larastan, rector, and rector-laravel dev dependencies - Configure PHPStan at max level with Larastan extension - Configure Rector with Laravel sets and code quality rules - Configure Pint with strict rules (final_class, strict_types) - Add composer scripts: lint, test:lint, test:types, test:unit - Add GitHub Actions workflow for CI on push/PR - Apply code style fixes across all files * docs: add code quality section to README
2026-01-20 20:58:32 +01:00
declare
(
strict_types
=
1
);
feat: Initial Laravel API-only starter kit - Laravel 12 with Sanctum authentication - API versioning with grazulex/laravel-apiroute - spatie/laravel-query-builder for filtering/sorting - spatie/laravel-data for DTOs - dedoc/scramble for auto API documentation - Pest PHP testing framework - Docker development environment - Standardized JSON API responses - Rate limiting and CORS configuration - Comprehensive README documentation
2025-12-25 06:33:21 +01:00
namespace
App\Http\Controllers
;
abstract
class
Controller
{
//
}
Reference in New Issue
Copy Permalink