Skip to content

simensen/mimetypes

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Mimetypes

Creates a JSON document containing a thorough list of file extensions => mime types as provided by the Apache httpd project.

How to use

Step one

Download the latest copy of the Apache mime-types file into the same directory as the generate script.

cd mimetypes &&
wget --no-check-certificate https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x/docs/conf/mime.types

Step one-and-a-half (optional)

Update the provided customize.json document with any additional mimetypes to define, or any that you would like to override.

Step two

Run the generate script.

./generate

In the end, a mimetypes.json document will be generated. This JSON document can be easily parsed into a map/dictionary/associative array by pretty much every programming language with little effort.

Installation

Install source from GitHub

To install the source code:

git clone git://github.com/skyzyx/mimetypes.git

And use it in your scripts:

$mimetypes = json_decode('/path/to/mimetypes/mimetypes.json');

Install with Composer

If you're using Composer to manage dependencies, you can add the mimetypes with it.

{
	"require": {
		"skyzyx/mimetypes": ">=1.0"
	}
}

License & Copyright

Copyright (c) 2010-2012 Ryan Parman. Licensed for use under the terms of the MIT license.

About

Generates an easily-parseable JSON document of extensions => mimetypes, provided by Apache.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%