digedag / cfc-league-fe
用于管理体育竞赛和俱乐部的TYPO3扩展。
v1.11.3
2024-03-01 12:58 UTC
Requires
- digedag/cfc-league: ~1.11.4
- digedag/rn-base: ~1.18
- typo3/cms-core: ^8.7 || ^9.5 || ^10.4 || ^11.5 || ^12.1
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.0
- mikey179/vfsstream: ^1.4 || ^1.6
- phpcompatibility/php-compatibility: ^9.3.5
- phpunit/phpunit: ^6.5.14 || ^7.5.20 || ^8.0 || ^9.0
- typo3/testing-framework: ^2.0 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0
Replaces
- typo3-ter/cfc-league-fe: v1.11.3
- dev-master / 1.11.x-dev
- v1.11.3
- v1.11.2
- v1.11.1
- v1.11.0
- v1.10.1
- v1.10.0
- v1.8.2
- v1.8.1
- v1.8.0
- v1.7.2
- v1.7.1
- v1.7.0
- v1.6.1
- v1.6.0
- v1.5.2
- v1.5.1
- v1.5.0
- v1.4.1
- v1.4.0
- v1.3.0
- v1.2.0
- 1.1.1
- dev-bugfix/judo-table
- dev-feature/judo
- dev-prepare/release
- dev-bugfix/performance-issue
- dev-feature/matchtable-sort-order
- dev-feature/#74-video-assists
- dev-fix/statistics-plugin
- dev-feature/t3_12
- dev-bugfix/php-warnings
- dev-bugfix/plugin-templates-wizard
- dev-bugfix/230320_error_in_league_table
- dev-upgrade/php8
- dev-upgrade/t311
- dev-bugfix/actions
- dev-alltime-table
- dev-t3_95
- dev-refactoring
- dev-t3_87
This package is auto-updated.
Last update: 2024-09-04 21:03:07 UTC
README
为内容管理系统TYPO3提供的广泛扩展,用于管理体育俱乐部和竞赛。T3sports的这一部分包含前端插件,用于显示积分榜、比赛报告、球员档案等。
T3sports是TYPO3 CMS中用于体育管理的最广泛扩展。它被德国、奥地利和瑞士的许多知名俱乐部使用。
保持更新 不建议使用TER安装此扩展,因为TER中只有很少的更新。您最好从本GitHub仓库安装和更新。有三种方法可以做到这一点
- 使用composer
将这些条目添加到您的composer.json中
"require": { "digedag/rn-base": "*", "digedag/cfc-league": "*@dev-master", "digedag/cfc-league-fe": "*@dev-master",
运行composer update
composer update --prefer-dist digedag/cfc-league-fe
- 从GitHub手动检出
您可以将源代码从GitHub克隆到目录 typo3conf/ext 中。
cd typo3conf/ext
git clone https://github.com/digedag/cfc_league_fe.git
以拉取最新更改
cd typo3conf/ext/cfc_league_fe
git pull
- 使用脚本更新
#!/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