Download the PHP package tchauviere/slim3-kickstarter without Composer

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

Slim3 Kickstarter

Latest Stable Version Latest Unstable Version License composer.lock

This slim3 boilerplate is made for everyone who would like to kickstart quickly a web project.

It is composed of many great packages such as:

Installation :

composer create-project tchauviere/slim3-kickstarter <app_name>
Will download the project and install everything for you, <app_name> is up to you.

Once packages are installed you will be prompted interactively for .env file creation and global environment setup (assets and DB).
If you do not want to be prompted just add --no-interaction to the composer create-project command up above

If you don't go with interactive mode (default), please mind to do the following once your .env file is ready:
php manager asset:compile
php manager migration:run up
php manager seed:run

Start your developpement :)

Guide :

Assets management

php manager assets:compile [<type>] [--watch]

Will take care of converting your scss files and minify them as well as js files from /assets directory to respectively /public/css and /public/js directories (no binary dependencies required).

Migration creation

php manager migration:create <migration_name>

Will automatically creates a new migration file to /db/migrations from this file you can follow Phinx documentation to describe your migration.
http://docs.phinx.org/en/latest/migrations.html

Migration running

php manager migration:run <direction> [-t <target>] [--dry-run]

Run your migrations UP or DOWN.

Seed creation

php manager seed:create <seed_name>

Will automatically creates a new seed file to /db/seeds

Seed running

php manager seed:run [--seed <name>]

Run your seeds files.

Secret generation

php manager secret:generate

Will replace your secret located in .env file automatically.
BE CAREFUL when using this if you have already users that are created. Indeed, this secret is used to salt your Users passwords.

Usefull links :

http://docs.phinx.org/en/latest/migrations.html
https://laravel.com/docs/5.8/eloquent
http://www.slimframework.com/docs/

Note :

Feel free to open issues, ask questions or make some pull requests !
I'm maintaining this on my spare time so give me some of yours to get back to you :)

Enjoy !

forthebadge


All versions of slim3-kickstarter with dependencies

PHP Build Version
Package Version
Requires slim/slim Version ^3.12.1
slim/twig-view Version ^2.5.0
illuminate/database Version ^5.8.15
slim/flash Version ^0.4.0
leafo/scssphp Version ^0.7.7
matthiasmullie/minify Version ^1.3.61
monolog/monolog Version ^1.24.0
twig/extensions Version ^1.5.4
symfony/translation Version ^4.2.8
symfony/twig-bridge Version ^4.2.8
robmorgan/phinx Version ^0.10.7
symfony/console Version ^4.2.8
phpmailer/phpmailer Version ^6.0
vlucas/phpdotenv Version ^3.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 tchauviere/slim3-kickstarter contains the following files

Loading the files please wait ....