forked from aces/Loris
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (35 loc) · 1.1 KB
/
composer.json
File metadata and controls
36 lines (35 loc) · 1.1 KB
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": "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",
"phan/phan": "3.0.0",
"phpmd/phpmd": "~2.8",
"phpstan/phpstan": "0.12.17",
"slevomat/coding-standard": "^6.0",
"php-webdriver/webdriver" : "dev-main"
},
"scripts": {
"pre-install-cmd": "mkdir -p project/libraries"
},
"autoload" : {
"psr-4": {
"LORIS\\": "src/"
},
"classmap": ["project/libraries", "php"]
}
}