Giter Site home page Giter Site logo

kasapi-php's People

Contributors

boddlnagg avatar crypto-scythe avatar ekuiter avatar jan-di avatar laveit avatar nrueckmann avatar rhurling avatar waza-ari avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

kasapi-php's Issues

Automatic management of kasFloodDelay

Would something like automatic management of the kasFloodDelay be interesting?
I'm currently using a connector class like this:

class KasApiConnector extends \KasApi\KasApi {

	private $next_call_time = 0;

	protected function call( $function, $params = array() ) {
		$now = time();
		if ($now < $this->next_call_time) {
			sleep($this->next_call_time - $now);
		}
		$return = parent::call( $function, $params );
		$this->next_call_time = time() + (int)$this->kasFloodDelay;
		return $return;
	}
}

It's very useful if I'm using the API in a CLI script to change things for a lot of Domains in one Account at once (Upgrading all PHP Versions, etc).

Wrong labeled release v0.51

If someone uses composer require wazaari/kasapi-php to get the package and/or uses "minimum-stability": "stable" they won't get the latest release of the package.

Could you fix that by either retagging it in git and remove the wrong version in packagist?
Or just tagging a newer version as 0.52 with a note.

I for one don't really want to use a dev-master package (if some type of release tagging is available).

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.