generated from DJTommek/php-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
70 lines (70 loc) · 1.89 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
{
"name": "djtommek/better-location",
"description": "Telegram bot for parsing and generating various of location formats.",
"require": {
"php": "8.2.*",
"ext-json": "*",
"ext-curl": "*",
"ext-mbstring": "*",
"ext-exif": "*",
"ext-pdo": "*",
"ext-simplexml": "*",
"ext-dom": "*",
"ext-zip": "*",
"tracy/tracy": "^2.9",
"unreal4u/telegram-api": "dev-production",
"bogdaan/open-location-code": "dev-master",
"what3words/w3w-php-wrapper": "^3.3",
"djtommek/mapycz-api": "^2.0",
"djtommek/glympse-api": "^0.4.1",
"nette/http": "^3.1",
"latte/latte": "^2.11",
"maxh/php-nominatim": "^2.3",
"lvht/geohash": "^1.1",
"guzzlehttp/guzzle": "^7.5",
"nette/caching": "^3.2",
"justinrainbow/json-schema": "^5.2",
"djtommek/coordinates": "^2.0",
"jeroendesloovere/vcard": "^1.7",
"league/iso3166": "^4.3",
"psr/log": "^1.1",
"symfony/dependency-injection": "^7.0",
"symfony/config": "^7.0",
"psr/container": "^2.0",
"psr/http-client": "^1.0",
"psr/simple-cache": "^3.0",
"symfony/finder": "^7.1"
},
"require-dev": {
"phpunit/phpunit": "^9",
"phpstan/phpstan": "^1.10",
"rector/rector": "^0.19.1"
},
"autoload": {
"psr-4": {
"App\\": "src/libs/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"pre-install-cmd": "@php ./src/tools/CopyLocalConfig.php",
"pre-update-cmd": "@php ./src/tools/CopyLocalConfig.php",
"phpstan": "phpstan analyse --memory-limit 512m",
"phpstan-baseline": "phpstan analyse --memory-limit 512m --generate-baseline",
"test": "phpunit",
"test-quick": "phpunit --exclude-group request",
"test-request": "phpunit --group request",
"rector": "rector process --config ./src/rector.php",
"rector-dry": "rector process --config ./src/rector.php --dry-run"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/djtommek/telegram-api"
}
]
}