gitextract_ygetwf0b/ ├── .github/ │ ├── dependabot.yml │ └── workflows/ │ └── test.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── composer.json ├── docker-compose.yml ├── phpcs.xml.dist ├── phpunit-watcher.yml ├── phpunit.xml.dist ├── psalm.xml ├── src/ │ └── Api/ │ ├── AbstractStruct.php │ ├── Client/ │ │ └── Exception.php │ ├── Client.php │ ├── Exception.php │ ├── InternalClient.php │ ├── Operator/ │ │ ├── Aps.php │ │ ├── Certificate.php │ │ ├── Customer.php │ │ ├── Database.php │ │ ├── DatabaseServer.php │ │ ├── Dns.php │ │ ├── DnsTemplate.php │ │ ├── EventLog.php │ │ ├── Ip.php │ │ ├── Locale.php │ │ ├── LogRotation.php │ │ ├── Mail.php │ │ ├── PhpHandler.php │ │ ├── ProtectedDirectory.php │ │ ├── Reseller.php │ │ ├── ResellerPlan.php │ │ ├── SecretKey.php │ │ ├── Server.php │ │ ├── ServicePlan.php │ │ ├── ServicePlanAddon.php │ │ ├── Session.php │ │ ├── Site.php │ │ ├── SiteAlias.php │ │ ├── Subdomain.php │ │ ├── Ui.php │ │ ├── VirtualDirectory.php │ │ └── Webspace.php │ ├── Operator.php │ ├── Struct/ │ │ ├── Certificate/ │ │ │ └── Info.php │ │ ├── Customer/ │ │ │ ├── GeneralInfo.php │ │ │ └── Info.php │ │ ├── Database/ │ │ │ ├── Info.php │ │ │ └── UserInfo.php │ │ ├── DatabaseServer/ │ │ │ └── Info.php │ │ ├── Dns/ │ │ │ └── Info.php │ │ ├── EventLog/ │ │ │ ├── DetailedEvent.php │ │ │ └── Event.php │ │ ├── Ip/ │ │ │ └── Info.php │ │ ├── Locale/ │ │ │ └── Info.php │ │ ├── Mail/ │ │ │ ├── GeneralInfo.php │ │ │ └── Info.php │ │ ├── PhpHandler/ │ │ │ └── Info.php │ │ ├── ProtectedDirectory/ │ │ │ ├── DataInfo.php │ │ │ ├── Info.php │ │ │ └── UserInfo.php │ │ ├── Reseller/ │ │ │ ├── GeneralInfo.php │ │ │ └── Info.php │ │ ├── SecretKey/ │ │ │ └── Info.php │ │ ├── Server/ │ │ │ ├── Admin.php │ │ │ ├── GeneralInfo.php │ │ │ ├── Preferences.php │ │ │ ├── SessionPreferences.php │ │ │ ├── Statistics/ │ │ │ │ ├── DiskSpace.php │ │ │ │ ├── LoadAverage.php │ │ │ │ ├── Memory.php │ │ │ │ ├── Objects.php │ │ │ │ ├── Other.php │ │ │ │ ├── Swap.php │ │ │ │ └── Version.php │ │ │ ├── Statistics.php │ │ │ └── UpdatesInfo.php │ │ ├── ServicePlan/ │ │ │ └── Info.php │ │ ├── ServicePlanAddon/ │ │ │ └── Info.php │ │ ├── Session/ │ │ │ └── Info.php │ │ ├── Site/ │ │ │ ├── GeneralInfo.php │ │ │ ├── HostingInfo.php │ │ │ └── Info.php │ │ ├── SiteAlias/ │ │ │ ├── GeneralInfo.php │ │ │ └── Info.php │ │ ├── Subdomain/ │ │ │ └── Info.php │ │ ├── Ui/ │ │ │ └── CustomButton.php │ │ └── Webspace/ │ │ ├── DiskUsage.php │ │ ├── GeneralInfo.php │ │ ├── HostingPropertyInfo.php │ │ ├── Info.php │ │ ├── Limit.php │ │ ├── LimitDescriptor.php │ │ ├── LimitInfo.php │ │ ├── Limits.php │ │ ├── PermissionDescriptor.php │ │ ├── PermissionInfo.php │ │ ├── PhpSettings.php │ │ └── PhysicalHostingDescriptor.php │ └── XmlResponse.php ├── tests/ │ ├── AbstractTestCase.php │ ├── ApiClientTest.php │ ├── CertificateTest.php │ ├── CustomerTest.php │ ├── DatabaseServerTest.php │ ├── DatabaseTest.php │ ├── DnsTemplateTest.php │ ├── DnsTest.php │ ├── EventLogTest.php │ ├── IpTest.php │ ├── LocaleTest.php │ ├── MailTest.php │ ├── PhpHandlerTest.php │ ├── ProtectedDirectoryTest.php │ ├── ResellerTest.php │ ├── SecretKeyTest.php │ ├── ServerTest.php │ ├── ServicePlanAddonTest.php │ ├── ServicePlanTest.php │ ├── SessionTest.php │ ├── SiteAliasTest.php │ ├── SiteTest.php │ ├── SubdomainTest.php │ ├── UiTest.php │ ├── Utility/ │ │ ├── KeyLimitChecker.php │ │ └── PasswordProvider.php │ └── WebspaceTest.php └── wait-for-plesk.sh