-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
60 lines (60 loc) · 1.5 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
{
"name": "aurimasniekis/tdlib-schema",
"type": "library",
"description": "A TdLib PHP Schema with generator for generating PHP objects from td_api.tl file",
"keywords": [
"tdlib-schema",
"tdlib",
"td",
"td-api",
"thruster"
],
"homepage": "https://github.com/aurimasniekis/php-tdlib-schema",
"license": "MIT",
"authors": [
{
"name": "Aurimas Niekis",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/aurimasniekis/php-tdlib-schema",
"source": "https://github.com/aurimasniekis/php-tdlib-schema"
},
"require": {
"php": "^7.4||^8.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2",
"monolog/monolog": "^2.0",
"nette/php-generator": "^3.3",
"symfony/console": "^5.0",
"symfony/monolog-bridge": "^5.0"
},
"autoload": {
"psr-4": {
"AurimasNiekis\\TdLibSchema\\": "src"
},
"classmap": [
"src/"
]
},
"autoload-dev": {
"psr-4": {
"AurimasNiekis\\TdLibSchema\\Generator\\": "generator"
}
},
"scripts": {
"cs-check": "php-cs-fixer fix --dry-run --diff --diff-format udiff",
"cs-fix": "php-cs-fixer fix",
"ci-run": ["@cs-check"]
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"config": {
"sort-packages": true
}
}