summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2026-04-12 08:09:54 +0200
committerRemi Collet <remi@php.net>2026-04-12 08:09:54 +0200
commit876cd1cb5ab5714fa7d8d02752cd4c323a30d517 (patch)
tree36ff0d2b81a05464d70eb744cdd6b8f56aaccd51
parent2b855e80d64edce2f860768e90598103fad9619f (diff)
add composer.json
-rw-r--r--.gitignore2
-rw-r--r--composer.json12
2 files changed, 14 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index 1ab5c4f..01f0400 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,5 +1,7 @@
+clog
package-*.xml
*.tgz
+*.tar.bz2
*.tar.gz
*.tar.xz
*.tar.xz.asc
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..5325b19
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,12 @@
+{
+ "name": "php-decimal/ext-decimal",
+ "type": "php-ext",
+ "license": "MIT",
+ "description": "Correctly-rounded, arbitrary precision decimal floating-point arithmetic in PHP",
+ "require": {
+ "php": ">= 7.4.0"
+ },
+ "php-ext": {
+ "extension-name": "decimal"
+ }
+}