Changeset 2646494
- Timestamp:
- 12/19/2021 09:53:33 PM (4 years ago)
- Location:
- questpass/trunk
- Files:
-
- 10 edited
-
questpass.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
-
src/Plugin/Activation.php (modified) (3 diffs)
-
src/Questpass.php (modified) (1 diff)
-
vendor/composer/ClassLoader.php (modified) (7 diffs)
-
vendor/composer/autoload_classmap.php (modified) (1 diff)
-
vendor/composer/autoload_psr4.php (modified) (1 diff)
-
vendor/composer/autoload_real.php (modified) (1 diff)
-
vendor/composer/autoload_static.php (modified) (2 diffs)
-
vendor/composer/installed.json (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
questpass/trunk/questpass.php
r2611365 r2646494 4 4 * Plugin Name: Questpass 5 5 * Description: Questpass plugin displays ads based on the idea of questvertising. 6 * Version: 2.0. 06 * Version: 2.0.1 7 7 * Author: Questpass 8 8 * Author URI: https://questpass.pl/ … … 17 17 18 18 new Questpass\Questpass( 19 new Questpass\PluginInfo( __FILE__, '2.0. 0' )19 new Questpass\PluginInfo( __FILE__, '2.0.1' ) 20 20 ); -
questpass/trunk/readme.txt
r2611369 r2646494 3 3 Tags: ads, advertising, paywall, membership, subscriptions, monetization, publishers 4 4 Requires at least: 4.9 5 Tested up to: 5. 85 Tested up to: 5.9 6 6 Requires PHP: 7.0 7 7 Stable tag: trunk … … 50 50 == Changelog == 51 51 52 = 2.0.1 (2021-12-19) = 53 * Fixed automatic connection with API after plugin activation 54 * Added support for WordPress 5.9 55 52 56 = 2.0.0 (2021-10-08) = 53 57 * The first stable release -
questpass/trunk/src/Plugin/Activation.php
r2611365 r2646494 8 8 use Questpass\PluginInfo; 9 9 use Questpass\Repository\PluginSettingsRepository; 10 use Questpass\Repository\ServiceStatusRepository; 11 use Questpass\Service\ServiceStatusUpdater; 12 use Questpass\Service\UpdateJavascript; 10 13 11 14 /** … … 24 27 25 28 /** 29 * @var ServiceStatusRepository 30 */ 31 private $service_status_repository; 32 33 /** 26 34 * @var PluginInfo 27 35 */ 28 36 private $plugin_info; 29 37 30 public function __construct( PluginSettingsRepository $plugin_settings_repository, PluginInfo $plugin_info ) { 38 public function __construct( 39 PluginSettingsRepository $plugin_settings_repository, 40 ServiceStatusRepository $service_status_repository, 41 PluginInfo $plugin_info 42 ) { 31 43 $this->plugin_settings_repository = $plugin_settings_repository; 44 $this->service_status_repository = $service_status_repository; 32 45 $this->plugin_info = $plugin_info; 33 46 } … … 79 92 80 93 $this->plugin_settings_repository->save_settings( $plugin_settings ); 94 95 ( new ServiceStatusUpdater( $this->plugin_settings_repository, $this->service_status_repository ) )->update_status(); 96 ( new UpdateJavascript( $this->plugin_settings_repository, $this->service_status_repository ) )->update_javascript(); 81 97 } 82 98 -
questpass/trunk/src/Questpass.php
r2611365 r2646494 25 25 ( new Content\GutenbergBlock( $plugin_info ) )->init_hooks(); 26 26 ( new Plugin\Links( $plugin_info ) )->init_hooks(); 27 ( new Plugin\Activation( $plugin_settings, $ plugin_info ) )->init_hooks();27 ( new Plugin\Activation( $plugin_settings, $service_status, $plugin_info ) )->init_hooks(); 28 28 ( new Plugin\TranslationsSetup( $plugin_info ) )->init_hooks(); 29 29 ( new Plugin\Uninstall( $plugin_info ) )->init_hooks(); -
questpass/trunk/vendor/composer/ClassLoader.php
r2611365 r2646494 38 38 * @author Fabien Potencier <fabien@symfony.com> 39 39 * @author Jordi Boggiano <j.boggiano@seld.be> 40 * @see http s://www.php-fig.org/psr/psr-0/41 * @see http s://www.php-fig.org/psr/psr-4/40 * @see http://www.php-fig.org/psr/psr-0/ 41 * @see http://www.php-fig.org/psr/psr-4/ 42 42 */ 43 43 class ClassLoader 44 44 { 45 private $vendorDir;46 47 45 // PSR-4 48 46 private $prefixLengthsPsr4 = array(); … … 59 57 private $missingClasses = array(); 60 58 private $apcuPrefix; 61 62 private static $registeredLoaders = array();63 64 public function __construct($vendorDir = null)65 {66 $this->vendorDir = $vendorDir;67 }68 59 69 60 public function getPrefixes() … … 310 301 { 311 302 spl_autoload_register(array($this, 'loadClass'), true, $prepend); 312 313 if (null === $this->vendorDir) {314 return;315 }316 317 if ($prepend) {318 self::$registeredLoaders = array($this->vendorDir => $this) + self::$registeredLoaders;319 } else {320 unset(self::$registeredLoaders[$this->vendorDir]);321 self::$registeredLoaders[$this->vendorDir] = $this;322 }323 303 } 324 304 … … 329 309 { 330 310 spl_autoload_unregister(array($this, 'loadClass')); 331 332 if (null !== $this->vendorDir) {333 unset(self::$registeredLoaders[$this->vendorDir]);334 }335 311 } 336 312 … … 339 315 * 340 316 * @param string $class The name of the class 341 * @return true|null True if loaded, null otherwise317 * @return bool|null True if loaded, null otherwise 342 318 */ 343 319 public function loadClass($class) … … 348 324 return true; 349 325 } 350 351 return null;352 326 } 353 327 … … 392 366 393 367 return $file; 394 }395 396 /**397 * Returns the currently registered loaders indexed by their corresponding vendor directories.398 *399 * @return self[]400 */401 public static function getRegisteredLoaders()402 {403 return self::$registeredLoaders;404 368 } 405 369 -
questpass/trunk/vendor/composer/autoload_classmap.php
r2611365 r2646494 7 7 8 8 return array( 9 'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php',10 9 'QuestpassTests\\Unit\\Content\\QuestGeneratorTest' => $baseDir . '/tests/unit/Content/QuestGeneratorTest.php', 11 10 'QuestpassTests\\Unit\\DependencyProvider' => $baseDir . '/tests/unit/DependencyProvider.php', -
questpass/trunk/vendor/composer/autoload_psr4.php
r2611365 r2646494 8 8 return array( 9 9 'Questpass\\' => array($baseDir . '/src'), 10 'QuestpassTests\\' => array($baseDir . '/tests'), 10 11 ); -
questpass/trunk/vendor/composer/autoload_real.php
r2611365 r2646494 24 24 25 25 spl_autoload_register(array('ComposerAutoloaderInit63bfafb8c38337131afff72a9dcbcc8e', 'loadClassLoader'), true, true); 26 self::$loader = $loader = new \Composer\Autoload\ClassLoader( \dirname(\dirname(__FILE__)));26 self::$loader = $loader = new \Composer\Autoload\ClassLoader(); 27 27 spl_autoload_unregister(array('ComposerAutoloaderInit63bfafb8c38337131afff72a9dcbcc8e', 'loadClassLoader')); 28 28 29 29 $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); 30 30 if ($useStaticLoader) { 31 require __DIR__ . '/autoload_static.php';31 require_once __DIR__ . '/autoload_static.php'; 32 32 33 33 call_user_func(\Composer\Autoload\ComposerStaticInit63bfafb8c38337131afff72a9dcbcc8e::getInitializer($loader)); -
questpass/trunk/vendor/composer/autoload_static.php
r2611365 r2646494 11 11 array ( 12 12 'Questpass\\' => 10, 13 'QuestpassTests\\' => 15, 13 14 ), 14 15 ); … … 19 20 0 => __DIR__ . '/../..' . '/src', 20 21 ), 22 'QuestpassTests\\' => 23 array ( 24 0 => __DIR__ . '/../..' . '/tests', 25 ), 21 26 ); 22 27 23 28 public static $classMap = array ( 24 'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',25 29 'QuestpassTests\\Unit\\Content\\QuestGeneratorTest' => __DIR__ . '/../..' . '/tests/unit/Content/QuestGeneratorTest.php', 26 30 'QuestpassTests\\Unit\\DependencyProvider' => __DIR__ . '/../..' . '/tests/unit/DependencyProvider.php', -
questpass/trunk/vendor/composer/installed.json
r2611365 r2646494 1 { 2 "packages": [ 3 { 4 "name": "adquesto/adquesto-php-sdk", 5 "version": "v0.4.7", 6 "version_normalized": "0.4.7.0", 7 "source": { 8 "type": "git", 9 "url": "https://github.com/adquesto/adquesto-php-sdk.git", 10 "reference": "0049c19e961e3f0ffda94b6b414715c75ed84ae3" 11 }, 12 "dist": { 13 "type": "zip", 14 "url": "https://api.github.com/repos/adquesto/adquesto-php-sdk/zipball/0049c19e961e3f0ffda94b6b414715c75ed84ae3", 15 "reference": "0049c19e961e3f0ffda94b6b414715c75ed84ae3", 16 "shasum": "" 17 }, 18 "require": { 19 "kub-at/php-simple-html-dom-parser": "^1.7", 20 "php": "^5.3.2 || ^7.0" 21 }, 22 "require-dev": { 23 "phpunit/phpunit": "^5.6 || ^7.1" 24 }, 25 "suggest": { 26 "ext-curl": "Needed to support CurlHttpClient implementation", 27 "ext-json": "Needed to provide Subscribers login via OAuth" 28 }, 29 "time": "2019-03-06T09:41:51+00:00", 30 "type": "library", 31 "installation-source": "dist", 32 "autoload": { 33 "psr-4": { 34 "Adquesto\\SDK\\": "src/" 35 } 36 }, 37 "notification-url": "https://packagist.org/downloads/", 38 "description": "Adquesto PHP integration toolkit", 39 "support": { 40 "issues": "https://github.com/adquesto/adquesto-php-sdk/issues", 41 "source": "https://github.com/adquesto/adquesto-php-sdk/tree/master" 42 }, 43 "install-path": "../adquesto/adquesto-php-sdk" 44 }, 45 { 46 "name": "guzzlehttp/guzzle", 47 "version": "7.3.0", 48 "version_normalized": "7.3.0.0", 49 "source": { 50 "type": "git", 51 "url": "https://github.com/guzzle/guzzle.git", 52 "reference": "7008573787b430c1c1f650e3722d9bba59967628" 53 }, 54 "dist": { 55 "type": "zip", 56 "url": "https://api.github.com/repos/guzzle/guzzle/zipball/7008573787b430c1c1f650e3722d9bba59967628", 57 "reference": "7008573787b430c1c1f650e3722d9bba59967628", 58 "shasum": "" 59 }, 60 "require": { 61 "ext-json": "*", 62 "guzzlehttp/promises": "^1.4", 63 "guzzlehttp/psr7": "^1.7 || ^2.0", 64 "php": "^7.2.5 || ^8.0", 65 "psr/http-client": "^1.0" 66 }, 67 "provide": { 68 "psr/http-client-implementation": "1.0" 69 }, 70 "require-dev": { 71 "bamarni/composer-bin-plugin": "^1.4.1", 72 "ext-curl": "*", 73 "php-http/client-integration-tests": "^3.0", 74 "phpunit/phpunit": "^8.5.5 || ^9.3.5", 75 "psr/log": "^1.1" 76 }, 77 "suggest": { 78 "ext-curl": "Required for CURL handler support", 79 "ext-intl": "Required for Internationalized Domain Name (IDN) support", 80 "psr/log": "Required for using the Log middleware" 81 }, 82 "time": "2021-03-23T11:33:13+00:00", 83 "type": "library", 84 "extra": { 85 "branch-alias": { 86 "dev-master": "7.3-dev" 87 } 88 }, 89 "installation-source": "dist", 90 "autoload": { 91 "psr-4": { 92 "GuzzleHttp\\": "src/" 93 }, 94 "files": [ 95 "src/functions_include.php" 96 ] 97 }, 98 "notification-url": "https://packagist.org/downloads/", 99 "license": [ 100 "MIT" 101 ], 102 "authors": [ 103 { 104 "name": "Michael Dowling", 105 "email": "mtdowling@gmail.com", 106 "homepage": "https://github.com/mtdowling" 107 }, 108 { 109 "name": "Márk Sági-Kazár", 110 "email": "mark.sagikazar@gmail.com", 111 "homepage": "https://sagikazarmark.hu" 112 } 113 ], 114 "description": "Guzzle is a PHP HTTP client library", 115 "homepage": "http://guzzlephp.org/", 116 "keywords": [ 117 "client", 118 "curl", 119 "framework", 120 "http", 121 "http client", 122 "psr-18", 123 "psr-7", 124 "rest", 125 "web service" 126 ], 127 "support": { 128 "issues": "https://github.com/guzzle/guzzle/issues", 129 "source": "https://github.com/guzzle/guzzle/tree/7.3.0" 130 }, 131 "funding": [ 132 { 133 "url": "https://github.com/GrahamCampbell", 134 "type": "github" 135 }, 136 { 137 "url": "https://github.com/Nyholm", 138 "type": "github" 139 }, 140 { 141 "url": "https://github.com/alexeyshockov", 142 "type": "github" 143 }, 144 { 145 "url": "https://github.com/gmponos", 146 "type": "github" 147 } 148 ], 149 "install-path": "../guzzlehttp/guzzle" 150 }, 151 { 152 "name": "guzzlehttp/promises", 153 "version": "1.4.1", 154 "version_normalized": "1.4.1.0", 155 "source": { 156 "type": "git", 157 "url": "https://github.com/guzzle/promises.git", 158 "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d" 159 }, 160 "dist": { 161 "type": "zip", 162 "url": "https://api.github.com/repos/guzzle/promises/zipball/8e7d04f1f6450fef59366c399cfad4b9383aa30d", 163 "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d", 164 "shasum": "" 165 }, 166 "require": { 167 "php": ">=5.5" 168 }, 169 "require-dev": { 170 "symfony/phpunit-bridge": "^4.4 || ^5.1" 171 }, 172 "time": "2021-03-07T09:25:29+00:00", 173 "type": "library", 174 "extra": { 175 "branch-alias": { 176 "dev-master": "1.4-dev" 177 } 178 }, 179 "installation-source": "dist", 180 "autoload": { 181 "psr-4": { 182 "GuzzleHttp\\Promise\\": "src/" 183 }, 184 "files": [ 185 "src/functions_include.php" 186 ] 187 }, 188 "notification-url": "https://packagist.org/downloads/", 189 "license": [ 190 "MIT" 191 ], 192 "authors": [ 193 { 194 "name": "Michael Dowling", 195 "email": "mtdowling@gmail.com", 196 "homepage": "https://github.com/mtdowling" 197 } 198 ], 199 "description": "Guzzle promises library", 200 "keywords": [ 201 "promise" 202 ], 203 "support": { 204 "issues": "https://github.com/guzzle/promises/issues", 205 "source": "https://github.com/guzzle/promises/tree/1.4.1" 206 }, 207 "install-path": "../guzzlehttp/promises" 208 }, 209 { 210 "name": "guzzlehttp/psr7", 211 "version": "2.0.0", 212 "version_normalized": "2.0.0.0", 213 "source": { 214 "type": "git", 215 "url": "https://github.com/guzzle/psr7.git", 216 "reference": "1dc8d9cba3897165e16d12bb13d813afb1eb3fe7" 217 }, 218 "dist": { 219 "type": "zip", 220 "url": "https://api.github.com/repos/guzzle/psr7/zipball/1dc8d9cba3897165e16d12bb13d813afb1eb3fe7", 221 "reference": "1dc8d9cba3897165e16d12bb13d813afb1eb3fe7", 222 "shasum": "" 223 }, 224 "require": { 225 "php": "^7.2.5 || ^8.0", 226 "psr/http-factory": "^1.0", 227 "psr/http-message": "^1.0", 228 "ralouphie/getallheaders": "^3.0" 229 }, 230 "provide": { 231 "psr/http-factory-implementation": "1.0", 232 "psr/http-message-implementation": "1.0" 233 }, 234 "require-dev": { 235 "bamarni/composer-bin-plugin": "^1.4.1", 236 "http-interop/http-factory-tests": "^0.9", 237 "phpunit/phpunit": "^8.5.8 || ^9.3.10" 238 }, 239 "suggest": { 240 "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" 241 }, 242 "time": "2021-06-30T20:03:07+00:00", 243 "type": "library", 244 "extra": { 245 "branch-alias": { 246 "dev-master": "2.0-dev" 247 } 248 }, 249 "installation-source": "dist", 250 "autoload": { 251 "psr-4": { 252 "GuzzleHttp\\Psr7\\": "src/" 253 } 254 }, 255 "notification-url": "https://packagist.org/downloads/", 256 "license": [ 257 "MIT" 258 ], 259 "authors": [ 260 { 261 "name": "Michael Dowling", 262 "email": "mtdowling@gmail.com", 263 "homepage": "https://github.com/mtdowling" 264 }, 265 { 266 "name": "Tobias Schultze", 267 "homepage": "https://github.com/Tobion" 268 }, 269 { 270 "name": "Márk Sági-Kazár", 271 "email": "mark.sagikazar@gmail.com", 272 "homepage": "https://sagikazarmark.hu" 273 } 274 ], 275 "description": "PSR-7 message implementation that also provides common utility methods", 276 "keywords": [ 277 "http", 278 "message", 279 "psr-7", 280 "request", 281 "response", 282 "stream", 283 "uri", 284 "url" 285 ], 286 "support": { 287 "issues": "https://github.com/guzzle/psr7/issues", 288 "source": "https://github.com/guzzle/psr7/tree/2.0.0" 289 }, 290 "install-path": "../guzzlehttp/psr7" 291 }, 292 { 293 "name": "kub-at/php-simple-html-dom-parser", 294 "version": "1.9.1", 295 "version_normalized": "1.9.1.0", 296 "source": { 297 "type": "git", 298 "url": "https://github.com/Kub-AT/php-simple-html-dom-parser.git", 299 "reference": "ff22f98bfd9235115c128059076f3eb740d66913" 300 }, 301 "dist": { 302 "type": "zip", 303 "url": "https://api.github.com/repos/Kub-AT/php-simple-html-dom-parser/zipball/ff22f98bfd9235115c128059076f3eb740d66913", 304 "reference": "ff22f98bfd9235115c128059076f3eb740d66913", 305 "shasum": "" 306 }, 307 "require": { 308 "php": ">=5.3.2" 309 }, 310 "time": "2019-10-25T12:34:43+00:00", 311 "type": "library", 312 "installation-source": "dist", 313 "autoload": { 314 "psr-0": { 315 "KubAT\\PhpSimple\\HtmlDomParser": "src/" 316 } 317 }, 318 "notification-url": "https://packagist.org/downloads/", 319 "license": [ 320 "MIT" 321 ], 322 "authors": [ 323 { 324 "name": "S.C. Chen", 325 "email": "me578022@gmail.com" 326 }, 327 { 328 "name": "Jakub Stawowy", 329 "email": "Kub-AT@users.noreply.github.com" 330 } 331 ], 332 "description": "PHP Simple HTML DOM Parser with namespace and PHP 7.3 compatible", 333 "homepage": "http://simplehtmldom.sourceforge.net/", 334 "keywords": [ 335 "Simple", 336 "dom", 337 "html" 338 ], 339 "support": { 340 "issues": "https://github.com/Kub-AT/php-simple-html-dom-parser/issues", 341 "source": "https://github.com/Kub-AT/php-simple-html-dom-parser/tree/master" 342 }, 343 "install-path": "../kub-at/php-simple-html-dom-parser" 344 }, 345 { 346 "name": "league/oauth2-client", 347 "version": "2.6.0", 348 "version_normalized": "2.6.0.0", 349 "source": { 350 "type": "git", 351 "url": "https://github.com/thephpleague/oauth2-client.git", 352 "reference": "badb01e62383430706433191b82506b6df24ad98" 353 }, 354 "dist": { 355 "type": "zip", 356 "url": "https://api.github.com/repos/thephpleague/oauth2-client/zipball/badb01e62383430706433191b82506b6df24ad98", 357 "reference": "badb01e62383430706433191b82506b6df24ad98", 358 "shasum": "" 359 }, 360 "require": { 361 "guzzlehttp/guzzle": "^6.0 || ^7.0", 362 "paragonie/random_compat": "^1 || ^2 || ^9.99", 363 "php": "^5.6 || ^7.0 || ^8.0" 364 }, 365 "require-dev": { 366 "mockery/mockery": "^1.3", 367 "php-parallel-lint/php-parallel-lint": "^1.2", 368 "phpunit/phpunit": "^5.7 || ^6.0 || ^9.3", 369 "squizlabs/php_codesniffer": "^2.3 || ^3.0" 370 }, 371 "time": "2020-10-28T02:03:40+00:00", 372 "type": "library", 373 "extra": { 374 "branch-alias": { 375 "dev-2.x": "2.0.x-dev" 376 } 377 }, 378 "installation-source": "dist", 379 "autoload": { 380 "psr-4": { 381 "League\\OAuth2\\Client\\": "src/" 382 } 383 }, 384 "notification-url": "https://packagist.org/downloads/", 385 "license": [ 386 "MIT" 387 ], 388 "authors": [ 389 { 390 "name": "Alex Bilbie", 391 "email": "hello@alexbilbie.com", 392 "homepage": "http://www.alexbilbie.com", 393 "role": "Developer" 394 }, 395 { 396 "name": "Woody Gilk", 397 "homepage": "https://github.com/shadowhand", 398 "role": "Contributor" 399 } 400 ], 401 "description": "OAuth 2.0 Client Library", 402 "keywords": [ 403 "Authentication", 404 "SSO", 405 "authorization", 406 "identity", 407 "idp", 408 "oauth", 409 "oauth2", 410 "single sign on" 411 ], 412 "support": { 413 "issues": "https://github.com/thephpleague/oauth2-client/issues", 414 "source": "https://github.com/thephpleague/oauth2-client/tree/2.6.0" 415 }, 416 "install-path": "../league/oauth2-client" 417 }, 418 { 419 "name": "paragonie/random_compat", 420 "version": "v9.99.100", 421 "version_normalized": "9.99.100.0", 422 "source": { 423 "type": "git", 424 "url": "https://github.com/paragonie/random_compat.git", 425 "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a" 426 }, 427 "dist": { 428 "type": "zip", 429 "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a", 430 "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a", 431 "shasum": "" 432 }, 433 "require": { 434 "php": ">= 7" 435 }, 436 "require-dev": { 437 "phpunit/phpunit": "4.*|5.*", 438 "vimeo/psalm": "^1" 439 }, 440 "suggest": { 441 "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes." 442 }, 443 "time": "2020-10-15T08:29:30+00:00", 444 "type": "library", 445 "installation-source": "dist", 446 "notification-url": "https://packagist.org/downloads/", 447 "license": [ 448 "MIT" 449 ], 450 "authors": [ 451 { 452 "name": "Paragon Initiative Enterprises", 453 "email": "security@paragonie.com", 454 "homepage": "https://paragonie.com" 455 } 456 ], 457 "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7", 458 "keywords": [ 459 "csprng", 460 "polyfill", 461 "pseudorandom", 462 "random" 463 ], 464 "support": { 465 "email": "info@paragonie.com", 466 "issues": "https://github.com/paragonie/random_compat/issues", 467 "source": "https://github.com/paragonie/random_compat" 468 }, 469 "install-path": "../paragonie/random_compat" 470 }, 471 { 472 "name": "psr/http-client", 473 "version": "1.0.1", 474 "version_normalized": "1.0.1.0", 475 "source": { 476 "type": "git", 477 "url": "https://github.com/php-fig/http-client.git", 478 "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621" 479 }, 480 "dist": { 481 "type": "zip", 482 "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621", 483 "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621", 484 "shasum": "" 485 }, 486 "require": { 487 "php": "^7.0 || ^8.0", 488 "psr/http-message": "^1.0" 489 }, 490 "time": "2020-06-29T06:28:15+00:00", 491 "type": "library", 492 "extra": { 493 "branch-alias": { 494 "dev-master": "1.0.x-dev" 495 } 496 }, 497 "installation-source": "dist", 498 "autoload": { 499 "psr-4": { 500 "Psr\\Http\\Client\\": "src/" 501 } 502 }, 503 "notification-url": "https://packagist.org/downloads/", 504 "license": [ 505 "MIT" 506 ], 507 "authors": [ 508 { 509 "name": "PHP-FIG", 510 "homepage": "http://www.php-fig.org/" 511 } 512 ], 513 "description": "Common interface for HTTP clients", 514 "homepage": "https://github.com/php-fig/http-client", 515 "keywords": [ 516 "http", 517 "http-client", 518 "psr", 519 "psr-18" 520 ], 521 "support": { 522 "source": "https://github.com/php-fig/http-client/tree/master" 523 }, 524 "install-path": "../psr/http-client" 525 }, 526 { 527 "name": "psr/http-factory", 528 "version": "1.0.1", 529 "version_normalized": "1.0.1.0", 530 "source": { 531 "type": "git", 532 "url": "https://github.com/php-fig/http-factory.git", 533 "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be" 534 }, 535 "dist": { 536 "type": "zip", 537 "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be", 538 "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be", 539 "shasum": "" 540 }, 541 "require": { 542 "php": ">=7.0.0", 543 "psr/http-message": "^1.0" 544 }, 545 "time": "2019-04-30T12:38:16+00:00", 546 "type": "library", 547 "extra": { 548 "branch-alias": { 549 "dev-master": "1.0.x-dev" 550 } 551 }, 552 "installation-source": "dist", 553 "autoload": { 554 "psr-4": { 555 "Psr\\Http\\Message\\": "src/" 556 } 557 }, 558 "notification-url": "https://packagist.org/downloads/", 559 "license": [ 560 "MIT" 561 ], 562 "authors": [ 563 { 564 "name": "PHP-FIG", 565 "homepage": "http://www.php-fig.org/" 566 } 567 ], 568 "description": "Common interfaces for PSR-7 HTTP message factories", 569 "keywords": [ 570 "factory", 571 "http", 572 "message", 573 "psr", 574 "psr-17", 575 "psr-7", 576 "request", 577 "response" 578 ], 579 "support": { 580 "source": "https://github.com/php-fig/http-factory/tree/master" 581 }, 582 "install-path": "../psr/http-factory" 583 }, 584 { 585 "name": "psr/http-message", 586 "version": "1.0.1", 587 "version_normalized": "1.0.1.0", 588 "source": { 589 "type": "git", 590 "url": "https://github.com/php-fig/http-message.git", 591 "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363" 592 }, 593 "dist": { 594 "type": "zip", 595 "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363", 596 "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363", 597 "shasum": "" 598 }, 599 "require": { 600 "php": ">=5.3.0" 601 }, 602 "time": "2016-08-06T14:39:51+00:00", 603 "type": "library", 604 "extra": { 605 "branch-alias": { 606 "dev-master": "1.0.x-dev" 607 } 608 }, 609 "installation-source": "dist", 610 "autoload": { 611 "psr-4": { 612 "Psr\\Http\\Message\\": "src/" 613 } 614 }, 615 "notification-url": "https://packagist.org/downloads/", 616 "license": [ 617 "MIT" 618 ], 619 "authors": [ 620 { 621 "name": "PHP-FIG", 622 "homepage": "http://www.php-fig.org/" 623 } 624 ], 625 "description": "Common interface for HTTP messages", 626 "homepage": "https://github.com/php-fig/http-message", 627 "keywords": [ 628 "http", 629 "http-message", 630 "psr", 631 "psr-7", 632 "request", 633 "response" 634 ], 635 "support": { 636 "source": "https://github.com/php-fig/http-message/tree/master" 637 }, 638 "install-path": "../psr/http-message" 639 }, 640 { 641 "name": "ralouphie/getallheaders", 642 "version": "3.0.3", 643 "version_normalized": "3.0.3.0", 644 "source": { 645 "type": "git", 646 "url": "https://github.com/ralouphie/getallheaders.git", 647 "reference": "120b605dfeb996808c31b6477290a714d356e822" 648 }, 649 "dist": { 650 "type": "zip", 651 "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822", 652 "reference": "120b605dfeb996808c31b6477290a714d356e822", 653 "shasum": "" 654 }, 655 "require": { 656 "php": ">=5.6" 657 }, 658 "require-dev": { 659 "php-coveralls/php-coveralls": "^2.1", 660 "phpunit/phpunit": "^5 || ^6.5" 661 }, 662 "time": "2019-03-08T08:55:37+00:00", 663 "type": "library", 664 "installation-source": "dist", 665 "autoload": { 666 "files": [ 667 "src/getallheaders.php" 668 ] 669 }, 670 "notification-url": "https://packagist.org/downloads/", 671 "license": [ 672 "MIT" 673 ], 674 "authors": [ 675 { 676 "name": "Ralph Khattar", 677 "email": "ralph.khattar@gmail.com" 678 } 679 ], 680 "description": "A polyfill for getallheaders.", 681 "support": { 682 "issues": "https://github.com/ralouphie/getallheaders/issues", 683 "source": "https://github.com/ralouphie/getallheaders/tree/develop" 684 }, 685 "install-path": "../ralouphie/getallheaders" 686 } 687 ], 688 "dev": false, 689 "dev-package-names": [] 690 } 1 [ 2 { 3 "name": "adquesto/adquesto-php-sdk", 4 "version": "v0.4.7", 5 "version_normalized": "0.4.7.0", 6 "source": { 7 "type": "git", 8 "url": "https://github.com/adquesto/adquesto-php-sdk.git", 9 "reference": "0049c19e961e3f0ffda94b6b414715c75ed84ae3" 10 }, 11 "dist": { 12 "type": "zip", 13 "url": "https://api.github.com/repos/adquesto/adquesto-php-sdk/zipball/0049c19e961e3f0ffda94b6b414715c75ed84ae3", 14 "reference": "0049c19e961e3f0ffda94b6b414715c75ed84ae3", 15 "shasum": "" 16 }, 17 "require": { 18 "kub-at/php-simple-html-dom-parser": "^1.7", 19 "php": "^5.3.2 || ^7.0" 20 }, 21 "require-dev": { 22 "phpunit/phpunit": "^5.6 || ^7.1" 23 }, 24 "suggest": { 25 "ext-curl": "Needed to support CurlHttpClient implementation", 26 "ext-json": "Needed to provide Subscribers login via OAuth" 27 }, 28 "time": "2019-03-06T09:41:51+00:00", 29 "type": "library", 30 "installation-source": "dist", 31 "autoload": { 32 "psr-4": { 33 "Adquesto\\SDK\\": "src/" 34 } 35 }, 36 "notification-url": "https://packagist.org/downloads/", 37 "description": "Adquesto PHP integration toolkit", 38 "support": { 39 "issues": "https://github.com/adquesto/adquesto-php-sdk/issues", 40 "source": "https://github.com/adquesto/adquesto-php-sdk/tree/master" 41 } 42 }, 43 { 44 "name": "guzzlehttp/guzzle", 45 "version": "7.3.0", 46 "version_normalized": "7.3.0.0", 47 "source": { 48 "type": "git", 49 "url": "https://github.com/guzzle/guzzle.git", 50 "reference": "7008573787b430c1c1f650e3722d9bba59967628" 51 }, 52 "dist": { 53 "type": "zip", 54 "url": "https://api.github.com/repos/guzzle/guzzle/zipball/7008573787b430c1c1f650e3722d9bba59967628", 55 "reference": "7008573787b430c1c1f650e3722d9bba59967628", 56 "shasum": "" 57 }, 58 "require": { 59 "ext-json": "*", 60 "guzzlehttp/promises": "^1.4", 61 "guzzlehttp/psr7": "^1.7 || ^2.0", 62 "php": "^7.2.5 || ^8.0", 63 "psr/http-client": "^1.0" 64 }, 65 "provide": { 66 "psr/http-client-implementation": "1.0" 67 }, 68 "require-dev": { 69 "bamarni/composer-bin-plugin": "^1.4.1", 70 "ext-curl": "*", 71 "php-http/client-integration-tests": "^3.0", 72 "phpunit/phpunit": "^8.5.5 || ^9.3.5", 73 "psr/log": "^1.1" 74 }, 75 "suggest": { 76 "ext-curl": "Required for CURL handler support", 77 "ext-intl": "Required for Internationalized Domain Name (IDN) support", 78 "psr/log": "Required for using the Log middleware" 79 }, 80 "time": "2021-03-23T11:33:13+00:00", 81 "type": "library", 82 "extra": { 83 "branch-alias": { 84 "dev-master": "7.3-dev" 85 } 86 }, 87 "installation-source": "dist", 88 "autoload": { 89 "psr-4": { 90 "GuzzleHttp\\": "src/" 91 }, 92 "files": [ 93 "src/functions_include.php" 94 ] 95 }, 96 "notification-url": "https://packagist.org/downloads/", 97 "license": [ 98 "MIT" 99 ], 100 "authors": [ 101 { 102 "name": "Michael Dowling", 103 "email": "mtdowling@gmail.com", 104 "homepage": "https://github.com/mtdowling" 105 }, 106 { 107 "name": "Márk Sági-Kazár", 108 "email": "mark.sagikazar@gmail.com", 109 "homepage": "https://sagikazarmark.hu" 110 } 111 ], 112 "description": "Guzzle is a PHP HTTP client library", 113 "homepage": "http://guzzlephp.org/", 114 "keywords": [ 115 "client", 116 "curl", 117 "framework", 118 "http", 119 "http client", 120 "psr-18", 121 "psr-7", 122 "rest", 123 "web service" 124 ], 125 "support": { 126 "issues": "https://github.com/guzzle/guzzle/issues", 127 "source": "https://github.com/guzzle/guzzle/tree/7.3.0" 128 }, 129 "funding": [ 130 { 131 "url": "https://github.com/GrahamCampbell", 132 "type": "github" 133 }, 134 { 135 "url": "https://github.com/Nyholm", 136 "type": "github" 137 }, 138 { 139 "url": "https://github.com/alexeyshockov", 140 "type": "github" 141 }, 142 { 143 "url": "https://github.com/gmponos", 144 "type": "github" 145 } 146 ] 147 }, 148 { 149 "name": "guzzlehttp/promises", 150 "version": "1.4.1", 151 "version_normalized": "1.4.1.0", 152 "source": { 153 "type": "git", 154 "url": "https://github.com/guzzle/promises.git", 155 "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d" 156 }, 157 "dist": { 158 "type": "zip", 159 "url": "https://api.github.com/repos/guzzle/promises/zipball/8e7d04f1f6450fef59366c399cfad4b9383aa30d", 160 "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d", 161 "shasum": "" 162 }, 163 "require": { 164 "php": ">=5.5" 165 }, 166 "require-dev": { 167 "symfony/phpunit-bridge": "^4.4 || ^5.1" 168 }, 169 "time": "2021-03-07T09:25:29+00:00", 170 "type": "library", 171 "extra": { 172 "branch-alias": { 173 "dev-master": "1.4-dev" 174 } 175 }, 176 "installation-source": "dist", 177 "autoload": { 178 "psr-4": { 179 "GuzzleHttp\\Promise\\": "src/" 180 }, 181 "files": [ 182 "src/functions_include.php" 183 ] 184 }, 185 "notification-url": "https://packagist.org/downloads/", 186 "license": [ 187 "MIT" 188 ], 189 "authors": [ 190 { 191 "name": "Michael Dowling", 192 "email": "mtdowling@gmail.com", 193 "homepage": "https://github.com/mtdowling" 194 } 195 ], 196 "description": "Guzzle promises library", 197 "keywords": [ 198 "promise" 199 ], 200 "support": { 201 "issues": "https://github.com/guzzle/promises/issues", 202 "source": "https://github.com/guzzle/promises/tree/1.4.1" 203 } 204 }, 205 { 206 "name": "guzzlehttp/psr7", 207 "version": "2.0.0", 208 "version_normalized": "2.0.0.0", 209 "source": { 210 "type": "git", 211 "url": "https://github.com/guzzle/psr7.git", 212 "reference": "1dc8d9cba3897165e16d12bb13d813afb1eb3fe7" 213 }, 214 "dist": { 215 "type": "zip", 216 "url": "https://api.github.com/repos/guzzle/psr7/zipball/1dc8d9cba3897165e16d12bb13d813afb1eb3fe7", 217 "reference": "1dc8d9cba3897165e16d12bb13d813afb1eb3fe7", 218 "shasum": "" 219 }, 220 "require": { 221 "php": "^7.2.5 || ^8.0", 222 "psr/http-factory": "^1.0", 223 "psr/http-message": "^1.0", 224 "ralouphie/getallheaders": "^3.0" 225 }, 226 "provide": { 227 "psr/http-factory-implementation": "1.0", 228 "psr/http-message-implementation": "1.0" 229 }, 230 "require-dev": { 231 "bamarni/composer-bin-plugin": "^1.4.1", 232 "http-interop/http-factory-tests": "^0.9", 233 "phpunit/phpunit": "^8.5.8 || ^9.3.10" 234 }, 235 "suggest": { 236 "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" 237 }, 238 "time": "2021-06-30T20:03:07+00:00", 239 "type": "library", 240 "extra": { 241 "branch-alias": { 242 "dev-master": "2.0-dev" 243 } 244 }, 245 "installation-source": "dist", 246 "autoload": { 247 "psr-4": { 248 "GuzzleHttp\\Psr7\\": "src/" 249 } 250 }, 251 "notification-url": "https://packagist.org/downloads/", 252 "license": [ 253 "MIT" 254 ], 255 "authors": [ 256 { 257 "name": "Michael Dowling", 258 "email": "mtdowling@gmail.com", 259 "homepage": "https://github.com/mtdowling" 260 }, 261 { 262 "name": "Tobias Schultze", 263 "homepage": "https://github.com/Tobion" 264 }, 265 { 266 "name": "Márk Sági-Kazár", 267 "email": "mark.sagikazar@gmail.com", 268 "homepage": "https://sagikazarmark.hu" 269 } 270 ], 271 "description": "PSR-7 message implementation that also provides common utility methods", 272 "keywords": [ 273 "http", 274 "message", 275 "psr-7", 276 "request", 277 "response", 278 "stream", 279 "uri", 280 "url" 281 ], 282 "support": { 283 "issues": "https://github.com/guzzle/psr7/issues", 284 "source": "https://github.com/guzzle/psr7/tree/2.0.0" 285 } 286 }, 287 { 288 "name": "kub-at/php-simple-html-dom-parser", 289 "version": "1.9.1", 290 "version_normalized": "1.9.1.0", 291 "source": { 292 "type": "git", 293 "url": "https://github.com/Kub-AT/php-simple-html-dom-parser.git", 294 "reference": "ff22f98bfd9235115c128059076f3eb740d66913" 295 }, 296 "dist": { 297 "type": "zip", 298 "url": "https://api.github.com/repos/Kub-AT/php-simple-html-dom-parser/zipball/ff22f98bfd9235115c128059076f3eb740d66913", 299 "reference": "ff22f98bfd9235115c128059076f3eb740d66913", 300 "shasum": "" 301 }, 302 "require": { 303 "php": ">=5.3.2" 304 }, 305 "time": "2019-10-25T12:34:43+00:00", 306 "type": "library", 307 "installation-source": "dist", 308 "autoload": { 309 "psr-0": { 310 "KubAT\\PhpSimple\\HtmlDomParser": "src/" 311 } 312 }, 313 "notification-url": "https://packagist.org/downloads/", 314 "license": [ 315 "MIT" 316 ], 317 "authors": [ 318 { 319 "name": "S.C. Chen", 320 "email": "me578022@gmail.com" 321 }, 322 { 323 "name": "Jakub Stawowy", 324 "email": "Kub-AT@users.noreply.github.com" 325 } 326 ], 327 "description": "PHP Simple HTML DOM Parser with namespace and PHP 7.3 compatible", 328 "homepage": "http://simplehtmldom.sourceforge.net/", 329 "keywords": [ 330 "Simple", 331 "dom", 332 "html" 333 ], 334 "support": { 335 "issues": "https://github.com/Kub-AT/php-simple-html-dom-parser/issues", 336 "source": "https://github.com/Kub-AT/php-simple-html-dom-parser/tree/master" 337 } 338 }, 339 { 340 "name": "league/oauth2-client", 341 "version": "2.6.0", 342 "version_normalized": "2.6.0.0", 343 "source": { 344 "type": "git", 345 "url": "https://github.com/thephpleague/oauth2-client.git", 346 "reference": "badb01e62383430706433191b82506b6df24ad98" 347 }, 348 "dist": { 349 "type": "zip", 350 "url": "https://api.github.com/repos/thephpleague/oauth2-client/zipball/badb01e62383430706433191b82506b6df24ad98", 351 "reference": "badb01e62383430706433191b82506b6df24ad98", 352 "shasum": "" 353 }, 354 "require": { 355 "guzzlehttp/guzzle": "^6.0 || ^7.0", 356 "paragonie/random_compat": "^1 || ^2 || ^9.99", 357 "php": "^5.6 || ^7.0 || ^8.0" 358 }, 359 "require-dev": { 360 "mockery/mockery": "^1.3", 361 "php-parallel-lint/php-parallel-lint": "^1.2", 362 "phpunit/phpunit": "^5.7 || ^6.0 || ^9.3", 363 "squizlabs/php_codesniffer": "^2.3 || ^3.0" 364 }, 365 "time": "2020-10-28T02:03:40+00:00", 366 "type": "library", 367 "extra": { 368 "branch-alias": { 369 "dev-2.x": "2.0.x-dev" 370 } 371 }, 372 "installation-source": "dist", 373 "autoload": { 374 "psr-4": { 375 "League\\OAuth2\\Client\\": "src/" 376 } 377 }, 378 "notification-url": "https://packagist.org/downloads/", 379 "license": [ 380 "MIT" 381 ], 382 "authors": [ 383 { 384 "name": "Alex Bilbie", 385 "email": "hello@alexbilbie.com", 386 "homepage": "http://www.alexbilbie.com", 387 "role": "Developer" 388 }, 389 { 390 "name": "Woody Gilk", 391 "homepage": "https://github.com/shadowhand", 392 "role": "Contributor" 393 } 394 ], 395 "description": "OAuth 2.0 Client Library", 396 "keywords": [ 397 "Authentication", 398 "SSO", 399 "authorization", 400 "identity", 401 "idp", 402 "oauth", 403 "oauth2", 404 "single sign on" 405 ], 406 "support": { 407 "issues": "https://github.com/thephpleague/oauth2-client/issues", 408 "source": "https://github.com/thephpleague/oauth2-client/tree/2.6.0" 409 } 410 }, 411 { 412 "name": "paragonie/random_compat", 413 "version": "v9.99.100", 414 "version_normalized": "9.99.100.0", 415 "source": { 416 "type": "git", 417 "url": "https://github.com/paragonie/random_compat.git", 418 "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a" 419 }, 420 "dist": { 421 "type": "zip", 422 "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a", 423 "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a", 424 "shasum": "" 425 }, 426 "require": { 427 "php": ">= 7" 428 }, 429 "require-dev": { 430 "phpunit/phpunit": "4.*|5.*", 431 "vimeo/psalm": "^1" 432 }, 433 "suggest": { 434 "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes." 435 }, 436 "time": "2020-10-15T08:29:30+00:00", 437 "type": "library", 438 "installation-source": "dist", 439 "notification-url": "https://packagist.org/downloads/", 440 "license": [ 441 "MIT" 442 ], 443 "authors": [ 444 { 445 "name": "Paragon Initiative Enterprises", 446 "email": "security@paragonie.com", 447 "homepage": "https://paragonie.com" 448 } 449 ], 450 "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7", 451 "keywords": [ 452 "csprng", 453 "polyfill", 454 "pseudorandom", 455 "random" 456 ], 457 "support": { 458 "email": "info@paragonie.com", 459 "issues": "https://github.com/paragonie/random_compat/issues", 460 "source": "https://github.com/paragonie/random_compat" 461 } 462 }, 463 { 464 "name": "psr/http-client", 465 "version": "1.0.1", 466 "version_normalized": "1.0.1.0", 467 "source": { 468 "type": "git", 469 "url": "https://github.com/php-fig/http-client.git", 470 "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621" 471 }, 472 "dist": { 473 "type": "zip", 474 "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621", 475 "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621", 476 "shasum": "" 477 }, 478 "require": { 479 "php": "^7.0 || ^8.0", 480 "psr/http-message": "^1.0" 481 }, 482 "time": "2020-06-29T06:28:15+00:00", 483 "type": "library", 484 "extra": { 485 "branch-alias": { 486 "dev-master": "1.0.x-dev" 487 } 488 }, 489 "installation-source": "dist", 490 "autoload": { 491 "psr-4": { 492 "Psr\\Http\\Client\\": "src/" 493 } 494 }, 495 "notification-url": "https://packagist.org/downloads/", 496 "license": [ 497 "MIT" 498 ], 499 "authors": [ 500 { 501 "name": "PHP-FIG", 502 "homepage": "http://www.php-fig.org/" 503 } 504 ], 505 "description": "Common interface for HTTP clients", 506 "homepage": "https://github.com/php-fig/http-client", 507 "keywords": [ 508 "http", 509 "http-client", 510 "psr", 511 "psr-18" 512 ], 513 "support": { 514 "source": "https://github.com/php-fig/http-client/tree/master" 515 } 516 }, 517 { 518 "name": "psr/http-factory", 519 "version": "1.0.1", 520 "version_normalized": "1.0.1.0", 521 "source": { 522 "type": "git", 523 "url": "https://github.com/php-fig/http-factory.git", 524 "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be" 525 }, 526 "dist": { 527 "type": "zip", 528 "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be", 529 "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be", 530 "shasum": "" 531 }, 532 "require": { 533 "php": ">=7.0.0", 534 "psr/http-message": "^1.0" 535 }, 536 "time": "2019-04-30T12:38:16+00:00", 537 "type": "library", 538 "extra": { 539 "branch-alias": { 540 "dev-master": "1.0.x-dev" 541 } 542 }, 543 "installation-source": "dist", 544 "autoload": { 545 "psr-4": { 546 "Psr\\Http\\Message\\": "src/" 547 } 548 }, 549 "notification-url": "https://packagist.org/downloads/", 550 "license": [ 551 "MIT" 552 ], 553 "authors": [ 554 { 555 "name": "PHP-FIG", 556 "homepage": "http://www.php-fig.org/" 557 } 558 ], 559 "description": "Common interfaces for PSR-7 HTTP message factories", 560 "keywords": [ 561 "factory", 562 "http", 563 "message", 564 "psr", 565 "psr-17", 566 "psr-7", 567 "request", 568 "response" 569 ], 570 "support": { 571 "source": "https://github.com/php-fig/http-factory/tree/master" 572 } 573 }, 574 { 575 "name": "psr/http-message", 576 "version": "1.0.1", 577 "version_normalized": "1.0.1.0", 578 "source": { 579 "type": "git", 580 "url": "https://github.com/php-fig/http-message.git", 581 "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363" 582 }, 583 "dist": { 584 "type": "zip", 585 "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363", 586 "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363", 587 "shasum": "" 588 }, 589 "require": { 590 "php": ">=5.3.0" 591 }, 592 "time": "2016-08-06T14:39:51+00:00", 593 "type": "library", 594 "extra": { 595 "branch-alias": { 596 "dev-master": "1.0.x-dev" 597 } 598 }, 599 "installation-source": "dist", 600 "autoload": { 601 "psr-4": { 602 "Psr\\Http\\Message\\": "src/" 603 } 604 }, 605 "notification-url": "https://packagist.org/downloads/", 606 "license": [ 607 "MIT" 608 ], 609 "authors": [ 610 { 611 "name": "PHP-FIG", 612 "homepage": "http://www.php-fig.org/" 613 } 614 ], 615 "description": "Common interface for HTTP messages", 616 "homepage": "https://github.com/php-fig/http-message", 617 "keywords": [ 618 "http", 619 "http-message", 620 "psr", 621 "psr-7", 622 "request", 623 "response" 624 ], 625 "support": { 626 "source": "https://github.com/php-fig/http-message/tree/master" 627 } 628 }, 629 { 630 "name": "ralouphie/getallheaders", 631 "version": "3.0.3", 632 "version_normalized": "3.0.3.0", 633 "source": { 634 "type": "git", 635 "url": "https://github.com/ralouphie/getallheaders.git", 636 "reference": "120b605dfeb996808c31b6477290a714d356e822" 637 }, 638 "dist": { 639 "type": "zip", 640 "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822", 641 "reference": "120b605dfeb996808c31b6477290a714d356e822", 642 "shasum": "" 643 }, 644 "require": { 645 "php": ">=5.6" 646 }, 647 "require-dev": { 648 "php-coveralls/php-coveralls": "^2.1", 649 "phpunit/phpunit": "^5 || ^6.5" 650 }, 651 "time": "2019-03-08T08:55:37+00:00", 652 "type": "library", 653 "installation-source": "dist", 654 "autoload": { 655 "files": [ 656 "src/getallheaders.php" 657 ] 658 }, 659 "notification-url": "https://packagist.org/downloads/", 660 "license": [ 661 "MIT" 662 ], 663 "authors": [ 664 { 665 "name": "Ralph Khattar", 666 "email": "ralph.khattar@gmail.com" 667 } 668 ], 669 "description": "A polyfill for getallheaders.", 670 "support": { 671 "issues": "https://github.com/ralouphie/getallheaders/issues", 672 "source": "https://github.com/ralouphie/getallheaders/tree/develop" 673 } 674 } 675 ]
Note: See TracChangeset
for help on using the changeset viewer.