Skip to content

bastians/cfc_league_fe

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

T3sports Frontend

cfc_league_fe Latest Stable Version Total Downloads License 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 to 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

About

Frontend extension for T3sports

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 90.6%
  • HTML 8.9%
  • CSS 0.5%