summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2024-02-05 10:24:45 +0100
committerRemi Collet <remi@php.net>2024-02-05 10:24:45 +0100
commitde4d4ea912a67e243e3f3c10082ddc20ece79aa3 (patch)
treeaaad47384f46ae9b574820fe10753d3d0c8ce1ab /composer.json
dup v5
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..bc6c3a4
--- /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.1.0"
+ },
+ "optimize-autoloader": true,
+ "sort-packages": true
+ },
+ "require": {
+ "php": ">=8.1"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^10.0",
+ "symfony/process": "^4.2 || ^5"
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "autoload-dev": {
+ "classmap": [
+ "tests/"
+ ]
+ },
+ "extra": {
+ "branch-alias": {
+ "dev-main": "5.1-dev"
+ }
+ }
+}