Commit Graph

10 Commits

Author SHA1 Message Date
Joris Slagter
13cf05c669 Fix: Install required PHP extensions (exif, zip) for Laravel 7.x
Some checks failed
continuous-integration/drone/push Build is failing
The php:7.4-cli image is missing ext-exif and ext-zip which are required by:
- spatie/image (requires ext-exif)
- spatie/laravel-backup (requires ext-zip)
- spatie/laravel-medialibrary (depends on spatie/image)

Installing libzip-dev and using docker-php-ext-install to add these extensions.
2025-12-02 20:07:46 +01:00
Joris Slagter
bb3c173264 Fix: Use php:7.4-cli with Composer 2.2.24 for Laravel 7.x
Some checks failed
continuous-integration/drone/push Build is failing
All composer Docker images use PHP 8.x:
- composer:1 = PHP 8.4
- composer:2.0 = PHP 8.0
- composer:2.2 = PHP 8.1

Laravel 7.x requires PHP ^7.2.5, so using php:7.4-cli and installing
Composer 2.2.24 manually provides the correct environment.
2025-12-02 20:03:36 +01:00
Joris Slagter
5d367a24f3 Fix: Use composer:1 (PHP 7.4) instead of composer:2.0 (PHP 8.0)
Some checks failed
continuous-integration/drone/push Build is failing
Previous attempt used composer:2.0 which ships with PHP 8.0.6, but Laravel 7.x
requires PHP ^7.2.5. composer:1 provides PHP 7.4 which is the correct version
for this Laravel application.
2025-12-02 20:01:40 +01:00
Joris Slagter
4a57aacdde Fix: Use PHP 7.4 (composer:2.0) for Laravel 7.x compatibility
Some checks failed
continuous-integration/drone/push Build is failing
- Changed from composer:2.2 (PHP 8.1) to composer:2.0 (PHP 7.4)
- Removed --ignore-platform-reqs flag as it's no longer needed
- PHP 7.4 is fully compatible with Laravel 7.x without deprecation warnings
- This fixes the 'artisan package:discover' error caused by PHP 8.1 strict typing
2025-12-02 19:58:56 +01:00
Joris Slagter
ef0cc14c9d Fix: Use PHP 8.1 compatible composer image for CI/CD
Some checks failed
continuous-integration/drone/push Build is failing
Updated Drone CI pipeline to use composer:2.2 (PHP 8.1) and added
--ignore-platform-reqs flag to handle legacy dependency locks.
This resolves the PHP version mismatch error in the test step.
2025-12-02 19:48:52 +01:00
Joris Slagter
e307885faf Update README with CI/CD pipeline documentation
Some checks failed
continuous-integration/drone/push Build is failing
Added comprehensive information about the Drone CI pipeline,
deployment servers, and automated migration process.
2025-12-02 17:54:34 +01:00
Joris Slagter
df155bb13d Initial Laravel API import
Some checks failed
continuous-integration/drone/push Build is failing
- Complete GGZ Ecademy Laravel backend application
- RESTful API for learning products, members, filters
- Authentication and authorization system
- Database migrations and seeders
- Custom CRUD generator commands
- Email notification system
- Integration with frontend applications
2025-12-02 17:40:21 +01:00
Joris Slagter
786b6b6a78 Add GITEA_TOKEN support for HTTPS deployment
Some checks failed
continuous-integration/drone/push Build is failing
2025-12-02 16:39:41 +01:00
Joris Slagter
0166f1d6d7 Add Drone CI pipeline configuration
Some checks failed
continuous-integration/drone/push Build encountered an error
2025-12-02 15:59:15 +01:00
5d81ea3170 Initial commit 2025-12-02 15:05:16 +01:00