-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·36 lines (36 loc) · 878 Bytes
/
composer.json
File metadata and controls
executable file
·36 lines (36 loc) · 878 Bytes
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
{
"name": "gedcomx/gedcomx-php",
"homepage": "https://github.com/FamilySearch/gedcomx-php",
"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/issues"
},
"require": {
"php": ">=7.4"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"fakerphp/faker": "^1.9",
"intervention/image": "^2.7",
"php-coveralls/php-coveralls": "^2.5"
},
"autoload": {
"psr-4": {
"Gedcomx\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Gedcomx\\Tests\\": "tests/"
}
}
}