xref: /webtrees/composer.json (revision db3aeb3eb846bb233f34557aedb1559aadf9275a)
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-session": "*",
35        "ext-simplexml": "*",
36        "ext-xml": "*",
37        "ext-zip": "*",
38        "doctrine/dbal": "~2.9",
39        "filp/whoops": "~2.3",
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.0",
46        "illuminate/container": "^5.8.0",
47        "illuminate/database": "^5.8.0",
48        "illuminate/support": "^5.8.0",
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        "ramsey/uuid": "~3.8",
55        "swiftmailer/swiftmailer": "~6.1",
56        "symfony/expression-language": "~4.2",
57        "symfony/http-foundation": "~4.2",
58        "symfony/http-kernel": "~4.2",
59        "symfony/polyfill-mbstring": "~1.10",
60        "symfony/polyfill-php71": "~1.10",
61        "symfony/polyfill-php72": "~1.10",
62        "tecnickcom/tcpdf": "~6.2",
63        "webuni/commonmark-table-extension": "~0.9"
64    },
65    "require-dev": {
66        "ext-sqlite3": "*",
67        "ext-pdo_sqlite": "*",
68        "league/flysystem-memory": "*",
69        "maximebf/debugbar": "*",
70        "php-coveralls/php-coveralls": "*",
71        "phpunit/phpunit": "*"
72    },
73    "suggest": {
74        "ext-pdo_mysql": "Required to use MySQL for database storage",
75        "ext-pdo_sqlite": "Required to use SQLite for database storage",
76        "ext-pdo_pgsql": "Required to use PostgreSQ: for database storage",
77        "ext-pdo_sqlsvr": "Required to use SQL Server for database storage"
78    },
79    "scripts": {
80       "webtrees:build": [
81           "@composer webtrees:mo",
82           "git checkout language/en-US.mo",
83           "rm -Rf webtrees/",
84           "git archive --prefix=webtrees/ HEAD --format=tar | tar -x",
85           "cp language/*.mo webtrees/language/",
86           "zip --quiet --recurse-paths --move -9 webtrees.zip webtrees"
87       ],
88       "webtrees:check": [
89            "### PHP-CODE-SNIFFER",
90            "phpcs --standard=PSR12 -s --exclude=Generic.Files.LineLength,PSR2.ControlStructures.ControlStructureSpacing app routes",
91            "### PHAN",
92            "PHAN_DISABLE_XDEBUG_WARN=1 phan --target-php-version=7.1 --progress-bar --directory . --exclude-directory-list data,resources,routes,tests,vendor",
93            "### PHPSTAN",
94            "phpstan --level=7 analyze index.php app",
95            "### PSALM",
96            "psalm"
97        ],
98        "webtrees:tools": [
99            "### PHAN",
100            "@composer global require phan/phan=*",
101            "### PSALM",
102            "@composer global require vimeo/psalm=*"
103        ],
104        "webtrees:mo": [
105            "for FILE in language/*.po; do msgfmt --output=$(dirname $FILE)/$(basename $FILE .po).mo $FILE; done",
106            "rm -Rf data/cache/language*"
107        ],
108        "webtrees:po": [
109            "sed -i.bak -e 's/\\(I18N::[^)]*[)]\\)/<?php echo \\1; ?>/g' resources/xml/reports/*.xml",
110            "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",
111            "find resources/xml/reports/ -name '*.xml' -exec mv {}.bak {} \\;",
112            "find language -name '*.po' -exec msgmerge --no-wrap --sort-output --no-fuzzy-matching --quiet --output={} {} language/webtrees.pot \\;"
113        ],
114        "webtrees:png": [
115            "find resources/css -name *.png -exec pngquant --ext .png --force --skip-if-larger --speed 1 {} \\;"
116        ]
117    },
118    "scripts-descriptions": {
119        "webtrees:build": "Create a distribution file (webtrees.zip)",
120        "webtrees:check": "Run various static analysis tools",
121        "webtrees:mo": "Compile the language files (*.mo)",
122        "webtrees:po": "Update the language (webtrees.pot, *.po)",
123        "webtrees:tools": "Install the tools needed to run webtrees-check"
124    },
125    "extra": {
126        "branch-alias": {
127            "dev-master": "2.0-dev"
128        }
129    }
130}
131