Download the PHP package biffbangpow/silverstripe-rejb without Composer

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

Recruitment Entrepreneur Group Wide Job Board SilverStripe

Setup

composer require biffbangpow/silverstripe-rejb

You will need to set some config settings in mysite.yml for this package to work, the required settings are:

BiffBangPow\SilverStripeREJB\SilverstripeREJB:
  job_board_url_path: "/jobs"
  api_base_url: "https://jobs.recruitmentvc.com"
  brand_slug: "brand-slug-here"

You will need to add the following extensions to anything that needs to output some of the job widgets, for example to add to every page:

SilverStripe\CMS\Controllers\ContentController:
  extensions:
    jobboardcontent: BiffBangPow\SilverStripeREJB\Extensions\JobBoardContentControllerExtension
    jobboardurl: BiffBangPow\SilverStripeREJB\Extensions\JobBoardURLExtension

You will also need to direct all requests to the job board to the job board controller, add this to your mysite.yml, replace /jobs with the url you want your job board to reside at, this should be the same job_board_url_path you set above

SilverStripe\Control\Director:
  rules:
    'jobs/job/$ID': 'BiffBangPow\SilverStripeREJB\Controllers\JobBoardPageController'
    'jobs': 'BiffBangPow\SilverStripeREJB\Controllers\JobBoardPageController'

You can also override the default style variables using this config, all of the available values are listed below

BiffBangPow\SilverStripeREJB\SilverstripeREJB:
  style:
    primary: "#69CDF5"
    primaryBorder: "#69CDF5"
    primaryText: "#ffffff"
    primaryHover: "#29A6CC"
    primaryHoverBorder: "#29A6CC"
    primaryHoverText: "#ffffff"
    secondary: "#3F6070"
    secondaryBorder: "#3F6070"
    secondaryText: "#ffffff"
    secondaryHover: "#3D5865"
    secondaryHoverBorder: "#3D5865"
    secondaryHoverText: "#ffffff"
    panelBackground: "#ffffff"
    panelDropShadow: "#E6E5E5"
    panelBorder: "#E6E5E5"
    inputBackground: "#ffffff"
    bodyText: "#484748"
    buttonBorderRadius: "10px"
    inputBorderRadius: "10px"
    searchFormFieldsBorderColour: "#69CDF5"
    searchFormFieldsBorderRadius:  "15px"
    searchFormFieldsBackground: "transparent"
    searchFormFieldsTextColour: "#FFFFFF"
    sectorCardBorderWidth: "20px"
    sectorCardBorderColour: "#FFFFFF"
    sectorCardBorderOpacity: "0.4"
    sectorCardBorderRadius: "10px"

Finally you need to add the following near the bottom of your main Page.ss template file

<% include JobBoardConfig %>

Configuration

Head to the settings section in the CMS and fill in the values under 'Job Board', the style settings all have defaults that can be left alone or adjusted to fit the relevant brand

Development

Setting the package in dev mode will load css from http://localhost:8000/main.css and the javascript from http://localhost:8000/bundle.js

BiffBangPow\SilverStripeREJB\SilverstripeREJB:
  dev_mode: true

You can also control which port it uses for the local resources:

BiffBangPow\SilverStripeREJB\SilverstripeREJB:
  dev_port: 8000

If the package is not set in dev mode it will load css from https://jobs.recruitmentvc.com/cdn/main.css and the javascript from https://jobs.recruitmentvc.com/cdn/bundle.js


All versions of silverstripe-rejb with dependencies

PHP Build Version
Package Version
Requires dorsetdigital/silverstripe-enhanced-requirements Version ^1.3
silverstripe/cms Version ^4.0 || ^5.0
silverstripe/framework Version ^4.0 || ^5.0
guzzlehttp/guzzle Version ^7.0
voku/stringy Version ~6.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 biffbangpow/silverstripe-rejb contains the following files

Loading the files please wait ....