-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
110 lines (110 loc) · 3.84 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
{
"name": "dites.cat/pccd",
"description": "Paremiologia catalana comparada digital",
"license": "AGPL-3.0-or-later",
"type": "project",
"keywords": [
"catalan",
"català",
"common voice",
"diccionari",
"dites populars",
"frases fetes",
"idioms",
"locucions",
"online dictionary",
"paremiologia",
"paremiotipus",
"parèmies",
"proverbs",
"proverbis",
"refranys"
],
"readme": "README.md",
"authors": [
{
"name": "Pere Orga Esteve",
"email": "pere@orga.cat",
"homepage": "https://orga.cat",
"role": "Developer"
}
],
"homepage": "https://pccd.dites.cat",
"require": {
"php": ">=8.2",
"ext-mbstring": "*"
},
"require-dev": {
"ext-curl": "*",
"ext-intl": "*",
"guzzlehttp/guzzle": "^7.9",
"noisebynorthwest/php-spx": "dev-master",
"pereorga/pccd-lt-filter": "dev-master",
"phpstan/phpstan": "^1.12",
"phpstan/phpstan-deprecation-rules": "^1.2",
"phpstan/phpstan-strict-rules": "^1.6",
"rector/rector": "^1.2",
"slevomat/coding-standard": "^8.15",
"squizlabs/php_codesniffer": "^3.10"
},
"suggest": {
"ext-apcu": "Optional: used for caching SQL queries, and for the search stats. Strongly encouraged in the web server",
"ext-curl": "Dev: used for some offline reports generated after install",
"ext-gd": "Required in the web server for generating OG images, and optionally by apc.php in admin pages",
"ext-intl": "Dev: used in a few offline reports",
"ext-pdo-mysql": "Required in the web server for connecting to the database",
"ext-session": "Required in the web server for the admin page",
"ext-zend-opcache": "Optional: encouraged in the web server",
"guzzlehttp/guzzle": "Dev, optional: used by the (currently unused) sentence-tagger-openai script",
"noisebynorthwest/php-spx": "Dev, optional: may be used for profiling",
"pereorga/pccd-lt-filter": "Dev: used by the LanguageTool offline report and the old common-voice-export script"
},
"repositories": [
{
"type": "package",
"package": {
"name": "pereorga/pccd-lt-filter",
"version": "dev-master",
"source": {
"type": "git",
"url": "https://github.com/pereorga/pccd-lt-filter.git",
"reference": "master"
}
}
},
{
"type": "package",
"package": {
"name": "noisebynorthwest/php-spx",
"version": "dev-master",
"source": {
"type": "git",
"url": "https://github.com/NoiseByNorthwest/php-spx.git",
"reference": "master"
}
}
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"sort-packages": true
},
"scripts": {
"composer-normalize": "tools/composer-normalize.phar --no-interaction --ansi",
"composer-normalize-lint": "tools/composer-normalize.phar --dry-run --no-interaction --ansi",
"parallel-lint": "tools/parallel-lint.phar --no-progress --no-colors --exclude vendor --exclude node_modules --exclude tmp .",
"php-cs-fixer": "tools/php-cs-fixer.phar fix --diff --no-interaction --ansi --show-progress=none",
"php-cs-fixer-lint": "tools/php-cs-fixer.phar fix --dry-run --verbose --stop-on-violation --no-interaction --ansi --show-progress=none",
"phpcbf": "vendor/bin/phpcbf --standard=phpcs.xml .",
"phpcs": "vendor/bin/phpcs -s --standard=phpcs.xml .",
"phpstan": "vendor/bin/phpstan analyse --memory-limit=256M --no-progress",
"phpunit": "tools/phpunit.phar --fail-on-warning --display-warnings",
"psalm": "tools/psalm.phar --threads=1 --no-cache --no-progress",
"rector": "vendor/bin/rector process --no-progress-bar --ansi",
"rector-lint": "vendor/bin/rector process --dry-run --no-progress-bar --ansi"
}
}