xref: /webtrees/composer.json (revision 6577bfc3111b4789852b83f46e19d92c9b59921c)
1ed285daaSGreg Roach{
2a25f0a04SGreg Roach    "name": "fisharebest/webtrees",
3ed285daaSGreg Roach    "description": "webtrees online genealogy",
474d6dc0eSGreg Roach    "keywords": [
574d6dc0eSGreg Roach        "webtrees",
674d6dc0eSGreg Roach        "genealogy"
774d6dc0eSGreg Roach    ],
831b7ad55SGreg Roach    "license": "GPL-3.0-or-later",
9a25f0a04SGreg Roach    "autoload": {
100e62c4b8SGreg Roach        "psr-4": {
110e62c4b8SGreg Roach            "Fisharebest\\Webtrees\\": "app/"
121f3fb95cSGreg Roach        },
131f3fb95cSGreg Roach        "files": [
141f3fb95cSGreg Roach            "app/Helpers/functions.php"
151f3fb95cSGreg Roach        ]
16a25f0a04SGreg Roach    },
1784e2cf4eSGreg Roach    "autoload-dev": {
1884e2cf4eSGreg Roach        "classmap": [
19915db8c4SGreg Roach            "modules_v4/",
2074d6dc0eSGreg Roach            "tests/TestCase.php",
2174d6dc0eSGreg Roach            "tests/MockGlobalFunctions.php"
2284e2cf4eSGreg Roach        ]
2384e2cf4eSGreg Roach    },
247286a40cSGreg Roach    "config": {
257286a40cSGreg Roach        "platform": {
264459dc9aSGreg Roach            "php": "7.1.8"
2722acdb08SGreg Roach        },
28425578caSGreg Roach        "sort-packages": true,
29425578caSGreg Roach        "process-timeout": 3600
307286a40cSGreg Roach    },
31ed285daaSGreg Roach    "require": {
325f9f5f94SRico Sonntag        "ext-curl": "*",
337286a40cSGreg Roach        "ext-gd": "*",
347286a40cSGreg Roach        "ext-iconv": "*",
355f9f5f94SRico Sonntag        "ext-intl": "*",
368ae9e54eSRico Sonntag        "ext-json": "*",
377286a40cSGreg Roach        "ext-pcre": "*",
387286a40cSGreg Roach        "ext-pdo": "*",
397286a40cSGreg Roach        "ext-session": "*",
407286a40cSGreg Roach        "ext-simplexml": "*",
413b3cfeeaSGreg Roach        "ext-xml": "*",
425f9f5f94SRico Sonntag        "ext-zip": "*",
43ee4364daSGreg Roach        "aura/router": "~3.1",
44362be83aSGreg Roach        "doctrine/dbal": "~2.9",
458e8a9008SGreg Roach        "ezyang/htmlpurifier": "~4.12",
466ccdf4f0SGreg Roach        "fig/http-message-util": "^1.1",
478e8a9008SGreg Roach        "fisharebest/algorithm": "~1.5",
4893686a36SGreg Roach        "fisharebest/ext-calendar": "~2.5",
49d1315a43SGreg Roach        "fisharebest/flysystem-chroot-adapter": "~1.0",
5050b23b0dSGreg Roach        "fisharebest/localization": "~1.15",
518e8a9008SGreg Roach        "guzzlehttp/guzzle": "~6.5",
524525f50bSGreg Roach        "illuminate/container": "~5.8",
534525f50bSGreg Roach        "illuminate/database": "~5.8",
544525f50bSGreg Roach        "illuminate/support": "~5.8",
55*6577bfc3SGreg Roach        "intervention/image": "^2.5",
568e8a9008SGreg Roach        "io-developer/php-whois": "~3.5",
578e8a9008SGreg Roach        "league/commonmark": "~1.4",
58d592f2ecSGreg Roach        "league/flysystem": "~1.0",
59d1315a43SGreg Roach        "league/flysystem-cached-adapter": "~1.0",
60d592f2ecSGreg Roach        "league/flysystem-ziparchive": "~1.0",
618e8a9008SGreg Roach        "league/glide": "~1.5",
624874f72dSGreg Roach        "middlewares/client-ip": "~1.3",
63089dadacSGreg Roach        "mlocati/ip-lib": "~1.9",
64e6149aa2SGreg Roach        "nesbot/carbon": "~2.35",
65e6149aa2SGreg Roach        "nyholm/psr7": "~1.3",
66666268ebSGreg Roach        "nyholm/psr7-server": "~1.0",
676ccdf4f0SGreg Roach        "oscarotero/middleland": "~1.0",
68c692965aSGreg Roach        "psr/cache": "~1.0",
696ccdf4f0SGreg Roach        "psr/http-message": "~1.0",
706ccdf4f0SGreg Roach        "psr/http-server-handler": "~1.0",
716ccdf4f0SGreg Roach        "psr/http-server-middleware": "~1.0",
728e8a9008SGreg Roach        "ramsey/uuid": "~3.9",
738e8a9008SGreg Roach        "swiftmailer/swiftmailer": "~6.2",
74c692965aSGreg Roach        "symfony/cache": "~4.4",
75d501c45dSGreg Roach        "symfony/expression-language": "~4.4",
768e8a9008SGreg Roach        "symfony/polyfill-mbstring": "~1.17",
77dec352c1SGreg Roach        "symfony/polyfill-php80": "^1.17",
788e8a9008SGreg Roach        "tecnickcom/tcpdf": "^6.3.5"
7910a8d14fSGreg Roach    },
80db7d25eeSGreg Roach    "require-dev": {
81c42d24a9SGreg Roach        "ext-pdo_sqlite": "*",
824525f50bSGreg Roach        "ext-sqlite3": "*",
838e8a9008SGreg Roach        "composer/composer": "~1.10",
844525f50bSGreg Roach        "league/flysystem-memory": "~1.0",
858e8a9008SGreg Roach        "maximebf/debugbar": "~1.16",
868e8a9008SGreg Roach        "php-coveralls/php-coveralls": "~2.2",
878e8a9008SGreg Roach        "phpunit/phpunit": "~7.5|~8.0"
88db7d25eeSGreg Roach    },
89c42d24a9SGreg Roach    "suggest": {
90*6577bfc3SGreg Roach        "ext-imagick": "Required to generate thumbnail images",
91c42d24a9SGreg Roach        "ext-pdo_mysql": "Required to use MySQL for database storage",
92c42d24a9SGreg Roach        "ext-pdo_sqlite": "Required to use SQLite for database storage",
93764facb7SGreg Roach        "ext-pdo_pgsql": "Required to use PostgreSQL for database storage",
94c42d24a9SGreg Roach        "ext-pdo_sqlsvr": "Required to use SQL Server for database storage"
95c42d24a9SGreg Roach    },
96db6a3ae9SGreg Roach    "scripts": {
973d9f187dSGreg Roach        "webtrees:build": [
98f872a3beSGreg Roach            "rm -Rf webtrees/",
99f872a3beSGreg Roach            "git archive --prefix=webtrees/ HEAD --format=tar | tar -x",
100006094b9SGreg Roach            "@composer webtrees:lang",
101006094b9SGreg Roach            "for FILE in resources/lang/*/messages.php; do cp $FILE webtrees/$FILE; done",
102bcfab406SGreg Roach            "zip --quiet --recurse-paths --move -9 webtrees.zip webtrees"
103f872a3beSGreg Roach        ],
104289701c8SGreg Roach        "webtrees:pre-commit-hook": [
105289701c8SGreg Roach            "@composer webtrees:phpcs",
1069b152ff9SGreg Roach            "@composer webtrees:phpstan",
107289701c8SGreg Roach            "@composer webtrees:test"
108289701c8SGreg Roach        ],
1093d9f187dSGreg Roach        "webtrees:check": [
1104686330aSGreg Roach            "### PHP-CODE-SNIFFER",
111289701c8SGreg Roach            "@composer webtrees:phpcs",
1125781ea1fSGreg Roach            "### PHPSTAN",
1139b152ff9SGreg Roach            "@composer webtrees:phpstan",
1145781ea1fSGreg Roach            "### PSALM",
1153df1e584SGreg Roach            "@composer webtrees:psalm"
1165781ea1fSGreg Roach        ],
117289701c8SGreg Roach        "webtrees:phpcs": [
11874d6dc0eSGreg Roach            "@composer global require squizlabs/php_codesniffer=* --quiet",
1199b152ff9SGreg Roach            "~/.composer/vendor/bin/phpcs --standard=PSR12 --colors --extensions=php --exclude=Generic.Files.LineLength index.php app modules_v4 tests",
120bbae5905SGreg Roach            "~/.composer/vendor/bin/phpcs --colors --extensions=css resources/css"
1215781ea1fSGreg Roach        ],
122289701c8SGreg Roach        "webtrees:phpstan": [
123289701c8SGreg Roach            "@composer global require --quiet phpstan/phpstan=*",
124289701c8SGreg Roach            "@composer global require --quiet phpstan/extension-installer=*",
125289701c8SGreg Roach            "@composer global require --quiet phpstan/phpstan-deprecation-rules=*",
126289701c8SGreg Roach            "@composer global require --quiet phpstan/phpstan-strict-rules=*",
127289701c8SGreg Roach            "@composer global require --quiet phpstan/phpstan-phpunit=*",
128dcb3a022SGreg Roach            "@composer install --quiet",
1299b152ff9SGreg Roach            "~/.composer/vendor/bin/phpstan analyze --level=max app modules_v4 index.php",
130dcb3a022SGreg Roach            "@composer install --no-dev --quiet"
1315781ea1fSGreg Roach        ],
132289701c8SGreg Roach        "webtrees:psalm": [
133dcb3a022SGreg Roach            "@composer global require --quiet vimeo/psalm",
1345781ea1fSGreg Roach            "@composer install --quiet",
13561f22e38SGreg Roach            "~/.composer/vendor/bin/psalm",
1365781ea1fSGreg Roach            "@composer install --no-dev --quiet"
137425578caSGreg Roach        ],
138289701c8SGreg Roach        "webtrees:test": [
139289701c8SGreg Roach            "@composer install --quiet",
140289701c8SGreg Roach            "@php vendor/bin/phpunit",
141289701c8SGreg Roach            "@composer install --no-dev --quiet"
142289701c8SGreg Roach        ],
14386b91143SGreg Roach        "webtrees:coverage": [
1445781ea1fSGreg Roach            "@composer install --dev --quiet",
14586b91143SGreg Roach            "vendor/bin/phpunit --coverage-html=tests/coverage",
1465781ea1fSGreg Roach            "@composer install --no-dev --quiet"
14786b91143SGreg Roach        ],
148006094b9SGreg Roach        "webtrees:lang": [
149006094b9SGreg Roach            "Fisharebest\\Webtrees\\Console\\ComposerScripts::languageFiles"
150006094b9SGreg Roach        ],
1513d9f187dSGreg Roach        "webtrees:po": [
152692edf9aSGreg Roach            "sed -i.bak -e 's/\\(I18N::[^)]*[)]\\)/<?php echo \\1; ?>/g' resources/xml/reports/*.xml",
153f7fac239SGreg Roach            "git grep -I --name-only --fixed-strings -e I18N:: -- '*.php' '*.phtml' '*.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",
154692edf9aSGreg Roach            "find resources/xml/reports/ -name '*.xml' -exec mv {}.bak {} \\;",
155362b8464SGreg Roach            "find resources/lang -name '*.po' -exec msgmerge --no-wrap --sort-output --no-fuzzy-matching --quiet --output={} {} resources/lang/webtrees.pot \\;"
15697c22350SGreg Roach        ],
15797c22350SGreg Roach        "webtrees:png": [
15808362db4SGreg Roach            "find resources/css -name *.png -exec pngquant --ext .png --force --skip-if-larger --speed 1 {} \\;",
15908362db4SGreg Roach            "find resources/css -name *.png -exec pngcrush -rem allb -brute -reduce {} {} \\;",
16008362db4SGreg Roach            "find resources/css -name *.png -exec optipng -o7 -zm1-9 {} \\;"
161db6a3ae9SGreg Roach        ]
162db6a3ae9SGreg Roach    },
163cb14bb54SGreg Roach    "scripts-descriptions": {
1643d9f187dSGreg Roach        "webtrees:build": "Create a distribution file (webtrees.zip)",
1653d9f187dSGreg Roach        "webtrees:check": "Run various static analysis tools",
16686b91143SGreg Roach        "webtrees:coverage": "Generate test coverage report",
167006094b9SGreg Roach        "webtrees:lang": "Compile the language files (messages.php)",
16874d6dc0eSGreg Roach        "webtrees:po": "Update the language (webtrees.pot, *.po)"
169ed285daaSGreg Roach    }
170ed285daaSGreg Roach}
171