Download the PHP package talentcircles/php_sdk without Composer

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

TalentCircles PHP Developer Kit

This library allows developers to integrate a TalentCircles network into their own application through HTTP calls to that network's REST API endpoints.

Setup

Setup is simple and easy with composer. See instructions here if you do not have composer installed. Once you have composer, use the following command from your project root:

Usage

First initialize the SDK object:

Then call any of the functions below to access data on the TalentCircles network you are accessing. For example, to get a Job object, call getJob() with a job id:

Functions

Job Functions

getJob(INT $job_id) - Get a single Job object for the job posting identified by $job_id

getJobs(ARR $job_ids) - Get multiple Job objects for the job postings identified by an array of $job_ids

getJobMatchingCandidates(INT $job_id) - Get an array of matching user objects of possible candidates for the job posting identified by $job_id

getSimilarJobs(INT $job_id) - Get an array of job objects with job postings similar to the job posting identified by $job_id

createJob(STR $job_title, STR $job_description, ARR $jobDetails) - Post a new Job ad, returns the new Job object

searchJobs(ARR $search_params, INT $page, INT $results_per_page) - Get an array of Job objects from the database, using SPHINX search

updateJob(INT $job_id, ARR $update_data) - Update an existing job posting identified by $job_id, returns an updated Job object

User Functions

getUser(INT $user_id) - Get a single User object for the user profile identified by $user_id

getUsers(ARR $user_ids) - Get an array of User objects for the profiles identified by an array of $user_ids

getUserMatchingJobs(INT $user_id) - Get an array of Job objects that may be suitable for the user profile identified by $user_id

getUserStories(INT $user_id, INT $offset, INT $limit) - Get an array of Story objects posted by the user profile identified by $user_id

createUser(ARR $user_data) - Create a new User profile, returns the new User object

searchUsers(ARR $search_params, INT $page, INT $results_per_page) - Get an array of User objects from the database, using SPHINX search

updateUser(INT $user_id, ARR $update_data) - Update an existing User profile identified by $user_id, returns an updated User object

Circle Functions

getCircle(INT $circle_id) - Get a single Circle object for the circle identified by $circle_id

getCircles(ARR $circle_ids) - Get an array of Circle objects for circles identified by an array of $circle_ids

getCircleJobs(INT $circle_id, INT $offset, INT $limit) - Get an array of Job objects posted to the circle identified by $circle_id

getCircleMembers(INT $circle_id) - Get an array of User objects for members of the circle identified by $circle_id

createCircle(ARR $circle_data) - Create a new Circle, returns a Circle object

postCircleStory(INT $circle_id, ARR $story_data) - Post a new Story to the Circle identified by $circle_id, returns a Circle object

updateCircle(INT $circle_id, ARR $update_data) - Update an existing Circle identified by $circle_id, returns a updated Circle object

Story Functions

getStory(INT $story_id) - Get a single Story object for the story post identified by $story_id

getStories(ARR $story_ids) - Get multiple Story objects for story posts identified by an array of $story_ids

postStory(ARR $story_data) - Post a new story to a Circle, returns the Story object

This function can also be used to post a new Story to multiple Circles by passing an array of $circle_ids into the 'circle_id' element of the $story_data array

updateStory(INT $story_id, ARR $story_data) - Update an existing Story post identified by $story_id, returns the updated Story object

updateStories(ARR $story_ids, ARR $story_data) - Update a set of existing Stories identified by an array of $story_ids, returns an array of the updated Story objects


All versions of php_sdk with dependencies

PHP Build Version
Package Version
Requires php Version ^5.3.3 || ^7.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 talentcircles/php_sdk contains the following files

Loading the files please wait ....