Add composer.json with basic GitLab-CI and GitHub Actions
Add composer.json, following best practices for TYPO3 Projects. Add GitLab-CI and GitHub Actions, to ensure composer.json is valid and install is possible. Relates: #5, #6
.github/workflows/ci.yml
0 → 100644
.gitignore
0 → 100644
.gitlab-ci.yml
0 → 100644
composer.json
0 → 100644
{ | ||
"name": "typo3/example-project", | ||
"description": "TYPO3 Example project, demonstrating best practices.", | ||
"type": "project", | ||
"license": "GPL-2.0-or-later", | ||
"config": { | ||
"php": "7.4", | ||
"sort-packages": true | ||
}, | ||
"require": { | ||
"helhum/typo3-console": "^6.3", | ||
"helhum/typo3-secure-web": "^0.2.10", | ||
"typo3/cms-backend": "^10.4", | ||
"typo3/cms-core": "^10.4", | ||
"typo3/cms-extbase": "^10.4", | ||
"typo3/cms-extensionmanager": "^10.4", | ||
"typo3/cms-filelist": "^10.4", | ||
"typo3/cms-fluid": "^10.4", | ||
"typo3/cms-frontend": "^10.4", | ||
"typo3/cms-install": "^10.4", | ||
"typo3/cms-recordlist": "^10.4", | ||
"typo3/cms-setup": "^10.4" | ||
}, | ||
"extra": { | ||
"typo3/cms": { | ||
"root-dir": "private", | ||
"web-dir": "public" | ||
} | ||
} | ||
} |
composer.lock
0 → 100644
This diff is collapsed.
Please register or sign in to comment