Skip to content

Instantly share code, notes, and snippets.

View nimaamiri92's full-sized avatar

nima amiri nimaamiri92

View GitHub Profile
@nimaamiri92
nimaamiri92 / Dockerfile
Created November 8, 2021 16:30 — forked from Raistlfiren/Dockerfile
XDebug 3 and Docker Reference
FROM php:7.4-cli-alpine
# Install xdebug
RUN apk add --no-cache --virtual .phpize-deps $PHPIZE_DEPS \
&& pecl install xdebug \
&& docker-php-ext-enable xdebug \
&& apk del .phpize-deps
WORKDIR /var/www/html
@nimaamiri92
nimaamiri92 / CustomValidationError.php
Created July 20, 2020 06:52
Throw error with Laravel validation error format
<?php
namespace {YOUR_NAMESPACE};
use Illuminate\Validation\ValidationException;
class CustomValidationError
{