├── LICENSE ├── autoload.php.dist ├── bin └── digitalocean ├── composer.json ├── credentials.yml.dist └── src ├── DigitalOcean ├── AbstractDigitalOcean.php ├── CLI │ ├── Command.php │ ├── Domains │ │ ├── AddCommand.php │ │ ├── AddRecordCommand.php │ │ ├── DestroyCommand.php │ │ ├── DestroyRecordCommand.php │ │ ├── EditRecordCommand.php │ │ ├── GetAllCommand.php │ │ ├── GetRecordsCommand.php │ │ ├── ShowCommand.php │ │ └── ShowRecordCommand.php │ ├── Droplets │ │ ├── CreateCommand.php │ │ ├── CreateInteractiveCommand.php │ │ ├── DestroyCommand.php │ │ ├── PowerCycleCommand.php │ │ ├── PowerOffCommand.php │ │ ├── PowerOnCommand.php │ │ ├── RebootCommand.php │ │ ├── RebuildCommand.php │ │ ├── RenameCommand.php │ │ ├── ResetRootPasswordCommand.php │ │ ├── ResizeCommand.php │ │ ├── RestoreCommand.php │ │ ├── ShowAllActiveCommand.php │ │ ├── ShowCommand.php │ │ ├── ShutdownCommand.php │ │ └── SnapshotCommand.php │ ├── Events │ │ └── ShowCommand.php │ ├── Images │ │ ├── DestroyCommand.php │ │ ├── GetAllCommand.php │ │ ├── GetGlobalCommand.php │ │ ├── GetMyImagesCommand.php │ │ ├── ShowCommand.php │ │ └── TransferCommand.php │ ├── Regions │ │ └── GetAllCommand.php │ ├── SSHKeys │ │ ├── AddCommand.php │ │ ├── DestroyCommand.php │ │ ├── EditCommand.php │ │ ├── GetAllCommand.php │ │ └── ShowCommand.php │ └── Sizes │ │ └── GetAllCommand.php ├── Credentials.php ├── DigitalOcean.php ├── Domains │ ├── Domains.php │ ├── DomainsActions.php │ └── RecordsActions.php ├── Droplets │ ├── Droplets.php │ └── DropletsActions.php ├── Events │ └── Events.php ├── Images │ ├── Images.php │ └── ImagesActions.php ├── Regions │ └── Regions.php ├── SSHKeys │ ├── SSHKeys.php │ └── SSHKeysActions.php └── Sizes │ └── Sizes.php └── autoload.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toin0u/DigitalOcean/HEAD/LICENSE -------------------------------------------------------------------------------- /autoload.php.dist: -------------------------------------------------------------------------------- 1 |