├── .State ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── Documentation ├── En │ └── Index.xyl └── Fr │ └── Index.xyl ├── Exception ├── Exception.php └── MimeIsNotFound.php ├── Mime.php ├── Mime.types ├── README.md ├── Test └── Integration │ └── Documentation.php ├── bors.toml └── composer.json /.State: -------------------------------------------------------------------------------- 1 | finalized 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | /composer.lock 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoaproject/Mime/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoaproject/Mime/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Documentation/En/Index.xyl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoaproject/Mime/HEAD/Documentation/En/Index.xyl -------------------------------------------------------------------------------- /Documentation/Fr/Index.xyl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoaproject/Mime/HEAD/Documentation/Fr/Index.xyl -------------------------------------------------------------------------------- /Exception/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoaproject/Mime/HEAD/Exception/Exception.php -------------------------------------------------------------------------------- /Exception/MimeIsNotFound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoaproject/Mime/HEAD/Exception/MimeIsNotFound.php -------------------------------------------------------------------------------- /Mime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoaproject/Mime/HEAD/Mime.php -------------------------------------------------------------------------------- /Mime.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoaproject/Mime/HEAD/Mime.types -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoaproject/Mime/HEAD/README.md -------------------------------------------------------------------------------- /Test/Integration/Documentation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoaproject/Mime/HEAD/Test/Integration/Documentation.php -------------------------------------------------------------------------------- /bors.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoaproject/Mime/HEAD/bors.toml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoaproject/Mime/HEAD/composer.json --------------------------------------------------------------------------------