PHP Classes

File: phpunit.xml.dist

Recommend this page to a friend!
  Classes of Sascha Greuel   PHP MIME Type to Extension Detector   phpunit.xml.dist   Download  
File: phpunit.xml.dist
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP MIME Type to Extension Detector
Detect the type of a file analyzing its content
Author: By
Last change: Release 3.2.0

- Switched from PSR-2 to PSR-12
- Added roave/security-advisories & squizlabs/php_codesniffer as dev requirements
- Switched from LGPL to ISC
- Switched from Travis to GitHub actions
- Added CODE_OF_CONDUCT
- Added issue templates
- Added pull request template
- Switched from BMC to GitHub sponsors

- Applied small bugfixes
- Fixed some spelling issues
Added detection for avif files

Also dropped official support for PHP < 7.2 (it works under 7.1 and 7.0, but that's not guaranteed for the future)
Date: 1 year ago
Size: 512 bytes
 

Contents

Class file image Download
<?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" > <testsuites> <testsuite name="Unit"> <directory>./tests</directory> </testsuite> </testsuites> <filter> <whitelist> <directory suffix=".php">./src/</directory> </whitelist> </filter> </phpunit>