-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathcomposer.json
50 lines (50 loc) · 1.47 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
{
"name": "gewis/gewisweb",
"description": "GEWIS Website",
"license": "GPL-3.0",
"keywords": [
"website",
"gewis"
],
"homepage": "https://gewis.nl/",
"repositories": [
{
"type": "git",
"url": "https://github.com/jszanto/gewisweb-test-data"
}
],
"require": {
"php": ">=5.4.0",
"ext-gd": "^0.0.0",
"ext-exif": "^0.0.0",
"ext-imagick": "^3.1",
"zendframework/zendframework": "2.4.*",
"doctrine/doctrine-orm-module": "0.*",
"zendframework/zend-developer-tools": "~1.0.0",
"jszanto/gewisweb-test-data": "dev-master",
"twbs/bootstrap-sass": "^3.3",
"maglnet/magl-markdown":"^1.4",
"dino/dompdf-module": "0.2.0",
"firebase/php-jwt": "^5.0",
"paragonie/random_compat": "^2.0",
"monolog/monolog": "^1.23",
"league/glide-zend": "^1.0",
"nesbot/carbon": "^1.39",
"fortawesome/font-awesome": "dev-master",
"slowprog/composer-copy-file": "~0.3"
},
"scripts": {
"post-install-cmd": [
"SlowProg\\CopyFile\\ScriptHandler::copy"
],
"post-update-cmd": [
"SlowProg\\CopyFile\\ScriptHandler::copy"
]
},
"extra": {
"copy-file": {
"vendor/fortawesome/font-awesome/scss/": "public/scss/fontawesome/",
"vendor/fortawesome/font-awesome/webfonts/": "public/fonts/fontawesome/"
}
}
}