Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

In reference to https://github.com/sabre-io/event/pull/66 #67

Open
wants to merge 23 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
a3a4a3d
some guzzle promise tests
TheTechsTech Dec 4, 2018
396e1e6
some changes to be guzzle compitable
TheTechsTech Dec 5, 2018
dce13a2
test changes to make promise cancellable like guzzle's
TheTechsTech Dec 6, 2018
30f9b49
fix phpunit v7.4.5 warning
TheTechsTech Dec 6, 2018
3cacf4d
promises cancellable
TheTechsTech Dec 6, 2018
a5d757e
Make promise interpolatable with other event loop implementations, Re…
TheTechsTech Dec 6, 2018
0c82d07
Tests addding some Guzzle wait and cancel tests
TheTechsTech Dec 6, 2018
54ea0d5
moved not working Guzzle tests to separate file
TheTechsTech Dec 6, 2018
348684f
update Guzzle advance tests not working here, all have Promises addre…
TheTechsTech Dec 7, 2018
55b6003
Update for interpolatable
TheTechsTech Dec 7, 2018
c887c83
corrections for interoperability with Guzzle promise syntax, moved wh…
TheTechsTech Dec 8, 2018
a1d1851
moving guzzle based promise tests that now works here
TheTechsTech Dec 8, 2018
2e31d00
some corrections, mostly functionaly compitable with Guzzle, not sure…
TheTechsTech Dec 8, 2018
6d78281
Update NotWorkingPromiseTest.php
TheTechsTech Dec 8, 2018
3a8375d
bug/error fix
TheTechsTech Dec 8, 2018
4168d2a
Added phpstan/phpstan composer -dev requirement, Moved added tests to…
TheTechsTech Dec 8, 2018
dcae72d
Changes for easy reconfiguration to run under different environments.
TheTechsTech Dec 8, 2018
daaf0d3
Update InteroperabilityPromiseTest.php
TheTechsTech Dec 8, 2018
d975307
Removed phpstan/phpstan composer -dev requirement
TheTechsTech Dec 8, 2018
68d906e
Update .travis.yml
TheTechsTech Dec 8, 2018
eee20ee
revert newmaster branch to master of upstream
TheTechsTech Dec 9, 2018
23f87f6
Update InteroperabilityPromiseTest.php
TheTechsTech Dec 10, 2018
5734a43
Update InteroperabilityPromiseTest.php
TheTechsTech Dec 10, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,10 @@ bin/phpunit
#development stuff
tests/cov
.php_cs.cache

#phpstan/phpstan
bin/phpunit.bat
bin/phpstan.bat
bin/phpstan
bin/php-parse.bat
bin/php-parse
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ matrix:
- name: 'PHPStan'
php: 7.2
env: RUN_PHPSTAN="TRUE"
allow_failures:
- name: 'PHPStan'

install:
- if [ $RUN_PHPSTAN == "TRUE" ]; then wget https://github.com/phpstan/phpstan/releases/download/0.10.3/phpstan.phar; fi
Expand Down
1 change: 0 additions & 1 deletion phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
strict="true"
>
<testsuite name="sabre-event">
<directory>tests/</directory>
Expand Down
Loading