Download the PHP package cupboard/core without Composer

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

Cupboard

Latest Stable Version Total Downloads

Cupboard is designed to be a very minimal blogging platform with the primary focus on writing. Currently it is a work in progress but you are free to give it a try. (Just be warned this alpha/beta quality). If you have any issues or ideas please report them.

Cupboard

Installing Cupboard As A Project

Creating a stand-alone Cupboard installation is now as simple as running composer create-project cupboard/cupboard.

Installing Cupboard In An Existing Laravel Application

Installing Cupboard in an existing Laravel application couldn't be easier!

If you have the Laravel Package Installer, simply run php artisan package:install cupboard/core.

If you do not have the package installer then add "cupboard/core": "1.2.*" to your composer.json file and run composer update. Then add Cupboard\Core\CupboardServiceProvider to your providers and 'Cupboard' => 'Cupboard\Core\Facades\CupboardFacade' to your aliases in app/config/app.php.

Now the last thing you need to do is publish the necessary files configuration and theme files by running php artisan cupboard:config, php artisan config:publish cupboard/core, and php artisan cupboard:themes.

Configuring the Database Connection

CupboardCMS is designed to give you maximum database configuration within existing Laravel applications. If you would like to use the default database connection from your host app, no configuration is necessary. However, if you would like to use a separate database connection, this is available in the app/config/package/cupboard/core/database.php file.

If the default configuration is set to default it will use the host application connection. Otherwise, it will use the connection details listed in this connection array.

Finally, to migrate to your selected database connection run php artisan cupboard:migrate.

Creating Your First User

If you are using Cupboard as a package, you will have to create a user. This is as easy as running php artisan cupboard:user:create first_name last_name email password, of course filling in your own details as the arguments.

Using Cupboard

By default, your CupboardCMS blog will be located in your applications index. The administration panel will be located at /admin.

Both of these routes can be configured using route group rules from the app/config/package/cupboard/core/routes.php file.

Theming Cupboard

By default, your theme files are located in public/themes. You can modify these themes or create your own using the default themes as a guide. The configuration for your themes is located in app/config/packages/cupboard/core/cupboard.php in the theme option.


All versions of core with dependencies

PHP Build Version
Package Version
Requires php Version >=5.4.0
laravel/framework Version ~4
michelf/php-markdown Version 1.6.*
symfony/yaml Version 2.8.*@dev
intervention/image Version 2.3.*
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 cupboard/core contains the following files

Loading the files please wait ....