├── .gitignore ├── CHANGELOG.md ├── README.md ├── composer.json ├── phpunit.xml.dist ├── src └── HelpScoutApp │ ├── ClassLoader.php │ ├── DynamicApp.php │ └── model │ ├── Conversation.php │ ├── Customer.php │ ├── Mailbox.php │ └── User.php └── tests └── HelpScoutApp └── model └── UserTest.php /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | /composer.lock 3 | /phpunit.xml 4 | /vendor 5 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpscout/helpscout-apps-php/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpscout/helpscout-apps-php/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpscout/helpscout-apps-php/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpscout/helpscout-apps-php/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/HelpScoutApp/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpscout/helpscout-apps-php/HEAD/src/HelpScoutApp/ClassLoader.php -------------------------------------------------------------------------------- /src/HelpScoutApp/DynamicApp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpscout/helpscout-apps-php/HEAD/src/HelpScoutApp/DynamicApp.php -------------------------------------------------------------------------------- /src/HelpScoutApp/model/Conversation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpscout/helpscout-apps-php/HEAD/src/HelpScoutApp/model/Conversation.php -------------------------------------------------------------------------------- /src/HelpScoutApp/model/Customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpscout/helpscout-apps-php/HEAD/src/HelpScoutApp/model/Customer.php -------------------------------------------------------------------------------- /src/HelpScoutApp/model/Mailbox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpscout/helpscout-apps-php/HEAD/src/HelpScoutApp/model/Mailbox.php -------------------------------------------------------------------------------- /src/HelpScoutApp/model/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpscout/helpscout-apps-php/HEAD/src/HelpScoutApp/model/User.php -------------------------------------------------------------------------------- /tests/HelpScoutApp/model/UserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpscout/helpscout-apps-php/HEAD/tests/HelpScoutApp/model/UserTest.php --------------------------------------------------------------------------------