forked from defstudio/telegraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
91 lines (91 loc) · 2.91 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "defstudio/telegraph",
"description": "A laravel facade to interact with Telegram Bots",
"keywords": [
"defstudio",
"laravel",
"telegraph"
],
"homepage": "https://github.com/defstudio/telegraph",
"license": "MIT",
"authors": [
{
"name": "Fabio Ivona",
"email": "fabio.ivona@defstudio.it",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"illuminate/support": "^10.0 | ^11.0",
"illuminate/contracts": "^10.0 | ^11.0",
"illuminate/http": "^10.0 | ^11.0",
"spatie/laravel-package-tools": "^1.12.1"
},
"require-dev": {
"ext-sqlite3": "*",
"defstudio/pest-plugin-laravel-expectations": "^v2.1.2",
"friendsofphp/php-cs-fixer": "^v3.13.0",
"guzzlehttp/guzzle": "^7.5.0",
"nunomaduro/collision": "^v7.10.0 | ^v8.1.1",
"larastan/larastan": "^1.0.4 | ^2.4.0",
"orchestra/testbench": "^8.0 | ^9.0",
"pestphp/pest": "^v2.34.2",
"pestphp/pest-plugin-laravel": "^v2.3.0",
"pestphp/pest-plugin-mock": "^v2.0.0",
"phpstan/extension-installer": "^1.2.0",
"phpstan/phpstan-deprecation-rules": "^1.0.0",
"phpstan/phpstan-phpunit": "^1.2.2",
"spatie/laravel-ray": "^1.31.0",
"spatie/pest-plugin-snapshots": "^2.1.0",
"spatie/pest-plugin-test-time": "^2.1.0",
"spatie/x-ray": "dev-main"
},
"autoload": {
"psr-4": {
"DefStudio\\Telegraph\\": "src",
"DefStudio\\Telegraph\\Database\\Factories\\": "database/factories"
}
},
"autoload-dev": {
"psr-4": {
"DefStudio\\Telegraph\\Tests\\": "tests"
}
},
"scripts": {
"x-ray": "vendor/bin/x-ray .",
"lint": "vendor/bin/php-cs-fixer fix -v",
"test:lint": "vendor/bin/php-cs-fixer fix -v --dry-run",
"test:types": "vendor/bin/phpstan analyse --ansi --memory-limit=-1",
"test:unit": "vendor/bin/pest --colors=always --exclude-group=sandbox",
"test:sandbox": "vendor/bin/pest --colors=always --group=sandbox",
"test": [
"@test:lint",
"@test:types",
"@test:unit",
"@test:sandbox",
"@x-ray"
],
"update:snapshots": "vendor/bin/pest --colors=always -d --update-snapshots",
"coverage": "@test:unit --coverage"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
},
"extra": {
"laravel": {
"providers": [
"DefStudio\\Telegraph\\TelegraphServiceProvider"
],
"aliases": {
"Telegraph": "DefStudio\\Telegraph\\Facades\\Telegraph"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}