Set up modern PHP MVC project structure for GetYourBand platform

- Implemented clean MVC architecture with Router, Controller, and Model base classes
- Created database migrations for users, bands, bookings, reviews, and availability
- Set up Tailwind CSS with yellow color scheme and modern design
- Added Alpine.js for reactive JavaScript components
- Configured Vite for asset building and hot module replacement
- Created authentication and role-based middleware
- Implemented helper functions and configuration system
- Added comprehensive README with setup instructions
- Configured Apache with proper rewrite rules and security headers
- Set up Composer and npm package management with modern dependencies
This commit is contained in:
Claude
2025-12-02 21:31:08 +00:00
parent 798a2785e7
commit 143fe3d488
37 changed files with 2015 additions and 0 deletions
+39
View File
@@ -1,2 +1,41 @@
# Environment
.env
.env.local
# Dependencies
/vendor/
/node_modules/
# Build assets
/public/dist/
/public/hot
# Storage
storage/*
!storage/.gitkeep
storage/cache/*
storage/logs/*
storage/sessions/*
storage/uploads/*
# IDE
.vscode/
.idea/
*.sublime-*
*.swp
*.swo
*~
# OS
.DS_Store
Thumbs.db
# Composer
composer.lock
# NPM
package-lock.json
yarn.lock
# Testing
.phpunit.result.cache