-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.24 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
{
"name": "bicycle/tesseract-bridge-bundle",
"description": "Symfony bundle for integration with tesseract bridge ",
"type": "symfony-bundle",
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"keywords": ["tesseract", "bridge", "symfony"],
"authors": [
{
"name": "Vladimir Khramtsov",
"homepage": "https://github.com/vkhramtsov",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/vkhramtsov/tesseract-bridge-bundle/issues"
},
"require": {
"php": ">7.4.0",
"bicycle/tesseract-bridge": "~0.100",
"symfony/config": "^4.4.18 || ^5.2",
"symfony/dependency-injection": "^4.4.18 || ^5.2",
"symfony/http-kernel": "^4.4.18 || ^5.2",
"symfony/yaml": "^4.4.18 || ^5.2"
},
"autoload": {
"psr-4": {
"Bicycle\\TesseractBridgeBundle\\": ""
}
},
"suggest": {
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.17.3",
"phpmd/phpmd": "^2.9.1",
"phpunit/phpunit": "^9.5.0",
"sebastian/phpcpd": "^6.0.3",
"squizlabs/php_codesniffer": "^3.5.8",
"symfony/web-profiler-bundle": "^4.4.18 || ^5.2",
"vimeo/psalm": "^4.4.1"
}
}