-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
30 lines (30 loc) · 959 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"name": "gecko-packages/gecko-diff-output-builder",
"type": "library",
"homepage": "https://github.com/GeckoPackages",
"description": "Additional Diff output builders.",
"license": "MIT",
"keywords": ["PHPUnit", "Extension", "diff", "udiff", "unidiff", "unified diff"],
"require": {
"php": "^7.0",
"sebastian/diff": "^2.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.7",
"phpunit/phpunit": "^6.3.0",
"symfony/process": "^3.3"
},
"autoload": {
"psr-4": { "GeckoPackages\\DiffOutputBuilder\\": "src/DiffOutputBuilder/" }
},
"autoload-dev": {
"psr-4": {
"GeckoPackages\\DiffOutputBuilder\\Tests\\": "tests/DiffOutputBuilder/Tests/",
"GeckoPackages\\DiffOutputBuilder\\Utils\\": "tests/DiffOutputBuilder/Utils/"
}
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
}
}