Download the PHP package openpsa/midcom without Composer

On this page you can find all versions of the php package openpsa/midcom. 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 midcom

OpenPSA

OpenPSA is a management suite for web agencies and consultants that provides a unified interface for handling many common business processes. It is built on a component architecture that makes it easy to integrate new components for specific requirements and is available as free software under the terms of the LGPL license.

OpenPSA 1.x was initially released as Open Source under the GNU GPL license by Nemein on May 8th 2004 to support the 5th anniversary of the Midgard Project. The package was originally known as Nemein.Net.

The currently active branch (OpenPSA 9) is developed and supported by CONTENT CONTROL.

Read more in http://openpsa2.org/

Setup

You can either clone this repo or add openpsa/midcom to your composer.json

Then, change to your project's root dir and use Composer to install PHP dependencies

$ wget http://getcomposer.org/installer && php installer
$ php composer.phar install

This will setup the project directory for OpenPSA usage. Next you should make OpenPSA available under your document root:

$ ln -s web /var/www/yourdomain

You can then create new database by running:

$ ./vendor/bin/openpsa-installer midgard2:setup

This will also create a default user with admin/password which you can later use to access the admin interface. See the openpsa-installer documentation for more details.

Setting up Apache

Make sure that you have mod_rewrite enabled:

a2enmod rewrite

And use something like this in your vhost config (or .htaccess file):

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ /openpsa/rootfile.php [QSA,L]

Setting up Lighttpd

Alternatively, you can also run under lighttpd (or any other web server, for that matter). Enable rewrite and fastcgi modules in your Lighttpd config (by default /etc/lighttpd/lighttpd.conf):

server.modules += (
    "mod_fastcgi",
    "mod_rewrite"
)

Also enable FastCGI to talk to your PHP installation:

fastcgi.server = (
    ".php" => (
        (
            "bin-path" => "/usr/bin/php-cgi",
            "socket" => "/tmp/php.socket"
        )
    )
)

Then just configure your Lighttpd to pass all requests to the OpenPSA "rootfile":

url.rewrite-once = (
    "^/openpsa2-static/OpenPsa2/(.*)$" => "/openpsa/themes/OpenPsa2/static/$1",
    "^/openpsa2-static/(.*)$" => "/openpsa/static/$1",
    "^([^\?]*)(\?(.+))?$" => "openpsa/rootfile.php$2"
)

Note: this rewrite rule is a bit too inclusive, to be improved.


All versions of midcom with dependencies

PHP Build Version
Package Version
Requires php Version >=7.4
ext-mbstring Version *
ext-iconv Version *
checkdomain/holiday Version ^3.0.0
gregwar/captcha Version ^1.0
guzzlehttp/guzzle Version ^7.2
mf2/mf2 Version >=0.2.12
michelf/php-markdown Version ^1.9.0
monolog/monolog Version ^1.15 || ^2.0
openpsa/installer Version ^1.0
openpsa/midgard-portable Version ^1.10.0
openpsa/ranger Version >=0.3.0
openpsa/universalfeedcreator Version ^1.8.2
phpspec/php-diff Version ^1.1.0
sabre/vobject Version ^4.3.0
simplepie/simplepie Version ^1.7.0
studio-42/elfinder Version >=2.1.59
symfony/config Version >=5.4 <7.0
symfony/console Version >=5.4
symfony/cache Version >=5.4
symfony/css-selector Version >=5.4
symfony/dependency-injection Version >=5.4 <6.0
symfony/dom-crawler Version >=5.4
symfony/event-dispatcher Version >=5.4
symfony/finder Version >=5.4
symfony/form Version >=5.4 <6.0
symfony/http-foundation Version >=5.4 <6.0
symfony/http-kernel Version >=5.4 <6.0
symfony/intl Version >=5.4
symfony/mailer Version >=5.4
symfony/mime Version >=5.4.11
symfony/options-resolver Version >=5.4
symfony/polyfill-php80 Version >=1.16
symfony/routing Version >=5.4
symfony/security-csrf Version >=5.4 <6.0
symfony/translation Version >=5.4
symfony/validator Version >=5.4
symfony/var-dumper Version >=5.4
symfony/yaml Version >=5.4
cocur/slugify Version ^4.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 openpsa/midcom contains the following files

Loading the files please wait ....