-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
76 lines (76 loc) · 1.92 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "dragon-code/github-notifications",
"description": "Reduce your notification burden on GitHub!",
"license": "MIT",
"type": "project",
"keywords": [
"github",
"github-notifications",
"cleaner",
"clean",
"dragon-code",
"cli",
"console",
"notifications",
"notify",
"GitHubNotifications",
"GitHub Notifications",
"GitHub-Notifications",
"Andrey Helldar",
"Helldar"
],
"authors": [
{
"name": "Andrey Helldar",
"email": "[email protected]",
"homepage": "https://dragon-code.pro"
}
],
"support": {
"issues": "https://github.com/TheDragonCode/github-notifications/issues",
"source": "https://github.com/TheDragonCode/github-notifications"
},
"require": {
"php": "^8.2"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.8.1",
"knplabs/github-api": "^3.14.1",
"laravel-zero/framework": "^11.0.1",
"mockery/mockery": "^1.6.12",
"nunomaduro/termwind": "^2.0.1",
"pestphp/pest": "^2.34.7"
},
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"psr-4": {
"DragonCode\\GithubNotifications\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"bin": [
"builds/notifications"
],
"config": {
"allow-plugins": {
"dragon-code/codestyler": true,
"ergebnis/composer-normalize": true,
"pestphp/pest-plugin": true,
"php-http/discovery": true,
"symfony/thanks": true
},
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"scripts": {
"test": [
"@php vendor/bin/pest --compact"
]
}
}