-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
44 lines (44 loc) · 1.14 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
{
"name": "inverse/termin",
"description": "Simple PHP tool for finding a termin in Berlin",
"license": "MIT",
"require": {
"php": ">=8.1",
"ext-curl": "*",
"ext-dom": "*",
"bref/bref": "^2.1",
"campo/random-user-agent": "^1.3",
"ivkos/pushbullet": "^3.3",
"monolog/monolog": "^2.1.1",
"pimple/pimple": "^3.2",
"psr/log": "^1.1.4",
"symfony/browser-kit": "^6.3",
"symfony/css-selector": "^6.3",
"symfony/dom-crawler": "^6.3",
"symfony/http-client": "^6.3",
"symfony/yaml": "^6.3",
"telegram-bot/api": "v2.5.0",
"verifiedjoseph/ntfy-php-library": "^4"
},
"autoload": {
"psr-4": {
"Inverse\\Termin\\": "src/"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.49",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^10.4"
},
"autoload-dev": {
"psr-4": {
"Tests\\Inverse\\Termin\\": "tests/"
}
},
"config": {
"sort-packages": true,
"platform": {
"php": "8.1.27"
}
}
}