installed.json 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924
  1. [
  2. {
  3. "name": "clue/stream-filter",
  4. "version": "v1.4.1",
  5. "version_normalized": "1.4.1.0",
  6. "source": {
  7. "type": "git",
  8. "url": "https://github.com/clue/php-stream-filter.git",
  9. "reference": "5a58cc30a8bd6a4eb8f856adf61dd3e013f53f71"
  10. },
  11. "dist": {
  12. "type": "zip",
  13. "url": "https://api.github.com/repos/clue/php-stream-filter/zipball/5a58cc30a8bd6a4eb8f856adf61dd3e013f53f71",
  14. "reference": "5a58cc30a8bd6a4eb8f856adf61dd3e013f53f71",
  15. "shasum": ""
  16. },
  17. "require": {
  18. "php": ">=5.3"
  19. },
  20. "require-dev": {
  21. "phpunit/phpunit": "^5.0 || ^4.8"
  22. },
  23. "time": "2019-04-09T12:31:48+00:00",
  24. "type": "library",
  25. "installation-source": "dist",
  26. "autoload": {
  27. "psr-4": {
  28. "Clue\\StreamFilter\\": "src/"
  29. },
  30. "files": [
  31. "src/functions_include.php"
  32. ]
  33. },
  34. "notification-url": "https://packagist.org/downloads/",
  35. "license": [
  36. "MIT"
  37. ],
  38. "authors": [
  39. {
  40. "name": "Christian Lück",
  41. "email": "christian@lueck.tv"
  42. }
  43. ],
  44. "description": "A simple and modern approach to stream filtering in PHP",
  45. "homepage": "https://github.com/clue/php-stream-filter",
  46. "keywords": [
  47. "bucket brigade",
  48. "callback",
  49. "filter",
  50. "php_user_filter",
  51. "stream",
  52. "stream_filter_append",
  53. "stream_filter_register"
  54. ]
  55. },
  56. {
  57. "name": "guzzlehttp/psr7",
  58. "version": "1.5.2",
  59. "version_normalized": "1.5.2.0",
  60. "source": {
  61. "type": "git",
  62. "url": "https://github.com/guzzle/psr7.git",
  63. "reference": "9f83dded91781a01c63574e387eaa769be769115"
  64. },
  65. "dist": {
  66. "type": "zip",
  67. "url": "https://api.github.com/repos/guzzle/psr7/zipball/9f83dded91781a01c63574e387eaa769be769115",
  68. "reference": "9f83dded91781a01c63574e387eaa769be769115",
  69. "shasum": ""
  70. },
  71. "require": {
  72. "php": ">=5.4.0",
  73. "psr/http-message": "~1.0",
  74. "ralouphie/getallheaders": "^2.0.5"
  75. },
  76. "provide": {
  77. "psr/http-message-implementation": "1.0"
  78. },
  79. "require-dev": {
  80. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  81. },
  82. "time": "2018-12-04T20:46:45+00:00",
  83. "type": "library",
  84. "extra": {
  85. "branch-alias": {
  86. "dev-master": "1.5-dev"
  87. }
  88. },
  89. "installation-source": "dist",
  90. "autoload": {
  91. "psr-4": {
  92. "GuzzleHttp\\Psr7\\": "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": "Tobias Schultze",
  110. "homepage": "https://github.com/Tobion"
  111. }
  112. ],
  113. "description": "PSR-7 message implementation that also provides common utility methods",
  114. "keywords": [
  115. "http",
  116. "message",
  117. "psr-7",
  118. "request",
  119. "response",
  120. "stream",
  121. "uri",
  122. "url"
  123. ]
  124. },
  125. {
  126. "name": "mailgun/mailgun-php",
  127. "version": "2.8.1",
  128. "version_normalized": "2.8.1.0",
  129. "source": {
  130. "type": "git",
  131. "url": "https://github.com/mailgun/mailgun-php.git",
  132. "reference": "4af0346851914ae0d9a58bf9ddf17eb48f6498c8"
  133. },
  134. "dist": {
  135. "type": "zip",
  136. "url": "https://api.github.com/repos/mailgun/mailgun-php/zipball/4af0346851914ae0d9a58bf9ddf17eb48f6498c8",
  137. "reference": "4af0346851914ae0d9a58bf9ddf17eb48f6498c8",
  138. "shasum": ""
  139. },
  140. "require": {
  141. "php": "^5.5 || ^7.0",
  142. "php-http/client-common": "^1.1",
  143. "php-http/discovery": "^1.0",
  144. "php-http/httplug": "^1.0 || ^2.0",
  145. "php-http/message": "^1.0",
  146. "php-http/multipart-stream-builder": "^1.0",
  147. "webmozart/assert": "^1.2"
  148. },
  149. "require-dev": {
  150. "guzzlehttp/psr7": "^1.4",
  151. "nyholm/nsa": "^1.1",
  152. "php-http/guzzle6-adapter": "^1.0",
  153. "phpunit/phpunit": "~4.8"
  154. },
  155. "suggest": {
  156. "guzzlehttp/psr7": "PSR-7 message implementation that also provides common utility methods",
  157. "php-http/curl-client": "cURL client for PHP-HTTP"
  158. },
  159. "time": "2019-02-02T07:14:32+00:00",
  160. "type": "library",
  161. "installation-source": "dist",
  162. "autoload": {
  163. "psr-0": {
  164. "Mailgun": "src/"
  165. }
  166. },
  167. "notification-url": "https://packagist.org/downloads/",
  168. "license": [
  169. "MIT"
  170. ],
  171. "authors": [
  172. {
  173. "name": "Travis Swientek",
  174. "email": "travis@mailgunhq.com"
  175. }
  176. ],
  177. "description": "The Mailgun SDK provides methods for all API functions."
  178. },
  179. {
  180. "name": "php-http/client-common",
  181. "version": "1.9.1",
  182. "version_normalized": "1.9.1.0",
  183. "source": {
  184. "type": "git",
  185. "url": "https://github.com/php-http/client-common.git",
  186. "reference": "0e156a12cc3e46f590c73bf57592a2252fc3dc48"
  187. },
  188. "dist": {
  189. "type": "zip",
  190. "url": "https://api.github.com/repos/php-http/client-common/zipball/0e156a12cc3e46f590c73bf57592a2252fc3dc48",
  191. "reference": "0e156a12cc3e46f590c73bf57592a2252fc3dc48",
  192. "shasum": ""
  193. },
  194. "require": {
  195. "php": "^5.4 || ^7.0",
  196. "php-http/httplug": "^1.1",
  197. "php-http/message": "^1.6",
  198. "php-http/message-factory": "^1.0",
  199. "symfony/options-resolver": "^2.6 || ^3.0 || ^4.0"
  200. },
  201. "require-dev": {
  202. "guzzlehttp/psr7": "^1.4",
  203. "phpspec/phpspec": "^2.5 || ^3.4 || ^4.2"
  204. },
  205. "suggest": {
  206. "php-http/cache-plugin": "PSR-6 Cache plugin",
  207. "php-http/logger-plugin": "PSR-3 Logger plugin",
  208. "php-http/stopwatch-plugin": "Symfony Stopwatch plugin"
  209. },
  210. "time": "2019-02-02T07:03:15+00:00",
  211. "type": "library",
  212. "extra": {
  213. "branch-alias": {
  214. "dev-master": "1.9.x-dev"
  215. }
  216. },
  217. "installation-source": "dist",
  218. "autoload": {
  219. "psr-4": {
  220. "Http\\Client\\Common\\": "src/"
  221. }
  222. },
  223. "notification-url": "https://packagist.org/downloads/",
  224. "license": [
  225. "MIT"
  226. ],
  227. "authors": [
  228. {
  229. "name": "Márk Sági-Kazár",
  230. "email": "mark.sagikazar@gmail.com"
  231. }
  232. ],
  233. "description": "Common HTTP Client implementations and tools for HTTPlug",
  234. "homepage": "http://httplug.io",
  235. "keywords": [
  236. "client",
  237. "common",
  238. "http",
  239. "httplug"
  240. ]
  241. },
  242. {
  243. "name": "php-http/curl-client",
  244. "version": "v1.7.1",
  245. "version_normalized": "1.7.1.0",
  246. "source": {
  247. "type": "git",
  248. "url": "https://github.com/php-http/curl-client.git",
  249. "reference": "6341a93d00e5d953fc868a3928b5167e6513f2b6"
  250. },
  251. "dist": {
  252. "type": "zip",
  253. "url": "https://api.github.com/repos/php-http/curl-client/zipball/6341a93d00e5d953fc868a3928b5167e6513f2b6",
  254. "reference": "6341a93d00e5d953fc868a3928b5167e6513f2b6",
  255. "shasum": ""
  256. },
  257. "require": {
  258. "ext-curl": "*",
  259. "php": "^5.5 || ^7.0",
  260. "php-http/discovery": "^1.0",
  261. "php-http/httplug": "^1.0",
  262. "php-http/message": "^1.2",
  263. "php-http/message-factory": "^1.0.2"
  264. },
  265. "provide": {
  266. "php-http/async-client-implementation": "1.0",
  267. "php-http/client-implementation": "1.0"
  268. },
  269. "require-dev": {
  270. "guzzlehttp/psr7": "^1.0",
  271. "php-http/client-integration-tests": "^0.6",
  272. "phpunit/phpunit": "^4.8.27",
  273. "zendframework/zend-diactoros": "^1.0"
  274. },
  275. "time": "2018-03-26T19:21:48+00:00",
  276. "type": "library",
  277. "installation-source": "dist",
  278. "autoload": {
  279. "psr-4": {
  280. "Http\\Client\\Curl\\": "src/"
  281. }
  282. },
  283. "notification-url": "https://packagist.org/downloads/",
  284. "license": [
  285. "MIT"
  286. ],
  287. "authors": [
  288. {
  289. "name": "Михаил Красильников",
  290. "email": "m.krasilnikov@yandex.ru"
  291. }
  292. ],
  293. "description": "cURL client for PHP-HTTP",
  294. "homepage": "http://php-http.org",
  295. "keywords": [
  296. "curl",
  297. "http"
  298. ]
  299. },
  300. {
  301. "name": "php-http/discovery",
  302. "version": "1.6.1",
  303. "version_normalized": "1.6.1.0",
  304. "source": {
  305. "type": "git",
  306. "url": "https://github.com/php-http/discovery.git",
  307. "reference": "684855f2c2e9d0a61868b8f8d6bd0295c8a4b651"
  308. },
  309. "dist": {
  310. "type": "zip",
  311. "url": "https://api.github.com/repos/php-http/discovery/zipball/684855f2c2e9d0a61868b8f8d6bd0295c8a4b651",
  312. "reference": "684855f2c2e9d0a61868b8f8d6bd0295c8a4b651",
  313. "shasum": ""
  314. },
  315. "require": {
  316. "php": "^5.5 || ^7.0"
  317. },
  318. "conflict": {
  319. "nyholm/psr7": "<1.0"
  320. },
  321. "require-dev": {
  322. "php-http/httplug": "^1.0 || ^2.0",
  323. "php-http/message-factory": "^1.0",
  324. "phpspec/phpspec": "^2.4",
  325. "puli/composer-plugin": "1.0.0-beta10"
  326. },
  327. "suggest": {
  328. "php-http/message": "Allow to use Guzzle, Diactoros or Slim Framework factories",
  329. "puli/composer-plugin": "Sets up Puli which is recommended for Discovery to work. Check http://docs.php-http.org/en/latest/discovery.html for more details."
  330. },
  331. "time": "2019-02-23T07:42:53+00:00",
  332. "type": "library",
  333. "extra": {
  334. "branch-alias": {
  335. "dev-master": "1.5-dev"
  336. }
  337. },
  338. "installation-source": "dist",
  339. "autoload": {
  340. "psr-4": {
  341. "Http\\Discovery\\": "src/"
  342. }
  343. },
  344. "notification-url": "https://packagist.org/downloads/",
  345. "license": [
  346. "MIT"
  347. ],
  348. "authors": [
  349. {
  350. "name": "Márk Sági-Kazár",
  351. "email": "mark.sagikazar@gmail.com"
  352. }
  353. ],
  354. "description": "Finds installed HTTPlug implementations and PSR-7 message factories",
  355. "homepage": "http://php-http.org",
  356. "keywords": [
  357. "adapter",
  358. "client",
  359. "discovery",
  360. "factory",
  361. "http",
  362. "message",
  363. "psr7"
  364. ]
  365. },
  366. {
  367. "name": "php-http/httplug",
  368. "version": "v1.1.0",
  369. "version_normalized": "1.1.0.0",
  370. "source": {
  371. "type": "git",
  372. "url": "https://github.com/php-http/httplug.git",
  373. "reference": "1c6381726c18579c4ca2ef1ec1498fdae8bdf018"
  374. },
  375. "dist": {
  376. "type": "zip",
  377. "url": "https://api.github.com/repos/php-http/httplug/zipball/1c6381726c18579c4ca2ef1ec1498fdae8bdf018",
  378. "reference": "1c6381726c18579c4ca2ef1ec1498fdae8bdf018",
  379. "shasum": ""
  380. },
  381. "require": {
  382. "php": ">=5.4",
  383. "php-http/promise": "^1.0",
  384. "psr/http-message": "^1.0"
  385. },
  386. "require-dev": {
  387. "henrikbjorn/phpspec-code-coverage": "^1.0",
  388. "phpspec/phpspec": "^2.4"
  389. },
  390. "time": "2016-08-31T08:30:17+00:00",
  391. "type": "library",
  392. "extra": {
  393. "branch-alias": {
  394. "dev-master": "1.1-dev"
  395. }
  396. },
  397. "installation-source": "dist",
  398. "autoload": {
  399. "psr-4": {
  400. "Http\\Client\\": "src/"
  401. }
  402. },
  403. "notification-url": "https://packagist.org/downloads/",
  404. "license": [
  405. "MIT"
  406. ],
  407. "authors": [
  408. {
  409. "name": "Eric GELOEN",
  410. "email": "geloen.eric@gmail.com"
  411. },
  412. {
  413. "name": "Márk Sági-Kazár",
  414. "email": "mark.sagikazar@gmail.com"
  415. }
  416. ],
  417. "description": "HTTPlug, the HTTP client abstraction for PHP",
  418. "homepage": "http://httplug.io",
  419. "keywords": [
  420. "client",
  421. "http"
  422. ]
  423. },
  424. {
  425. "name": "php-http/message",
  426. "version": "1.7.2",
  427. "version_normalized": "1.7.2.0",
  428. "source": {
  429. "type": "git",
  430. "url": "https://github.com/php-http/message.git",
  431. "reference": "b159ffe570dffd335e22ef0b91a946eacb182fa1"
  432. },
  433. "dist": {
  434. "type": "zip",
  435. "url": "https://api.github.com/repos/php-http/message/zipball/b159ffe570dffd335e22ef0b91a946eacb182fa1",
  436. "reference": "b159ffe570dffd335e22ef0b91a946eacb182fa1",
  437. "shasum": ""
  438. },
  439. "require": {
  440. "clue/stream-filter": "^1.4",
  441. "php": "^5.4 || ^7.0",
  442. "php-http/message-factory": "^1.0.2",
  443. "psr/http-message": "^1.0"
  444. },
  445. "provide": {
  446. "php-http/message-factory-implementation": "1.0"
  447. },
  448. "require-dev": {
  449. "akeneo/phpspec-skip-example-extension": "^1.0",
  450. "coduo/phpspec-data-provider-extension": "^1.0",
  451. "ext-zlib": "*",
  452. "guzzlehttp/psr7": "^1.0",
  453. "henrikbjorn/phpspec-code-coverage": "^1.0",
  454. "phpspec/phpspec": "^2.4",
  455. "slim/slim": "^3.0",
  456. "zendframework/zend-diactoros": "^1.0"
  457. },
  458. "suggest": {
  459. "ext-zlib": "Used with compressor/decompressor streams",
  460. "guzzlehttp/psr7": "Used with Guzzle PSR-7 Factories",
  461. "slim/slim": "Used with Slim Framework PSR-7 implementation",
  462. "zendframework/zend-diactoros": "Used with Diactoros Factories"
  463. },
  464. "time": "2018-11-01T09:32:41+00:00",
  465. "type": "library",
  466. "extra": {
  467. "branch-alias": {
  468. "dev-master": "1.6-dev"
  469. }
  470. },
  471. "installation-source": "dist",
  472. "autoload": {
  473. "psr-4": {
  474. "Http\\Message\\": "src/"
  475. },
  476. "files": [
  477. "src/filters.php"
  478. ]
  479. },
  480. "notification-url": "https://packagist.org/downloads/",
  481. "license": [
  482. "MIT"
  483. ],
  484. "authors": [
  485. {
  486. "name": "Márk Sági-Kazár",
  487. "email": "mark.sagikazar@gmail.com"
  488. }
  489. ],
  490. "description": "HTTP Message related tools",
  491. "homepage": "http://php-http.org",
  492. "keywords": [
  493. "http",
  494. "message",
  495. "psr-7"
  496. ]
  497. },
  498. {
  499. "name": "php-http/message-factory",
  500. "version": "v1.0.2",
  501. "version_normalized": "1.0.2.0",
  502. "source": {
  503. "type": "git",
  504. "url": "https://github.com/php-http/message-factory.git",
  505. "reference": "a478cb11f66a6ac48d8954216cfed9aa06a501a1"
  506. },
  507. "dist": {
  508. "type": "zip",
  509. "url": "https://api.github.com/repos/php-http/message-factory/zipball/a478cb11f66a6ac48d8954216cfed9aa06a501a1",
  510. "reference": "a478cb11f66a6ac48d8954216cfed9aa06a501a1",
  511. "shasum": ""
  512. },
  513. "require": {
  514. "php": ">=5.4",
  515. "psr/http-message": "^1.0"
  516. },
  517. "time": "2015-12-19T14:08:53+00:00",
  518. "type": "library",
  519. "extra": {
  520. "branch-alias": {
  521. "dev-master": "1.0-dev"
  522. }
  523. },
  524. "installation-source": "dist",
  525. "autoload": {
  526. "psr-4": {
  527. "Http\\Message\\": "src/"
  528. }
  529. },
  530. "notification-url": "https://packagist.org/downloads/",
  531. "license": [
  532. "MIT"
  533. ],
  534. "authors": [
  535. {
  536. "name": "Márk Sági-Kazár",
  537. "email": "mark.sagikazar@gmail.com"
  538. }
  539. ],
  540. "description": "Factory interfaces for PSR-7 HTTP Message",
  541. "homepage": "http://php-http.org",
  542. "keywords": [
  543. "factory",
  544. "http",
  545. "message",
  546. "stream",
  547. "uri"
  548. ]
  549. },
  550. {
  551. "name": "php-http/multipart-stream-builder",
  552. "version": "1.0.0",
  553. "version_normalized": "1.0.0.0",
  554. "source": {
  555. "type": "git",
  556. "url": "https://github.com/php-http/multipart-stream-builder.git",
  557. "reference": "1fa3c623fc813a43b39494b2a1612174e36e0fb0"
  558. },
  559. "dist": {
  560. "type": "zip",
  561. "url": "https://api.github.com/repos/php-http/multipart-stream-builder/zipball/1fa3c623fc813a43b39494b2a1612174e36e0fb0",
  562. "reference": "1fa3c623fc813a43b39494b2a1612174e36e0fb0",
  563. "shasum": ""
  564. },
  565. "require": {
  566. "php": "^5.5 || ^7.0",
  567. "php-http/discovery": "^1.0",
  568. "php-http/message-factory": "^1.0.2",
  569. "psr/http-message": "^1.0"
  570. },
  571. "require-dev": {
  572. "php-http/message": "^1.5",
  573. "phpunit/phpunit": "^4.8 || ^5.4",
  574. "zendframework/zend-diactoros": "^1.3.5"
  575. },
  576. "time": "2017-05-21T17:45:25+00:00",
  577. "type": "library",
  578. "extra": {
  579. "branch-alias": {
  580. "dev-master": "0.3-dev"
  581. }
  582. },
  583. "installation-source": "dist",
  584. "autoload": {
  585. "psr-4": {
  586. "Http\\Message\\MultipartStream\\": "src/"
  587. }
  588. },
  589. "notification-url": "https://packagist.org/downloads/",
  590. "license": [
  591. "MIT"
  592. ],
  593. "authors": [
  594. {
  595. "name": "Tobias Nyholm",
  596. "email": "tobias.nyholm@gmail.com"
  597. }
  598. ],
  599. "description": "A builder class that help you create a multipart stream",
  600. "homepage": "http://php-http.org",
  601. "keywords": [
  602. "factory",
  603. "http",
  604. "message",
  605. "multipart stream",
  606. "stream"
  607. ]
  608. },
  609. {
  610. "name": "php-http/promise",
  611. "version": "v1.0.0",
  612. "version_normalized": "1.0.0.0",
  613. "source": {
  614. "type": "git",
  615. "url": "https://github.com/php-http/promise.git",
  616. "reference": "dc494cdc9d7160b9a09bd5573272195242ce7980"
  617. },
  618. "dist": {
  619. "type": "zip",
  620. "url": "https://api.github.com/repos/php-http/promise/zipball/dc494cdc9d7160b9a09bd5573272195242ce7980",
  621. "reference": "dc494cdc9d7160b9a09bd5573272195242ce7980",
  622. "shasum": ""
  623. },
  624. "require-dev": {
  625. "henrikbjorn/phpspec-code-coverage": "^1.0",
  626. "phpspec/phpspec": "^2.4"
  627. },
  628. "time": "2016-01-26T13:27:02+00:00",
  629. "type": "library",
  630. "extra": {
  631. "branch-alias": {
  632. "dev-master": "1.1-dev"
  633. }
  634. },
  635. "installation-source": "dist",
  636. "autoload": {
  637. "psr-4": {
  638. "Http\\Promise\\": "src/"
  639. }
  640. },
  641. "notification-url": "https://packagist.org/downloads/",
  642. "license": [
  643. "MIT"
  644. ],
  645. "authors": [
  646. {
  647. "name": "Márk Sági-Kazár",
  648. "email": "mark.sagikazar@gmail.com"
  649. },
  650. {
  651. "name": "Joel Wurtz",
  652. "email": "joel.wurtz@gmail.com"
  653. }
  654. ],
  655. "description": "Promise used for asynchronous HTTP requests",
  656. "homepage": "http://httplug.io",
  657. "keywords": [
  658. "promise"
  659. ]
  660. },
  661. {
  662. "name": "psr/http-message",
  663. "version": "1.0.1",
  664. "version_normalized": "1.0.1.0",
  665. "source": {
  666. "type": "git",
  667. "url": "https://github.com/php-fig/http-message.git",
  668. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  669. },
  670. "dist": {
  671. "type": "zip",
  672. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  673. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  674. "shasum": ""
  675. },
  676. "require": {
  677. "php": ">=5.3.0"
  678. },
  679. "time": "2016-08-06T14:39:51+00:00",
  680. "type": "library",
  681. "extra": {
  682. "branch-alias": {
  683. "dev-master": "1.0.x-dev"
  684. }
  685. },
  686. "installation-source": "dist",
  687. "autoload": {
  688. "psr-4": {
  689. "Psr\\Http\\Message\\": "src/"
  690. }
  691. },
  692. "notification-url": "https://packagist.org/downloads/",
  693. "license": [
  694. "MIT"
  695. ],
  696. "authors": [
  697. {
  698. "name": "PHP-FIG",
  699. "homepage": "http://www.php-fig.org/"
  700. }
  701. ],
  702. "description": "Common interface for HTTP messages",
  703. "homepage": "https://github.com/php-fig/http-message",
  704. "keywords": [
  705. "http",
  706. "http-message",
  707. "psr",
  708. "psr-7",
  709. "request",
  710. "response"
  711. ]
  712. },
  713. {
  714. "name": "ralouphie/getallheaders",
  715. "version": "2.0.5",
  716. "version_normalized": "2.0.5.0",
  717. "source": {
  718. "type": "git",
  719. "url": "https://github.com/ralouphie/getallheaders.git",
  720. "reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa"
  721. },
  722. "dist": {
  723. "type": "zip",
  724. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/5601c8a83fbba7ef674a7369456d12f1e0d0eafa",
  725. "reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa",
  726. "shasum": ""
  727. },
  728. "require": {
  729. "php": ">=5.3"
  730. },
  731. "require-dev": {
  732. "phpunit/phpunit": "~3.7.0",
  733. "satooshi/php-coveralls": ">=1.0"
  734. },
  735. "time": "2016-02-11T07:05:27+00:00",
  736. "type": "library",
  737. "installation-source": "dist",
  738. "autoload": {
  739. "files": [
  740. "src/getallheaders.php"
  741. ]
  742. },
  743. "notification-url": "https://packagist.org/downloads/",
  744. "license": [
  745. "MIT"
  746. ],
  747. "authors": [
  748. {
  749. "name": "Ralph Khattar",
  750. "email": "ralph.khattar@gmail.com"
  751. }
  752. ],
  753. "description": "A polyfill for getallheaders."
  754. },
  755. {
  756. "name": "symfony/options-resolver",
  757. "version": "v3.4.27",
  758. "version_normalized": "3.4.27.0",
  759. "source": {
  760. "type": "git",
  761. "url": "https://github.com/symfony/options-resolver.git",
  762. "reference": "ed3b397f9c07c8ca388b2a1ef744403b4d4ecc44"
  763. },
  764. "dist": {
  765. "type": "zip",
  766. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/ed3b397f9c07c8ca388b2a1ef744403b4d4ecc44",
  767. "reference": "ed3b397f9c07c8ca388b2a1ef744403b4d4ecc44",
  768. "shasum": ""
  769. },
  770. "require": {
  771. "php": "^5.5.9|>=7.0.8"
  772. },
  773. "time": "2019-04-10T16:00:48+00:00",
  774. "type": "library",
  775. "extra": {
  776. "branch-alias": {
  777. "dev-master": "3.4-dev"
  778. }
  779. },
  780. "installation-source": "dist",
  781. "autoload": {
  782. "psr-4": {
  783. "Symfony\\Component\\OptionsResolver\\": ""
  784. },
  785. "exclude-from-classmap": [
  786. "/Tests/"
  787. ]
  788. },
  789. "notification-url": "https://packagist.org/downloads/",
  790. "license": [
  791. "MIT"
  792. ],
  793. "authors": [
  794. {
  795. "name": "Fabien Potencier",
  796. "email": "fabien@symfony.com"
  797. },
  798. {
  799. "name": "Symfony Community",
  800. "homepage": "https://symfony.com/contributors"
  801. }
  802. ],
  803. "description": "Symfony OptionsResolver Component",
  804. "homepage": "https://symfony.com",
  805. "keywords": [
  806. "config",
  807. "configuration",
  808. "options"
  809. ]
  810. },
  811. {
  812. "name": "symfony/polyfill-ctype",
  813. "version": "v1.11.0",
  814. "version_normalized": "1.11.0.0",
  815. "source": {
  816. "type": "git",
  817. "url": "https://github.com/symfony/polyfill-ctype.git",
  818. "reference": "82ebae02209c21113908c229e9883c419720738a"
  819. },
  820. "dist": {
  821. "type": "zip",
  822. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/82ebae02209c21113908c229e9883c419720738a",
  823. "reference": "82ebae02209c21113908c229e9883c419720738a",
  824. "shasum": ""
  825. },
  826. "require": {
  827. "php": ">=5.3.3"
  828. },
  829. "suggest": {
  830. "ext-ctype": "For best performance"
  831. },
  832. "time": "2019-02-06T07:57:58+00:00",
  833. "type": "library",
  834. "extra": {
  835. "branch-alias": {
  836. "dev-master": "1.11-dev"
  837. }
  838. },
  839. "installation-source": "dist",
  840. "autoload": {
  841. "psr-4": {
  842. "Symfony\\Polyfill\\Ctype\\": ""
  843. },
  844. "files": [
  845. "bootstrap.php"
  846. ]
  847. },
  848. "notification-url": "https://packagist.org/downloads/",
  849. "license": [
  850. "MIT"
  851. ],
  852. "authors": [
  853. {
  854. "name": "Symfony Community",
  855. "homepage": "https://symfony.com/contributors"
  856. },
  857. {
  858. "name": "Gert de Pagter",
  859. "email": "BackEndTea@gmail.com"
  860. }
  861. ],
  862. "description": "Symfony polyfill for ctype functions",
  863. "homepage": "https://symfony.com",
  864. "keywords": [
  865. "compatibility",
  866. "ctype",
  867. "polyfill",
  868. "portable"
  869. ]
  870. },
  871. {
  872. "name": "webmozart/assert",
  873. "version": "1.4.0",
  874. "version_normalized": "1.4.0.0",
  875. "source": {
  876. "type": "git",
  877. "url": "https://github.com/webmozart/assert.git",
  878. "reference": "83e253c8e0be5b0257b881e1827274667c5c17a9"
  879. },
  880. "dist": {
  881. "type": "zip",
  882. "url": "https://api.github.com/repos/webmozart/assert/zipball/83e253c8e0be5b0257b881e1827274667c5c17a9",
  883. "reference": "83e253c8e0be5b0257b881e1827274667c5c17a9",
  884. "shasum": ""
  885. },
  886. "require": {
  887. "php": "^5.3.3 || ^7.0",
  888. "symfony/polyfill-ctype": "^1.8"
  889. },
  890. "require-dev": {
  891. "phpunit/phpunit": "^4.6",
  892. "sebastian/version": "^1.0.1"
  893. },
  894. "time": "2018-12-25T11:19:39+00:00",
  895. "type": "library",
  896. "extra": {
  897. "branch-alias": {
  898. "dev-master": "1.3-dev"
  899. }
  900. },
  901. "installation-source": "dist",
  902. "autoload": {
  903. "psr-4": {
  904. "Webmozart\\Assert\\": "src/"
  905. }
  906. },
  907. "notification-url": "https://packagist.org/downloads/",
  908. "license": [
  909. "MIT"
  910. ],
  911. "authors": [
  912. {
  913. "name": "Bernhard Schussek",
  914. "email": "bschussek@gmail.com"
  915. }
  916. ],
  917. "description": "Assertions to validate method input/output with nice error messages.",
  918. "keywords": [
  919. "assert",
  920. "check",
  921. "validate"
  922. ]
  923. }
  924. ]