workshop-gitlab-acceptance/composer.json

57 lines
1.5 KiB
JSON
Raw Normal View History

2018-11-03 19:29:21 +01:00
{
"repositories": [
{
"type": "path",
"url": "localPackages/*"
},
{
"type": "composer",
"url": "https://composer.typo3.org/"
}
],
"name": "website/typo3-extension-workshop",
"description": "Example TYPO3 installation for workshop",
"license": "GPL-2.0-or-later",
"require": {
"helhum/typo3-console": "^5.5.5",
"helhum/typo3-secure-web": "^0.2.7",
"typo3-console/composer-auto-commands": "^0.2.0",
"typo3/cms-core": "^9.5.0",
"typo3/cms-about": "*",
"typo3/cms-belog": "*",
"typo3/cms-beuser": "*",
"typo3/cms-fluid-styled-content": "*",
"typo3/cms-info": "*",
"typo3/cms-info-pagetsconfig": "*",
"typo3/cms-rte-ckeditor": "*",
"typo3/cms-setup": "*",
"typo3/cms-t3editor": "*",
"typo3/cms-tstemplate": "*",
"workshop/example-extension": "@dev"
},
"require-dev": {
"typo3/cms-lowlevel": "*",
"codeception/codeception": "^2.5",
"typo3/testing-framework": "^4.11"
},
"autoload-dev": {
"psr-4": {
"Codappix\\Tests\\": "tests/Classes"
}
2018-11-03 19:29:21 +01:00
},
2019-08-21 10:08:27 +02:00
"config": {
"platform": {
"php": "7.2"
}
},
2018-11-03 19:29:21 +01:00
"extra": {
"typo3/cms": {
"app-dir": "app",
"root-dir": "app",
"web-dir": "public"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}