forked from GibbonEdu/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
80 lines (80 loc) · 2.48 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
{
"name": "gibbonedu/core",
"description": "Gibbon is a flexible, open source school management platform designed to make life better for teachers, students, parents and leaders. https://gibbonedu.org",
"type": "project",
"license": "GPL-3.0",
"authors": [
{
"name": "Ross Parker",
"email": "[email protected]"
}
],
"scripts": {
"test": [
"@test:codeception",
"@test:phpunit"
],
"test:codeception": [
"cd tests && codecept run install --env $CI_PLATFORM",
"cd tests && codecept run acceptance --env $CI_PLATFORM"
],
"test:codeceptiondebug": [
"cd tests && codecept run install --debug --env $CI_PLATFORM",
"cd tests && codecept run acceptance --debug --env $CI_PLATFORM"
],
"test:phpunit": [
"cd tests && ../vendor/bin/phpunit --verbose --colors=always --configuration phpunit.xml"
],
"test:codesniffer": [
"vendor/bin/phpcs --standard=PSR2 modules/Library/"
]
},
"scripts-descriptions": {
"test:codeception": "Initialize CI environment and run acceptance tests with Codeception.",
"test:phpunit": "Run unit tests with PHPUnit.",
"test:codesniffer": "Check code complies with PSR-2 standards"
},
"require": {
"php" : "^7.0",
"ext-curl": "*",
"ext-mbstring": "*",
"ext-gettext": "*",
"ext-PDO": "*",
"google/apiclient": "v2.2.0",
"league/container": "^2.4",
"aura/sqlquery": "3.*-dev",
"tecnickcom/tcpdf": "6.0.038",
"twig/twig": "^2.0",
"slim/slim": "^3.0",
"phpmailer/phpmailer": "^5.2.27",
"matthewbdaly/sms-client": "^1.0",
"symfony/yaml": "^3.2",
"monolog/monolog": "^1.24",
"phpoffice/phpspreadsheet": "^1.6",
"phpoffice/phpexcel": "1.8.1",
"fzaninotto/faker": "^1.8",
"mpdf/mpdf": "^8.0"
},
"require-dev": {
"phpunit/phpunit": "6.5.14",
"squizlabs/php_codesniffer": "^3.5",
"codeception/codeception": "^3.0.0"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/yookoala/TCPDF.git"
}
],
"replace": {
"pimple/pimple": "*"
},
"config": {
"platform": {
"php": "7.0"
}
},
"autoload": {
"psr-4": { "Gibbon\\": ["src/", "src/Gibbon"] }
}
}