-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 995 Bytes
/
composer.json
File metadata and controls
36 lines (36 loc) · 995 Bytes
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
{
"name": "salimid/php-telegraph-client",
"description": "The PHP Telegraph Client is a set of simple classes to interact with Telegra.ph.",
"type": "library",
"require": {
"guzzlehttp/guzzle": "^7.5",
"paragraf/php-kit": "^v0.1.0"
},
"require-dev": {
"psy/psysh": "^0.11.10",
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "^1.9",
"squizlabs/php_codesniffer": "^3.7"
},
"license": "MIT",
"autoload": {
"psr-4": {
"SalimId\\Telegraph\\": "src/"
}
},
"authors": [
{
"name": "Salim Romadhon",
"email": "salimromadhon@pm.me"
}
],
"scripts": {
"cs": "./vendor/bin/phpcs",
"stan": "./vendor/bin/phpstan analyse --memory-limit=-1",
"test": "./vendor/bin/phpunit --do-not-cache-result",
"tink": [
"Composer\\Config::disableProcessTimeout",
"./vendor/bin/psysh"
]
}
}