Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

- (php) Update blumilksoftware/codestyle requirement from ^v2.7.0 to ^v3.0.0 in /src #23

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/.github/workflows/test-and-lint-js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/[email protected].1 # https://github.com/actions/checkout
- uses: actions/[email protected].4 # https://github.com/actions/checkout

- name: Cache dependencies
uses: actions/[email protected] # https://github.com/actions/cache
Expand Down
4 changes: 2 additions & 2 deletions src/.github/workflows/test-and-lint-php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- 5432:5432

steps:
- uses: actions/[email protected].1 # https://github.com/actions/checkout
- uses: actions/[email protected].4 # https://github.com/actions/checkout

- name: Validate composer.json and composer.lock
run: composer validate
Expand All @@ -47,7 +47,7 @@ jobs:
restore-keys: ${{ runner.os }}-composer-dependencies

- name: Setup PHP
uses: shivammathur/[email protected].0 # https://github.com/shivammathur/setup-php
uses: shivammathur/[email protected].4 # https://github.com/shivammathur/setup-php
with:
php-version: 8.3
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, pdo_pgsql, intl
Expand Down
3 changes: 2 additions & 1 deletion src/bootstrap/providers.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
<?php

declare(strict_types=1);
use ExampleApp\Providers\AppServiceProvider;

return [
ExampleApp\Providers\AppServiceProvider::class,
AppServiceProvider::class,
];
2 changes: 1 addition & 1 deletion src/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"laravel/tinker": "^2.9"
},
"require-dev": {
"blumilksoftware/codestyle": "^v2.7.0",
"blumilksoftware/codestyle": "^v3.0.0",
"fakerphp/faker": "^1.23.0",
"mockery/mockery": "^1.6.6",
"nunomaduro/collision": "^8.1",
Expand Down
6 changes: 3 additions & 3 deletions src/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ services:
condition: service_healthy

database:
image: postgres:16.1-alpine3.18
image: postgres:16.3-alpine3.18
container_name: example-app-db-dev
environment:
- POSTGRES_USER=${DB_USERNAME}
Expand All @@ -70,7 +70,7 @@ services:
restart: unless-stopped

mailpit:
image: axllent/mailpit:v1.10.0
image: axllent/mailpit:v1.18.0
container_name: example-app-mailpit-dev
labels:
- "traefik.enable=true"
Expand All @@ -94,7 +94,7 @@ services:
restart: unless-stopped

redis:
image: redis:7.2.3-alpine3.18
image: redis:7.2.4-alpine3.19
container_name: example-app-redis-dev
ports:
- ${DOCKER_REDIS_HOST_PORT:-63852}:6379
Expand Down
10 changes: 5 additions & 5 deletions src/environment/dev/app/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# For other versions check: https://hub.docker.com/_/composer/tags
FROM composer/composer:2.7.2-bin as composer-bin
FROM composer/composer:2.7.6-bin as composer-bin

# For other versions check: https://hub.docker.com/_/node/tags?page=1&name=bullseye-slim
FROM node:21.7.1-bullseye-slim as node
FROM node:22.1-bullseye-slim as node

# For other versions check: https://hub.docker.com/_/php/tags?page=1&name=fpm-bullseye
FROM php:8.3.4-fpm-bullseye
FROM php:8.3.6-fpm-bullseye

COPY --from=composer-bin ./composer /usr/bin/composer

Expand Down Expand Up @@ -35,7 +35,7 @@ RUN ln --symbolic /usr/local/lib/node_modules/npm/bin/npm-cli.js /usr/local/bin/
RUN mv "${PHP_INI_DIR}/php.ini-development" "${PHP_INI_DIR}/php.ini"

# For other versions check: http://nginx.org/packages/mainline/debian/pool/nginx/n/nginx/
ARG NGINX_VERSION="1.25.3-1~bullseye"
ARG NGINX_VERSION="1.25.5-1~bullseye"
# For other versions check: https://pecl.php.net/package/redis
ARG PHPREDIS_VERSION=6.0.2

Expand All @@ -57,7 +57,7 @@ RUN apt-get update \
redis

# For other versions check: https://pecl.php.net/package/xdebug
ARG XDEBUG_VERSION=3.3.1
ARG XDEBUG_VERSION=3.3.2
ARG INSTALL_XDEBUG=true

RUN if [ ${INSTALL_XDEBUG} = true ]; then \
Expand Down
Loading