PHPackages                             tmpjr/pubmed - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. tmpjr/pubmed

ActiveLibrary[API Development](/categories/api)

tmpjr/pubmed
============

Wrapper API for the NCBI PubMed EFetch Utilities developed at Ambry Genetics and made public for use by the community.

122.9k12[2 PRs](https://github.com/tmpjr/pubmed/pulls)PHP

Since Nov 21Pushed 5y ago3 watchersCompare

[ Source](https://github.com/tmpjr/pubmed)[ Packagist](https://packagist.org/packages/tmpjr/pubmed)[ RSS](/packages/tmpjr-pubmed/feed)WikiDiscussions master Synced today

READMEChangelogDependenciesVersions (1)Used By (0)

### API wrapper library to interface with NCBI's PubMed Efetch Server

[](#api-wrapper-library-to-interface-with-ncbis-pubmed-efetch-server)

Getting started
---------------

[](#getting-started)

### Installing via Composer

[](#installing-via-composer)

The recommended way to install PubMed is through [Composer](http://getcomposer.org).

1. Add `tmpjr/pubmed` as a dependency in your project's `composer.json` file:

    ```
     {
         "require": {
             "tmpjr/pubmed": "dev-master"
         }
     }

    ```
2. Download and install Composer:

    ```
     curl -s http://getcomposer.org/installer | php

    ```
3. Install your dependencies:

    ```
     php composer.phar install

    ```
4. Require Composer's autoloader

    Composer also prepares an autoload file that's capable of autoloading all of the classes in any of the libraries that it downloads. To use it, just add the following line to your code's bootstrap process:

    ```
     require 'vendor/autoload.php';

    ```

You can find out more on how to install Composer, configure autoloading, and other best-practices for defining dependencies at [getcomposer.org](http://getcomposer.org).

Basic Usage
-----------

[](#basic-usage)

```
