-
Notifications
You must be signed in to change notification settings - Fork 173
/
composer.json
43 lines (42 loc) · 1.28 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
{
"name": "aces/loris",
"license" : "GPL-3.0+",
"description" : "LORIS (Longitudinal Online Research and Imaging System) is a web-accessible database solution for neuroimaging.",
"require" : {
"smarty/smarty" : "~3.1.36",
"firebase/php-jwt" : "~6.0",
"google/recaptcha": "~1.1",
"php-http/guzzle7-adapter": "^1.0",
"guzzlehttp/psr7": "^1.8.3",
"psr/http-message": "~1.0",
"psr/http-server-handler" : "*",
"psr/http-server-middleware" : "*",
"psr/log": "*",
"laminas/laminas-diactoros" : "^2.5",
"ext-json": "*",
"bjeavons/zxcvbn-php": "^1.0",
"aws/aws-sdk-php": "^3.209"
},
"require-dev" : {
"squizlabs/php_codesniffer" : "^3.5",
"phpunit/phpunit" : "9.4.4",
"phan/phan": "^5.0",
"phpstan/phpstan": "^1.4",
"slevomat/coding-standard": "^6.4",
"php-webdriver/webdriver" : "dev-main"
},
"scripts": {
"pre-install-cmd": "mkdir -p project/libraries"
},
"autoload" : {
"psr-4": {
"LORIS\\": "src/"
},
"classmap": ["project/libraries", "php"]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}