Download the PHP package teebbstudios/teebb without Composer

On this page you can find all versions of the php package teebbstudios/teebb. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package teebb

TEEBB 0.x版本进入维护状态。即将重构代码,敬请期待。

doctrine-bundle 2.3以上版本使用PhpArrayCache缓存ORM注解Metadata,会引起TEEBB在生产环境下重大BUG。

TEEBB内容管理系统使用文档

TEEBB是基于Symfony框架开发的一款可自由扩展的内容管理系统。您可以自由使用本软件来构建您的博客、网站等应用。本项目将会长期开发维护,欢迎使用。
TEEBB的原理设计参考了著名的Drupal,注重内容的扩展性与功能性,因为Drupal的学习曲线太高了,于是我开发了TEEBB,它更轻量也更容易上手。目前0.x版本已实现了内容管理和一些基本功能, 注重内容类型网站的开发。在后续版本中将实现I18N(国际化),RESTful API,消息队列,缓存等等功能。如果您是Symfony初学者,TEEBB用到了Symfony的多个组件,是个不错的学习案例。
欢迎您进行Fork,并提交Pull Request,我们一起开发维护TEEBB,如果后续TEEBB有获利计划,我将优先通知您参与并获取相应利益。

TEEBB基础视频教程

1.TEEBB的下载和安装说明

TEEBB的运行环境:
PHP 7.2.5及以上、Mysql 5.7.x、推荐安装:Symfony 命令行工具,详见:www.symfony.com

初始管理员账号:admin
初始管理员密码:admin

2.TEEBB的版本号及开发周期说明

TEEBB的版本号遵循语义化版本格式:主版本号.次版本号.修订号
TEEBB的次版本号(例如:0.2.x,0.3.x)发布周期:至少每四个月发布一次。
TEEBB的修订版本号(例如:0.1.1,0.1.2)发布周期:至少每三个星期发布一次。

Tips:目前TEEBB 0.x版本的核心功能bundle仅包含在teebbstudios/core-bundle,并不利于后期维护,因此将在1.x版本重构TEEBB。

3.TEEBB的使用介绍

TEEBB的主题是内容管理,但是现实中各种各样不同类型的内容太多了,为了满足各种不同的需求以及实现灵活的扩展性,原理上我借鉴了国外的两个著名开源项目Drupal和Godot。
做个假设:

在另一个平行时空,我不是程序员而是一个名不见经传的在线小报记者,每天都忙于收集各种新闻,并发表在新闻网站上。 我的新闻网站分为很多不同的栏目,有的栏目要求必须添加新闻图片及文字,有的栏目只用上传新闻文字,有的栏目只用上传新闻图片。
传统的内容管理系统是怎么做的呢?
它可能预先定义了一个统一的新闻格式,有标题、主体(Body)、封面图片等等所有可能用到的东西,然后我们创建对应的栏目分类词,再根据需要把新添加的新闻指定到对应的栏目中,这是一个好办法。但是我觉得这样灵活性及扩展性就不那么好了。
如果我们能把新闻中所用到的标题、主体(Body)、图片等等信息抽取成不同类型的组件(我把这种组件称为“字段”,后面都称为“字段”),然后将用到的字段组合成不同的内容类型,这样会在最大程度上实现灵活性及扩展性。
在TEEBB中,目前实现了内容、评论、分类、用户四种bundle包。这四种bundle的具体实现类型都可以组合不同的字段以实现不同的需求。

3.1 内容bundle

4.基于TEEBB的开发(将有免费视频教程,敬请期待)

TEEBB的设计就是要高扩展性,因此我们可以在TEEBB上进行二次开发。TEEBB默认提供了内容bundle、分类bundle、评论bundle、用户bundle。
如果有一天有个需求开发一个小型的在线商城。我们可以利用图像字段作为商品的图像信息,利用布尔值字段做为商品的上下架信息、全新或二手信息,利用小数字段为商品的价格信息等等。这样我们可以创建一个bundle作为SKU对象,再创建一个bundle做为商品对象并两者进行关联以实现商城功能。
不止商城,其他类型的应用也完全可以在TEEBB上进行二次开发。
Wooooo!这就是我对TEEBB的设想,如果我们基于TEEBB的二次开发能做些bundle产品并出售赚取一些利润,那就再好不过了。:)
4.1 创建自定义字段

5.TEEBB的Roadmap

目前TEEBB发布了0.1.0版本,仍有不少功能急需完善,暂将一些未实现功能按优先级列下,暂不公布时间线,我把其他工作做完就会完善的,表着急啊:)。

  1. ckeditor编辑器的图像上传。
  2. 控制台Topbar及内容列表搜索过滤。
  3. 用户字段的实现及前端 分类 内容 字段的显示。
  4. 用户的字段管理。
  5. 缓存。
  6. RESTful API, 使用api-platform开发。
  7. 格式化器及ckeditor编辑器在使用时联动的优化。
  8. 控制台Topbar面包屑功能。
  9. bug修复。

6.TEEBB开源协议

本软件遵循MIT协议。如果您能在页面上注明您的应用使用了TEEBB,本人将万分感谢。:)

7.写在最后

本人可接Symfony开发的工作,正规公司资质,可开增值税发票,如有开发业务请与我联系。QQ/微信:443580003


All versions of teebb with dependencies

PHP Build Version
Package Version
Requires php Version ^7.2.5
ext-ctype Version *
ext-iconv Version *
api-platform/api-pack Version ^1.2
babdev/pagerfanta-bundle Version ^2.4
friendsofsymfony/ckeditor-bundle Version ^2.2
friendsofsymfony/jsrouting-bundle Version ^2.6
knplabs/knp-menu-bundle Version ^3.0
knplabs/knp-time-bundle Version ^1.13
liip/imagine-bundle Version ^2.3
oneup/flysystem-bundle Version ^3.5
pagerfanta/pagerfanta Version ^2.3
sensio/framework-extra-bundle Version ^5.1
sonata-project/block-bundle Version ^4.4
stof/doctrine-extensions-bundle Version ^1.4
symfony/asset Version ^5.0
symfony/console Version ^5.0
symfony/dotenv Version ^5.0
symfony/expression-language Version ^5.0
symfony/flex Version ^1.3.1
symfony/form Version ^5.0
symfony/framework-bundle Version ^5.0
symfony/http-client Version ^5.0
symfony/intl Version ^5.0
symfony/mailer Version ^5.0
symfony/mime Version ^5.0
symfony/monolog-bundle Version ^3.1
symfony/notifier Version ^5.0
symfony/orm-pack Version *
symfony/process Version ^5.0
symfony/security-bundle Version ^5.0
symfony/serializer-pack Version *
symfony/string Version ^5.0
symfony/translation Version ^5.0
symfony/twig-pack Version *
symfony/validator Version ^5.0
symfony/web-link Version ^5.0
symfony/yaml Version ^5.0
teebbstudios/core-bundle Version ^0.1.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package teebbstudios/teebb contains the following files

Loading the files please wait ....