-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
67 lines (67 loc) · 1.54 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
{
"name": "mediawiki/sqlite-db",
"extra": {
"installer-name": "SQLiteDB"
},
"type": "mediawiki-extension",
"description": "An extension that enables the SQLite DB",
"keywords": [
"mediawiki",
"sqlite",
"database"
],
"homepage": "https://www.mediawiki.org/wiki/Extension:SQLiteDB",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Mark A. Hersbherger",
"role": "Creator"
}
],
"minimum-stability": "stable",
"support": {
"issues": "https://github.com/MWStake/SQLiteDB/issues",
"source": "https://github.com/MWStake/SQLiteDB"
},
"require": {
"php": ">=5.6",
"composer/installers": "1.*,>=1.0.1"
},
"require-dev": {
"mediawiki/mediawiki-codesniffer": "26.0.0",
"phpmd/phpmd": "~2.1",
"vimeo/psalm": "^3.4"
},
"autoload": {
"files" : [
"SqlitedbUpdater.php",
"SqlitedbInstaller.php",
"DatabaseSqlitedb.php"
],
"psr-4": {
"MediaWiki\\Extension\\SQLiteDB\\": "src/"
}
},
"config": {
"process-timeout": 0
},
"scripts":{
"phpunit": "php ../../tests/phpunit/phpunit.php -c phpunit.xml.dist",
"test": "php ../../tests/phpunit/phpunit.php -c phpunit.xml.dist",
"unit": "composer phpunit -- --testsuite semantic-scribunto-unit",
"integration": "composer phpunit -- --testsuite semantic-scribunto-integration",
"cs": [
"vendor/bin/phpcs src/* *.php -sp",
"vendor/bin/phpmd src/ text phpmd.xml"
],
"ci": [
"composer validate --no-interaction",
"composer phpunit",
"composer cs"
],
"fix": [
"vendor/bin/phpcbf src/* *.php",
"vendor/bin/phpmd src/ text phpmd.xml"
]
}
}