-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
executable file
·49 lines (49 loc) · 1.29 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
{
"name": "gedcomx/gedcomx-php-client",
"homepage": "https://github.com/FamilySearch/gedcomx-php-client",
"description": "PHP libraries for GEDCOM X.",
"keywords": ["gedcomx","familysearch","sdk", "genealogy"],
"type": "library",
"license": "Apache-2.0",
"authors": [
{
"name": "FamilySearch",
"homepage": "https://familysearch.org"
}
],
"support": {
"issues": "https://github.com/FamilySearch/gedcomx-php-client/issues"
},
"require": {
"php": ">=5.5",
"ml/json-ld": "1.*",
"psr/log": "^1.0",
"guzzlehttp/guzzle": "6.2.*",
"gedcomx/gedcomx-php": "dev-split"
},
"require-dev": {
"phpunit/phpunit": "3.7.*",
"fzaninotto/faker": "1.4.*",
"intervention/image": "2.0.*",
"php-vcr/php-vcr": "1.2.*",
"php-vcr/phpunit-testlistener-vcr": "^1.1",
"monolog/monolog": "^1.15",
"satooshi/php-coveralls": "dev-travis-fix"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/york-solutions/php-coveralls"
}
],
"autoload": {
"psr-4": {
"Gedcomx\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Gedcomx\\Tests\\": "tests/"
}
}
}