Skip to content

hyeol/Saramin_Recruit_Api_Client

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

40 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Saramin Recruit API Client

Websites

Requirements

  • PHP 5.4.0 or higher

Installation

composer require Saramin/RecruitApi

Example

require_once '../vendor/autoload.php';

use Saramin\RecruitApi\Client;
use Saramin\RecruitApi\Parameters\Keywords;
use Saramin\RecruitApi\Parameters\Stock;

$client = new Client();

$recruitList = $client
    ->pushParameter(new Keywords('사람인'))
    ->pushParameter(new Stock('kospi'))
    ->offset(1)
    ->take(5)
    ->orderBy('ud')
    ->get()
    ->asArray();

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages