1# This is a list of files that were present in previous releases
2# but were removed later. They should not exist in your installation.
3.travis.yml
4_test/checkMail.test.php
5_test/general.test.php
6action.php
7classes/AbstractAdapter.php
8classes/AbstractAuthService.php
9classes/Auth0Adapter.php
10classes/DataportenAdapter.php
11classes/DoorkeeperAdapter.php
12classes/FacebookAdapter.php
13classes/GithubAdapter.php
14classes/GithubAuthService.php
15classes/GoogleAdapter.php
16classes/KeycloakAdapter.php
17classes/YahooAdapter.php
18classes/oAuthHTTPClient.php
19classes/oAuthStorage.php
20images/facebook.png
21images/github.png
22images/google.png
23images/yahoo.png
24phpoauthlib/.gitignore
25phpoauthlib/.scrutinizer.yml
26phpoauthlib/.travis.yml
27phpoauthlib/LICENSE
28phpoauthlib/README.md
29phpoauthlib/composer.json
30phpoauthlib/examples/amazon.php
31phpoauthlib/examples/bitbucket.php
32phpoauthlib/examples/bitly.php
33phpoauthlib/examples/bootstrap.php
34phpoauthlib/examples/box.php
35phpoauthlib/examples/dailymotion.php
36phpoauthlib/examples/dropbox.php
37phpoauthlib/examples/etsy.php
38phpoauthlib/examples/facebook.php
39phpoauthlib/examples/fitbit.php
40phpoauthlib/examples/flickr.php
41phpoauthlib/examples/foursquare.php
42phpoauthlib/examples/github.php
43phpoauthlib/examples/google.php
44phpoauthlib/examples/init.example.php
45phpoauthlib/examples/instagram.php
46phpoauthlib/examples/linkedin.php
47phpoauthlib/examples/mailchimp.php
48phpoauthlib/examples/microsoft.php
49phpoauthlib/examples/paypal.php
50phpoauthlib/examples/pocket.php
51phpoauthlib/examples/reddit.php
52phpoauthlib/examples/runkeeper.php
53phpoauthlib/examples/scoopit.php
54phpoauthlib/examples/soundcloud.php
55phpoauthlib/examples/tumblr.php
56phpoauthlib/examples/twitter.php
57phpoauthlib/examples/yahoo.php
58phpoauthlib/phpunit.xml.dist
59phpoauthlib/src/OAuth/Common/AutoLoader.php
60phpoauthlib/src/OAuth/Common/Consumer/Credentials.php
61phpoauthlib/src/OAuth/Common/Consumer/CredentialsInterface.php
62phpoauthlib/src/OAuth/Common/Exception/Exception.php
63phpoauthlib/src/OAuth/Common/Http/Client/AbstractClient.php
64phpoauthlib/src/OAuth/Common/Http/Client/ClientInterface.php
65phpoauthlib/src/OAuth/Common/Http/Client/CurlClient.php
66phpoauthlib/src/OAuth/Common/Http/Client/StreamClient.php
67phpoauthlib/src/OAuth/Common/Http/Exception/TokenResponseException.php
68phpoauthlib/src/OAuth/Common/Http/Uri/Uri.php
69phpoauthlib/src/OAuth/Common/Http/Uri/UriFactory.php
70phpoauthlib/src/OAuth/Common/Http/Uri/UriFactoryInterface.php
71phpoauthlib/src/OAuth/Common/Http/Uri/UriInterface.php
72phpoauthlib/src/OAuth/Common/Service/AbstractService.php
73phpoauthlib/src/OAuth/Common/Service/ServiceInterface.php
74phpoauthlib/src/OAuth/Common/Storage/Exception/AuthorizationStateNotFoundException.php
75phpoauthlib/src/OAuth/Common/Storage/Exception/StorageException.php
76phpoauthlib/src/OAuth/Common/Storage/Exception/TokenNotFoundException.php
77phpoauthlib/src/OAuth/Common/Storage/Memory.php
78phpoauthlib/src/OAuth/Common/Storage/Redis.php
79phpoauthlib/src/OAuth/Common/Storage/Session.php
80phpoauthlib/src/OAuth/Common/Storage/SymfonySession.php
81phpoauthlib/src/OAuth/Common/Storage/TokenStorageInterface.php
82phpoauthlib/src/OAuth/Common/Token/AbstractToken.php
83phpoauthlib/src/OAuth/Common/Token/Exception/ExpiredTokenException.php
84phpoauthlib/src/OAuth/Common/Token/TokenInterface.php
85phpoauthlib/src/OAuth/OAuth1/Service/AbstractService.php
86phpoauthlib/src/OAuth/OAuth1/Service/BitBucket.php
87phpoauthlib/src/OAuth/OAuth1/Service/Etsy.php
88phpoauthlib/src/OAuth/OAuth1/Service/FitBit.php
89phpoauthlib/src/OAuth/OAuth1/Service/Flickr.php
90phpoauthlib/src/OAuth/OAuth1/Service/ScoopIt.php
91phpoauthlib/src/OAuth/OAuth1/Service/ServiceInterface.php
92phpoauthlib/src/OAuth/OAuth1/Service/Tumblr.php
93phpoauthlib/src/OAuth/OAuth1/Service/Twitter.php
94phpoauthlib/src/OAuth/OAuth1/Service/Xing.php
95phpoauthlib/src/OAuth/OAuth1/Service/Yahoo.php
96phpoauthlib/src/OAuth/OAuth1/Signature/Exception/UnsupportedHashAlgorithmException.php
97phpoauthlib/src/OAuth/OAuth1/Signature/Signature.php
98phpoauthlib/src/OAuth/OAuth1/Signature/SignatureInterface.php
99phpoauthlib/src/OAuth/OAuth1/Token/StdOAuth1Token.php
100phpoauthlib/src/OAuth/OAuth1/Token/TokenInterface.php
101phpoauthlib/src/OAuth/OAuth2/Service/AbstractService.php
102phpoauthlib/src/OAuth/OAuth2/Service/Amazon.php
103phpoauthlib/src/OAuth/OAuth2/Service/Auth0.php
104phpoauthlib/src/OAuth/OAuth2/Service/Bitly.php
105phpoauthlib/src/OAuth/OAuth2/Service/Box.php
106phpoauthlib/src/OAuth/OAuth2/Service/Dailymotion.php
107phpoauthlib/src/OAuth/OAuth2/Service/Dataporten.php
108phpoauthlib/src/OAuth/OAuth2/Service/Dropbox.php
109phpoauthlib/src/OAuth/OAuth2/Service/Exception/InvalidAccessTypeException.php
110phpoauthlib/src/OAuth/OAuth2/Service/Exception/InvalidAuthorizationStateException.php
111phpoauthlib/src/OAuth/OAuth2/Service/Exception/InvalidScopeException.php
112phpoauthlib/src/OAuth/OAuth2/Service/Exception/InvalidServiceConfigurationException.php
113phpoauthlib/src/OAuth/OAuth2/Service/Exception/MissingRefreshTokenException.php
114phpoauthlib/src/OAuth/OAuth2/Service/Facebook.php
115phpoauthlib/src/OAuth/OAuth2/Service/Foursquare.php
116phpoauthlib/src/OAuth/OAuth2/Service/Generic.php
117phpoauthlib/src/OAuth/OAuth2/Service/GitHub.php
118phpoauthlib/src/OAuth/OAuth2/Service/Google.php
119phpoauthlib/src/OAuth/OAuth2/Service/Harvest.php
120phpoauthlib/src/OAuth/OAuth2/Service/Heroku.php
121phpoauthlib/src/OAuth/OAuth2/Service/Instagram.php
122phpoauthlib/src/OAuth/OAuth2/Service/Keycloak.php
123phpoauthlib/src/OAuth/OAuth2/Service/Linkedin.php
124phpoauthlib/src/OAuth/OAuth2/Service/Mailchimp.php
125phpoauthlib/src/OAuth/OAuth2/Service/Microsoft.php
126phpoauthlib/src/OAuth/OAuth2/Service/Paypal.php
127phpoauthlib/src/OAuth/OAuth2/Service/Pocket.php
128phpoauthlib/src/OAuth/OAuth2/Service/Reddit.php
129phpoauthlib/src/OAuth/OAuth2/Service/RunKeeper.php
130phpoauthlib/src/OAuth/OAuth2/Service/Salesforce.php
131phpoauthlib/src/OAuth/OAuth2/Service/ServiceInterface.php
132phpoauthlib/src/OAuth/OAuth2/Service/SoundCloud.php
133phpoauthlib/src/OAuth/OAuth2/Service/Vkontakte.php
134phpoauthlib/src/OAuth/OAuth2/Service/Yammer.php
135phpoauthlib/src/OAuth/OAuth2/Token/StdOAuth2Token.php
136phpoauthlib/src/OAuth/OAuth2/Token/TokenInterface.php
137phpoauthlib/src/OAuth/ServiceFactory.php
138phpoauthlib/src/OAuth/bootstrap.php
139phpoauthlib/tests/Mocks/Common/FakeProject/NS/SomeClass.php
140phpoauthlib/tests/Mocks/Common/Service/Mock.php
141phpoauthlib/tests/Mocks/OAuth1/Service/Fake.php
142phpoauthlib/tests/Mocks/OAuth1/Service/Mock.php
143phpoauthlib/tests/Mocks/OAuth2/Service/Fake.php
144phpoauthlib/tests/Mocks/OAuth2/Service/Mock.php
145phpoauthlib/tests/Unit/Common/AutoloaderTest.php
146phpoauthlib/tests/Unit/Common/Consumer/CredentialsTest.php
147phpoauthlib/tests/Unit/Common/Http/Client/AbstractClientTest.php
148phpoauthlib/tests/Unit/Common/Http/Client/CurlClientTest.php
149phpoauthlib/tests/Unit/Common/Http/Client/StreamClientTest.php
150phpoauthlib/tests/Unit/Common/Http/HttpClientsTest.php
151phpoauthlib/tests/Unit/Common/Http/Uri/UriFactoryTest.php
152phpoauthlib/tests/Unit/Common/Http/Uri/UriTest.php
153phpoauthlib/tests/Unit/Common/Service/AbstractServiceTest.php
154phpoauthlib/tests/Unit/Common/Storage/MemoryTest.php
155phpoauthlib/tests/Unit/Common/Storage/RedisTest.php
156phpoauthlib/tests/Unit/Common/Storage/SessionTest.php
157phpoauthlib/tests/Unit/Common/Storage/StorageTest.php
158phpoauthlib/tests/Unit/Common/Storage/SymfonySessionTest.php
159phpoauthlib/tests/Unit/Common/Token/AbstractTokenTest.php
160phpoauthlib/tests/Unit/OAuth1/Service/AbstractServiceTest.php
161phpoauthlib/tests/Unit/OAuth1/Service/BitBucketTest.php
162phpoauthlib/tests/Unit/OAuth1/Service/EtsyTest.php
163phpoauthlib/tests/Unit/OAuth1/Service/FitBitTest.php
164phpoauthlib/tests/Unit/OAuth1/Service/FlickrTest.php
165phpoauthlib/tests/Unit/OAuth1/Service/ScoopItTest.php
166phpoauthlib/tests/Unit/OAuth1/Service/TumblrTest.php
167phpoauthlib/tests/Unit/OAuth1/Service/TwitterTest.php
168phpoauthlib/tests/Unit/OAuth1/Service/XingTest.php
169phpoauthlib/tests/Unit/OAuth1/Service/YahooTest.php
170phpoauthlib/tests/Unit/OAuth1/Signature/SignatureTest.php
171phpoauthlib/tests/Unit/OAuth1/Token/StdOAuth1TokenTest.php
172phpoauthlib/tests/Unit/OAuth2/Service/AbstractServiceTest.php
173phpoauthlib/tests/Unit/OAuth2/Service/AmazonTest.php
174phpoauthlib/tests/Unit/OAuth2/Service/BitlyTest.php
175phpoauthlib/tests/Unit/OAuth2/Service/BoxTest.php
176phpoauthlib/tests/Unit/OAuth2/Service/DailymotionTest.php
177phpoauthlib/tests/Unit/OAuth2/Service/DropboxTest.php
178phpoauthlib/tests/Unit/OAuth2/Service/FacebookTest.php
179phpoauthlib/tests/Unit/OAuth2/Service/FoursquareTest.php
180phpoauthlib/tests/Unit/OAuth2/Service/GitHubTest.php
181phpoauthlib/tests/Unit/OAuth2/Service/GoogleTest.php
182phpoauthlib/tests/Unit/OAuth2/Service/HerokuTest.php
183phpoauthlib/tests/Unit/OAuth2/Service/InstagramTest.php
184phpoauthlib/tests/Unit/OAuth2/Service/LinkedinTest.php
185phpoauthlib/tests/Unit/OAuth2/Service/MailchimpTest.php
186phpoauthlib/tests/Unit/OAuth2/Service/MicrosoftTest.php
187phpoauthlib/tests/Unit/OAuth2/Service/PaypalTest.php
188phpoauthlib/tests/Unit/OAuth2/Service/RedditTest.php
189phpoauthlib/tests/Unit/OAuth2/Service/RunKeeperTest.php
190phpoauthlib/tests/Unit/OAuth2/Service/SoundCloudTest.php
191phpoauthlib/tests/Unit/OAuth2/Service/VkontakteTest.php
192phpoauthlib/tests/Unit/OAuth2/Service/YammerTest.php
193phpoauthlib/tests/Unit/ServiceFactoryTest.php
194phpoauthlib/tests/bootstrap.php
195