forked from ucfopen/UDOIT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·155 lines (153 loc) · 5.89 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
{
"name": "ucfopen/udoit",
"type": "project",
"description" : "The Universal Design Online content Inspection Tool, or UDOIT enables faculty to identify accessibility issues in Canvas by Instructure. It will scan a course, generate a report, and provide resources on how to address common accessibility issues.",
"keywords": ["instructure", "canvas", "education", "udoit", "ucf", "accessibility", "edtech", "canvas-lms", "instructure", "section-508"],
"homepage": "https://github.com/ucfopen/UDOIT",
"version": "2.3.4",
"license": "GPL-3.0",
"scripts":{
"test": "vendor/phpunit/phpunit/phpunit --exclude-group functional --coverage-html ./reports --coverage-text",
"test-no-coverage": "vendor/phpunit/phpunit/phpunit --exclude-group functional",
"test-include-functional": "vendor/phpunit/phpunit/phpunit",
"lint": "./vendor/bin/parallel-lint --exclude vendor --exclude lib/quail .",
"sniff": "./vendor/bin/phpcs --extensions=php .",
"sniff-errors-only": "./vendor/bin/phpcs -n --extensions=php .",
"sniff-summary": "./vendor/bin/phpcs --report=summary --extensions=php .",
"db-setup" : "@migrate",
"migrate" : "php bin/run_database_migrations.php",
"start": "php -S localhost:8000 -t public/",
"docker-test": "docker-compose --file docker/docker-compose.yml run --rm php71 php composer.phar test",
"docker-test-multi": [
"@docker-test-no-coverage-php56",
"@docker-test-no-coverage-php70",
"@docker-test-no-coverage-php71"
],
"docker-test-no-coverage-php56": "docker-compose --file docker/docker-compose.yml run --rm php56 php composer.phar test-no-coverage",
"docker-test-no-coverage-php70": "docker-compose --file docker/docker-compose.yml run --rm php70 php composer.phar test-no-coverage",
"docker-test-no-coverage-php71": "docker-compose --file docker/docker-compose.yml run --rm php71 php composer.phar test-no-coverage",
"docker-test-include-functional": "docker-compose --file docker/docker-compose.yml run --rm php71 php composer.phar test-include-functional",
"docker-lint": "docker-compose --file docker/docker-compose.yml run --rm php71 php composer.phar lint",
"docker-db-setup": "docker-compose --file docker/docker-compose.yml run --rm php71 php composer.phar db-setup",
"docker-start": "docker-compose --file docker/docker-compose.yml run --rm php71 php -S localhost:8000 -t public/"
},
"repositories" : [
{
"type" : "package",
"package" : {
"name" : "EastDesire/jscolor",
"version" : "1.4.2",
"dist" : {
"url" : "https://github.com/EastDesire/jscolor/archive/v1.4.2.zip",
"type": "zip"
},
"source" : {
"url" : "https://github.com/EastDesire/jscolor.git",
"type" : "git",
"reference" : "tags/v1.4.2"
}
}
}
],
"require": {
"php": "^5.6.0 || ^7.0.0 || ^7.1.0 || ^7.2.0",
"ext-pdo": "*",
"ext-gd": "*",
"nategood/httpful": "^0.2.20",
"zaininnari/html-minifier": "^0.4.2",
"mpdf/mpdf": "6.1.3",
"league/plates": "^3.1.1",
"monolog/monolog": "^1.21",
"mnsami/composer-custom-directory-installer": "1.1.*",
"EastDesire/jscolor":"1.4.2"
},
"require-dev": {
"phpunit/phpunit": "4.8.36",
"phpspec/prophecy": "1.3.1",
"symfony/yaml": "v2.8.9",
"heroku/heroku-buildpack-php": "v121",
"mockery/mockery": "^0.9.9",
"jakub-onderka/php-parallel-lint": "^0.9.2",
"squizlabs/php_codesniffer": "3.0.0",
"escapestudios/symfony2-coding-standard": "3.x-dev#03f63512cac06e6ccf5694c503121aba978fdd55",
"doctrine/instantiator": "1.0.4"
},
"autoload": {
"psr-0": {
"": "lib/"
},
"exclude-from-classmap": [
"lib/ims-blti",
"lib/quail",
"tests/"
]
},
"extra": {
"installer-paths": {
"./public/assets/js/vendor/{$name}":["EastDesire/jscolor"]
}
},
"authors": [
{
"name": "Jacob Bates",
"homepage": "https://github.com/bagofarms",
"role": "Project Lead"
},
{
"name": "Eric Colon",
"homepage": "https://github.com/accell",
"role": "Developer"
},
{
"name": "Fenel Joseph",
"homepage": "https://github.com/feneljoseph",
"role": "Developer"
},
{
"name": "Emily Sachs",
"homepage": "https://github.com/emilysachs",
"role": "Developer"
},
{
"name": "Ian Turgeon",
"homepage": "https://github.com/iturgeon",
"role": "Developer"
},
{
"name": "Karen Tinsley-Kim",
"homepage": "https://github.com/accell",
"role": "Advisor"
},
{
"name": "Kevin Baugh",
"homepage": "https://github.com/loraxx753",
"role": "Developer"
},
{
"name": "Joe Fauvel",
"role": "Designer"
},
{
"name": "John Raible",
"role": "Developer"
},
{
"name": "Kathleen Bastedo",
"role": "Advisor"
},
{
"name": "Nancy Swenson",
"role": "Advisor"
},
{
"name": "Cooper Fellows",
"homepage": "https://github.com/cooperfellows",
"role": "Contributor"
},
{
"name": "Sean Hernandez",
"homepage": "https://github.com/seanlh",
"role": "Contributor"
}
]
}