forked from oguz463/php-gedcom
-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathcomposer.json
More file actions
26 lines (26 loc) · 627 Bytes
/
composer.json
File metadata and controls
26 lines (26 loc) · 627 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
{
"name": "cgdprojects/php-gedcom",
"description": "A GEDCOM file parser (read + write) for PHP 8.0+",
"type": "library",
"keywords": ["gedcom","parser"],
"homepage": "http://github.com/familytree365/php-gedcom",
"license": "MIT",
"require": {
"php": ">=8.0"
},
"require-dev": {
"phpunit/phpunit": "9.*",
"squizlabs/php_codesniffer": "3.6.*",
"rector/rector": "^0.11.49"
},
"autoload": {
"psr-4": {
"Gedcom\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"GedcomTest\\": "tests/"
}
}
}