2017 © Pedro PelĆ”ez
 

library passbook

iOS Passbook for PHP

image

eo/passbook

iOS Passbook for PHP

  • Friday, February 23, 2018
  • by eymengunay
  • Repository
  • 26 Watchers
  • 208 Stars
  • 173,780 Installations
  • PHP
  • 3 Dependents
  • 0 Suggesters
  • 50 Forks
  • 5 Open issues
  • 14 Versions
  • 11 % Grown

The README.md

PHP PASSBOOK LIBRARY

Code Coverage Scrutinizer Code Quality PHPUnit Total Downloads Latest Stable Version, (*1)

What is Passbook?

Passbook is an application in iOS that allows users to store coupons, boarding passes, event tickets, store cards, 'generic' cards and other forms of mobile payment., (*2)

What does this library do?

PHP-Passbook is a library for creating and packaging passes inside your application. Distribution of generated pass files can be done by attaching the file in an e-mail or serving it from your web server., (*3)

Breaking changes

Version 3.0.0

  • Requires PHP >= 7.4

Version 2.0.0

  • Image class setRetina/isRetina methods replaced with setDensity/getDensity.

Installing

Using Composer

To add PHP-Passbook as a local, per-project dependency to your project, simply add a dependency on eo/passbook to your project's composer.json file. Here is a minimal example of a composer.json file that just defines a development-time dependency on the latest version of the library:, (*4)

{
    "require": {
        "eo/passbook": "dev-master"
    }
}

API Doc

Search by class, method name, or package: http://eymengunay.github.io/php-passbook/api, (*5)

Usage Example

This example will create a pass of type Ticket and will save the pkpass file in the output path specified. To use this example, you will need to do the following and set the constants accordingly:, (*6)

<?php

use Passbook\Pass\Field;
use Passbook\Pass\Image;
use Passbook\PassFactory;
use Passbook\Pass\Barcode;
use Passbook\Pass\Structure;
use Passbook\Type\EventTicket;

// Set these constants with your values
define('P12_FILE', '/path/to/p12/certificate.p12');
define('P12_PASSWORD', 'password_for_p12_file');
define('WWDR_FILE', '/path/to/wwdr.pem');
define('PASS_TYPE_IDENTIFIER', 'pass.com.example.yourpass');
define('TEAM_IDENTIFIER', 'IDFROMAPPLE');
define('ORGANIZATION_NAME', 'Your Organization Name');
define('OUTPUT_PATH', '/path/to/output/path');
define('ICON_FILE', '/path/to/icon.png');

// Create an event ticket
$pass = new EventTicket("1234567890", "The Beat Goes On");
$pass->setBackgroundColor('rgb(60, 65, 76)');
$pass->setLogoText('Apple Inc.');

// Create pass structure
$structure = new Structure();

// Add primary field
$primary = new Field('event', 'The Beat Goes On');
$primary->setLabel('Event');
$structure->addPrimaryField($primary);

// Add secondary field
$secondary = new Field('location', 'Moscone West');
$secondary->setLabel('Location');
$structure->addSecondaryField($secondary);

// Add auxiliary field
$auxiliary = new Field('datetime', '2013-04-15 @10:25');
$auxiliary->setLabel('Date & Time');
$structure->addAuxiliaryField($auxiliary);

// Add icon image
$icon = new Image(ICON_FILE, 'icon');
$pass->addImage($icon);

// Set pass structure
$pass->setStructure($structure);

// Add barcode
$barcode = new Barcode(Barcode::TYPE_QR, 'barcodeMessage');
$pass->setBarcode($barcode);

// Create pass factory instance
$factory = new PassFactory(PASS_TYPE_IDENTIFIER, TEAM_IDENTIFIER, ORGANIZATION_NAME, P12_FILE, P12_PASSWORD, WWDR_FILE);
$factory->setOutputPath(OUTPUT_PATH);
$factory->package($pass);

Requirements

Version 1.2.0 is the last release to support PHP 5.3., (*7)

Obtaining the Pass Type Identifier and Team ID

You can find more information from Apple on Setting the Pass Type Identifier and Team ID., (*8)

Requesting Certificates

P12 Certificate

Once you have downloaded the Apple iPhone certificate from Apple, export it to the P12 certificate format., (*9)

To do this on Mac OS:, (*10)

  1. Open the Keychain Access application (in the Applications/Utilities folder).
  2. If you have not already added the certificate to Keychain, select File > Import. Then navigate to the certificate file (the .cer file) you obtained from Apple.
  3. Select the Keys category in Keychain Access.
  4. Select the private key associated with your iPhone Development Certificate. The private key is identified by the iPhone Developer: public certificate that is paired with it.
  5. Select File > Export Items.
  6. Save your key in the Personal Information Exchange (.p12) file format.
  7. You will be prompted to create a password that is used when you attempt to import this key on another computer.

on Windows:, (*11)

  1. Convert the developer certificate file you receive from Apple into a PEM certificate file. Run the following command-line statement from the OpenSSL bin directory:
openssl x509 -in developer_identity.cer -inform DER -out developer_identity.pem -outform PEM
  1. If you are using the private key from the keychain on a Mac computer, convert it into a PEM key:
openssl pkcs12 -nocerts -in mykey.p12 -out mykey.pem
  1. You can now generate a valid P12 file, based on the key and the PEM version of the iPhone developer certificate:
openssl pkcs12 -export -inkey mykey.key -in developer_identity.pem -out iphone_dev.p12

If you are using a key from the Mac OS keychain, use the PEM version you generated in the previous step. Otherwise, use the OpenSSL key you generated earlier (on Windows)., (*12)

WWDR Certificate

Appleā€™s World Wide Developer Relations (WWDR) certificate is available from Apple at http://developer.apple.com/certificationauthority/AppleWWDRCA.cer. You will have to add this to your Keychain Access and export it in .pem format to use it with the library. The WWDR certificate links your development certificate to Apple, completing the trust chain for your application., (*13)

Running Tests

Before submitting a patch for inclusion, you need to run the test suite to check that you have not broken anything., (*14)

To run the test suite, install PHPUnit 3.7 (or later) first., (*15)

Dependencies

To run the entire test suite, including tests that depend on external dependencies, php-passbook needs to be able to autoload them. By default, they are autoloaded from vendor/ under the main root directory (see vendor/autoload.php)., (*16)

To install them all, use Composer:, (*17)

Step 1: Get Composer, (*18)

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

Make sure you download composer.phar in the same folder where the composer.json file is located., (*19)

Step 2: Install vendors, (*20)

php composer.phar install

Note that the script takes some time to finish., (*21)

Running

First, install the vendors (see above)., (*22)

Then, run the test suite from the package root directory with the following command:, (*23)

phpunit

The output should display OK. If not, you need to figure out what's going on and if the tests are broken because of your modifications., (*24)

Reporting an issue or a feature request

Issues and feature requests related to this library are tracked in the Github issue tracker: https://github.com/eymengunay/php-passbook/issues, (*25)

Contributing

Contributions are welcome and will be fully credited. We accept contributions via Pull Requests here on GitHub., (*26)

Please note that this project adhered to PSR-12 Extended Coding Style Guide, so your changes need to: - Have PHPUnit-test coverage and tests must pass with all supported PHP versions - Pass PHPStan & PHP_CodeSniffer static analysis checks - Be documented in README.md for any change in behaviour, (*27)

Donating

If you want to support the project, please consider to donate a small amount using GitHub Sponsors button. Thank you for your support!, (*28)

See also

PassbookBundle: PHP-Passbook library integration for Symfony2, (*29)

The Versions

23/02 2018

dev-master

9999999-dev https://github.com/eymengunay/php-passbook

iOS Passbook for PHP

  Sources   Download

MIT

The Requires

  • php >=5.4
  • ext-zip *
  • ext-openssl *

 

The Development Requires

ios mobile tickets wallet coupons passbook pass

23/02 2018

v2.1.1

2.1.1.0 https://github.com/eymengunay/php-passbook

iOS Passbook for PHP

  Sources   Download

MIT

The Requires

  • php >=5.4
  • ext-zip *
  • ext-openssl *

 

The Development Requires

ios mobile tickets wallet coupons passbook pass

22/01 2018

v2.1.0

2.1.0.0 https://github.com/eymengunay/php-passbook

iOS Passbook for PHP

  Sources   Download

MIT

The Requires

  • php >=5.4
  • ext-zip *
  • ext-openssl *

 

The Development Requires

ios mobile tickets wallet coupons passbook pass

16/11 2016

v2.0.0

2.0.0.0 https://github.com/eymengunay/php-passbook

iOS Passbook for PHP

  Sources   Download

MIT

The Requires

  • php >=5.4
  • ext-zip *
  • ext-openssl *

 

The Development Requires

ios mobile tickets wallet coupons passbook pass

10/10 2016

v1.3.1

1.3.1.0 https://github.com/eymengunay/php-passbook

iOS Passbook for PHP

  Sources   Download

MIT

The Requires

  • php >=5.4
  • ext-zip *
  • ext-openssl *

 

The Development Requires

ios mobile tickets wallet coupons passbook pass

24/04 2016

v1.3.0

1.3.0.0 https://github.com/eymengunay/php-passbook

iOS Passbook for PHP

  Sources   Download

MIT

The Requires

  • php >=5.4
  • ext-zip *
  • ext-openssl *

 

The Development Requires

ios mobile tickets wallet coupons passbook pass

27/01 2016

v1.2.1

1.2.1.0 https://github.com/eymengunay/php-passbook

iOS Passbook for PHP

  Sources   Download

MIT

The Requires

  • php >=5.3.6
  • ext-zip *
  • ext-openssl *

 

The Development Requires

ios mobile tickets wallet coupons passbook pass

09/11 2015

v1.2.0

1.2.0.0 https://github.com/eymengunay/php-passbook

iOS Passbook for PHP

  Sources   Download

MIT

The Requires

  • php >=5.3.6
  • ext-zip *
  • ext-openssl *

 

The Development Requires

ios mobile tickets wallet coupons passbook pass

08/07 2015

v1.1.3

1.1.3.0 https://github.com/eymengunay/php-passbook

iOS Passbook for PHP

  Sources   Download

MIT

The Requires

  • php >=5.3.6
  • ext-zip *
  • ext-openssl *

 

The Development Requires

ios mobile tickets wallet coupons passbook pass

18/07 2014

v1.1.2

1.1.2.0 https://github.com/eymengunay/php-passbook

iOS Passbook for PHP

  Sources   Download

MIT

The Requires

  • php >=5.3.6
  • ext-zip *
  • ext-openssl *

 

The Development Requires

ios mobile tickets wallet coupons passbook pass

28/03 2014

v1.1.1

1.1.1.0 https://github.com/eymengunay/php-passbook

iOS Passbook for PHP

  Sources   Download

MIT

The Requires

  • php >=5.3.0
  • ext-zip *
  • ext-openssl *

 

The Development Requires

ios mobile tickets wallet coupons passbook pass

26/01 2014

v1.1.0

1.1.0.0 https://github.com/eymengunay/php-passbook

iOS Passbook for PHP

  Sources   Download

MIT

The Requires

  • php >=5.3.0
  • ext-zip *
  • ext-openssl *

 

The Development Requires

ios mobile tickets wallet coupons passbook pass

09/10 2013

v1.0.1

1.0.1.0 https://github.com/eymengunay/php-passbook

iOS Passbook for PHP

  Sources   Download

MIT

The Requires

 

ios mobile tickets wallet coupons passbook pass

05/06 2013

v1.0.0

1.0.0.0 https://github.com/eymengunay/php-passbook

iOS Passbook for PHP

  Sources   Download

MIT

The Requires

 

ios mobile tickets wallet coupons passbook pass