-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathcomposer.json
60 lines (60 loc) · 2.21 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
{
"name": "laravel-lang/docs",
"description": "Documentation for Laravel Lang projects",
"license": "MIT",
"type": "project",
"authors": [
{
"name": "Laravel-Lang Team",
"homepage": "https://github.com/Laravel-Lang"
},
{
"name": "Andrey Helldar",
"email": "[email protected]",
"homepage": "https://dragon-code.pro"
}
],
"require": {
"php": "^8.1",
"ext-dom": "*",
"ext-simplexml": "*",
"dragon-code/pretty-array": "^4.1",
"dragon-code/support": "^6.13",
"dragon-code/xml-core": "^2.3",
"guzzlehttp/guzzle": "^7.8",
"laravel-lang/common": "^6.5",
"laravel-lang/translator": "^1.0@alpha",
"nesbot/carbon": "^3.8",
"stichoza/google-translate-php": "^5.1.3",
"symfony/var-dumper": "^7.1.1"
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"allow-plugins": {
"dragon-code/codestyler": true,
"ergebnis/composer-normalize": true,
"friendsofphp/php-cs-fixer": true,
"php-http/discovery": true,
"symfony/thanks": true
},
"preferred-install": "dist",
"sort-packages": true
},
"scripts": {
"clone": [
"rm -rf tmp/actions",
"rm -rf tmp/attributes",
"rm -rf tmp/http-statuses",
"rm -rf tmp/lang",
"rm -rf tmp/moonshine",
"rm -rf tmp/starter-kits",
"git clone --no-tags --single-branch https://github.com/Laravel-Lang/actions.git tmp/actions",
"git clone --no-tags --single-branch https://github.com/Laravel-Lang/attributes.git tmp/attributes",
"git clone --no-tags --single-branch https://github.com/Laravel-Lang/http-statuses.git tmp/http-statuses",
"git clone --no-tags --single-branch https://github.com/Laravel-Lang/lang.git tmp/lang",
"git clone --no-tags --single-branch https://github.com/Laravel-Lang/moonshine.git tmp/moonshine",
"git clone --no-tags --single-branch https://github.com/Laravel-Lang/starter-kits.git tmp/starter-kits"
]
}
}