{ "name": "fisharebest/webtrees", "description": "webtrees online genealogy", "keywords": ["webtrees", "genealogy"], "license": "GPL-3.0-or-later", "autoload": { "psr-4": { "Fisharebest\\Webtrees\\": "app/" }, "files": [ "app/Helpers/functions.php" ] }, "autoload-dev": { "classmap": [ "tests/TestCase.php" ] }, "config": { "platform": { "php" : "7.1.3" }, "sort-packages": true, "process-timeout": 3600 }, "require": { "ext-curl": "*", "ext-gd": "*", "ext-iconv": "*", "ext-intl": "*", "ext-json": "*", "ext-pcre": "*", "ext-pdo": "*", "ext-pdo_mysql": "*", "ext-session": "*", "ext-simplexml": "*", "ext-xml": "*", "ext-zip": "*", "doctrine/dbal": "~2.9", "filp/whoops": "~2.3", "fisharebest/algorithm": "~1.3", "fisharebest/ext-calendar": "~2.5", "fisharebest/flysystem-chroot-adapter": "~1.0", "fisharebest/localization": "~1.13", "guzzlehttp/guzzle": "~6.0", "illuminate/cache": "^5.7.17", "illuminate/container": "^5.7.17", "illuminate/database": "^5.7.17", "illuminate/support": "^5.7.17", "league/commonmark": "~0.18", "league/flysystem": "~1.0", "league/flysystem-cached-adapter": "~1.0", "league/flysystem-ziparchive": "~1.0", "league/glide": "~1.3", "ramsey/uuid": "~3.8", "swiftmailer/swiftmailer": "~6.1", "symfony/expression-language": "~4.2", "symfony/http-foundation": "~4.2", "symfony/http-kernel": "~4.2", "symfony/polyfill-mbstring": "~1.10", "symfony/polyfill-php71": "~1.10", "symfony/polyfill-php72": "~1.10", "tecnickcom/tcpdf": "~6.2", "webuni/commonmark-table-extension": "~0.9" }, "require-dev": { "ext-pdo_sqlite": "*", "league/flysystem-memory": "*", "maximebf/debugbar": "*", "mockery/mockery": "*", "php-coveralls/php-coveralls": "*", "phpunit/phpunit": "*", "wapmorgan/php-code-fixer": "*", "wata727/pahout": "*" }, "scripts": { "webtrees:build": [ "@composer webtrees:mo", "git checkout language/en-US.mo", "rm -Rf webtrees/", "git archive --prefix=webtrees/ HEAD --format=tar | tar -x", "cp language/*.mo webtrees/language/", "zip --quiet --recurse-paths --move -9 webtrees.zip webtrees" ], "webtrees:check": [ "### PHP-CODE-SNIFFER", "phpcs --standard=PSR12 -s --exclude=Generic.Files.LineLength,PSR2.ControlStructures.ControlStructureSpacing app routes", "### PHAN", "PHAN_DISABLE_XDEBUG_WARN=1 phan --target-php-version=7.1 --progress-bar --directory . --exclude-directory-list data,resources,routes,tests,vendor", "### PHPSTAN", "phpstan --level=7 analyze index.php app", "### PSALM", "psalm" ], "webtrees:tools": [ "### PHAN", "@composer global require phan/phan=*", "### PSALM", "@composer global require vimeo/psalm=*" ], "webtrees:mo": [ "for FILE in language/*.po; do msgfmt --output=$(dirname $FILE)/$(basename $FILE .po).mo $FILE; done", "rm -Rf data/cache/language*" ], "webtrees:po": [ "sed -i.bak -e 's/\\(I18N::[^)]*[)]\\)//g' resources/xml/reports/*.xml", "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", "find resources/xml/reports/ -name '*.xml' -exec mv {}.bak {} \\;", "find language -name '*.po' -exec msgmerge --no-wrap --sort-output --no-fuzzy-matching --quiet --output={} {} language/webtrees.pot \\;" ] }, "scripts-descriptions": { "webtrees:build": "Create a distribution file (webtrees.zip)", "webtrees:check": "Run various static analysis tools", "webtrees:mo": "Compile the language files (*.mo)", "webtrees:po": "Update the language (webtrees.pot, *.po)", "webtrees:tools": "Install the tools needed to run webtrees-check" }, "extra": { "branch-alias": { "dev-master": "2.0-dev" } } }