-
Notifications
You must be signed in to change notification settings - Fork 22
/
composer.json
55 lines (55 loc) · 1.75 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
{
"name": "org.majkel/dbase",
"description": "Library to access dbase / xbase / dbf database files",
"type": "library",
"keywords": ["dbase", "xbase", "dbf"],
"homepage": "https://github.com/majkel89",
"license": "MIT",
"authors": [
{
"name": "majkel",
"email": "[email protected]",
"homepage": "https://github.com/majkel89",
"role": "Developer"
},
{
"name": "Tomáš Prokop",
"homepage": "https://github.com/naril",
"role": "Developer"
}
],
"minimum-stability": "stable",
"prefer-stable": true,
"archive": {
"exclude": ["vendor/", "tests/", "style/", "dumpContent.php",
"bootstrap.php", "DEVELOP.md", "phpunit.xml", ".*", "build",
"*.zip", "*.tar", "phpunit.xml", "benchmarks/"]
},
"require": {
"php": ">=5.3"
},
"autoload": {
"psr-4": {
"org\\majkel\\dbase\\": "src/",
"org\\majkel\\dbase\\tests\\": "tests/",
"org\\majkel\\dbase\\benchmarks\\": "benchmarks/"
}
},
"require-dev": {
"ext-iconv": "*",
"phpunit/phpunit": "4.*",
"ptrofimov/xpmock": "1.*",
"squizlabs/php_codesniffer": "2.*",
"symfony/yaml": "~2.1",
"athletic/athletic": "^0.1.8"
},
"suggest": {
"ext-iconv": "CharsetFilter will not work without it"
},
"scripts": {
"test": "./vendor/bin/phpunit",
"test-travis-ci": "./vendor/bin/phpunit --configuration ./build/travis.phpunit.xml",
"benchmark": "bash build/run_benchmarks.sh",
"phpcs": "./vendor/bin/phpcs --standard=style/ruleset.xml src/ tests/utils/ tests/unit/ tests/integration/"
}
}