-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
29 lines (29 loc) · 764 Bytes
/
composer.json
File metadata and controls
29 lines (29 loc) · 764 Bytes
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
{
"name": "mangelsnc/cognitive-face-api-php",
"description": "A PHP API for Microsoft Cognitive Face API",
"type": "library",
"require": {
"php": "^7.0",
"guzzlehttp/guzzle": "^6.2",
"guzzlehttp/psr7": "^1.3.1",
"symfony/http-foundation": "^3.2",
"symfony/options-resolver": "^3.2"
},
"require-dev": {
"phpunit/phpunit": "^5.7"
},
"license": "MIT",
"authors": [
{
"name": "Miguel Ángel Sánchez Chordi",
"email": "mangel.snc@gmail.com"
}
],
"autoload": {
"psr-4": {
"CognitiveFaceApi\\": "src\\CognitiveFaceApi",
"CognitiveFaceApi\\Component\\": "src\\CognitiveFaceApi\\Component"
}
},
"minimum-stability": "dev"
}