forked from nutgram/laravel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
77 lines (77 loc) · 1.59 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
77
{
"name": "nutgram/laravel",
"description": "Laravel package for Nutgram",
"keywords": [
"laravel",
"telegram",
"nutgram",
"bot",
"api",
"library",
"framework"
],
"homepage": "https://github.com/nutgram/nutgram-laravel",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Luca Patera",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Sergio Brighenti",
"email": "[email protected]",
"role": "Developer"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.2",
"nunomaduro/termwind": "^1.15",
"nutgram/nutgram": "^4.11.0"
},
"require-dev": {
"illuminate/testing": "^9.0|^10.0",
"orchestra/testbench": "^7.0|^8.0",
"pestphp/pest": "^1.1",
"pestphp/pest-plugin-mock": "^1.0",
"roave/security-advisories": "dev-latest",
"vimeo/psalm": "^4.30"
},
"autoload": {
"psr-4": {
"Nutgram\\Laravel\\": "src/"
},
"files": [
"src/Support/Helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Nutgram\\Laravel\\Tests\\": "tests/"
},
"files": [
"src/Support/Helpers.php"
]
},
"extra": {
"laravel": {
"providers": [
"Nutgram\\Laravel\\NutgramServiceProvider"
]
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"scripts": {
"test": "@php vendor/bin/pest",
"test-coverage": "@php vendor/bin/pest --coverage --coverage-clover=coverage.xml",
"psalm": "@php vendor/bin/psalm"
}
}