update PHP dependencies

This commit is contained in:
El RIDO 2021-04-05 17:11:51 +02:00
parent 65d8f896c7
commit 30c8d97517
No known key found for this signature in database
GPG key ID: 0F5C940A6BD81F92
6 changed files with 185 additions and 113 deletions

View file

@ -0,0 +1,14 @@
<?php
require_once __DIR__ . '/psalm-autoload.php';
/**
* This is necessary for PHPUnit on PHP >= 5.3
*
* Class PHPUnit_Framework_TestCase
*/
if (PHP_VERSION_ID >= 50300) {
if (!class_exists('PHPUnit_Framework_TestCase')) {
require_once __DIR__ . '/other/phpunit-shim.php';
}
}