diff --git a/README.rst b/README.rst new file mode 100644 index 0000000..b215335 --- /dev/null +++ b/README.rst @@ -0,0 +1,9 @@ +TimezoneDB +========== + +This extension is a drop-in replacement for the builtin timezone database that +comes with PHP. You should only install this extension in case you need to get +a later version of the timezone database than the one that ships with PHP. + +The data that this extension uses comes from the "Olson" database, which is +located at http://www.iana.org/time-zones. diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..1cca064 --- /dev/null +++ b/composer.json @@ -0,0 +1,13 @@ +{ + "name": "pecl/timezonedb", + "type": "php-ext", + "license": "PHP-3.01", + "description": "This extension is a drop-in replacement for the builtin timezone database that comes with PHP.", + "require": { + "php": ">=5.4" + }, + "php-ext": { + "priority": 20, + "configure-options": [] + } +}