Extensive extension for Content Management System TYPO3 to manage sportclubs and competitions. This part of T3sports contains the frontend plugins to show score tables, match reports, player archives...
T3sports is the most extensive extension for sports management for CMS TYPO3. It is used by many well known clubs in Germany, Austria and Switzerland.
Keep update to date It is not recommended to use the TER to install this extension, since there are only rare updates into TER. You should better install and update from this Github repo. There are three ways to do this:
- Use composer
Add these entries to your composer.json
"require": {
"digedag/rn-base": "*",
"digedag/cfc-league": "*@dev-master",
"digedag/cfc-league-fe": "*@dev-master",
Run composer update:
composer update --prefer-dist digedag/cfc-league-fe
- Manual checkout from Github
You can clone the source from Github into directory typo3conf/ext.
cd typo3conf/ext
git clone https://github.com/digedag/cfc_league_fe.git
To pull latest changes:
cd typo3conf/ext/cfc_league_fe
git pull
- Update with a script
#!/bin/bash
array=( rn_base cfc_league cfc_league_fe )
for i in "${array[@]}"
do
wget -O $i.zip https://github.com/digedag/$i/archive/master.zip
rm -rf $i
unzip $i.zip
mv $i-master $i
rm $i.zip
done