-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
69 lines (69 loc) · 1.26 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "diff/diff",
"type": "library",
"description": "Small standalone library for representing differences between data structures, computing such differences, and applying them as patches",
"keywords": [
"diff",
"patching",
"patch",
"diffing",
"diffop",
"wikidata"
],
"homepage": "https://github.com/wmde/Diff",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Jeroen De Dauw",
"email": "[email protected]",
"homepage": "https://www.entropywins.wtf",
"role": "Developer"
}
],
"support": {
"irc": "irc://irc.freenode.net/wikimedia-de-tech"
},
"require": {
"php": ">=7.2"
},
"require-dev": {
"phpunit/phpunit": "~8.5.0",
"squizlabs/php_codesniffer": "~3.6.0",
"ockcyp/covers-validator": "~1.0"
},
"autoload": {
"files" : [
"Diff.php"
],
"psr-4": {
"Diff\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Diff\\Tests\\": "tests/unit/"
}
},
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
}
},
"scripts": {
"test": [
"composer validate --no-interaction",
"vendor/bin/covers-validator",
"vendor/bin/phpunit"
],
"cs": [
"@phpcs"
],
"ci": [
"@test",
"@cs"
],
"phpcs": [
"vendor/bin/phpcs src/* tests/* --standard=phpcs.xml --extensions=php -sp"
]
}
}