-
Notifications
You must be signed in to change notification settings - Fork 36
/
composer.json
43 lines (43 loc) · 1.18 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": "rubenarslan/formr",
"description": "make complex (longitudinal, network, diary, ...) studies using spreadsheets and give feedback with R graphs",
"version": "0.22.0",
"keywords": ["form", "survey", "study", "psychology", "R", "feedback"],
"homepage": "https://github.com/rubenarslan/formr.org",
"license": "BSD-2-Clause-FreeBSD",
"authors": [
{
"name": "Ruben C. Arslan",
"email": "[email protected]",
"homepage": "https://github.com/rubenarslan",
"role": "Developer"
},
{
"name": "Cyril Tata",
"email": "[email protected]",
"homepage": "https://github.com/cyriltata",
"role": "Developer"
}
],
"require": {
"php": ">=8.2",
"erusev/parsedown": "1.*",
"erusev/parsedown-extra": "0.*",
"bshaffer/oauth2-server-php": "1.*",
"atrox/haikunator": "1.*",
"paragonie/halite": "^5",
"phpoffice/phpspreadsheet": "1.*",
"phpmailer/phpmailer": "6.*"
},
"require-dev": {
"phpunit/phpunit": "11.*"
},
"autoload-dev": {
"psr-4": {
"Formr\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit --configuration tests/phpunit.xml"
}
}