Merge pull request #11 from Babibubebon/feature/upgrade-lumen-9.0

Feature/upgrade lumen 9.0
This commit is contained in:
Babibubebon 2022-11-07 00:22:15 +09:00 committed by GitHub
commit 61df31faf5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 3150 additions and 1702 deletions

View file

@ -14,7 +14,7 @@ services:
context: .
dockerfile: ./docker/nginx/Dockerfile
ports:
- 80:80
- 127.0.0.1:80:80
depends_on:
- php
volumes:

View file

@ -5,9 +5,9 @@
"license": "MIT",
"type": "project",
"require": {
"php": "^7.3|^8.0",
"php": "^8.0",
"easyrdf/easyrdf": "^1.1.0",
"laravel/lumen-framework": "^8.0",
"laravel/lumen-framework": "^9.0",
"ml/json-ld": "^1.1"
},
"require-dev": {

4834
composer.lock generated

File diff suppressed because it is too large Load diff

View file

@ -1,4 +1,4 @@
FROM nginx:1.19-alpine
FROM nginx:mainline-alpine
ADD ./docker/nginx/default.conf /etc/nginx/conf.d/default.conf
ADD ./public /var/www/lodfe/public

View file

@ -1,4 +1,4 @@
FROM php:7.4-fpm-alpine
FROM php:8.1-fpm-alpine
ARG WORKDIR=/var/www/lodfe
WORKDIR ${WORKDIR}