[PECL-CVS] [pecl-file_system-xattr] master: add composer.json
[email protected] (Remi Collet)
| Newsgroups | php.pecl.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: Remi Collet (remicollet)
Date: 2025-09-17T15:55:39+02:00
Commit: https://github.com/php/pecl-file_system-xattr/commit/1ad87b6a85059bcbb8625bfea06980fd8bfebc3c
Raw diff: https://github.com/php/pecl-file_system-xattr/commit/1ad87b6a85059bcbb8625bfea06980fd8bfebc3c.diff
add composer.json
Changed paths:
A composer.json
M README.md
Diff:
diff --git a/README.md b/README.md
index 01364cd..241eb72 100644
--- a/README.md
+++ b/README.md
@@ -1,3 +1,2 @@
-Mirror of http://git.php.net/?p=pecl/file_system/xattr.git
-
-Issues: https://bugs.php.net/search.php?cmd=display&status=Open&package_name[]=xattr
+This package allows to manipulate extended attributes on filesystems
+that support them.
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..6ce4969
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,13 @@
+{
+ "name": "pecl/xattr",
+ "type": "php-ext",
+ "license": "PHP-3.01",
+ "description": "Extended attributes",
+ "require": {
+ "php": ">= 7.2.0"
+ },
+ "php-ext": {
+ "extension-name": "pecl/xattr",
+ "configure-options": []
+ }
+}