-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (52 loc) · 1.26 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
{
"name": "koninklijke-collective/typo3-skeleton",
"type": "project",
"description": "TYPO3 CMS: your-website.com",
"keywords": [
"TYPO3",
"cms",
"Koninklijke Collective"
],
"homepage": "http://www.your-website.com",
"license": "LGPL-3.0+",
"authors": [
{
"name": "Benjamin Serfhos",
"email": "[email protected]",
"homepage": "http://serfhos.com"
}
],
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": "public"
}
},
"require": {
"php": "^5.5 || ^7.0",
"typo3/cms": "^7.6",
"typo3-ter/RealURL": "^2.0",
"typo3-ter/coreapi": "^1.3"
},
"require-dev": {
"phpunit/phpunit": "^5.5"
},
"repositories": [
{
"type": "composer",
"url": "https://composer.typo3.org/"
}
],
"scripts": {
"post-create-project-cmd": [
"build/post-create-project.sh",
"rm build/post-create-project.sh"
],
"force-reinstall": [
"rm -rf vendor/",
"unlink public/typo3",
"unlink public/index.php",
"@composer install"
]
}
}