-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
30 lines (30 loc) · 896 Bytes
/
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
{
"name": "bubnov/tenserflow-bundle",
"type": "symfony-bundle",
"description": "Integrates tenserflow recognizer into your Symfony2/Symfony3 application",
"keywords": ["bundle", "tenserflow", "recognizer", "image"],
"homepage": "https://github.com/bubnov-mikhail/tenserflow-bundle",
"license": "MIT",
"support": {
"issues": "https://github.com/bubnov-mikhail/tenserflow-bundle/issues"
},
"scripts": {
"post-install-cmd": [ "TensorFlowBinaryInstaller::install" ],
"post-update-cmd": [ "TensorFlowBinaryInstaller::update" ]
},
"require": {
"php": ">=5.5",
"symfony/symfony": ">=2.3"
},
"autoload": {
"psr-4": {
"Bubnov\\TensorFlowBundle\\": ""
},
"psr-0": { "": "" }
},
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
}
}
}