This repository has been archived by the owner on Dec 7, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merging develop to master in preparation for 1.3.0 release.
- Loading branch information
Showing
29 changed files
with
380 additions
and
382 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,22 @@ | ||
sudo: false | ||
|
||
language: php | ||
|
||
php: | ||
- 5.3 | ||
- 5.4 | ||
- 5.5 | ||
- 5.6 | ||
- hhvm | ||
matrix: | ||
include: | ||
- php: 5.6 | ||
- php: 7.0 | ||
- php: 7.1 | ||
env: | ||
- CS_CHECK=true | ||
- php: 7.2 | ||
|
||
before_install: | ||
- cp tests/TestConfiguration.php.travis tests/TestConfiguration.php | ||
- composer install --dev | ||
- composer install --no-interaction | ||
|
||
script: | ||
- phpunit -c tests/phpunit.xml.dist | ||
- ./vendor/bin/phpunit | ||
- if [[ $CS_CHECK == 'true' ]]; then ./vendor/bin/phpcs ; fi | ||
|
||
notifications: | ||
#irc: "irc.freenode.org#zftalk.2" | ||
email: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,47 @@ | ||
{ | ||
"name": "zendframework/zendservice-apple-apns", | ||
"description": "OOP Zend Framework 2 wrapper for Apple Push Notification Service", | ||
"type": "library", | ||
"description": "OOP Zend Framework wrapper for Apple Push Notification Service", | ||
"license": "BSD-3-Clause", | ||
"keywords": [ | ||
"zf2", | ||
"zf", | ||
"zendframework", | ||
"apns", | ||
"push", | ||
"notification", | ||
"apple" | ||
], | ||
"homepage": "http://packages.zendframework.com/", | ||
"license": "BSD-3-Clause", | ||
"support": { | ||
"issues": "https://github.com/zendframework/ZendService_Apple_Apns/issues", | ||
"source": "https://github.com/zendframework/ZendService_Apple_Apns", | ||
"rss": "https://github.com/zendframework/ZendService_Apple_Apns/releases.atom", | ||
"chat": "https://zendframework-slack.herokuapp.com", | ||
"forum": "https://discourse.zendframework.com/c/questions/components" | ||
}, | ||
"require": { | ||
"php": "^5.6 || ^7.0", | ||
"zendframework/zend-json": "^2.0 || ^3.0" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.5", | ||
"zendframework/zend-coding-standard": "~1.0.0" | ||
}, | ||
"autoload": { | ||
"psr-0": { | ||
"ZendService\\Apple\\Apns\\": "library/", | ||
"ZendService\\Apple\\Exception\\": "library/" | ||
"psr-4": { | ||
"ZendService\\Apple\\": "src/" | ||
} | ||
}, | ||
"repositories": [ | ||
{ | ||
"type": "composer", | ||
"url": "https://packages.zendframework.com/" | ||
"autoload-dev": { | ||
"psr-4": { | ||
"ZendServiceTest\\Apple\\": "test/" | ||
} | ||
], | ||
"require": { | ||
"php": ">=5.3.3", | ||
"zendframework/zend-json": "^2.0|^3.0" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "3.7.*" | ||
"config": { | ||
"sort-packages": true | ||
}, | ||
"extra": { | ||
"branch-alias": { | ||
"dev-master": "1.3.x-dev", | ||
"dev-develop": "1.4.x-dev" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?xml version="1.0"?> | ||
<ruleset name="Zend Framework Coding Standard"> | ||
<rule ref="./vendor/zendframework/zend-coding-standard/ruleset.xml"/> | ||
|
||
<file>src</file> | ||
<file>test</file> | ||
</ruleset> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd" | ||
bootstrap="vendor/autoload.php" | ||
colors="true"> | ||
<testsuites> | ||
<testsuite name="ZendService Apple Apns Test Suite"> | ||
<directory>./test</directory> | ||
</testsuite> | ||
</testsuites> | ||
|
||
<filter> | ||
<whitelist processUncoveredFilesFromWhitelist="true"> | ||
<directory suffix=".php">./src</directory> | ||
</whitelist> | ||
</filter> | ||
</phpunit> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.