-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
51 lines (51 loc) · 1.37 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
{
"name": "larowlan/tl",
"description": "Time logger for redmine",
"require": {
"symfony/console": "^6.2",
"doctrine/dbal": "^2.5",
"symfony/yaml": "^6.2",
"symfony/dependency-injection": "^6.2",
"symfony/config": "^6.2",
"guzzlehttp/guzzle": "^6.1",
"doctrine/cache": "^1.4",
"herrera-io/phar-update": "^2.0",
"stecman/symfony-console-completion": "^0.12.0",
"monolog/monolog": "^2.0",
"php": "^8.1",
"ext-sqlite3": "*",
"ext-pdo_sqlite": "*",
"morningtrain/toggl-api": "^1.0",
"lesstif/php-jira-rest-client": "^5.5",
"symfony/serializer": "^7.1",
"symfony/property-access": "^7.1"
},
"require-dev": {
"phpunit/phpunit": "~9",
"drupal/coder": "~8",
"bamarni/composer-bin-plugin": "^1.8"
},
"license": "GPL2",
"autoload": {
"psr-4": {
"Larowlan\\Tl\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Larowlan\\Tl\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Lee Rowlands",
"email": "[email protected]"
}
],
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"bamarni/composer-bin-plugin": true
}
}
}