clastic / standard-edition
The "Clastic Standard Edition" distribution
Requires
- php: >=5.5.9
- clastic/alias-bundle: dev-master
- clastic/backoffice-bundle: dev-master
- clastic/block-bundle: dev-master
- clastic/blog-bundle: dev-master
- clastic/core-bundle: dev-master
- clastic/front-bundle: dev-master
- clastic/media-bundle: dev-master
- clastic/menu-bundle: dev-master
- clastic/node-bundle: dev-master
- clastic/security-bundle: dev-master
- clastic/taxonomy-bundle: dev-master
- clastic/text-bundle: dev-master
- clastic/user-bundle: dev-master
- doctrine/doctrine-bundle: ^1.6
- doctrine/doctrine-cache-bundle: ^1.2
- doctrine/orm: ^2.5
- friendsofsymfony/user-bundle: ~2.0@dev
- incenteev/composer-parameter-handler: ^2.0
- sensio/distribution-bundle: ^5.0
- sensio/framework-extra-bundle: ^3.0.2
- stof/doctrine-extensions-bundle: ~1.2@dev
- symfony/monolog-bundle: ^2.8
- symfony/swiftmailer-bundle: ^2.3
- symfony/symfony: 3.0.*
Requires (Dev)
- clastic/generator-bundle: dev-master
- sensio/generator-bundle: ^3.0
- symfony/phpunit-bridge: ^2.7
This package is auto-updated.
Last update: 2024-10-29 04:41:55 UTC
README
Welcome to the Clastic Standard Edition - a fully-functional Clastic application that you can use as the skeleton for your new applications.
This document contains information on how to download, install, and start using Clastic.
- Installing the Standard Edition
As Clastic uses Composer to manage its dependencies, the recommended way to create a new project is to use it.
If you don't have Composer yet, download it following the instructions on http://getcomposer.org/ or just run the following command:
sudo curl -sS https://getcomposer.org/installer | sudo php -- --install-dir=/usr/local/bin/ --filename=composer
Then, use the create-project
command to generate a new Clastic application:
composer create-project clastic/standard-edition path/to/install -s dev
Composer will install Clastic and all its dependencies under the
path/to/install
directory.
- Checking your System Configuration
Before starting coding, make sure that your local system is properly configured for Clastic.
Execute the check.php
script from the command line:
php app/check.php
The script returns a status code of 0
if all mandatory requirements are met,
1
otherwise.
Access the config.php
script from a browser:
http://localhost/path-to-project/web/config.php
If you get any warnings or recommendations, fix them before moving on.
- Browsing the Demo Application
Congratulations! You're now ready to use Clastic.
Run the internal server:
app/console server:run
You can access your freshly installed backend at
http://127.0.0.1:8000/admin/
- Getting started with Clastic
TODO
Enjoy!