forked from fisharebest/webtrees
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
173 lines (173 loc) · 6.95 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
{
"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": [
"modules_v4/",
"tests/TestCase.php",
"tests/MockGlobalFunctions.php"
]
},
"config": {
"platform": {
"php": "7.1.8"
},
"sort-packages": true,
"process-timeout": 3600
},
"require": {
"ext-curl": "*",
"ext-gd": "*",
"ext-iconv": "*",
"ext-intl": "*",
"ext-json": "*",
"ext-pcre": "*",
"ext-pdo": "*",
"ext-session": "*",
"ext-simplexml": "*",
"ext-xml": "*",
"ext-zip": "*",
"aura/router": "~3.1",
"doctrine/dbal": "~2.9",
"ezyang/htmlpurifier": "~4.12",
"fig/http-message-util": "^1.1",
"fisharebest/algorithm": "~1.5",
"fisharebest/ext-calendar": "~2.5",
"fisharebest/flysystem-chroot-adapter": "~1.0",
"fisharebest/localization": "~1.15",
"guzzlehttp/guzzle": "~6.5",
"illuminate/container": "~5.8",
"illuminate/database": "~5.8",
"illuminate/support": "~5.8",
"intervention/image": "^2.5",
"io-developer/php-whois": "~3.5",
"league/commonmark": "~1.4",
"league/flysystem": "~1.0",
"league/flysystem-cached-adapter": "~1.0",
"league/flysystem-ziparchive": "~1.0",
"middlewares/client-ip": "~1.3",
"mlocati/ip-lib": "~1.9",
"nesbot/carbon": "~2.35",
"nyholm/psr7": "~1.3",
"nyholm/psr7-server": "~1.0",
"oscarotero/middleland": "~1.0",
"psr/cache": "~1.0",
"psr/http-message": "~1.0",
"psr/http-server-handler": "~1.0",
"psr/http-server-middleware": "~1.0",
"ramsey/uuid": "~3.9",
"swiftmailer/swiftmailer": "~6.2",
"symfony/cache": "~4.4",
"symfony/expression-language": "~4.4",
"symfony/polyfill-mbstring": "~1.17",
"symfony/polyfill-php80": "^1.17",
"tecnickcom/tcpdf": "^6.3.5"
},
"require-dev": {
"ext-dom": "*",
"ext-pdo_sqlite": "*",
"ext-sqlite3": "*",
"composer/composer": "~1.10",
"league/flysystem-memory": "~1.0",
"maximebf/debugbar": "~1.16",
"php-coveralls/php-coveralls": "~2.2",
"phpunit/phpunit": "~7.5|~8.0"
},
"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_sqlsvr": "Required to use SQL Server for database storage"
},
"scripts": {
"webtrees:build": [
"rm -Rf webtrees/",
"git archive --prefix=webtrees/ HEAD --format=tar | tar -x",
"@composer webtrees:lang",
"for FILE in resources/lang/*/messages.php; do cp $FILE webtrees/$FILE; done",
"zip --quiet --recurse-paths --move -9 webtrees.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 --standard=PSR12 --colors --extensions=php --exclude=Generic.Files.LineLength index.php app modules_v4/example* tests",
"~/.composer/vendor/bin/phpcs --colors --extensions=css resources/css"
],
"webtrees:phpstan": [
"@composer global require --quiet phpstan/phpstan=*",
"@composer global require --quiet phpstan/extension-installer=*",
"@composer global require --quiet phpstan/phpstan-deprecation-rules=*",
"@composer global require --quiet phpstan/phpstan-strict-rules=*",
"@composer global require --quiet phpstan/phpstan-phpunit=*",
"@composer install --quiet",
"~/.composer/vendor/bin/phpstan analyze --level=max app modules_v4/example* index.php",
"@composer install --no-dev --quiet"
],
"webtrees:psalm": [
"@composer global require --quiet vimeo/psalm",
"@composer install --quiet",
"~/.composer/vendor/bin/psalm",
"@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:lang": [
"Fisharebest\\Webtrees\\Console\\ComposerScripts::languageFiles"
],
"webtrees:missing-tests": [
"Fisharebest\\Webtrees\\Console\\ComposerScripts::missingTests"
],
"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 [email protected] --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 {} \\;"
]
},
"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)"
}
}