forked from LimeSurvey/LimeSurvey
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
99 lines (99 loc) · 4.83 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"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\\Libraries\\": "application/libraries/",
"LimeSurvey\\ExtensionInstaller\\": "application/libraries/ExtensionInstaller/",
"LimeSurvey\\Helpers\\": "application/helpers",
"LimeSurvey\\Helpers\\Update\\": [
"application/helpers/update",
"application/helpers/update/updates"
],
"LimeSurvey\\Models\\Services\\": "application/models/services",
"LimeSurvey\\Datavalueobjects\\": "application/datavalueobjects",
"LimeSurvey\\Exceptions\\": "application/exceptions"
}
},
"require": {
"paragonie/sodium_compat": "^1.14",
"twig/twig": "^3.0",
"phpseclib/bcmath_compat": "^2.0",
"phpseclib/phpseclib": "^3.0",
"tiamo/spss": "^2.2",
"symfony/polyfill-mbstring": "^1.26",
"yiisoft/yii": "^1.1.26",
"phpmailer/phpmailer": "^6.6",
"khaled.alshamaa/ar-php": "^6.3",
"tecnickcom/tcpdf": "^6.5",
"mk-j/php_xlsxwriter": "^0.38.0",
"html2text/html2text": "^4.3",
"pear/ole": "1.*@dev",
"pear/spreadsheet_excel_writer": "^0.9.7",
"vintagesucks/twig-renderer": "^3.0"
},
"config": {
"vendor-dir": "vendor",
"bin-dir": "vendor/bin",
"platform": {
"php": "7.4.0"
}
},
"require-dev": {
"php-webdriver/webdriver": "^1.4",
"squizlabs/php_codesniffer": "^3.5",
"phpmd/phpmd" : "^2.8",
"phpunit/phpunit": "^8.0",
"vimeo/psalm": "^4.29",
"misantron/dbunit": "^5.1",
"tebazil/yii1-db-seeder": "^0.0.0"
},
"scripts": {
"test": [
"./tests/bin/lint-tests",
"./tests/bin/lint-application",
"./vendor/bin/phpcs --standard=tests/rulesets/phpcs_ruleset.xml application/models",
"./vendor/bin/phpcs --standard=tests/rulesets/phpcs_ruleset.xml application/controllers",
"./vendor/bin/phpcs --standard=tests/rulesets/phpcs_ruleset.xml application/libraries/ExtensionInstaller",
"./vendor/bin/phpcs --standard=tests/rulesets/phpcs_ruleset.xml application/libraries/FormExtension",
"./vendor/bin/phpcs --standard=tests/rulesets/phpcs_ruleset.xml application/helpers/update/updatedb_helper.php",
"./vendor/bin/phpcs --standard=tests/rulesets/phpcs_ruleset.xml application/helpers/update/updates",
"./vendor/bin/phpcs --standard=tests/rulesets/phpcs_ruleset.xml application/core/plugins/ExpressionAnswerOptions/ExpressionAnswerOptions.php",
"./vendor/bin/phpcs --standard=tests/rulesets/phpcs_ruleset.xml application/core/plugins/ExpressionAnswerOptions/AnswerOptionsFunctions.php",
"./vendor/bin/phpmd application/models/services/ text tests/rulesets/phpmd_ruleset_strict.xml",
"./vendor/bin/phpmd application/helpers/update/updates/ text tests/rulesets/phpmd_ruleset_strict.xml",
"./vendor/bin/phpmd application/models/TemplateConfig.php text tests/rulesets/phpmd_ruleset.xml",
"./vendor/bin/phpmd application/models/TemplateConfiguration.php text tests/rulesets/phpmd_ruleset.xml",
"./vendor/bin/phpmd application/models/TemplateManifest.php text tests/rulesets/phpmd_ruleset.xml",
"./vendor/bin/phpmd application/models/ArchivedTableSettings.php text tests/rulesets/phpmd_ruleset.xml",
"./vendor/bin/phpmd application/libraries/PluginManager text tests/rulesets/phpmd_ruleset.xml",
"./vendor/bin/phpmd application/libraries/FormExtension text tests/rulesets/phpmd_ruleset.xml",
"./vendor/bin/phpmd application/controllers/SurveyAdministrationController.php text tests/rulesets/phpmd_ruleset.xml",
"./vendor/bin/phpmd application/libraries/ExtensionInstaller/ text tests/rulesets/phpmd_ruleset.xml",
"./vendor/bin/phpmd application/core/plugins/ExpressionAnswerOptions/ExpressionAnswerOptions.php text tests/rulesets/phpmd_ruleset_strict.xml",
"./vendor/bin/phpmd application/core/plugins/ExpressionAnswerOptions/AnswerOptionsFunctions.php text tests/rulesets/phpmd_ruleset_strict.xml",
"./vendor/bin/psalm",
"./vendor/bin/psalm -c psalm-strict.xml"
]
}
}