Added README and composer file for PIE

This commit is contained in:
Derick Rethans
2025-01-17 11:51:22 +00:00
parent d8e0ccf049
commit 99661fa2e3
2 changed files with 22 additions and 0 deletions

9
README.rst Normal file
View File

@@ -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.

13
composer.json Normal file
View File

@@ -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": []
}
}