-
Notifications
You must be signed in to change notification settings - Fork 60
/
composer.json
57 lines (57 loc) · 1.73 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": "nikaia/translation-sheet",
"description": "Laravel Translation via Google Spreadsheet",
"homepage": "https://github.com/nikaia/translation-sheet",
"license": "MIT",
"authors": [
{
"name": "Nassif Bourguig",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"google/apiclient": "^2.1",
"illuminate/console": "^v9.0|^10.0|^11.0",
"illuminate/filesystem": "^v9.0|^10.0|^11.0",
"illuminate/support": "^v9.0|^10.0|^11.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"orchestra/testbench": "^7.0|^8.0|^9.0"
},
"autoload": {
"psr-4": {
"Nikaia\\TranslationSheet\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Nikaia\\TranslationSheet\\Test\\": "tests"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"extra": {
"laravel": {
"providers": [
"Nikaia\\TranslationSheet\\TranslationSheetServiceProvider"
]
},
"branch-alias": {
"^8.0": "1.3-dev"
}
},
"prefer-stable": true,
"scripts": {
"test": "vendor/bin/phpunit",
"release": "npx standard-version release --no-verify",
"release-dry": "npx standard-version release --no-verify --dry-run",
"release-patch": "npx standard-version --release-as patch --no-verify",
"release-minor": "npx standard-version --release-as minor --no-verify",
"release-major": "npx standard-version --release-as major --no-verify",
"release-first": "npx standard-version --first-release --no-verify"
}
}