forked from ministryofjustice/opg-lpa-pdf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 loc) · 1.15 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
{
"name": "ministryofjustice/opg-lpa-pdf",
"description": "Worker service for creating Lasting Power of Attorney PDF documents",
"minimum-stability": "stable",
"license": "MIT",
"repositories": [
{
"type": "vcs",
"url": "https://github.com/ministryofjustice/opg-lpa-datamodels"
},
{
"type": "vcs",
"url": "https://github.com/ministryofjustice/opg-lpa-logger"
}
],
"require": {
"php": ">=5.4.0",
"ext-proctitle": "*",
"ext-redis": ">=2.2.4",
"aws/aws-sdk-php": "3.0.*",
"colinmollenhour/credis": ">=1.2",
"chrisboulton/php-resque": "dev-master#c335bc3",
"mikehaertl/php-pdftk": "0.2.1",
"zendframework/zendpdf": "^2.0.2",
"zendframework/zend-crypt": "^2.3.4",
"ministryofjustice/opg-lpa-datamodels": "1.1.6",
"ministryofjustice/opg-lpa-logger": "^1.0.4"
},
"require-dev": {
"phpunit/phpunit": "4.3.*"
},
"autoload": {
"psr-4": {"Opg\\Lpa\\Pdf\\": "src/Opg/Lpa/Pdf/", "OpgTest\\Lpa\\Pdf\\": "tests/Opg/Lpa/Pdf/"}
},
"include-path": ["config/"]
}