summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2025-02-04 15:18:52 +0100
committerRemi Collet <remi@php.net>2025-02-04 15:18:52 +0100
commit818d00255edff4dc80abcdfe276b2e231f92e751 (patch)
treebd124263943d1a9c7d9a1e33f0a3804d34085733 /composer.json
dup v6
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json51
1 files changed, 51 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..7e19a7d
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,51 @@
+{
+ "name": "sebastian/diff",
+ "description": "Diff implementation",
+ "keywords": ["diff", "udiff", "unidiff", "unified diff"],
+ "homepage": "https://github.com/sebastianbergmann/diff",
+ "license": "BSD-3-Clause",
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de"
+ },
+ {
+ "name": "Kore Nordmann",
+ "email": "mail@kore-nordmann.de"
+ }
+ ],
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/diff/issues",
+ "security": "https://github.com/sebastianbergmann/diff/security/policy"
+ },
+ "prefer-stable": true,
+ "config": {
+ "platform": {
+ "php": "8.2.0"
+ },
+ "optimize-autoloader": true,
+ "sort-packages": true
+ },
+ "require": {
+ "php": ">=8.2"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^11.0",
+ "symfony/process": "^4.2 || ^5"
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "autoload-dev": {
+ "classmap": [
+ "tests/"
+ ]
+ },
+ "extra": {
+ "branch-alias": {
+ "dev-main": "6.0-dev"
+ }
+ }
+}