-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
81 lines (81 loc) · 2.13 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
{
"name": "toobo/bcp47",
"description": "PHP utility functions to validate and normalize IETF BCP 47 language tag.",
"keywords": [
"bcp47",
"bcp 47",
"bcp-47",
"ietf bcp47",
"ietf bcp 47",
"ietf bcp-47",
"ietf",
"ietf tag",
"ietf language",
"ietf language tag",
"locale",
"language",
"lang",
"language tag",
"html lang",
"html lang attribute",
"html language"
],
"homepage": "https://github.com/Toobo/bcp47/",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Giuseppe Mazzapica",
"email": "giuseppe.mazzapica@gmail.com",
"homepage": "https://gmazzap.me",
"role": "Developer"
}
],
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": ">= 8.3 < 8.5",
"wikimedia/bcp-47-code": "^1|^2"
},
"require-dev": {
"phpunit/phpunit": "^10.5.37",
"phpcompatibility/php-compatibility": "dev-develop as 9.3.6",
"inpsyde/php-coding-standards": "^2@dev",
"vimeo/psalm": "^5.26.1"
},
"autoload": {
"psr-4": {
"Toobo\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Toobo\\Tests\\": [
"tests/unit/",
"tests/src/"
]
}
},
"config": {
"optimize-autoloader": true,
"allow-plugins": {
"composer/*": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"branch-alias": {
"dev-main": "1.x-dev"
}
},
"scripts": {
"cs": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs",
"psalm": "@php ./vendor/vimeo/psalm/psalm --no-suggestions --report-show-info=false --find-unused-psalm-suppress --no-diff --no-cache --no-file-cache --output-format=compact",
"tests": "@php ./vendor/phpunit/phpunit/phpunit --no-coverage",
"qa": [
"@cs",
"@psalm",
"@tests"
]
}
}