-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.03 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "triun/diff",
"version": "1.0.0",
"description": "Computing diffs and formatting the output.",
"license": "MIT",
"homepage": "https://github.com/Triun",
"support": {
"issues": "https://github.com/Triun/Diff/issues",
"source": "https://github.com/Triun/Diff"
},
"keywords": [
"compare",
"diff"
],
"authors": [
{
"name": "Gonzalo Moreno"
}
],
"require": {
"php": ">=7.0.0"
},
"require-dev": {
"phpunit/phpunit": "^6.5",
"squizlabs/php_codesniffer": "^3.1"
},
"autoload": {
"psr-4": {
"Triun\\Diff\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
]
},
"scripts": {
"test": "vendor/bin/phpunit --configuration phpunit.xml",
"test-ci": "vendor/bin/phpunit --configuration phpunit.xml --coverage-clover build/coverage.xml",
"standards": "vendor/bin/phpcs --standard=phpcs.xml"
}
}