-
Notifications
You must be signed in to change notification settings - Fork 305
/
Copy pathcomposer.json
160 lines (160 loc) · 6.34 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
{
"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/app/Elements/AbstractElementTestCase.php"
]
},
"config": {
"platform": {
"php": "8.3.0"
},
"sort-packages": true,
"process-timeout": 3600,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"require": {
"php": "8.3 - 8.5",
"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.18.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.42.0",
"illuminate/support": "11.42.0",
"intervention/image": "3.11.1",
"league/commonmark": "2.6.1",
"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.20.0",
"nesbot/carbon": "3.8.5",
"nyholm/psr7": "1.8.2",
"nyholm/psr7-server": "1.1.0",
"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.2.3",
"symfony/console": "7.2.1",
"symfony/expression-language": "7.2.0",
"symfony/mailer": "7.2.3",
"symfony/polyfill-mbstring": "1.31.0",
"tecnickcom/tcpdf": "6.8.2"
},
"require-dev": {
"ext-dom": "*",
"ext-libxml": "*",
"ext-pdo_sqlite": "*",
"ext-sqlite3": "*",
"league/flysystem-memory": "3.29.0",
"php-coveralls/php-coveralls": "2.7.0",
"phpstan/extension-installer": "1.4.3",
"phpstan/phpstan": "2.1.4",
"phpstan/phpstan-deprecation-rules": "2.0.1",
"phpstan/phpstan-phpunit": "2.0.4",
"phpstan/phpstan-strict-rules": "2.0.3",
"phpunit/phpunit": "12.0.2",
"squizlabs/php_codesniffer": "3.11.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:phpcs": [
"vendor/bin/phpcs --colors --extensions=php --standard=PSR12 --exclude=Generic.Files.LineLength index.php app tests",
"#vendor/bin/phpcs --colors --extensions=phtml --standard=PSR12 --exclude=Generic.Files.LineLength resources/views",
"vendor/bin/phpcs --colors --extensions=css resources/css"
],
"webtrees:phpstan": [
"vendor/bin/phpstan analyze -v --memory-limit=-1"
],
"webtrees:phpstan-baseline": [
"vendor/bin/phpstan analyze --memory-limit=-1 --generate-baseline=phpstan-baseline.neon"
],
"webtrees:test": [
"vendor/bin/phpunit"
],
"webtrees:coverage": [
"XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-html=tests/coverage"
],
"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)"
}
}