forked from LimeSurvey/LimeSurvey
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
74 lines (73 loc) · 3.38 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name" : "limesurvey/limesurvey",
"description" : "The most popular FOSS online survey tool on the web",
"homepage" : "https://www.limesurvey.org/",
"license": "GPL-2.0-or-later",
"authors" : [{
"name" : "LimeSurvey Team",
"email" : "[email protected]",
"homepage" : "https://www.limesurvey.org",
"role" : "Developer"
}
],
"support" : {
"wiki" : "https://manual.limesurvey.org/LimeSurvey_Manual",
"source" : "https://github.com/LimeSurvey/LimeSurvey",
"issues" : "https://community.limesurvey.org/bug-tracker/",
"forum" : "https://forums.limesurvey.org"
},
"autoload": {
"psr-4": {
"LimeSurvey\\PluginManager\\": [
"application/libraries/PluginManager/",
"application/libraries/PluginManager/Storage"
],
"LimeSurvey\\Menu\\": "application/libraries/MenuObjects/",
"LimeSurvey\\ExtensionInstaller\\": "application/libraries/ExtensionInstaller/",
"LimeSurvey\\Helpers\\": "application/helpers",
"LimeSurvey\\Models\\Services\\": "application/models/services",
"LimeSurvey\\Datavalueobjects\\": "application/datavalueobjects"
}
},
"require": {
"paragonie/sodium_compat": "^1.14",
"twig/twig": "1.44.2",
"yiiext/twig-renderer":"dev-master"
},
"config": {
"vendor-dir": "third_party",
"bin-dir": "third_party/bin",
"platform": {
"php": "7.2.5"
}
},
"require-dev": {
"php-webdriver/webdriver": "^1.4",
"squizlabs/php_codesniffer": "^3.5",
"phpmd/phpmd" : "^2.8",
"phpunit/phpunit": "^8.0",
"vimeo/psalm": "^4.6",
"misantron/dbunit": "^5.1"
},
"scripts": {
"test": [
"./tests/bin/lint-tests",
"./tests/bin/lint-application",
"./third_party/bin/phpcs --standard=tests/rulesets/phpcs_ruleset.xml application/models/services",
"./third_party/bin/phpcs --standard=tests/rulesets/phpcs_ruleset.xml application/models/TemplateManifest.php",
"./third_party/bin/phpcs --standard=tests/rulesets/phpcs_ruleset.xml application/models/TemplateConfiguration.php",
"./third_party/bin/phpcs --standard=tests/rulesets/phpcs_ruleset.xml application/models/TemplateConfig.php",
"./third_party/bin/phpcs --standard=tests/rulesets/phpcs_ruleset.xml application/models/ArchivedTableSettings.php",
"./third_party/bin/phpcs --standard=tests/rulesets/phpcs_ruleset.xml application/libraries/ExtensionInstaller",
"./third_party/bin/phpcs --standard=tests/rulesets/phpcs_ruleset.xml application/helpers/update/updatedb_helper.php",
"./third_party/bin/phpmd application/models/services/ text tests/rulesets/phpmd_ruleset.xml",
"./third_party/bin/phpmd application/models/TemplateConfig.php text tests/rulesets/phpmd_ruleset.xml",
"./third_party/bin/phpmd application/models/TemplateConfiguration.php text tests/rulesets/phpmd_ruleset.xml",
"./third_party/bin/phpmd application/models/TemplateManifest.php text tests/rulesets/phpmd_ruleset.xml",
"./third_party/bin/phpmd application/libraries/PluginManager text tests/rulesets/phpmd_ruleset.xml",
"./third_party/bin/phpmd application/models/ArchivedTableSettings.php text tests/rulesets/phpmd_ruleset.xml",
"./third_party/bin/phpmd application/libraries/ExtensionInstaller/ text tests/rulesets/phpmd_ruleset.xml",
"./third_party/bin/psalm"
]
}
}