-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
55 lines (55 loc) · 1.56 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
{
"name": "ryanmitchell/statamic-translation-manager",
"license": "mit",
"type": "statamic-addon",
"require": {
"php": "^8.0",
"ext-pdo_sqlite": "*",
"laravel/framework": "^9.6 || ^10.0 || ^11.0 || ^12.0",
"statamic/cms": "^4.0 || ^5.0",
"brick/varexporter": "^0.5",
"calebporzio/sushi": "^2.4",
"kkomelin/laravel-translatable-string-exporter": "^1.20"
},
"require-dev": {
"mockery/mockery": "^1.3.1",
"nunomaduro/collision": "^7.0",
"phpunit/phpunit": "^10.0",
"orchestra/testbench": "^8.0"
},
"description": "Manager Laravel language files from the Statamic CP",
"authors": [
{
"name": "Ryan Mitchell",
"email": "[email protected]",
"homepage": "https://www.thoughtcollective.com",
"role": "Chief"
}
],
"autoload": {
"psr-4": {
"RyanMitchell\\StatamicTranslationManager\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"RyanMitchell\\StatamicTranslationManager\\Tests\\": "tests"
}
},
"extra": {
"statamic": {
"name": "Translation Manager",
"description": "Manager Laravel language files from the Statamic CP"
},
"laravel": {
"providers": [
"RyanMitchell\\StatamicTranslationManager\\ServiceProvider"
]
}
},
"config": {
"allow-plugins": {
"pixelfear/composer-dist-plugin": true
}
}
}