gitextract__ze4uh7e/ ├── .github/ │ ├── ISSUE_TEMPLATE.md │ └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .scrutinizer.yml ├── .styleci.yml ├── .travis.yml ├── LICENSE ├── Readme.md ├── Upgrade.md ├── composer.json ├── phpunit.xml.dist ├── src/ │ ├── AccessToken.php │ ├── Authenticator.php │ ├── AuthenticatorInterface.php │ ├── Exception/ │ │ ├── InvalidArgumentException.php │ │ ├── LinkedInException.php │ │ ├── LinkedInTransferException.php │ │ └── LoginError.php │ ├── Http/ │ │ ├── CurrentUrlGeneratorInterface.php │ │ ├── GlobalVariableGetter.php │ │ ├── LinkedInUrlGeneratorInterface.php │ │ ├── RequestManager.php │ │ ├── RequestManagerInterface.php │ │ ├── ResponseConverter.php │ │ ├── UrlGenerator.php │ │ └── UrlGeneratorInterface.php │ ├── LinkedIn.php │ ├── LinkedInInterface.php │ └── Storage/ │ ├── BaseDataStorage.php │ ├── DataStorageInterface.php │ ├── IlluminateSessionStorage.php │ └── SessionStorage.php └── tests/ ├── AccessTokenTest.php ├── AuthenticatorTest.php ├── Exceptions/ │ └── LoginErrorTest.php ├── Http/ │ ├── ResponseConverterTest.php │ └── UrlGeneratorTest.php ├── LinkedInTest.php └── Storage/ ├── IlluminateSessionStorageTest.php └── SessionStorageTest.php