-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
52 lines (52 loc) · 1.41 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
{
"name": "wikisource/api",
"description": "A PHP API to Wikisources (all languages).",
"type": "library",
"license": "GPL-2.0-or-later",
"support": {
"issues": "https://phabricator.wikimedia.org/tag/wikisource-api/",
"source": "https://github.com/wikisource/api.git"
},
"autoload": {
"psr-4": {
"Wikisource\\Api\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Wikisource\\Api\\Tests\\": "tests/"
}
},
"require": {
"ext-json": "*",
"ext-simplexml": "*",
"psr/cache": "^1|^2|^3",
"psr/log": "^1|^2|^3",
"dflydev/dot-access-data": "^3.0",
"addwiki/mediawiki-api": "^3",
"symfony/dom-crawler": "^4.2|^5.0|^6|^7"
},
"require-dev": {
"phpunit/phpunit": "^9",
"mediawiki/minus-x": "^1.1",
"php-parallel-lint/php-parallel-lint": "^1.2",
"mediawiki/mediawiki-codesniffer": "^44.0",
"tedivm/stash": "^1",
"monolog/monolog": "^1|^2|^3",
"symfony/var-dumper": "^5|^6|^7"
},
"scripts": {
"test": [
"composer validate",
"parallel-lint . --exclude vendor",
"minus-x check .",
"phpcs -s",
"phpunit"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}