Initial commit: PHP 7.4 Hello World application
- Add PHP 7.4 web application with built-in server - Configure Composer for dependency management - Add Docker support with PHP 7.4-cli base image - Create Makefile for easy development workflow - Add .eazy configuration for deployment - Include comprehensive README documentation - Support environment variable port configuration
parents
Showing
.eazy
0 → 100644
.gitignore
0 → 100644
.resource/resource_dev.json
0 → 100644
.vscode/extensions.json
0 → 100644
Dockerfile
0 → 100644
Makefile
0 → 100644
README.md
0 → 100644
composer.json
0 → 100644
| { | |||
| "name": "php/hello-world", | |||
| "description": "PHP Hello World application", | |||
| "type": "project", | |||
| "require": { | |||
| "php": ">=7.4.0" | |||
| }, | |||
| "require-dev": { | |||
| "phpunit/phpunit": "9.6.0" | |||
| }, | |||
| "autoload": { | |||
| "psr-4": { | |||
| "App\\": "src/" | |||
| } | |||
| }, | |||
| "config": { | |||
| "optimize-autoloader": true, | |||
| "sort-packages": true | |||
| }, | |||
| "minimum-stability": "stable", | |||
| "prefer-stable": true | |||
| } |
docker-entrypoint.sh
0 → 100644
hello_world.php
0 → 100644
Please register or sign in to comment