-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathcomposer.json
38 lines (38 loc) · 979 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
31
32
33
34
35
36
37
38
{
"name": "sixty-nine/php-cloud-lib",
"description": "A library to generate words clouds in PHP",
"type": "library",
"keywords": ["cloud"],
"license": "MIT",
"authors": [
{
"name": "Daniele Barsotti",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"SixtyNine\\Cloud\\": "src/SixtyNine/Cloud"
}
},
"require": {
"php": ">=5.3.9",
"doctrine/collections": "^1.4",
"jms/serializer": "^1.2",
"imagine/imagine": "~0.5.0",
"symfony/console": "~4.1",
"symfony/filesystem": "^3.1",
"monolog/monolog": "^1.22",
"webmozart/assert": "^1.2",
"symfony/stopwatch": "^3.1",
"symfony/yaml": "^4.2",
"sixty-nine/php-data-types": "0.1.0"
},
"require-dev": {
"phpunit/phpunit": "~6.0"
},
"config": {
"bin-dir": "bin"
}
}