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.13", 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 "league/flysystem-memory": "*", 69 "maximebf/debugbar": "*", 70 "mockery/mockery": "*", 71 "php-coveralls/php-coveralls": "*", 72 "phpunit/phpunit": "*", 73 "wapmorgan/php-code-fixer": "*", 74 "wata727/pahout": "*" 75 }, 76 "scripts": { 77 "webtrees:build": [ 78 "@composer webtrees:mo", 79 "git checkout language/en-US.mo", 80 "rm -Rf webtrees/", 81 "git archive --prefix=webtrees/ HEAD --format=tar | tar -x", 82 "cp language/*.mo webtrees/language/", 83 "zip --quiet --recurse-paths --move -9 webtrees.zip webtrees" 84 ], 85 "webtrees:check": [ 86 "### PHP-CODE-SNIFFER", 87 "phpcs --standard=PSR12 -s --exclude=Generic.Files.LineLength,PSR2.ControlStructures.ControlStructureSpacing app routes", 88 "### PHAN", 89 "PHAN_DISABLE_XDEBUG_WARN=1 phan --target-php-version=7.1 --progress-bar --directory . --exclude-directory-list data,resources,routes,tests,vendor", 90 "### PHPSTAN", 91 "phpstan --level=7 analyze index.php app", 92 "### PSALM", 93 "psalm" 94 ], 95 "webtrees:tools": [ 96 "### PHAN", 97 "@composer global require phan/phan=*", 98 "### PSALM", 99 "@composer global require vimeo/psalm=*" 100 ], 101 "webtrees:mo": [ 102 "for FILE in language/*.po; do msgfmt --output=$(dirname $FILE)/$(basename $FILE .po).mo $FILE; done", 103 "rm -Rf data/cache/language*" 104 ], 105 "webtrees:po": [ 106 "sed -i.bak -e 's/\\(I18N::[^)]*[)]\\)/<?php echo \\1; ?>/g' resources/xml/reports/*.xml", 107 "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", 108 "find resources/xml/reports/ -name '*.xml' -exec mv {}.bak {} \\;", 109 "find language -name '*.po' -exec msgmerge --no-wrap --sort-output --no-fuzzy-matching --quiet --output={} {} language/webtrees.pot \\;" 110 ], 111 "webtrees:png": [ 112 "find resources/css -name *.png -exec pngquant --ext .png --force --skip-if-larger --speed 1 {} \\;" 113 ] 114 }, 115 "scripts-descriptions": { 116 "webtrees:build": "Create a distribution file (webtrees.zip)", 117 "webtrees:check": "Run various static analysis tools", 118 "webtrees:mo": "Compile the language files (*.mo)", 119 "webtrees:po": "Update the language (webtrees.pot, *.po)", 120 "webtrees:tools": "Install the tools needed to run webtrees-check" 121 }, 122 "extra": { 123 "branch-alias": { 124 "dev-master": "2.0-dev" 125 } 126 } 127} 128