-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
57 lines (57 loc) · 1.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
{
"name": "reachweb/locale-lander",
"description": "Locale Lander for Statamic",
"keywords": [
"Statamic",
"Multilingual"
],
"homepage": "https://www.reach.gr",
"license": "mit",
"type": "statamic-addon",
"authors": [
{
"name": "Iosif Chatzimichail",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"email": "[email protected]"
},
"autoload": {
"psr-4": {
"Reach\\LocaleLander\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Reach\\LocaleLander\\Tests\\": "tests"
}
},
"extra": {
"statamic": {
"name": "Locale Lander",
"description": "Land your users at the right site based on their locale!"
},
"laravel": {
"providers": [
"Reach\\LocaleLander\\ServiceProvider"
]
}
},
"require-dev": {
"laravel/pint": "^1.15",
"orchestra/testbench": "^8.19|^9.0",
"phpunit/phpunit": "^10.5|^11.0"
},
"require": {
"php": "^8.1 || ^8.2",
"statamic/cms": "4.51.0|^5.0.0",
"symfony/intl": "^6.4 || ^7.0"
},
"config": {
"allow-plugins": {
"pixelfear/composer-dist-plugin": true
}
}
}