mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-10-14 16:33:56 +00:00
* feat(php): add support for 'off' variable naming convention in AbstractPhpCodegen * feat(php-laravel): add tests for issue 21334 with API and model definitions * feat(php-laravel): update variableNamingConvention option in php-laravel help file to include 'off' as a valid value * feat: enhance variableNamingConvention options to include 'off' and detailed descriptions in documentation * feat(php): update variableNamingConvention from 'off' to 'original' in AbstractPhpCodegen * feat: include php-laravel-issue-21334 in workflow triggers for push and pull_request events
22 lines
825 B
XML
22 lines
825 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
bootstrap="./vendor/autoload.php"
|
|
colors="true"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
stopOnFailure="false"
|
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.5/phpunit.xsd">
|
|
<coverage processUncoveredFiles="true">
|
|
<include>
|
|
<directory suffix=".php">./Api</directory>
|
|
<directory suffix=".php">./Model</directory>
|
|
<directory suffix=".php">./Http/Controllers</directory>
|
|
<directory suffix=".php">.</directory>
|
|
</include>
|
|
</coverage>
|
|
<php>
|
|
<ini name="error_reporting" value="E_ALL" />
|
|
</php>
|
|
</phpunit>
|