forked from wikimedia/cdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 945 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
31
32
33
34
35
{
"name": "wikimedia/cdb",
"description": "Constant Database (CDB) wrapper library for PHP. Provides pure-PHP fallback when dba_* functions are absent.",
"license": "GPL-2.0",
"homepage": "https://www.mediawiki.org/wiki/CDB",
"authors": [
{
"name": "Tim Starling",
"email": "[email protected]"
},
{
"name": "Chad Horohoe",
"email": "[email protected]"
}
],
"autoload": {
"classmap": ["src/"]
},
"require": {
"php": ">=5.3.2"
},
"require-dev": {
"jakub-onderka/php-parallel-lint": "0.8.*",
"phpunit/phpunit": "4.6.*",
"squizlabs/php_codesniffer": "2.2.*",
"mediawiki/mediawiki-codesniffer": "0.1.0"
},
"scripts": {
"test": [
"parallel-lint . --exclude vendor",
"phpunit $PHPUNIT_ARGS",
"phpcs -p"
]
}
}