Download the PHP package tk-typo3/tk-composer-server without Composer

On this page you can find all versions of the php package tk-typo3/tk-composer-server. 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 tk-composer-server

ReadMe

This is an extension for TYPO3 to host a composer server in a TYPO3 instance. Every package can have specific access rights to allow access only for authorized accounts (authorization method is http-basic, see here for further details). In addition, packages can be added to groups to easily build bundles for often used package collections.

Configuration

All configuration values are stored in $GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['tk_composer_server']....

Key: Type: Description: Default:
...['frontend']['disable'] boolean If true, Frontend is completely disabled. false
...['frontend']['title'] string Application title for frontend. Composer Server
...['frontend']['footer']['copyrightName'] string Name of the copyright holder. -
...['frontend']['footer']['copyrightHomepage'] string Homepage of the copyright holder. -
...['frontend']['footer']['copyrightNotice'] string Copyright notice in footer. All rights reserved.
...['frontend']['footer']['description'] string Short description text for footer. -
...['frontend']['cookieName'] string The cookie name for frontend login. auth
...['frontend']['cookieLifetime'] integer Duration in seconds the cookie is valid. 3600
...['frontend']['bruteForceSleepDuration'] integer Duration in seconds to sleep when trying to log in with invalid login credentials. 2
...['updateUri'] string The URL path to trigger the update command. Set this to empty to disable updates via URL. update
...['hashingAlgorithm'] string The hashing algorithm for package checksums. See here for other possible values. sha256
...['hostname'] string The hostname for the server, if not $_SERVER['HTTP_HOST']. _Value of $_SERVER['HTTPHOST']

Updating cached packages

There are three ways to update packages:

  1. Running console command.
  2. Running task via TYPO3 scheduler (extension scheduler required) to trigger console command.
  3. Request update URL.

Console command

To update cached packages via console, run the following command:

Optionally, the package updates can be forced (even if no changes exist) with the --force-reload flag (or just -f):

TYPO3 scheduler task

Add a new task in TYPO3 scheduler to trigger the console command composer-server:update .

Request update URL

By default, the update URL is /update (configurable through extension configuration). Git hooks are a good way to trigger this only when changes are pushed. Therefore, the update is only running when necessary.


All versions of tk-composer-server with dependencies

PHP Build Version
Package Version
Requires php Version >=7.2
ext-json Version *
composer/composer Version ^2.0
typo3/cms-backend Version ^10.4
typo3/cms-extbase Version ^10.4
typo3/cms-fluid Version ^10.4
typo3/cms-frontend Version ^10.4
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 tk-typo3/tk-composer-server contains the following files

Loading the files please wait ....