Merge pull request #12 from Babibubebon/develop

v1.3.0
This commit is contained in:
Babibubebon 2022-11-07 00:35:25 +09:00 committed by GitHub
commit 86b3cb48b0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 3154 additions and 1715 deletions

View file

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

View file

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

4855
composer.lock generated

File diff suppressed because it is too large Load diff

View file

@ -2,7 +2,7 @@
return [ return [
'version' => '1.2.5', 'version' => '1.3.0',
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------

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 ./docker/nginx/default.conf /etc/nginx/conf.d/default.conf
ADD ./public /var/www/lodfe/public 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 ARG WORKDIR=/var/www/lodfe
WORKDIR ${WORKDIR} WORKDIR ${WORKDIR}

View file

@ -11,7 +11,7 @@
<td> <td>
<ul> <ul>
@if($subject === $primaryTopic) @if($subject === $primaryTopic)
@foreach($objects as $object) @foreach(collect($objects)->sortBy('value') as $object)
<li> <li>
@if($object['type'] === 'uri') @if($object['type'] === 'uri')
<a href="{{ $object['value'] }}">{{ \EasyRdf\RdfNamespace::shorten($object['value']) ?? $object['value'] }}</a> <a href="{{ $object['value'] }}">{{ \EasyRdf\RdfNamespace::shorten($object['value']) ?? $object['value'] }}</a>