Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
8e38a79
Base for codecov
wtfzdotnet Dec 29, 2020
a64f545
Rename upgrade 3.0 to 4.0 and added a little information, added helpe…
wtfzdotnet Dec 30, 2020
739f054
Reorganized token's and removed some unused classes.
wtfzdotnet Dec 30, 2020
9d25bfc
Starting to rework the README
wtfzdotnet Dec 30, 2020
ccf0814
Add changes that were stashed
wtfzdotnet Dec 30, 2020
1b4bf54
Revert change to GenericCollection
wtfzdotnet Dec 30, 2020
d4cf708
Update README and remove legacy TmdbEvents class.
wtfzdotnet Dec 30, 2020
3465f36
Last work on the README, back to refacotring classes.
wtfzdotnet Dec 30, 2020
4670f2c
Review PSR-11 later
wtfzdotnet Dec 30, 2020
895c62e
Remove obsolete integrations.
wtfzdotnet Dec 30, 2020
20e6a74
Little more README refactoring
wtfzdotnet Dec 30, 2020
7c3f6b8
Cleaning up HttpClient and Client class.
wtfzdotnet Dec 30, 2020
7f5e445
Fix phpcs
wtfzdotnet Dec 30, 2020
62b0621
README changes, composer setup makes a little bit more sense, and per…
wtfzdotnet Dec 30, 2020
1b7267a
Appears we do need the php-http/guzzle7-adapter present for unit test…
wtfzdotnet Dec 30, 2020
6bae53e
Refactoring
wtfzdotnet Dec 30, 2020
887ea99
Refactored examples setup, and added logging, large overhaul of READM…
wtfzdotnet Jan 1, 2021
5b82e98
Adding test suite for logging
wtfzdotnet Jan 1, 2021
9e59103
Fix minor regression in test.
wtfzdotnet Jan 1, 2021
e290cb4
Finishing up the last big parts of the `Client` and `HttpClient` refa…
wtfzdotnet Jan 1, 2021
ea84268
More work on README
wtfzdotnet Jan 1, 2021
d407955
Adds PSR-6 cache
wtfzdotnet Jan 1, 2021
6b1a39a
Fix phpcs
wtfzdotnet Jan 1, 2021
6f14ba6
Fix phpcs in examples
wtfzdotnet Jan 1, 2021
276aa9d
Adding some unit tests for caching, gets a little more love later.
wtfzdotnet Jan 1, 2021
817cb04
Move fake test listener to a separate class file.
wtfzdotnet Jan 1, 2021
b0c3c11
Verify account examples, small refactor in http related classes.
wtfzdotnet Jan 1, 2021
40ea9f1
Authentication examples
wtfzdotnet Jan 1, 2021
225da2b
Reviewed all examples, added a couple of more todo's for later to che…
wtfzdotnet Jan 1, 2021
846db82
Fixed last errors in examples, and updated the documentation a bit more.
wtfzdotnet Jan 2, 2021
2c4904d
Small update that reflects some changes made on behalf of the symfony…
wtfzdotnet Jan 4, 2021
12380df
Last fixes, test run
wtfzdotnet Jan 4, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
5 changes: 0 additions & 5 deletions .codeclimate.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/coding-standards.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,4 @@ jobs:
run: "git remote set-branches --add origin $GITHUB_BASE_REF && git fetch origin $GITHUB_BASE_REF"

- name: "Run git-phpcs"
run: "php git-phpcs.phar origin/$GITHUB_BASE_REF...$GITHUB_SHA --report=checkstyle --standard=phpcs.xml.dist | cs2pr"
run: "php git-phpcs.phar origin/$GITHUB_BASE_REF...$GITHUB_SHA --report=checkstyle | cs2pr"
4 changes: 4 additions & 0 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,3 +81,7 @@ jobs:
with:
name: "phpunit-${{ matrix.php-version }}-${{ matrix.deps }}-${{ hashFiles('composer.lock') }}.coverage"
path: "coverage.xml"

- uses: codecov/codecov-action@v1
with:
verbose: true
24 changes: 8 additions & 16 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,18 +1,10 @@
/bin
/docs
/build/*
!/build/phpunit.xml
!/build/phpmd.xml
!/build/phpdox.xml
/vendor/
/composer.lock
/*.php
/.idea/
/apikey.php
/phpunit
/public_html
/cache.properties
/tmdb.log
.idea/
cache.properties/
coverage/
vendor/
examples/apikey.php
composer.lock
.phpcs-cache
.phpunit.result.cache
.phpcs-cache
examples/
examples/var/
34 changes: 0 additions & 34 deletions .scrutinizer.yml

This file was deleted.

37 changes: 0 additions & 37 deletions .travis.yml

This file was deleted.

Loading