-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
62 lines (62 loc) · 1.62 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
61
62
{
"name": "gumbo-millennium/google-email-sync",
"description": "Synchronize email collections with the Google Directory API.",
"license": "LGPL-3.0-or-later",
"type": "package",
"require": {
"php": "^8.1",
"illuminate/support": "^8.12 || ^9.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.8",
"orchestra/canvas": "^7.1",
"orchestra/testbench": "^6.0 || ^7.0",
"php-parallel-lint/php-console-highlighter": "^1.0",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"Gumbo\\EmailSync\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Gumbo\\EmailSync\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Gumbo\\EmailSync\\Providers\\ServiceProvider"
],
"aliases": {
"EmailSync": "Gumbo\\Email\\Facades\\EmailSync"
}
}
},
"scripts": {
"post-autoload-dump": [
"testbench package:discover --ansi"
],
"cs": [
"php-cs-fixer fix --config=.php-cs-fixer.dist.php"
],
"lint": [
"parallel-lint src/ tests/ config/ database/",
"remark ."
],
"test": [
"phpunit"
]
},
"config": {
"sort-packages": true,
"optimize-autoloader": true
},
"scripts-descriptions": {
"cs": "Format code using php-cs-fixer",
"lint": "Run linters",
"test": "Run tests"
}
}