├── .gitattributes ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── docker-compose.cli.yml ├── docker-compose.yml ├── docker └── Dockerfile ├── infection.json.dist └── src ├── Exception ├── AccessDeniedException.php ├── FunctionNotFoundException.php ├── MessageException.php ├── NotCallableResourceException.php └── NotFoundStatusException.php ├── Factory └── ElementFactory.php ├── Model ├── Authentication.php ├── Element.php ├── Resource.php ├── ResourceCall.php ├── Resources.php └── Server.php ├── Mta.php ├── Response └── HttpStatusValidator.php ├── Service └── MtaService.php ├── Transformer └── ElementTransformer.php └── Util └── Input.php /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multitheftauto/mtasa-php-sdk/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | vendor/ 3 | .php_cs.cache 4 | infection.log 5 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multitheftauto/mtasa-php-sdk/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multitheftauto/mtasa-php-sdk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multitheftauto/mtasa-php-sdk/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multitheftauto/mtasa-php-sdk/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multitheftauto/mtasa-php-sdk/HEAD/composer.lock -------------------------------------------------------------------------------- /docker-compose.cli.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multitheftauto/mtasa-php-sdk/HEAD/docker-compose.cli.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multitheftauto/mtasa-php-sdk/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multitheftauto/mtasa-php-sdk/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /infection.json.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multitheftauto/mtasa-php-sdk/HEAD/infection.json.dist -------------------------------------------------------------------------------- /src/Exception/AccessDeniedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multitheftauto/mtasa-php-sdk/HEAD/src/Exception/AccessDeniedException.php -------------------------------------------------------------------------------- /src/Exception/FunctionNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multitheftauto/mtasa-php-sdk/HEAD/src/Exception/FunctionNotFoundException.php -------------------------------------------------------------------------------- /src/Exception/MessageException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multitheftauto/mtasa-php-sdk/HEAD/src/Exception/MessageException.php -------------------------------------------------------------------------------- /src/Exception/NotCallableResourceException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multitheftauto/mtasa-php-sdk/HEAD/src/Exception/NotCallableResourceException.php -------------------------------------------------------------------------------- /src/Exception/NotFoundStatusException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multitheftauto/mtasa-php-sdk/HEAD/src/Exception/NotFoundStatusException.php -------------------------------------------------------------------------------- /src/Factory/ElementFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multitheftauto/mtasa-php-sdk/HEAD/src/Factory/ElementFactory.php -------------------------------------------------------------------------------- /src/Model/Authentication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multitheftauto/mtasa-php-sdk/HEAD/src/Model/Authentication.php -------------------------------------------------------------------------------- /src/Model/Element.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multitheftauto/mtasa-php-sdk/HEAD/src/Model/Element.php -------------------------------------------------------------------------------- /src/Model/Resource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multitheftauto/mtasa-php-sdk/HEAD/src/Model/Resource.php -------------------------------------------------------------------------------- /src/Model/ResourceCall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multitheftauto/mtasa-php-sdk/HEAD/src/Model/ResourceCall.php -------------------------------------------------------------------------------- /src/Model/Resources.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multitheftauto/mtasa-php-sdk/HEAD/src/Model/Resources.php -------------------------------------------------------------------------------- /src/Model/Server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multitheftauto/mtasa-php-sdk/HEAD/src/Model/Server.php -------------------------------------------------------------------------------- /src/Mta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multitheftauto/mtasa-php-sdk/HEAD/src/Mta.php -------------------------------------------------------------------------------- /src/Response/HttpStatusValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multitheftauto/mtasa-php-sdk/HEAD/src/Response/HttpStatusValidator.php -------------------------------------------------------------------------------- /src/Service/MtaService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multitheftauto/mtasa-php-sdk/HEAD/src/Service/MtaService.php -------------------------------------------------------------------------------- /src/Transformer/ElementTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multitheftauto/mtasa-php-sdk/HEAD/src/Transformer/ElementTransformer.php -------------------------------------------------------------------------------- /src/Util/Input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multitheftauto/mtasa-php-sdk/HEAD/src/Util/Input.php --------------------------------------------------------------------------------