summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2026-06-05 08:42:30 +0200
committerRemi Collet <remi@php.net>2026-06-05 08:42:30 +0200
commit0f9c3a17da60917bd386218bc9ecdf99a6613fa1 (patch)
tree3e1c5274297aa014664a06c9dd9be2d535572b1f /composer.json
initial packageHEADmaster
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json42
1 files changed, 42 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..d123d26
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,42 @@
+{
+ "name": "sebastian/file-filter",
+ "description": "Library for filtering files",
+ "type": "library",
+ "homepage": "https://github.com/sebastianbergmann/file-filter",
+ "license": "BSD-3-Clause",
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
+ }
+ ],
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/file-filter/issues",
+ "security": "https://github.com/sebastianbergmann/file-filter/security/policy"
+ },
+ "prefer-stable": true,
+ "require": {
+ "php": ">=8.4"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^13.0"
+ },
+ "config": {
+ "platform": {
+ "php": "8.4.1"
+ },
+ "optimize-autoloader": true,
+ "sort-packages": true
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "extra": {
+ "branch-alias": {
+ "dev-main": "1.0-dev"
+ }
+ }
+}