├── .github └── workflows │ └── test.yaml ├── .gitignore ├── .php-cs-fixer.dist.php ├── .scrutinizer.yml ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml.dist ├── src ├── Api │ ├── Contacts.php │ ├── IncomingRequests.php │ ├── Me.php │ ├── My.php │ ├── My │ │ ├── Status.php │ │ └── Tasks.php │ ├── Rooms.php │ └── Rooms │ │ ├── Files.php │ │ ├── Members.php │ │ ├── Messages.php │ │ └── Tasks.php ├── Chatwork.php ├── Client │ ├── Client.php │ ├── ClientFactory.php │ └── ClientInterface.php ├── Entity │ ├── Collection │ │ ├── AbstractCollection.php │ │ ├── CollectionInterface.php │ │ ├── EntityCollection.php │ │ └── MemberCollection.php │ ├── EntityInterface.php │ ├── Factory │ │ ├── AbstractFactory.php │ │ ├── FactoryInterface.php │ │ ├── FileFactory.php │ │ ├── IncomingRequestsFactory.php │ │ ├── MemberFactory.php │ │ ├── MessageFactory.php │ │ ├── RoomFactory.php │ │ ├── StatusFactory.php │ │ ├── TaskFactory.php │ │ └── UserFactory.php │ ├── File.php │ ├── IncomingRequest.php │ ├── Member.php │ ├── Message.php │ ├── Room.php │ ├── Status.php │ ├── Task.php │ └── User.php └── Exception │ ├── ChatworkApiException.php │ ├── ClientException.php │ ├── InvalidArgumentException.php │ ├── NoSupportApiException.php │ └── OutOfBoundsException.php └── tests ├── Api ├── ContactsTest.php ├── IncomingRequestsTest.php ├── MeTest.php ├── My │ ├── StatusTest.php │ └── TasksTest.php ├── MyTest.php ├── Rooms │ ├── FilesTest.php │ ├── MembersTest.php │ ├── MessagesTest.php │ └── TasksTest.php └── RoomsTest.php ├── Client └── ClientTest.php └── Entity ├── Factory ├── AbstractFactoryTest.php ├── FileFactoryTest.php ├── MemberFactoryTest.php ├── MessageFactoryTest.php ├── RoomFactoryTest.php ├── StatusFactoryTest.php ├── TaskFactoryTest.php └── UserFactoryTest.php └── RoomTest.php /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/.gitignore -------------------------------------------------------------------------------- /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Api/Contacts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/src/Api/Contacts.php -------------------------------------------------------------------------------- /src/Api/IncomingRequests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/src/Api/IncomingRequests.php -------------------------------------------------------------------------------- /src/Api/Me.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/src/Api/Me.php -------------------------------------------------------------------------------- /src/Api/My.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/src/Api/My.php -------------------------------------------------------------------------------- /src/Api/My/Status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/src/Api/My/Status.php -------------------------------------------------------------------------------- /src/Api/My/Tasks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/src/Api/My/Tasks.php -------------------------------------------------------------------------------- /src/Api/Rooms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/src/Api/Rooms.php -------------------------------------------------------------------------------- /src/Api/Rooms/Files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/src/Api/Rooms/Files.php -------------------------------------------------------------------------------- /src/Api/Rooms/Members.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/src/Api/Rooms/Members.php -------------------------------------------------------------------------------- /src/Api/Rooms/Messages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/src/Api/Rooms/Messages.php -------------------------------------------------------------------------------- /src/Api/Rooms/Tasks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/src/Api/Rooms/Tasks.php -------------------------------------------------------------------------------- /src/Chatwork.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/src/Chatwork.php -------------------------------------------------------------------------------- /src/Client/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/src/Client/Client.php -------------------------------------------------------------------------------- /src/Client/ClientFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/src/Client/ClientFactory.php -------------------------------------------------------------------------------- /src/Client/ClientInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/src/Client/ClientInterface.php -------------------------------------------------------------------------------- /src/Entity/Collection/AbstractCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/src/Entity/Collection/AbstractCollection.php -------------------------------------------------------------------------------- /src/Entity/Collection/CollectionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/src/Entity/Collection/CollectionInterface.php -------------------------------------------------------------------------------- /src/Entity/Collection/EntityCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/src/Entity/Collection/EntityCollection.php -------------------------------------------------------------------------------- /src/Entity/Collection/MemberCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/src/Entity/Collection/MemberCollection.php -------------------------------------------------------------------------------- /src/Entity/EntityInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/src/Entity/EntityInterface.php -------------------------------------------------------------------------------- /src/Entity/Factory/AbstractFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/src/Entity/Factory/AbstractFactory.php -------------------------------------------------------------------------------- /src/Entity/Factory/FactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/src/Entity/Factory/FactoryInterface.php -------------------------------------------------------------------------------- /src/Entity/Factory/FileFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/src/Entity/Factory/FileFactory.php -------------------------------------------------------------------------------- /src/Entity/Factory/IncomingRequestsFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/src/Entity/Factory/IncomingRequestsFactory.php -------------------------------------------------------------------------------- /src/Entity/Factory/MemberFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/src/Entity/Factory/MemberFactory.php -------------------------------------------------------------------------------- /src/Entity/Factory/MessageFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/src/Entity/Factory/MessageFactory.php -------------------------------------------------------------------------------- /src/Entity/Factory/RoomFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/src/Entity/Factory/RoomFactory.php -------------------------------------------------------------------------------- /src/Entity/Factory/StatusFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/src/Entity/Factory/StatusFactory.php -------------------------------------------------------------------------------- /src/Entity/Factory/TaskFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/src/Entity/Factory/TaskFactory.php -------------------------------------------------------------------------------- /src/Entity/Factory/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/src/Entity/Factory/UserFactory.php -------------------------------------------------------------------------------- /src/Entity/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/src/Entity/File.php -------------------------------------------------------------------------------- /src/Entity/IncomingRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/src/Entity/IncomingRequest.php -------------------------------------------------------------------------------- /src/Entity/Member.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/src/Entity/Member.php -------------------------------------------------------------------------------- /src/Entity/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/src/Entity/Message.php -------------------------------------------------------------------------------- /src/Entity/Room.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/src/Entity/Room.php -------------------------------------------------------------------------------- /src/Entity/Status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/src/Entity/Status.php -------------------------------------------------------------------------------- /src/Entity/Task.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/src/Entity/Task.php -------------------------------------------------------------------------------- /src/Entity/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/src/Entity/User.php -------------------------------------------------------------------------------- /src/Exception/ChatworkApiException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/src/Exception/ChatworkApiException.php -------------------------------------------------------------------------------- /src/Exception/ClientException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/src/Exception/ClientException.php -------------------------------------------------------------------------------- /src/Exception/InvalidArgumentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/src/Exception/InvalidArgumentException.php -------------------------------------------------------------------------------- /src/Exception/NoSupportApiException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/src/Exception/NoSupportApiException.php -------------------------------------------------------------------------------- /src/Exception/OutOfBoundsException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/src/Exception/OutOfBoundsException.php -------------------------------------------------------------------------------- /tests/Api/ContactsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/tests/Api/ContactsTest.php -------------------------------------------------------------------------------- /tests/Api/IncomingRequestsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/tests/Api/IncomingRequestsTest.php -------------------------------------------------------------------------------- /tests/Api/MeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/tests/Api/MeTest.php -------------------------------------------------------------------------------- /tests/Api/My/StatusTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/tests/Api/My/StatusTest.php -------------------------------------------------------------------------------- /tests/Api/My/TasksTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/tests/Api/My/TasksTest.php -------------------------------------------------------------------------------- /tests/Api/MyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/tests/Api/MyTest.php -------------------------------------------------------------------------------- /tests/Api/Rooms/FilesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/tests/Api/Rooms/FilesTest.php -------------------------------------------------------------------------------- /tests/Api/Rooms/MembersTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/tests/Api/Rooms/MembersTest.php -------------------------------------------------------------------------------- /tests/Api/Rooms/MessagesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/tests/Api/Rooms/MessagesTest.php -------------------------------------------------------------------------------- /tests/Api/Rooms/TasksTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/tests/Api/Rooms/TasksTest.php -------------------------------------------------------------------------------- /tests/Api/RoomsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/tests/Api/RoomsTest.php -------------------------------------------------------------------------------- /tests/Client/ClientTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/tests/Client/ClientTest.php -------------------------------------------------------------------------------- /tests/Entity/Factory/AbstractFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/tests/Entity/Factory/AbstractFactoryTest.php -------------------------------------------------------------------------------- /tests/Entity/Factory/FileFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/tests/Entity/Factory/FileFactoryTest.php -------------------------------------------------------------------------------- /tests/Entity/Factory/MemberFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/tests/Entity/Factory/MemberFactoryTest.php -------------------------------------------------------------------------------- /tests/Entity/Factory/MessageFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/tests/Entity/Factory/MessageFactoryTest.php -------------------------------------------------------------------------------- /tests/Entity/Factory/RoomFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/tests/Entity/Factory/RoomFactoryTest.php -------------------------------------------------------------------------------- /tests/Entity/Factory/StatusFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/tests/Entity/Factory/StatusFactoryTest.php -------------------------------------------------------------------------------- /tests/Entity/Factory/TaskFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/tests/Entity/Factory/TaskFactoryTest.php -------------------------------------------------------------------------------- /tests/Entity/Factory/UserFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/tests/Entity/Factory/UserFactoryTest.php -------------------------------------------------------------------------------- /tests/Entity/RoomTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polidog/php-chatwork-api/HEAD/tests/Entity/RoomTest.php --------------------------------------------------------------------------------