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