diff --git a/README.md b/README.md index fa764d2..ec844d0 100644 --- a/README.md +++ b/README.md @@ -21,12 +21,12 @@ Checkout the project website at forge.typo3.org: * fetch an extension from TER * import an extension * install / uninstall extension - * create upload folders + * create upload folders * configure extension * SiteApi * info * createSysNews - + #### planned/comming soon * Backend @@ -62,7 +62,37 @@ This will show you all available calls #### TYPO3 4.6 and below #### If you are using 4.5 or 4.6, you can still use the extension with a call like ./typo3/cli_dispatch.phpsh coreapi cache:clearallcaches - + # list all available commands: ./typo3/cli_dispatch.phpsh coreapi help +### Usage in Composer ### + + { + "name": "typo3cms/test-website", + "description": "TYPO3 CMS: test.com", + "keywords": ["typo3", "cms"], + "require": { + "php": ">=5.3.3", + "typo3core/cms": "*", + "etobi/coreapi": "dev-master", + }, + "repositories": [ + { + "type": "vcs", + "url": "git://github.com/etobi/ext-coreapi.git" + } + ], + "extra": { + "installer-paths": { + "typo3conf/ext/{$name}": [ + "type:typo3-cms-extension" + ] + } + }, + "minimum-stability": "dev", + "require-dev": {}, + "scripts": {} + } + + diff --git a/composer.json b/composer.json index 1b3119c..9ffbd2b 100644 --- a/composer.json +++ b/composer.json @@ -1,14 +1,20 @@ { "name": "etobi/coreapi", "description": "Provides a simple to use API for common core features. Goal is to be able to do the most common tasks by CLI instead of doing it in the backend/browser.", - "type": "typo3cms-extension", + "type": "typo3-cms-extension", + + "keywords": ["typo3", "extension", "deployment", "commandline", "cli"], + + "authors": [ + { + "name": "Tobias Liebig", + "homepage": "http://etobi.de" + } + ], + "require": { - "lw/typo3cms-installers": "*" + "composer/installers": "~1.0" }, - "repositories": [ - { - "type": "composer", - "url": "http://composer.lightwerk.com" - } - ] + + "minimum-stability": "dev" }