Download the PHP package bluesparklabs/spark without Composer

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

Spark ✨

Toolkit to develop, test and run PHP applications.

Spark provides a turnkey Docker-based environment for development and continuous integration. It ships commands to create anonymized database exports, execute test suites, initialize a Solr index etc. Spark simply needs to be added as your project's dependency, and after some minimal configuration steps you're ready to go.

"Concerning toolkits", an article published by Kent C. Dodds had been a great inspiration for architecting Spark.

Roadmap

Getting Started — How to Sparkify your project

Check out the Drupal 8 example project.

Here are the main steps outlined.

1. Add Spark as a dependency:

    $ composer require bluesparklabs/spark

2. Define a new script in your composer.json:

3. Add autoload information to your autoload field in your composer.json:

4. Create a file named .spark.yml in your project's root. This will be your project-specific configuration that Spark will use.

To learn about how to write your project-specific configuration, please refer to our .spark.example.yml file.

5. Optional: Create a file named .spark.local.yml in your project's root. This will be your environment-specific configuration that Spark will use. Do not commit this file to your repository. If you want to leverage environment-specific configuration for CI builds or in your hosting environment, the recommended way is to keep these files in your repository named specifically, i.e. .spark.local.ci.yml, and then ensure you have automation in place that renames it to .spark.local.yml in the appropriate environment.

To learn about how to write your project-specific configuration, please refer to our .spark.example.yml file.

Recommended composer.json bits

See the Drupal 8 example project's composer.json file.

1. Composer by default installs all packages under a directory called ./vendor. Use composer/installers to define installation destinations for Drupal modules, themes etc. Example configuration in composer.json:

2. In case you're working with a Drupal site, use drupal-composer/drupal-scaffold to install and update files that are outside of the core folder and which are not part of the drupal/core package. This Composer plugin will take care of the files whenever you install or update drupal/core, but to run it manually, you can add a script to your composer.json:

3. Spark has a command, drupal:files, to ensure the files folder exists with the right permissions, and that there's a settings.php file and a settings.spark.php which currently holds Spark's Docker-specific configuration, i.e. database connection etc. You may want to add this command to your scripts field in your composer.json, so that Composer executes it when packages are installed or updated:

Usage

This is how you can run a Spark command:

$ composer run spark <command>

Tip: Set up spark as a command-line alias to composer run spark.

To list all available commands, just issue $ composer run spark. Here is a high-level overview of what you can currently do with Spark:

Command namespace Description
drush Execute Drush commands
containers Manage a Docker-based environment
db Drop or import database, check its availability
drupal (Being deprecated.) Create backup and upload to an Amazon S3 bucket, ensure files directory and settings.php files, install Drupal
mysql Import or export database. (Will eventualy deprecate db command group.)
solr Initialize a Solr core with configuration for Drupal, check its availability
test Execute test suite

Commands

Notes:

mysql:dump

Exports database to a file. By default the file is placed into the current folder and data is sanitized based on the sanitization rules in .spark.yml. The following command-line arguments are optional.

Argument Description
--non-sanitized Produces a non-sanitized data export.
--destination Directory to where the export file will be placed. Can be an absolute or a relative path.

All versions of spark with dependencies

PHP Build Version
Package Version
Requires aws/aws-sdk-php Version ^3.62
boedah/robo-drush Version ^3.1.1
cocur/slugify Version ^3.1
consolidation/robo Version ^1.2.2
droath/robo-docker-compose Version ^0.0.8
drush/drush Version ~8
fzaninotto/faker Version ^1.8.0
hassankhan/config Version ^1.0.0
ifsnop/mysqldump-php Version dev-master
respect/validation Version ^1.1.15
vlucas/phpdotenv Version ^2.5
webmozart/path-util 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 bluesparklabs/spark contains the following files

Loading the files please wait ....