All checks were successful
Deploy Production (crewsportswear.com) / deploy (push) Successful in 2m9s
- Add minio disk configuration in filesystems.php - Create helper functions for MinIO URLs (minio_url, minio_image_url) - Update composer.json with AWS SDK (for future S3 support) - Add MinIO env vars to docker-compose.local.yml - Add .env examples for MinIO configuration
56 lines
1.3 KiB
JSON
56 lines
1.3 KiB
JSON
{
|
|
"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",
|
|
"aws/aws-sdk-php": "~3.0"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "~4.0",
|
|
"phpspec/phpspec": "~2.1"
|
|
},
|
|
|
|
"autoload": {
|
|
"classmap": [
|
|
"database"
|
|
],
|
|
"psr-4": {
|
|
"App\\": "app/"
|
|
},
|
|
"files": [
|
|
"app/helpers.php"
|
|
]
|
|
},
|
|
"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"
|
|
}
|
|
}
|