- Updated Dockerfile configurations for various environments (alpine, basic, cloudrun, minimal, simple, test) to ensure compatibility with Laravel 5.0 and PHP 5.6. - Added PHP compatibility documentation outlining mcrypt requirements and upgrade paths. - Created cloudbuild.yaml for Google Cloud Build integration to streamline deployment to Cloud Run. - Introduced docker-compose.local.yml for local development with MySQL and Redis services. - Enhanced rebuild.sh script for easier local development and migration handling. - Updated Laravel Blade views to correct asset paths. - Added start-local.sh script for quick local setup and service management.
55 lines
1.3 KiB
JSON
Executable File
55 lines
1.3 KiB
JSON
Executable File
{
|
|
"name": "laravel/laravel",
|
|
"description": "The Laravel Framework.",
|
|
"keywords": ["framework", "laravel"],
|
|
"license": "MIT",
|
|
"type": "project",
|
|
"require": {
|
|
"laravel/framework": "5.0.*",
|
|
"webpatser/laravel-uuid": "^2.0",
|
|
"netshell/paypal": "dev-master",
|
|
"guzzlehttp/guzzle": "~5.0",
|
|
"google/recaptcha": "~1.1",
|
|
"spatie/laravel-analytics": "^1.4",
|
|
"league/flysystem-sftp": "^1.0"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "~4.0",
|
|
"phpspec/phpspec": "~2.1"
|
|
},
|
|
|
|
"autoload": {
|
|
"classmap": [
|
|
"database"
|
|
],
|
|
"psr-4": {
|
|
"App\\": "app/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"classmap": [
|
|
"tests/TestCase.php"
|
|
]
|
|
},
|
|
"scripts": {
|
|
"post-install-cmd": [
|
|
"php artisan clear-compiled",
|
|
"php artisan optimize"
|
|
],
|
|
"post-update-cmd": [
|
|
"php artisan clear-compiled",
|
|
"php artisan optimize"
|
|
],
|
|
"post-create-project-cmd": [
|
|
"php -r \"copy('.env.example', '.env');\"",
|
|
"php artisan key:generate"
|
|
]
|
|
},
|
|
"config": {
|
|
"preferred-install": "dist",
|
|
"allow-plugins": {
|
|
"kylekatarnls/update-helper": true
|
|
}
|
|
}
|
|
}
|