Skip to content

Instantly share code, notes, and snippets.

@bilfeldt
bilfeldt / AppServiceProvider.php
Created May 11, 2025 21:04
Laravel Translation string placeholder replacement macro
<?php
namespace App\Providers;
use App\Macros\Str\ReplacePlaceholders;
use Illuminate\Support\ServiceProvider;
use Illuminate\Support\Str;
class AppServiceProvider extends ServiceProvider
{
@bilfeldt
bilfeldt / phpunit.xml
Created February 27, 2023 20:38
Integration PHPUnit testsuite excluded from default testsuites
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="vendor/autoload.php"
colors="true"
defaultTestSuite="Unit,Feature"
>
<testsuites>
<testsuite name="Unit">
<directory suffix="Test.php">./tests/Unit</directory>