Skip to content
This repository has been archived by the owner on Aug 15, 2023. It is now read-only.

Commit

Permalink
Merge pull request #61 from bmoex/master
Browse files Browse the repository at this point in the history
#60: Composer.json creates error
  • Loading branch information
etobi committed May 21, 2014
2 parents aeae324 + 1d9e450 commit c029010
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 11 deletions.
36 changes: 33 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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": {}
}


22 changes: 14 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
@@ -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"
}

0 comments on commit c029010

Please sign in to comment.