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.8" 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-session": "*", 35 "ext-simplexml": "*", 36 "ext-xml": "*", 37 "ext-zip": "*", 38 "doctrine/dbal": "~2.9", 39 "fig/http-message-util": "^1.1", 40 "fisharebest/algorithm": "~1.3", 41 "fisharebest/ext-calendar": "~2.5", 42 "fisharebest/flysystem-chroot-adapter": "~1.0", 43 "fisharebest/localization": "~1.13", 44 "guzzlehttp/guzzle": "~6.0", 45 "illuminate/cache": "~5.8", 46 "illuminate/container": "~5.8", 47 "illuminate/database": "~5.8", 48 "illuminate/support": "~5.8", 49 "league/commonmark": "~0.18", 50 "league/flysystem": "~1.0", 51 "league/flysystem-cached-adapter": "~1.0", 52 "league/flysystem-ziparchive": "~1.0", 53 "league/glide": "~1.3", 54 "nesbot/carbon": "~2.14", 55 "nyholm/psr7": "~1.1", 56 "nyholm/psr7-server": "~0.3", 57 "oscarotero/middleland": "~1.0", 58 "psr/http-message": "~1.0", 59 "psr/http-server-handler": "~1.0", 60 "psr/http-server-middleware": "~1.0", 61 "ramsey/uuid": "~3.8", 62 "swiftmailer/swiftmailer": "~6.1", 63 "symfony/expression-language": "~4.2", 64 "symfony/http-foundation": "~4.2", 65 "symfony/http-kernel": "~4.2", 66 "symfony/polyfill-mbstring": "~1.11", 67 "symfony/polyfill-php72": "~1.11", 68 "tecnickcom/tcpdf": "~6.2", 69 "webuni/commonmark-table-extension": "~0.9" 70 }, 71 "require-dev": { 72 "ext-pdo_sqlite": "*", 73 "ext-sqlite3": "*", 74 "league/flysystem-memory": "~1.0", 75 "maximebf/debugbar": "~1.15", 76 "php-coveralls/php-coveralls": "~2.1", 77 "phpunit/phpunit": "~7.0|~8.0" 78 }, 79 "suggest": { 80 "ext-pdo_mysql": "Required to use MySQL for database storage", 81 "ext-pdo_sqlite": "Required to use SQLite for database storage", 82 "ext-pdo_pgsql": "Required to use PostgreSQL for database storage", 83 "ext-pdo_sqlsvr": "Required to use SQL Server for database storage" 84 }, 85 "scripts": { 86 "webtrees:build": [ 87 "rm -Rf webtrees/", 88 "git archive --prefix=webtrees/ HEAD --format=tar | tar -x", 89 "for FILE in resources/lang/*/messages.po; do msgfmt --output=webtrees/$(dirname $FILE)/$(basename $FILE .po).mo $FILE; done", 90 "zip --quiet --recurse-paths --move -9 webtrees.zip webtrees" 91 ], 92 "webtrees:check": [ 93 "### PHP-CODE-SNIFFER", 94 "phpcs --standard=PSR12 -s --exclude=Generic.Files.LineLength,PSR2.ControlStructures.ControlStructureSpacing app routes", 95 "### PHAN", 96 "PHAN_DISABLE_XDEBUG_WARN=1 phan --target-php-version=7.1 --progress-bar --directory . --exclude-directory-list data,resources,routes,tests,vendor", 97 "### PHPSTAN", 98 "phpstan --level=7 analyze index.php app", 99 "### PSALM", 100 "psalm" 101 ], 102 "webtrees:coverage": [ 103 "composer install --dev --quiet", 104 "vendor/bin/phpunit --coverage-html=tests/coverage", 105 "composer install --no-dev --quiet" 106 ], 107 "webtrees:tools": [ 108 "### PHAN", 109 "@composer global require phan/phan=*", 110 "### PSALM", 111 "@composer global require vimeo/psalm=*" 112 ], 113 "webtrees:mo": [ 114 "for FILE in resources/lang/*/messages.po; do msgfmt --output=$(dirname $FILE)/$(basename $FILE .po).mo $FILE; done", 115 "rm -Rf data/cache/language*" 116 ], 117 "webtrees:po": [ 118 "sed -i.bak -e 's/\\(I18N::[^)]*[)]\\)/<?php echo \\1; ?>/g' resources/xml/reports/*.xml", 119 "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=resources/lang/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", 120 "find resources/xml/reports/ -name '*.xml' -exec mv {}.bak {} \\;", 121 "find resources/lang -name '*.po' -exec msgmerge --no-wrap --sort-output --no-fuzzy-matching --quiet --output={} {} resources/lang/webtrees.pot \\;" 122 ], 123 "webtrees:png": [ 124 "find resources/css -name *.png -exec pngquant --ext .png --force --skip-if-larger --speed 1 {} \\;" 125 ] 126 }, 127 "scripts-descriptions": { 128 "webtrees:build": "Create a distribution file (webtrees.zip)", 129 "webtrees:check": "Run various static analysis tools", 130 "webtrees:coverage": "Generate test coverage report", 131 "webtrees:mo": "Compile the language files (*.mo)", 132 "webtrees:po": "Update the language (webtrees.pot, *.po)", 133 "webtrees:tools": "Install the tools needed to run webtrees-check" 134 }, 135 "extra": { 136 "branch-alias": { 137 "dev-master": "2.0-dev" 138 } 139 } 140} 141