-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 775 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 775 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
30
31
32
{
"name": "jadb/alchemyapi"
, "description": "Natural Language Processing using AlchemyAPI"
, "type": "library"
, "keywords": ["alchemy", "nlp", "natural language process", "alchemyapi"]
, "license": "MIT"
, "homepage": "https://github.com/jadb/php-alchemyapi"
, "authors": [
{
"name": "Jad Bitar"
, "homepage": "http://jadb.io"
, "role": "Author"
}
]
, "require": {
"php": ">=5.5"
, "guzzlehttp/guzzle": "4.*"
}
, "require-dev": {
"phpunit/phpunit": "4.0"
}
, "autoload": {
"psr-4": {
"AlchemyAPI\\": "src"
}
}
, "autoload-dev": {
"psr-4": {
"AlchemyAPI\\Test\\": "tests"
}
}
}