digedag/cfc-league-fe

TYPO3 extension to manage sports competitions and clubs.

Installs: 1 238

Dependents: 2

Suggesters: 0

Security: 0

Stars: 3

Watchers: 4

Forks: 4

Open Issues: 11

Type:typo3-cms-extension

v1.11.3 2024-03-01 12:58 UTC

README

TYPO3 compatibility ext_icon.svg Latest Stable Version Total Downloads Code Style License Follow @T3sports1 CHANGELOG

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:

  1. 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
  1. 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
  1. 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