This repository has been archived by the owner on Mar 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
60 lines (60 loc) · 1.97 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "phphants/phph-site",
"description": "PHP Hampshire website",
"type": "project",
"homepage": "https://phphants.co.uk",
"license": "MIT",
"require": {
"php": "^7.2",
"ext-intl": "*",
"ext-json": "*",
"ext-pdo_pgsql": "*",
"roave/security-advisories": "dev-master",
"zendframework/zend-expressive": "^1.1",
"zendframework/zend-expressive-helpers": "^3.0",
"zendframework/zend-expressive-router": "^2.0",
"zendframework/zend-stdlib": "^3.0",
"zendframework/zend-i18n": "^2.7.3",
"zendframework/zend-expressive-fastroute": "^2.0",
"zendframework/zend-servicemanager": "^3.1",
"zendframework/zend-expressive-zendviewrenderer": "^1.1",
"sabre/vobject": "^4.1",
"dasprid/container-interop-doctrine": "^0.2.2",
"doctrine/migrations": "^1.4",
"doctrine/common": "2.7.1 as 2.6.99",
"ramsey/uuid": "^3.5",
"zendframework/zend-authentication": "^2.5",
"zendframework/zend-session": "^2.7",
"zendframework/zend-form": "^2.9",
"zendframework/zend-math": "^3.0",
"beberlei/assert": "^2.6",
"zendframework/zend-uri": "^2.5",
"zendframework/zend-diactoros": "^1.3",
"php-http/httplug": "^1.1",
"php-http/guzzle6-adapter": "^1.1",
"league/oauth1-client": "^1.7",
"league/oauth2-github": "^0.2.2",
"http-interop/http-middleware": "^0.2.0",
"league/flysystem-aws-s3-v3": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^5.5",
"squizlabs/php_codesniffer": "^2.6"
},
"autoload": {
"psr-4": {
"App\\": "src/App/"
}
},
"autoload-dev": {
"psr-4": {
"AppTest\\": "test/AppTest/"
}
},
"scripts": {
"migrate": "doctrine-migrations migrate",
"phpcs": "phpcs",
"server": "php -S localhost:8080 -t public",
"test": "phpunit"
}
}