mirror of
https://github.com/FriendsOfSymfony/FOSOAuthServerBundle.git
synced 2026-03-24 06:42:14 +01:00
* Move Travis config to GH Actions * Run PHPStan in Continuous integration GH Action * Run unit tests against different Symfony versions * Fix unit tests * Fix tools installation in GHA * Fix Mongodb tests * Install symfony/form and doctrine/annotations for unit tests * Use installed version of phpstan * Fix CS * Normalize composer.json * Run composer install before phpstan * Add phpstan-baseline file * Remove support for Propel * Fix Makefile syntax and Symfony versions in GHA * Update PHPStan baseline * Use ramsey/composer-install for dependencies * Add test dependencies during GH run * Fix dependencies install * Add SYMFONY_DEPRECATIONS_HELPER env variable * Require PHPUnit min 8.5.23 * Update minimum version of php-mock * Disallow Symfony version 6 for some components * Increase deprecation notices * Remove PHP 8.1 from GH actions Support and tests for PHP 8.1 can be added later * Limit symfony/form to 4.4 || 5.1 * Combine GH workflows to a single workflow
28 lines
818 B
XML
28 lines
818 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit bootstrap="Tests/bootstrap.php" colors="true">
|
|
<testsuites>
|
|
<testsuite name="FOSOAuthServerBundle Test Suite">
|
|
<directory suffix="Test.php">./Tests</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<filter>
|
|
<whitelist>
|
|
<directory>./</directory>
|
|
<exclude>
|
|
<directory>./Resources</directory>
|
|
<directory>./Tests</directory>
|
|
<directory>./vendor</directory>
|
|
</exclude>
|
|
</whitelist>
|
|
</filter>
|
|
|
|
<php>
|
|
<env name="SYMFONY_DEPRECATIONS_HELPER" value="max[total]=293&max[self]=38&max[direct]=36"/>
|
|
</php>
|
|
|
|
<listeners>
|
|
<listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener" />
|
|
</listeners>
|
|
</phpunit>
|