-
Notifications
You must be signed in to change notification settings - Fork 301
/
composer.json
179 lines (179 loc) · 7.46 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
{
"name": "fisharebest/webtrees",
"description": "webtrees online genealogy",
"keywords": [
"webtrees",
"genealogy"
],
"license": "GPL-3.0-or-later",
"autoload": {
"psr-4": {
"Fisharebest\\Webtrees\\": "app/"
},
"files": [
"app/Helpers/functions.php"
]
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php",
"tests/MockGlobalFunctions.php",
"tests/app/Elements/AbstractElementTestCase.php"
]
},
"config": {
"platform": {
"php": "8.2.0"
},
"sort-packages": true,
"process-timeout": 3600
},
"require": {
"php": "8.2 - 8.4",
"ext-ctype": "*",
"ext-curl": "*",
"ext-gd": "*",
"ext-iconv": "*",
"ext-intl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-pcre": "*",
"ext-pdo": "*",
"ext-session": "*",
"ext-xml": "*",
"aura/router": "3.3.0",
"ezyang/htmlpurifier": "4.17.0",
"fig/http-message-util": "1.1.5",
"fisharebest/algorithm": "1.6.0",
"fisharebest/ext-calendar": "2.6.0",
"fisharebest/localization": "1.17.0",
"guzzlehttp/guzzle": "7.9.2",
"illuminate/database": "11.29.0",
"illuminate/support": "11.29.0",
"intervention/image": "3.9.1",
"io-developer/php-whois": "4.1.10",
"league/commonmark": "2.5.3",
"league/flysystem": "3.29.1",
"league/flysystem-path-prefixing": "3.28.0",
"league/flysystem-ziparchive": "3.29.0",
"middlewares/client-ip": "2.0.1",
"mlocati/ip-lib": "1.18.1",
"nesbot/carbon": "3.8.0",
"nyholm/psr7": "1.8.2",
"nyholm/psr7-server": "1.1.0",
"oscarotero/middleland": "1.0.1",
"psr/cache": "3.0.0",
"psr/http-message": "1.1",
"psr/http-server-handler": "1.0.2",
"psr/http-server-middleware": "1.0.2",
"ramsey/uuid": "4.7.6",
"sabre/vobject": "4.5.6",
"symfony/cache": "7.1.6",
"symfony/console": "7.1.6",
"symfony/expression-language": "7.1.6",
"symfony/mailer": "7.1.6",
"symfony/polyfill-mbstring": "1.31.0",
"tecnickcom/tcpdf": "6.7.7"
},
"require-dev": {
"ext-dom": "*",
"ext-libxml": "*",
"ext-pdo_sqlite": "*",
"ext-sqlite3": "*",
"league/flysystem-memory": "3.29.0",
"php-coveralls/php-coveralls": "2.7.0",
"phpunit/phpunit": "11.4.3"
},
"suggest": {
"ext-imagick": "Required to generate thumbnail images",
"ext-pdo_mysql": "Required to use MySQL for database storage",
"ext-pdo_sqlite": "Required to use SQLite for database storage",
"ext-pdo_pgsql": "Required to use PostgreSQL for database storage",
"ext-pdo_sqlsrv": "Required to use SQL Server for database storage",
"ext-zip": "Required to compress downloads and use the upgrade wizard",
"ext-zlib": "Required to compress HTTP responses"
},
"scripts": {
"webtrees:build": [
"rm -Rf webtrees/",
"git archive --prefix=webtrees/ HEAD --format=tar | tar -x",
"@composer install --no-dev --quiet",
"cp -r vendor/ webtrees/vendor/",
"php index.php compile-po-files",
"for FILE in resources/lang/*/messages.php; do cp $FILE webtrees/$FILE; done",
"zip --quiet --recurse-paths --move -9 webtrees-`git describe`.zip webtrees"
],
"webtrees:pre-commit-hook": [
"@composer webtrees:phpcs",
"@composer webtrees:phpstan",
"@composer webtrees:test"
],
"webtrees:check": [
"### PHP-CODE-SNIFFER",
"@composer webtrees:phpcs",
"### PHPSTAN",
"@composer webtrees:phpstan",
"### PSALM",
"@composer webtrees:psalm"
],
"webtrees:phpcs": [
"@composer global require squizlabs/php_codesniffer=* --quiet",
"~/.composer/vendor/bin/phpcs --colors --extensions=php --standard=PSR12 --exclude=Generic.Files.LineLength index.php app tests",
"#~/.composer/vendor/bin/phpcs --colors --extensions=phtml --standard=PSR12 --exclude=Generic.Files.LineLength resources/views",
"~/.composer/vendor/bin/phpcs --colors --extensions=css resources/css"
],
"webtrees:phpstan": [
"@composer global require --quiet phpstan/phpstan=* phpstan/extension-installer=* phpstan/phpstan-deprecation-rules=* phpstan/phpstan-strict-rules=* phpstan/phpstan-phpunit=*",
"@composer install --quiet",
"~/.composer/vendor/bin/phpstan analyze -v --memory-limit=-1",
"@composer install --no-dev --quiet"
],
"webtrees:phpstan-baseline": [
"@composer global require --quiet phpstan/phpstan=* phpstan/extension-installer=* phpstan/phpstan-deprecation-rules=* phpstan/phpstan-strict-rules=* phpstan/phpstan-phpunit=*",
"@composer install --quiet",
"~/.composer/vendor/bin/phpstan analyze --memory-limit=-1 --generate-baseline=phpstan-baseline.neon",
"@composer install --no-dev --quiet"
],
"webtrees:psalm": [
"@composer global require --quiet vimeo/psalm",
"@composer install --quiet",
"~/.composer/vendor/bin/psalm --threads=8 --php-version=8.1",
"@composer install --no-dev --quiet"
],
"webtrees:test": [
"@composer install --quiet",
"@php vendor/bin/phpunit",
"@composer install --no-dev --quiet"
],
"webtrees:coverage": [
"@composer install --dev --quiet",
"vendor/bin/phpunit --coverage-html=tests/coverage",
"@composer install --no-dev --quiet"
],
"webtrees:po": [
"sed -i.bak -e 's/\\(I18N::[^)]*[)]\\)/<?php echo \\1; ?>/g' resources/xml/reports/*.xml",
"git grep -I --name-only --fixed-strings -e I18N:: -- '*.php' '*.phtml' '*.xml' | xargs xgettext --package-name=webtrees --package-version=1.0 --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",
"find resources/xml/reports/ -name '*.xml' -exec mv {}.bak {} \\;",
"find resources/lang -name '*.po' -exec msgmerge --no-wrap --sort-output --no-fuzzy-matching --quiet --output={} {} resources/lang/webtrees.pot \\;"
],
"webtrees:png": [
"find resources/css -name *.png -exec pngquant --ext .png --force --skip-if-larger --speed 1 {} \\;",
"find resources/css -name *.png -exec pngcrush -rem allb -brute -reduce {} {} \\;",
"find resources/css -name *.png -exec optipng -o7 -zm1-9 {} \\;"
],
"ci" : [
"@composer validate",
"@composer install --quiet",
"@composer webtrees:test",
"@composer webtrees:phpcs",
"@composer webtrees:phpstan"
]
},
"scripts-descriptions": {
"webtrees:build": "Create a distribution file (webtrees.zip)",
"webtrees:check": "Run various static analysis tools",
"webtrees:coverage": "Generate test coverage report",
"webtrees:lang": "Compile the language files (messages.php)",
"webtrees:po": "Update the language (webtrees.pot, *.po)"
}
}