-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 1.35 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
{
"name": "wickedone/phrase-translation-provider",
"description": "symfony phrase translation provider bridge",
"type": "symfony-translation-bridge",
"license": "MIT",
"autoload": {
"psr-4": {
"Symfony\\Component\\Translation\\Bridge\\Phrase\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Symfony\\Component\\Translation\\Bridge\\Phrase\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "wicliff wolda",
"homepage": "https://github.com/wickedOne"
}
],
"minimum-stability": "stable",
"require": {
"php": "~8.2.0 || ~8.3.0 || ~8.4.0",
"psr/cache": "^3.0",
"psr/event-dispatcher": "^1.0",
"symfony/event-dispatcher-contracts": "^3.5.1",
"symfony/http-client": "^5.4 || ^6.4",
"symfony/mime": "^5.4 || ^6.4",
"symfony/translation": "^5.4 || ^6.4"
},
"require-dev": {
"infection/infection": "^0.29",
"phpstan/phpstan": "^2.1.6",
"phpstan/phpstan-deprecation-rules": "^2.0.1",
"phpstan/phpstan-phpunit": "^2.0.4",
"phpunit/phpunit": "^11.5.9",
"roave/security-advisories": "dev-latest"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": true
}
}
}