composer.lock 155 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440
  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#installing-dependencies",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "a77d36b64bc1213fecf4d4f92d759c3b",
  8. "packages": [
  9. {
  10. "name": "doctrine/lexer",
  11. "version": "1.2.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/doctrine/lexer.git",
  15. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  20. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^7.2 || ^8.0"
  25. },
  26. "require-dev": {
  27. "doctrine/coding-standard": "^6.0",
  28. "phpstan/phpstan": "^0.11.8",
  29. "phpunit/phpunit": "^8.2"
  30. },
  31. "type": "library",
  32. "extra": {
  33. "branch-alias": {
  34. "dev-master": "1.2.x-dev"
  35. }
  36. },
  37. "autoload": {
  38. "psr-4": {
  39. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  40. }
  41. },
  42. "notification-url": "https://packagist.org/downloads/",
  43. "license": [
  44. "MIT"
  45. ],
  46. "authors": [
  47. {
  48. "name": "Guilherme Blanco",
  49. "email": "guilhermeblanco@gmail.com"
  50. },
  51. {
  52. "name": "Roman Borschel",
  53. "email": "roman@code-factory.org"
  54. },
  55. {
  56. "name": "Johannes Schmitt",
  57. "email": "schmittjoh@gmail.com"
  58. }
  59. ],
  60. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  61. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  62. "keywords": [
  63. "annotations",
  64. "docblock",
  65. "lexer",
  66. "parser",
  67. "php"
  68. ],
  69. "support": {
  70. "issues": "https://github.com/doctrine/lexer/issues",
  71. "source": "https://github.com/doctrine/lexer/tree/1.2.1"
  72. },
  73. "funding": [
  74. {
  75. "url": "https://www.doctrine-project.org/sponsorship.html",
  76. "type": "custom"
  77. },
  78. {
  79. "url": "https://www.patreon.com/phpdoctrine",
  80. "type": "patreon"
  81. },
  82. {
  83. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  84. "type": "tidelift"
  85. }
  86. ],
  87. "time": "2020-05-25T17:44:05+00:00"
  88. },
  89. {
  90. "name": "symfony/polyfill-intl-idn",
  91. "version": "v1.22.1",
  92. "source": {
  93. "type": "git",
  94. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  95. "reference": "2d63434d922daf7da8dd863e7907e67ee3031483"
  96. },
  97. "dist": {
  98. "type": "zip",
  99. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/2d63434d922daf7da8dd863e7907e67ee3031483",
  100. "reference": "2d63434d922daf7da8dd863e7907e67ee3031483",
  101. "shasum": ""
  102. },
  103. "require": {
  104. "php": ">=7.1",
  105. "symfony/polyfill-intl-normalizer": "^1.10",
  106. "symfony/polyfill-php72": "^1.10"
  107. },
  108. "suggest": {
  109. "ext-intl": "For best performance"
  110. },
  111. "type": "library",
  112. "extra": {
  113. "branch-alias": {
  114. "dev-main": "1.22-dev"
  115. },
  116. "thanks": {
  117. "name": "symfony/polyfill",
  118. "url": "https://github.com/symfony/polyfill"
  119. }
  120. },
  121. "autoload": {
  122. "psr-4": {
  123. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  124. },
  125. "files": [
  126. "bootstrap.php"
  127. ]
  128. },
  129. "notification-url": "https://packagist.org/downloads/",
  130. "license": [
  131. "MIT"
  132. ],
  133. "authors": [
  134. {
  135. "name": "Laurent Bassin",
  136. "email": "laurent@bassin.info"
  137. },
  138. {
  139. "name": "Trevor Rowbotham",
  140. "email": "trevor.rowbotham@pm.me"
  141. },
  142. {
  143. "name": "Symfony Community",
  144. "homepage": "https://symfony.com/contributors"
  145. }
  146. ],
  147. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  148. "homepage": "https://symfony.com",
  149. "keywords": [
  150. "compatibility",
  151. "idn",
  152. "intl",
  153. "polyfill",
  154. "portable",
  155. "shim"
  156. ],
  157. "support": {
  158. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.22.1"
  159. },
  160. "funding": [
  161. {
  162. "url": "https://symfony.com/sponsor",
  163. "type": "custom"
  164. },
  165. {
  166. "url": "https://github.com/fabpot",
  167. "type": "github"
  168. },
  169. {
  170. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  171. "type": "tidelift"
  172. }
  173. ],
  174. "time": "2021-01-22T09:19:47+00:00"
  175. },
  176. {
  177. "name": "symfony/polyfill-intl-normalizer",
  178. "version": "v1.22.1",
  179. "source": {
  180. "type": "git",
  181. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  182. "reference": "43a0283138253ed1d48d352ab6d0bdb3f809f248"
  183. },
  184. "dist": {
  185. "type": "zip",
  186. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/43a0283138253ed1d48d352ab6d0bdb3f809f248",
  187. "reference": "43a0283138253ed1d48d352ab6d0bdb3f809f248",
  188. "shasum": ""
  189. },
  190. "require": {
  191. "php": ">=7.1"
  192. },
  193. "suggest": {
  194. "ext-intl": "For best performance"
  195. },
  196. "type": "library",
  197. "extra": {
  198. "branch-alias": {
  199. "dev-main": "1.22-dev"
  200. },
  201. "thanks": {
  202. "name": "symfony/polyfill",
  203. "url": "https://github.com/symfony/polyfill"
  204. }
  205. },
  206. "autoload": {
  207. "psr-4": {
  208. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  209. },
  210. "files": [
  211. "bootstrap.php"
  212. ],
  213. "classmap": [
  214. "Resources/stubs"
  215. ]
  216. },
  217. "notification-url": "https://packagist.org/downloads/",
  218. "license": [
  219. "MIT"
  220. ],
  221. "authors": [
  222. {
  223. "name": "Nicolas Grekas",
  224. "email": "p@tchwork.com"
  225. },
  226. {
  227. "name": "Symfony Community",
  228. "homepage": "https://symfony.com/contributors"
  229. }
  230. ],
  231. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  232. "homepage": "https://symfony.com",
  233. "keywords": [
  234. "compatibility",
  235. "intl",
  236. "normalizer",
  237. "polyfill",
  238. "portable",
  239. "shim"
  240. ],
  241. "support": {
  242. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.22.1"
  243. },
  244. "funding": [
  245. {
  246. "url": "https://symfony.com/sponsor",
  247. "type": "custom"
  248. },
  249. {
  250. "url": "https://github.com/fabpot",
  251. "type": "github"
  252. },
  253. {
  254. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  255. "type": "tidelift"
  256. }
  257. ],
  258. "time": "2021-01-22T09:19:47+00:00"
  259. },
  260. {
  261. "name": "symfony/polyfill-php72",
  262. "version": "v1.22.1",
  263. "source": {
  264. "type": "git",
  265. "url": "https://github.com/symfony/polyfill-php72.git",
  266. "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9"
  267. },
  268. "dist": {
  269. "type": "zip",
  270. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9",
  271. "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9",
  272. "shasum": ""
  273. },
  274. "require": {
  275. "php": ">=7.1"
  276. },
  277. "type": "library",
  278. "extra": {
  279. "branch-alias": {
  280. "dev-main": "1.22-dev"
  281. },
  282. "thanks": {
  283. "name": "symfony/polyfill",
  284. "url": "https://github.com/symfony/polyfill"
  285. }
  286. },
  287. "autoload": {
  288. "psr-4": {
  289. "Symfony\\Polyfill\\Php72\\": ""
  290. },
  291. "files": [
  292. "bootstrap.php"
  293. ]
  294. },
  295. "notification-url": "https://packagist.org/downloads/",
  296. "license": [
  297. "MIT"
  298. ],
  299. "authors": [
  300. {
  301. "name": "Nicolas Grekas",
  302. "email": "p@tchwork.com"
  303. },
  304. {
  305. "name": "Symfony Community",
  306. "homepage": "https://symfony.com/contributors"
  307. }
  308. ],
  309. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  310. "homepage": "https://symfony.com",
  311. "keywords": [
  312. "compatibility",
  313. "polyfill",
  314. "portable",
  315. "shim"
  316. ],
  317. "support": {
  318. "source": "https://github.com/symfony/polyfill-php72/tree/v1.22.1"
  319. },
  320. "funding": [
  321. {
  322. "url": "https://symfony.com/sponsor",
  323. "type": "custom"
  324. },
  325. {
  326. "url": "https://github.com/fabpot",
  327. "type": "github"
  328. },
  329. {
  330. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  331. "type": "tidelift"
  332. }
  333. ],
  334. "time": "2021-01-07T16:49:33+00:00"
  335. }
  336. ],
  337. "packages-dev": [
  338. {
  339. "name": "amphp/amp",
  340. "version": "v2.5.2",
  341. "source": {
  342. "type": "git",
  343. "url": "https://github.com/amphp/amp.git",
  344. "reference": "efca2b32a7580087adb8aabbff6be1dc1bb924a9"
  345. },
  346. "dist": {
  347. "type": "zip",
  348. "url": "https://api.github.com/repos/amphp/amp/zipball/efca2b32a7580087adb8aabbff6be1dc1bb924a9",
  349. "reference": "efca2b32a7580087adb8aabbff6be1dc1bb924a9",
  350. "shasum": ""
  351. },
  352. "require": {
  353. "php": ">=7"
  354. },
  355. "require-dev": {
  356. "amphp/php-cs-fixer-config": "dev-master",
  357. "amphp/phpunit-util": "^1",
  358. "ext-json": "*",
  359. "jetbrains/phpstorm-stubs": "^2019.3",
  360. "phpunit/phpunit": "^6.0.9 | ^7",
  361. "psalm/phar": "^3.11@dev",
  362. "react/promise": "^2"
  363. },
  364. "type": "library",
  365. "extra": {
  366. "branch-alias": {
  367. "dev-master": "2.x-dev"
  368. }
  369. },
  370. "autoload": {
  371. "psr-4": {
  372. "Amp\\": "lib"
  373. },
  374. "files": [
  375. "lib/functions.php",
  376. "lib/Internal/functions.php"
  377. ]
  378. },
  379. "notification-url": "https://packagist.org/downloads/",
  380. "license": [
  381. "MIT"
  382. ],
  383. "authors": [
  384. {
  385. "name": "Daniel Lowrey",
  386. "email": "rdlowrey@php.net"
  387. },
  388. {
  389. "name": "Aaron Piotrowski",
  390. "email": "aaron@trowski.com"
  391. },
  392. {
  393. "name": "Bob Weinand",
  394. "email": "bobwei9@hotmail.com"
  395. },
  396. {
  397. "name": "Niklas Keller",
  398. "email": "me@kelunik.com"
  399. }
  400. ],
  401. "description": "A non-blocking concurrency framework for PHP applications.",
  402. "homepage": "http://amphp.org/amp",
  403. "keywords": [
  404. "async",
  405. "asynchronous",
  406. "awaitable",
  407. "concurrency",
  408. "event",
  409. "event-loop",
  410. "future",
  411. "non-blocking",
  412. "promise"
  413. ],
  414. "support": {
  415. "irc": "irc://irc.freenode.org/amphp",
  416. "issues": "https://github.com/amphp/amp/issues",
  417. "source": "https://github.com/amphp/amp/tree/v2.5.2"
  418. },
  419. "funding": [
  420. {
  421. "url": "https://github.com/amphp",
  422. "type": "github"
  423. }
  424. ],
  425. "time": "2021-01-10T17:06:37+00:00"
  426. },
  427. {
  428. "name": "amphp/byte-stream",
  429. "version": "v1.8.0",
  430. "source": {
  431. "type": "git",
  432. "url": "https://github.com/amphp/byte-stream.git",
  433. "reference": "f0c20cf598a958ba2aa8c6e5a71c697d652c7088"
  434. },
  435. "dist": {
  436. "type": "zip",
  437. "url": "https://api.github.com/repos/amphp/byte-stream/zipball/f0c20cf598a958ba2aa8c6e5a71c697d652c7088",
  438. "reference": "f0c20cf598a958ba2aa8c6e5a71c697d652c7088",
  439. "shasum": ""
  440. },
  441. "require": {
  442. "amphp/amp": "^2",
  443. "php": ">=7.1"
  444. },
  445. "require-dev": {
  446. "amphp/php-cs-fixer-config": "dev-master",
  447. "amphp/phpunit-util": "^1.4",
  448. "friendsofphp/php-cs-fixer": "^2.3",
  449. "jetbrains/phpstorm-stubs": "^2019.3",
  450. "phpunit/phpunit": "^6 || ^7 || ^8",
  451. "psalm/phar": "^3.11.4"
  452. },
  453. "type": "library",
  454. "extra": {
  455. "branch-alias": {
  456. "dev-master": "1.x-dev"
  457. }
  458. },
  459. "autoload": {
  460. "psr-4": {
  461. "Amp\\ByteStream\\": "lib"
  462. },
  463. "files": [
  464. "lib/functions.php"
  465. ]
  466. },
  467. "notification-url": "https://packagist.org/downloads/",
  468. "license": [
  469. "MIT"
  470. ],
  471. "authors": [
  472. {
  473. "name": "Aaron Piotrowski",
  474. "email": "aaron@trowski.com"
  475. },
  476. {
  477. "name": "Niklas Keller",
  478. "email": "me@kelunik.com"
  479. }
  480. ],
  481. "description": "A stream abstraction to make working with non-blocking I/O simple.",
  482. "homepage": "http://amphp.org/byte-stream",
  483. "keywords": [
  484. "amp",
  485. "amphp",
  486. "async",
  487. "io",
  488. "non-blocking",
  489. "stream"
  490. ],
  491. "support": {
  492. "irc": "irc://irc.freenode.org/amphp",
  493. "issues": "https://github.com/amphp/byte-stream/issues",
  494. "source": "https://github.com/amphp/byte-stream/tree/master"
  495. },
  496. "time": "2020-06-29T18:35:05+00:00"
  497. },
  498. {
  499. "name": "composer/package-versions-deprecated",
  500. "version": "1.11.99.1",
  501. "source": {
  502. "type": "git",
  503. "url": "https://github.com/composer/package-versions-deprecated.git",
  504. "reference": "7413f0b55a051e89485c5cb9f765fe24bb02a7b6"
  505. },
  506. "dist": {
  507. "type": "zip",
  508. "url": "https://api.github.com/repos/composer/package-versions-deprecated/zipball/7413f0b55a051e89485c5cb9f765fe24bb02a7b6",
  509. "reference": "7413f0b55a051e89485c5cb9f765fe24bb02a7b6",
  510. "shasum": ""
  511. },
  512. "require": {
  513. "composer-plugin-api": "^1.1.0 || ^2.0",
  514. "php": "^7 || ^8"
  515. },
  516. "replace": {
  517. "ocramius/package-versions": "1.11.99"
  518. },
  519. "require-dev": {
  520. "composer/composer": "^1.9.3 || ^2.0@dev",
  521. "ext-zip": "^1.13",
  522. "phpunit/phpunit": "^6.5 || ^7"
  523. },
  524. "type": "composer-plugin",
  525. "extra": {
  526. "class": "PackageVersions\\Installer",
  527. "branch-alias": {
  528. "dev-master": "1.x-dev"
  529. }
  530. },
  531. "autoload": {
  532. "psr-4": {
  533. "PackageVersions\\": "src/PackageVersions"
  534. }
  535. },
  536. "notification-url": "https://packagist.org/downloads/",
  537. "license": [
  538. "MIT"
  539. ],
  540. "authors": [
  541. {
  542. "name": "Marco Pivetta",
  543. "email": "ocramius@gmail.com"
  544. },
  545. {
  546. "name": "Jordi Boggiano",
  547. "email": "j.boggiano@seld.be"
  548. }
  549. ],
  550. "description": "Composer plugin that provides efficient querying for installed package versions (no runtime IO)",
  551. "support": {
  552. "issues": "https://github.com/composer/package-versions-deprecated/issues",
  553. "source": "https://github.com/composer/package-versions-deprecated/tree/1.11.99.1"
  554. },
  555. "funding": [
  556. {
  557. "url": "https://packagist.com",
  558. "type": "custom"
  559. },
  560. {
  561. "url": "https://github.com/composer",
  562. "type": "github"
  563. },
  564. {
  565. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  566. "type": "tidelift"
  567. }
  568. ],
  569. "time": "2020-11-11T10:22:58+00:00"
  570. },
  571. {
  572. "name": "composer/semver",
  573. "version": "3.2.4",
  574. "source": {
  575. "type": "git",
  576. "url": "https://github.com/composer/semver.git",
  577. "reference": "a02fdf930a3c1c3ed3a49b5f63859c0c20e10464"
  578. },
  579. "dist": {
  580. "type": "zip",
  581. "url": "https://api.github.com/repos/composer/semver/zipball/a02fdf930a3c1c3ed3a49b5f63859c0c20e10464",
  582. "reference": "a02fdf930a3c1c3ed3a49b5f63859c0c20e10464",
  583. "shasum": ""
  584. },
  585. "require": {
  586. "php": "^5.3.2 || ^7.0 || ^8.0"
  587. },
  588. "require-dev": {
  589. "phpstan/phpstan": "^0.12.54",
  590. "symfony/phpunit-bridge": "^4.2 || ^5"
  591. },
  592. "type": "library",
  593. "extra": {
  594. "branch-alias": {
  595. "dev-main": "3.x-dev"
  596. }
  597. },
  598. "autoload": {
  599. "psr-4": {
  600. "Composer\\Semver\\": "src"
  601. }
  602. },
  603. "notification-url": "https://packagist.org/downloads/",
  604. "license": [
  605. "MIT"
  606. ],
  607. "authors": [
  608. {
  609. "name": "Nils Adermann",
  610. "email": "naderman@naderman.de",
  611. "homepage": "http://www.naderman.de"
  612. },
  613. {
  614. "name": "Jordi Boggiano",
  615. "email": "j.boggiano@seld.be",
  616. "homepage": "http://seld.be"
  617. },
  618. {
  619. "name": "Rob Bast",
  620. "email": "rob.bast@gmail.com",
  621. "homepage": "http://robbast.nl"
  622. }
  623. ],
  624. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  625. "keywords": [
  626. "semantic",
  627. "semver",
  628. "validation",
  629. "versioning"
  630. ],
  631. "support": {
  632. "irc": "irc://irc.freenode.org/composer",
  633. "issues": "https://github.com/composer/semver/issues",
  634. "source": "https://github.com/composer/semver/tree/3.2.4"
  635. },
  636. "funding": [
  637. {
  638. "url": "https://packagist.com",
  639. "type": "custom"
  640. },
  641. {
  642. "url": "https://github.com/composer",
  643. "type": "github"
  644. },
  645. {
  646. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  647. "type": "tidelift"
  648. }
  649. ],
  650. "time": "2020-11-13T08:59:24+00:00"
  651. },
  652. {
  653. "name": "composer/xdebug-handler",
  654. "version": "1.4.5",
  655. "source": {
  656. "type": "git",
  657. "url": "https://github.com/composer/xdebug-handler.git",
  658. "reference": "f28d44c286812c714741478d968104c5e604a1d4"
  659. },
  660. "dist": {
  661. "type": "zip",
  662. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/f28d44c286812c714741478d968104c5e604a1d4",
  663. "reference": "f28d44c286812c714741478d968104c5e604a1d4",
  664. "shasum": ""
  665. },
  666. "require": {
  667. "php": "^5.3.2 || ^7.0 || ^8.0",
  668. "psr/log": "^1.0"
  669. },
  670. "require-dev": {
  671. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8"
  672. },
  673. "type": "library",
  674. "autoload": {
  675. "psr-4": {
  676. "Composer\\XdebugHandler\\": "src"
  677. }
  678. },
  679. "notification-url": "https://packagist.org/downloads/",
  680. "license": [
  681. "MIT"
  682. ],
  683. "authors": [
  684. {
  685. "name": "John Stevenson",
  686. "email": "john-stevenson@blueyonder.co.uk"
  687. }
  688. ],
  689. "description": "Restarts a process without Xdebug.",
  690. "keywords": [
  691. "Xdebug",
  692. "performance"
  693. ],
  694. "support": {
  695. "irc": "irc://irc.freenode.org/composer",
  696. "issues": "https://github.com/composer/xdebug-handler/issues",
  697. "source": "https://github.com/composer/xdebug-handler/tree/1.4.5"
  698. },
  699. "funding": [
  700. {
  701. "url": "https://packagist.com",
  702. "type": "custom"
  703. },
  704. {
  705. "url": "https://github.com/composer",
  706. "type": "github"
  707. },
  708. {
  709. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  710. "type": "tidelift"
  711. }
  712. ],
  713. "time": "2020-11-13T08:04:11+00:00"
  714. },
  715. {
  716. "name": "dnoegel/php-xdg-base-dir",
  717. "version": "v0.1.1",
  718. "source": {
  719. "type": "git",
  720. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  721. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd"
  722. },
  723. "dist": {
  724. "type": "zip",
  725. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  726. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  727. "shasum": ""
  728. },
  729. "require": {
  730. "php": ">=5.3.2"
  731. },
  732. "require-dev": {
  733. "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
  734. },
  735. "type": "library",
  736. "autoload": {
  737. "psr-4": {
  738. "XdgBaseDir\\": "src/"
  739. }
  740. },
  741. "notification-url": "https://packagist.org/downloads/",
  742. "license": [
  743. "MIT"
  744. ],
  745. "description": "implementation of xdg base directory specification for php",
  746. "support": {
  747. "issues": "https://github.com/dnoegel/php-xdg-base-dir/issues",
  748. "source": "https://github.com/dnoegel/php-xdg-base-dir/tree/v0.1.1"
  749. },
  750. "time": "2019-12-04T15:06:13+00:00"
  751. },
  752. {
  753. "name": "doctrine/instantiator",
  754. "version": "1.4.0",
  755. "source": {
  756. "type": "git",
  757. "url": "https://github.com/doctrine/instantiator.git",
  758. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
  759. },
  760. "dist": {
  761. "type": "zip",
  762. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
  763. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
  764. "shasum": ""
  765. },
  766. "require": {
  767. "php": "^7.1 || ^8.0"
  768. },
  769. "require-dev": {
  770. "doctrine/coding-standard": "^8.0",
  771. "ext-pdo": "*",
  772. "ext-phar": "*",
  773. "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
  774. "phpstan/phpstan": "^0.12",
  775. "phpstan/phpstan-phpunit": "^0.12",
  776. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  777. },
  778. "type": "library",
  779. "autoload": {
  780. "psr-4": {
  781. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  782. }
  783. },
  784. "notification-url": "https://packagist.org/downloads/",
  785. "license": [
  786. "MIT"
  787. ],
  788. "authors": [
  789. {
  790. "name": "Marco Pivetta",
  791. "email": "ocramius@gmail.com",
  792. "homepage": "https://ocramius.github.io/"
  793. }
  794. ],
  795. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  796. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  797. "keywords": [
  798. "constructor",
  799. "instantiate"
  800. ],
  801. "support": {
  802. "issues": "https://github.com/doctrine/instantiator/issues",
  803. "source": "https://github.com/doctrine/instantiator/tree/1.4.0"
  804. },
  805. "funding": [
  806. {
  807. "url": "https://www.doctrine-project.org/sponsorship.html",
  808. "type": "custom"
  809. },
  810. {
  811. "url": "https://www.patreon.com/phpdoctrine",
  812. "type": "patreon"
  813. },
  814. {
  815. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  816. "type": "tidelift"
  817. }
  818. ],
  819. "time": "2020-11-10T18:47:58+00:00"
  820. },
  821. {
  822. "name": "felixfbecker/advanced-json-rpc",
  823. "version": "v3.2.0",
  824. "source": {
  825. "type": "git",
  826. "url": "https://github.com/felixfbecker/php-advanced-json-rpc.git",
  827. "reference": "06f0b06043c7438959dbdeed8bb3f699a19be22e"
  828. },
  829. "dist": {
  830. "type": "zip",
  831. "url": "https://api.github.com/repos/felixfbecker/php-advanced-json-rpc/zipball/06f0b06043c7438959dbdeed8bb3f699a19be22e",
  832. "reference": "06f0b06043c7438959dbdeed8bb3f699a19be22e",
  833. "shasum": ""
  834. },
  835. "require": {
  836. "netresearch/jsonmapper": "^1.0 || ^2.0",
  837. "php": "^7.1 || ^8.0",
  838. "phpdocumentor/reflection-docblock": "^4.3.4 || ^5.0.0"
  839. },
  840. "require-dev": {
  841. "phpunit/phpunit": "^7.0 || ^8.0"
  842. },
  843. "type": "library",
  844. "autoload": {
  845. "psr-4": {
  846. "AdvancedJsonRpc\\": "lib/"
  847. }
  848. },
  849. "notification-url": "https://packagist.org/downloads/",
  850. "license": [
  851. "ISC"
  852. ],
  853. "authors": [
  854. {
  855. "name": "Felix Becker",
  856. "email": "felix.b@outlook.com"
  857. }
  858. ],
  859. "description": "A more advanced JSONRPC implementation",
  860. "support": {
  861. "issues": "https://github.com/felixfbecker/php-advanced-json-rpc/issues",
  862. "source": "https://github.com/felixfbecker/php-advanced-json-rpc/tree/v3.2.0"
  863. },
  864. "time": "2021-01-10T17:48:47+00:00"
  865. },
  866. {
  867. "name": "felixfbecker/language-server-protocol",
  868. "version": "1.5.1",
  869. "source": {
  870. "type": "git",
  871. "url": "https://github.com/felixfbecker/php-language-server-protocol.git",
  872. "reference": "9d846d1f5cf101deee7a61c8ba7caa0a975cd730"
  873. },
  874. "dist": {
  875. "type": "zip",
  876. "url": "https://api.github.com/repos/felixfbecker/php-language-server-protocol/zipball/9d846d1f5cf101deee7a61c8ba7caa0a975cd730",
  877. "reference": "9d846d1f5cf101deee7a61c8ba7caa0a975cd730",
  878. "shasum": ""
  879. },
  880. "require": {
  881. "php": ">=7.1"
  882. },
  883. "require-dev": {
  884. "phpstan/phpstan": "*",
  885. "squizlabs/php_codesniffer": "^3.1",
  886. "vimeo/psalm": "^4.0"
  887. },
  888. "type": "library",
  889. "extra": {
  890. "branch-alias": {
  891. "dev-master": "1.x-dev"
  892. }
  893. },
  894. "autoload": {
  895. "psr-4": {
  896. "LanguageServerProtocol\\": "src/"
  897. }
  898. },
  899. "notification-url": "https://packagist.org/downloads/",
  900. "license": [
  901. "ISC"
  902. ],
  903. "authors": [
  904. {
  905. "name": "Felix Becker",
  906. "email": "felix.b@outlook.com"
  907. }
  908. ],
  909. "description": "PHP classes for the Language Server Protocol",
  910. "keywords": [
  911. "language",
  912. "microsoft",
  913. "php",
  914. "server"
  915. ],
  916. "support": {
  917. "issues": "https://github.com/felixfbecker/php-language-server-protocol/issues",
  918. "source": "https://github.com/felixfbecker/php-language-server-protocol/tree/1.5.1"
  919. },
  920. "time": "2021-02-22T14:02:09+00:00"
  921. },
  922. {
  923. "name": "guzzlehttp/guzzle",
  924. "version": "7.2.0",
  925. "source": {
  926. "type": "git",
  927. "url": "https://github.com/guzzle/guzzle.git",
  928. "reference": "0aa74dfb41ae110835923ef10a9d803a22d50e79"
  929. },
  930. "dist": {
  931. "type": "zip",
  932. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/0aa74dfb41ae110835923ef10a9d803a22d50e79",
  933. "reference": "0aa74dfb41ae110835923ef10a9d803a22d50e79",
  934. "shasum": ""
  935. },
  936. "require": {
  937. "ext-json": "*",
  938. "guzzlehttp/promises": "^1.4",
  939. "guzzlehttp/psr7": "^1.7",
  940. "php": "^7.2.5 || ^8.0",
  941. "psr/http-client": "^1.0"
  942. },
  943. "provide": {
  944. "psr/http-client-implementation": "1.0"
  945. },
  946. "require-dev": {
  947. "ext-curl": "*",
  948. "php-http/client-integration-tests": "^3.0",
  949. "phpunit/phpunit": "^8.5.5 || ^9.3.5",
  950. "psr/log": "^1.1"
  951. },
  952. "suggest": {
  953. "ext-curl": "Required for CURL handler support",
  954. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  955. "psr/log": "Required for using the Log middleware"
  956. },
  957. "type": "library",
  958. "extra": {
  959. "branch-alias": {
  960. "dev-master": "7.1-dev"
  961. }
  962. },
  963. "autoload": {
  964. "psr-4": {
  965. "GuzzleHttp\\": "src/"
  966. },
  967. "files": [
  968. "src/functions_include.php"
  969. ]
  970. },
  971. "notification-url": "https://packagist.org/downloads/",
  972. "license": [
  973. "MIT"
  974. ],
  975. "authors": [
  976. {
  977. "name": "Michael Dowling",
  978. "email": "mtdowling@gmail.com",
  979. "homepage": "https://github.com/mtdowling"
  980. },
  981. {
  982. "name": "Márk Sági-Kazár",
  983. "email": "mark.sagikazar@gmail.com",
  984. "homepage": "https://sagikazarmark.hu"
  985. }
  986. ],
  987. "description": "Guzzle is a PHP HTTP client library",
  988. "homepage": "http://guzzlephp.org/",
  989. "keywords": [
  990. "client",
  991. "curl",
  992. "framework",
  993. "http",
  994. "http client",
  995. "psr-18",
  996. "psr-7",
  997. "rest",
  998. "web service"
  999. ],
  1000. "support": {
  1001. "issues": "https://github.com/guzzle/guzzle/issues",
  1002. "source": "https://github.com/guzzle/guzzle/tree/7.2.0"
  1003. },
  1004. "funding": [
  1005. {
  1006. "url": "https://github.com/GrahamCampbell",
  1007. "type": "github"
  1008. },
  1009. {
  1010. "url": "https://github.com/Nyholm",
  1011. "type": "github"
  1012. },
  1013. {
  1014. "url": "https://github.com/alexeyshockov",
  1015. "type": "github"
  1016. },
  1017. {
  1018. "url": "https://github.com/gmponos",
  1019. "type": "github"
  1020. }
  1021. ],
  1022. "time": "2020-10-10T11:47:56+00:00"
  1023. },
  1024. {
  1025. "name": "guzzlehttp/promises",
  1026. "version": "1.4.0",
  1027. "source": {
  1028. "type": "git",
  1029. "url": "https://github.com/guzzle/promises.git",
  1030. "reference": "60d379c243457e073cff02bc323a2a86cb355631"
  1031. },
  1032. "dist": {
  1033. "type": "zip",
  1034. "url": "https://api.github.com/repos/guzzle/promises/zipball/60d379c243457e073cff02bc323a2a86cb355631",
  1035. "reference": "60d379c243457e073cff02bc323a2a86cb355631",
  1036. "shasum": ""
  1037. },
  1038. "require": {
  1039. "php": ">=5.5"
  1040. },
  1041. "require-dev": {
  1042. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  1043. },
  1044. "type": "library",
  1045. "extra": {
  1046. "branch-alias": {
  1047. "dev-master": "1.4-dev"
  1048. }
  1049. },
  1050. "autoload": {
  1051. "psr-4": {
  1052. "GuzzleHttp\\Promise\\": "src/"
  1053. },
  1054. "files": [
  1055. "src/functions_include.php"
  1056. ]
  1057. },
  1058. "notification-url": "https://packagist.org/downloads/",
  1059. "license": [
  1060. "MIT"
  1061. ],
  1062. "authors": [
  1063. {
  1064. "name": "Michael Dowling",
  1065. "email": "mtdowling@gmail.com",
  1066. "homepage": "https://github.com/mtdowling"
  1067. }
  1068. ],
  1069. "description": "Guzzle promises library",
  1070. "keywords": [
  1071. "promise"
  1072. ],
  1073. "support": {
  1074. "issues": "https://github.com/guzzle/promises/issues",
  1075. "source": "https://github.com/guzzle/promises/tree/1.4.0"
  1076. },
  1077. "time": "2020-09-30T07:37:28+00:00"
  1078. },
  1079. {
  1080. "name": "guzzlehttp/psr7",
  1081. "version": "1.7.0",
  1082. "source": {
  1083. "type": "git",
  1084. "url": "https://github.com/guzzle/psr7.git",
  1085. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3"
  1086. },
  1087. "dist": {
  1088. "type": "zip",
  1089. "url": "https://api.github.com/repos/guzzle/psr7/zipball/53330f47520498c0ae1f61f7e2c90f55690c06a3",
  1090. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3",
  1091. "shasum": ""
  1092. },
  1093. "require": {
  1094. "php": ">=5.4.0",
  1095. "psr/http-message": "~1.0",
  1096. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  1097. },
  1098. "provide": {
  1099. "psr/http-message-implementation": "1.0"
  1100. },
  1101. "require-dev": {
  1102. "ext-zlib": "*",
  1103. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  1104. },
  1105. "suggest": {
  1106. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1107. },
  1108. "type": "library",
  1109. "extra": {
  1110. "branch-alias": {
  1111. "dev-master": "1.7-dev"
  1112. }
  1113. },
  1114. "autoload": {
  1115. "psr-4": {
  1116. "GuzzleHttp\\Psr7\\": "src/"
  1117. },
  1118. "files": [
  1119. "src/functions_include.php"
  1120. ]
  1121. },
  1122. "notification-url": "https://packagist.org/downloads/",
  1123. "license": [
  1124. "MIT"
  1125. ],
  1126. "authors": [
  1127. {
  1128. "name": "Michael Dowling",
  1129. "email": "mtdowling@gmail.com",
  1130. "homepage": "https://github.com/mtdowling"
  1131. },
  1132. {
  1133. "name": "Tobias Schultze",
  1134. "homepage": "https://github.com/Tobion"
  1135. }
  1136. ],
  1137. "description": "PSR-7 message implementation that also provides common utility methods",
  1138. "keywords": [
  1139. "http",
  1140. "message",
  1141. "psr-7",
  1142. "request",
  1143. "response",
  1144. "stream",
  1145. "uri",
  1146. "url"
  1147. ],
  1148. "support": {
  1149. "issues": "https://github.com/guzzle/psr7/issues",
  1150. "source": "https://github.com/guzzle/psr7/tree/1.7.0"
  1151. },
  1152. "time": "2020-09-30T07:37:11+00:00"
  1153. },
  1154. {
  1155. "name": "myclabs/deep-copy",
  1156. "version": "1.10.2",
  1157. "source": {
  1158. "type": "git",
  1159. "url": "https://github.com/myclabs/DeepCopy.git",
  1160. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
  1161. },
  1162. "dist": {
  1163. "type": "zip",
  1164. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
  1165. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
  1166. "shasum": ""
  1167. },
  1168. "require": {
  1169. "php": "^7.1 || ^8.0"
  1170. },
  1171. "replace": {
  1172. "myclabs/deep-copy": "self.version"
  1173. },
  1174. "require-dev": {
  1175. "doctrine/collections": "^1.0",
  1176. "doctrine/common": "^2.6",
  1177. "phpunit/phpunit": "^7.1"
  1178. },
  1179. "type": "library",
  1180. "autoload": {
  1181. "psr-4": {
  1182. "DeepCopy\\": "src/DeepCopy/"
  1183. },
  1184. "files": [
  1185. "src/DeepCopy/deep_copy.php"
  1186. ]
  1187. },
  1188. "notification-url": "https://packagist.org/downloads/",
  1189. "license": [
  1190. "MIT"
  1191. ],
  1192. "description": "Create deep copies (clones) of your objects",
  1193. "keywords": [
  1194. "clone",
  1195. "copy",
  1196. "duplicate",
  1197. "object",
  1198. "object graph"
  1199. ],
  1200. "support": {
  1201. "issues": "https://github.com/myclabs/DeepCopy/issues",
  1202. "source": "https://github.com/myclabs/DeepCopy/tree/1.10.2"
  1203. },
  1204. "funding": [
  1205. {
  1206. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  1207. "type": "tidelift"
  1208. }
  1209. ],
  1210. "time": "2020-11-13T09:40:50+00:00"
  1211. },
  1212. {
  1213. "name": "netresearch/jsonmapper",
  1214. "version": "v2.1.0",
  1215. "source": {
  1216. "type": "git",
  1217. "url": "https://github.com/cweiske/jsonmapper.git",
  1218. "reference": "e0f1e33a71587aca81be5cffbb9746510e1fe04e"
  1219. },
  1220. "dist": {
  1221. "type": "zip",
  1222. "url": "https://api.github.com/repos/cweiske/jsonmapper/zipball/e0f1e33a71587aca81be5cffbb9746510e1fe04e",
  1223. "reference": "e0f1e33a71587aca81be5cffbb9746510e1fe04e",
  1224. "shasum": ""
  1225. },
  1226. "require": {
  1227. "ext-json": "*",
  1228. "ext-pcre": "*",
  1229. "ext-reflection": "*",
  1230. "ext-spl": "*",
  1231. "php": ">=5.6"
  1232. },
  1233. "require-dev": {
  1234. "phpunit/phpunit": "~4.8.35 || ~5.7 || ~6.4 || ~7.0",
  1235. "squizlabs/php_codesniffer": "~3.5"
  1236. },
  1237. "type": "library",
  1238. "autoload": {
  1239. "psr-0": {
  1240. "JsonMapper": "src/"
  1241. }
  1242. },
  1243. "notification-url": "https://packagist.org/downloads/",
  1244. "license": [
  1245. "OSL-3.0"
  1246. ],
  1247. "authors": [
  1248. {
  1249. "name": "Christian Weiske",
  1250. "email": "cweiske@cweiske.de",
  1251. "homepage": "http://github.com/cweiske/jsonmapper/",
  1252. "role": "Developer"
  1253. }
  1254. ],
  1255. "description": "Map nested JSON structures onto PHP classes",
  1256. "support": {
  1257. "email": "cweiske@cweiske.de",
  1258. "issues": "https://github.com/cweiske/jsonmapper/issues",
  1259. "source": "https://github.com/cweiske/jsonmapper/tree/master"
  1260. },
  1261. "time": "2020-04-16T18:48:43+00:00"
  1262. },
  1263. {
  1264. "name": "nikic/php-parser",
  1265. "version": "v4.10.4",
  1266. "source": {
  1267. "type": "git",
  1268. "url": "https://github.com/nikic/PHP-Parser.git",
  1269. "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e"
  1270. },
  1271. "dist": {
  1272. "type": "zip",
  1273. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/c6d052fc58cb876152f89f532b95a8d7907e7f0e",
  1274. "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e",
  1275. "shasum": ""
  1276. },
  1277. "require": {
  1278. "ext-tokenizer": "*",
  1279. "php": ">=7.0"
  1280. },
  1281. "require-dev": {
  1282. "ircmaxell/php-yacc": "^0.0.7",
  1283. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  1284. },
  1285. "bin": [
  1286. "bin/php-parse"
  1287. ],
  1288. "type": "library",
  1289. "extra": {
  1290. "branch-alias": {
  1291. "dev-master": "4.9-dev"
  1292. }
  1293. },
  1294. "autoload": {
  1295. "psr-4": {
  1296. "PhpParser\\": "lib/PhpParser"
  1297. }
  1298. },
  1299. "notification-url": "https://packagist.org/downloads/",
  1300. "license": [
  1301. "BSD-3-Clause"
  1302. ],
  1303. "authors": [
  1304. {
  1305. "name": "Nikita Popov"
  1306. }
  1307. ],
  1308. "description": "A PHP parser written in PHP",
  1309. "keywords": [
  1310. "parser",
  1311. "php"
  1312. ],
  1313. "support": {
  1314. "issues": "https://github.com/nikic/PHP-Parser/issues",
  1315. "source": "https://github.com/nikic/PHP-Parser/tree/v4.10.4"
  1316. },
  1317. "time": "2020-12-20T10:01:03+00:00"
  1318. },
  1319. {
  1320. "name": "openlss/lib-array2xml",
  1321. "version": "1.0.0",
  1322. "source": {
  1323. "type": "git",
  1324. "url": "https://github.com/nullivex/lib-array2xml.git",
  1325. "reference": "a91f18a8dfc69ffabe5f9b068bc39bb202c81d90"
  1326. },
  1327. "dist": {
  1328. "type": "zip",
  1329. "url": "https://api.github.com/repos/nullivex/lib-array2xml/zipball/a91f18a8dfc69ffabe5f9b068bc39bb202c81d90",
  1330. "reference": "a91f18a8dfc69ffabe5f9b068bc39bb202c81d90",
  1331. "shasum": ""
  1332. },
  1333. "require": {
  1334. "php": ">=5.3.2"
  1335. },
  1336. "type": "library",
  1337. "autoload": {
  1338. "psr-0": {
  1339. "LSS": ""
  1340. }
  1341. },
  1342. "notification-url": "https://packagist.org/downloads/",
  1343. "license": [
  1344. "Apache-2.0"
  1345. ],
  1346. "authors": [
  1347. {
  1348. "name": "Bryan Tong",
  1349. "email": "bryan@nullivex.com",
  1350. "homepage": "https://www.nullivex.com"
  1351. },
  1352. {
  1353. "name": "Tony Butler",
  1354. "email": "spudz76@gmail.com",
  1355. "homepage": "https://www.nullivex.com"
  1356. }
  1357. ],
  1358. "description": "Array2XML conversion library credit to lalit.org",
  1359. "homepage": "https://www.nullivex.com",
  1360. "keywords": [
  1361. "array",
  1362. "array conversion",
  1363. "xml",
  1364. "xml conversion"
  1365. ],
  1366. "support": {
  1367. "issues": "https://github.com/nullivex/lib-array2xml/issues",
  1368. "source": "https://github.com/nullivex/lib-array2xml/tree/master"
  1369. },
  1370. "time": "2019-03-29T20:06:56+00:00"
  1371. },
  1372. {
  1373. "name": "phar-io/manifest",
  1374. "version": "2.0.1",
  1375. "source": {
  1376. "type": "git",
  1377. "url": "https://github.com/phar-io/manifest.git",
  1378. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133"
  1379. },
  1380. "dist": {
  1381. "type": "zip",
  1382. "url": "https://api.github.com/repos/phar-io/manifest/zipball/85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  1383. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  1384. "shasum": ""
  1385. },
  1386. "require": {
  1387. "ext-dom": "*",
  1388. "ext-phar": "*",
  1389. "ext-xmlwriter": "*",
  1390. "phar-io/version": "^3.0.1",
  1391. "php": "^7.2 || ^8.0"
  1392. },
  1393. "type": "library",
  1394. "extra": {
  1395. "branch-alias": {
  1396. "dev-master": "2.0.x-dev"
  1397. }
  1398. },
  1399. "autoload": {
  1400. "classmap": [
  1401. "src/"
  1402. ]
  1403. },
  1404. "notification-url": "https://packagist.org/downloads/",
  1405. "license": [
  1406. "BSD-3-Clause"
  1407. ],
  1408. "authors": [
  1409. {
  1410. "name": "Arne Blankerts",
  1411. "email": "arne@blankerts.de",
  1412. "role": "Developer"
  1413. },
  1414. {
  1415. "name": "Sebastian Heuer",
  1416. "email": "sebastian@phpeople.de",
  1417. "role": "Developer"
  1418. },
  1419. {
  1420. "name": "Sebastian Bergmann",
  1421. "email": "sebastian@phpunit.de",
  1422. "role": "Developer"
  1423. }
  1424. ],
  1425. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  1426. "support": {
  1427. "issues": "https://github.com/phar-io/manifest/issues",
  1428. "source": "https://github.com/phar-io/manifest/tree/master"
  1429. },
  1430. "time": "2020-06-27T14:33:11+00:00"
  1431. },
  1432. {
  1433. "name": "phar-io/version",
  1434. "version": "3.1.0",
  1435. "source": {
  1436. "type": "git",
  1437. "url": "https://github.com/phar-io/version.git",
  1438. "reference": "bae7c545bef187884426f042434e561ab1ddb182"
  1439. },
  1440. "dist": {
  1441. "type": "zip",
  1442. "url": "https://api.github.com/repos/phar-io/version/zipball/bae7c545bef187884426f042434e561ab1ddb182",
  1443. "reference": "bae7c545bef187884426f042434e561ab1ddb182",
  1444. "shasum": ""
  1445. },
  1446. "require": {
  1447. "php": "^7.2 || ^8.0"
  1448. },
  1449. "type": "library",
  1450. "autoload": {
  1451. "classmap": [
  1452. "src/"
  1453. ]
  1454. },
  1455. "notification-url": "https://packagist.org/downloads/",
  1456. "license": [
  1457. "BSD-3-Clause"
  1458. ],
  1459. "authors": [
  1460. {
  1461. "name": "Arne Blankerts",
  1462. "email": "arne@blankerts.de",
  1463. "role": "Developer"
  1464. },
  1465. {
  1466. "name": "Sebastian Heuer",
  1467. "email": "sebastian@phpeople.de",
  1468. "role": "Developer"
  1469. },
  1470. {
  1471. "name": "Sebastian Bergmann",
  1472. "email": "sebastian@phpunit.de",
  1473. "role": "Developer"
  1474. }
  1475. ],
  1476. "description": "Library for handling version information and constraints",
  1477. "support": {
  1478. "issues": "https://github.com/phar-io/version/issues",
  1479. "source": "https://github.com/phar-io/version/tree/3.1.0"
  1480. },
  1481. "time": "2021-02-23T14:00:09+00:00"
  1482. },
  1483. {
  1484. "name": "php-coveralls/php-coveralls",
  1485. "version": "v2.4.3",
  1486. "source": {
  1487. "type": "git",
  1488. "url": "https://github.com/php-coveralls/php-coveralls.git",
  1489. "reference": "909381bd40a17ae6e9076051f0d73293c1c091af"
  1490. },
  1491. "dist": {
  1492. "type": "zip",
  1493. "url": "https://api.github.com/repos/php-coveralls/php-coveralls/zipball/909381bd40a17ae6e9076051f0d73293c1c091af",
  1494. "reference": "909381bd40a17ae6e9076051f0d73293c1c091af",
  1495. "shasum": ""
  1496. },
  1497. "require": {
  1498. "ext-json": "*",
  1499. "ext-simplexml": "*",
  1500. "guzzlehttp/guzzle": "^6.0 || ^7.0",
  1501. "php": "^5.5 || ^7.0 || ^8.0",
  1502. "psr/log": "^1.0",
  1503. "symfony/config": "^2.1 || ^3.0 || ^4.0 || ^5.0",
  1504. "symfony/console": "^2.1 || ^3.0 || ^4.0 || ^5.0",
  1505. "symfony/stopwatch": "^2.0 || ^3.0 || ^4.0 || ^5.0",
  1506. "symfony/yaml": "^2.0.5 || ^3.0 || ^4.0 || ^5.0"
  1507. },
  1508. "require-dev": {
  1509. "phpunit/phpunit": "^4.8.35 || ^5.4.3 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
  1510. "sanmai/phpunit-legacy-adapter": "^6.1 || ^8.0"
  1511. },
  1512. "suggest": {
  1513. "symfony/http-kernel": "Allows Symfony integration"
  1514. },
  1515. "bin": [
  1516. "bin/php-coveralls"
  1517. ],
  1518. "type": "library",
  1519. "autoload": {
  1520. "psr-4": {
  1521. "PhpCoveralls\\": "src/"
  1522. }
  1523. },
  1524. "notification-url": "https://packagist.org/downloads/",
  1525. "license": [
  1526. "MIT"
  1527. ],
  1528. "authors": [
  1529. {
  1530. "name": "Kitamura Satoshi",
  1531. "email": "with.no.parachute@gmail.com",
  1532. "homepage": "https://www.facebook.com/satooshi.jp",
  1533. "role": "Original creator"
  1534. },
  1535. {
  1536. "name": "Takashi Matsuo",
  1537. "email": "tmatsuo@google.com"
  1538. },
  1539. {
  1540. "name": "Google Inc"
  1541. },
  1542. {
  1543. "name": "Dariusz Ruminski",
  1544. "email": "dariusz.ruminski@gmail.com",
  1545. "homepage": "https://github.com/keradus"
  1546. },
  1547. {
  1548. "name": "Contributors",
  1549. "homepage": "https://github.com/php-coveralls/php-coveralls/graphs/contributors"
  1550. }
  1551. ],
  1552. "description": "PHP client library for Coveralls API",
  1553. "homepage": "https://github.com/php-coveralls/php-coveralls",
  1554. "keywords": [
  1555. "ci",
  1556. "coverage",
  1557. "github",
  1558. "test"
  1559. ],
  1560. "support": {
  1561. "issues": "https://github.com/php-coveralls/php-coveralls/issues",
  1562. "source": "https://github.com/php-coveralls/php-coveralls/tree/v2.4.3"
  1563. },
  1564. "time": "2020-12-24T09:17:03+00:00"
  1565. },
  1566. {
  1567. "name": "phpdocumentor/reflection-common",
  1568. "version": "2.2.0",
  1569. "source": {
  1570. "type": "git",
  1571. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  1572. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  1573. },
  1574. "dist": {
  1575. "type": "zip",
  1576. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  1577. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  1578. "shasum": ""
  1579. },
  1580. "require": {
  1581. "php": "^7.2 || ^8.0"
  1582. },
  1583. "type": "library",
  1584. "extra": {
  1585. "branch-alias": {
  1586. "dev-2.x": "2.x-dev"
  1587. }
  1588. },
  1589. "autoload": {
  1590. "psr-4": {
  1591. "phpDocumentor\\Reflection\\": "src/"
  1592. }
  1593. },
  1594. "notification-url": "https://packagist.org/downloads/",
  1595. "license": [
  1596. "MIT"
  1597. ],
  1598. "authors": [
  1599. {
  1600. "name": "Jaap van Otterdijk",
  1601. "email": "opensource@ijaap.nl"
  1602. }
  1603. ],
  1604. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  1605. "homepage": "http://www.phpdoc.org",
  1606. "keywords": [
  1607. "FQSEN",
  1608. "phpDocumentor",
  1609. "phpdoc",
  1610. "reflection",
  1611. "static analysis"
  1612. ],
  1613. "support": {
  1614. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  1615. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  1616. },
  1617. "time": "2020-06-27T09:03:43+00:00"
  1618. },
  1619. {
  1620. "name": "phpdocumentor/reflection-docblock",
  1621. "version": "5.2.2",
  1622. "source": {
  1623. "type": "git",
  1624. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  1625. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556"
  1626. },
  1627. "dist": {
  1628. "type": "zip",
  1629. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556",
  1630. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556",
  1631. "shasum": ""
  1632. },
  1633. "require": {
  1634. "ext-filter": "*",
  1635. "php": "^7.2 || ^8.0",
  1636. "phpdocumentor/reflection-common": "^2.2",
  1637. "phpdocumentor/type-resolver": "^1.3",
  1638. "webmozart/assert": "^1.9.1"
  1639. },
  1640. "require-dev": {
  1641. "mockery/mockery": "~1.3.2"
  1642. },
  1643. "type": "library",
  1644. "extra": {
  1645. "branch-alias": {
  1646. "dev-master": "5.x-dev"
  1647. }
  1648. },
  1649. "autoload": {
  1650. "psr-4": {
  1651. "phpDocumentor\\Reflection\\": "src"
  1652. }
  1653. },
  1654. "notification-url": "https://packagist.org/downloads/",
  1655. "license": [
  1656. "MIT"
  1657. ],
  1658. "authors": [
  1659. {
  1660. "name": "Mike van Riel",
  1661. "email": "me@mikevanriel.com"
  1662. },
  1663. {
  1664. "name": "Jaap van Otterdijk",
  1665. "email": "account@ijaap.nl"
  1666. }
  1667. ],
  1668. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  1669. "support": {
  1670. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  1671. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/master"
  1672. },
  1673. "time": "2020-09-03T19:13:55+00:00"
  1674. },
  1675. {
  1676. "name": "phpdocumentor/type-resolver",
  1677. "version": "1.4.0",
  1678. "source": {
  1679. "type": "git",
  1680. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  1681. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0"
  1682. },
  1683. "dist": {
  1684. "type": "zip",
  1685. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  1686. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  1687. "shasum": ""
  1688. },
  1689. "require": {
  1690. "php": "^7.2 || ^8.0",
  1691. "phpdocumentor/reflection-common": "^2.0"
  1692. },
  1693. "require-dev": {
  1694. "ext-tokenizer": "*"
  1695. },
  1696. "type": "library",
  1697. "extra": {
  1698. "branch-alias": {
  1699. "dev-1.x": "1.x-dev"
  1700. }
  1701. },
  1702. "autoload": {
  1703. "psr-4": {
  1704. "phpDocumentor\\Reflection\\": "src"
  1705. }
  1706. },
  1707. "notification-url": "https://packagist.org/downloads/",
  1708. "license": [
  1709. "MIT"
  1710. ],
  1711. "authors": [
  1712. {
  1713. "name": "Mike van Riel",
  1714. "email": "me@mikevanriel.com"
  1715. }
  1716. ],
  1717. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  1718. "support": {
  1719. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  1720. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.4.0"
  1721. },
  1722. "time": "2020-09-17T18:55:26+00:00"
  1723. },
  1724. {
  1725. "name": "phpspec/prophecy",
  1726. "version": "1.12.2",
  1727. "source": {
  1728. "type": "git",
  1729. "url": "https://github.com/phpspec/prophecy.git",
  1730. "reference": "245710e971a030f42e08f4912863805570f23d39"
  1731. },
  1732. "dist": {
  1733. "type": "zip",
  1734. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/245710e971a030f42e08f4912863805570f23d39",
  1735. "reference": "245710e971a030f42e08f4912863805570f23d39",
  1736. "shasum": ""
  1737. },
  1738. "require": {
  1739. "doctrine/instantiator": "^1.2",
  1740. "php": "^7.2 || ~8.0, <8.1",
  1741. "phpdocumentor/reflection-docblock": "^5.2",
  1742. "sebastian/comparator": "^3.0 || ^4.0",
  1743. "sebastian/recursion-context": "^3.0 || ^4.0"
  1744. },
  1745. "require-dev": {
  1746. "phpspec/phpspec": "^6.0",
  1747. "phpunit/phpunit": "^8.0 || ^9.0"
  1748. },
  1749. "type": "library",
  1750. "extra": {
  1751. "branch-alias": {
  1752. "dev-master": "1.11.x-dev"
  1753. }
  1754. },
  1755. "autoload": {
  1756. "psr-4": {
  1757. "Prophecy\\": "src/Prophecy"
  1758. }
  1759. },
  1760. "notification-url": "https://packagist.org/downloads/",
  1761. "license": [
  1762. "MIT"
  1763. ],
  1764. "authors": [
  1765. {
  1766. "name": "Konstantin Kudryashov",
  1767. "email": "ever.zet@gmail.com",
  1768. "homepage": "http://everzet.com"
  1769. },
  1770. {
  1771. "name": "Marcello Duarte",
  1772. "email": "marcello.duarte@gmail.com"
  1773. }
  1774. ],
  1775. "description": "Highly opinionated mocking framework for PHP 5.3+",
  1776. "homepage": "https://github.com/phpspec/prophecy",
  1777. "keywords": [
  1778. "Double",
  1779. "Dummy",
  1780. "fake",
  1781. "mock",
  1782. "spy",
  1783. "stub"
  1784. ],
  1785. "support": {
  1786. "issues": "https://github.com/phpspec/prophecy/issues",
  1787. "source": "https://github.com/phpspec/prophecy/tree/1.12.2"
  1788. },
  1789. "time": "2020-12-19T10:15:11+00:00"
  1790. },
  1791. {
  1792. "name": "phpunit/php-code-coverage",
  1793. "version": "7.0.14",
  1794. "source": {
  1795. "type": "git",
  1796. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  1797. "reference": "bb7c9a210c72e4709cdde67f8b7362f672f2225c"
  1798. },
  1799. "dist": {
  1800. "type": "zip",
  1801. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/bb7c9a210c72e4709cdde67f8b7362f672f2225c",
  1802. "reference": "bb7c9a210c72e4709cdde67f8b7362f672f2225c",
  1803. "shasum": ""
  1804. },
  1805. "require": {
  1806. "ext-dom": "*",
  1807. "ext-xmlwriter": "*",
  1808. "php": ">=7.2",
  1809. "phpunit/php-file-iterator": "^2.0.2",
  1810. "phpunit/php-text-template": "^1.2.1",
  1811. "phpunit/php-token-stream": "^3.1.1 || ^4.0",
  1812. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  1813. "sebastian/environment": "^4.2.2",
  1814. "sebastian/version": "^2.0.1",
  1815. "theseer/tokenizer": "^1.1.3"
  1816. },
  1817. "require-dev": {
  1818. "phpunit/phpunit": "^8.2.2"
  1819. },
  1820. "suggest": {
  1821. "ext-xdebug": "^2.7.2"
  1822. },
  1823. "type": "library",
  1824. "extra": {
  1825. "branch-alias": {
  1826. "dev-master": "7.0-dev"
  1827. }
  1828. },
  1829. "autoload": {
  1830. "classmap": [
  1831. "src/"
  1832. ]
  1833. },
  1834. "notification-url": "https://packagist.org/downloads/",
  1835. "license": [
  1836. "BSD-3-Clause"
  1837. ],
  1838. "authors": [
  1839. {
  1840. "name": "Sebastian Bergmann",
  1841. "email": "sebastian@phpunit.de",
  1842. "role": "lead"
  1843. }
  1844. ],
  1845. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  1846. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  1847. "keywords": [
  1848. "coverage",
  1849. "testing",
  1850. "xunit"
  1851. ],
  1852. "support": {
  1853. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  1854. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/7.0.14"
  1855. },
  1856. "funding": [
  1857. {
  1858. "url": "https://github.com/sebastianbergmann",
  1859. "type": "github"
  1860. }
  1861. ],
  1862. "time": "2020-12-02T13:39:03+00:00"
  1863. },
  1864. {
  1865. "name": "phpunit/php-file-iterator",
  1866. "version": "2.0.3",
  1867. "source": {
  1868. "type": "git",
  1869. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  1870. "reference": "4b49fb70f067272b659ef0174ff9ca40fdaa6357"
  1871. },
  1872. "dist": {
  1873. "type": "zip",
  1874. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/4b49fb70f067272b659ef0174ff9ca40fdaa6357",
  1875. "reference": "4b49fb70f067272b659ef0174ff9ca40fdaa6357",
  1876. "shasum": ""
  1877. },
  1878. "require": {
  1879. "php": ">=7.1"
  1880. },
  1881. "require-dev": {
  1882. "phpunit/phpunit": "^8.5"
  1883. },
  1884. "type": "library",
  1885. "extra": {
  1886. "branch-alias": {
  1887. "dev-master": "2.0.x-dev"
  1888. }
  1889. },
  1890. "autoload": {
  1891. "classmap": [
  1892. "src/"
  1893. ]
  1894. },
  1895. "notification-url": "https://packagist.org/downloads/",
  1896. "license": [
  1897. "BSD-3-Clause"
  1898. ],
  1899. "authors": [
  1900. {
  1901. "name": "Sebastian Bergmann",
  1902. "email": "sebastian@phpunit.de",
  1903. "role": "lead"
  1904. }
  1905. ],
  1906. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  1907. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  1908. "keywords": [
  1909. "filesystem",
  1910. "iterator"
  1911. ],
  1912. "support": {
  1913. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  1914. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/2.0.3"
  1915. },
  1916. "funding": [
  1917. {
  1918. "url": "https://github.com/sebastianbergmann",
  1919. "type": "github"
  1920. }
  1921. ],
  1922. "time": "2020-11-30T08:25:21+00:00"
  1923. },
  1924. {
  1925. "name": "phpunit/php-text-template",
  1926. "version": "1.2.1",
  1927. "source": {
  1928. "type": "git",
  1929. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  1930. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  1931. },
  1932. "dist": {
  1933. "type": "zip",
  1934. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  1935. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  1936. "shasum": ""
  1937. },
  1938. "require": {
  1939. "php": ">=5.3.3"
  1940. },
  1941. "type": "library",
  1942. "autoload": {
  1943. "classmap": [
  1944. "src/"
  1945. ]
  1946. },
  1947. "notification-url": "https://packagist.org/downloads/",
  1948. "license": [
  1949. "BSD-3-Clause"
  1950. ],
  1951. "authors": [
  1952. {
  1953. "name": "Sebastian Bergmann",
  1954. "email": "sebastian@phpunit.de",
  1955. "role": "lead"
  1956. }
  1957. ],
  1958. "description": "Simple template engine.",
  1959. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  1960. "keywords": [
  1961. "template"
  1962. ],
  1963. "support": {
  1964. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  1965. "source": "https://github.com/sebastianbergmann/php-text-template/tree/1.2.1"
  1966. },
  1967. "time": "2015-06-21T13:50:34+00:00"
  1968. },
  1969. {
  1970. "name": "phpunit/php-timer",
  1971. "version": "2.1.3",
  1972. "source": {
  1973. "type": "git",
  1974. "url": "https://github.com/sebastianbergmann/php-timer.git",
  1975. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662"
  1976. },
  1977. "dist": {
  1978. "type": "zip",
  1979. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  1980. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  1981. "shasum": ""
  1982. },
  1983. "require": {
  1984. "php": ">=7.1"
  1985. },
  1986. "require-dev": {
  1987. "phpunit/phpunit": "^8.5"
  1988. },
  1989. "type": "library",
  1990. "extra": {
  1991. "branch-alias": {
  1992. "dev-master": "2.1-dev"
  1993. }
  1994. },
  1995. "autoload": {
  1996. "classmap": [
  1997. "src/"
  1998. ]
  1999. },
  2000. "notification-url": "https://packagist.org/downloads/",
  2001. "license": [
  2002. "BSD-3-Clause"
  2003. ],
  2004. "authors": [
  2005. {
  2006. "name": "Sebastian Bergmann",
  2007. "email": "sebastian@phpunit.de",
  2008. "role": "lead"
  2009. }
  2010. ],
  2011. "description": "Utility class for timing",
  2012. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  2013. "keywords": [
  2014. "timer"
  2015. ],
  2016. "support": {
  2017. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  2018. "source": "https://github.com/sebastianbergmann/php-timer/tree/2.1.3"
  2019. },
  2020. "funding": [
  2021. {
  2022. "url": "https://github.com/sebastianbergmann",
  2023. "type": "github"
  2024. }
  2025. ],
  2026. "time": "2020-11-30T08:20:02+00:00"
  2027. },
  2028. {
  2029. "name": "phpunit/php-token-stream",
  2030. "version": "3.1.2",
  2031. "source": {
  2032. "type": "git",
  2033. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  2034. "reference": "472b687829041c24b25f475e14c2f38a09edf1c2"
  2035. },
  2036. "dist": {
  2037. "type": "zip",
  2038. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/472b687829041c24b25f475e14c2f38a09edf1c2",
  2039. "reference": "472b687829041c24b25f475e14c2f38a09edf1c2",
  2040. "shasum": ""
  2041. },
  2042. "require": {
  2043. "ext-tokenizer": "*",
  2044. "php": ">=7.1"
  2045. },
  2046. "require-dev": {
  2047. "phpunit/phpunit": "^7.0"
  2048. },
  2049. "type": "library",
  2050. "extra": {
  2051. "branch-alias": {
  2052. "dev-master": "3.1-dev"
  2053. }
  2054. },
  2055. "autoload": {
  2056. "classmap": [
  2057. "src/"
  2058. ]
  2059. },
  2060. "notification-url": "https://packagist.org/downloads/",
  2061. "license": [
  2062. "BSD-3-Clause"
  2063. ],
  2064. "authors": [
  2065. {
  2066. "name": "Sebastian Bergmann",
  2067. "email": "sebastian@phpunit.de"
  2068. }
  2069. ],
  2070. "description": "Wrapper around PHP's tokenizer extension.",
  2071. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  2072. "keywords": [
  2073. "tokenizer"
  2074. ],
  2075. "support": {
  2076. "issues": "https://github.com/sebastianbergmann/php-token-stream/issues",
  2077. "source": "https://github.com/sebastianbergmann/php-token-stream/tree/3.1.2"
  2078. },
  2079. "funding": [
  2080. {
  2081. "url": "https://github.com/sebastianbergmann",
  2082. "type": "github"
  2083. }
  2084. ],
  2085. "abandoned": true,
  2086. "time": "2020-11-30T08:38:46+00:00"
  2087. },
  2088. {
  2089. "name": "phpunit/phpunit",
  2090. "version": "8.5.14",
  2091. "source": {
  2092. "type": "git",
  2093. "url": "https://github.com/sebastianbergmann/phpunit.git",
  2094. "reference": "c25f79895d27b6ecd5abfa63de1606b786a461a3"
  2095. },
  2096. "dist": {
  2097. "type": "zip",
  2098. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/c25f79895d27b6ecd5abfa63de1606b786a461a3",
  2099. "reference": "c25f79895d27b6ecd5abfa63de1606b786a461a3",
  2100. "shasum": ""
  2101. },
  2102. "require": {
  2103. "doctrine/instantiator": "^1.3.1",
  2104. "ext-dom": "*",
  2105. "ext-json": "*",
  2106. "ext-libxml": "*",
  2107. "ext-mbstring": "*",
  2108. "ext-xml": "*",
  2109. "ext-xmlwriter": "*",
  2110. "myclabs/deep-copy": "^1.10.0",
  2111. "phar-io/manifest": "^2.0.1",
  2112. "phar-io/version": "^3.0.2",
  2113. "php": ">=7.2",
  2114. "phpspec/prophecy": "^1.10.3",
  2115. "phpunit/php-code-coverage": "^7.0.12",
  2116. "phpunit/php-file-iterator": "^2.0.2",
  2117. "phpunit/php-text-template": "^1.2.1",
  2118. "phpunit/php-timer": "^2.1.2",
  2119. "sebastian/comparator": "^3.0.2",
  2120. "sebastian/diff": "^3.0.2",
  2121. "sebastian/environment": "^4.2.3",
  2122. "sebastian/exporter": "^3.1.2",
  2123. "sebastian/global-state": "^3.0.0",
  2124. "sebastian/object-enumerator": "^3.0.3",
  2125. "sebastian/resource-operations": "^2.0.1",
  2126. "sebastian/type": "^1.1.3",
  2127. "sebastian/version": "^2.0.1"
  2128. },
  2129. "require-dev": {
  2130. "ext-pdo": "*"
  2131. },
  2132. "suggest": {
  2133. "ext-soap": "*",
  2134. "ext-xdebug": "*",
  2135. "phpunit/php-invoker": "^2.0.0"
  2136. },
  2137. "bin": [
  2138. "phpunit"
  2139. ],
  2140. "type": "library",
  2141. "extra": {
  2142. "branch-alias": {
  2143. "dev-master": "8.5-dev"
  2144. }
  2145. },
  2146. "autoload": {
  2147. "classmap": [
  2148. "src/"
  2149. ]
  2150. },
  2151. "notification-url": "https://packagist.org/downloads/",
  2152. "license": [
  2153. "BSD-3-Clause"
  2154. ],
  2155. "authors": [
  2156. {
  2157. "name": "Sebastian Bergmann",
  2158. "email": "sebastian@phpunit.de",
  2159. "role": "lead"
  2160. }
  2161. ],
  2162. "description": "The PHP Unit Testing framework.",
  2163. "homepage": "https://phpunit.de/",
  2164. "keywords": [
  2165. "phpunit",
  2166. "testing",
  2167. "xunit"
  2168. ],
  2169. "support": {
  2170. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  2171. "source": "https://github.com/sebastianbergmann/phpunit/tree/8.5.14"
  2172. },
  2173. "funding": [
  2174. {
  2175. "url": "https://phpunit.de/donate.html",
  2176. "type": "custom"
  2177. },
  2178. {
  2179. "url": "https://github.com/sebastianbergmann",
  2180. "type": "github"
  2181. }
  2182. ],
  2183. "time": "2021-01-17T07:37:30+00:00"
  2184. },
  2185. {
  2186. "name": "psr/container",
  2187. "version": "1.0.0",
  2188. "source": {
  2189. "type": "git",
  2190. "url": "https://github.com/php-fig/container.git",
  2191. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  2192. },
  2193. "dist": {
  2194. "type": "zip",
  2195. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  2196. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  2197. "shasum": ""
  2198. },
  2199. "require": {
  2200. "php": ">=5.3.0"
  2201. },
  2202. "type": "library",
  2203. "extra": {
  2204. "branch-alias": {
  2205. "dev-master": "1.0.x-dev"
  2206. }
  2207. },
  2208. "autoload": {
  2209. "psr-4": {
  2210. "Psr\\Container\\": "src/"
  2211. }
  2212. },
  2213. "notification-url": "https://packagist.org/downloads/",
  2214. "license": [
  2215. "MIT"
  2216. ],
  2217. "authors": [
  2218. {
  2219. "name": "PHP-FIG",
  2220. "homepage": "http://www.php-fig.org/"
  2221. }
  2222. ],
  2223. "description": "Common Container Interface (PHP FIG PSR-11)",
  2224. "homepage": "https://github.com/php-fig/container",
  2225. "keywords": [
  2226. "PSR-11",
  2227. "container",
  2228. "container-interface",
  2229. "container-interop",
  2230. "psr"
  2231. ],
  2232. "support": {
  2233. "issues": "https://github.com/php-fig/container/issues",
  2234. "source": "https://github.com/php-fig/container/tree/master"
  2235. },
  2236. "time": "2017-02-14T16:28:37+00:00"
  2237. },
  2238. {
  2239. "name": "psr/http-client",
  2240. "version": "1.0.1",
  2241. "source": {
  2242. "type": "git",
  2243. "url": "https://github.com/php-fig/http-client.git",
  2244. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  2245. },
  2246. "dist": {
  2247. "type": "zip",
  2248. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  2249. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  2250. "shasum": ""
  2251. },
  2252. "require": {
  2253. "php": "^7.0 || ^8.0",
  2254. "psr/http-message": "^1.0"
  2255. },
  2256. "type": "library",
  2257. "extra": {
  2258. "branch-alias": {
  2259. "dev-master": "1.0.x-dev"
  2260. }
  2261. },
  2262. "autoload": {
  2263. "psr-4": {
  2264. "Psr\\Http\\Client\\": "src/"
  2265. }
  2266. },
  2267. "notification-url": "https://packagist.org/downloads/",
  2268. "license": [
  2269. "MIT"
  2270. ],
  2271. "authors": [
  2272. {
  2273. "name": "PHP-FIG",
  2274. "homepage": "http://www.php-fig.org/"
  2275. }
  2276. ],
  2277. "description": "Common interface for HTTP clients",
  2278. "homepage": "https://github.com/php-fig/http-client",
  2279. "keywords": [
  2280. "http",
  2281. "http-client",
  2282. "psr",
  2283. "psr-18"
  2284. ],
  2285. "support": {
  2286. "source": "https://github.com/php-fig/http-client/tree/master"
  2287. },
  2288. "time": "2020-06-29T06:28:15+00:00"
  2289. },
  2290. {
  2291. "name": "psr/http-message",
  2292. "version": "1.0.1",
  2293. "source": {
  2294. "type": "git",
  2295. "url": "https://github.com/php-fig/http-message.git",
  2296. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  2297. },
  2298. "dist": {
  2299. "type": "zip",
  2300. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  2301. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  2302. "shasum": ""
  2303. },
  2304. "require": {
  2305. "php": ">=5.3.0"
  2306. },
  2307. "type": "library",
  2308. "extra": {
  2309. "branch-alias": {
  2310. "dev-master": "1.0.x-dev"
  2311. }
  2312. },
  2313. "autoload": {
  2314. "psr-4": {
  2315. "Psr\\Http\\Message\\": "src/"
  2316. }
  2317. },
  2318. "notification-url": "https://packagist.org/downloads/",
  2319. "license": [
  2320. "MIT"
  2321. ],
  2322. "authors": [
  2323. {
  2324. "name": "PHP-FIG",
  2325. "homepage": "http://www.php-fig.org/"
  2326. }
  2327. ],
  2328. "description": "Common interface for HTTP messages",
  2329. "homepage": "https://github.com/php-fig/http-message",
  2330. "keywords": [
  2331. "http",
  2332. "http-message",
  2333. "psr",
  2334. "psr-7",
  2335. "request",
  2336. "response"
  2337. ],
  2338. "support": {
  2339. "source": "https://github.com/php-fig/http-message/tree/master"
  2340. },
  2341. "time": "2016-08-06T14:39:51+00:00"
  2342. },
  2343. {
  2344. "name": "psr/log",
  2345. "version": "1.1.3",
  2346. "source": {
  2347. "type": "git",
  2348. "url": "https://github.com/php-fig/log.git",
  2349. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  2350. },
  2351. "dist": {
  2352. "type": "zip",
  2353. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  2354. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  2355. "shasum": ""
  2356. },
  2357. "require": {
  2358. "php": ">=5.3.0"
  2359. },
  2360. "type": "library",
  2361. "extra": {
  2362. "branch-alias": {
  2363. "dev-master": "1.1.x-dev"
  2364. }
  2365. },
  2366. "autoload": {
  2367. "psr-4": {
  2368. "Psr\\Log\\": "Psr/Log/"
  2369. }
  2370. },
  2371. "notification-url": "https://packagist.org/downloads/",
  2372. "license": [
  2373. "MIT"
  2374. ],
  2375. "authors": [
  2376. {
  2377. "name": "PHP-FIG",
  2378. "homepage": "http://www.php-fig.org/"
  2379. }
  2380. ],
  2381. "description": "Common interface for logging libraries",
  2382. "homepage": "https://github.com/php-fig/log",
  2383. "keywords": [
  2384. "log",
  2385. "psr",
  2386. "psr-3"
  2387. ],
  2388. "support": {
  2389. "source": "https://github.com/php-fig/log/tree/1.1.3"
  2390. },
  2391. "time": "2020-03-23T09:12:05+00:00"
  2392. },
  2393. {
  2394. "name": "ralouphie/getallheaders",
  2395. "version": "3.0.3",
  2396. "source": {
  2397. "type": "git",
  2398. "url": "https://github.com/ralouphie/getallheaders.git",
  2399. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  2400. },
  2401. "dist": {
  2402. "type": "zip",
  2403. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  2404. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  2405. "shasum": ""
  2406. },
  2407. "require": {
  2408. "php": ">=5.6"
  2409. },
  2410. "require-dev": {
  2411. "php-coveralls/php-coveralls": "^2.1",
  2412. "phpunit/phpunit": "^5 || ^6.5"
  2413. },
  2414. "type": "library",
  2415. "autoload": {
  2416. "files": [
  2417. "src/getallheaders.php"
  2418. ]
  2419. },
  2420. "notification-url": "https://packagist.org/downloads/",
  2421. "license": [
  2422. "MIT"
  2423. ],
  2424. "authors": [
  2425. {
  2426. "name": "Ralph Khattar",
  2427. "email": "ralph.khattar@gmail.com"
  2428. }
  2429. ],
  2430. "description": "A polyfill for getallheaders.",
  2431. "support": {
  2432. "issues": "https://github.com/ralouphie/getallheaders/issues",
  2433. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  2434. },
  2435. "time": "2019-03-08T08:55:37+00:00"
  2436. },
  2437. {
  2438. "name": "sebastian/code-unit-reverse-lookup",
  2439. "version": "1.0.2",
  2440. "source": {
  2441. "type": "git",
  2442. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  2443. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619"
  2444. },
  2445. "dist": {
  2446. "type": "zip",
  2447. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  2448. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  2449. "shasum": ""
  2450. },
  2451. "require": {
  2452. "php": ">=5.6"
  2453. },
  2454. "require-dev": {
  2455. "phpunit/phpunit": "^8.5"
  2456. },
  2457. "type": "library",
  2458. "extra": {
  2459. "branch-alias": {
  2460. "dev-master": "1.0.x-dev"
  2461. }
  2462. },
  2463. "autoload": {
  2464. "classmap": [
  2465. "src/"
  2466. ]
  2467. },
  2468. "notification-url": "https://packagist.org/downloads/",
  2469. "license": [
  2470. "BSD-3-Clause"
  2471. ],
  2472. "authors": [
  2473. {
  2474. "name": "Sebastian Bergmann",
  2475. "email": "sebastian@phpunit.de"
  2476. }
  2477. ],
  2478. "description": "Looks up which function or method a line of code belongs to",
  2479. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  2480. "support": {
  2481. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  2482. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/1.0.2"
  2483. },
  2484. "funding": [
  2485. {
  2486. "url": "https://github.com/sebastianbergmann",
  2487. "type": "github"
  2488. }
  2489. ],
  2490. "time": "2020-11-30T08:15:22+00:00"
  2491. },
  2492. {
  2493. "name": "sebastian/comparator",
  2494. "version": "3.0.3",
  2495. "source": {
  2496. "type": "git",
  2497. "url": "https://github.com/sebastianbergmann/comparator.git",
  2498. "reference": "1071dfcef776a57013124ff35e1fc41ccd294758"
  2499. },
  2500. "dist": {
  2501. "type": "zip",
  2502. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/1071dfcef776a57013124ff35e1fc41ccd294758",
  2503. "reference": "1071dfcef776a57013124ff35e1fc41ccd294758",
  2504. "shasum": ""
  2505. },
  2506. "require": {
  2507. "php": ">=7.1",
  2508. "sebastian/diff": "^3.0",
  2509. "sebastian/exporter": "^3.1"
  2510. },
  2511. "require-dev": {
  2512. "phpunit/phpunit": "^8.5"
  2513. },
  2514. "type": "library",
  2515. "extra": {
  2516. "branch-alias": {
  2517. "dev-master": "3.0-dev"
  2518. }
  2519. },
  2520. "autoload": {
  2521. "classmap": [
  2522. "src/"
  2523. ]
  2524. },
  2525. "notification-url": "https://packagist.org/downloads/",
  2526. "license": [
  2527. "BSD-3-Clause"
  2528. ],
  2529. "authors": [
  2530. {
  2531. "name": "Sebastian Bergmann",
  2532. "email": "sebastian@phpunit.de"
  2533. },
  2534. {
  2535. "name": "Jeff Welch",
  2536. "email": "whatthejeff@gmail.com"
  2537. },
  2538. {
  2539. "name": "Volker Dusch",
  2540. "email": "github@wallbash.com"
  2541. },
  2542. {
  2543. "name": "Bernhard Schussek",
  2544. "email": "bschussek@2bepublished.at"
  2545. }
  2546. ],
  2547. "description": "Provides the functionality to compare PHP values for equality",
  2548. "homepage": "https://github.com/sebastianbergmann/comparator",
  2549. "keywords": [
  2550. "comparator",
  2551. "compare",
  2552. "equality"
  2553. ],
  2554. "support": {
  2555. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  2556. "source": "https://github.com/sebastianbergmann/comparator/tree/3.0.3"
  2557. },
  2558. "funding": [
  2559. {
  2560. "url": "https://github.com/sebastianbergmann",
  2561. "type": "github"
  2562. }
  2563. ],
  2564. "time": "2020-11-30T08:04:30+00:00"
  2565. },
  2566. {
  2567. "name": "sebastian/diff",
  2568. "version": "3.0.3",
  2569. "source": {
  2570. "type": "git",
  2571. "url": "https://github.com/sebastianbergmann/diff.git",
  2572. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211"
  2573. },
  2574. "dist": {
  2575. "type": "zip",
  2576. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  2577. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  2578. "shasum": ""
  2579. },
  2580. "require": {
  2581. "php": ">=7.1"
  2582. },
  2583. "require-dev": {
  2584. "phpunit/phpunit": "^7.5 || ^8.0",
  2585. "symfony/process": "^2 || ^3.3 || ^4"
  2586. },
  2587. "type": "library",
  2588. "extra": {
  2589. "branch-alias": {
  2590. "dev-master": "3.0-dev"
  2591. }
  2592. },
  2593. "autoload": {
  2594. "classmap": [
  2595. "src/"
  2596. ]
  2597. },
  2598. "notification-url": "https://packagist.org/downloads/",
  2599. "license": [
  2600. "BSD-3-Clause"
  2601. ],
  2602. "authors": [
  2603. {
  2604. "name": "Sebastian Bergmann",
  2605. "email": "sebastian@phpunit.de"
  2606. },
  2607. {
  2608. "name": "Kore Nordmann",
  2609. "email": "mail@kore-nordmann.de"
  2610. }
  2611. ],
  2612. "description": "Diff implementation",
  2613. "homepage": "https://github.com/sebastianbergmann/diff",
  2614. "keywords": [
  2615. "diff",
  2616. "udiff",
  2617. "unidiff",
  2618. "unified diff"
  2619. ],
  2620. "support": {
  2621. "issues": "https://github.com/sebastianbergmann/diff/issues",
  2622. "source": "https://github.com/sebastianbergmann/diff/tree/3.0.3"
  2623. },
  2624. "funding": [
  2625. {
  2626. "url": "https://github.com/sebastianbergmann",
  2627. "type": "github"
  2628. }
  2629. ],
  2630. "time": "2020-11-30T07:59:04+00:00"
  2631. },
  2632. {
  2633. "name": "sebastian/environment",
  2634. "version": "4.2.4",
  2635. "source": {
  2636. "type": "git",
  2637. "url": "https://github.com/sebastianbergmann/environment.git",
  2638. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0"
  2639. },
  2640. "dist": {
  2641. "type": "zip",
  2642. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  2643. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  2644. "shasum": ""
  2645. },
  2646. "require": {
  2647. "php": ">=7.1"
  2648. },
  2649. "require-dev": {
  2650. "phpunit/phpunit": "^7.5"
  2651. },
  2652. "suggest": {
  2653. "ext-posix": "*"
  2654. },
  2655. "type": "library",
  2656. "extra": {
  2657. "branch-alias": {
  2658. "dev-master": "4.2-dev"
  2659. }
  2660. },
  2661. "autoload": {
  2662. "classmap": [
  2663. "src/"
  2664. ]
  2665. },
  2666. "notification-url": "https://packagist.org/downloads/",
  2667. "license": [
  2668. "BSD-3-Clause"
  2669. ],
  2670. "authors": [
  2671. {
  2672. "name": "Sebastian Bergmann",
  2673. "email": "sebastian@phpunit.de"
  2674. }
  2675. ],
  2676. "description": "Provides functionality to handle HHVM/PHP environments",
  2677. "homepage": "http://www.github.com/sebastianbergmann/environment",
  2678. "keywords": [
  2679. "Xdebug",
  2680. "environment",
  2681. "hhvm"
  2682. ],
  2683. "support": {
  2684. "issues": "https://github.com/sebastianbergmann/environment/issues",
  2685. "source": "https://github.com/sebastianbergmann/environment/tree/4.2.4"
  2686. },
  2687. "funding": [
  2688. {
  2689. "url": "https://github.com/sebastianbergmann",
  2690. "type": "github"
  2691. }
  2692. ],
  2693. "time": "2020-11-30T07:53:42+00:00"
  2694. },
  2695. {
  2696. "name": "sebastian/exporter",
  2697. "version": "3.1.3",
  2698. "source": {
  2699. "type": "git",
  2700. "url": "https://github.com/sebastianbergmann/exporter.git",
  2701. "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e"
  2702. },
  2703. "dist": {
  2704. "type": "zip",
  2705. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/6b853149eab67d4da22291d36f5b0631c0fd856e",
  2706. "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e",
  2707. "shasum": ""
  2708. },
  2709. "require": {
  2710. "php": ">=7.0",
  2711. "sebastian/recursion-context": "^3.0"
  2712. },
  2713. "require-dev": {
  2714. "ext-mbstring": "*",
  2715. "phpunit/phpunit": "^6.0"
  2716. },
  2717. "type": "library",
  2718. "extra": {
  2719. "branch-alias": {
  2720. "dev-master": "3.1.x-dev"
  2721. }
  2722. },
  2723. "autoload": {
  2724. "classmap": [
  2725. "src/"
  2726. ]
  2727. },
  2728. "notification-url": "https://packagist.org/downloads/",
  2729. "license": [
  2730. "BSD-3-Clause"
  2731. ],
  2732. "authors": [
  2733. {
  2734. "name": "Sebastian Bergmann",
  2735. "email": "sebastian@phpunit.de"
  2736. },
  2737. {
  2738. "name": "Jeff Welch",
  2739. "email": "whatthejeff@gmail.com"
  2740. },
  2741. {
  2742. "name": "Volker Dusch",
  2743. "email": "github@wallbash.com"
  2744. },
  2745. {
  2746. "name": "Adam Harvey",
  2747. "email": "aharvey@php.net"
  2748. },
  2749. {
  2750. "name": "Bernhard Schussek",
  2751. "email": "bschussek@gmail.com"
  2752. }
  2753. ],
  2754. "description": "Provides the functionality to export PHP variables for visualization",
  2755. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  2756. "keywords": [
  2757. "export",
  2758. "exporter"
  2759. ],
  2760. "support": {
  2761. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  2762. "source": "https://github.com/sebastianbergmann/exporter/tree/3.1.3"
  2763. },
  2764. "funding": [
  2765. {
  2766. "url": "https://github.com/sebastianbergmann",
  2767. "type": "github"
  2768. }
  2769. ],
  2770. "time": "2020-11-30T07:47:53+00:00"
  2771. },
  2772. {
  2773. "name": "sebastian/global-state",
  2774. "version": "3.0.1",
  2775. "source": {
  2776. "type": "git",
  2777. "url": "https://github.com/sebastianbergmann/global-state.git",
  2778. "reference": "474fb9edb7ab891665d3bfc6317f42a0a150454b"
  2779. },
  2780. "dist": {
  2781. "type": "zip",
  2782. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/474fb9edb7ab891665d3bfc6317f42a0a150454b",
  2783. "reference": "474fb9edb7ab891665d3bfc6317f42a0a150454b",
  2784. "shasum": ""
  2785. },
  2786. "require": {
  2787. "php": ">=7.2",
  2788. "sebastian/object-reflector": "^1.1.1",
  2789. "sebastian/recursion-context": "^3.0"
  2790. },
  2791. "require-dev": {
  2792. "ext-dom": "*",
  2793. "phpunit/phpunit": "^8.0"
  2794. },
  2795. "suggest": {
  2796. "ext-uopz": "*"
  2797. },
  2798. "type": "library",
  2799. "extra": {
  2800. "branch-alias": {
  2801. "dev-master": "3.0-dev"
  2802. }
  2803. },
  2804. "autoload": {
  2805. "classmap": [
  2806. "src/"
  2807. ]
  2808. },
  2809. "notification-url": "https://packagist.org/downloads/",
  2810. "license": [
  2811. "BSD-3-Clause"
  2812. ],
  2813. "authors": [
  2814. {
  2815. "name": "Sebastian Bergmann",
  2816. "email": "sebastian@phpunit.de"
  2817. }
  2818. ],
  2819. "description": "Snapshotting of global state",
  2820. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  2821. "keywords": [
  2822. "global state"
  2823. ],
  2824. "support": {
  2825. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  2826. "source": "https://github.com/sebastianbergmann/global-state/tree/3.0.1"
  2827. },
  2828. "funding": [
  2829. {
  2830. "url": "https://github.com/sebastianbergmann",
  2831. "type": "github"
  2832. }
  2833. ],
  2834. "time": "2020-11-30T07:43:24+00:00"
  2835. },
  2836. {
  2837. "name": "sebastian/object-enumerator",
  2838. "version": "3.0.4",
  2839. "source": {
  2840. "type": "git",
  2841. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  2842. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2"
  2843. },
  2844. "dist": {
  2845. "type": "zip",
  2846. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  2847. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  2848. "shasum": ""
  2849. },
  2850. "require": {
  2851. "php": ">=7.0",
  2852. "sebastian/object-reflector": "^1.1.1",
  2853. "sebastian/recursion-context": "^3.0"
  2854. },
  2855. "require-dev": {
  2856. "phpunit/phpunit": "^6.0"
  2857. },
  2858. "type": "library",
  2859. "extra": {
  2860. "branch-alias": {
  2861. "dev-master": "3.0.x-dev"
  2862. }
  2863. },
  2864. "autoload": {
  2865. "classmap": [
  2866. "src/"
  2867. ]
  2868. },
  2869. "notification-url": "https://packagist.org/downloads/",
  2870. "license": [
  2871. "BSD-3-Clause"
  2872. ],
  2873. "authors": [
  2874. {
  2875. "name": "Sebastian Bergmann",
  2876. "email": "sebastian@phpunit.de"
  2877. }
  2878. ],
  2879. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  2880. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  2881. "support": {
  2882. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  2883. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/3.0.4"
  2884. },
  2885. "funding": [
  2886. {
  2887. "url": "https://github.com/sebastianbergmann",
  2888. "type": "github"
  2889. }
  2890. ],
  2891. "time": "2020-11-30T07:40:27+00:00"
  2892. },
  2893. {
  2894. "name": "sebastian/object-reflector",
  2895. "version": "1.1.2",
  2896. "source": {
  2897. "type": "git",
  2898. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  2899. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d"
  2900. },
  2901. "dist": {
  2902. "type": "zip",
  2903. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  2904. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  2905. "shasum": ""
  2906. },
  2907. "require": {
  2908. "php": ">=7.0"
  2909. },
  2910. "require-dev": {
  2911. "phpunit/phpunit": "^6.0"
  2912. },
  2913. "type": "library",
  2914. "extra": {
  2915. "branch-alias": {
  2916. "dev-master": "1.1-dev"
  2917. }
  2918. },
  2919. "autoload": {
  2920. "classmap": [
  2921. "src/"
  2922. ]
  2923. },
  2924. "notification-url": "https://packagist.org/downloads/",
  2925. "license": [
  2926. "BSD-3-Clause"
  2927. ],
  2928. "authors": [
  2929. {
  2930. "name": "Sebastian Bergmann",
  2931. "email": "sebastian@phpunit.de"
  2932. }
  2933. ],
  2934. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  2935. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  2936. "support": {
  2937. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  2938. "source": "https://github.com/sebastianbergmann/object-reflector/tree/1.1.2"
  2939. },
  2940. "funding": [
  2941. {
  2942. "url": "https://github.com/sebastianbergmann",
  2943. "type": "github"
  2944. }
  2945. ],
  2946. "time": "2020-11-30T07:37:18+00:00"
  2947. },
  2948. {
  2949. "name": "sebastian/recursion-context",
  2950. "version": "3.0.1",
  2951. "source": {
  2952. "type": "git",
  2953. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  2954. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb"
  2955. },
  2956. "dist": {
  2957. "type": "zip",
  2958. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/367dcba38d6e1977be014dc4b22f47a484dac7fb",
  2959. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb",
  2960. "shasum": ""
  2961. },
  2962. "require": {
  2963. "php": ">=7.0"
  2964. },
  2965. "require-dev": {
  2966. "phpunit/phpunit": "^6.0"
  2967. },
  2968. "type": "library",
  2969. "extra": {
  2970. "branch-alias": {
  2971. "dev-master": "3.0.x-dev"
  2972. }
  2973. },
  2974. "autoload": {
  2975. "classmap": [
  2976. "src/"
  2977. ]
  2978. },
  2979. "notification-url": "https://packagist.org/downloads/",
  2980. "license": [
  2981. "BSD-3-Clause"
  2982. ],
  2983. "authors": [
  2984. {
  2985. "name": "Sebastian Bergmann",
  2986. "email": "sebastian@phpunit.de"
  2987. },
  2988. {
  2989. "name": "Jeff Welch",
  2990. "email": "whatthejeff@gmail.com"
  2991. },
  2992. {
  2993. "name": "Adam Harvey",
  2994. "email": "aharvey@php.net"
  2995. }
  2996. ],
  2997. "description": "Provides functionality to recursively process PHP variables",
  2998. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  2999. "support": {
  3000. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  3001. "source": "https://github.com/sebastianbergmann/recursion-context/tree/3.0.1"
  3002. },
  3003. "funding": [
  3004. {
  3005. "url": "https://github.com/sebastianbergmann",
  3006. "type": "github"
  3007. }
  3008. ],
  3009. "time": "2020-11-30T07:34:24+00:00"
  3010. },
  3011. {
  3012. "name": "sebastian/resource-operations",
  3013. "version": "2.0.2",
  3014. "source": {
  3015. "type": "git",
  3016. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  3017. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3"
  3018. },
  3019. "dist": {
  3020. "type": "zip",
  3021. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  3022. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  3023. "shasum": ""
  3024. },
  3025. "require": {
  3026. "php": ">=7.1"
  3027. },
  3028. "type": "library",
  3029. "extra": {
  3030. "branch-alias": {
  3031. "dev-master": "2.0-dev"
  3032. }
  3033. },
  3034. "autoload": {
  3035. "classmap": [
  3036. "src/"
  3037. ]
  3038. },
  3039. "notification-url": "https://packagist.org/downloads/",
  3040. "license": [
  3041. "BSD-3-Clause"
  3042. ],
  3043. "authors": [
  3044. {
  3045. "name": "Sebastian Bergmann",
  3046. "email": "sebastian@phpunit.de"
  3047. }
  3048. ],
  3049. "description": "Provides a list of PHP built-in functions that operate on resources",
  3050. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  3051. "support": {
  3052. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  3053. "source": "https://github.com/sebastianbergmann/resource-operations/tree/2.0.2"
  3054. },
  3055. "funding": [
  3056. {
  3057. "url": "https://github.com/sebastianbergmann",
  3058. "type": "github"
  3059. }
  3060. ],
  3061. "time": "2020-11-30T07:30:19+00:00"
  3062. },
  3063. {
  3064. "name": "sebastian/type",
  3065. "version": "1.1.4",
  3066. "source": {
  3067. "type": "git",
  3068. "url": "https://github.com/sebastianbergmann/type.git",
  3069. "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4"
  3070. },
  3071. "dist": {
  3072. "type": "zip",
  3073. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/0150cfbc4495ed2df3872fb31b26781e4e077eb4",
  3074. "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4",
  3075. "shasum": ""
  3076. },
  3077. "require": {
  3078. "php": ">=7.2"
  3079. },
  3080. "require-dev": {
  3081. "phpunit/phpunit": "^8.2"
  3082. },
  3083. "type": "library",
  3084. "extra": {
  3085. "branch-alias": {
  3086. "dev-master": "1.1-dev"
  3087. }
  3088. },
  3089. "autoload": {
  3090. "classmap": [
  3091. "src/"
  3092. ]
  3093. },
  3094. "notification-url": "https://packagist.org/downloads/",
  3095. "license": [
  3096. "BSD-3-Clause"
  3097. ],
  3098. "authors": [
  3099. {
  3100. "name": "Sebastian Bergmann",
  3101. "email": "sebastian@phpunit.de",
  3102. "role": "lead"
  3103. }
  3104. ],
  3105. "description": "Collection of value objects that represent the types of the PHP type system",
  3106. "homepage": "https://github.com/sebastianbergmann/type",
  3107. "support": {
  3108. "issues": "https://github.com/sebastianbergmann/type/issues",
  3109. "source": "https://github.com/sebastianbergmann/type/tree/1.1.4"
  3110. },
  3111. "funding": [
  3112. {
  3113. "url": "https://github.com/sebastianbergmann",
  3114. "type": "github"
  3115. }
  3116. ],
  3117. "time": "2020-11-30T07:25:11+00:00"
  3118. },
  3119. {
  3120. "name": "sebastian/version",
  3121. "version": "2.0.1",
  3122. "source": {
  3123. "type": "git",
  3124. "url": "https://github.com/sebastianbergmann/version.git",
  3125. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  3126. },
  3127. "dist": {
  3128. "type": "zip",
  3129. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  3130. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  3131. "shasum": ""
  3132. },
  3133. "require": {
  3134. "php": ">=5.6"
  3135. },
  3136. "type": "library",
  3137. "extra": {
  3138. "branch-alias": {
  3139. "dev-master": "2.0.x-dev"
  3140. }
  3141. },
  3142. "autoload": {
  3143. "classmap": [
  3144. "src/"
  3145. ]
  3146. },
  3147. "notification-url": "https://packagist.org/downloads/",
  3148. "license": [
  3149. "BSD-3-Clause"
  3150. ],
  3151. "authors": [
  3152. {
  3153. "name": "Sebastian Bergmann",
  3154. "email": "sebastian@phpunit.de",
  3155. "role": "lead"
  3156. }
  3157. ],
  3158. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  3159. "homepage": "https://github.com/sebastianbergmann/version",
  3160. "support": {
  3161. "issues": "https://github.com/sebastianbergmann/version/issues",
  3162. "source": "https://github.com/sebastianbergmann/version/tree/master"
  3163. },
  3164. "time": "2016-10-03T07:35:21+00:00"
  3165. },
  3166. {
  3167. "name": "symfony/config",
  3168. "version": "v5.2.3",
  3169. "source": {
  3170. "type": "git",
  3171. "url": "https://github.com/symfony/config.git",
  3172. "reference": "50e0e1314a3b2609d32b6a5a0d0fb5342494c4ab"
  3173. },
  3174. "dist": {
  3175. "type": "zip",
  3176. "url": "https://api.github.com/repos/symfony/config/zipball/50e0e1314a3b2609d32b6a5a0d0fb5342494c4ab",
  3177. "reference": "50e0e1314a3b2609d32b6a5a0d0fb5342494c4ab",
  3178. "shasum": ""
  3179. },
  3180. "require": {
  3181. "php": ">=7.2.5",
  3182. "symfony/deprecation-contracts": "^2.1",
  3183. "symfony/filesystem": "^4.4|^5.0",
  3184. "symfony/polyfill-ctype": "~1.8",
  3185. "symfony/polyfill-php80": "^1.15"
  3186. },
  3187. "conflict": {
  3188. "symfony/finder": "<4.4"
  3189. },
  3190. "require-dev": {
  3191. "symfony/event-dispatcher": "^4.4|^5.0",
  3192. "symfony/finder": "^4.4|^5.0",
  3193. "symfony/messenger": "^4.4|^5.0",
  3194. "symfony/service-contracts": "^1.1|^2",
  3195. "symfony/yaml": "^4.4|^5.0"
  3196. },
  3197. "suggest": {
  3198. "symfony/yaml": "To use the yaml reference dumper"
  3199. },
  3200. "type": "library",
  3201. "autoload": {
  3202. "psr-4": {
  3203. "Symfony\\Component\\Config\\": ""
  3204. },
  3205. "exclude-from-classmap": [
  3206. "/Tests/"
  3207. ]
  3208. },
  3209. "notification-url": "https://packagist.org/downloads/",
  3210. "license": [
  3211. "MIT"
  3212. ],
  3213. "authors": [
  3214. {
  3215. "name": "Fabien Potencier",
  3216. "email": "fabien@symfony.com"
  3217. },
  3218. {
  3219. "name": "Symfony Community",
  3220. "homepage": "https://symfony.com/contributors"
  3221. }
  3222. ],
  3223. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  3224. "homepage": "https://symfony.com",
  3225. "support": {
  3226. "source": "https://github.com/symfony/config/tree/v5.2.3"
  3227. },
  3228. "funding": [
  3229. {
  3230. "url": "https://symfony.com/sponsor",
  3231. "type": "custom"
  3232. },
  3233. {
  3234. "url": "https://github.com/fabpot",
  3235. "type": "github"
  3236. },
  3237. {
  3238. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3239. "type": "tidelift"
  3240. }
  3241. ],
  3242. "time": "2021-01-27T10:15:41+00:00"
  3243. },
  3244. {
  3245. "name": "symfony/console",
  3246. "version": "v5.2.3",
  3247. "source": {
  3248. "type": "git",
  3249. "url": "https://github.com/symfony/console.git",
  3250. "reference": "89d4b176d12a2946a1ae4e34906a025b7b6b135a"
  3251. },
  3252. "dist": {
  3253. "type": "zip",
  3254. "url": "https://api.github.com/repos/symfony/console/zipball/89d4b176d12a2946a1ae4e34906a025b7b6b135a",
  3255. "reference": "89d4b176d12a2946a1ae4e34906a025b7b6b135a",
  3256. "shasum": ""
  3257. },
  3258. "require": {
  3259. "php": ">=7.2.5",
  3260. "symfony/polyfill-mbstring": "~1.0",
  3261. "symfony/polyfill-php73": "^1.8",
  3262. "symfony/polyfill-php80": "^1.15",
  3263. "symfony/service-contracts": "^1.1|^2",
  3264. "symfony/string": "^5.1"
  3265. },
  3266. "conflict": {
  3267. "symfony/dependency-injection": "<4.4",
  3268. "symfony/dotenv": "<5.1",
  3269. "symfony/event-dispatcher": "<4.4",
  3270. "symfony/lock": "<4.4",
  3271. "symfony/process": "<4.4"
  3272. },
  3273. "provide": {
  3274. "psr/log-implementation": "1.0"
  3275. },
  3276. "require-dev": {
  3277. "psr/log": "~1.0",
  3278. "symfony/config": "^4.4|^5.0",
  3279. "symfony/dependency-injection": "^4.4|^5.0",
  3280. "symfony/event-dispatcher": "^4.4|^5.0",
  3281. "symfony/lock": "^4.4|^5.0",
  3282. "symfony/process": "^4.4|^5.0",
  3283. "symfony/var-dumper": "^4.4|^5.0"
  3284. },
  3285. "suggest": {
  3286. "psr/log": "For using the console logger",
  3287. "symfony/event-dispatcher": "",
  3288. "symfony/lock": "",
  3289. "symfony/process": ""
  3290. },
  3291. "type": "library",
  3292. "autoload": {
  3293. "psr-4": {
  3294. "Symfony\\Component\\Console\\": ""
  3295. },
  3296. "exclude-from-classmap": [
  3297. "/Tests/"
  3298. ]
  3299. },
  3300. "notification-url": "https://packagist.org/downloads/",
  3301. "license": [
  3302. "MIT"
  3303. ],
  3304. "authors": [
  3305. {
  3306. "name": "Fabien Potencier",
  3307. "email": "fabien@symfony.com"
  3308. },
  3309. {
  3310. "name": "Symfony Community",
  3311. "homepage": "https://symfony.com/contributors"
  3312. }
  3313. ],
  3314. "description": "Eases the creation of beautiful and testable command line interfaces",
  3315. "homepage": "https://symfony.com",
  3316. "keywords": [
  3317. "cli",
  3318. "command line",
  3319. "console",
  3320. "terminal"
  3321. ],
  3322. "support": {
  3323. "source": "https://github.com/symfony/console/tree/v5.2.3"
  3324. },
  3325. "funding": [
  3326. {
  3327. "url": "https://symfony.com/sponsor",
  3328. "type": "custom"
  3329. },
  3330. {
  3331. "url": "https://github.com/fabpot",
  3332. "type": "github"
  3333. },
  3334. {
  3335. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3336. "type": "tidelift"
  3337. }
  3338. ],
  3339. "time": "2021-01-28T22:06:19+00:00"
  3340. },
  3341. {
  3342. "name": "symfony/deprecation-contracts",
  3343. "version": "v2.2.0",
  3344. "source": {
  3345. "type": "git",
  3346. "url": "https://github.com/symfony/deprecation-contracts.git",
  3347. "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665"
  3348. },
  3349. "dist": {
  3350. "type": "zip",
  3351. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5fa56b4074d1ae755beb55617ddafe6f5d78f665",
  3352. "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665",
  3353. "shasum": ""
  3354. },
  3355. "require": {
  3356. "php": ">=7.1"
  3357. },
  3358. "type": "library",
  3359. "extra": {
  3360. "branch-alias": {
  3361. "dev-master": "2.2-dev"
  3362. },
  3363. "thanks": {
  3364. "name": "symfony/contracts",
  3365. "url": "https://github.com/symfony/contracts"
  3366. }
  3367. },
  3368. "autoload": {
  3369. "files": [
  3370. "function.php"
  3371. ]
  3372. },
  3373. "notification-url": "https://packagist.org/downloads/",
  3374. "license": [
  3375. "MIT"
  3376. ],
  3377. "authors": [
  3378. {
  3379. "name": "Nicolas Grekas",
  3380. "email": "p@tchwork.com"
  3381. },
  3382. {
  3383. "name": "Symfony Community",
  3384. "homepage": "https://symfony.com/contributors"
  3385. }
  3386. ],
  3387. "description": "A generic function and convention to trigger deprecation notices",
  3388. "homepage": "https://symfony.com",
  3389. "support": {
  3390. "source": "https://github.com/symfony/deprecation-contracts/tree/master"
  3391. },
  3392. "funding": [
  3393. {
  3394. "url": "https://symfony.com/sponsor",
  3395. "type": "custom"
  3396. },
  3397. {
  3398. "url": "https://github.com/fabpot",
  3399. "type": "github"
  3400. },
  3401. {
  3402. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3403. "type": "tidelift"
  3404. }
  3405. ],
  3406. "time": "2020-09-07T11:33:47+00:00"
  3407. },
  3408. {
  3409. "name": "symfony/filesystem",
  3410. "version": "v5.2.3",
  3411. "source": {
  3412. "type": "git",
  3413. "url": "https://github.com/symfony/filesystem.git",
  3414. "reference": "262d033b57c73e8b59cd6e68a45c528318b15038"
  3415. },
  3416. "dist": {
  3417. "type": "zip",
  3418. "url": "https://api.github.com/repos/symfony/filesystem/zipball/262d033b57c73e8b59cd6e68a45c528318b15038",
  3419. "reference": "262d033b57c73e8b59cd6e68a45c528318b15038",
  3420. "shasum": ""
  3421. },
  3422. "require": {
  3423. "php": ">=7.2.5",
  3424. "symfony/polyfill-ctype": "~1.8"
  3425. },
  3426. "type": "library",
  3427. "autoload": {
  3428. "psr-4": {
  3429. "Symfony\\Component\\Filesystem\\": ""
  3430. },
  3431. "exclude-from-classmap": [
  3432. "/Tests/"
  3433. ]
  3434. },
  3435. "notification-url": "https://packagist.org/downloads/",
  3436. "license": [
  3437. "MIT"
  3438. ],
  3439. "authors": [
  3440. {
  3441. "name": "Fabien Potencier",
  3442. "email": "fabien@symfony.com"
  3443. },
  3444. {
  3445. "name": "Symfony Community",
  3446. "homepage": "https://symfony.com/contributors"
  3447. }
  3448. ],
  3449. "description": "Provides basic utilities for the filesystem",
  3450. "homepage": "https://symfony.com",
  3451. "support": {
  3452. "source": "https://github.com/symfony/filesystem/tree/v5.2.3"
  3453. },
  3454. "funding": [
  3455. {
  3456. "url": "https://symfony.com/sponsor",
  3457. "type": "custom"
  3458. },
  3459. {
  3460. "url": "https://github.com/fabpot",
  3461. "type": "github"
  3462. },
  3463. {
  3464. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3465. "type": "tidelift"
  3466. }
  3467. ],
  3468. "time": "2021-01-27T10:01:46+00:00"
  3469. },
  3470. {
  3471. "name": "symfony/polyfill-ctype",
  3472. "version": "v1.22.1",
  3473. "source": {
  3474. "type": "git",
  3475. "url": "https://github.com/symfony/polyfill-ctype.git",
  3476. "reference": "c6c942b1ac76c82448322025e084cadc56048b4e"
  3477. },
  3478. "dist": {
  3479. "type": "zip",
  3480. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/c6c942b1ac76c82448322025e084cadc56048b4e",
  3481. "reference": "c6c942b1ac76c82448322025e084cadc56048b4e",
  3482. "shasum": ""
  3483. },
  3484. "require": {
  3485. "php": ">=7.1"
  3486. },
  3487. "suggest": {
  3488. "ext-ctype": "For best performance"
  3489. },
  3490. "type": "library",
  3491. "extra": {
  3492. "branch-alias": {
  3493. "dev-main": "1.22-dev"
  3494. },
  3495. "thanks": {
  3496. "name": "symfony/polyfill",
  3497. "url": "https://github.com/symfony/polyfill"
  3498. }
  3499. },
  3500. "autoload": {
  3501. "psr-4": {
  3502. "Symfony\\Polyfill\\Ctype\\": ""
  3503. },
  3504. "files": [
  3505. "bootstrap.php"
  3506. ]
  3507. },
  3508. "notification-url": "https://packagist.org/downloads/",
  3509. "license": [
  3510. "MIT"
  3511. ],
  3512. "authors": [
  3513. {
  3514. "name": "Gert de Pagter",
  3515. "email": "BackEndTea@gmail.com"
  3516. },
  3517. {
  3518. "name": "Symfony Community",
  3519. "homepage": "https://symfony.com/contributors"
  3520. }
  3521. ],
  3522. "description": "Symfony polyfill for ctype functions",
  3523. "homepage": "https://symfony.com",
  3524. "keywords": [
  3525. "compatibility",
  3526. "ctype",
  3527. "polyfill",
  3528. "portable"
  3529. ],
  3530. "support": {
  3531. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.22.1"
  3532. },
  3533. "funding": [
  3534. {
  3535. "url": "https://symfony.com/sponsor",
  3536. "type": "custom"
  3537. },
  3538. {
  3539. "url": "https://github.com/fabpot",
  3540. "type": "github"
  3541. },
  3542. {
  3543. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3544. "type": "tidelift"
  3545. }
  3546. ],
  3547. "time": "2021-01-07T16:49:33+00:00"
  3548. },
  3549. {
  3550. "name": "symfony/polyfill-intl-grapheme",
  3551. "version": "v1.22.1",
  3552. "source": {
  3553. "type": "git",
  3554. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  3555. "reference": "5601e09b69f26c1828b13b6bb87cb07cddba3170"
  3556. },
  3557. "dist": {
  3558. "type": "zip",
  3559. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/5601e09b69f26c1828b13b6bb87cb07cddba3170",
  3560. "reference": "5601e09b69f26c1828b13b6bb87cb07cddba3170",
  3561. "shasum": ""
  3562. },
  3563. "require": {
  3564. "php": ">=7.1"
  3565. },
  3566. "suggest": {
  3567. "ext-intl": "For best performance"
  3568. },
  3569. "type": "library",
  3570. "extra": {
  3571. "branch-alias": {
  3572. "dev-main": "1.22-dev"
  3573. },
  3574. "thanks": {
  3575. "name": "symfony/polyfill",
  3576. "url": "https://github.com/symfony/polyfill"
  3577. }
  3578. },
  3579. "autoload": {
  3580. "psr-4": {
  3581. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  3582. },
  3583. "files": [
  3584. "bootstrap.php"
  3585. ]
  3586. },
  3587. "notification-url": "https://packagist.org/downloads/",
  3588. "license": [
  3589. "MIT"
  3590. ],
  3591. "authors": [
  3592. {
  3593. "name": "Nicolas Grekas",
  3594. "email": "p@tchwork.com"
  3595. },
  3596. {
  3597. "name": "Symfony Community",
  3598. "homepage": "https://symfony.com/contributors"
  3599. }
  3600. ],
  3601. "description": "Symfony polyfill for intl's grapheme_* functions",
  3602. "homepage": "https://symfony.com",
  3603. "keywords": [
  3604. "compatibility",
  3605. "grapheme",
  3606. "intl",
  3607. "polyfill",
  3608. "portable",
  3609. "shim"
  3610. ],
  3611. "support": {
  3612. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.22.1"
  3613. },
  3614. "funding": [
  3615. {
  3616. "url": "https://symfony.com/sponsor",
  3617. "type": "custom"
  3618. },
  3619. {
  3620. "url": "https://github.com/fabpot",
  3621. "type": "github"
  3622. },
  3623. {
  3624. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3625. "type": "tidelift"
  3626. }
  3627. ],
  3628. "time": "2021-01-22T09:19:47+00:00"
  3629. },
  3630. {
  3631. "name": "symfony/polyfill-mbstring",
  3632. "version": "v1.22.1",
  3633. "source": {
  3634. "type": "git",
  3635. "url": "https://github.com/symfony/polyfill-mbstring.git",
  3636. "reference": "5232de97ee3b75b0360528dae24e73db49566ab1"
  3637. },
  3638. "dist": {
  3639. "type": "zip",
  3640. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/5232de97ee3b75b0360528dae24e73db49566ab1",
  3641. "reference": "5232de97ee3b75b0360528dae24e73db49566ab1",
  3642. "shasum": ""
  3643. },
  3644. "require": {
  3645. "php": ">=7.1"
  3646. },
  3647. "suggest": {
  3648. "ext-mbstring": "For best performance"
  3649. },
  3650. "type": "library",
  3651. "extra": {
  3652. "branch-alias": {
  3653. "dev-main": "1.22-dev"
  3654. },
  3655. "thanks": {
  3656. "name": "symfony/polyfill",
  3657. "url": "https://github.com/symfony/polyfill"
  3658. }
  3659. },
  3660. "autoload": {
  3661. "psr-4": {
  3662. "Symfony\\Polyfill\\Mbstring\\": ""
  3663. },
  3664. "files": [
  3665. "bootstrap.php"
  3666. ]
  3667. },
  3668. "notification-url": "https://packagist.org/downloads/",
  3669. "license": [
  3670. "MIT"
  3671. ],
  3672. "authors": [
  3673. {
  3674. "name": "Nicolas Grekas",
  3675. "email": "p@tchwork.com"
  3676. },
  3677. {
  3678. "name": "Symfony Community",
  3679. "homepage": "https://symfony.com/contributors"
  3680. }
  3681. ],
  3682. "description": "Symfony polyfill for the Mbstring extension",
  3683. "homepage": "https://symfony.com",
  3684. "keywords": [
  3685. "compatibility",
  3686. "mbstring",
  3687. "polyfill",
  3688. "portable",
  3689. "shim"
  3690. ],
  3691. "support": {
  3692. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.22.1"
  3693. },
  3694. "funding": [
  3695. {
  3696. "url": "https://symfony.com/sponsor",
  3697. "type": "custom"
  3698. },
  3699. {
  3700. "url": "https://github.com/fabpot",
  3701. "type": "github"
  3702. },
  3703. {
  3704. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3705. "type": "tidelift"
  3706. }
  3707. ],
  3708. "time": "2021-01-22T09:19:47+00:00"
  3709. },
  3710. {
  3711. "name": "symfony/polyfill-php73",
  3712. "version": "v1.22.1",
  3713. "source": {
  3714. "type": "git",
  3715. "url": "https://github.com/symfony/polyfill-php73.git",
  3716. "reference": "a678b42e92f86eca04b7fa4c0f6f19d097fb69e2"
  3717. },
  3718. "dist": {
  3719. "type": "zip",
  3720. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/a678b42e92f86eca04b7fa4c0f6f19d097fb69e2",
  3721. "reference": "a678b42e92f86eca04b7fa4c0f6f19d097fb69e2",
  3722. "shasum": ""
  3723. },
  3724. "require": {
  3725. "php": ">=7.1"
  3726. },
  3727. "type": "library",
  3728. "extra": {
  3729. "branch-alias": {
  3730. "dev-main": "1.22-dev"
  3731. },
  3732. "thanks": {
  3733. "name": "symfony/polyfill",
  3734. "url": "https://github.com/symfony/polyfill"
  3735. }
  3736. },
  3737. "autoload": {
  3738. "psr-4": {
  3739. "Symfony\\Polyfill\\Php73\\": ""
  3740. },
  3741. "files": [
  3742. "bootstrap.php"
  3743. ],
  3744. "classmap": [
  3745. "Resources/stubs"
  3746. ]
  3747. },
  3748. "notification-url": "https://packagist.org/downloads/",
  3749. "license": [
  3750. "MIT"
  3751. ],
  3752. "authors": [
  3753. {
  3754. "name": "Nicolas Grekas",
  3755. "email": "p@tchwork.com"
  3756. },
  3757. {
  3758. "name": "Symfony Community",
  3759. "homepage": "https://symfony.com/contributors"
  3760. }
  3761. ],
  3762. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  3763. "homepage": "https://symfony.com",
  3764. "keywords": [
  3765. "compatibility",
  3766. "polyfill",
  3767. "portable",
  3768. "shim"
  3769. ],
  3770. "support": {
  3771. "source": "https://github.com/symfony/polyfill-php73/tree/v1.22.1"
  3772. },
  3773. "funding": [
  3774. {
  3775. "url": "https://symfony.com/sponsor",
  3776. "type": "custom"
  3777. },
  3778. {
  3779. "url": "https://github.com/fabpot",
  3780. "type": "github"
  3781. },
  3782. {
  3783. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3784. "type": "tidelift"
  3785. }
  3786. ],
  3787. "time": "2021-01-07T16:49:33+00:00"
  3788. },
  3789. {
  3790. "name": "symfony/polyfill-php80",
  3791. "version": "v1.22.1",
  3792. "source": {
  3793. "type": "git",
  3794. "url": "https://github.com/symfony/polyfill-php80.git",
  3795. "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91"
  3796. },
  3797. "dist": {
  3798. "type": "zip",
  3799. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/dc3063ba22c2a1fd2f45ed856374d79114998f91",
  3800. "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91",
  3801. "shasum": ""
  3802. },
  3803. "require": {
  3804. "php": ">=7.1"
  3805. },
  3806. "type": "library",
  3807. "extra": {
  3808. "branch-alias": {
  3809. "dev-main": "1.22-dev"
  3810. },
  3811. "thanks": {
  3812. "name": "symfony/polyfill",
  3813. "url": "https://github.com/symfony/polyfill"
  3814. }
  3815. },
  3816. "autoload": {
  3817. "psr-4": {
  3818. "Symfony\\Polyfill\\Php80\\": ""
  3819. },
  3820. "files": [
  3821. "bootstrap.php"
  3822. ],
  3823. "classmap": [
  3824. "Resources/stubs"
  3825. ]
  3826. },
  3827. "notification-url": "https://packagist.org/downloads/",
  3828. "license": [
  3829. "MIT"
  3830. ],
  3831. "authors": [
  3832. {
  3833. "name": "Ion Bazan",
  3834. "email": "ion.bazan@gmail.com"
  3835. },
  3836. {
  3837. "name": "Nicolas Grekas",
  3838. "email": "p@tchwork.com"
  3839. },
  3840. {
  3841. "name": "Symfony Community",
  3842. "homepage": "https://symfony.com/contributors"
  3843. }
  3844. ],
  3845. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  3846. "homepage": "https://symfony.com",
  3847. "keywords": [
  3848. "compatibility",
  3849. "polyfill",
  3850. "portable",
  3851. "shim"
  3852. ],
  3853. "support": {
  3854. "source": "https://github.com/symfony/polyfill-php80/tree/v1.22.1"
  3855. },
  3856. "funding": [
  3857. {
  3858. "url": "https://symfony.com/sponsor",
  3859. "type": "custom"
  3860. },
  3861. {
  3862. "url": "https://github.com/fabpot",
  3863. "type": "github"
  3864. },
  3865. {
  3866. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3867. "type": "tidelift"
  3868. }
  3869. ],
  3870. "time": "2021-01-07T16:49:33+00:00"
  3871. },
  3872. {
  3873. "name": "symfony/service-contracts",
  3874. "version": "v2.2.0",
  3875. "source": {
  3876. "type": "git",
  3877. "url": "https://github.com/symfony/service-contracts.git",
  3878. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1"
  3879. },
  3880. "dist": {
  3881. "type": "zip",
  3882. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  3883. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  3884. "shasum": ""
  3885. },
  3886. "require": {
  3887. "php": ">=7.2.5",
  3888. "psr/container": "^1.0"
  3889. },
  3890. "suggest": {
  3891. "symfony/service-implementation": ""
  3892. },
  3893. "type": "library",
  3894. "extra": {
  3895. "branch-alias": {
  3896. "dev-master": "2.2-dev"
  3897. },
  3898. "thanks": {
  3899. "name": "symfony/contracts",
  3900. "url": "https://github.com/symfony/contracts"
  3901. }
  3902. },
  3903. "autoload": {
  3904. "psr-4": {
  3905. "Symfony\\Contracts\\Service\\": ""
  3906. }
  3907. },
  3908. "notification-url": "https://packagist.org/downloads/",
  3909. "license": [
  3910. "MIT"
  3911. ],
  3912. "authors": [
  3913. {
  3914. "name": "Nicolas Grekas",
  3915. "email": "p@tchwork.com"
  3916. },
  3917. {
  3918. "name": "Symfony Community",
  3919. "homepage": "https://symfony.com/contributors"
  3920. }
  3921. ],
  3922. "description": "Generic abstractions related to writing services",
  3923. "homepage": "https://symfony.com",
  3924. "keywords": [
  3925. "abstractions",
  3926. "contracts",
  3927. "decoupling",
  3928. "interfaces",
  3929. "interoperability",
  3930. "standards"
  3931. ],
  3932. "support": {
  3933. "source": "https://github.com/symfony/service-contracts/tree/master"
  3934. },
  3935. "funding": [
  3936. {
  3937. "url": "https://symfony.com/sponsor",
  3938. "type": "custom"
  3939. },
  3940. {
  3941. "url": "https://github.com/fabpot",
  3942. "type": "github"
  3943. },
  3944. {
  3945. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3946. "type": "tidelift"
  3947. }
  3948. ],
  3949. "time": "2020-09-07T11:33:47+00:00"
  3950. },
  3951. {
  3952. "name": "symfony/stopwatch",
  3953. "version": "v5.2.3",
  3954. "source": {
  3955. "type": "git",
  3956. "url": "https://github.com/symfony/stopwatch.git",
  3957. "reference": "b12274acfab9d9850c52583d136a24398cdf1a0c"
  3958. },
  3959. "dist": {
  3960. "type": "zip",
  3961. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/b12274acfab9d9850c52583d136a24398cdf1a0c",
  3962. "reference": "b12274acfab9d9850c52583d136a24398cdf1a0c",
  3963. "shasum": ""
  3964. },
  3965. "require": {
  3966. "php": ">=7.2.5",
  3967. "symfony/service-contracts": "^1.0|^2"
  3968. },
  3969. "type": "library",
  3970. "autoload": {
  3971. "psr-4": {
  3972. "Symfony\\Component\\Stopwatch\\": ""
  3973. },
  3974. "exclude-from-classmap": [
  3975. "/Tests/"
  3976. ]
  3977. },
  3978. "notification-url": "https://packagist.org/downloads/",
  3979. "license": [
  3980. "MIT"
  3981. ],
  3982. "authors": [
  3983. {
  3984. "name": "Fabien Potencier",
  3985. "email": "fabien@symfony.com"
  3986. },
  3987. {
  3988. "name": "Symfony Community",
  3989. "homepage": "https://symfony.com/contributors"
  3990. }
  3991. ],
  3992. "description": "Provides a way to profile code",
  3993. "homepage": "https://symfony.com",
  3994. "support": {
  3995. "source": "https://github.com/symfony/stopwatch/tree/v5.2.3"
  3996. },
  3997. "funding": [
  3998. {
  3999. "url": "https://symfony.com/sponsor",
  4000. "type": "custom"
  4001. },
  4002. {
  4003. "url": "https://github.com/fabpot",
  4004. "type": "github"
  4005. },
  4006. {
  4007. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4008. "type": "tidelift"
  4009. }
  4010. ],
  4011. "time": "2021-01-27T10:15:41+00:00"
  4012. },
  4013. {
  4014. "name": "symfony/string",
  4015. "version": "v5.2.3",
  4016. "source": {
  4017. "type": "git",
  4018. "url": "https://github.com/symfony/string.git",
  4019. "reference": "c95468897f408dd0aca2ff582074423dd0455122"
  4020. },
  4021. "dist": {
  4022. "type": "zip",
  4023. "url": "https://api.github.com/repos/symfony/string/zipball/c95468897f408dd0aca2ff582074423dd0455122",
  4024. "reference": "c95468897f408dd0aca2ff582074423dd0455122",
  4025. "shasum": ""
  4026. },
  4027. "require": {
  4028. "php": ">=7.2.5",
  4029. "symfony/polyfill-ctype": "~1.8",
  4030. "symfony/polyfill-intl-grapheme": "~1.0",
  4031. "symfony/polyfill-intl-normalizer": "~1.0",
  4032. "symfony/polyfill-mbstring": "~1.0",
  4033. "symfony/polyfill-php80": "~1.15"
  4034. },
  4035. "require-dev": {
  4036. "symfony/error-handler": "^4.4|^5.0",
  4037. "symfony/http-client": "^4.4|^5.0",
  4038. "symfony/translation-contracts": "^1.1|^2",
  4039. "symfony/var-exporter": "^4.4|^5.0"
  4040. },
  4041. "type": "library",
  4042. "autoload": {
  4043. "psr-4": {
  4044. "Symfony\\Component\\String\\": ""
  4045. },
  4046. "files": [
  4047. "Resources/functions.php"
  4048. ],
  4049. "exclude-from-classmap": [
  4050. "/Tests/"
  4051. ]
  4052. },
  4053. "notification-url": "https://packagist.org/downloads/",
  4054. "license": [
  4055. "MIT"
  4056. ],
  4057. "authors": [
  4058. {
  4059. "name": "Nicolas Grekas",
  4060. "email": "p@tchwork.com"
  4061. },
  4062. {
  4063. "name": "Symfony Community",
  4064. "homepage": "https://symfony.com/contributors"
  4065. }
  4066. ],
  4067. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  4068. "homepage": "https://symfony.com",
  4069. "keywords": [
  4070. "grapheme",
  4071. "i18n",
  4072. "string",
  4073. "unicode",
  4074. "utf-8",
  4075. "utf8"
  4076. ],
  4077. "support": {
  4078. "source": "https://github.com/symfony/string/tree/v5.2.3"
  4079. },
  4080. "funding": [
  4081. {
  4082. "url": "https://symfony.com/sponsor",
  4083. "type": "custom"
  4084. },
  4085. {
  4086. "url": "https://github.com/fabpot",
  4087. "type": "github"
  4088. },
  4089. {
  4090. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4091. "type": "tidelift"
  4092. }
  4093. ],
  4094. "time": "2021-01-25T15:14:59+00:00"
  4095. },
  4096. {
  4097. "name": "symfony/yaml",
  4098. "version": "v5.2.3",
  4099. "source": {
  4100. "type": "git",
  4101. "url": "https://github.com/symfony/yaml.git",
  4102. "reference": "338cddc6d74929f6adf19ca5682ac4b8e109cdb0"
  4103. },
  4104. "dist": {
  4105. "type": "zip",
  4106. "url": "https://api.github.com/repos/symfony/yaml/zipball/338cddc6d74929f6adf19ca5682ac4b8e109cdb0",
  4107. "reference": "338cddc6d74929f6adf19ca5682ac4b8e109cdb0",
  4108. "shasum": ""
  4109. },
  4110. "require": {
  4111. "php": ">=7.2.5",
  4112. "symfony/deprecation-contracts": "^2.1",
  4113. "symfony/polyfill-ctype": "~1.8"
  4114. },
  4115. "conflict": {
  4116. "symfony/console": "<4.4"
  4117. },
  4118. "require-dev": {
  4119. "symfony/console": "^4.4|^5.0"
  4120. },
  4121. "suggest": {
  4122. "symfony/console": "For validating YAML files using the lint command"
  4123. },
  4124. "bin": [
  4125. "Resources/bin/yaml-lint"
  4126. ],
  4127. "type": "library",
  4128. "autoload": {
  4129. "psr-4": {
  4130. "Symfony\\Component\\Yaml\\": ""
  4131. },
  4132. "exclude-from-classmap": [
  4133. "/Tests/"
  4134. ]
  4135. },
  4136. "notification-url": "https://packagist.org/downloads/",
  4137. "license": [
  4138. "MIT"
  4139. ],
  4140. "authors": [
  4141. {
  4142. "name": "Fabien Potencier",
  4143. "email": "fabien@symfony.com"
  4144. },
  4145. {
  4146. "name": "Symfony Community",
  4147. "homepage": "https://symfony.com/contributors"
  4148. }
  4149. ],
  4150. "description": "Loads and dumps YAML files",
  4151. "homepage": "https://symfony.com",
  4152. "support": {
  4153. "source": "https://github.com/symfony/yaml/tree/v5.2.3"
  4154. },
  4155. "funding": [
  4156. {
  4157. "url": "https://symfony.com/sponsor",
  4158. "type": "custom"
  4159. },
  4160. {
  4161. "url": "https://github.com/fabpot",
  4162. "type": "github"
  4163. },
  4164. {
  4165. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4166. "type": "tidelift"
  4167. }
  4168. ],
  4169. "time": "2021-02-03T04:42:09+00:00"
  4170. },
  4171. {
  4172. "name": "theseer/tokenizer",
  4173. "version": "1.2.0",
  4174. "source": {
  4175. "type": "git",
  4176. "url": "https://github.com/theseer/tokenizer.git",
  4177. "reference": "75a63c33a8577608444246075ea0af0d052e452a"
  4178. },
  4179. "dist": {
  4180. "type": "zip",
  4181. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a",
  4182. "reference": "75a63c33a8577608444246075ea0af0d052e452a",
  4183. "shasum": ""
  4184. },
  4185. "require": {
  4186. "ext-dom": "*",
  4187. "ext-tokenizer": "*",
  4188. "ext-xmlwriter": "*",
  4189. "php": "^7.2 || ^8.0"
  4190. },
  4191. "type": "library",
  4192. "autoload": {
  4193. "classmap": [
  4194. "src/"
  4195. ]
  4196. },
  4197. "notification-url": "https://packagist.org/downloads/",
  4198. "license": [
  4199. "BSD-3-Clause"
  4200. ],
  4201. "authors": [
  4202. {
  4203. "name": "Arne Blankerts",
  4204. "email": "arne@blankerts.de",
  4205. "role": "Developer"
  4206. }
  4207. ],
  4208. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  4209. "support": {
  4210. "issues": "https://github.com/theseer/tokenizer/issues",
  4211. "source": "https://github.com/theseer/tokenizer/tree/master"
  4212. },
  4213. "funding": [
  4214. {
  4215. "url": "https://github.com/theseer",
  4216. "type": "github"
  4217. }
  4218. ],
  4219. "time": "2020-07-12T23:59:07+00:00"
  4220. },
  4221. {
  4222. "name": "vimeo/psalm",
  4223. "version": "4.6.2",
  4224. "source": {
  4225. "type": "git",
  4226. "url": "https://github.com/vimeo/psalm.git",
  4227. "reference": "bca09d74adc704c4eaee36a3c3e9d379e290fc3b"
  4228. },
  4229. "dist": {
  4230. "type": "zip",
  4231. "url": "https://api.github.com/repos/vimeo/psalm/zipball/bca09d74adc704c4eaee36a3c3e9d379e290fc3b",
  4232. "reference": "bca09d74adc704c4eaee36a3c3e9d379e290fc3b",
  4233. "shasum": ""
  4234. },
  4235. "require": {
  4236. "amphp/amp": "^2.1",
  4237. "amphp/byte-stream": "^1.5",
  4238. "composer/package-versions-deprecated": "^1.8.0",
  4239. "composer/semver": "^1.4 || ^2.0 || ^3.0",
  4240. "composer/xdebug-handler": "^1.1",
  4241. "dnoegel/php-xdg-base-dir": "^0.1.1",
  4242. "ext-dom": "*",
  4243. "ext-json": "*",
  4244. "ext-libxml": "*",
  4245. "ext-mbstring": "*",
  4246. "ext-simplexml": "*",
  4247. "ext-tokenizer": "*",
  4248. "felixfbecker/advanced-json-rpc": "^3.0.3",
  4249. "felixfbecker/language-server-protocol": "^1.5",
  4250. "netresearch/jsonmapper": "^1.0 || ^2.0 || ^3.0 || ^4.0",
  4251. "nikic/php-parser": "^4.10.1",
  4252. "openlss/lib-array2xml": "^1.0",
  4253. "php": "^7.1|^8",
  4254. "sebastian/diff": "^3.0 || ^4.0",
  4255. "symfony/console": "^3.4.17 || ^4.1.6 || ^5.0",
  4256. "webmozart/path-util": "^2.3"
  4257. },
  4258. "provide": {
  4259. "psalm/psalm": "self.version"
  4260. },
  4261. "require-dev": {
  4262. "amphp/amp": "^2.4.2",
  4263. "bamarni/composer-bin-plugin": "^1.2",
  4264. "brianium/paratest": "^4.0||^6.0",
  4265. "ext-curl": "*",
  4266. "php-parallel-lint/php-parallel-lint": "^1.2",
  4267. "phpdocumentor/reflection-docblock": "^5",
  4268. "phpmyadmin/sql-parser": "5.1.0||dev-master",
  4269. "phpspec/prophecy": ">=1.9.0",
  4270. "phpunit/phpunit": "^9.0",
  4271. "psalm/plugin-phpunit": "^0.13",
  4272. "slevomat/coding-standard": "^6.3.11",
  4273. "squizlabs/php_codesniffer": "^3.5",
  4274. "symfony/process": "^4.3",
  4275. "weirdan/prophecy-shim": "^1.0 || ^2.0"
  4276. },
  4277. "suggest": {
  4278. "ext-igbinary": "^2.0.5"
  4279. },
  4280. "bin": [
  4281. "psalm",
  4282. "psalm-language-server",
  4283. "psalm-plugin",
  4284. "psalm-refactor",
  4285. "psalter"
  4286. ],
  4287. "type": "library",
  4288. "extra": {
  4289. "branch-alias": {
  4290. "dev-master": "4.x-dev",
  4291. "dev-3.x": "3.x-dev",
  4292. "dev-2.x": "2.x-dev",
  4293. "dev-1.x": "1.x-dev"
  4294. }
  4295. },
  4296. "autoload": {
  4297. "psr-4": {
  4298. "Psalm\\": "src/Psalm/"
  4299. },
  4300. "files": [
  4301. "src/functions.php",
  4302. "src/spl_object_id.php"
  4303. ]
  4304. },
  4305. "notification-url": "https://packagist.org/downloads/",
  4306. "license": [
  4307. "MIT"
  4308. ],
  4309. "authors": [
  4310. {
  4311. "name": "Matthew Brown"
  4312. }
  4313. ],
  4314. "description": "A static analysis tool for finding errors in PHP applications",
  4315. "keywords": [
  4316. "code",
  4317. "inspection",
  4318. "php"
  4319. ],
  4320. "support": {
  4321. "issues": "https://github.com/vimeo/psalm/issues",
  4322. "source": "https://github.com/vimeo/psalm/tree/4.6.2"
  4323. },
  4324. "time": "2021-02-26T02:24:18+00:00"
  4325. },
  4326. {
  4327. "name": "webmozart/assert",
  4328. "version": "1.9.1",
  4329. "source": {
  4330. "type": "git",
  4331. "url": "https://github.com/webmozarts/assert.git",
  4332. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389"
  4333. },
  4334. "dist": {
  4335. "type": "zip",
  4336. "url": "https://api.github.com/repos/webmozarts/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389",
  4337. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389",
  4338. "shasum": ""
  4339. },
  4340. "require": {
  4341. "php": "^5.3.3 || ^7.0 || ^8.0",
  4342. "symfony/polyfill-ctype": "^1.8"
  4343. },
  4344. "conflict": {
  4345. "phpstan/phpstan": "<0.12.20",
  4346. "vimeo/psalm": "<3.9.1"
  4347. },
  4348. "require-dev": {
  4349. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  4350. },
  4351. "type": "library",
  4352. "autoload": {
  4353. "psr-4": {
  4354. "Webmozart\\Assert\\": "src/"
  4355. }
  4356. },
  4357. "notification-url": "https://packagist.org/downloads/",
  4358. "license": [
  4359. "MIT"
  4360. ],
  4361. "authors": [
  4362. {
  4363. "name": "Bernhard Schussek",
  4364. "email": "bschussek@gmail.com"
  4365. }
  4366. ],
  4367. "description": "Assertions to validate method input/output with nice error messages.",
  4368. "keywords": [
  4369. "assert",
  4370. "check",
  4371. "validate"
  4372. ],
  4373. "support": {
  4374. "issues": "https://github.com/webmozarts/assert/issues",
  4375. "source": "https://github.com/webmozarts/assert/tree/1.9.1"
  4376. },
  4377. "time": "2020-07-08T17:02:28+00:00"
  4378. },
  4379. {
  4380. "name": "webmozart/path-util",
  4381. "version": "2.3.0",
  4382. "source": {
  4383. "type": "git",
  4384. "url": "https://github.com/webmozart/path-util.git",
  4385. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  4386. },
  4387. "dist": {
  4388. "type": "zip",
  4389. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  4390. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  4391. "shasum": ""
  4392. },
  4393. "require": {
  4394. "php": ">=5.3.3",
  4395. "webmozart/assert": "~1.0"
  4396. },
  4397. "require-dev": {
  4398. "phpunit/phpunit": "^4.6",
  4399. "sebastian/version": "^1.0.1"
  4400. },
  4401. "type": "library",
  4402. "extra": {
  4403. "branch-alias": {
  4404. "dev-master": "2.3-dev"
  4405. }
  4406. },
  4407. "autoload": {
  4408. "psr-4": {
  4409. "Webmozart\\PathUtil\\": "src/"
  4410. }
  4411. },
  4412. "notification-url": "https://packagist.org/downloads/",
  4413. "license": [
  4414. "MIT"
  4415. ],
  4416. "authors": [
  4417. {
  4418. "name": "Bernhard Schussek",
  4419. "email": "bschussek@gmail.com"
  4420. }
  4421. ],
  4422. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  4423. "support": {
  4424. "issues": "https://github.com/webmozart/path-util/issues",
  4425. "source": "https://github.com/webmozart/path-util/tree/2.3.0"
  4426. },
  4427. "time": "2015-12-17T08:42:14+00:00"
  4428. }
  4429. ],
  4430. "aliases": [],
  4431. "minimum-stability": "stable",
  4432. "stability-flags": [],
  4433. "prefer-stable": false,
  4434. "prefer-lowest": false,
  4435. "platform": {
  4436. "php": ">=7.2"
  4437. },
  4438. "platform-dev": [],
  4439. "plugin-api-version": "2.0.0"
  4440. }