xref: /webtrees/composer.json (revision 93686a3680542467796587dba6085e5d389e418f)
1ed285daaSGreg Roach{
2a25f0a04SGreg Roach    "name": "fisharebest/webtrees",
3ed285daaSGreg Roach    "description": "webtrees online genealogy",
4ed285daaSGreg Roach    "keywords": ["webtrees", "genealogy"],
531b7ad55SGreg Roach    "license": "GPL-3.0-or-later",
6a25f0a04SGreg Roach    "autoload": {
70e62c4b8SGreg Roach        "psr-4": {
80e62c4b8SGreg Roach            "Fisharebest\\Webtrees\\": "app/"
91f3fb95cSGreg Roach        },
101f3fb95cSGreg Roach        "files": [
111f3fb95cSGreg Roach            "app/Helpers/functions.php"
121f3fb95cSGreg Roach        ]
13a25f0a04SGreg Roach    },
1484e2cf4eSGreg Roach    "autoload-dev": {
1584e2cf4eSGreg Roach        "classmap": [
1684e2cf4eSGreg Roach            "tests/TestCase.php"
1784e2cf4eSGreg Roach        ]
1884e2cf4eSGreg Roach    },
197286a40cSGreg Roach    "config": {
207286a40cSGreg Roach        "platform": {
21ffe6005cSGreg Roach            "php" : "7.0.8"
2222acdb08SGreg Roach        },
23425578caSGreg Roach        "sort-packages": true,
24425578caSGreg Roach        "process-timeout": 3600
257286a40cSGreg Roach    },
26ed285daaSGreg Roach    "require": {
277286a40cSGreg Roach        "ext-gd": "*",
287286a40cSGreg Roach        "ext-iconv": "*",
298ae9e54eSRico Sonntag        "ext-json": "*",
307286a40cSGreg Roach        "ext-pcre": "*",
317286a40cSGreg Roach        "ext-pdo": "*",
327286a40cSGreg Roach        "ext-pdo_mysql": "*",
337286a40cSGreg Roach        "ext-session": "*",
347286a40cSGreg Roach        "ext-simplexml": "*",
357286a40cSGreg Roach        "ext-xml": "*",
3604a1fb9aSGreg Roach        "filp/whoops": "~2.1",
37d592f2ecSGreg Roach        "fisharebest/algorithm": "~1.3",
38*93686a36SGreg Roach        "fisharebest/ext-calendar": "~2.5",
39d592f2ecSGreg Roach        "fisharebest/localization": "~1.10",
40cc26b3c3SGreg Roach        "guzzlehttp/guzzle": "~6.0",
41e195df77SGreg Roach        "league/commonmark": "~0.17",
42d592f2ecSGreg Roach        "league/flysystem": "~1.0",
43d592f2ecSGreg Roach        "league/flysystem-ziparchive": "~1.0",
443bd6b23eSGreg Roach        "league/glide": "~1.2",
45da3508d3SGreg Roach        "ramsey/uuid": "~3.6",
4623054811SGreg Roach        "swiftmailer/swiftmailer": "~5.0",
475809450fSGreg Roach        "symfony/expression-language": "~3.3",
489499ed38SGreg Roach        "symfony/http-foundation": "~3.3",
499499ed38SGreg Roach        "symfony/http-kernel": "~3.3",
503bd6b23eSGreg Roach        "symfony/polyfill-mbstring": "~1.4",
513bd6b23eSGreg Roach        "symfony/polyfill-php71": "~1.4",
523bd6b23eSGreg Roach        "symfony/polyfill-php72": "~1.4",
5322acdb08SGreg Roach        "tecnickcom/tcpdf": "~6.2",
54e195df77SGreg Roach        "webuni/commonmark-table-extension": "~0.7"
5510a8d14fSGreg Roach    },
56db7d25eeSGreg Roach    "require-dev": {
57bd52fa32SGreg Roach        "maximebf/debugbar": "*",
58db7d25eeSGreg Roach        "mockery/mockery": "*",
5995d954e1SGreg Roach        "phpunit/phpunit": "*",
6095d954e1SGreg Roach        "php-coveralls/php-coveralls": "*"
61db7d25eeSGreg Roach    },
62db6a3ae9SGreg Roach    "scripts": {
63425578caSGreg Roach       "webtrees-build": [
64f872a3beSGreg Roach           "@composer webtrees-mo",
65bcfab406SGreg Roach           "git checkout language/en-US.mo",
66f872a3beSGreg Roach           "rm -Rf webtrees/",
67f872a3beSGreg Roach           "git archive --prefix=webtrees/ HEAD --format=tar | tar -x",
68bcfab406SGreg Roach           "cp language/*.mo webtrees/language/",
69bcfab406SGreg Roach           "zip --quiet --recurse-paths --move -9 webtrees.zip webtrees"
70f872a3beSGreg Roach       ],
71425578caSGreg Roach       "webtrees-check": [
72425578caSGreg Roach            "### PHP-CODE-ANALYZER",
73425578caSGreg Roach            "phpca --since-version=7.0 app/",
74425578caSGreg Roach            "### PHP-CODE-FIXER",
75425578caSGreg Roach            "phpcf app/",
76c58d56c4SGreg Roach            "### PAHOUT",
77c58d56c4SGreg Roach            "pahout --php-version 7.0.8 --ignore-paths=data .",
78771ae10aSGreg Roach            "### PHP-PARALLEL-LINT",
79771ae10aSGreg Roach            "parallel-lint --no-progress --exclude vendor .",
804686330aSGreg Roach            "### PHP-CODE-SNIFFER",
8159f2f229SGreg Roach            "phpcs --standard=PSR12 -s --exclude=Generic.Files.LineLength,PSR2.ControlStructures.ControlStructureSpacing,PSR2.ControlStructures.SwitchDeclaration app routes",
82425578caSGreg Roach            "### PHAN",
8359f2f229SGreg Roach            "phan --directory . --exclude-directory-list data,resources,routes,tests,vendor",
84771ae10aSGreg Roach            "### PHPSTAN",
85771ae10aSGreg Roach            "phpstan --level=7 analyze app",
86425578caSGreg Roach            "### PSALM",
87425578caSGreg Roach            "psalm --threads=8"
88425578caSGreg Roach        ],
89425578caSGreg Roach        "webtrees-tools": [
90c58d56c4SGreg Roach            "### PAHOUT",
91c58d56c4SGreg Roach            "@composer global require wata727/pahout=*",
92425578caSGreg Roach            "### PHAN",
93425578caSGreg Roach            "@composer global require phan/phan=*",
94425578caSGreg Roach            "### PHP-CODE-ANALYZER",
95425578caSGreg Roach            "@composer global require wapmorgan/php-code-analyzer=*",
96425578caSGreg Roach            "### PHP-CODE-FIXER",
97425578caSGreg Roach            "@composer global require wapmorgan/php-code-fixer=*",
98425578caSGreg Roach            "### PHP-PARALLEL-LINT",
99425578caSGreg Roach            "@composer global require jakub-onderka/php-parallel-lint=*",
100425578caSGreg Roach            "### PSALM",
101425578caSGreg Roach            "@composer global require vimeo/psalm=*"
102425578caSGreg Roach        ],
103db6a3ae9SGreg Roach        "webtrees-mo": [
104869661cfSGreg Roach            "for FILE in language/*.po; do msgfmt --output=$(dirname $FILE)/$(basename $FILE .po).mo $FILE; done",
105db6a3ae9SGreg Roach            "rm -Rf data/cache/language*"
106cb14bb54SGreg Roach        ],
107cb14bb54SGreg Roach        "webtrees-po": [
108cb14bb54SGreg Roach            "sed -i.bak -e 's/\\(I18N::[^)]*[)]\\)/<?php echo \\1; ?>/g' modules*/*/*.xml",
109cb14bb54SGreg Roach            "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",
110cb14bb54SGreg Roach            "find modules*/ -name '*.xml' -exec mv {}.bak {} \\;",
111cb14bb54SGreg Roach            "find language -name '*.po' -exec msgmerge --no-wrap --sort-output --no-fuzzy-matching --quiet --output={} {} language/webtrees.pot \\;"
112db6a3ae9SGreg Roach        ]
113db6a3ae9SGreg Roach    },
114cb14bb54SGreg Roach    "scripts-descriptions": {
115cb14bb54SGreg Roach        "webtrees-build": "Create a distribution file (webtrees.zip)",
116cb14bb54SGreg Roach        "webtrees-check": "Run various static analysis tools",
117cb14bb54SGreg Roach        "webtrees-mo": "Compile the language files (*.mo)",
118cb14bb54SGreg Roach        "webtrees-po": "Update the language (webtrees.pot, *.po)",
119cb14bb54SGreg Roach        "webtrees-tools": "Install the tools needed to run webtrees-check"
120cb14bb54SGreg Roach    },
12110a8d14fSGreg Roach    "extra": {
12210a8d14fSGreg Roach        "branch-alias": {
123db6a3ae9SGreg Roach            "dev-master": "2.0-dev"
12410a8d14fSGreg Roach        }
125ed285daaSGreg Roach    }
126ed285daaSGreg Roach}
127