composer.lock 73 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145
  1. {
  2. "_readme": [
  3. "This file locks the dependencies of your project to a known state",
  4. "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "3b81a3fe1e765420e2d6be50c475d093",
  8. "packages": [
  9. {
  10. "name": "clue/stream-filter",
  11. "version": "v1.3.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/clue/php-stream-filter.git",
  15. "reference": "e3bf9415da163d9ad6701dccb407ed501ae69785"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/clue/php-stream-filter/zipball/e3bf9415da163d9ad6701dccb407ed501ae69785",
  20. "reference": "e3bf9415da163d9ad6701dccb407ed501ae69785",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": ">=5.3"
  25. },
  26. "type": "library",
  27. "autoload": {
  28. "psr-4": {
  29. "Clue\\StreamFilter\\": "src/"
  30. },
  31. "files": [
  32. "src/functions.php"
  33. ]
  34. },
  35. "notification-url": "https://packagist.org/downloads/",
  36. "license": [
  37. "MIT"
  38. ],
  39. "authors": [
  40. {
  41. "name": "Christian Lück",
  42. "email": "christian@lueck.tv"
  43. }
  44. ],
  45. "description": "A simple and modern approach to stream filtering in PHP",
  46. "homepage": "https://github.com/clue/php-stream-filter",
  47. "keywords": [
  48. "bucket brigade",
  49. "callback",
  50. "filter",
  51. "php_user_filter",
  52. "stream",
  53. "stream_filter_append",
  54. "stream_filter_register"
  55. ],
  56. "time": "2015-11-08T23:41:30+00:00"
  57. },
  58. {
  59. "name": "docker-php/docker-php",
  60. "version": "1.24.0",
  61. "source": {
  62. "type": "git",
  63. "url": "https://github.com/docker-php/docker-php.git",
  64. "reference": "27b04e15810e3ed688d5e87b75a4eb6716f0bda0"
  65. },
  66. "dist": {
  67. "type": "zip",
  68. "url": "https://api.github.com/repos/docker-php/docker-php/zipball/27b04e15810e3ed688d5e87b75a4eb6716f0bda0",
  69. "reference": "27b04e15810e3ed688d5e87b75a4eb6716f0bda0",
  70. "shasum": ""
  71. },
  72. "require": {
  73. "guzzlehttp/psr7": "^1.2",
  74. "jane/open-api": "^1.0",
  75. "php": ">=5.4",
  76. "php-http/client-common": "^1.1",
  77. "php-http/message": "^1.0",
  78. "php-http/socket-client": "^1.0",
  79. "symfony/filesystem": "^2.3 || ^3.0",
  80. "symfony/process": "^2.3 || ^3.0"
  81. },
  82. "require-dev": {
  83. "friendsofphp/php-cs-fixer": "^2.0",
  84. "phpunit/phpunit": "^4.7"
  85. },
  86. "type": "library",
  87. "extra": {
  88. "branch-alias": {
  89. "dev-master": "1.24-dev"
  90. }
  91. },
  92. "autoload": {
  93. "psr-4": {
  94. "Docker\\": "src/",
  95. "Docker\\API\\": "generated/"
  96. }
  97. },
  98. "notification-url": "https://packagist.org/downloads/",
  99. "license": [
  100. "MIT"
  101. ],
  102. "description": "A Docker PHP client",
  103. "time": "2016-08-08T10:39:27+00:00"
  104. },
  105. {
  106. "name": "doctrine/inflector",
  107. "version": "v1.2.0",
  108. "source": {
  109. "type": "git",
  110. "url": "https://github.com/doctrine/inflector.git",
  111. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462"
  112. },
  113. "dist": {
  114. "type": "zip",
  115. "url": "https://api.github.com/repos/doctrine/inflector/zipball/e11d84c6e018beedd929cff5220969a3c6d1d462",
  116. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462",
  117. "shasum": ""
  118. },
  119. "require": {
  120. "php": "^7.0"
  121. },
  122. "require-dev": {
  123. "phpunit/phpunit": "^6.2"
  124. },
  125. "type": "library",
  126. "extra": {
  127. "branch-alias": {
  128. "dev-master": "1.2.x-dev"
  129. }
  130. },
  131. "autoload": {
  132. "psr-4": {
  133. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  134. }
  135. },
  136. "notification-url": "https://packagist.org/downloads/",
  137. "license": [
  138. "MIT"
  139. ],
  140. "authors": [
  141. {
  142. "name": "Roman Borschel",
  143. "email": "roman@code-factory.org"
  144. },
  145. {
  146. "name": "Benjamin Eberlei",
  147. "email": "kontakt@beberlei.de"
  148. },
  149. {
  150. "name": "Guilherme Blanco",
  151. "email": "guilhermeblanco@gmail.com"
  152. },
  153. {
  154. "name": "Jonathan Wage",
  155. "email": "jonwage@gmail.com"
  156. },
  157. {
  158. "name": "Johannes Schmitt",
  159. "email": "schmittjoh@gmail.com"
  160. }
  161. ],
  162. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  163. "homepage": "http://www.doctrine-project.org",
  164. "keywords": [
  165. "inflection",
  166. "pluralize",
  167. "singularize",
  168. "string"
  169. ],
  170. "time": "2017-07-22T12:18:28+00:00"
  171. },
  172. {
  173. "name": "fitbug/symfony-yaml-serializer-encoder-decoder",
  174. "version": "v0.1.1",
  175. "source": {
  176. "type": "git",
  177. "url": "https://github.com/fitbug/symfony-yaml-serializer-encoder-decoder.git",
  178. "reference": "de3279ae69a80ddcef2559dbdb89a72f33caf5b1"
  179. },
  180. "dist": {
  181. "type": "zip",
  182. "url": "https://api.github.com/repos/fitbug/symfony-yaml-serializer-encoder-decoder/zipball/de3279ae69a80ddcef2559dbdb89a72f33caf5b1",
  183. "reference": "de3279ae69a80ddcef2559dbdb89a72f33caf5b1",
  184. "shasum": ""
  185. },
  186. "require": {
  187. "symfony/serializer": "^v2.0.0 || ^3.0.0",
  188. "symfony/yaml": "^v2.0.0 || ^3.0.0"
  189. },
  190. "require-dev": {
  191. "phpspec/phpspec": "^2.0.0 || ^3.0.0",
  192. "squizlabs/php_codesniffer": "^2.6"
  193. },
  194. "type": "library",
  195. "autoload": {
  196. "psr-4": {
  197. "Fitbug\\SymfonySerializer\\YamlEncoderDecoder\\": "src/"
  198. }
  199. },
  200. "notification-url": "https://packagist.org/downloads/",
  201. "license": [
  202. "MIT"
  203. ],
  204. "authors": [
  205. {
  206. "name": "Billie Thompson",
  207. "email": "billie.thompson@fitbug.com"
  208. }
  209. ],
  210. "description": "A encoder and decoder for Yaml for the Symfony Serializer Component.",
  211. "keywords": [
  212. "encoder",
  213. "serializer",
  214. "symfony",
  215. "symfony-serializer",
  216. "yaml"
  217. ],
  218. "time": "2016-08-12T14:15:24+00:00"
  219. },
  220. {
  221. "name": "guzzlehttp/guzzle",
  222. "version": "6.3.0",
  223. "source": {
  224. "type": "git",
  225. "url": "https://github.com/guzzle/guzzle.git",
  226. "reference": "f4db5a78a5ea468d4831de7f0bf9d9415e348699"
  227. },
  228. "dist": {
  229. "type": "zip",
  230. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/f4db5a78a5ea468d4831de7f0bf9d9415e348699",
  231. "reference": "f4db5a78a5ea468d4831de7f0bf9d9415e348699",
  232. "shasum": ""
  233. },
  234. "require": {
  235. "guzzlehttp/promises": "^1.0",
  236. "guzzlehttp/psr7": "^1.4",
  237. "php": ">=5.5"
  238. },
  239. "require-dev": {
  240. "ext-curl": "*",
  241. "phpunit/phpunit": "^4.0 || ^5.0",
  242. "psr/log": "^1.0"
  243. },
  244. "suggest": {
  245. "psr/log": "Required for using the Log middleware"
  246. },
  247. "type": "library",
  248. "extra": {
  249. "branch-alias": {
  250. "dev-master": "6.2-dev"
  251. }
  252. },
  253. "autoload": {
  254. "files": [
  255. "src/functions_include.php"
  256. ],
  257. "psr-4": {
  258. "GuzzleHttp\\": "src/"
  259. }
  260. },
  261. "notification-url": "https://packagist.org/downloads/",
  262. "license": [
  263. "MIT"
  264. ],
  265. "authors": [
  266. {
  267. "name": "Michael Dowling",
  268. "email": "mtdowling@gmail.com",
  269. "homepage": "https://github.com/mtdowling"
  270. }
  271. ],
  272. "description": "Guzzle is a PHP HTTP client library",
  273. "homepage": "http://guzzlephp.org/",
  274. "keywords": [
  275. "client",
  276. "curl",
  277. "framework",
  278. "http",
  279. "http client",
  280. "rest",
  281. "web service"
  282. ],
  283. "time": "2017-06-22T18:50:49+00:00"
  284. },
  285. {
  286. "name": "guzzlehttp/promises",
  287. "version": "v1.3.1",
  288. "source": {
  289. "type": "git",
  290. "url": "https://github.com/guzzle/promises.git",
  291. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  292. },
  293. "dist": {
  294. "type": "zip",
  295. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  296. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  297. "shasum": ""
  298. },
  299. "require": {
  300. "php": ">=5.5.0"
  301. },
  302. "require-dev": {
  303. "phpunit/phpunit": "^4.0"
  304. },
  305. "type": "library",
  306. "extra": {
  307. "branch-alias": {
  308. "dev-master": "1.4-dev"
  309. }
  310. },
  311. "autoload": {
  312. "psr-4": {
  313. "GuzzleHttp\\Promise\\": "src/"
  314. },
  315. "files": [
  316. "src/functions_include.php"
  317. ]
  318. },
  319. "notification-url": "https://packagist.org/downloads/",
  320. "license": [
  321. "MIT"
  322. ],
  323. "authors": [
  324. {
  325. "name": "Michael Dowling",
  326. "email": "mtdowling@gmail.com",
  327. "homepage": "https://github.com/mtdowling"
  328. }
  329. ],
  330. "description": "Guzzle promises library",
  331. "keywords": [
  332. "promise"
  333. ],
  334. "time": "2016-12-20T10:07:11+00:00"
  335. },
  336. {
  337. "name": "guzzlehttp/psr7",
  338. "version": "1.4.2",
  339. "source": {
  340. "type": "git",
  341. "url": "https://github.com/guzzle/psr7.git",
  342. "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c"
  343. },
  344. "dist": {
  345. "type": "zip",
  346. "url": "https://api.github.com/repos/guzzle/psr7/zipball/f5b8a8512e2b58b0071a7280e39f14f72e05d87c",
  347. "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c",
  348. "shasum": ""
  349. },
  350. "require": {
  351. "php": ">=5.4.0",
  352. "psr/http-message": "~1.0"
  353. },
  354. "provide": {
  355. "psr/http-message-implementation": "1.0"
  356. },
  357. "require-dev": {
  358. "phpunit/phpunit": "~4.0"
  359. },
  360. "type": "library",
  361. "extra": {
  362. "branch-alias": {
  363. "dev-master": "1.4-dev"
  364. }
  365. },
  366. "autoload": {
  367. "psr-4": {
  368. "GuzzleHttp\\Psr7\\": "src/"
  369. },
  370. "files": [
  371. "src/functions_include.php"
  372. ]
  373. },
  374. "notification-url": "https://packagist.org/downloads/",
  375. "license": [
  376. "MIT"
  377. ],
  378. "authors": [
  379. {
  380. "name": "Michael Dowling",
  381. "email": "mtdowling@gmail.com",
  382. "homepage": "https://github.com/mtdowling"
  383. },
  384. {
  385. "name": "Tobias Schultze",
  386. "homepage": "https://github.com/Tobion"
  387. }
  388. ],
  389. "description": "PSR-7 message implementation that also provides common utility methods",
  390. "keywords": [
  391. "http",
  392. "message",
  393. "request",
  394. "response",
  395. "stream",
  396. "uri",
  397. "url"
  398. ],
  399. "time": "2017-03-20T17:10:46+00:00"
  400. },
  401. {
  402. "name": "jane/jane",
  403. "version": "v1.5.1",
  404. "source": {
  405. "type": "git",
  406. "url": "https://github.com/janephp/jane.git",
  407. "reference": "991e095881b570b010cd3a3e8c78ec80903238ee"
  408. },
  409. "dist": {
  410. "type": "zip",
  411. "url": "https://api.github.com/repos/janephp/jane/zipball/991e095881b570b010cd3a3e8c78ec80903238ee",
  412. "reference": "991e095881b570b010cd3a3e8c78ec80903238ee",
  413. "shasum": ""
  414. },
  415. "require": {
  416. "doctrine/inflector": "^1.0",
  417. "jane/runtime": "^1.0",
  418. "nikic/php-parser": "^1.4|^2.0",
  419. "symfony/console": "^2.3|^3.0",
  420. "symfony/options-resolver": "^2.7.2|^3.1",
  421. "symfony/property-access": "^2.3|^3.0"
  422. },
  423. "conflict": {
  424. "fabpot/php-cs-fixer": "<2.0.0-alpha|>v2.0.0-alpha"
  425. },
  426. "require-dev": {
  427. "friendsofphp/php-cs-fixer": "v2.0.0-alpha",
  428. "phpunit/phpunit": "^4.7|^5.5"
  429. },
  430. "suggest": {
  431. "fabpot/php-cs-fixer": "Allow to automatically fix cs on generated code for better visualisation"
  432. },
  433. "bin": [
  434. "bin/jane"
  435. ],
  436. "type": "library",
  437. "extra": {
  438. "branch-alias": {
  439. "dev-master": "1.0-dev"
  440. }
  441. },
  442. "autoload": {
  443. "psr-4": {
  444. "Joli\\Jane\\": "src/"
  445. }
  446. },
  447. "notification-url": "https://packagist.org/downloads/",
  448. "license": [
  449. "MIT"
  450. ],
  451. "authors": [
  452. {
  453. "name": "Joel Wurtz",
  454. "email": "jwurtz@jolicode.com"
  455. }
  456. ],
  457. "description": "Generate a serializable / deserializable object model given a json schema",
  458. "time": "2017-06-30T18:45:29+00:00"
  459. },
  460. {
  461. "name": "jane/open-api",
  462. "version": "v1.3.0",
  463. "source": {
  464. "type": "git",
  465. "url": "https://github.com/janephp/openapi.git",
  466. "reference": "4146c2d837669907695107be9cb0ffae529c176e"
  467. },
  468. "dist": {
  469. "type": "zip",
  470. "url": "https://api.github.com/repos/janephp/openapi/zipball/4146c2d837669907695107be9cb0ffae529c176e",
  471. "reference": "4146c2d837669907695107be9cb0ffae529c176e",
  472. "shasum": ""
  473. },
  474. "require": {
  475. "doctrine/inflector": "^1.0",
  476. "fitbug/symfony-yaml-serializer-encoder-decoder": "^0.1.1",
  477. "jane/jane": "^1.5",
  478. "jane/openapi-runtime": "^1.0",
  479. "nikic/php-parser": "^1.4|^2.0",
  480. "symfony/console": "^2.3|^3.0",
  481. "symfony/yaml": "^2.8.2 | ^3.0"
  482. },
  483. "conflict": {
  484. "friendsofphp/php-cs-fixer": "<2.0.0-alpha|>2.0.0-alpha"
  485. },
  486. "require-dev": {
  487. "friendsofphp/php-cs-fixer": "v2.0.0-alpha",
  488. "phpunit/phpunit": "^4.7",
  489. "sllh/php-cs-fixer-styleci-bridge": "^2.1"
  490. },
  491. "suggest": {
  492. "friendsofphp/php-cs-fixer": "To have a nice formatting of the generated files"
  493. },
  494. "bin": [
  495. "bin/jane-openapi"
  496. ],
  497. "type": "library",
  498. "extra": {
  499. "branch-alias": {
  500. "dev-master": "1-dev"
  501. }
  502. },
  503. "autoload": {
  504. "psr-4": {
  505. "Joli\\Jane\\OpenApi\\Model\\": "generated/Model/",
  506. "Joli\\Jane\\OpenApi\\Normalizer\\": "generated/Normalizer/",
  507. "Joli\\Jane\\OpenApi\\": "src/"
  508. }
  509. },
  510. "notification-url": "https://packagist.org/downloads/",
  511. "license": [
  512. "MIT"
  513. ],
  514. "authors": [
  515. {
  516. "name": "Joel Wurtz",
  517. "email": "jwurtz@jolicode.com"
  518. }
  519. ],
  520. "description": "Generate a PHP Client API (PSR7 compatible) given a OpenApi (Swagger) specification",
  521. "keywords": [
  522. "jane",
  523. "openapi",
  524. "swagger"
  525. ],
  526. "time": "2016-09-08T13:14:02+00:00"
  527. },
  528. {
  529. "name": "jane/openapi-runtime",
  530. "version": "v1.0.0",
  531. "source": {
  532. "type": "git",
  533. "url": "https://github.com/janephp/openapi-runtime.git",
  534. "reference": "1ee03abfa7d6ed00e4b025b20bdb220ea15770e9"
  535. },
  536. "dist": {
  537. "type": "zip",
  538. "url": "https://api.github.com/repos/janephp/openapi-runtime/zipball/1ee03abfa7d6ed00e4b025b20bdb220ea15770e9",
  539. "reference": "1ee03abfa7d6ed00e4b025b20bdb220ea15770e9",
  540. "shasum": ""
  541. },
  542. "require": {
  543. "jane/runtime": "^1.0",
  544. "php-http/client-common": "^1.1",
  545. "php-http/httplug": "^1.0",
  546. "php-http/message-factory": "^1.0.2",
  547. "symfony/options-resolver": "^2.7|^3.1"
  548. },
  549. "require-dev": {
  550. "phpunit/phpunit": "^4.7|^5.5"
  551. },
  552. "type": "library",
  553. "autoload": {
  554. "psr-4": {
  555. "Joli\\Jane\\OpenApi\\Runtime\\": "src/"
  556. }
  557. },
  558. "notification-url": "https://packagist.org/downloads/",
  559. "license": [
  560. "MIT"
  561. ],
  562. "authors": [
  563. {
  564. "name": "Joel Wurtz",
  565. "email": "jwurtz@jolicode.com"
  566. }
  567. ],
  568. "description": "Jane OpenAPI Runtime Library, dependencies and utility class for a library generated by jane/openapi",
  569. "time": "2016-09-01T15:57:08+00:00"
  570. },
  571. {
  572. "name": "jane/runtime",
  573. "version": "v1.0.0",
  574. "source": {
  575. "type": "git",
  576. "url": "https://github.com/janephp/runtime.git",
  577. "reference": "949ddd8f28ed3a697ff2bdc23491be92fd76d6ba"
  578. },
  579. "dist": {
  580. "type": "zip",
  581. "url": "https://api.github.com/repos/janephp/runtime/zipball/949ddd8f28ed3a697ff2bdc23491be92fd76d6ba",
  582. "reference": "949ddd8f28ed3a697ff2bdc23491be92fd76d6ba",
  583. "shasum": ""
  584. },
  585. "require": {
  586. "symfony/serializer": "^2.3|^3.0"
  587. },
  588. "require-dev": {
  589. "phpunit/phpunit": "^5.5"
  590. },
  591. "type": "library",
  592. "autoload": {
  593. "psr-4": {
  594. "Joli\\Jane\\Runtime\\": "src/"
  595. }
  596. },
  597. "notification-url": "https://packagist.org/downloads/",
  598. "license": [
  599. "MIT"
  600. ],
  601. "authors": [
  602. {
  603. "name": "Joel Wurtz",
  604. "email": "jwurtz@jolicode.com"
  605. }
  606. ],
  607. "description": "Jane runtime Library",
  608. "time": "2016-08-31T15:38:54+00:00"
  609. },
  610. {
  611. "name": "kzykhys/git",
  612. "version": "v0.1.2",
  613. "source": {
  614. "type": "git",
  615. "url": "https://github.com/kzykhys/PHPGit.git",
  616. "reference": "3c4db987494c38eac300593719a4a7832abddadd"
  617. },
  618. "dist": {
  619. "type": "zip",
  620. "url": "https://api.github.com/repos/kzykhys/PHPGit/zipball/3c4db987494c38eac300593719a4a7832abddadd",
  621. "reference": "3c4db987494c38eac300593719a4a7832abddadd",
  622. "shasum": ""
  623. },
  624. "require": {
  625. "php": ">=5.3.2",
  626. "symfony/options-resolver": ">=2.3",
  627. "symfony/process": ">=2.3"
  628. },
  629. "require-dev": {
  630. "symfony/filesystem": ">=2.3"
  631. },
  632. "type": "library",
  633. "extra": {
  634. "branch-alias": {
  635. "dev-master": "1.0.x-dev"
  636. }
  637. },
  638. "autoload": {
  639. "psr-0": {
  640. "": "src"
  641. }
  642. },
  643. "notification-url": "https://packagist.org/downloads/",
  644. "license": [
  645. "MIT"
  646. ],
  647. "authors": [
  648. {
  649. "name": "Kazuyuki Hayashi",
  650. "email": "hayashi@valnur.net"
  651. }
  652. ],
  653. "description": "A Git wrapper for PHP5.3+",
  654. "time": "2014-02-15T06:18:00+00:00"
  655. },
  656. {
  657. "name": "lucciano/php-docker-lib",
  658. "version": "dev-master",
  659. "source": {
  660. "type": "git",
  661. "url": "https://github.com/lucciano/php-docker-lib.git",
  662. "reference": "f30fad2a254e539d686f7ce9c3575e9509da119b"
  663. },
  664. "dist": {
  665. "type": "zip",
  666. "url": "https://api.github.com/repos/lucciano/php-docker-lib/zipball/f30fad2a254e539d686f7ce9c3575e9509da119b",
  667. "reference": "f30fad2a254e539d686f7ce9c3575e9509da119b",
  668. "shasum": ""
  669. },
  670. "require": {
  671. "symfony/yaml": "^3.3"
  672. },
  673. "require-dev": {
  674. "phpunit/phpunit": "^6.2"
  675. },
  676. "type": "library",
  677. "autoload": {
  678. "psr-4": {
  679. "Docker\\": "src/Docker/"
  680. }
  681. },
  682. "authors": [
  683. {
  684. "name": "Luciano Andrade",
  685. "email": "andrade.luciano@gmail.com"
  686. }
  687. ],
  688. "support": {
  689. "source": "https://github.com/lucciano/php-docker-lib/tree/master",
  690. "issues": "https://github.com/lucciano/php-docker-lib/issues"
  691. },
  692. "time": "2017-06-27 16:09:39"
  693. },
  694. {
  695. "name": "magicalex/write-ini-file",
  696. "version": "v1.2.3",
  697. "source": {
  698. "type": "git",
  699. "url": "https://github.com/Magicalex/WriteiniFile.git",
  700. "reference": "d77f20c9a4ba7e713541539c74d0f14d92283bb6"
  701. },
  702. "dist": {
  703. "type": "zip",
  704. "url": "https://api.github.com/repos/Magicalex/WriteiniFile/zipball/d77f20c9a4ba7e713541539c74d0f14d92283bb6",
  705. "reference": "d77f20c9a4ba7e713541539c74d0f14d92283bb6",
  706. "shasum": ""
  707. },
  708. "require": {
  709. "php": ">=5.6.0"
  710. },
  711. "require-dev": {
  712. "phpunit/phpunit": "5.7.*",
  713. "satooshi/php-coveralls": "1.0.1"
  714. },
  715. "type": "library",
  716. "autoload": {
  717. "psr-4": {
  718. "WriteiniFile\\": "src"
  719. }
  720. },
  721. "notification-url": "https://packagist.org/downloads/",
  722. "license": [
  723. "GPL-3.0"
  724. ],
  725. "authors": [
  726. {
  727. "name": "Magicalex",
  728. "email": "magicalex@mondedie.fr"
  729. }
  730. ],
  731. "description": "Write-ini-file php library for create, remove, erase, add, and update ini file",
  732. "homepage": "https://github.com/Magicalex/WriteIniFile",
  733. "keywords": [
  734. "file",
  735. "ini",
  736. "write",
  737. "write_ini_file"
  738. ],
  739. "time": "2017-03-21T02:45:50+00:00"
  740. },
  741. {
  742. "name": "maxakawizard/json-collection-parser",
  743. "version": "1.1.1",
  744. "source": {
  745. "type": "git",
  746. "url": "https://github.com/MAXakaWIZARD/JsonCollectionParser.git",
  747. "reference": "05298ef52c44152a125ca8ae578005c210004729"
  748. },
  749. "dist": {
  750. "type": "zip",
  751. "url": "https://api.github.com/repos/MAXakaWIZARD/JsonCollectionParser/zipball/05298ef52c44152a125ca8ae578005c210004729",
  752. "reference": "05298ef52c44152a125ca8ae578005c210004729",
  753. "shasum": ""
  754. },
  755. "require": {
  756. "php": "^5.4 | ^7.0",
  757. "salsify/json-streaming-parser": "~6.0"
  758. },
  759. "require-dev": {
  760. "phpunit/phpunit": "~4.0 | ~5.0",
  761. "satooshi/php-coveralls": "~1.0"
  762. },
  763. "type": "library",
  764. "autoload": {
  765. "psr-4": {
  766. "JsonCollectionParser\\": "src/",
  767. "JsonCollectionParser\\Tests\\": "tests/"
  768. }
  769. },
  770. "notification-url": "https://packagist.org/downloads/",
  771. "license": [
  772. "MIT"
  773. ],
  774. "authors": [
  775. {
  776. "name": "Max Grigorian",
  777. "email": "maxakawizard@gmail.com"
  778. }
  779. ],
  780. "description": "Streaming parser for large JSON files containing array of objects",
  781. "homepage": "https://github.com/MAXakaWIZARD/JsonCollectionParser",
  782. "keywords": [
  783. "json"
  784. ],
  785. "time": "2016-05-10T13:09:24+00:00"
  786. },
  787. {
  788. "name": "nikic/php-parser",
  789. "version": "v2.1.1",
  790. "source": {
  791. "type": "git",
  792. "url": "https://github.com/nikic/PHP-Parser.git",
  793. "reference": "4dd659edadffdc2143e4753df655d866dbfeedf0"
  794. },
  795. "dist": {
  796. "type": "zip",
  797. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/4dd659edadffdc2143e4753df655d866dbfeedf0",
  798. "reference": "4dd659edadffdc2143e4753df655d866dbfeedf0",
  799. "shasum": ""
  800. },
  801. "require": {
  802. "ext-tokenizer": "*",
  803. "php": ">=5.4"
  804. },
  805. "require-dev": {
  806. "phpunit/phpunit": "~4.0"
  807. },
  808. "bin": [
  809. "bin/php-parse"
  810. ],
  811. "type": "library",
  812. "extra": {
  813. "branch-alias": {
  814. "dev-master": "2.1-dev"
  815. }
  816. },
  817. "autoload": {
  818. "psr-4": {
  819. "PhpParser\\": "lib/PhpParser"
  820. }
  821. },
  822. "notification-url": "https://packagist.org/downloads/",
  823. "license": [
  824. "BSD-3-Clause"
  825. ],
  826. "authors": [
  827. {
  828. "name": "Nikita Popov"
  829. }
  830. ],
  831. "description": "A PHP parser written in PHP",
  832. "keywords": [
  833. "parser",
  834. "php"
  835. ],
  836. "time": "2016-09-16T12:04:44+00:00"
  837. },
  838. {
  839. "name": "paragonie/random_compat",
  840. "version": "v2.0.10",
  841. "source": {
  842. "type": "git",
  843. "url": "https://github.com/paragonie/random_compat.git",
  844. "reference": "634bae8e911eefa89c1abfbf1b66da679ac8f54d"
  845. },
  846. "dist": {
  847. "type": "zip",
  848. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/634bae8e911eefa89c1abfbf1b66da679ac8f54d",
  849. "reference": "634bae8e911eefa89c1abfbf1b66da679ac8f54d",
  850. "shasum": ""
  851. },
  852. "require": {
  853. "php": ">=5.2.0"
  854. },
  855. "require-dev": {
  856. "phpunit/phpunit": "4.*|5.*"
  857. },
  858. "suggest": {
  859. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  860. },
  861. "type": "library",
  862. "autoload": {
  863. "files": [
  864. "lib/random.php"
  865. ]
  866. },
  867. "notification-url": "https://packagist.org/downloads/",
  868. "license": [
  869. "MIT"
  870. ],
  871. "authors": [
  872. {
  873. "name": "Paragon Initiative Enterprises",
  874. "email": "security@paragonie.com",
  875. "homepage": "https://paragonie.com"
  876. }
  877. ],
  878. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  879. "keywords": [
  880. "csprng",
  881. "pseudorandom",
  882. "random"
  883. ],
  884. "time": "2017-03-13T16:27:32+00:00"
  885. },
  886. {
  887. "name": "php-http/client-common",
  888. "version": "1.5.0",
  889. "source": {
  890. "type": "git",
  891. "url": "https://github.com/php-http/client-common.git",
  892. "reference": "154d36542eb96ee95daa504591eab78af2484baa"
  893. },
  894. "dist": {
  895. "type": "zip",
  896. "url": "https://api.github.com/repos/php-http/client-common/zipball/154d36542eb96ee95daa504591eab78af2484baa",
  897. "reference": "154d36542eb96ee95daa504591eab78af2484baa",
  898. "shasum": ""
  899. },
  900. "require": {
  901. "php": ">=5.4",
  902. "php-http/httplug": "^1.1",
  903. "php-http/message": "^1.2",
  904. "php-http/message-factory": "^1.0",
  905. "symfony/options-resolver": "^2.6 || ^3.0"
  906. },
  907. "require-dev": {
  908. "henrikbjorn/phpspec-code-coverage": "^1.0",
  909. "phpspec/phpspec": "^2.4"
  910. },
  911. "suggest": {
  912. "php-http/cache-plugin": "PSR-6 Cache plugin",
  913. "php-http/logger-plugin": "PSR-3 Logger plugin",
  914. "php-http/stopwatch-plugin": "Symfony Stopwatch plugin"
  915. },
  916. "type": "library",
  917. "extra": {
  918. "branch-alias": {
  919. "dev-master": "1.5-dev"
  920. }
  921. },
  922. "autoload": {
  923. "psr-4": {
  924. "Http\\Client\\Common\\": "src/"
  925. }
  926. },
  927. "notification-url": "https://packagist.org/downloads/",
  928. "license": [
  929. "MIT"
  930. ],
  931. "authors": [
  932. {
  933. "name": "Márk Sági-Kazár",
  934. "email": "mark.sagikazar@gmail.com"
  935. }
  936. ],
  937. "description": "Common HTTP Client implementations and tools for HTTPlug",
  938. "homepage": "http://httplug.io",
  939. "keywords": [
  940. "client",
  941. "common",
  942. "http",
  943. "httplug"
  944. ],
  945. "time": "2017-03-30T12:50:04+00:00"
  946. },
  947. {
  948. "name": "php-http/discovery",
  949. "version": "1.3.0",
  950. "source": {
  951. "type": "git",
  952. "url": "https://github.com/php-http/discovery.git",
  953. "reference": "7b50ab4d6c9fdaa1ed53ae310c955900af6e3372"
  954. },
  955. "dist": {
  956. "type": "zip",
  957. "url": "https://api.github.com/repos/php-http/discovery/zipball/7b50ab4d6c9fdaa1ed53ae310c955900af6e3372",
  958. "reference": "7b50ab4d6c9fdaa1ed53ae310c955900af6e3372",
  959. "shasum": ""
  960. },
  961. "require": {
  962. "php": "^5.5 || ^7.0"
  963. },
  964. "require-dev": {
  965. "henrikbjorn/phpspec-code-coverage": "^2.0.2",
  966. "php-http/httplug": "^1.0",
  967. "php-http/message-factory": "^1.0",
  968. "phpspec/phpspec": "^2.4",
  969. "puli/composer-plugin": "1.0.0-beta10"
  970. },
  971. "suggest": {
  972. "php-http/message": "Allow to use Guzzle, Diactoros or Slim Framework factories",
  973. "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."
  974. },
  975. "type": "library",
  976. "extra": {
  977. "branch-alias": {
  978. "dev-master": "1.3-dev"
  979. }
  980. },
  981. "autoload": {
  982. "psr-4": {
  983. "Http\\Discovery\\": "src/"
  984. }
  985. },
  986. "notification-url": "https://packagist.org/downloads/",
  987. "license": [
  988. "MIT"
  989. ],
  990. "authors": [
  991. {
  992. "name": "Márk Sági-Kazár",
  993. "email": "mark.sagikazar@gmail.com"
  994. }
  995. ],
  996. "description": "Finds installed HTTPlug implementations and PSR-7 message factories",
  997. "homepage": "http://php-http.org",
  998. "keywords": [
  999. "adapter",
  1000. "client",
  1001. "discovery",
  1002. "factory",
  1003. "http",
  1004. "message",
  1005. "psr7"
  1006. ],
  1007. "time": "2017-08-03T10:12:53+00:00"
  1008. },
  1009. {
  1010. "name": "php-http/httplug",
  1011. "version": "v1.1.0",
  1012. "source": {
  1013. "type": "git",
  1014. "url": "https://github.com/php-http/httplug.git",
  1015. "reference": "1c6381726c18579c4ca2ef1ec1498fdae8bdf018"
  1016. },
  1017. "dist": {
  1018. "type": "zip",
  1019. "url": "https://api.github.com/repos/php-http/httplug/zipball/1c6381726c18579c4ca2ef1ec1498fdae8bdf018",
  1020. "reference": "1c6381726c18579c4ca2ef1ec1498fdae8bdf018",
  1021. "shasum": ""
  1022. },
  1023. "require": {
  1024. "php": ">=5.4",
  1025. "php-http/promise": "^1.0",
  1026. "psr/http-message": "^1.0"
  1027. },
  1028. "require-dev": {
  1029. "henrikbjorn/phpspec-code-coverage": "^1.0",
  1030. "phpspec/phpspec": "^2.4"
  1031. },
  1032. "type": "library",
  1033. "extra": {
  1034. "branch-alias": {
  1035. "dev-master": "1.1-dev"
  1036. }
  1037. },
  1038. "autoload": {
  1039. "psr-4": {
  1040. "Http\\Client\\": "src/"
  1041. }
  1042. },
  1043. "notification-url": "https://packagist.org/downloads/",
  1044. "license": [
  1045. "MIT"
  1046. ],
  1047. "authors": [
  1048. {
  1049. "name": "Eric GELOEN",
  1050. "email": "geloen.eric@gmail.com"
  1051. },
  1052. {
  1053. "name": "Márk Sági-Kazár",
  1054. "email": "mark.sagikazar@gmail.com"
  1055. }
  1056. ],
  1057. "description": "HTTPlug, the HTTP client abstraction for PHP",
  1058. "homepage": "http://httplug.io",
  1059. "keywords": [
  1060. "client",
  1061. "http"
  1062. ],
  1063. "time": "2016-08-31T08:30:17+00:00"
  1064. },
  1065. {
  1066. "name": "php-http/message",
  1067. "version": "1.6.0",
  1068. "source": {
  1069. "type": "git",
  1070. "url": "https://github.com/php-http/message.git",
  1071. "reference": "2edd63bae5f52f79363c5f18904b05ce3a4b7253"
  1072. },
  1073. "dist": {
  1074. "type": "zip",
  1075. "url": "https://api.github.com/repos/php-http/message/zipball/2edd63bae5f52f79363c5f18904b05ce3a4b7253",
  1076. "reference": "2edd63bae5f52f79363c5f18904b05ce3a4b7253",
  1077. "shasum": ""
  1078. },
  1079. "require": {
  1080. "clue/stream-filter": "^1.3",
  1081. "php": ">=5.4",
  1082. "php-http/message-factory": "^1.0.2",
  1083. "psr/http-message": "^1.0"
  1084. },
  1085. "provide": {
  1086. "php-http/message-factory-implementation": "1.0"
  1087. },
  1088. "require-dev": {
  1089. "akeneo/phpspec-skip-example-extension": "^1.0",
  1090. "coduo/phpspec-data-provider-extension": "^1.0",
  1091. "ext-zlib": "*",
  1092. "guzzlehttp/psr7": "^1.0",
  1093. "henrikbjorn/phpspec-code-coverage": "^1.0",
  1094. "phpspec/phpspec": "^2.4",
  1095. "slim/slim": "^3.0",
  1096. "zendframework/zend-diactoros": "^1.0"
  1097. },
  1098. "suggest": {
  1099. "ext-zlib": "Used with compressor/decompressor streams",
  1100. "guzzlehttp/psr7": "Used with Guzzle PSR-7 Factories",
  1101. "slim/slim": "Used with Slim Framework PSR-7 implementation",
  1102. "zendframework/zend-diactoros": "Used with Diactoros Factories"
  1103. },
  1104. "type": "library",
  1105. "extra": {
  1106. "branch-alias": {
  1107. "dev-master": "1.6-dev"
  1108. }
  1109. },
  1110. "autoload": {
  1111. "psr-4": {
  1112. "Http\\Message\\": "src/"
  1113. },
  1114. "files": [
  1115. "src/filters.php"
  1116. ]
  1117. },
  1118. "notification-url": "https://packagist.org/downloads/",
  1119. "license": [
  1120. "MIT"
  1121. ],
  1122. "authors": [
  1123. {
  1124. "name": "Márk Sági-Kazár",
  1125. "email": "mark.sagikazar@gmail.com"
  1126. }
  1127. ],
  1128. "description": "HTTP Message related tools",
  1129. "homepage": "http://php-http.org",
  1130. "keywords": [
  1131. "http",
  1132. "message",
  1133. "psr-7"
  1134. ],
  1135. "time": "2017-07-05T06:40:53+00:00"
  1136. },
  1137. {
  1138. "name": "php-http/message-factory",
  1139. "version": "v1.0.2",
  1140. "source": {
  1141. "type": "git",
  1142. "url": "https://github.com/php-http/message-factory.git",
  1143. "reference": "a478cb11f66a6ac48d8954216cfed9aa06a501a1"
  1144. },
  1145. "dist": {
  1146. "type": "zip",
  1147. "url": "https://api.github.com/repos/php-http/message-factory/zipball/a478cb11f66a6ac48d8954216cfed9aa06a501a1",
  1148. "reference": "a478cb11f66a6ac48d8954216cfed9aa06a501a1",
  1149. "shasum": ""
  1150. },
  1151. "require": {
  1152. "php": ">=5.4",
  1153. "psr/http-message": "^1.0"
  1154. },
  1155. "type": "library",
  1156. "extra": {
  1157. "branch-alias": {
  1158. "dev-master": "1.0-dev"
  1159. }
  1160. },
  1161. "autoload": {
  1162. "psr-4": {
  1163. "Http\\Message\\": "src/"
  1164. }
  1165. },
  1166. "notification-url": "https://packagist.org/downloads/",
  1167. "license": [
  1168. "MIT"
  1169. ],
  1170. "authors": [
  1171. {
  1172. "name": "Márk Sági-Kazár",
  1173. "email": "mark.sagikazar@gmail.com"
  1174. }
  1175. ],
  1176. "description": "Factory interfaces for PSR-7 HTTP Message",
  1177. "homepage": "http://php-http.org",
  1178. "keywords": [
  1179. "factory",
  1180. "http",
  1181. "message",
  1182. "stream",
  1183. "uri"
  1184. ],
  1185. "time": "2015-12-19T14:08:53+00:00"
  1186. },
  1187. {
  1188. "name": "php-http/promise",
  1189. "version": "v1.0.0",
  1190. "source": {
  1191. "type": "git",
  1192. "url": "https://github.com/php-http/promise.git",
  1193. "reference": "dc494cdc9d7160b9a09bd5573272195242ce7980"
  1194. },
  1195. "dist": {
  1196. "type": "zip",
  1197. "url": "https://api.github.com/repos/php-http/promise/zipball/dc494cdc9d7160b9a09bd5573272195242ce7980",
  1198. "reference": "dc494cdc9d7160b9a09bd5573272195242ce7980",
  1199. "shasum": ""
  1200. },
  1201. "require-dev": {
  1202. "henrikbjorn/phpspec-code-coverage": "^1.0",
  1203. "phpspec/phpspec": "^2.4"
  1204. },
  1205. "type": "library",
  1206. "extra": {
  1207. "branch-alias": {
  1208. "dev-master": "1.1-dev"
  1209. }
  1210. },
  1211. "autoload": {
  1212. "psr-4": {
  1213. "Http\\Promise\\": "src/"
  1214. }
  1215. },
  1216. "notification-url": "https://packagist.org/downloads/",
  1217. "license": [
  1218. "MIT"
  1219. ],
  1220. "authors": [
  1221. {
  1222. "name": "Márk Sági-Kazár",
  1223. "email": "mark.sagikazar@gmail.com"
  1224. },
  1225. {
  1226. "name": "Joel Wurtz",
  1227. "email": "joel.wurtz@gmail.com"
  1228. }
  1229. ],
  1230. "description": "Promise used for asynchronous HTTP requests",
  1231. "homepage": "http://httplug.io",
  1232. "keywords": [
  1233. "promise"
  1234. ],
  1235. "time": "2016-01-26T13:27:02+00:00"
  1236. },
  1237. {
  1238. "name": "php-http/socket-client",
  1239. "version": "v1.3.0",
  1240. "source": {
  1241. "type": "git",
  1242. "url": "https://github.com/php-http/socket-client.git",
  1243. "reference": "b40ab7ab5037c3970580db1ac352656495a114c5"
  1244. },
  1245. "dist": {
  1246. "type": "zip",
  1247. "url": "https://api.github.com/repos/php-http/socket-client/zipball/b40ab7ab5037c3970580db1ac352656495a114c5",
  1248. "reference": "b40ab7ab5037c3970580db1ac352656495a114c5",
  1249. "shasum": ""
  1250. },
  1251. "require": {
  1252. "php": "^5.5 || ^7.0",
  1253. "php-http/discovery": "^1.0",
  1254. "php-http/httplug": "^1.0",
  1255. "php-http/message-factory": "^1.0.2",
  1256. "symfony/options-resolver": "^2.6 || ^3.0"
  1257. },
  1258. "provide": {
  1259. "php-http/client-implementation": "1.0"
  1260. },
  1261. "require-dev": {
  1262. "guzzlehttp/psr7": "^1.2",
  1263. "php-http/client-common": "^1.0",
  1264. "php-http/client-integration-tests": "^0.6",
  1265. "php-http/message": "^1.0"
  1266. },
  1267. "type": "library",
  1268. "extra": {
  1269. "branch-alias": {
  1270. "dev-master": "1.1-dev"
  1271. }
  1272. },
  1273. "autoload": {
  1274. "psr-4": {
  1275. "Http\\Client\\Socket\\": "src/"
  1276. }
  1277. },
  1278. "notification-url": "https://packagist.org/downloads/",
  1279. "license": [
  1280. "MIT"
  1281. ],
  1282. "authors": [
  1283. {
  1284. "name": "Joel Wurtz",
  1285. "email": "jwurtz@jolicode.com"
  1286. }
  1287. ],
  1288. "description": "Socket client for PHP-HTTP",
  1289. "time": "2017-07-08T12:10:50+00:00"
  1290. },
  1291. {
  1292. "name": "psr/http-message",
  1293. "version": "1.0.1",
  1294. "source": {
  1295. "type": "git",
  1296. "url": "https://github.com/php-fig/http-message.git",
  1297. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  1298. },
  1299. "dist": {
  1300. "type": "zip",
  1301. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  1302. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  1303. "shasum": ""
  1304. },
  1305. "require": {
  1306. "php": ">=5.3.0"
  1307. },
  1308. "type": "library",
  1309. "extra": {
  1310. "branch-alias": {
  1311. "dev-master": "1.0.x-dev"
  1312. }
  1313. },
  1314. "autoload": {
  1315. "psr-4": {
  1316. "Psr\\Http\\Message\\": "src/"
  1317. }
  1318. },
  1319. "notification-url": "https://packagist.org/downloads/",
  1320. "license": [
  1321. "MIT"
  1322. ],
  1323. "authors": [
  1324. {
  1325. "name": "PHP-FIG",
  1326. "homepage": "http://www.php-fig.org/"
  1327. }
  1328. ],
  1329. "description": "Common interface for HTTP messages",
  1330. "homepage": "https://github.com/php-fig/http-message",
  1331. "keywords": [
  1332. "http",
  1333. "http-message",
  1334. "psr",
  1335. "psr-7",
  1336. "request",
  1337. "response"
  1338. ],
  1339. "time": "2016-08-06T14:39:51+00:00"
  1340. },
  1341. {
  1342. "name": "psr/log",
  1343. "version": "1.0.2",
  1344. "source": {
  1345. "type": "git",
  1346. "url": "https://github.com/php-fig/log.git",
  1347. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d"
  1348. },
  1349. "dist": {
  1350. "type": "zip",
  1351. "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  1352. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  1353. "shasum": ""
  1354. },
  1355. "require": {
  1356. "php": ">=5.3.0"
  1357. },
  1358. "type": "library",
  1359. "extra": {
  1360. "branch-alias": {
  1361. "dev-master": "1.0.x-dev"
  1362. }
  1363. },
  1364. "autoload": {
  1365. "psr-4": {
  1366. "Psr\\Log\\": "Psr/Log/"
  1367. }
  1368. },
  1369. "notification-url": "https://packagist.org/downloads/",
  1370. "license": [
  1371. "MIT"
  1372. ],
  1373. "authors": [
  1374. {
  1375. "name": "PHP-FIG",
  1376. "homepage": "http://www.php-fig.org/"
  1377. }
  1378. ],
  1379. "description": "Common interface for logging libraries",
  1380. "homepage": "https://github.com/php-fig/log",
  1381. "keywords": [
  1382. "log",
  1383. "psr",
  1384. "psr-3"
  1385. ],
  1386. "time": "2016-10-10T12:19:37+00:00"
  1387. },
  1388. {
  1389. "name": "rlanvin/php-ip",
  1390. "version": "v1.0.1",
  1391. "source": {
  1392. "type": "git",
  1393. "url": "https://github.com/rlanvin/php-ip.git",
  1394. "reference": "03e507114b95e2d3a9b9621dc6fb583401afbf5e"
  1395. },
  1396. "dist": {
  1397. "type": "zip",
  1398. "url": "https://api.github.com/repos/rlanvin/php-ip/zipball/03e507114b95e2d3a9b9621dc6fb583401afbf5e",
  1399. "reference": "03e507114b95e2d3a9b9621dc6fb583401afbf5e",
  1400. "shasum": ""
  1401. },
  1402. "require": {
  1403. "ext-gmp": "*",
  1404. "php": ">=5.3.0"
  1405. },
  1406. "type": "library",
  1407. "autoload": {
  1408. "classmap": [
  1409. "src/"
  1410. ]
  1411. },
  1412. "notification-url": "https://packagist.org/downloads/",
  1413. "license": [
  1414. "MIT"
  1415. ],
  1416. "description": "IPv4/IPv6 manipulation library for PHP",
  1417. "homepage": "https://github.com/rlanvin/php-ip",
  1418. "keywords": [
  1419. "IP",
  1420. "ipv4",
  1421. "ipv6"
  1422. ],
  1423. "time": "2015-06-26T06:50:37+00:00"
  1424. },
  1425. {
  1426. "name": "salsify/json-streaming-parser",
  1427. "version": "v6.0.2",
  1428. "source": {
  1429. "type": "git",
  1430. "url": "https://github.com/salsify/jsonstreamingparser.git",
  1431. "reference": "c0ca01c889acb8e2bfcbf060a1a346a158d8f9d0"
  1432. },
  1433. "dist": {
  1434. "type": "zip",
  1435. "url": "https://api.github.com/repos/salsify/jsonstreamingparser/zipball/c0ca01c889acb8e2bfcbf060a1a346a158d8f9d0",
  1436. "reference": "c0ca01c889acb8e2bfcbf060a1a346a158d8f9d0",
  1437. "shasum": ""
  1438. },
  1439. "require": {
  1440. "ext-mbstring": "*",
  1441. "php": "^5.4 | ^7.0"
  1442. },
  1443. "require-dev": {
  1444. "phpunit/phpunit": "~4.0"
  1445. },
  1446. "type": "library",
  1447. "autoload": {
  1448. "psr-4": {
  1449. "JsonStreamingParser\\": "src",
  1450. "JsonStreamingParser\\Test\\": "tests"
  1451. }
  1452. },
  1453. "notification-url": "https://packagist.org/downloads/",
  1454. "license": [
  1455. "MIT"
  1456. ],
  1457. "authors": [
  1458. {
  1459. "name": "Maxim Gnatenko",
  1460. "email": "mgnatenko@gmail.com"
  1461. },
  1462. {
  1463. "name": "Rob Gonzalez",
  1464. "email": "rob@salsify.com",
  1465. "homepage": "http://salsify.com/"
  1466. },
  1467. {
  1468. "name": "Max Grigorian",
  1469. "email": "maxakawizard@gmail.com",
  1470. "homepage": "http://wizardcat.com/"
  1471. }
  1472. ],
  1473. "description": "A streaming parser for JSON in PHP.",
  1474. "homepage": "https://github.com/salsify/jsonstreamingparser",
  1475. "keywords": [
  1476. "json",
  1477. "parser",
  1478. "streaming"
  1479. ],
  1480. "time": "2017-04-09T14:18:33+00:00"
  1481. },
  1482. {
  1483. "name": "symfony/console",
  1484. "version": "v3.3.6",
  1485. "source": {
  1486. "type": "git",
  1487. "url": "https://github.com/symfony/console.git",
  1488. "reference": "b0878233cb5c4391347e5495089c7af11b8e6201"
  1489. },
  1490. "dist": {
  1491. "type": "zip",
  1492. "url": "https://api.github.com/repos/symfony/console/zipball/b0878233cb5c4391347e5495089c7af11b8e6201",
  1493. "reference": "b0878233cb5c4391347e5495089c7af11b8e6201",
  1494. "shasum": ""
  1495. },
  1496. "require": {
  1497. "php": ">=5.5.9",
  1498. "symfony/debug": "~2.8|~3.0",
  1499. "symfony/polyfill-mbstring": "~1.0"
  1500. },
  1501. "conflict": {
  1502. "symfony/dependency-injection": "<3.3"
  1503. },
  1504. "require-dev": {
  1505. "psr/log": "~1.0",
  1506. "symfony/config": "~3.3",
  1507. "symfony/dependency-injection": "~3.3",
  1508. "symfony/event-dispatcher": "~2.8|~3.0",
  1509. "symfony/filesystem": "~2.8|~3.0",
  1510. "symfony/http-kernel": "~2.8|~3.0",
  1511. "symfony/process": "~2.8|~3.0"
  1512. },
  1513. "suggest": {
  1514. "psr/log": "For using the console logger",
  1515. "symfony/event-dispatcher": "",
  1516. "symfony/filesystem": "",
  1517. "symfony/process": ""
  1518. },
  1519. "type": "library",
  1520. "extra": {
  1521. "branch-alias": {
  1522. "dev-master": "3.3-dev"
  1523. }
  1524. },
  1525. "autoload": {
  1526. "psr-4": {
  1527. "Symfony\\Component\\Console\\": ""
  1528. },
  1529. "exclude-from-classmap": [
  1530. "/Tests/"
  1531. ]
  1532. },
  1533. "notification-url": "https://packagist.org/downloads/",
  1534. "license": [
  1535. "MIT"
  1536. ],
  1537. "authors": [
  1538. {
  1539. "name": "Fabien Potencier",
  1540. "email": "fabien@symfony.com"
  1541. },
  1542. {
  1543. "name": "Symfony Community",
  1544. "homepage": "https://symfony.com/contributors"
  1545. }
  1546. ],
  1547. "description": "Symfony Console Component",
  1548. "homepage": "https://symfony.com",
  1549. "time": "2017-07-29T21:27:59+00:00"
  1550. },
  1551. {
  1552. "name": "symfony/debug",
  1553. "version": "v3.3.6",
  1554. "source": {
  1555. "type": "git",
  1556. "url": "https://github.com/symfony/debug.git",
  1557. "reference": "7c13ae8ce1e2adbbd574fc39de7be498e1284e13"
  1558. },
  1559. "dist": {
  1560. "type": "zip",
  1561. "url": "https://api.github.com/repos/symfony/debug/zipball/7c13ae8ce1e2adbbd574fc39de7be498e1284e13",
  1562. "reference": "7c13ae8ce1e2adbbd574fc39de7be498e1284e13",
  1563. "shasum": ""
  1564. },
  1565. "require": {
  1566. "php": ">=5.5.9",
  1567. "psr/log": "~1.0"
  1568. },
  1569. "conflict": {
  1570. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  1571. },
  1572. "require-dev": {
  1573. "symfony/http-kernel": "~2.8|~3.0"
  1574. },
  1575. "type": "library",
  1576. "extra": {
  1577. "branch-alias": {
  1578. "dev-master": "3.3-dev"
  1579. }
  1580. },
  1581. "autoload": {
  1582. "psr-4": {
  1583. "Symfony\\Component\\Debug\\": ""
  1584. },
  1585. "exclude-from-classmap": [
  1586. "/Tests/"
  1587. ]
  1588. },
  1589. "notification-url": "https://packagist.org/downloads/",
  1590. "license": [
  1591. "MIT"
  1592. ],
  1593. "authors": [
  1594. {
  1595. "name": "Fabien Potencier",
  1596. "email": "fabien@symfony.com"
  1597. },
  1598. {
  1599. "name": "Symfony Community",
  1600. "homepage": "https://symfony.com/contributors"
  1601. }
  1602. ],
  1603. "description": "Symfony Debug Component",
  1604. "homepage": "https://symfony.com",
  1605. "time": "2017-07-28T15:27:31+00:00"
  1606. },
  1607. {
  1608. "name": "symfony/filesystem",
  1609. "version": "v3.3.6",
  1610. "source": {
  1611. "type": "git",
  1612. "url": "https://github.com/symfony/filesystem.git",
  1613. "reference": "427987eb4eed764c3b6e38d52a0f87989e010676"
  1614. },
  1615. "dist": {
  1616. "type": "zip",
  1617. "url": "https://api.github.com/repos/symfony/filesystem/zipball/427987eb4eed764c3b6e38d52a0f87989e010676",
  1618. "reference": "427987eb4eed764c3b6e38d52a0f87989e010676",
  1619. "shasum": ""
  1620. },
  1621. "require": {
  1622. "php": ">=5.5.9"
  1623. },
  1624. "type": "library",
  1625. "extra": {
  1626. "branch-alias": {
  1627. "dev-master": "3.3-dev"
  1628. }
  1629. },
  1630. "autoload": {
  1631. "psr-4": {
  1632. "Symfony\\Component\\Filesystem\\": ""
  1633. },
  1634. "exclude-from-classmap": [
  1635. "/Tests/"
  1636. ]
  1637. },
  1638. "notification-url": "https://packagist.org/downloads/",
  1639. "license": [
  1640. "MIT"
  1641. ],
  1642. "authors": [
  1643. {
  1644. "name": "Fabien Potencier",
  1645. "email": "fabien@symfony.com"
  1646. },
  1647. {
  1648. "name": "Symfony Community",
  1649. "homepage": "https://symfony.com/contributors"
  1650. }
  1651. ],
  1652. "description": "Symfony Filesystem Component",
  1653. "homepage": "https://symfony.com",
  1654. "time": "2017-07-11T07:17:58+00:00"
  1655. },
  1656. {
  1657. "name": "symfony/inflector",
  1658. "version": "v3.3.6",
  1659. "source": {
  1660. "type": "git",
  1661. "url": "https://github.com/symfony/inflector.git",
  1662. "reference": "aed5a0874a3bcfd8d0393a2d91b4cf828f29c7fb"
  1663. },
  1664. "dist": {
  1665. "type": "zip",
  1666. "url": "https://api.github.com/repos/symfony/inflector/zipball/aed5a0874a3bcfd8d0393a2d91b4cf828f29c7fb",
  1667. "reference": "aed5a0874a3bcfd8d0393a2d91b4cf828f29c7fb",
  1668. "shasum": ""
  1669. },
  1670. "require": {
  1671. "php": ">=5.5.9"
  1672. },
  1673. "type": "library",
  1674. "extra": {
  1675. "branch-alias": {
  1676. "dev-master": "3.3-dev"
  1677. }
  1678. },
  1679. "autoload": {
  1680. "psr-4": {
  1681. "Symfony\\Component\\Inflector\\": ""
  1682. },
  1683. "exclude-from-classmap": [
  1684. "/Tests/"
  1685. ]
  1686. },
  1687. "notification-url": "https://packagist.org/downloads/",
  1688. "license": [
  1689. "MIT"
  1690. ],
  1691. "authors": [
  1692. {
  1693. "name": "Bernhard Schussek",
  1694. "email": "bschussek@gmail.com"
  1695. },
  1696. {
  1697. "name": "Symfony Community",
  1698. "homepage": "https://symfony.com/contributors"
  1699. }
  1700. ],
  1701. "description": "Symfony Inflector Component",
  1702. "homepage": "https://symfony.com",
  1703. "keywords": [
  1704. "inflection",
  1705. "pluralize",
  1706. "singularize",
  1707. "string",
  1708. "symfony",
  1709. "words"
  1710. ],
  1711. "time": "2017-04-12T14:14:56+00:00"
  1712. },
  1713. {
  1714. "name": "symfony/options-resolver",
  1715. "version": "v3.3.6",
  1716. "source": {
  1717. "type": "git",
  1718. "url": "https://github.com/symfony/options-resolver.git",
  1719. "reference": "ff48982d295bcac1fd861f934f041ebc73ae40f0"
  1720. },
  1721. "dist": {
  1722. "type": "zip",
  1723. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/ff48982d295bcac1fd861f934f041ebc73ae40f0",
  1724. "reference": "ff48982d295bcac1fd861f934f041ebc73ae40f0",
  1725. "shasum": ""
  1726. },
  1727. "require": {
  1728. "php": ">=5.5.9"
  1729. },
  1730. "type": "library",
  1731. "extra": {
  1732. "branch-alias": {
  1733. "dev-master": "3.3-dev"
  1734. }
  1735. },
  1736. "autoload": {
  1737. "psr-4": {
  1738. "Symfony\\Component\\OptionsResolver\\": ""
  1739. },
  1740. "exclude-from-classmap": [
  1741. "/Tests/"
  1742. ]
  1743. },
  1744. "notification-url": "https://packagist.org/downloads/",
  1745. "license": [
  1746. "MIT"
  1747. ],
  1748. "authors": [
  1749. {
  1750. "name": "Fabien Potencier",
  1751. "email": "fabien@symfony.com"
  1752. },
  1753. {
  1754. "name": "Symfony Community",
  1755. "homepage": "https://symfony.com/contributors"
  1756. }
  1757. ],
  1758. "description": "Symfony OptionsResolver Component",
  1759. "homepage": "https://symfony.com",
  1760. "keywords": [
  1761. "config",
  1762. "configuration",
  1763. "options"
  1764. ],
  1765. "time": "2017-04-12T14:14:56+00:00"
  1766. },
  1767. {
  1768. "name": "symfony/polyfill-mbstring",
  1769. "version": "v1.4.0",
  1770. "source": {
  1771. "type": "git",
  1772. "url": "https://github.com/symfony/polyfill-mbstring.git",
  1773. "reference": "f29dca382a6485c3cbe6379f0c61230167681937"
  1774. },
  1775. "dist": {
  1776. "type": "zip",
  1777. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/f29dca382a6485c3cbe6379f0c61230167681937",
  1778. "reference": "f29dca382a6485c3cbe6379f0c61230167681937",
  1779. "shasum": ""
  1780. },
  1781. "require": {
  1782. "php": ">=5.3.3"
  1783. },
  1784. "suggest": {
  1785. "ext-mbstring": "For best performance"
  1786. },
  1787. "type": "library",
  1788. "extra": {
  1789. "branch-alias": {
  1790. "dev-master": "1.4-dev"
  1791. }
  1792. },
  1793. "autoload": {
  1794. "psr-4": {
  1795. "Symfony\\Polyfill\\Mbstring\\": ""
  1796. },
  1797. "files": [
  1798. "bootstrap.php"
  1799. ]
  1800. },
  1801. "notification-url": "https://packagist.org/downloads/",
  1802. "license": [
  1803. "MIT"
  1804. ],
  1805. "authors": [
  1806. {
  1807. "name": "Nicolas Grekas",
  1808. "email": "p@tchwork.com"
  1809. },
  1810. {
  1811. "name": "Symfony Community",
  1812. "homepage": "https://symfony.com/contributors"
  1813. }
  1814. ],
  1815. "description": "Symfony polyfill for the Mbstring extension",
  1816. "homepage": "https://symfony.com",
  1817. "keywords": [
  1818. "compatibility",
  1819. "mbstring",
  1820. "polyfill",
  1821. "portable",
  1822. "shim"
  1823. ],
  1824. "time": "2017-06-09T14:24:12+00:00"
  1825. },
  1826. {
  1827. "name": "symfony/polyfill-php70",
  1828. "version": "v1.4.0",
  1829. "source": {
  1830. "type": "git",
  1831. "url": "https://github.com/symfony/polyfill-php70.git",
  1832. "reference": "032fd647d5c11a9ceab8ee8747e13b5448e93874"
  1833. },
  1834. "dist": {
  1835. "type": "zip",
  1836. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/032fd647d5c11a9ceab8ee8747e13b5448e93874",
  1837. "reference": "032fd647d5c11a9ceab8ee8747e13b5448e93874",
  1838. "shasum": ""
  1839. },
  1840. "require": {
  1841. "paragonie/random_compat": "~1.0|~2.0",
  1842. "php": ">=5.3.3"
  1843. },
  1844. "type": "library",
  1845. "extra": {
  1846. "branch-alias": {
  1847. "dev-master": "1.4-dev"
  1848. }
  1849. },
  1850. "autoload": {
  1851. "psr-4": {
  1852. "Symfony\\Polyfill\\Php70\\": ""
  1853. },
  1854. "files": [
  1855. "bootstrap.php"
  1856. ],
  1857. "classmap": [
  1858. "Resources/stubs"
  1859. ]
  1860. },
  1861. "notification-url": "https://packagist.org/downloads/",
  1862. "license": [
  1863. "MIT"
  1864. ],
  1865. "authors": [
  1866. {
  1867. "name": "Nicolas Grekas",
  1868. "email": "p@tchwork.com"
  1869. },
  1870. {
  1871. "name": "Symfony Community",
  1872. "homepage": "https://symfony.com/contributors"
  1873. }
  1874. ],
  1875. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  1876. "homepage": "https://symfony.com",
  1877. "keywords": [
  1878. "compatibility",
  1879. "polyfill",
  1880. "portable",
  1881. "shim"
  1882. ],
  1883. "time": "2017-06-09T14:24:12+00:00"
  1884. },
  1885. {
  1886. "name": "symfony/process",
  1887. "version": "v3.3.6",
  1888. "source": {
  1889. "type": "git",
  1890. "url": "https://github.com/symfony/process.git",
  1891. "reference": "07432804942b9f6dd7b7377faf9920af5f95d70a"
  1892. },
  1893. "dist": {
  1894. "type": "zip",
  1895. "url": "https://api.github.com/repos/symfony/process/zipball/07432804942b9f6dd7b7377faf9920af5f95d70a",
  1896. "reference": "07432804942b9f6dd7b7377faf9920af5f95d70a",
  1897. "shasum": ""
  1898. },
  1899. "require": {
  1900. "php": ">=5.5.9"
  1901. },
  1902. "type": "library",
  1903. "extra": {
  1904. "branch-alias": {
  1905. "dev-master": "3.3-dev"
  1906. }
  1907. },
  1908. "autoload": {
  1909. "psr-4": {
  1910. "Symfony\\Component\\Process\\": ""
  1911. },
  1912. "exclude-from-classmap": [
  1913. "/Tests/"
  1914. ]
  1915. },
  1916. "notification-url": "https://packagist.org/downloads/",
  1917. "license": [
  1918. "MIT"
  1919. ],
  1920. "authors": [
  1921. {
  1922. "name": "Fabien Potencier",
  1923. "email": "fabien@symfony.com"
  1924. },
  1925. {
  1926. "name": "Symfony Community",
  1927. "homepage": "https://symfony.com/contributors"
  1928. }
  1929. ],
  1930. "description": "Symfony Process Component",
  1931. "homepage": "https://symfony.com",
  1932. "time": "2017-07-13T13:05:09+00:00"
  1933. },
  1934. {
  1935. "name": "symfony/property-access",
  1936. "version": "v3.3.6",
  1937. "source": {
  1938. "type": "git",
  1939. "url": "https://github.com/symfony/property-access.git",
  1940. "reference": "4cd2bc4afdfd914ad18cec97bb4159fc403384ea"
  1941. },
  1942. "dist": {
  1943. "type": "zip",
  1944. "url": "https://api.github.com/repos/symfony/property-access/zipball/4cd2bc4afdfd914ad18cec97bb4159fc403384ea",
  1945. "reference": "4cd2bc4afdfd914ad18cec97bb4159fc403384ea",
  1946. "shasum": ""
  1947. },
  1948. "require": {
  1949. "php": ">=5.5.9",
  1950. "symfony/inflector": "~3.1",
  1951. "symfony/polyfill-php70": "~1.0"
  1952. },
  1953. "require-dev": {
  1954. "symfony/cache": "~3.1"
  1955. },
  1956. "suggest": {
  1957. "psr/cache-implementation": "To cache access methods."
  1958. },
  1959. "type": "library",
  1960. "extra": {
  1961. "branch-alias": {
  1962. "dev-master": "3.3-dev"
  1963. }
  1964. },
  1965. "autoload": {
  1966. "psr-4": {
  1967. "Symfony\\Component\\PropertyAccess\\": ""
  1968. },
  1969. "exclude-from-classmap": [
  1970. "/Tests/"
  1971. ]
  1972. },
  1973. "notification-url": "https://packagist.org/downloads/",
  1974. "license": [
  1975. "MIT"
  1976. ],
  1977. "authors": [
  1978. {
  1979. "name": "Fabien Potencier",
  1980. "email": "fabien@symfony.com"
  1981. },
  1982. {
  1983. "name": "Symfony Community",
  1984. "homepage": "https://symfony.com/contributors"
  1985. }
  1986. ],
  1987. "description": "Symfony PropertyAccess Component",
  1988. "homepage": "https://symfony.com",
  1989. "keywords": [
  1990. "access",
  1991. "array",
  1992. "extraction",
  1993. "index",
  1994. "injection",
  1995. "object",
  1996. "property",
  1997. "property path",
  1998. "reflection"
  1999. ],
  2000. "time": "2017-07-03T08:12:02+00:00"
  2001. },
  2002. {
  2003. "name": "symfony/serializer",
  2004. "version": "v3.3.6",
  2005. "source": {
  2006. "type": "git",
  2007. "url": "https://github.com/symfony/serializer.git",
  2008. "reference": "cca77dd2eb9abc0411c98ba448b3a1e92816bbe1"
  2009. },
  2010. "dist": {
  2011. "type": "zip",
  2012. "url": "https://api.github.com/repos/symfony/serializer/zipball/cca77dd2eb9abc0411c98ba448b3a1e92816bbe1",
  2013. "reference": "cca77dd2eb9abc0411c98ba448b3a1e92816bbe1",
  2014. "shasum": ""
  2015. },
  2016. "require": {
  2017. "php": ">=5.5.9"
  2018. },
  2019. "conflict": {
  2020. "symfony/dependency-injection": "<3.2",
  2021. "symfony/property-access": ">=3.0,<3.0.4|>=2.8,<2.8.4",
  2022. "symfony/property-info": "<3.1",
  2023. "symfony/yaml": "<3.3"
  2024. },
  2025. "require-dev": {
  2026. "doctrine/annotations": "~1.0",
  2027. "doctrine/cache": "~1.0",
  2028. "phpdocumentor/reflection-docblock": "~3.0",
  2029. "symfony/cache": "~3.1",
  2030. "symfony/config": "~2.8|~3.0",
  2031. "symfony/dependency-injection": "~3.2",
  2032. "symfony/http-foundation": "~2.8|~3.0",
  2033. "symfony/property-access": "~2.8|~3.0",
  2034. "symfony/property-info": "~3.1",
  2035. "symfony/yaml": "~3.3"
  2036. },
  2037. "suggest": {
  2038. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  2039. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  2040. "psr/cache-implementation": "For using the metadata cache.",
  2041. "symfony/config": "For using the XML mapping loader.",
  2042. "symfony/http-foundation": "To use the DataUriNormalizer.",
  2043. "symfony/property-access": "For using the ObjectNormalizer.",
  2044. "symfony/property-info": "To deserialize relations.",
  2045. "symfony/yaml": "For using the default YAML mapping loader."
  2046. },
  2047. "type": "library",
  2048. "extra": {
  2049. "branch-alias": {
  2050. "dev-master": "3.3-dev"
  2051. }
  2052. },
  2053. "autoload": {
  2054. "psr-4": {
  2055. "Symfony\\Component\\Serializer\\": ""
  2056. },
  2057. "exclude-from-classmap": [
  2058. "/Tests/"
  2059. ]
  2060. },
  2061. "notification-url": "https://packagist.org/downloads/",
  2062. "license": [
  2063. "MIT"
  2064. ],
  2065. "authors": [
  2066. {
  2067. "name": "Fabien Potencier",
  2068. "email": "fabien@symfony.com"
  2069. },
  2070. {
  2071. "name": "Symfony Community",
  2072. "homepage": "https://symfony.com/contributors"
  2073. }
  2074. ],
  2075. "description": "Symfony Serializer Component",
  2076. "homepage": "https://symfony.com",
  2077. "time": "2017-07-11T07:17:58+00:00"
  2078. },
  2079. {
  2080. "name": "symfony/yaml",
  2081. "version": "v3.3.6",
  2082. "source": {
  2083. "type": "git",
  2084. "url": "https://github.com/symfony/yaml.git",
  2085. "reference": "ddc23324e6cfe066f3dd34a37ff494fa80b617ed"
  2086. },
  2087. "dist": {
  2088. "type": "zip",
  2089. "url": "https://api.github.com/repos/symfony/yaml/zipball/ddc23324e6cfe066f3dd34a37ff494fa80b617ed",
  2090. "reference": "ddc23324e6cfe066f3dd34a37ff494fa80b617ed",
  2091. "shasum": ""
  2092. },
  2093. "require": {
  2094. "php": ">=5.5.9"
  2095. },
  2096. "require-dev": {
  2097. "symfony/console": "~2.8|~3.0"
  2098. },
  2099. "suggest": {
  2100. "symfony/console": "For validating YAML files using the lint command"
  2101. },
  2102. "type": "library",
  2103. "extra": {
  2104. "branch-alias": {
  2105. "dev-master": "3.3-dev"
  2106. }
  2107. },
  2108. "autoload": {
  2109. "psr-4": {
  2110. "Symfony\\Component\\Yaml\\": ""
  2111. },
  2112. "exclude-from-classmap": [
  2113. "/Tests/"
  2114. ]
  2115. },
  2116. "notification-url": "https://packagist.org/downloads/",
  2117. "license": [
  2118. "MIT"
  2119. ],
  2120. "authors": [
  2121. {
  2122. "name": "Fabien Potencier",
  2123. "email": "fabien@symfony.com"
  2124. },
  2125. {
  2126. "name": "Symfony Community",
  2127. "homepage": "https://symfony.com/contributors"
  2128. }
  2129. ],
  2130. "description": "Symfony Yaml Component",
  2131. "homepage": "https://symfony.com",
  2132. "time": "2017-07-23T12:43:26+00:00"
  2133. }
  2134. ],
  2135. "packages-dev": [],
  2136. "aliases": [],
  2137. "minimum-stability": "stable",
  2138. "stability-flags": {
  2139. "lucciano/php-docker-lib": 20
  2140. },
  2141. "prefer-stable": false,
  2142. "prefer-lowest": false,
  2143. "platform": [],
  2144. "platform-dev": []
  2145. }