├── .codeclimate.yml ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── misc_issue.md ├── .gitignore ├── .scrutinizer.yml ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── composer.json ├── docs ├── account.md ├── boards.md ├── cookes.md ├── custom-request.md ├── errors-handling.md ├── inbox.md ├── interests-and-topics.md ├── keywords.md ├── pagination.md ├── pinners.md ├── pins.md ├── proxy.md └── search.md ├── examples ├── auto_pins.php ├── comments_repins.php ├── followers.php ├── multiple_accounts_and_proxy.php └── pins_parser.php ├── logo.jpg ├── phpunit.xml ├── phpunit.xml.dist ├── src ├── Api │ ├── Contracts │ │ ├── HttpClient.php │ │ └── PaginatedResponse.php │ ├── CurlHttpClient.php │ ├── Error.php │ ├── Forms │ │ ├── Form.php │ │ ├── Profile.php │ │ └── Registration.php │ ├── Providers │ │ ├── Auth.php │ │ ├── BoardSections.php │ │ ├── Boards.php │ │ ├── Comments.php │ │ ├── Core │ │ │ ├── EntityProvider.php │ │ │ ├── FollowableProvider.php │ │ │ ├── Provider.php │ │ │ └── ProviderWrapper.php │ │ ├── Inbox.php │ │ ├── Interests.php │ │ ├── Keywords.php │ │ ├── Password.php │ │ ├── Pinners.php │ │ ├── Pins.php │ │ ├── Suggestions.php │ │ ├── Topics.php │ │ └── User.php │ ├── ProvidersContainer.php │ ├── Request.php │ ├── Response.php │ ├── SearchResponse.php │ └── Traits │ │ ├── BoardInvites.php │ │ ├── CanBeDeleted.php │ │ ├── CanBeShared.php │ │ ├── HandlesRequest.php │ │ ├── HasEntityIdName.php │ │ ├── HasPagination.php │ │ ├── HasProfileSettings.php │ │ ├── HasRelatedTopics.php │ │ ├── ResolvesCurrentUser.php │ │ ├── Searchable.php │ │ ├── SendsMessages.php │ │ ├── SendsRegisterActions.php │ │ ├── TryIt.php │ │ └── UploadsImages.php ├── Exceptions │ ├── AuthRequired.php │ ├── InvalidRequest.php │ ├── PinterestBotException.php │ ├── WrongFollowingType.php │ └── WrongProvider.php ├── Factories │ └── PinterestBot.php └── Helpers │ ├── Cookies.php │ ├── FileHelper.php │ ├── Pagination.php │ ├── UrlBuilder.php │ └── functions.php └── tests ├── Bot ├── CookiesTest.php ├── CurlHttpClientTest.php ├── FormTest.php ├── PaginationTest.php ├── Providers │ ├── ApiRequestAssertions.php │ ├── AuthTest.php │ ├── BoardInvitesTest.php │ ├── BoardSectionsTest.php │ ├── BoardsTest.php │ ├── CommentsTest.php │ ├── Core │ │ ├── ProviderTest.php │ │ ├── ProviderWrapperTest.php │ │ └── ProvidersContainerTest.php │ ├── InboxTest.php │ ├── InterestsTest.php │ ├── KeywordsTest.php │ ├── LoginTest.php │ ├── PasswordTest.php │ ├── PinnersTest.php │ ├── PinsTest.php │ ├── ProfileSettingsTest.php │ ├── ProviderBaseTest.php │ ├── RegistrationTest.php │ ├── SharedPinTest.php │ ├── SuggestionsTest.php │ ├── TopicsTest.php │ ├── TryItTest.php │ └── UserTest.php ├── RequestTest.php ├── ResolvesCurrentUsernameTest.php ├── ResponseTest.php └── SendsMessagesTest.php ├── ErrorTest.php └── Helpers ├── CookiesHelper.php ├── ReflectionHelper.php └── ResponseHelper.php /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/misc_issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/.github/ISSUE_TEMPLATE/misc_issue.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/composer.json -------------------------------------------------------------------------------- /docs/account.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/docs/account.md -------------------------------------------------------------------------------- /docs/boards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/docs/boards.md -------------------------------------------------------------------------------- /docs/cookes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/docs/cookes.md -------------------------------------------------------------------------------- /docs/custom-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/docs/custom-request.md -------------------------------------------------------------------------------- /docs/errors-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/docs/errors-handling.md -------------------------------------------------------------------------------- /docs/inbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/docs/inbox.md -------------------------------------------------------------------------------- /docs/interests-and-topics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/docs/interests-and-topics.md -------------------------------------------------------------------------------- /docs/keywords.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/docs/keywords.md -------------------------------------------------------------------------------- /docs/pagination.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/docs/pagination.md -------------------------------------------------------------------------------- /docs/pinners.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/docs/pinners.md -------------------------------------------------------------------------------- /docs/pins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/docs/pins.md -------------------------------------------------------------------------------- /docs/proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/docs/proxy.md -------------------------------------------------------------------------------- /docs/search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/docs/search.md -------------------------------------------------------------------------------- /examples/auto_pins.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/examples/auto_pins.php -------------------------------------------------------------------------------- /examples/comments_repins.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/examples/comments_repins.php -------------------------------------------------------------------------------- /examples/followers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/examples/followers.php -------------------------------------------------------------------------------- /examples/multiple_accounts_and_proxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/examples/multiple_accounts_and_proxy.php -------------------------------------------------------------------------------- /examples/pins_parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/examples/pins_parser.php -------------------------------------------------------------------------------- /logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/logo.jpg -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/phpunit.xml -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Api/Contracts/HttpClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/src/Api/Contracts/HttpClient.php -------------------------------------------------------------------------------- /src/Api/Contracts/PaginatedResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/src/Api/Contracts/PaginatedResponse.php -------------------------------------------------------------------------------- /src/Api/CurlHttpClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/src/Api/CurlHttpClient.php -------------------------------------------------------------------------------- /src/Api/Error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/src/Api/Error.php -------------------------------------------------------------------------------- /src/Api/Forms/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/src/Api/Forms/Form.php -------------------------------------------------------------------------------- /src/Api/Forms/Profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/src/Api/Forms/Profile.php -------------------------------------------------------------------------------- /src/Api/Forms/Registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/src/Api/Forms/Registration.php -------------------------------------------------------------------------------- /src/Api/Providers/Auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/src/Api/Providers/Auth.php -------------------------------------------------------------------------------- /src/Api/Providers/BoardSections.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/src/Api/Providers/BoardSections.php -------------------------------------------------------------------------------- /src/Api/Providers/Boards.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/src/Api/Providers/Boards.php -------------------------------------------------------------------------------- /src/Api/Providers/Comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/src/Api/Providers/Comments.php -------------------------------------------------------------------------------- /src/Api/Providers/Core/EntityProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/src/Api/Providers/Core/EntityProvider.php -------------------------------------------------------------------------------- /src/Api/Providers/Core/FollowableProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/src/Api/Providers/Core/FollowableProvider.php -------------------------------------------------------------------------------- /src/Api/Providers/Core/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/src/Api/Providers/Core/Provider.php -------------------------------------------------------------------------------- /src/Api/Providers/Core/ProviderWrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/src/Api/Providers/Core/ProviderWrapper.php -------------------------------------------------------------------------------- /src/Api/Providers/Inbox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/src/Api/Providers/Inbox.php -------------------------------------------------------------------------------- /src/Api/Providers/Interests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/src/Api/Providers/Interests.php -------------------------------------------------------------------------------- /src/Api/Providers/Keywords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/src/Api/Providers/Keywords.php -------------------------------------------------------------------------------- /src/Api/Providers/Password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/src/Api/Providers/Password.php -------------------------------------------------------------------------------- /src/Api/Providers/Pinners.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/src/Api/Providers/Pinners.php -------------------------------------------------------------------------------- /src/Api/Providers/Pins.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/src/Api/Providers/Pins.php -------------------------------------------------------------------------------- /src/Api/Providers/Suggestions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/src/Api/Providers/Suggestions.php -------------------------------------------------------------------------------- /src/Api/Providers/Topics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/src/Api/Providers/Topics.php -------------------------------------------------------------------------------- /src/Api/Providers/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/src/Api/Providers/User.php -------------------------------------------------------------------------------- /src/Api/ProvidersContainer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/src/Api/ProvidersContainer.php -------------------------------------------------------------------------------- /src/Api/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/src/Api/Request.php -------------------------------------------------------------------------------- /src/Api/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/src/Api/Response.php -------------------------------------------------------------------------------- /src/Api/SearchResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/src/Api/SearchResponse.php -------------------------------------------------------------------------------- /src/Api/Traits/BoardInvites.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/src/Api/Traits/BoardInvites.php -------------------------------------------------------------------------------- /src/Api/Traits/CanBeDeleted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/src/Api/Traits/CanBeDeleted.php -------------------------------------------------------------------------------- /src/Api/Traits/CanBeShared.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/src/Api/Traits/CanBeShared.php -------------------------------------------------------------------------------- /src/Api/Traits/HandlesRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/src/Api/Traits/HandlesRequest.php -------------------------------------------------------------------------------- /src/Api/Traits/HasEntityIdName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/src/Api/Traits/HasEntityIdName.php -------------------------------------------------------------------------------- /src/Api/Traits/HasPagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/src/Api/Traits/HasPagination.php -------------------------------------------------------------------------------- /src/Api/Traits/HasProfileSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/src/Api/Traits/HasProfileSettings.php -------------------------------------------------------------------------------- /src/Api/Traits/HasRelatedTopics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/src/Api/Traits/HasRelatedTopics.php -------------------------------------------------------------------------------- /src/Api/Traits/ResolvesCurrentUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/src/Api/Traits/ResolvesCurrentUser.php -------------------------------------------------------------------------------- /src/Api/Traits/Searchable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/src/Api/Traits/Searchable.php -------------------------------------------------------------------------------- /src/Api/Traits/SendsMessages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/src/Api/Traits/SendsMessages.php -------------------------------------------------------------------------------- /src/Api/Traits/SendsRegisterActions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/src/Api/Traits/SendsRegisterActions.php -------------------------------------------------------------------------------- /src/Api/Traits/TryIt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/src/Api/Traits/TryIt.php -------------------------------------------------------------------------------- /src/Api/Traits/UploadsImages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/src/Api/Traits/UploadsImages.php -------------------------------------------------------------------------------- /src/Exceptions/AuthRequired.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/src/Exceptions/AuthRequired.php -------------------------------------------------------------------------------- /src/Exceptions/InvalidRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/src/Exceptions/InvalidRequest.php -------------------------------------------------------------------------------- /src/Exceptions/PinterestBotException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/src/Exceptions/PinterestBotException.php -------------------------------------------------------------------------------- /src/Exceptions/WrongFollowingType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/src/Exceptions/WrongFollowingType.php -------------------------------------------------------------------------------- /src/Exceptions/WrongProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/src/Exceptions/WrongProvider.php -------------------------------------------------------------------------------- /src/Factories/PinterestBot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/src/Factories/PinterestBot.php -------------------------------------------------------------------------------- /src/Helpers/Cookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/src/Helpers/Cookies.php -------------------------------------------------------------------------------- /src/Helpers/FileHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/src/Helpers/FileHelper.php -------------------------------------------------------------------------------- /src/Helpers/Pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/src/Helpers/Pagination.php -------------------------------------------------------------------------------- /src/Helpers/UrlBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/src/Helpers/UrlBuilder.php -------------------------------------------------------------------------------- /src/Helpers/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/src/Helpers/functions.php -------------------------------------------------------------------------------- /tests/Bot/CookiesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/tests/Bot/CookiesTest.php -------------------------------------------------------------------------------- /tests/Bot/CurlHttpClientTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/tests/Bot/CurlHttpClientTest.php -------------------------------------------------------------------------------- /tests/Bot/FormTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/tests/Bot/FormTest.php -------------------------------------------------------------------------------- /tests/Bot/PaginationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/tests/Bot/PaginationTest.php -------------------------------------------------------------------------------- /tests/Bot/Providers/ApiRequestAssertions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/tests/Bot/Providers/ApiRequestAssertions.php -------------------------------------------------------------------------------- /tests/Bot/Providers/AuthTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/tests/Bot/Providers/AuthTest.php -------------------------------------------------------------------------------- /tests/Bot/Providers/BoardInvitesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/tests/Bot/Providers/BoardInvitesTest.php -------------------------------------------------------------------------------- /tests/Bot/Providers/BoardSectionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/tests/Bot/Providers/BoardSectionsTest.php -------------------------------------------------------------------------------- /tests/Bot/Providers/BoardsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/tests/Bot/Providers/BoardsTest.php -------------------------------------------------------------------------------- /tests/Bot/Providers/CommentsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/tests/Bot/Providers/CommentsTest.php -------------------------------------------------------------------------------- /tests/Bot/Providers/Core/ProviderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/tests/Bot/Providers/Core/ProviderTest.php -------------------------------------------------------------------------------- /tests/Bot/Providers/Core/ProviderWrapperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/tests/Bot/Providers/Core/ProviderWrapperTest.php -------------------------------------------------------------------------------- /tests/Bot/Providers/Core/ProvidersContainerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/tests/Bot/Providers/Core/ProvidersContainerTest.php -------------------------------------------------------------------------------- /tests/Bot/Providers/InboxTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/tests/Bot/Providers/InboxTest.php -------------------------------------------------------------------------------- /tests/Bot/Providers/InterestsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/tests/Bot/Providers/InterestsTest.php -------------------------------------------------------------------------------- /tests/Bot/Providers/KeywordsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/tests/Bot/Providers/KeywordsTest.php -------------------------------------------------------------------------------- /tests/Bot/Providers/LoginTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/tests/Bot/Providers/LoginTest.php -------------------------------------------------------------------------------- /tests/Bot/Providers/PasswordTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/tests/Bot/Providers/PasswordTest.php -------------------------------------------------------------------------------- /tests/Bot/Providers/PinnersTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/tests/Bot/Providers/PinnersTest.php -------------------------------------------------------------------------------- /tests/Bot/Providers/PinsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/tests/Bot/Providers/PinsTest.php -------------------------------------------------------------------------------- /tests/Bot/Providers/ProfileSettingsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/tests/Bot/Providers/ProfileSettingsTest.php -------------------------------------------------------------------------------- /tests/Bot/Providers/ProviderBaseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/tests/Bot/Providers/ProviderBaseTest.php -------------------------------------------------------------------------------- /tests/Bot/Providers/RegistrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/tests/Bot/Providers/RegistrationTest.php -------------------------------------------------------------------------------- /tests/Bot/Providers/SharedPinTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/tests/Bot/Providers/SharedPinTest.php -------------------------------------------------------------------------------- /tests/Bot/Providers/SuggestionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/tests/Bot/Providers/SuggestionsTest.php -------------------------------------------------------------------------------- /tests/Bot/Providers/TopicsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/tests/Bot/Providers/TopicsTest.php -------------------------------------------------------------------------------- /tests/Bot/Providers/TryItTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/tests/Bot/Providers/TryItTest.php -------------------------------------------------------------------------------- /tests/Bot/Providers/UserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/tests/Bot/Providers/UserTest.php -------------------------------------------------------------------------------- /tests/Bot/RequestTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/tests/Bot/RequestTest.php -------------------------------------------------------------------------------- /tests/Bot/ResolvesCurrentUsernameTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/tests/Bot/ResolvesCurrentUsernameTest.php -------------------------------------------------------------------------------- /tests/Bot/ResponseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/tests/Bot/ResponseTest.php -------------------------------------------------------------------------------- /tests/Bot/SendsMessagesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/tests/Bot/SendsMessagesTest.php -------------------------------------------------------------------------------- /tests/ErrorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/tests/ErrorTest.php -------------------------------------------------------------------------------- /tests/Helpers/CookiesHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/tests/Helpers/CookiesHelper.php -------------------------------------------------------------------------------- /tests/Helpers/ReflectionHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/tests/Helpers/ReflectionHelper.php -------------------------------------------------------------------------------- /tests/Helpers/ResponseHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seregazhuk/php-pinterest-bot/HEAD/tests/Helpers/ResponseHelper.php --------------------------------------------------------------------------------