forked from aces/Loris
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
34 lines (34 loc) · 1.05 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
{
"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.33",
"firebase/php-jwt" : "~3.0",
"google/recaptcha": "~1.1",
"php-http/guzzle6-adapter": ">=2.0.0",
"psr/http-message": "~1.0",
"psr/http-server-handler" : "*",
"psr/http-server-middleware" : "*",
"laminas/laminas-diactoros" : "~1.8.4",
"ext-json": "*",
"bjeavons/zxcvbn-php": "^0.4"
},
"require-dev" : {
"squizlabs/php_codesniffer" : "3.5.3",
"phpunit/phpunit" : "7.0.0",
"facebook/webdriver" : "dev-master",
"phan/phan": ">=2.3.0",
"phpmd/phpmd": "~2.8",
"phpstan/phpstan": "^0.12"
},
"scripts": {
"pre-install-cmd": "mkdir -p project/libraries"
},
"autoload" : {
"psr-4": {
"LORIS\\": "src/"
},
"classmap": ["project/libraries", "php"]
}
}