xref: /webtrees/composer.json (revision e11ffd0c922a07c13f23d38c7d9c82edce5298f5)
1{
2    "name": "fisharebest/webtrees",
3    "description": "webtrees online genealogy",
4    "keywords": ["webtrees", "genealogy"],
5    "license": "GPL-3.0-or-later",
6    "autoload": {
7        "psr-4": {
8            "Fisharebest\\Webtrees\\": "app/"
9        },
10        "files": [
11            "app/Helpers/functions.php"
12        ]
13    },
14    "autoload-dev": {
15        "classmap": [
16            "tests/TestCase.php"
17        ]
18    },
19    "config": {
20        "platform": {
21            "php" : "7.1.3"
22        },
23        "sort-packages": true,
24        "process-timeout": 3600
25    },
26    "require": {
27        "ext-curl": "*",
28        "ext-gd": "*",
29        "ext-iconv": "*",
30        "ext-intl": "*",
31        "ext-json": "*",
32        "ext-pcre": "*",
33        "ext-pdo": "*",
34        "ext-pdo_mysql": "*",
35        "ext-session": "*",
36        "ext-simplexml": "*",
37        "ext-xml": "*",
38        "ext-zip": "*",
39        "doctrine/dbal": "~2.9",
40        "filp/whoops": "~2.3",
41        "fisharebest/algorithm": "~1.3",
42        "fisharebest/ext-calendar": "~2.5",
43        "fisharebest/flysystem-chroot-adapter": "~1.0",
44        "fisharebest/localization": "~1.12",
45        "guzzlehttp/guzzle": "~6.0",
46        "illuminate/cache": "^5.7.17",
47        "illuminate/container": "^5.7.17",
48        "illuminate/database": "^5.7.17",
49        "illuminate/support": "^5.7.17",
50        "league/commonmark": "~0.18",
51        "league/flysystem": "~1.0",
52        "league/flysystem-cached-adapter": "~1.0",
53        "league/flysystem-ziparchive": "~1.0",
54        "league/glide": "~1.3",
55        "ramsey/uuid": "~3.8",
56        "swiftmailer/swiftmailer": "~6.1",
57        "symfony/expression-language": "~4.2",
58        "symfony/http-foundation": "~4.2",
59        "symfony/http-kernel": "~4.2",
60        "symfony/polyfill-mbstring": "~1.10",
61        "symfony/polyfill-php71": "~1.10",
62        "symfony/polyfill-php72": "~1.10",
63        "tecnickcom/tcpdf": "~6.2",
64        "webuni/commonmark-table-extension": "~0.9"
65    },
66    "require-dev": {
67        "ext-pdo_sqlite": "*",
68        "maximebf/debugbar": "*",
69        "mockery/mockery": "*",
70        "php-coveralls/php-coveralls": "*",
71        "phpunit/phpunit": "*",
72        "wapmorgan/php-code-fixer": "dev-master"
73    },
74    "scripts": {
75       "webtrees:build": [
76           "@composer webtrees:mo",
77           "git checkout language/en-US.mo",
78           "rm -Rf webtrees/",
79           "git archive --prefix=webtrees/ HEAD --format=tar | tar -x",
80           "cp language/*.mo webtrees/language/",
81           "zip --quiet --recurse-paths --move -9 webtrees.zip webtrees"
82       ],
83       "webtrees:check": [
84            "### PHP-CODE-SNIFFER",
85            "phpcs --standard=PSR12 -s --exclude=Generic.Files.LineLength,PSR2.ControlStructures.ControlStructureSpacing app routes",
86            "### PHAN",
87            "PHAN_DISABLE_XDEBUG_WARN=1 phan --target-php-version=7.1 --progress-bar --directory . --exclude-directory-list data,resources,routes,tests,vendor",
88            "### PHPSTAN",
89            "phpstan --level=7 analyze index.php app",
90            "### PSALM",
91            "psalm"
92        ],
93        "webtrees:tools": [
94            "### PHAN",
95            "@composer global require phan/phan=*",
96            "### PSALM",
97            "@composer global require vimeo/psalm=*"
98        ],
99        "webtrees:mo": [
100            "for FILE in language/*.po; do msgfmt --output=$(dirname $FILE)/$(basename $FILE .po).mo $FILE; done",
101            "rm -Rf data/cache/language*"
102        ],
103        "webtrees:po": [
104            "sed -i.bak -e 's/\\(I18N::[^)]*[)]\\)/<?php echo \\1; ?>/g' modules*/*/*.xml",
105            "git grep -I --name-only --fixed-strings -e I18N:: -- '*.php' '*.xml' | xargs xgettext --package-name=webtrees --package-version=1.0 --msgid-bugs-address=i18n@webtrees.net --output=language/webtrees.pot --no-wrap --language=PHP --add-comments=I18N --from-code=utf-8 --keyword --keyword=translate:1 --keyword=translateContext:1c,2 --keyword=plural:1,2",
106            "find modules*/ -name '*.xml' -exec mv {}.bak {} \\;",
107            "find language -name '*.po' -exec msgmerge --no-wrap --sort-output --no-fuzzy-matching --quiet --output={} {} language/webtrees.pot \\;"
108        ]
109    },
110    "scripts-descriptions": {
111        "webtrees:build": "Create a distribution file (webtrees.zip)",
112        "webtrees:check": "Run various static analysis tools",
113        "webtrees:mo": "Compile the language files (*.mo)",
114        "webtrees:po": "Update the language (webtrees.pot, *.po)",
115        "webtrees:tools": "Install the tools needed to run webtrees-check"
116    },
117    "extra": {
118        "branch-alias": {
119            "dev-master": "2.0-dev"
120        }
121    }
122}
123