Skip to content
Closed
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
echo $extension_version >> $env:GITHUB_ENV
- name: Setup PHP
id: setup-php
uses: php/setup-php-sdk@v0.8
uses: php/setup-php-sdk@v0.10
with:
version: ${{matrix.php}}
arch: ${{matrix.arch}}
Expand Down
18 changes: 18 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"name": "pecl/timezonedb",
"type": "php-ext",
"license": "PHP-3.01",
"description": "Timezone Database to be used with PHP's date and time functions",
"require": {
"php": ">= 5.4.0"
},
"php-ext": {
"extension-name": "timezonedb",
"configure-options": [
{
"name": "enable-timezonedb",
"description": "Enable timezonedb support"
}
]
}
}
Loading