Skip to content
This repository was archived by the owner on Jan 26, 2025. It is now read-only.

Commit b4d6d1f

Browse files
authored
Merge pull request #58 from okta/develop
Release 1.1.0
2 parents 40aa140 + 1c17c85 commit b4d6d1f

26 files changed

+782
-241
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
/vendor/
2-
examples
2+
examples
3+
phpunit.xml

.travis.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ before_script:
1515
- mkdir -p ~/.phpenv/versions/$(phpenv version-name)/etc
1616
- mkdir -p ~/.okta
1717
script:
18-
- vendor/bin/phpunit --verbose --coverage-clover build/logs/clover.xml
18+
- if [[ $TRAVIS_EVENT_TYPE != "cron" ]]; then vendor/bin/phpunit --verbose --coverage-clover build/logs/clover.xml; fi
19+
- if [[ $TRAVIS_EVENT_TYPE = "cron" ]]; then bash ./scripts/cron-test.sh; fi
1920
after_success:
2021
- if [[ $COVERAGE = 'true' ]]; then bash <(curl -s https://codecov.io/bash); fi
2122
- if [[ $DEPLOY_DOCS = 'true' ]]; then wget -O sami.phar http://get.sensiolabs.org/sami.phar;
@@ -52,6 +53,10 @@ matrix:
5253
- php: 7.1
5354
env: SETUP=lowest
5455
- php: 7.1
56+
env: SETUP=stable
57+
- php: 7.2
58+
env: SETUP=lowest
59+
- php: 7.2
5560
env:
5661
- COVERAGE=true
5762
- SETUP=stable

README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@
55
[![License](https://poser.pugx.org/okta/sdk/license.svg)](https://packagist.org/packages/okta/sdk)
66
[![Support](https://img.shields.io/badge/support-Developer%20Forum-blue.svg)](https://devforum.okta.com/)
77

8-
> Note: The PHP SDK is in a preview release state and may change at any time without notice. You should not use this
9-
in a production environment until a stable 1.x release is made.
10-
118
## Installation
129
**okta-sdk-php** is available on Packagist as the [okta/sdk](http://packagist.org/packages/okta/sdk) package.
1310

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"php-http/curl-client": "^1.7",
2020
"symfony/yaml": "^3.2",
2121
"nesbot/carbon": "^1.22",
22-
"tightenco/collect": "5.4.*",
22+
"tightenco/collect": "5.5.33",
2323
"guzzlehttp/psr7": "^1.4",
2424
"psr/cache": "^1.0",
2525
"league/flysystem-memory": "^1.0",

0 commit comments

Comments
 (0)