Skip to content
This repository has been archived by the owner on Mar 19, 2021. It is now read-only.

Commit

Permalink
Composer usage
Browse files Browse the repository at this point in the history
Instead of pulling the whole framework via composer, we now pull just a minimal set of required
individual framework components and their dependencies from packages.zendframework.com.
  • Loading branch information
fbergkemper committed Feb 26, 2016
1 parent 1ab5cb2 commit d683070
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 13 deletions.
55 changes: 42 additions & 13 deletions composer.json
@@ -1,15 +1,44 @@
{
"name": "bareos-webui",
"description": "A Web-Frontend to manage Bareos",
"license": "AGPL3",
"keywords": [
"bareos",
"webinterface"
],
"homepage": "http://bareos.github.io/bareos-webui",
"require": {
"php": ">=5.3.3",
"zendframework/zendframework": "2.3.*",
"zendframework/zend-developer-tools": "dev-master"
}
"name": "bareos-webui",
"description": "A Web-Frontend to manage Bareos",
"license": "AGPL3",
"keywords": [
"bareos",
"webinterface"
],
"homepage": "http://www.bareos.org/",
"repositories": [
{
"type": "composer",
"url": "https://packages.zendframework.com/"
}
],
"require": {
"php": ">=5.3.3",
"zendframework/zend-stdlib": "2.4.*",
"zendframework/zend-config": "2.4.*",
"zendframework/zend-eventmanager": "2.4.*",
"zendframework/zend-filter": "2.4.*",
"zendframework/zend-serializer": "2.4.*",
"zendframework/zend-servicemanager": "2.4.*",
"zendframework/zend-json": "2.4.*",
"zendframework/zend-i18n": "2.4.*",
"zendframework/zend-mvc": "2.4.*",
"zendframework/zend-view": "2.4.*",
"zendframework/zend-version": "2.4.*",
"zendframework/zend-session": "2.4.*",
"zendframework/zend-validator": "2.4.*",
"zendframework/zend-inputfilter": "2.4.*",
"zendframework/zend-form": "2.4.*",
"zendframework/zend-loader": "2.4.*",
"zendframework/zend-modulemanager": "2.4.*",
"zendframework/zend-cache": "2.4.*",
"zendframework/zend-log": "2.4.*",
"zendframework/zend-db": "2.4.*",
"zendframework/zend-console": "2.4.*",
"zendframework/zend-http": "2.4.*",
"zendframework/zend-escaper": "2.4.*",
"zendframework/zend-uri": "2.4.*",
"zendframework/zend-navigation": "2.4.*"
}
}
Binary file modified composer.phar
Binary file not shown.

0 comments on commit d683070

Please sign in to comment.