composer.lock 189 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343
  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": "0c704173a75a7a9a27debbd107a5a7ad",
  8. "packages": [
  9. {
  10. "name": "2amigos/qrcode-library",
  11. "version": "1.1.2",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/2amigos/qrcode-library.git",
  15. "reference": "5356f2355c7ba9a9ced67753411c88c2c095deb0"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/2amigos/qrcode-library/zipball/5356f2355c7ba9a9ced67753411c88c2c095deb0",
  20. "reference": "5356f2355c7ba9a9ced67753411c88c2c095deb0",
  21. "shasum": "",
  22. "mirrors": [
  23. {
  24. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  25. "preferred": true
  26. }
  27. ]
  28. },
  29. "require": {
  30. "bacon/bacon-qr-code": "^1.0",
  31. "ext-gd": "*",
  32. "khanamiryan/qrcode-detector-decoder": "^1.0",
  33. "php": ">=5.6"
  34. },
  35. "require-dev": {
  36. "codeception/codeception": "*",
  37. "codeception/specify": "^0.4.3",
  38. "codeception/verify": "^0.3.1",
  39. "friendsofphp/php-cs-fixer": "^2.3",
  40. "phpmd/phpmd": "@stable",
  41. "scrutinizer/ocular": "~1.1",
  42. "squizlabs/php_codesniffer": "*",
  43. "yiisoft/yii2": "*"
  44. },
  45. "type": "yii2-extension",
  46. "extra": {
  47. "branch-alias": {
  48. "dev-master": "1.0-dev"
  49. }
  50. },
  51. "autoload": {
  52. "psr-4": {
  53. "Da\\QrCode\\": "./src"
  54. }
  55. },
  56. "notification-url": "https://packagist.org/downloads/",
  57. "license": [
  58. "BSD-3-Clause"
  59. ],
  60. "authors": [
  61. {
  62. "name": "2amigOS! Consulting Group",
  63. "email": "hola@2amigos.us",
  64. "homepage": "http://2amigos.us",
  65. "role": "Developer"
  66. }
  67. ],
  68. "description": "QrCode Generator",
  69. "homepage": "http://www.2amigos.us/open-source/details/qrcode-library",
  70. "keywords": [
  71. "2amigos",
  72. "component",
  73. "extension",
  74. "qr",
  75. "qrcode",
  76. "yii",
  77. "yii 2",
  78. "yii2"
  79. ],
  80. "support": {
  81. "issues": "https://github.com/2amigos/qrcode-library/issues",
  82. "source": "https://github.com/2amigos/qrcode-library"
  83. },
  84. "time": "2017-08-25T15:23:58+00:00"
  85. },
  86. {
  87. "name": "bacon/bacon-qr-code",
  88. "version": "1.0.3",
  89. "source": {
  90. "type": "git",
  91. "url": "https://github.com/Bacon/BaconQrCode.git",
  92. "reference": "5a91b62b9d37cee635bbf8d553f4546057250bee"
  93. },
  94. "dist": {
  95. "type": "zip",
  96. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/5a91b62b9d37cee635bbf8d553f4546057250bee",
  97. "reference": "5a91b62b9d37cee635bbf8d553f4546057250bee",
  98. "shasum": "",
  99. "mirrors": [
  100. {
  101. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  102. "preferred": true
  103. }
  104. ]
  105. },
  106. "require": {
  107. "ext-iconv": "*",
  108. "php": "^5.4|^7.0"
  109. },
  110. "require-dev": {
  111. "phpunit/phpunit": "^4.8"
  112. },
  113. "suggest": {
  114. "ext-gd": "to generate QR code images"
  115. },
  116. "type": "library",
  117. "autoload": {
  118. "psr-0": {
  119. "BaconQrCode": "src/"
  120. }
  121. },
  122. "notification-url": "https://packagist.org/downloads/",
  123. "license": [
  124. "BSD-2-Clause"
  125. ],
  126. "authors": [
  127. {
  128. "name": "Ben Scholzen 'DASPRiD'",
  129. "email": "mail@dasprids.de",
  130. "homepage": "http://www.dasprids.de",
  131. "role": "Developer"
  132. }
  133. ],
  134. "description": "BaconQrCode is a QR code generator for PHP.",
  135. "homepage": "https://github.com/Bacon/BaconQrCode",
  136. "support": {
  137. "issues": "https://github.com/Bacon/BaconQrCode/issues",
  138. "source": "https://github.com/Bacon/BaconQrCode/tree/master"
  139. },
  140. "time": "2017-10-17T09:59:25+00:00"
  141. },
  142. {
  143. "name": "bower-asset/inputmask",
  144. "version": "3.3.11",
  145. "source": {
  146. "type": "git",
  147. "url": "git@github.com:RobinHerbots/Inputmask.git",
  148. "reference": "5e670ad62f50c738388d4dcec78d2888505ad77b"
  149. },
  150. "dist": {
  151. "type": "zip",
  152. "url": "https://api.github.com/repos/RobinHerbots/Inputmask/zipball/5e670ad62f50c738388d4dcec78d2888505ad77b",
  153. "reference": "5e670ad62f50c738388d4dcec78d2888505ad77b"
  154. },
  155. "require": {
  156. "bower-asset/jquery": ">=1.7"
  157. },
  158. "type": "bower-asset",
  159. "license": [
  160. "http://opensource.org/licenses/mit-license.php"
  161. ]
  162. },
  163. {
  164. "name": "bower-asset/jquery",
  165. "version": "3.6.0",
  166. "source": {
  167. "type": "git",
  168. "url": "https://github.com/jquery/jquery-dist.git",
  169. "reference": "e786e3d9707ffd9b0dd330ca135b66344dcef85a"
  170. },
  171. "dist": {
  172. "type": "zip",
  173. "url": "https://api.github.com/repos/jquery/jquery-dist/zipball/e786e3d9707ffd9b0dd330ca135b66344dcef85a",
  174. "reference": "e786e3d9707ffd9b0dd330ca135b66344dcef85a"
  175. },
  176. "type": "bower-asset",
  177. "license": [
  178. "MIT"
  179. ]
  180. },
  181. {
  182. "name": "bower-asset/punycode",
  183. "version": "v1.3.2",
  184. "source": {
  185. "type": "git",
  186. "url": "https://github.com/mathiasbynens/punycode.js.git",
  187. "reference": "38c8d3131a82567bfef18da09f7f4db68c84f8a3"
  188. },
  189. "dist": {
  190. "type": "zip",
  191. "url": "https://api.github.com/repos/mathiasbynens/punycode.js/zipball/38c8d3131a82567bfef18da09f7f4db68c84f8a3",
  192. "reference": "38c8d3131a82567bfef18da09f7f4db68c84f8a3"
  193. },
  194. "type": "bower-asset"
  195. },
  196. {
  197. "name": "bower-asset/yii2-pjax",
  198. "version": "2.0.7.1",
  199. "source": {
  200. "type": "git",
  201. "url": "https://github.com/yiisoft/jquery-pjax.git",
  202. "reference": "aef7b953107264f00234902a3880eb50dafc48be"
  203. },
  204. "dist": {
  205. "type": "zip",
  206. "url": "https://api.github.com/repos/yiisoft/jquery-pjax/zipball/aef7b953107264f00234902a3880eb50dafc48be",
  207. "reference": "aef7b953107264f00234902a3880eb50dafc48be"
  208. },
  209. "require": {
  210. "bower-asset/jquery": ">=1.8"
  211. },
  212. "type": "bower-asset",
  213. "license": [
  214. "MIT"
  215. ]
  216. },
  217. {
  218. "name": "cebe/markdown",
  219. "version": "1.2.1",
  220. "source": {
  221. "type": "git",
  222. "url": "https://github.com/cebe/markdown.git",
  223. "reference": "9bac5e971dd391e2802dca5400bbeacbaea9eb86"
  224. },
  225. "dist": {
  226. "type": "zip",
  227. "url": "https://api.github.com/repos/cebe/markdown/zipball/9bac5e971dd391e2802dca5400bbeacbaea9eb86",
  228. "reference": "9bac5e971dd391e2802dca5400bbeacbaea9eb86",
  229. "shasum": ""
  230. },
  231. "require": {
  232. "lib-pcre": "*",
  233. "php": ">=5.4.0"
  234. },
  235. "require-dev": {
  236. "cebe/indent": "*",
  237. "facebook/xhprof": "*@dev",
  238. "phpunit/phpunit": "4.1.*"
  239. },
  240. "bin": [
  241. "bin/markdown"
  242. ],
  243. "type": "library",
  244. "extra": {
  245. "branch-alias": {
  246. "dev-master": "1.2.x-dev"
  247. }
  248. },
  249. "autoload": {
  250. "psr-4": {
  251. "cebe\\markdown\\": ""
  252. }
  253. },
  254. "notification-url": "https://packagist.org/downloads/",
  255. "license": [
  256. "MIT"
  257. ],
  258. "authors": [
  259. {
  260. "name": "Carsten Brandt",
  261. "email": "mail@cebe.cc",
  262. "homepage": "http://cebe.cc/",
  263. "role": "Creator"
  264. }
  265. ],
  266. "description": "A super fast, highly extensible markdown parser for PHP",
  267. "homepage": "https://github.com/cebe/markdown#readme",
  268. "keywords": [
  269. "extensible",
  270. "fast",
  271. "gfm",
  272. "markdown",
  273. "markdown-extra"
  274. ],
  275. "support": {
  276. "issues": "https://github.com/cebe/markdown/issues",
  277. "source": "https://github.com/cebe/markdown"
  278. },
  279. "time": "2018-03-26T11:24:36+00:00"
  280. },
  281. {
  282. "name": "doctrine/lexer",
  283. "version": "1.2.3",
  284. "source": {
  285. "type": "git",
  286. "url": "https://github.com/doctrine/lexer.git",
  287. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  288. },
  289. "dist": {
  290. "type": "zip",
  291. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  292. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  293. "shasum": ""
  294. },
  295. "require": {
  296. "php": "^7.1 || ^8.0"
  297. },
  298. "require-dev": {
  299. "doctrine/coding-standard": "^9.0",
  300. "phpstan/phpstan": "^1.3",
  301. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  302. "vimeo/psalm": "^4.11"
  303. },
  304. "type": "library",
  305. "autoload": {
  306. "psr-4": {
  307. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  308. }
  309. },
  310. "notification-url": "https://packagist.org/downloads/",
  311. "license": [
  312. "MIT"
  313. ],
  314. "authors": [
  315. {
  316. "name": "Guilherme Blanco",
  317. "email": "guilhermeblanco@gmail.com"
  318. },
  319. {
  320. "name": "Roman Borschel",
  321. "email": "roman@code-factory.org"
  322. },
  323. {
  324. "name": "Johannes Schmitt",
  325. "email": "schmittjoh@gmail.com"
  326. }
  327. ],
  328. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  329. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  330. "keywords": [
  331. "annotations",
  332. "docblock",
  333. "lexer",
  334. "parser",
  335. "php"
  336. ],
  337. "support": {
  338. "issues": "https://github.com/doctrine/lexer/issues",
  339. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  340. },
  341. "funding": [
  342. {
  343. "url": "https://www.doctrine-project.org/sponsorship.html",
  344. "type": "custom"
  345. },
  346. {
  347. "url": "https://www.patreon.com/phpdoctrine",
  348. "type": "patreon"
  349. },
  350. {
  351. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  352. "type": "tidelift"
  353. }
  354. ],
  355. "time": "2022-02-28T11:07:21+00:00"
  356. },
  357. {
  358. "name": "egulias/email-validator",
  359. "version": "3.2.1",
  360. "source": {
  361. "type": "git",
  362. "url": "https://github.com/egulias/EmailValidator.git",
  363. "reference": "f88dcf4b14af14a98ad96b14b2b317969eab6715"
  364. },
  365. "dist": {
  366. "type": "zip",
  367. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/f88dcf4b14af14a98ad96b14b2b317969eab6715",
  368. "reference": "f88dcf4b14af14a98ad96b14b2b317969eab6715",
  369. "shasum": ""
  370. },
  371. "require": {
  372. "doctrine/lexer": "^1.2",
  373. "php": ">=7.2",
  374. "symfony/polyfill-intl-idn": "^1.15"
  375. },
  376. "require-dev": {
  377. "php-coveralls/php-coveralls": "^2.2",
  378. "phpunit/phpunit": "^8.5.8|^9.3.3",
  379. "vimeo/psalm": "^4"
  380. },
  381. "suggest": {
  382. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  383. },
  384. "type": "library",
  385. "extra": {
  386. "branch-alias": {
  387. "dev-master": "3.0.x-dev"
  388. }
  389. },
  390. "autoload": {
  391. "psr-4": {
  392. "Egulias\\EmailValidator\\": "src"
  393. }
  394. },
  395. "notification-url": "https://packagist.org/downloads/",
  396. "license": [
  397. "MIT"
  398. ],
  399. "authors": [
  400. {
  401. "name": "Eduardo Gulias Davis"
  402. }
  403. ],
  404. "description": "A library for validating emails against several RFCs",
  405. "homepage": "https://github.com/egulias/EmailValidator",
  406. "keywords": [
  407. "email",
  408. "emailvalidation",
  409. "emailvalidator",
  410. "validation",
  411. "validator"
  412. ],
  413. "support": {
  414. "issues": "https://github.com/egulias/EmailValidator/issues",
  415. "source": "https://github.com/egulias/EmailValidator/tree/3.2.1"
  416. },
  417. "funding": [
  418. {
  419. "url": "https://github.com/egulias",
  420. "type": "github"
  421. }
  422. ],
  423. "time": "2022-06-18T20:57:19+00:00"
  424. },
  425. {
  426. "name": "ezyang/htmlpurifier",
  427. "version": "v4.14.0",
  428. "source": {
  429. "type": "git",
  430. "url": "https://github.com/ezyang/htmlpurifier.git",
  431. "reference": "12ab42bd6e742c70c0a52f7b82477fcd44e64b75"
  432. },
  433. "dist": {
  434. "type": "zip",
  435. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/12ab42bd6e742c70c0a52f7b82477fcd44e64b75",
  436. "reference": "12ab42bd6e742c70c0a52f7b82477fcd44e64b75",
  437. "shasum": ""
  438. },
  439. "require": {
  440. "php": ">=5.2"
  441. },
  442. "type": "library",
  443. "autoload": {
  444. "files": [
  445. "library/HTMLPurifier.composer.php"
  446. ],
  447. "psr-0": {
  448. "HTMLPurifier": "library/"
  449. },
  450. "exclude-from-classmap": [
  451. "/library/HTMLPurifier/Language/"
  452. ]
  453. },
  454. "notification-url": "https://packagist.org/downloads/",
  455. "license": [
  456. "LGPL-2.1-or-later"
  457. ],
  458. "authors": [
  459. {
  460. "name": "Edward Z. Yang",
  461. "email": "admin@htmlpurifier.org",
  462. "homepage": "http://ezyang.com"
  463. }
  464. ],
  465. "description": "Standards compliant HTML filter written in PHP",
  466. "homepage": "http://htmlpurifier.org/",
  467. "keywords": [
  468. "html"
  469. ],
  470. "support": {
  471. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  472. "source": "https://github.com/ezyang/htmlpurifier/tree/v4.14.0"
  473. },
  474. "time": "2021-12-25T01:21:49+00:00"
  475. },
  476. {
  477. "name": "khanamiryan/qrcode-detector-decoder",
  478. "version": "1.0.6",
  479. "source": {
  480. "type": "git",
  481. "url": "https://github.com/khanamiryan/php-qrcode-detector-decoder.git",
  482. "reference": "45326fb83a2a375065dbb3a134b5b8a5872da569"
  483. },
  484. "dist": {
  485. "type": "zip",
  486. "url": "https://api.github.com/repos/khanamiryan/php-qrcode-detector-decoder/zipball/45326fb83a2a375065dbb3a134b5b8a5872da569",
  487. "reference": "45326fb83a2a375065dbb3a134b5b8a5872da569",
  488. "shasum": "",
  489. "mirrors": [
  490. {
  491. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  492. "preferred": true
  493. }
  494. ]
  495. },
  496. "require": {
  497. "php": ">=5.6"
  498. },
  499. "require-dev": {
  500. "phpunit/phpunit": "^5.7 | ^7.5 | ^8.0 | ^9.0",
  501. "rector/rector": "^0.13.6",
  502. "symplify/easy-coding-standard": "^11.0"
  503. },
  504. "type": "library",
  505. "autoload": {
  506. "files": [
  507. "lib/Common/customFunctions.php"
  508. ],
  509. "psr-4": {
  510. "Zxing\\": "lib/"
  511. }
  512. },
  513. "notification-url": "https://packagist.org/downloads/",
  514. "license": [
  515. "MIT",
  516. "Apache-2.0"
  517. ],
  518. "authors": [
  519. {
  520. "name": "Ashot Khanamiryan",
  521. "email": "a.khanamiryan@gmail.com",
  522. "homepage": "https://github.com/khanamiryan",
  523. "role": "Developer"
  524. }
  525. ],
  526. "description": "QR code decoder / reader",
  527. "homepage": "https://github.com/khanamiryan/php-qrcode-detector-decoder/",
  528. "keywords": [
  529. "barcode",
  530. "qr",
  531. "zxing"
  532. ],
  533. "support": {
  534. "issues": "https://github.com/khanamiryan/php-qrcode-detector-decoder/issues",
  535. "source": "https://github.com/khanamiryan/php-qrcode-detector-decoder/tree/1.0.6"
  536. },
  537. "time": "2022-06-29T09:25:13+00:00"
  538. },
  539. {
  540. "name": "npm-asset/bootstrap",
  541. "version": "4.6.2",
  542. "dist": {
  543. "type": "tar",
  544. "url": "https://registry.npmjs.org/bootstrap/-/bootstrap-4.6.2.tgz"
  545. },
  546. "type": "npm-asset",
  547. "license": [
  548. "MIT"
  549. ]
  550. },
  551. {
  552. "name": "paragonie/random_compat",
  553. "version": "v9.99.100",
  554. "source": {
  555. "type": "git",
  556. "url": "https://github.com/paragonie/random_compat.git",
  557. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  558. },
  559. "dist": {
  560. "type": "zip",
  561. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  562. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  563. "shasum": ""
  564. },
  565. "require": {
  566. "php": ">= 7"
  567. },
  568. "require-dev": {
  569. "phpunit/phpunit": "4.*|5.*",
  570. "vimeo/psalm": "^1"
  571. },
  572. "suggest": {
  573. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  574. },
  575. "type": "library",
  576. "notification-url": "https://packagist.org/downloads/",
  577. "license": [
  578. "MIT"
  579. ],
  580. "authors": [
  581. {
  582. "name": "Paragon Initiative Enterprises",
  583. "email": "security@paragonie.com",
  584. "homepage": "https://paragonie.com"
  585. }
  586. ],
  587. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  588. "keywords": [
  589. "csprng",
  590. "polyfill",
  591. "pseudorandom",
  592. "random"
  593. ],
  594. "support": {
  595. "email": "info@paragonie.com",
  596. "issues": "https://github.com/paragonie/random_compat/issues",
  597. "source": "https://github.com/paragonie/random_compat"
  598. },
  599. "time": "2020-10-15T08:29:30+00:00"
  600. },
  601. {
  602. "name": "swiftmailer/swiftmailer",
  603. "version": "v6.3.0",
  604. "source": {
  605. "type": "git",
  606. "url": "https://github.com/swiftmailer/swiftmailer.git",
  607. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c"
  608. },
  609. "dist": {
  610. "type": "zip",
  611. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c",
  612. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  613. "shasum": ""
  614. },
  615. "require": {
  616. "egulias/email-validator": "^2.0|^3.1",
  617. "php": ">=7.0.0",
  618. "symfony/polyfill-iconv": "^1.0",
  619. "symfony/polyfill-intl-idn": "^1.10",
  620. "symfony/polyfill-mbstring": "^1.0"
  621. },
  622. "require-dev": {
  623. "mockery/mockery": "^1.0",
  624. "symfony/phpunit-bridge": "^4.4|^5.4"
  625. },
  626. "suggest": {
  627. "ext-intl": "Needed to support internationalized email addresses"
  628. },
  629. "type": "library",
  630. "extra": {
  631. "branch-alias": {
  632. "dev-master": "6.2-dev"
  633. }
  634. },
  635. "autoload": {
  636. "files": [
  637. "lib/swift_required.php"
  638. ]
  639. },
  640. "notification-url": "https://packagist.org/downloads/",
  641. "license": [
  642. "MIT"
  643. ],
  644. "authors": [
  645. {
  646. "name": "Chris Corbyn"
  647. },
  648. {
  649. "name": "Fabien Potencier",
  650. "email": "fabien@symfony.com"
  651. }
  652. ],
  653. "description": "Swiftmailer, free feature-rich PHP mailer",
  654. "homepage": "https://swiftmailer.symfony.com",
  655. "keywords": [
  656. "email",
  657. "mail",
  658. "mailer"
  659. ],
  660. "support": {
  661. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  662. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0"
  663. },
  664. "funding": [
  665. {
  666. "url": "https://github.com/fabpot",
  667. "type": "github"
  668. },
  669. {
  670. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  671. "type": "tidelift"
  672. }
  673. ],
  674. "abandoned": "symfony/mailer",
  675. "time": "2021-10-18T15:26:12+00:00"
  676. },
  677. {
  678. "name": "symfony/polyfill-iconv",
  679. "version": "v1.26.0",
  680. "source": {
  681. "type": "git",
  682. "url": "https://github.com/symfony/polyfill-iconv.git",
  683. "reference": "143f1881e655bebca1312722af8068de235ae5dc"
  684. },
  685. "dist": {
  686. "type": "zip",
  687. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/143f1881e655bebca1312722af8068de235ae5dc",
  688. "reference": "143f1881e655bebca1312722af8068de235ae5dc",
  689. "shasum": ""
  690. },
  691. "require": {
  692. "php": ">=7.1"
  693. },
  694. "provide": {
  695. "ext-iconv": "*"
  696. },
  697. "suggest": {
  698. "ext-iconv": "For best performance"
  699. },
  700. "type": "library",
  701. "extra": {
  702. "branch-alias": {
  703. "dev-main": "1.26-dev"
  704. },
  705. "thanks": {
  706. "name": "symfony/polyfill",
  707. "url": "https://github.com/symfony/polyfill"
  708. }
  709. },
  710. "autoload": {
  711. "files": [
  712. "bootstrap.php"
  713. ],
  714. "psr-4": {
  715. "Symfony\\Polyfill\\Iconv\\": ""
  716. }
  717. },
  718. "notification-url": "https://packagist.org/downloads/",
  719. "license": [
  720. "MIT"
  721. ],
  722. "authors": [
  723. {
  724. "name": "Nicolas Grekas",
  725. "email": "p@tchwork.com"
  726. },
  727. {
  728. "name": "Symfony Community",
  729. "homepage": "https://symfony.com/contributors"
  730. }
  731. ],
  732. "description": "Symfony polyfill for the Iconv extension",
  733. "homepage": "https://symfony.com",
  734. "keywords": [
  735. "compatibility",
  736. "iconv",
  737. "polyfill",
  738. "portable",
  739. "shim"
  740. ],
  741. "support": {
  742. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.26.0"
  743. },
  744. "funding": [
  745. {
  746. "url": "https://symfony.com/sponsor",
  747. "type": "custom"
  748. },
  749. {
  750. "url": "https://github.com/fabpot",
  751. "type": "github"
  752. },
  753. {
  754. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  755. "type": "tidelift"
  756. }
  757. ],
  758. "time": "2022-05-24T11:49:31+00:00"
  759. },
  760. {
  761. "name": "symfony/polyfill-intl-idn",
  762. "version": "v1.26.0",
  763. "source": {
  764. "type": "git",
  765. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  766. "reference": "59a8d271f00dd0e4c2e518104cc7963f655a1aa8"
  767. },
  768. "dist": {
  769. "type": "zip",
  770. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/59a8d271f00dd0e4c2e518104cc7963f655a1aa8",
  771. "reference": "59a8d271f00dd0e4c2e518104cc7963f655a1aa8",
  772. "shasum": ""
  773. },
  774. "require": {
  775. "php": ">=7.1",
  776. "symfony/polyfill-intl-normalizer": "^1.10",
  777. "symfony/polyfill-php72": "^1.10"
  778. },
  779. "suggest": {
  780. "ext-intl": "For best performance"
  781. },
  782. "type": "library",
  783. "extra": {
  784. "branch-alias": {
  785. "dev-main": "1.26-dev"
  786. },
  787. "thanks": {
  788. "name": "symfony/polyfill",
  789. "url": "https://github.com/symfony/polyfill"
  790. }
  791. },
  792. "autoload": {
  793. "files": [
  794. "bootstrap.php"
  795. ],
  796. "psr-4": {
  797. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  798. }
  799. },
  800. "notification-url": "https://packagist.org/downloads/",
  801. "license": [
  802. "MIT"
  803. ],
  804. "authors": [
  805. {
  806. "name": "Laurent Bassin",
  807. "email": "laurent@bassin.info"
  808. },
  809. {
  810. "name": "Trevor Rowbotham",
  811. "email": "trevor.rowbotham@pm.me"
  812. },
  813. {
  814. "name": "Symfony Community",
  815. "homepage": "https://symfony.com/contributors"
  816. }
  817. ],
  818. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  819. "homepage": "https://symfony.com",
  820. "keywords": [
  821. "compatibility",
  822. "idn",
  823. "intl",
  824. "polyfill",
  825. "portable",
  826. "shim"
  827. ],
  828. "support": {
  829. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.26.0"
  830. },
  831. "funding": [
  832. {
  833. "url": "https://symfony.com/sponsor",
  834. "type": "custom"
  835. },
  836. {
  837. "url": "https://github.com/fabpot",
  838. "type": "github"
  839. },
  840. {
  841. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  842. "type": "tidelift"
  843. }
  844. ],
  845. "time": "2022-05-24T11:49:31+00:00"
  846. },
  847. {
  848. "name": "symfony/polyfill-intl-normalizer",
  849. "version": "v1.26.0",
  850. "source": {
  851. "type": "git",
  852. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  853. "reference": "219aa369ceff116e673852dce47c3a41794c14bd"
  854. },
  855. "dist": {
  856. "type": "zip",
  857. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/219aa369ceff116e673852dce47c3a41794c14bd",
  858. "reference": "219aa369ceff116e673852dce47c3a41794c14bd",
  859. "shasum": ""
  860. },
  861. "require": {
  862. "php": ">=7.1"
  863. },
  864. "suggest": {
  865. "ext-intl": "For best performance"
  866. },
  867. "type": "library",
  868. "extra": {
  869. "branch-alias": {
  870. "dev-main": "1.26-dev"
  871. },
  872. "thanks": {
  873. "name": "symfony/polyfill",
  874. "url": "https://github.com/symfony/polyfill"
  875. }
  876. },
  877. "autoload": {
  878. "files": [
  879. "bootstrap.php"
  880. ],
  881. "psr-4": {
  882. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  883. },
  884. "classmap": [
  885. "Resources/stubs"
  886. ]
  887. },
  888. "notification-url": "https://packagist.org/downloads/",
  889. "license": [
  890. "MIT"
  891. ],
  892. "authors": [
  893. {
  894. "name": "Nicolas Grekas",
  895. "email": "p@tchwork.com"
  896. },
  897. {
  898. "name": "Symfony Community",
  899. "homepage": "https://symfony.com/contributors"
  900. }
  901. ],
  902. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  903. "homepage": "https://symfony.com",
  904. "keywords": [
  905. "compatibility",
  906. "intl",
  907. "normalizer",
  908. "polyfill",
  909. "portable",
  910. "shim"
  911. ],
  912. "support": {
  913. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.26.0"
  914. },
  915. "funding": [
  916. {
  917. "url": "https://symfony.com/sponsor",
  918. "type": "custom"
  919. },
  920. {
  921. "url": "https://github.com/fabpot",
  922. "type": "github"
  923. },
  924. {
  925. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  926. "type": "tidelift"
  927. }
  928. ],
  929. "time": "2022-05-24T11:49:31+00:00"
  930. },
  931. {
  932. "name": "symfony/polyfill-mbstring",
  933. "version": "v1.26.0",
  934. "source": {
  935. "type": "git",
  936. "url": "https://github.com/symfony/polyfill-mbstring.git",
  937. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e"
  938. },
  939. "dist": {
  940. "type": "zip",
  941. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  942. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  943. "shasum": ""
  944. },
  945. "require": {
  946. "php": ">=7.1"
  947. },
  948. "provide": {
  949. "ext-mbstring": "*"
  950. },
  951. "suggest": {
  952. "ext-mbstring": "For best performance"
  953. },
  954. "type": "library",
  955. "extra": {
  956. "branch-alias": {
  957. "dev-main": "1.26-dev"
  958. },
  959. "thanks": {
  960. "name": "symfony/polyfill",
  961. "url": "https://github.com/symfony/polyfill"
  962. }
  963. },
  964. "autoload": {
  965. "files": [
  966. "bootstrap.php"
  967. ],
  968. "psr-4": {
  969. "Symfony\\Polyfill\\Mbstring\\": ""
  970. }
  971. },
  972. "notification-url": "https://packagist.org/downloads/",
  973. "license": [
  974. "MIT"
  975. ],
  976. "authors": [
  977. {
  978. "name": "Nicolas Grekas",
  979. "email": "p@tchwork.com"
  980. },
  981. {
  982. "name": "Symfony Community",
  983. "homepage": "https://symfony.com/contributors"
  984. }
  985. ],
  986. "description": "Symfony polyfill for the Mbstring extension",
  987. "homepage": "https://symfony.com",
  988. "keywords": [
  989. "compatibility",
  990. "mbstring",
  991. "polyfill",
  992. "portable",
  993. "shim"
  994. ],
  995. "support": {
  996. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.26.0"
  997. },
  998. "funding": [
  999. {
  1000. "url": "https://symfony.com/sponsor",
  1001. "type": "custom"
  1002. },
  1003. {
  1004. "url": "https://github.com/fabpot",
  1005. "type": "github"
  1006. },
  1007. {
  1008. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1009. "type": "tidelift"
  1010. }
  1011. ],
  1012. "time": "2022-05-24T11:49:31+00:00"
  1013. },
  1014. {
  1015. "name": "symfony/polyfill-php72",
  1016. "version": "v1.26.0",
  1017. "source": {
  1018. "type": "git",
  1019. "url": "https://github.com/symfony/polyfill-php72.git",
  1020. "reference": "bf44a9fd41feaac72b074de600314a93e2ae78e2"
  1021. },
  1022. "dist": {
  1023. "type": "zip",
  1024. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/bf44a9fd41feaac72b074de600314a93e2ae78e2",
  1025. "reference": "bf44a9fd41feaac72b074de600314a93e2ae78e2",
  1026. "shasum": ""
  1027. },
  1028. "require": {
  1029. "php": ">=7.1"
  1030. },
  1031. "type": "library",
  1032. "extra": {
  1033. "branch-alias": {
  1034. "dev-main": "1.26-dev"
  1035. },
  1036. "thanks": {
  1037. "name": "symfony/polyfill",
  1038. "url": "https://github.com/symfony/polyfill"
  1039. }
  1040. },
  1041. "autoload": {
  1042. "files": [
  1043. "bootstrap.php"
  1044. ],
  1045. "psr-4": {
  1046. "Symfony\\Polyfill\\Php72\\": ""
  1047. }
  1048. },
  1049. "notification-url": "https://packagist.org/downloads/",
  1050. "license": [
  1051. "MIT"
  1052. ],
  1053. "authors": [
  1054. {
  1055. "name": "Nicolas Grekas",
  1056. "email": "p@tchwork.com"
  1057. },
  1058. {
  1059. "name": "Symfony Community",
  1060. "homepage": "https://symfony.com/contributors"
  1061. }
  1062. ],
  1063. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  1064. "homepage": "https://symfony.com",
  1065. "keywords": [
  1066. "compatibility",
  1067. "polyfill",
  1068. "portable",
  1069. "shim"
  1070. ],
  1071. "support": {
  1072. "source": "https://github.com/symfony/polyfill-php72/tree/v1.26.0"
  1073. },
  1074. "funding": [
  1075. {
  1076. "url": "https://symfony.com/sponsor",
  1077. "type": "custom"
  1078. },
  1079. {
  1080. "url": "https://github.com/fabpot",
  1081. "type": "github"
  1082. },
  1083. {
  1084. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1085. "type": "tidelift"
  1086. }
  1087. ],
  1088. "time": "2022-05-24T11:49:31+00:00"
  1089. },
  1090. {
  1091. "name": "yiisoft/yii2",
  1092. "version": "2.0.46",
  1093. "source": {
  1094. "type": "git",
  1095. "url": "https://github.com/yiisoft/yii2-framework.git",
  1096. "reference": "d73259c3bc886648a6875109f9f09cddeff03708"
  1097. },
  1098. "dist": {
  1099. "type": "zip",
  1100. "url": "https://api.github.com/repos/yiisoft/yii2-framework/zipball/d73259c3bc886648a6875109f9f09cddeff03708",
  1101. "reference": "d73259c3bc886648a6875109f9f09cddeff03708",
  1102. "shasum": ""
  1103. },
  1104. "require": {
  1105. "bower-asset/inputmask": "~3.2.2 | ~3.3.5",
  1106. "bower-asset/jquery": "3.6.*@stable | 3.5.*@stable | 3.4.*@stable | 3.3.*@stable | 3.2.*@stable | 3.1.*@stable | 2.2.*@stable | 2.1.*@stable | 1.11.*@stable | 1.12.*@stable",
  1107. "bower-asset/punycode": "1.3.*",
  1108. "bower-asset/yii2-pjax": "~2.0.1",
  1109. "cebe/markdown": "~1.0.0 | ~1.1.0 | ~1.2.0",
  1110. "ext-ctype": "*",
  1111. "ext-mbstring": "*",
  1112. "ezyang/htmlpurifier": "~4.6",
  1113. "lib-pcre": "*",
  1114. "paragonie/random_compat": ">=1",
  1115. "php": ">=5.4.0",
  1116. "yiisoft/yii2-composer": "~2.0.4"
  1117. },
  1118. "bin": [
  1119. "yii"
  1120. ],
  1121. "type": "library",
  1122. "extra": {
  1123. "branch-alias": {
  1124. "dev-master": "2.0.x-dev"
  1125. }
  1126. },
  1127. "autoload": {
  1128. "psr-4": {
  1129. "yii\\": ""
  1130. }
  1131. },
  1132. "notification-url": "https://packagist.org/downloads/",
  1133. "license": [
  1134. "BSD-3-Clause"
  1135. ],
  1136. "authors": [
  1137. {
  1138. "name": "Qiang Xue",
  1139. "email": "qiang.xue@gmail.com",
  1140. "homepage": "https://www.yiiframework.com/",
  1141. "role": "Founder and project lead"
  1142. },
  1143. {
  1144. "name": "Alexander Makarov",
  1145. "email": "sam@rmcreative.ru",
  1146. "homepage": "https://rmcreative.ru/",
  1147. "role": "Core framework development"
  1148. },
  1149. {
  1150. "name": "Maurizio Domba",
  1151. "homepage": "http://mdomba.info/",
  1152. "role": "Core framework development"
  1153. },
  1154. {
  1155. "name": "Carsten Brandt",
  1156. "email": "mail@cebe.cc",
  1157. "homepage": "https://www.cebe.cc/",
  1158. "role": "Core framework development"
  1159. },
  1160. {
  1161. "name": "Timur Ruziev",
  1162. "email": "resurtm@gmail.com",
  1163. "homepage": "http://resurtm.com/",
  1164. "role": "Core framework development"
  1165. },
  1166. {
  1167. "name": "Paul Klimov",
  1168. "email": "klimov.paul@gmail.com",
  1169. "role": "Core framework development"
  1170. },
  1171. {
  1172. "name": "Dmitry Naumenko",
  1173. "email": "d.naumenko.a@gmail.com",
  1174. "role": "Core framework development"
  1175. },
  1176. {
  1177. "name": "Boudewijn Vahrmeijer",
  1178. "email": "info@dynasource.eu",
  1179. "homepage": "http://dynasource.eu",
  1180. "role": "Core framework development"
  1181. }
  1182. ],
  1183. "description": "Yii PHP Framework Version 2",
  1184. "homepage": "https://www.yiiframework.com/",
  1185. "keywords": [
  1186. "framework",
  1187. "yii2"
  1188. ],
  1189. "support": {
  1190. "forum": "https://forum.yiiframework.com/",
  1191. "irc": "ircs://irc.libera.chat:6697/yii",
  1192. "issues": "https://github.com/yiisoft/yii2/issues?state=open",
  1193. "source": "https://github.com/yiisoft/yii2",
  1194. "wiki": "https://www.yiiframework.com/wiki"
  1195. },
  1196. "funding": [
  1197. {
  1198. "url": "https://github.com/yiisoft",
  1199. "type": "github"
  1200. },
  1201. {
  1202. "url": "https://opencollective.com/yiisoft",
  1203. "type": "open_collective"
  1204. },
  1205. {
  1206. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2",
  1207. "type": "tidelift"
  1208. }
  1209. ],
  1210. "time": "2022-08-18T22:18:45+00:00"
  1211. },
  1212. {
  1213. "name": "yiisoft/yii2-bootstrap4",
  1214. "version": "2.0.10",
  1215. "source": {
  1216. "type": "git",
  1217. "url": "https://github.com/yiisoft/yii2-bootstrap4.git",
  1218. "reference": "e6d0e58f43d3910129d554ac183aac17f65be639"
  1219. },
  1220. "dist": {
  1221. "type": "zip",
  1222. "url": "https://api.github.com/repos/yiisoft/yii2-bootstrap4/zipball/e6d0e58f43d3910129d554ac183aac17f65be639",
  1223. "reference": "e6d0e58f43d3910129d554ac183aac17f65be639",
  1224. "shasum": ""
  1225. },
  1226. "require": {
  1227. "npm-asset/bootstrap": "^4.3",
  1228. "yiisoft/yii2": "~2.0"
  1229. },
  1230. "require-dev": {
  1231. "cweagans/composer-patches": "^1.7",
  1232. "phpunit/phpunit": "4.8.34",
  1233. "yiisoft/yii2-coding-standards": "~2.0"
  1234. },
  1235. "type": "yii2-extension",
  1236. "extra": {
  1237. "branch-alias": {
  1238. "dev-master": "1.0.x-dev"
  1239. },
  1240. "patches": {
  1241. "phpunit/phpunit-mock-objects": {
  1242. "Fix PHP 7 and 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_mock_objects.patch"
  1243. },
  1244. "phpunit/phpunit": {
  1245. "Fix PHP 7 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php7.patch",
  1246. "Fix PHP 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php8.patch"
  1247. }
  1248. }
  1249. },
  1250. "autoload": {
  1251. "psr-4": {
  1252. "yii\\bootstrap4\\": "src"
  1253. }
  1254. },
  1255. "notification-url": "https://packagist.org/downloads/",
  1256. "license": [
  1257. "BSD-3-Clause"
  1258. ],
  1259. "authors": [
  1260. {
  1261. "name": "Qiang Xue",
  1262. "email": "qiang.xue@gmail.com",
  1263. "homepage": "http://www.yiiframework.com/"
  1264. },
  1265. {
  1266. "name": "Alexander Makarov",
  1267. "email": "sam@rmcreative.ru",
  1268. "homepage": "http://rmcreative.ru/"
  1269. },
  1270. {
  1271. "name": "Antonio Ramirez",
  1272. "email": "amigo.cobos@gmail.com"
  1273. },
  1274. {
  1275. "name": "Paul Klimov",
  1276. "email": "klimov.paul@gmail.com"
  1277. },
  1278. {
  1279. "name": "Simon Karlen",
  1280. "email": "simi.albi@outlook.com"
  1281. }
  1282. ],
  1283. "description": "The Twitter Bootstrap extension for the Yii framework",
  1284. "keywords": [
  1285. "bootstrap",
  1286. "bootstrap4",
  1287. "yii2"
  1288. ],
  1289. "support": {
  1290. "forum": "http://www.yiiframework.com/forum/",
  1291. "irc": "irc://irc.freenode.net/yii",
  1292. "issues": "https://github.com/yiisoft/yii2-bootstrap4/issues",
  1293. "source": "https://github.com/yiisoft/yii2-bootstrap4",
  1294. "wiki": "http://www.yiiframework.com/wiki/"
  1295. },
  1296. "funding": [
  1297. {
  1298. "url": "https://github.com/yiisoft",
  1299. "type": "github"
  1300. },
  1301. {
  1302. "url": "https://opencollective.com/yiisoft",
  1303. "type": "open_collective"
  1304. },
  1305. {
  1306. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2-bootstrap4",
  1307. "type": "tidelift"
  1308. }
  1309. ],
  1310. "time": "2021-05-05T21:56:41+00:00"
  1311. },
  1312. {
  1313. "name": "yiisoft/yii2-composer",
  1314. "version": "2.0.10",
  1315. "source": {
  1316. "type": "git",
  1317. "url": "https://github.com/yiisoft/yii2-composer.git",
  1318. "reference": "94bb3f66e779e2774f8776d6e1bdeab402940510"
  1319. },
  1320. "dist": {
  1321. "type": "zip",
  1322. "url": "https://api.github.com/repos/yiisoft/yii2-composer/zipball/94bb3f66e779e2774f8776d6e1bdeab402940510",
  1323. "reference": "94bb3f66e779e2774f8776d6e1bdeab402940510",
  1324. "shasum": ""
  1325. },
  1326. "require": {
  1327. "composer-plugin-api": "^1.0 | ^2.0"
  1328. },
  1329. "require-dev": {
  1330. "composer/composer": "^1.0 | ^2.0@dev",
  1331. "phpunit/phpunit": "<7"
  1332. },
  1333. "type": "composer-plugin",
  1334. "extra": {
  1335. "class": "yii\\composer\\Plugin",
  1336. "branch-alias": {
  1337. "dev-master": "2.0.x-dev"
  1338. }
  1339. },
  1340. "autoload": {
  1341. "psr-4": {
  1342. "yii\\composer\\": ""
  1343. }
  1344. },
  1345. "notification-url": "https://packagist.org/downloads/",
  1346. "license": [
  1347. "BSD-3-Clause"
  1348. ],
  1349. "authors": [
  1350. {
  1351. "name": "Qiang Xue",
  1352. "email": "qiang.xue@gmail.com"
  1353. },
  1354. {
  1355. "name": "Carsten Brandt",
  1356. "email": "mail@cebe.cc"
  1357. }
  1358. ],
  1359. "description": "The composer plugin for Yii extension installer",
  1360. "keywords": [
  1361. "composer",
  1362. "extension installer",
  1363. "yii2"
  1364. ],
  1365. "support": {
  1366. "forum": "http://www.yiiframework.com/forum/",
  1367. "irc": "irc://irc.freenode.net/yii",
  1368. "issues": "https://github.com/yiisoft/yii2-composer/issues",
  1369. "source": "https://github.com/yiisoft/yii2-composer",
  1370. "wiki": "http://www.yiiframework.com/wiki/"
  1371. },
  1372. "funding": [
  1373. {
  1374. "url": "https://github.com/yiisoft",
  1375. "type": "github"
  1376. },
  1377. {
  1378. "url": "https://opencollective.com/yiisoft",
  1379. "type": "open_collective"
  1380. },
  1381. {
  1382. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2-composer",
  1383. "type": "tidelift"
  1384. }
  1385. ],
  1386. "time": "2020-06-24T00:04:01+00:00"
  1387. },
  1388. {
  1389. "name": "yiisoft/yii2-swiftmailer",
  1390. "version": "2.1.3",
  1391. "source": {
  1392. "type": "git",
  1393. "url": "https://github.com/yiisoft/yii2-swiftmailer.git",
  1394. "reference": "7b7ec871b4a63c0abbcd10e1ee3fb5be22f8b340"
  1395. },
  1396. "dist": {
  1397. "type": "zip",
  1398. "url": "https://api.github.com/repos/yiisoft/yii2-swiftmailer/zipball/7b7ec871b4a63c0abbcd10e1ee3fb5be22f8b340",
  1399. "reference": "7b7ec871b4a63c0abbcd10e1ee3fb5be22f8b340",
  1400. "shasum": ""
  1401. },
  1402. "require": {
  1403. "swiftmailer/swiftmailer": "~6.0",
  1404. "yiisoft/yii2": ">=2.0.4"
  1405. },
  1406. "require-dev": {
  1407. "cweagans/composer-patches": "^1.7",
  1408. "phpunit/phpunit": "4.8.34"
  1409. },
  1410. "type": "yii2-extension",
  1411. "extra": {
  1412. "branch-alias": {
  1413. "dev-master": "2.1.x-dev"
  1414. },
  1415. "composer-exit-on-patch-failure": true,
  1416. "patches": {
  1417. "phpunit/phpunit-mock-objects": {
  1418. "Fix PHP 7 and 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_mock_objects.patch"
  1419. },
  1420. "phpunit/phpunit": {
  1421. "Fix PHP 7 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php7.patch",
  1422. "Fix PHP 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php8.patch"
  1423. }
  1424. }
  1425. },
  1426. "autoload": {
  1427. "psr-4": {
  1428. "yii\\swiftmailer\\": "src"
  1429. }
  1430. },
  1431. "notification-url": "https://packagist.org/downloads/",
  1432. "license": [
  1433. "BSD-3-Clause"
  1434. ],
  1435. "authors": [
  1436. {
  1437. "name": "Paul Klimov",
  1438. "email": "klimov.paul@gmail.com"
  1439. }
  1440. ],
  1441. "description": "The SwiftMailer integration for the Yii framework",
  1442. "keywords": [
  1443. "email",
  1444. "mail",
  1445. "mailer",
  1446. "swift",
  1447. "swiftmailer",
  1448. "yii2"
  1449. ],
  1450. "support": {
  1451. "forum": "http://www.yiiframework.com/forum/",
  1452. "irc": "irc://irc.freenode.net/yii",
  1453. "issues": "https://github.com/yiisoft/yii2-swiftmailer/issues",
  1454. "source": "https://github.com/yiisoft/yii2-swiftmailer",
  1455. "wiki": "http://www.yiiframework.com/wiki/"
  1456. },
  1457. "funding": [
  1458. {
  1459. "url": "https://github.com/yiisoft",
  1460. "type": "github"
  1461. },
  1462. {
  1463. "url": "https://opencollective.com/yiisoft",
  1464. "type": "open_collective"
  1465. },
  1466. {
  1467. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2-swiftmailer",
  1468. "type": "tidelift"
  1469. }
  1470. ],
  1471. "time": "2021-12-30T08:48:48+00:00"
  1472. }
  1473. ],
  1474. "packages-dev": [
  1475. {
  1476. "name": "behat/gherkin",
  1477. "version": "v4.9.0",
  1478. "source": {
  1479. "type": "git",
  1480. "url": "https://github.com/Behat/Gherkin.git",
  1481. "reference": "0bc8d1e30e96183e4f36db9dc79caead300beff4"
  1482. },
  1483. "dist": {
  1484. "type": "zip",
  1485. "url": "https://api.github.com/repos/Behat/Gherkin/zipball/0bc8d1e30e96183e4f36db9dc79caead300beff4",
  1486. "reference": "0bc8d1e30e96183e4f36db9dc79caead300beff4",
  1487. "shasum": ""
  1488. },
  1489. "require": {
  1490. "php": "~7.2|~8.0"
  1491. },
  1492. "require-dev": {
  1493. "cucumber/cucumber": "dev-gherkin-22.0.0",
  1494. "phpunit/phpunit": "~8|~9",
  1495. "symfony/yaml": "~3|~4|~5"
  1496. },
  1497. "suggest": {
  1498. "symfony/yaml": "If you want to parse features, represented in YAML files"
  1499. },
  1500. "type": "library",
  1501. "extra": {
  1502. "branch-alias": {
  1503. "dev-master": "4.x-dev"
  1504. }
  1505. },
  1506. "autoload": {
  1507. "psr-0": {
  1508. "Behat\\Gherkin": "src/"
  1509. }
  1510. },
  1511. "notification-url": "https://packagist.org/downloads/",
  1512. "license": [
  1513. "MIT"
  1514. ],
  1515. "authors": [
  1516. {
  1517. "name": "Konstantin Kudryashov",
  1518. "email": "ever.zet@gmail.com",
  1519. "homepage": "http://everzet.com"
  1520. }
  1521. ],
  1522. "description": "Gherkin DSL parser for PHP",
  1523. "homepage": "http://behat.org/",
  1524. "keywords": [
  1525. "BDD",
  1526. "Behat",
  1527. "Cucumber",
  1528. "DSL",
  1529. "gherkin",
  1530. "parser"
  1531. ],
  1532. "support": {
  1533. "issues": "https://github.com/Behat/Gherkin/issues",
  1534. "source": "https://github.com/Behat/Gherkin/tree/v4.9.0"
  1535. },
  1536. "time": "2021-10-12T13:05:09+00:00"
  1537. },
  1538. {
  1539. "name": "codeception/codeception",
  1540. "version": "4.2.2",
  1541. "source": {
  1542. "type": "git",
  1543. "url": "https://github.com/Codeception/Codeception.git",
  1544. "reference": "b88014f3348c93f3df99dc6d0967b0dbfa804474"
  1545. },
  1546. "dist": {
  1547. "type": "zip",
  1548. "url": "https://api.github.com/repos/Codeception/Codeception/zipball/b88014f3348c93f3df99dc6d0967b0dbfa804474",
  1549. "reference": "b88014f3348c93f3df99dc6d0967b0dbfa804474",
  1550. "shasum": ""
  1551. },
  1552. "require": {
  1553. "behat/gherkin": "^4.4.0",
  1554. "codeception/lib-asserts": "^1.0 | 2.0.*@dev",
  1555. "codeception/phpunit-wrapper": ">6.0.15 <6.1.0 | ^6.6.1 | ^7.7.1 | ^8.1.1 | ^9.0",
  1556. "codeception/stub": "^2.0 | ^3.0 | ^4.0",
  1557. "ext-curl": "*",
  1558. "ext-json": "*",
  1559. "ext-mbstring": "*",
  1560. "guzzlehttp/psr7": "^1.4 | ^2.0",
  1561. "php": ">=5.6.0 <9.0",
  1562. "symfony/console": ">=2.7 <6.0",
  1563. "symfony/css-selector": ">=2.7 <6.0",
  1564. "symfony/event-dispatcher": ">=2.7 <6.0",
  1565. "symfony/finder": ">=2.7 <6.0",
  1566. "symfony/yaml": ">=2.7 <6.0"
  1567. },
  1568. "require-dev": {
  1569. "codeception/module-asserts": "^1.0 | 2.0.*@dev",
  1570. "codeception/module-cli": "^1.0 | 2.0.*@dev",
  1571. "codeception/module-db": "^1.0 | 2.0.*@dev",
  1572. "codeception/module-filesystem": "^1.0 | 2.0.*@dev",
  1573. "codeception/module-phpbrowser": "^1.0 | 2.0.*@dev",
  1574. "codeception/specify": "~0.3",
  1575. "codeception/util-universalframework": "*@dev",
  1576. "monolog/monolog": "~1.8",
  1577. "squizlabs/php_codesniffer": "~2.0",
  1578. "symfony/process": ">=2.7 <6.0",
  1579. "vlucas/phpdotenv": "^2.0 | ^3.0 | ^4.0 | ^5.0"
  1580. },
  1581. "suggest": {
  1582. "codeception/specify": "BDD-style code blocks",
  1583. "codeception/verify": "BDD-style assertions",
  1584. "hoa/console": "For interactive console functionality",
  1585. "stecman/symfony-console-completion": "For BASH autocompletion",
  1586. "symfony/phpunit-bridge": "For phpunit-bridge support"
  1587. },
  1588. "bin": [
  1589. "codecept"
  1590. ],
  1591. "type": "library",
  1592. "extra": {
  1593. "branch-alias": []
  1594. },
  1595. "autoload": {
  1596. "files": [
  1597. "functions.php"
  1598. ],
  1599. "psr-4": {
  1600. "Codeception\\": "src/Codeception",
  1601. "Codeception\\Extension\\": "ext"
  1602. }
  1603. },
  1604. "notification-url": "https://packagist.org/downloads/",
  1605. "license": [
  1606. "MIT"
  1607. ],
  1608. "authors": [
  1609. {
  1610. "name": "Michael Bodnarchuk",
  1611. "email": "davert@mail.ua",
  1612. "homepage": "https://codegyre.com"
  1613. }
  1614. ],
  1615. "description": "BDD-style testing framework",
  1616. "homepage": "https://codeception.com/",
  1617. "keywords": [
  1618. "BDD",
  1619. "TDD",
  1620. "acceptance testing",
  1621. "functional testing",
  1622. "unit testing"
  1623. ],
  1624. "support": {
  1625. "issues": "https://github.com/Codeception/Codeception/issues",
  1626. "source": "https://github.com/Codeception/Codeception/tree/4.2.2"
  1627. },
  1628. "funding": [
  1629. {
  1630. "url": "https://opencollective.com/codeception",
  1631. "type": "open_collective"
  1632. }
  1633. ],
  1634. "time": "2022-08-13T13:28:25+00:00"
  1635. },
  1636. {
  1637. "name": "codeception/lib-asserts",
  1638. "version": "1.13.2",
  1639. "source": {
  1640. "type": "git",
  1641. "url": "https://github.com/Codeception/lib-asserts.git",
  1642. "reference": "184231d5eab66bc69afd6b9429344d80c67a33b6"
  1643. },
  1644. "dist": {
  1645. "type": "zip",
  1646. "url": "https://api.github.com/repos/Codeception/lib-asserts/zipball/184231d5eab66bc69afd6b9429344d80c67a33b6",
  1647. "reference": "184231d5eab66bc69afd6b9429344d80c67a33b6",
  1648. "shasum": ""
  1649. },
  1650. "require": {
  1651. "codeception/phpunit-wrapper": ">6.0.15 <6.1.0 | ^6.6.1 | ^7.7.1 | ^8.0.3 | ^9.0",
  1652. "ext-dom": "*",
  1653. "php": ">=5.6.0 <9.0"
  1654. },
  1655. "type": "library",
  1656. "autoload": {
  1657. "classmap": [
  1658. "src/"
  1659. ]
  1660. },
  1661. "notification-url": "https://packagist.org/downloads/",
  1662. "license": [
  1663. "MIT"
  1664. ],
  1665. "authors": [
  1666. {
  1667. "name": "Michael Bodnarchuk",
  1668. "email": "davert@mail.ua",
  1669. "homepage": "http://codegyre.com"
  1670. },
  1671. {
  1672. "name": "Gintautas Miselis"
  1673. },
  1674. {
  1675. "name": "Gustavo Nieves",
  1676. "homepage": "https://medium.com/@ganieves"
  1677. }
  1678. ],
  1679. "description": "Assertion methods used by Codeception core and Asserts module",
  1680. "homepage": "https://codeception.com/",
  1681. "keywords": [
  1682. "codeception"
  1683. ],
  1684. "support": {
  1685. "issues": "https://github.com/Codeception/lib-asserts/issues",
  1686. "source": "https://github.com/Codeception/lib-asserts/tree/1.13.2"
  1687. },
  1688. "time": "2020-10-21T16:26:20+00:00"
  1689. },
  1690. {
  1691. "name": "codeception/lib-innerbrowser",
  1692. "version": "1.5.1",
  1693. "source": {
  1694. "type": "git",
  1695. "url": "https://github.com/Codeception/lib-innerbrowser.git",
  1696. "reference": "31b4b56ad53c3464fcb2c0a14d55a51a201bd3c2"
  1697. },
  1698. "dist": {
  1699. "type": "zip",
  1700. "url": "https://api.github.com/repos/Codeception/lib-innerbrowser/zipball/31b4b56ad53c3464fcb2c0a14d55a51a201bd3c2",
  1701. "reference": "31b4b56ad53c3464fcb2c0a14d55a51a201bd3c2",
  1702. "shasum": ""
  1703. },
  1704. "require": {
  1705. "codeception/codeception": "4.*@dev",
  1706. "ext-dom": "*",
  1707. "ext-json": "*",
  1708. "ext-mbstring": "*",
  1709. "php": ">=5.6.0 <9.0",
  1710. "symfony/browser-kit": ">=2.7 <6.0",
  1711. "symfony/dom-crawler": ">=2.7 <6.0"
  1712. },
  1713. "conflict": {
  1714. "codeception/codeception": "<4.0"
  1715. },
  1716. "require-dev": {
  1717. "codeception/util-universalframework": "dev-master"
  1718. },
  1719. "type": "library",
  1720. "autoload": {
  1721. "classmap": [
  1722. "src/"
  1723. ]
  1724. },
  1725. "notification-url": "https://packagist.org/downloads/",
  1726. "license": [
  1727. "MIT"
  1728. ],
  1729. "authors": [
  1730. {
  1731. "name": "Michael Bodnarchuk",
  1732. "email": "davert@mail.ua",
  1733. "homepage": "http://codegyre.com"
  1734. },
  1735. {
  1736. "name": "Gintautas Miselis"
  1737. }
  1738. ],
  1739. "description": "Parent library for all Codeception framework modules and PhpBrowser",
  1740. "homepage": "https://codeception.com/",
  1741. "keywords": [
  1742. "codeception"
  1743. ],
  1744. "support": {
  1745. "issues": "https://github.com/Codeception/lib-innerbrowser/issues",
  1746. "source": "https://github.com/Codeception/lib-innerbrowser/tree/1.5.1"
  1747. },
  1748. "time": "2021-08-30T15:21:42+00:00"
  1749. },
  1750. {
  1751. "name": "codeception/module-asserts",
  1752. "version": "1.3.1",
  1753. "source": {
  1754. "type": "git",
  1755. "url": "https://github.com/Codeception/module-asserts.git",
  1756. "reference": "59374f2fef0cabb9e8ddb53277e85cdca74328de"
  1757. },
  1758. "dist": {
  1759. "type": "zip",
  1760. "url": "https://api.github.com/repos/Codeception/module-asserts/zipball/59374f2fef0cabb9e8ddb53277e85cdca74328de",
  1761. "reference": "59374f2fef0cabb9e8ddb53277e85cdca74328de",
  1762. "shasum": ""
  1763. },
  1764. "require": {
  1765. "codeception/codeception": "*@dev",
  1766. "codeception/lib-asserts": "^1.13.1",
  1767. "php": ">=5.6.0 <9.0"
  1768. },
  1769. "conflict": {
  1770. "codeception/codeception": "<4.0"
  1771. },
  1772. "type": "library",
  1773. "autoload": {
  1774. "classmap": [
  1775. "src/"
  1776. ]
  1777. },
  1778. "notification-url": "https://packagist.org/downloads/",
  1779. "license": [
  1780. "MIT"
  1781. ],
  1782. "authors": [
  1783. {
  1784. "name": "Michael Bodnarchuk"
  1785. },
  1786. {
  1787. "name": "Gintautas Miselis"
  1788. },
  1789. {
  1790. "name": "Gustavo Nieves",
  1791. "homepage": "https://medium.com/@ganieves"
  1792. }
  1793. ],
  1794. "description": "Codeception module containing various assertions",
  1795. "homepage": "https://codeception.com/",
  1796. "keywords": [
  1797. "assertions",
  1798. "asserts",
  1799. "codeception"
  1800. ],
  1801. "support": {
  1802. "issues": "https://github.com/Codeception/module-asserts/issues",
  1803. "source": "https://github.com/Codeception/module-asserts/tree/1.3.1"
  1804. },
  1805. "time": "2020-10-21T16:48:15+00:00"
  1806. },
  1807. {
  1808. "name": "codeception/module-filesystem",
  1809. "version": "1.0.3",
  1810. "source": {
  1811. "type": "git",
  1812. "url": "https://github.com/Codeception/module-filesystem.git",
  1813. "reference": "781be167fb1557bfc9b61e0a4eac60a32c534ec1"
  1814. },
  1815. "dist": {
  1816. "type": "zip",
  1817. "url": "https://api.github.com/repos/Codeception/module-filesystem/zipball/781be167fb1557bfc9b61e0a4eac60a32c534ec1",
  1818. "reference": "781be167fb1557bfc9b61e0a4eac60a32c534ec1",
  1819. "shasum": ""
  1820. },
  1821. "require": {
  1822. "codeception/codeception": "^4.0",
  1823. "php": ">=5.6.0 <9.0",
  1824. "symfony/finder": ">=2.7 <6.0"
  1825. },
  1826. "conflict": {
  1827. "codeception/codeception": "<4.0"
  1828. },
  1829. "type": "library",
  1830. "autoload": {
  1831. "classmap": [
  1832. "src/"
  1833. ]
  1834. },
  1835. "notification-url": "https://packagist.org/downloads/",
  1836. "license": [
  1837. "MIT"
  1838. ],
  1839. "authors": [
  1840. {
  1841. "name": "Michael Bodnarchuk"
  1842. },
  1843. {
  1844. "name": "Gintautas Miselis"
  1845. }
  1846. ],
  1847. "description": "Codeception module for testing local filesystem",
  1848. "homepage": "http://codeception.com/",
  1849. "keywords": [
  1850. "codeception",
  1851. "filesystem"
  1852. ],
  1853. "support": {
  1854. "issues": "https://github.com/Codeception/module-filesystem/issues",
  1855. "source": "https://github.com/Codeception/module-filesystem/tree/1.0.3"
  1856. },
  1857. "time": "2020-10-24T14:46:40+00:00"
  1858. },
  1859. {
  1860. "name": "codeception/module-yii2",
  1861. "version": "1.1.5",
  1862. "source": {
  1863. "type": "git",
  1864. "url": "https://github.com/Codeception/module-yii2.git",
  1865. "reference": "14269d059b8eaedf3d414a673907bd874cd4ed04"
  1866. },
  1867. "dist": {
  1868. "type": "zip",
  1869. "url": "https://api.github.com/repos/Codeception/module-yii2/zipball/14269d059b8eaedf3d414a673907bd874cd4ed04",
  1870. "reference": "14269d059b8eaedf3d414a673907bd874cd4ed04",
  1871. "shasum": ""
  1872. },
  1873. "require": {
  1874. "codeception/codeception": "^4.0",
  1875. "codeception/lib-innerbrowser": "^1.0",
  1876. "php": ">=5.6.0 <=8.1 | ~8.1.0"
  1877. },
  1878. "require-dev": {
  1879. "codeception/module-asserts": "^1.3",
  1880. "codeception/module-filesystem": "^1.0",
  1881. "codeception/verify": "<2",
  1882. "codemix/yii2-localeurls": "^1.7",
  1883. "yiisoft/yii2": "dev-master",
  1884. "yiisoft/yii2-app-advanced": "dev-master"
  1885. },
  1886. "type": "library",
  1887. "autoload": {
  1888. "classmap": [
  1889. "src/"
  1890. ]
  1891. },
  1892. "notification-url": "https://packagist.org/downloads/",
  1893. "license": [
  1894. "MIT"
  1895. ],
  1896. "authors": [
  1897. {
  1898. "name": "Alexander Makarov"
  1899. },
  1900. {
  1901. "name": "Sam Mouse"
  1902. },
  1903. {
  1904. "name": "Michael Bodnarchuk"
  1905. }
  1906. ],
  1907. "description": "Codeception module for Yii2 framework",
  1908. "homepage": "http://codeception.com/",
  1909. "keywords": [
  1910. "codeception",
  1911. "yii2"
  1912. ],
  1913. "support": {
  1914. "issues": "https://github.com/Codeception/module-yii2/issues",
  1915. "source": "https://github.com/Codeception/module-yii2/tree/1.1.5"
  1916. },
  1917. "time": "2021-12-30T09:16:01+00:00"
  1918. },
  1919. {
  1920. "name": "codeception/phpunit-wrapper",
  1921. "version": "8.1.6",
  1922. "source": {
  1923. "type": "git",
  1924. "url": "https://github.com/Codeception/phpunit-wrapper.git",
  1925. "reference": "7d3479bab7e2b6349044db8af11cd05d57809f9c"
  1926. },
  1927. "dist": {
  1928. "type": "zip",
  1929. "url": "https://api.github.com/repos/Codeception/phpunit-wrapper/zipball/7d3479bab7e2b6349044db8af11cd05d57809f9c",
  1930. "reference": "7d3479bab7e2b6349044db8af11cd05d57809f9c",
  1931. "shasum": ""
  1932. },
  1933. "require": {
  1934. "php": ">=7.2",
  1935. "phpunit/php-code-coverage": "^7.0",
  1936. "phpunit/phpunit": "^8.0",
  1937. "sebastian/comparator": "^3.0",
  1938. "sebastian/diff": "^3.0"
  1939. },
  1940. "require-dev": {
  1941. "codeception/specify": "*",
  1942. "vlucas/phpdotenv": "^3.0"
  1943. },
  1944. "type": "library",
  1945. "autoload": {
  1946. "psr-4": {
  1947. "Codeception\\PHPUnit\\": "src/"
  1948. }
  1949. },
  1950. "notification-url": "https://packagist.org/downloads/",
  1951. "license": [
  1952. "MIT"
  1953. ],
  1954. "authors": [
  1955. {
  1956. "name": "Davert",
  1957. "email": "davert.php@resend.cc"
  1958. }
  1959. ],
  1960. "description": "PHPUnit classes used by Codeception",
  1961. "support": {
  1962. "issues": "https://github.com/Codeception/phpunit-wrapper/issues",
  1963. "source": "https://github.com/Codeception/phpunit-wrapper/tree/8.1.6"
  1964. },
  1965. "time": "2022-05-23T06:22:33+00:00"
  1966. },
  1967. {
  1968. "name": "codeception/stub",
  1969. "version": "3.7.0",
  1970. "source": {
  1971. "type": "git",
  1972. "url": "https://github.com/Codeception/Stub.git",
  1973. "reference": "468dd5fe659f131fc997f5196aad87512f9b1304"
  1974. },
  1975. "dist": {
  1976. "type": "zip",
  1977. "url": "https://api.github.com/repos/Codeception/Stub/zipball/468dd5fe659f131fc997f5196aad87512f9b1304",
  1978. "reference": "468dd5fe659f131fc997f5196aad87512f9b1304",
  1979. "shasum": ""
  1980. },
  1981. "require": {
  1982. "phpunit/phpunit": "^8.4 | ^9.0"
  1983. },
  1984. "type": "library",
  1985. "autoload": {
  1986. "psr-4": {
  1987. "Codeception\\": "src/"
  1988. }
  1989. },
  1990. "notification-url": "https://packagist.org/downloads/",
  1991. "license": [
  1992. "MIT"
  1993. ],
  1994. "description": "Flexible Stub wrapper for PHPUnit's Mock Builder",
  1995. "support": {
  1996. "issues": "https://github.com/Codeception/Stub/issues",
  1997. "source": "https://github.com/Codeception/Stub/tree/3.7.0"
  1998. },
  1999. "time": "2020-07-03T15:54:43+00:00"
  2000. },
  2001. {
  2002. "name": "codeception/verify",
  2003. "version": "1.1.0",
  2004. "source": {
  2005. "type": "git",
  2006. "url": "https://github.com/Codeception/Verify.git",
  2007. "reference": "fa0bb946b6d61279f461bcc5a677ac0ed5eab9b3"
  2008. },
  2009. "dist": {
  2010. "type": "zip",
  2011. "url": "https://api.github.com/repos/Codeception/Verify/zipball/fa0bb946b6d61279f461bcc5a677ac0ed5eab9b3",
  2012. "reference": "fa0bb946b6d61279f461bcc5a677ac0ed5eab9b3",
  2013. "shasum": ""
  2014. },
  2015. "require": {
  2016. "codeception/phpunit-wrapper": ">6.0.15 <6.1.0 | ^6.6.1 | ^7.7.1 | ^8.0.4",
  2017. "php": ">= 7.0",
  2018. "phpunit/phpunit": "> 6.0"
  2019. },
  2020. "type": "library",
  2021. "autoload": {
  2022. "files": [
  2023. "src/Codeception/function.php"
  2024. ],
  2025. "psr-4": {
  2026. "Codeception\\": "src\\Codeception"
  2027. }
  2028. },
  2029. "notification-url": "https://packagist.org/downloads/",
  2030. "license": [
  2031. "MIT"
  2032. ],
  2033. "authors": [
  2034. {
  2035. "name": "Michael Bodnarchuk",
  2036. "email": "davert@codeception.com"
  2037. }
  2038. ],
  2039. "description": "BDD assertion library for PHPUnit",
  2040. "support": {
  2041. "issues": "https://github.com/Codeception/Verify/issues",
  2042. "source": "https://github.com/Codeception/Verify/tree/master"
  2043. },
  2044. "time": "2019-07-30T18:21:46+00:00"
  2045. },
  2046. {
  2047. "name": "doctrine/instantiator",
  2048. "version": "1.4.1",
  2049. "source": {
  2050. "type": "git",
  2051. "url": "https://github.com/doctrine/instantiator.git",
  2052. "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc"
  2053. },
  2054. "dist": {
  2055. "type": "zip",
  2056. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/10dcfce151b967d20fde1b34ae6640712c3891bc",
  2057. "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc",
  2058. "shasum": ""
  2059. },
  2060. "require": {
  2061. "php": "^7.1 || ^8.0"
  2062. },
  2063. "require-dev": {
  2064. "doctrine/coding-standard": "^9",
  2065. "ext-pdo": "*",
  2066. "ext-phar": "*",
  2067. "phpbench/phpbench": "^0.16 || ^1",
  2068. "phpstan/phpstan": "^1.4",
  2069. "phpstan/phpstan-phpunit": "^1",
  2070. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  2071. "vimeo/psalm": "^4.22"
  2072. },
  2073. "type": "library",
  2074. "autoload": {
  2075. "psr-4": {
  2076. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  2077. }
  2078. },
  2079. "notification-url": "https://packagist.org/downloads/",
  2080. "license": [
  2081. "MIT"
  2082. ],
  2083. "authors": [
  2084. {
  2085. "name": "Marco Pivetta",
  2086. "email": "ocramius@gmail.com",
  2087. "homepage": "https://ocramius.github.io/"
  2088. }
  2089. ],
  2090. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  2091. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  2092. "keywords": [
  2093. "constructor",
  2094. "instantiate"
  2095. ],
  2096. "support": {
  2097. "issues": "https://github.com/doctrine/instantiator/issues",
  2098. "source": "https://github.com/doctrine/instantiator/tree/1.4.1"
  2099. },
  2100. "funding": [
  2101. {
  2102. "url": "https://www.doctrine-project.org/sponsorship.html",
  2103. "type": "custom"
  2104. },
  2105. {
  2106. "url": "https://www.patreon.com/phpdoctrine",
  2107. "type": "patreon"
  2108. },
  2109. {
  2110. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  2111. "type": "tidelift"
  2112. }
  2113. ],
  2114. "time": "2022-03-03T08:28:38+00:00"
  2115. },
  2116. {
  2117. "name": "fakerphp/faker",
  2118. "version": "v1.20.0",
  2119. "source": {
  2120. "type": "git",
  2121. "url": "https://github.com/FakerPHP/Faker.git",
  2122. "reference": "37f751c67a5372d4e26353bd9384bc03744ec77b"
  2123. },
  2124. "dist": {
  2125. "type": "zip",
  2126. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/37f751c67a5372d4e26353bd9384bc03744ec77b",
  2127. "reference": "37f751c67a5372d4e26353bd9384bc03744ec77b",
  2128. "shasum": ""
  2129. },
  2130. "require": {
  2131. "php": "^7.1 || ^8.0",
  2132. "psr/container": "^1.0 || ^2.0",
  2133. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  2134. },
  2135. "conflict": {
  2136. "fzaninotto/faker": "*"
  2137. },
  2138. "require-dev": {
  2139. "bamarni/composer-bin-plugin": "^1.4.1",
  2140. "doctrine/persistence": "^1.3 || ^2.0",
  2141. "ext-intl": "*",
  2142. "symfony/phpunit-bridge": "^4.4 || ^5.2"
  2143. },
  2144. "suggest": {
  2145. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  2146. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  2147. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  2148. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  2149. "ext-mbstring": "Required for multibyte Unicode string functionality."
  2150. },
  2151. "type": "library",
  2152. "extra": {
  2153. "branch-alias": {
  2154. "dev-main": "v1.20-dev"
  2155. }
  2156. },
  2157. "autoload": {
  2158. "psr-4": {
  2159. "Faker\\": "src/Faker/"
  2160. }
  2161. },
  2162. "notification-url": "https://packagist.org/downloads/",
  2163. "license": [
  2164. "MIT"
  2165. ],
  2166. "authors": [
  2167. {
  2168. "name": "François Zaninotto"
  2169. }
  2170. ],
  2171. "description": "Faker is a PHP library that generates fake data for you.",
  2172. "keywords": [
  2173. "data",
  2174. "faker",
  2175. "fixtures"
  2176. ],
  2177. "support": {
  2178. "issues": "https://github.com/FakerPHP/Faker/issues",
  2179. "source": "https://github.com/FakerPHP/Faker/tree/v1.20.0"
  2180. },
  2181. "time": "2022-07-20T13:12:54+00:00"
  2182. },
  2183. {
  2184. "name": "guzzlehttp/psr7",
  2185. "version": "2.4.0",
  2186. "source": {
  2187. "type": "git",
  2188. "url": "https://github.com/guzzle/psr7.git",
  2189. "reference": "13388f00956b1503577598873fffb5ae994b5737"
  2190. },
  2191. "dist": {
  2192. "type": "zip",
  2193. "url": "https://api.github.com/repos/guzzle/psr7/zipball/13388f00956b1503577598873fffb5ae994b5737",
  2194. "reference": "13388f00956b1503577598873fffb5ae994b5737",
  2195. "shasum": ""
  2196. },
  2197. "require": {
  2198. "php": "^7.2.5 || ^8.0",
  2199. "psr/http-factory": "^1.0",
  2200. "psr/http-message": "^1.0",
  2201. "ralouphie/getallheaders": "^3.0"
  2202. },
  2203. "provide": {
  2204. "psr/http-factory-implementation": "1.0",
  2205. "psr/http-message-implementation": "1.0"
  2206. },
  2207. "require-dev": {
  2208. "bamarni/composer-bin-plugin": "^1.4.1",
  2209. "http-interop/http-factory-tests": "^0.9",
  2210. "phpunit/phpunit": "^8.5.8 || ^9.3.10"
  2211. },
  2212. "suggest": {
  2213. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  2214. },
  2215. "type": "library",
  2216. "extra": {
  2217. "branch-alias": {
  2218. "dev-master": "2.4-dev"
  2219. }
  2220. },
  2221. "autoload": {
  2222. "psr-4": {
  2223. "GuzzleHttp\\Psr7\\": "src/"
  2224. }
  2225. },
  2226. "notification-url": "https://packagist.org/downloads/",
  2227. "license": [
  2228. "MIT"
  2229. ],
  2230. "authors": [
  2231. {
  2232. "name": "Graham Campbell",
  2233. "email": "hello@gjcampbell.co.uk",
  2234. "homepage": "https://github.com/GrahamCampbell"
  2235. },
  2236. {
  2237. "name": "Michael Dowling",
  2238. "email": "mtdowling@gmail.com",
  2239. "homepage": "https://github.com/mtdowling"
  2240. },
  2241. {
  2242. "name": "George Mponos",
  2243. "email": "gmponos@gmail.com",
  2244. "homepage": "https://github.com/gmponos"
  2245. },
  2246. {
  2247. "name": "Tobias Nyholm",
  2248. "email": "tobias.nyholm@gmail.com",
  2249. "homepage": "https://github.com/Nyholm"
  2250. },
  2251. {
  2252. "name": "Márk Sági-Kazár",
  2253. "email": "mark.sagikazar@gmail.com",
  2254. "homepage": "https://github.com/sagikazarmark"
  2255. },
  2256. {
  2257. "name": "Tobias Schultze",
  2258. "email": "webmaster@tubo-world.de",
  2259. "homepage": "https://github.com/Tobion"
  2260. },
  2261. {
  2262. "name": "Márk Sági-Kazár",
  2263. "email": "mark.sagikazar@gmail.com",
  2264. "homepage": "https://sagikazarmark.hu"
  2265. }
  2266. ],
  2267. "description": "PSR-7 message implementation that also provides common utility methods",
  2268. "keywords": [
  2269. "http",
  2270. "message",
  2271. "psr-7",
  2272. "request",
  2273. "response",
  2274. "stream",
  2275. "uri",
  2276. "url"
  2277. ],
  2278. "support": {
  2279. "issues": "https://github.com/guzzle/psr7/issues",
  2280. "source": "https://github.com/guzzle/psr7/tree/2.4.0"
  2281. },
  2282. "funding": [
  2283. {
  2284. "url": "https://github.com/GrahamCampbell",
  2285. "type": "github"
  2286. },
  2287. {
  2288. "url": "https://github.com/Nyholm",
  2289. "type": "github"
  2290. },
  2291. {
  2292. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  2293. "type": "tidelift"
  2294. }
  2295. ],
  2296. "time": "2022-06-20T21:43:11+00:00"
  2297. },
  2298. {
  2299. "name": "myclabs/deep-copy",
  2300. "version": "1.11.0",
  2301. "source": {
  2302. "type": "git",
  2303. "url": "https://github.com/myclabs/DeepCopy.git",
  2304. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614"
  2305. },
  2306. "dist": {
  2307. "type": "zip",
  2308. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/14daed4296fae74d9e3201d2c4925d1acb7aa614",
  2309. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614",
  2310. "shasum": ""
  2311. },
  2312. "require": {
  2313. "php": "^7.1 || ^8.0"
  2314. },
  2315. "conflict": {
  2316. "doctrine/collections": "<1.6.8",
  2317. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  2318. },
  2319. "require-dev": {
  2320. "doctrine/collections": "^1.6.8",
  2321. "doctrine/common": "^2.13.3 || ^3.2.2",
  2322. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  2323. },
  2324. "type": "library",
  2325. "autoload": {
  2326. "files": [
  2327. "src/DeepCopy/deep_copy.php"
  2328. ],
  2329. "psr-4": {
  2330. "DeepCopy\\": "src/DeepCopy/"
  2331. }
  2332. },
  2333. "notification-url": "https://packagist.org/downloads/",
  2334. "license": [
  2335. "MIT"
  2336. ],
  2337. "description": "Create deep copies (clones) of your objects",
  2338. "keywords": [
  2339. "clone",
  2340. "copy",
  2341. "duplicate",
  2342. "object",
  2343. "object graph"
  2344. ],
  2345. "support": {
  2346. "issues": "https://github.com/myclabs/DeepCopy/issues",
  2347. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.0"
  2348. },
  2349. "funding": [
  2350. {
  2351. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  2352. "type": "tidelift"
  2353. }
  2354. ],
  2355. "time": "2022-03-03T13:19:32+00:00"
  2356. },
  2357. {
  2358. "name": "phar-io/manifest",
  2359. "version": "2.0.3",
  2360. "source": {
  2361. "type": "git",
  2362. "url": "https://github.com/phar-io/manifest.git",
  2363. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  2364. },
  2365. "dist": {
  2366. "type": "zip",
  2367. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  2368. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  2369. "shasum": ""
  2370. },
  2371. "require": {
  2372. "ext-dom": "*",
  2373. "ext-phar": "*",
  2374. "ext-xmlwriter": "*",
  2375. "phar-io/version": "^3.0.1",
  2376. "php": "^7.2 || ^8.0"
  2377. },
  2378. "type": "library",
  2379. "extra": {
  2380. "branch-alias": {
  2381. "dev-master": "2.0.x-dev"
  2382. }
  2383. },
  2384. "autoload": {
  2385. "classmap": [
  2386. "src/"
  2387. ]
  2388. },
  2389. "notification-url": "https://packagist.org/downloads/",
  2390. "license": [
  2391. "BSD-3-Clause"
  2392. ],
  2393. "authors": [
  2394. {
  2395. "name": "Arne Blankerts",
  2396. "email": "arne@blankerts.de",
  2397. "role": "Developer"
  2398. },
  2399. {
  2400. "name": "Sebastian Heuer",
  2401. "email": "sebastian@phpeople.de",
  2402. "role": "Developer"
  2403. },
  2404. {
  2405. "name": "Sebastian Bergmann",
  2406. "email": "sebastian@phpunit.de",
  2407. "role": "Developer"
  2408. }
  2409. ],
  2410. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  2411. "support": {
  2412. "issues": "https://github.com/phar-io/manifest/issues",
  2413. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  2414. },
  2415. "time": "2021-07-20T11:28:43+00:00"
  2416. },
  2417. {
  2418. "name": "phar-io/version",
  2419. "version": "3.2.1",
  2420. "source": {
  2421. "type": "git",
  2422. "url": "https://github.com/phar-io/version.git",
  2423. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  2424. },
  2425. "dist": {
  2426. "type": "zip",
  2427. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  2428. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  2429. "shasum": ""
  2430. },
  2431. "require": {
  2432. "php": "^7.2 || ^8.0"
  2433. },
  2434. "type": "library",
  2435. "autoload": {
  2436. "classmap": [
  2437. "src/"
  2438. ]
  2439. },
  2440. "notification-url": "https://packagist.org/downloads/",
  2441. "license": [
  2442. "BSD-3-Clause"
  2443. ],
  2444. "authors": [
  2445. {
  2446. "name": "Arne Blankerts",
  2447. "email": "arne@blankerts.de",
  2448. "role": "Developer"
  2449. },
  2450. {
  2451. "name": "Sebastian Heuer",
  2452. "email": "sebastian@phpeople.de",
  2453. "role": "Developer"
  2454. },
  2455. {
  2456. "name": "Sebastian Bergmann",
  2457. "email": "sebastian@phpunit.de",
  2458. "role": "Developer"
  2459. }
  2460. ],
  2461. "description": "Library for handling version information and constraints",
  2462. "support": {
  2463. "issues": "https://github.com/phar-io/version/issues",
  2464. "source": "https://github.com/phar-io/version/tree/3.2.1"
  2465. },
  2466. "time": "2022-02-21T01:04:05+00:00"
  2467. },
  2468. {
  2469. "name": "phpspec/php-diff",
  2470. "version": "v1.1.3",
  2471. "source": {
  2472. "type": "git",
  2473. "url": "https://github.com/phpspec/php-diff.git",
  2474. "reference": "fc1156187f9f6c8395886fe85ed88a0a245d72e9"
  2475. },
  2476. "dist": {
  2477. "type": "zip",
  2478. "url": "https://api.github.com/repos/phpspec/php-diff/zipball/fc1156187f9f6c8395886fe85ed88a0a245d72e9",
  2479. "reference": "fc1156187f9f6c8395886fe85ed88a0a245d72e9",
  2480. "shasum": ""
  2481. },
  2482. "type": "library",
  2483. "extra": {
  2484. "branch-alias": {
  2485. "dev-master": "1.0.x-dev"
  2486. }
  2487. },
  2488. "autoload": {
  2489. "psr-0": {
  2490. "Diff": "lib/"
  2491. }
  2492. },
  2493. "notification-url": "https://packagist.org/downloads/",
  2494. "license": [
  2495. "BSD-3-Clause"
  2496. ],
  2497. "authors": [
  2498. {
  2499. "name": "Chris Boulton",
  2500. "homepage": "http://github.com/chrisboulton"
  2501. }
  2502. ],
  2503. "description": "A comprehensive library for generating differences between two hashable objects (strings or arrays).",
  2504. "support": {
  2505. "source": "https://github.com/phpspec/php-diff/tree/v1.1.3"
  2506. },
  2507. "time": "2020-09-18T13:47:07+00:00"
  2508. },
  2509. {
  2510. "name": "phpunit/php-code-coverage",
  2511. "version": "7.0.15",
  2512. "source": {
  2513. "type": "git",
  2514. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  2515. "reference": "819f92bba8b001d4363065928088de22f25a3a48"
  2516. },
  2517. "dist": {
  2518. "type": "zip",
  2519. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/819f92bba8b001d4363065928088de22f25a3a48",
  2520. "reference": "819f92bba8b001d4363065928088de22f25a3a48",
  2521. "shasum": ""
  2522. },
  2523. "require": {
  2524. "ext-dom": "*",
  2525. "ext-xmlwriter": "*",
  2526. "php": ">=7.2",
  2527. "phpunit/php-file-iterator": "^2.0.2",
  2528. "phpunit/php-text-template": "^1.2.1",
  2529. "phpunit/php-token-stream": "^3.1.3 || ^4.0",
  2530. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  2531. "sebastian/environment": "^4.2.2",
  2532. "sebastian/version": "^2.0.1",
  2533. "theseer/tokenizer": "^1.1.3"
  2534. },
  2535. "require-dev": {
  2536. "phpunit/phpunit": "^8.2.2"
  2537. },
  2538. "suggest": {
  2539. "ext-xdebug": "^2.7.2"
  2540. },
  2541. "type": "library",
  2542. "extra": {
  2543. "branch-alias": {
  2544. "dev-master": "7.0-dev"
  2545. }
  2546. },
  2547. "autoload": {
  2548. "classmap": [
  2549. "src/"
  2550. ]
  2551. },
  2552. "notification-url": "https://packagist.org/downloads/",
  2553. "license": [
  2554. "BSD-3-Clause"
  2555. ],
  2556. "authors": [
  2557. {
  2558. "name": "Sebastian Bergmann",
  2559. "email": "sebastian@phpunit.de",
  2560. "role": "lead"
  2561. }
  2562. ],
  2563. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  2564. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  2565. "keywords": [
  2566. "coverage",
  2567. "testing",
  2568. "xunit"
  2569. ],
  2570. "support": {
  2571. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  2572. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/7.0.15"
  2573. },
  2574. "funding": [
  2575. {
  2576. "url": "https://github.com/sebastianbergmann",
  2577. "type": "github"
  2578. }
  2579. ],
  2580. "time": "2021-07-26T12:20:09+00:00"
  2581. },
  2582. {
  2583. "name": "phpunit/php-file-iterator",
  2584. "version": "2.0.5",
  2585. "source": {
  2586. "type": "git",
  2587. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  2588. "reference": "42c5ba5220e6904cbfe8b1a1bda7c0cfdc8c12f5"
  2589. },
  2590. "dist": {
  2591. "type": "zip",
  2592. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/42c5ba5220e6904cbfe8b1a1bda7c0cfdc8c12f5",
  2593. "reference": "42c5ba5220e6904cbfe8b1a1bda7c0cfdc8c12f5",
  2594. "shasum": ""
  2595. },
  2596. "require": {
  2597. "php": ">=7.1"
  2598. },
  2599. "require-dev": {
  2600. "phpunit/phpunit": "^8.5"
  2601. },
  2602. "type": "library",
  2603. "extra": {
  2604. "branch-alias": {
  2605. "dev-master": "2.0.x-dev"
  2606. }
  2607. },
  2608. "autoload": {
  2609. "classmap": [
  2610. "src/"
  2611. ]
  2612. },
  2613. "notification-url": "https://packagist.org/downloads/",
  2614. "license": [
  2615. "BSD-3-Clause"
  2616. ],
  2617. "authors": [
  2618. {
  2619. "name": "Sebastian Bergmann",
  2620. "email": "sebastian@phpunit.de",
  2621. "role": "lead"
  2622. }
  2623. ],
  2624. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  2625. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  2626. "keywords": [
  2627. "filesystem",
  2628. "iterator"
  2629. ],
  2630. "support": {
  2631. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  2632. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/2.0.5"
  2633. },
  2634. "funding": [
  2635. {
  2636. "url": "https://github.com/sebastianbergmann",
  2637. "type": "github"
  2638. }
  2639. ],
  2640. "time": "2021-12-02T12:42:26+00:00"
  2641. },
  2642. {
  2643. "name": "phpunit/php-text-template",
  2644. "version": "1.2.1",
  2645. "source": {
  2646. "type": "git",
  2647. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  2648. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  2649. },
  2650. "dist": {
  2651. "type": "zip",
  2652. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  2653. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  2654. "shasum": ""
  2655. },
  2656. "require": {
  2657. "php": ">=5.3.3"
  2658. },
  2659. "type": "library",
  2660. "autoload": {
  2661. "classmap": [
  2662. "src/"
  2663. ]
  2664. },
  2665. "notification-url": "https://packagist.org/downloads/",
  2666. "license": [
  2667. "BSD-3-Clause"
  2668. ],
  2669. "authors": [
  2670. {
  2671. "name": "Sebastian Bergmann",
  2672. "email": "sebastian@phpunit.de",
  2673. "role": "lead"
  2674. }
  2675. ],
  2676. "description": "Simple template engine.",
  2677. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  2678. "keywords": [
  2679. "template"
  2680. ],
  2681. "support": {
  2682. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  2683. "source": "https://github.com/sebastianbergmann/php-text-template/tree/1.2.1"
  2684. },
  2685. "time": "2015-06-21T13:50:34+00:00"
  2686. },
  2687. {
  2688. "name": "phpunit/php-timer",
  2689. "version": "2.1.3",
  2690. "source": {
  2691. "type": "git",
  2692. "url": "https://github.com/sebastianbergmann/php-timer.git",
  2693. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662"
  2694. },
  2695. "dist": {
  2696. "type": "zip",
  2697. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  2698. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  2699. "shasum": ""
  2700. },
  2701. "require": {
  2702. "php": ">=7.1"
  2703. },
  2704. "require-dev": {
  2705. "phpunit/phpunit": "^8.5"
  2706. },
  2707. "type": "library",
  2708. "extra": {
  2709. "branch-alias": {
  2710. "dev-master": "2.1-dev"
  2711. }
  2712. },
  2713. "autoload": {
  2714. "classmap": [
  2715. "src/"
  2716. ]
  2717. },
  2718. "notification-url": "https://packagist.org/downloads/",
  2719. "license": [
  2720. "BSD-3-Clause"
  2721. ],
  2722. "authors": [
  2723. {
  2724. "name": "Sebastian Bergmann",
  2725. "email": "sebastian@phpunit.de",
  2726. "role": "lead"
  2727. }
  2728. ],
  2729. "description": "Utility class for timing",
  2730. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  2731. "keywords": [
  2732. "timer"
  2733. ],
  2734. "support": {
  2735. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  2736. "source": "https://github.com/sebastianbergmann/php-timer/tree/2.1.3"
  2737. },
  2738. "funding": [
  2739. {
  2740. "url": "https://github.com/sebastianbergmann",
  2741. "type": "github"
  2742. }
  2743. ],
  2744. "time": "2020-11-30T08:20:02+00:00"
  2745. },
  2746. {
  2747. "name": "phpunit/php-token-stream",
  2748. "version": "3.1.3",
  2749. "source": {
  2750. "type": "git",
  2751. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  2752. "reference": "9c1da83261628cb24b6a6df371b6e312b3954768"
  2753. },
  2754. "dist": {
  2755. "type": "zip",
  2756. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/9c1da83261628cb24b6a6df371b6e312b3954768",
  2757. "reference": "9c1da83261628cb24b6a6df371b6e312b3954768",
  2758. "shasum": ""
  2759. },
  2760. "require": {
  2761. "ext-tokenizer": "*",
  2762. "php": ">=7.1"
  2763. },
  2764. "require-dev": {
  2765. "phpunit/phpunit": "^7.0"
  2766. },
  2767. "type": "library",
  2768. "extra": {
  2769. "branch-alias": {
  2770. "dev-master": "3.1-dev"
  2771. }
  2772. },
  2773. "autoload": {
  2774. "classmap": [
  2775. "src/"
  2776. ]
  2777. },
  2778. "notification-url": "https://packagist.org/downloads/",
  2779. "license": [
  2780. "BSD-3-Clause"
  2781. ],
  2782. "authors": [
  2783. {
  2784. "name": "Sebastian Bergmann",
  2785. "email": "sebastian@phpunit.de"
  2786. }
  2787. ],
  2788. "description": "Wrapper around PHP's tokenizer extension.",
  2789. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  2790. "keywords": [
  2791. "tokenizer"
  2792. ],
  2793. "support": {
  2794. "issues": "https://github.com/sebastianbergmann/php-token-stream/issues",
  2795. "source": "https://github.com/sebastianbergmann/php-token-stream/tree/3.1.3"
  2796. },
  2797. "funding": [
  2798. {
  2799. "url": "https://github.com/sebastianbergmann",
  2800. "type": "github"
  2801. }
  2802. ],
  2803. "abandoned": true,
  2804. "time": "2021-07-26T12:15:06+00:00"
  2805. },
  2806. {
  2807. "name": "phpunit/phpunit",
  2808. "version": "8.5.29",
  2809. "source": {
  2810. "type": "git",
  2811. "url": "https://github.com/sebastianbergmann/phpunit.git",
  2812. "reference": "e8c563c47a9a303662955518ca532b022b337f4d"
  2813. },
  2814. "dist": {
  2815. "type": "zip",
  2816. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/e8c563c47a9a303662955518ca532b022b337f4d",
  2817. "reference": "e8c563c47a9a303662955518ca532b022b337f4d",
  2818. "shasum": ""
  2819. },
  2820. "require": {
  2821. "doctrine/instantiator": "^1.3.1",
  2822. "ext-dom": "*",
  2823. "ext-json": "*",
  2824. "ext-libxml": "*",
  2825. "ext-mbstring": "*",
  2826. "ext-xml": "*",
  2827. "ext-xmlwriter": "*",
  2828. "myclabs/deep-copy": "^1.10.0",
  2829. "phar-io/manifest": "^2.0.3",
  2830. "phar-io/version": "^3.0.2",
  2831. "php": ">=7.2",
  2832. "phpunit/php-code-coverage": "^7.0.12",
  2833. "phpunit/php-file-iterator": "^2.0.4",
  2834. "phpunit/php-text-template": "^1.2.1",
  2835. "phpunit/php-timer": "^2.1.2",
  2836. "sebastian/comparator": "^3.0.2",
  2837. "sebastian/diff": "^3.0.2",
  2838. "sebastian/environment": "^4.2.3",
  2839. "sebastian/exporter": "^3.1.2",
  2840. "sebastian/global-state": "^3.0.0",
  2841. "sebastian/object-enumerator": "^3.0.3",
  2842. "sebastian/resource-operations": "^2.0.1",
  2843. "sebastian/type": "^1.1.3",
  2844. "sebastian/version": "^2.0.1"
  2845. },
  2846. "suggest": {
  2847. "ext-soap": "*",
  2848. "ext-xdebug": "*",
  2849. "phpunit/php-invoker": "^2.0.0"
  2850. },
  2851. "bin": [
  2852. "phpunit"
  2853. ],
  2854. "type": "library",
  2855. "extra": {
  2856. "branch-alias": {
  2857. "dev-master": "8.5-dev"
  2858. }
  2859. },
  2860. "autoload": {
  2861. "classmap": [
  2862. "src/"
  2863. ]
  2864. },
  2865. "notification-url": "https://packagist.org/downloads/",
  2866. "license": [
  2867. "BSD-3-Clause"
  2868. ],
  2869. "authors": [
  2870. {
  2871. "name": "Sebastian Bergmann",
  2872. "email": "sebastian@phpunit.de",
  2873. "role": "lead"
  2874. }
  2875. ],
  2876. "description": "The PHP Unit Testing framework.",
  2877. "homepage": "https://phpunit.de/",
  2878. "keywords": [
  2879. "phpunit",
  2880. "testing",
  2881. "xunit"
  2882. ],
  2883. "support": {
  2884. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  2885. "source": "https://github.com/sebastianbergmann/phpunit/tree/8.5.29"
  2886. },
  2887. "funding": [
  2888. {
  2889. "url": "https://phpunit.de/sponsors.html",
  2890. "type": "custom"
  2891. },
  2892. {
  2893. "url": "https://github.com/sebastianbergmann",
  2894. "type": "github"
  2895. }
  2896. ],
  2897. "time": "2022-08-22T13:59:39+00:00"
  2898. },
  2899. {
  2900. "name": "psr/container",
  2901. "version": "2.0.1",
  2902. "source": {
  2903. "type": "git",
  2904. "url": "https://github.com/php-fig/container.git",
  2905. "reference": "2ae37329ee82f91efadc282cc2d527fd6065a5ef"
  2906. },
  2907. "dist": {
  2908. "type": "zip",
  2909. "url": "https://api.github.com/repos/php-fig/container/zipball/2ae37329ee82f91efadc282cc2d527fd6065a5ef",
  2910. "reference": "2ae37329ee82f91efadc282cc2d527fd6065a5ef",
  2911. "shasum": ""
  2912. },
  2913. "require": {
  2914. "php": ">=7.2.0"
  2915. },
  2916. "type": "library",
  2917. "extra": {
  2918. "branch-alias": {
  2919. "dev-master": "2.0.x-dev"
  2920. }
  2921. },
  2922. "autoload": {
  2923. "psr-4": {
  2924. "Psr\\Container\\": "src/"
  2925. }
  2926. },
  2927. "notification-url": "https://packagist.org/downloads/",
  2928. "license": [
  2929. "MIT"
  2930. ],
  2931. "authors": [
  2932. {
  2933. "name": "PHP-FIG",
  2934. "homepage": "https://www.php-fig.org/"
  2935. }
  2936. ],
  2937. "description": "Common Container Interface (PHP FIG PSR-11)",
  2938. "homepage": "https://github.com/php-fig/container",
  2939. "keywords": [
  2940. "PSR-11",
  2941. "container",
  2942. "container-interface",
  2943. "container-interop",
  2944. "psr"
  2945. ],
  2946. "support": {
  2947. "issues": "https://github.com/php-fig/container/issues",
  2948. "source": "https://github.com/php-fig/container/tree/2.0.1"
  2949. },
  2950. "time": "2021-03-24T13:40:57+00:00"
  2951. },
  2952. {
  2953. "name": "psr/event-dispatcher",
  2954. "version": "1.0.0",
  2955. "source": {
  2956. "type": "git",
  2957. "url": "https://github.com/php-fig/event-dispatcher.git",
  2958. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  2959. },
  2960. "dist": {
  2961. "type": "zip",
  2962. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2963. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2964. "shasum": ""
  2965. },
  2966. "require": {
  2967. "php": ">=7.2.0"
  2968. },
  2969. "type": "library",
  2970. "extra": {
  2971. "branch-alias": {
  2972. "dev-master": "1.0.x-dev"
  2973. }
  2974. },
  2975. "autoload": {
  2976. "psr-4": {
  2977. "Psr\\EventDispatcher\\": "src/"
  2978. }
  2979. },
  2980. "notification-url": "https://packagist.org/downloads/",
  2981. "license": [
  2982. "MIT"
  2983. ],
  2984. "authors": [
  2985. {
  2986. "name": "PHP-FIG",
  2987. "homepage": "http://www.php-fig.org/"
  2988. }
  2989. ],
  2990. "description": "Standard interfaces for event handling.",
  2991. "keywords": [
  2992. "events",
  2993. "psr",
  2994. "psr-14"
  2995. ],
  2996. "support": {
  2997. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  2998. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  2999. },
  3000. "time": "2019-01-08T18:20:26+00:00"
  3001. },
  3002. {
  3003. "name": "psr/http-factory",
  3004. "version": "1.0.1",
  3005. "source": {
  3006. "type": "git",
  3007. "url": "https://github.com/php-fig/http-factory.git",
  3008. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  3009. },
  3010. "dist": {
  3011. "type": "zip",
  3012. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  3013. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  3014. "shasum": ""
  3015. },
  3016. "require": {
  3017. "php": ">=7.0.0",
  3018. "psr/http-message": "^1.0"
  3019. },
  3020. "type": "library",
  3021. "extra": {
  3022. "branch-alias": {
  3023. "dev-master": "1.0.x-dev"
  3024. }
  3025. },
  3026. "autoload": {
  3027. "psr-4": {
  3028. "Psr\\Http\\Message\\": "src/"
  3029. }
  3030. },
  3031. "notification-url": "https://packagist.org/downloads/",
  3032. "license": [
  3033. "MIT"
  3034. ],
  3035. "authors": [
  3036. {
  3037. "name": "PHP-FIG",
  3038. "homepage": "http://www.php-fig.org/"
  3039. }
  3040. ],
  3041. "description": "Common interfaces for PSR-7 HTTP message factories",
  3042. "keywords": [
  3043. "factory",
  3044. "http",
  3045. "message",
  3046. "psr",
  3047. "psr-17",
  3048. "psr-7",
  3049. "request",
  3050. "response"
  3051. ],
  3052. "support": {
  3053. "source": "https://github.com/php-fig/http-factory/tree/master"
  3054. },
  3055. "time": "2019-04-30T12:38:16+00:00"
  3056. },
  3057. {
  3058. "name": "psr/http-message",
  3059. "version": "1.0.1",
  3060. "source": {
  3061. "type": "git",
  3062. "url": "https://github.com/php-fig/http-message.git",
  3063. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  3064. },
  3065. "dist": {
  3066. "type": "zip",
  3067. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  3068. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  3069. "shasum": ""
  3070. },
  3071. "require": {
  3072. "php": ">=5.3.0"
  3073. },
  3074. "type": "library",
  3075. "extra": {
  3076. "branch-alias": {
  3077. "dev-master": "1.0.x-dev"
  3078. }
  3079. },
  3080. "autoload": {
  3081. "psr-4": {
  3082. "Psr\\Http\\Message\\": "src/"
  3083. }
  3084. },
  3085. "notification-url": "https://packagist.org/downloads/",
  3086. "license": [
  3087. "MIT"
  3088. ],
  3089. "authors": [
  3090. {
  3091. "name": "PHP-FIG",
  3092. "homepage": "http://www.php-fig.org/"
  3093. }
  3094. ],
  3095. "description": "Common interface for HTTP messages",
  3096. "homepage": "https://github.com/php-fig/http-message",
  3097. "keywords": [
  3098. "http",
  3099. "http-message",
  3100. "psr",
  3101. "psr-7",
  3102. "request",
  3103. "response"
  3104. ],
  3105. "support": {
  3106. "source": "https://github.com/php-fig/http-message/tree/master"
  3107. },
  3108. "time": "2016-08-06T14:39:51+00:00"
  3109. },
  3110. {
  3111. "name": "ralouphie/getallheaders",
  3112. "version": "3.0.3",
  3113. "source": {
  3114. "type": "git",
  3115. "url": "https://github.com/ralouphie/getallheaders.git",
  3116. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  3117. },
  3118. "dist": {
  3119. "type": "zip",
  3120. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  3121. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  3122. "shasum": ""
  3123. },
  3124. "require": {
  3125. "php": ">=5.6"
  3126. },
  3127. "require-dev": {
  3128. "php-coveralls/php-coveralls": "^2.1",
  3129. "phpunit/phpunit": "^5 || ^6.5"
  3130. },
  3131. "type": "library",
  3132. "autoload": {
  3133. "files": [
  3134. "src/getallheaders.php"
  3135. ]
  3136. },
  3137. "notification-url": "https://packagist.org/downloads/",
  3138. "license": [
  3139. "MIT"
  3140. ],
  3141. "authors": [
  3142. {
  3143. "name": "Ralph Khattar",
  3144. "email": "ralph.khattar@gmail.com"
  3145. }
  3146. ],
  3147. "description": "A polyfill for getallheaders.",
  3148. "support": {
  3149. "issues": "https://github.com/ralouphie/getallheaders/issues",
  3150. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  3151. },
  3152. "time": "2019-03-08T08:55:37+00:00"
  3153. },
  3154. {
  3155. "name": "sebastian/code-unit-reverse-lookup",
  3156. "version": "1.0.2",
  3157. "source": {
  3158. "type": "git",
  3159. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  3160. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619"
  3161. },
  3162. "dist": {
  3163. "type": "zip",
  3164. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  3165. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  3166. "shasum": ""
  3167. },
  3168. "require": {
  3169. "php": ">=5.6"
  3170. },
  3171. "require-dev": {
  3172. "phpunit/phpunit": "^8.5"
  3173. },
  3174. "type": "library",
  3175. "extra": {
  3176. "branch-alias": {
  3177. "dev-master": "1.0.x-dev"
  3178. }
  3179. },
  3180. "autoload": {
  3181. "classmap": [
  3182. "src/"
  3183. ]
  3184. },
  3185. "notification-url": "https://packagist.org/downloads/",
  3186. "license": [
  3187. "BSD-3-Clause"
  3188. ],
  3189. "authors": [
  3190. {
  3191. "name": "Sebastian Bergmann",
  3192. "email": "sebastian@phpunit.de"
  3193. }
  3194. ],
  3195. "description": "Looks up which function or method a line of code belongs to",
  3196. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  3197. "support": {
  3198. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  3199. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/1.0.2"
  3200. },
  3201. "funding": [
  3202. {
  3203. "url": "https://github.com/sebastianbergmann",
  3204. "type": "github"
  3205. }
  3206. ],
  3207. "time": "2020-11-30T08:15:22+00:00"
  3208. },
  3209. {
  3210. "name": "sebastian/comparator",
  3211. "version": "3.0.3",
  3212. "source": {
  3213. "type": "git",
  3214. "url": "https://github.com/sebastianbergmann/comparator.git",
  3215. "reference": "1071dfcef776a57013124ff35e1fc41ccd294758"
  3216. },
  3217. "dist": {
  3218. "type": "zip",
  3219. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/1071dfcef776a57013124ff35e1fc41ccd294758",
  3220. "reference": "1071dfcef776a57013124ff35e1fc41ccd294758",
  3221. "shasum": ""
  3222. },
  3223. "require": {
  3224. "php": ">=7.1",
  3225. "sebastian/diff": "^3.0",
  3226. "sebastian/exporter": "^3.1"
  3227. },
  3228. "require-dev": {
  3229. "phpunit/phpunit": "^8.5"
  3230. },
  3231. "type": "library",
  3232. "extra": {
  3233. "branch-alias": {
  3234. "dev-master": "3.0-dev"
  3235. }
  3236. },
  3237. "autoload": {
  3238. "classmap": [
  3239. "src/"
  3240. ]
  3241. },
  3242. "notification-url": "https://packagist.org/downloads/",
  3243. "license": [
  3244. "BSD-3-Clause"
  3245. ],
  3246. "authors": [
  3247. {
  3248. "name": "Sebastian Bergmann",
  3249. "email": "sebastian@phpunit.de"
  3250. },
  3251. {
  3252. "name": "Jeff Welch",
  3253. "email": "whatthejeff@gmail.com"
  3254. },
  3255. {
  3256. "name": "Volker Dusch",
  3257. "email": "github@wallbash.com"
  3258. },
  3259. {
  3260. "name": "Bernhard Schussek",
  3261. "email": "bschussek@2bepublished.at"
  3262. }
  3263. ],
  3264. "description": "Provides the functionality to compare PHP values for equality",
  3265. "homepage": "https://github.com/sebastianbergmann/comparator",
  3266. "keywords": [
  3267. "comparator",
  3268. "compare",
  3269. "equality"
  3270. ],
  3271. "support": {
  3272. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  3273. "source": "https://github.com/sebastianbergmann/comparator/tree/3.0.3"
  3274. },
  3275. "funding": [
  3276. {
  3277. "url": "https://github.com/sebastianbergmann",
  3278. "type": "github"
  3279. }
  3280. ],
  3281. "time": "2020-11-30T08:04:30+00:00"
  3282. },
  3283. {
  3284. "name": "sebastian/diff",
  3285. "version": "3.0.3",
  3286. "source": {
  3287. "type": "git",
  3288. "url": "https://github.com/sebastianbergmann/diff.git",
  3289. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211"
  3290. },
  3291. "dist": {
  3292. "type": "zip",
  3293. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  3294. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  3295. "shasum": ""
  3296. },
  3297. "require": {
  3298. "php": ">=7.1"
  3299. },
  3300. "require-dev": {
  3301. "phpunit/phpunit": "^7.5 || ^8.0",
  3302. "symfony/process": "^2 || ^3.3 || ^4"
  3303. },
  3304. "type": "library",
  3305. "extra": {
  3306. "branch-alias": {
  3307. "dev-master": "3.0-dev"
  3308. }
  3309. },
  3310. "autoload": {
  3311. "classmap": [
  3312. "src/"
  3313. ]
  3314. },
  3315. "notification-url": "https://packagist.org/downloads/",
  3316. "license": [
  3317. "BSD-3-Clause"
  3318. ],
  3319. "authors": [
  3320. {
  3321. "name": "Sebastian Bergmann",
  3322. "email": "sebastian@phpunit.de"
  3323. },
  3324. {
  3325. "name": "Kore Nordmann",
  3326. "email": "mail@kore-nordmann.de"
  3327. }
  3328. ],
  3329. "description": "Diff implementation",
  3330. "homepage": "https://github.com/sebastianbergmann/diff",
  3331. "keywords": [
  3332. "diff",
  3333. "udiff",
  3334. "unidiff",
  3335. "unified diff"
  3336. ],
  3337. "support": {
  3338. "issues": "https://github.com/sebastianbergmann/diff/issues",
  3339. "source": "https://github.com/sebastianbergmann/diff/tree/3.0.3"
  3340. },
  3341. "funding": [
  3342. {
  3343. "url": "https://github.com/sebastianbergmann",
  3344. "type": "github"
  3345. }
  3346. ],
  3347. "time": "2020-11-30T07:59:04+00:00"
  3348. },
  3349. {
  3350. "name": "sebastian/environment",
  3351. "version": "4.2.4",
  3352. "source": {
  3353. "type": "git",
  3354. "url": "https://github.com/sebastianbergmann/environment.git",
  3355. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0"
  3356. },
  3357. "dist": {
  3358. "type": "zip",
  3359. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  3360. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  3361. "shasum": ""
  3362. },
  3363. "require": {
  3364. "php": ">=7.1"
  3365. },
  3366. "require-dev": {
  3367. "phpunit/phpunit": "^7.5"
  3368. },
  3369. "suggest": {
  3370. "ext-posix": "*"
  3371. },
  3372. "type": "library",
  3373. "extra": {
  3374. "branch-alias": {
  3375. "dev-master": "4.2-dev"
  3376. }
  3377. },
  3378. "autoload": {
  3379. "classmap": [
  3380. "src/"
  3381. ]
  3382. },
  3383. "notification-url": "https://packagist.org/downloads/",
  3384. "license": [
  3385. "BSD-3-Clause"
  3386. ],
  3387. "authors": [
  3388. {
  3389. "name": "Sebastian Bergmann",
  3390. "email": "sebastian@phpunit.de"
  3391. }
  3392. ],
  3393. "description": "Provides functionality to handle HHVM/PHP environments",
  3394. "homepage": "http://www.github.com/sebastianbergmann/environment",
  3395. "keywords": [
  3396. "Xdebug",
  3397. "environment",
  3398. "hhvm"
  3399. ],
  3400. "support": {
  3401. "issues": "https://github.com/sebastianbergmann/environment/issues",
  3402. "source": "https://github.com/sebastianbergmann/environment/tree/4.2.4"
  3403. },
  3404. "funding": [
  3405. {
  3406. "url": "https://github.com/sebastianbergmann",
  3407. "type": "github"
  3408. }
  3409. ],
  3410. "time": "2020-11-30T07:53:42+00:00"
  3411. },
  3412. {
  3413. "name": "sebastian/exporter",
  3414. "version": "3.1.4",
  3415. "source": {
  3416. "type": "git",
  3417. "url": "https://github.com/sebastianbergmann/exporter.git",
  3418. "reference": "0c32ea2e40dbf59de29f3b49bf375176ce7dd8db"
  3419. },
  3420. "dist": {
  3421. "type": "zip",
  3422. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/0c32ea2e40dbf59de29f3b49bf375176ce7dd8db",
  3423. "reference": "0c32ea2e40dbf59de29f3b49bf375176ce7dd8db",
  3424. "shasum": ""
  3425. },
  3426. "require": {
  3427. "php": ">=7.0",
  3428. "sebastian/recursion-context": "^3.0"
  3429. },
  3430. "require-dev": {
  3431. "ext-mbstring": "*",
  3432. "phpunit/phpunit": "^8.5"
  3433. },
  3434. "type": "library",
  3435. "extra": {
  3436. "branch-alias": {
  3437. "dev-master": "3.1.x-dev"
  3438. }
  3439. },
  3440. "autoload": {
  3441. "classmap": [
  3442. "src/"
  3443. ]
  3444. },
  3445. "notification-url": "https://packagist.org/downloads/",
  3446. "license": [
  3447. "BSD-3-Clause"
  3448. ],
  3449. "authors": [
  3450. {
  3451. "name": "Sebastian Bergmann",
  3452. "email": "sebastian@phpunit.de"
  3453. },
  3454. {
  3455. "name": "Jeff Welch",
  3456. "email": "whatthejeff@gmail.com"
  3457. },
  3458. {
  3459. "name": "Volker Dusch",
  3460. "email": "github@wallbash.com"
  3461. },
  3462. {
  3463. "name": "Adam Harvey",
  3464. "email": "aharvey@php.net"
  3465. },
  3466. {
  3467. "name": "Bernhard Schussek",
  3468. "email": "bschussek@gmail.com"
  3469. }
  3470. ],
  3471. "description": "Provides the functionality to export PHP variables for visualization",
  3472. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  3473. "keywords": [
  3474. "export",
  3475. "exporter"
  3476. ],
  3477. "support": {
  3478. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  3479. "source": "https://github.com/sebastianbergmann/exporter/tree/3.1.4"
  3480. },
  3481. "funding": [
  3482. {
  3483. "url": "https://github.com/sebastianbergmann",
  3484. "type": "github"
  3485. }
  3486. ],
  3487. "time": "2021-11-11T13:51:24+00:00"
  3488. },
  3489. {
  3490. "name": "sebastian/global-state",
  3491. "version": "3.0.2",
  3492. "source": {
  3493. "type": "git",
  3494. "url": "https://github.com/sebastianbergmann/global-state.git",
  3495. "reference": "de036ec91d55d2a9e0db2ba975b512cdb1c23921"
  3496. },
  3497. "dist": {
  3498. "type": "zip",
  3499. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/de036ec91d55d2a9e0db2ba975b512cdb1c23921",
  3500. "reference": "de036ec91d55d2a9e0db2ba975b512cdb1c23921",
  3501. "shasum": ""
  3502. },
  3503. "require": {
  3504. "php": ">=7.2",
  3505. "sebastian/object-reflector": "^1.1.1",
  3506. "sebastian/recursion-context": "^3.0"
  3507. },
  3508. "require-dev": {
  3509. "ext-dom": "*",
  3510. "phpunit/phpunit": "^8.0"
  3511. },
  3512. "suggest": {
  3513. "ext-uopz": "*"
  3514. },
  3515. "type": "library",
  3516. "extra": {
  3517. "branch-alias": {
  3518. "dev-master": "3.0-dev"
  3519. }
  3520. },
  3521. "autoload": {
  3522. "classmap": [
  3523. "src/"
  3524. ]
  3525. },
  3526. "notification-url": "https://packagist.org/downloads/",
  3527. "license": [
  3528. "BSD-3-Clause"
  3529. ],
  3530. "authors": [
  3531. {
  3532. "name": "Sebastian Bergmann",
  3533. "email": "sebastian@phpunit.de"
  3534. }
  3535. ],
  3536. "description": "Snapshotting of global state",
  3537. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  3538. "keywords": [
  3539. "global state"
  3540. ],
  3541. "support": {
  3542. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  3543. "source": "https://github.com/sebastianbergmann/global-state/tree/3.0.2"
  3544. },
  3545. "funding": [
  3546. {
  3547. "url": "https://github.com/sebastianbergmann",
  3548. "type": "github"
  3549. }
  3550. ],
  3551. "time": "2022-02-10T06:55:38+00:00"
  3552. },
  3553. {
  3554. "name": "sebastian/object-enumerator",
  3555. "version": "3.0.4",
  3556. "source": {
  3557. "type": "git",
  3558. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  3559. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2"
  3560. },
  3561. "dist": {
  3562. "type": "zip",
  3563. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  3564. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  3565. "shasum": ""
  3566. },
  3567. "require": {
  3568. "php": ">=7.0",
  3569. "sebastian/object-reflector": "^1.1.1",
  3570. "sebastian/recursion-context": "^3.0"
  3571. },
  3572. "require-dev": {
  3573. "phpunit/phpunit": "^6.0"
  3574. },
  3575. "type": "library",
  3576. "extra": {
  3577. "branch-alias": {
  3578. "dev-master": "3.0.x-dev"
  3579. }
  3580. },
  3581. "autoload": {
  3582. "classmap": [
  3583. "src/"
  3584. ]
  3585. },
  3586. "notification-url": "https://packagist.org/downloads/",
  3587. "license": [
  3588. "BSD-3-Clause"
  3589. ],
  3590. "authors": [
  3591. {
  3592. "name": "Sebastian Bergmann",
  3593. "email": "sebastian@phpunit.de"
  3594. }
  3595. ],
  3596. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  3597. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  3598. "support": {
  3599. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  3600. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/3.0.4"
  3601. },
  3602. "funding": [
  3603. {
  3604. "url": "https://github.com/sebastianbergmann",
  3605. "type": "github"
  3606. }
  3607. ],
  3608. "time": "2020-11-30T07:40:27+00:00"
  3609. },
  3610. {
  3611. "name": "sebastian/object-reflector",
  3612. "version": "1.1.2",
  3613. "source": {
  3614. "type": "git",
  3615. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  3616. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d"
  3617. },
  3618. "dist": {
  3619. "type": "zip",
  3620. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  3621. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  3622. "shasum": ""
  3623. },
  3624. "require": {
  3625. "php": ">=7.0"
  3626. },
  3627. "require-dev": {
  3628. "phpunit/phpunit": "^6.0"
  3629. },
  3630. "type": "library",
  3631. "extra": {
  3632. "branch-alias": {
  3633. "dev-master": "1.1-dev"
  3634. }
  3635. },
  3636. "autoload": {
  3637. "classmap": [
  3638. "src/"
  3639. ]
  3640. },
  3641. "notification-url": "https://packagist.org/downloads/",
  3642. "license": [
  3643. "BSD-3-Clause"
  3644. ],
  3645. "authors": [
  3646. {
  3647. "name": "Sebastian Bergmann",
  3648. "email": "sebastian@phpunit.de"
  3649. }
  3650. ],
  3651. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  3652. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  3653. "support": {
  3654. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  3655. "source": "https://github.com/sebastianbergmann/object-reflector/tree/1.1.2"
  3656. },
  3657. "funding": [
  3658. {
  3659. "url": "https://github.com/sebastianbergmann",
  3660. "type": "github"
  3661. }
  3662. ],
  3663. "time": "2020-11-30T07:37:18+00:00"
  3664. },
  3665. {
  3666. "name": "sebastian/recursion-context",
  3667. "version": "3.0.1",
  3668. "source": {
  3669. "type": "git",
  3670. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  3671. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb"
  3672. },
  3673. "dist": {
  3674. "type": "zip",
  3675. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/367dcba38d6e1977be014dc4b22f47a484dac7fb",
  3676. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb",
  3677. "shasum": ""
  3678. },
  3679. "require": {
  3680. "php": ">=7.0"
  3681. },
  3682. "require-dev": {
  3683. "phpunit/phpunit": "^6.0"
  3684. },
  3685. "type": "library",
  3686. "extra": {
  3687. "branch-alias": {
  3688. "dev-master": "3.0.x-dev"
  3689. }
  3690. },
  3691. "autoload": {
  3692. "classmap": [
  3693. "src/"
  3694. ]
  3695. },
  3696. "notification-url": "https://packagist.org/downloads/",
  3697. "license": [
  3698. "BSD-3-Clause"
  3699. ],
  3700. "authors": [
  3701. {
  3702. "name": "Sebastian Bergmann",
  3703. "email": "sebastian@phpunit.de"
  3704. },
  3705. {
  3706. "name": "Jeff Welch",
  3707. "email": "whatthejeff@gmail.com"
  3708. },
  3709. {
  3710. "name": "Adam Harvey",
  3711. "email": "aharvey@php.net"
  3712. }
  3713. ],
  3714. "description": "Provides functionality to recursively process PHP variables",
  3715. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  3716. "support": {
  3717. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  3718. "source": "https://github.com/sebastianbergmann/recursion-context/tree/3.0.1"
  3719. },
  3720. "funding": [
  3721. {
  3722. "url": "https://github.com/sebastianbergmann",
  3723. "type": "github"
  3724. }
  3725. ],
  3726. "time": "2020-11-30T07:34:24+00:00"
  3727. },
  3728. {
  3729. "name": "sebastian/resource-operations",
  3730. "version": "2.0.2",
  3731. "source": {
  3732. "type": "git",
  3733. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  3734. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3"
  3735. },
  3736. "dist": {
  3737. "type": "zip",
  3738. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  3739. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  3740. "shasum": ""
  3741. },
  3742. "require": {
  3743. "php": ">=7.1"
  3744. },
  3745. "type": "library",
  3746. "extra": {
  3747. "branch-alias": {
  3748. "dev-master": "2.0-dev"
  3749. }
  3750. },
  3751. "autoload": {
  3752. "classmap": [
  3753. "src/"
  3754. ]
  3755. },
  3756. "notification-url": "https://packagist.org/downloads/",
  3757. "license": [
  3758. "BSD-3-Clause"
  3759. ],
  3760. "authors": [
  3761. {
  3762. "name": "Sebastian Bergmann",
  3763. "email": "sebastian@phpunit.de"
  3764. }
  3765. ],
  3766. "description": "Provides a list of PHP built-in functions that operate on resources",
  3767. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  3768. "support": {
  3769. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  3770. "source": "https://github.com/sebastianbergmann/resource-operations/tree/2.0.2"
  3771. },
  3772. "funding": [
  3773. {
  3774. "url": "https://github.com/sebastianbergmann",
  3775. "type": "github"
  3776. }
  3777. ],
  3778. "time": "2020-11-30T07:30:19+00:00"
  3779. },
  3780. {
  3781. "name": "sebastian/type",
  3782. "version": "1.1.4",
  3783. "source": {
  3784. "type": "git",
  3785. "url": "https://github.com/sebastianbergmann/type.git",
  3786. "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4"
  3787. },
  3788. "dist": {
  3789. "type": "zip",
  3790. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/0150cfbc4495ed2df3872fb31b26781e4e077eb4",
  3791. "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4",
  3792. "shasum": ""
  3793. },
  3794. "require": {
  3795. "php": ">=7.2"
  3796. },
  3797. "require-dev": {
  3798. "phpunit/phpunit": "^8.2"
  3799. },
  3800. "type": "library",
  3801. "extra": {
  3802. "branch-alias": {
  3803. "dev-master": "1.1-dev"
  3804. }
  3805. },
  3806. "autoload": {
  3807. "classmap": [
  3808. "src/"
  3809. ]
  3810. },
  3811. "notification-url": "https://packagist.org/downloads/",
  3812. "license": [
  3813. "BSD-3-Clause"
  3814. ],
  3815. "authors": [
  3816. {
  3817. "name": "Sebastian Bergmann",
  3818. "email": "sebastian@phpunit.de",
  3819. "role": "lead"
  3820. }
  3821. ],
  3822. "description": "Collection of value objects that represent the types of the PHP type system",
  3823. "homepage": "https://github.com/sebastianbergmann/type",
  3824. "support": {
  3825. "issues": "https://github.com/sebastianbergmann/type/issues",
  3826. "source": "https://github.com/sebastianbergmann/type/tree/1.1.4"
  3827. },
  3828. "funding": [
  3829. {
  3830. "url": "https://github.com/sebastianbergmann",
  3831. "type": "github"
  3832. }
  3833. ],
  3834. "time": "2020-11-30T07:25:11+00:00"
  3835. },
  3836. {
  3837. "name": "sebastian/version",
  3838. "version": "2.0.1",
  3839. "source": {
  3840. "type": "git",
  3841. "url": "https://github.com/sebastianbergmann/version.git",
  3842. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  3843. },
  3844. "dist": {
  3845. "type": "zip",
  3846. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  3847. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  3848. "shasum": ""
  3849. },
  3850. "require": {
  3851. "php": ">=5.6"
  3852. },
  3853. "type": "library",
  3854. "extra": {
  3855. "branch-alias": {
  3856. "dev-master": "2.0.x-dev"
  3857. }
  3858. },
  3859. "autoload": {
  3860. "classmap": [
  3861. "src/"
  3862. ]
  3863. },
  3864. "notification-url": "https://packagist.org/downloads/",
  3865. "license": [
  3866. "BSD-3-Clause"
  3867. ],
  3868. "authors": [
  3869. {
  3870. "name": "Sebastian Bergmann",
  3871. "email": "sebastian@phpunit.de",
  3872. "role": "lead"
  3873. }
  3874. ],
  3875. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  3876. "homepage": "https://github.com/sebastianbergmann/version",
  3877. "support": {
  3878. "issues": "https://github.com/sebastianbergmann/version/issues",
  3879. "source": "https://github.com/sebastianbergmann/version/tree/master"
  3880. },
  3881. "time": "2016-10-03T07:35:21+00:00"
  3882. },
  3883. {
  3884. "name": "symfony/browser-kit",
  3885. "version": "v4.2.4",
  3886. "source": {
  3887. "type": "git",
  3888. "url": "https://github.com/symfony/browser-kit.git",
  3889. "reference": "61d85c5af2fc058014c7c89504c3944e73a086f0"
  3890. },
  3891. "dist": {
  3892. "type": "zip",
  3893. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/61d85c5af2fc058014c7c89504c3944e73a086f0",
  3894. "reference": "61d85c5af2fc058014c7c89504c3944e73a086f0",
  3895. "shasum": ""
  3896. },
  3897. "require": {
  3898. "php": "^7.1.3",
  3899. "symfony/dom-crawler": "~3.4|~4.0"
  3900. },
  3901. "require-dev": {
  3902. "symfony/css-selector": "~3.4|~4.0",
  3903. "symfony/process": "~3.4|~4.0"
  3904. },
  3905. "suggest": {
  3906. "symfony/process": ""
  3907. },
  3908. "type": "library",
  3909. "extra": {
  3910. "branch-alias": {
  3911. "dev-master": "4.2-dev"
  3912. }
  3913. },
  3914. "autoload": {
  3915. "psr-4": {
  3916. "Symfony\\Component\\BrowserKit\\": ""
  3917. },
  3918. "exclude-from-classmap": [
  3919. "/Tests/"
  3920. ]
  3921. },
  3922. "notification-url": "https://packagist.org/downloads/",
  3923. "license": [
  3924. "MIT"
  3925. ],
  3926. "authors": [
  3927. {
  3928. "name": "Fabien Potencier",
  3929. "email": "fabien@symfony.com"
  3930. },
  3931. {
  3932. "name": "Symfony Community",
  3933. "homepage": "https://symfony.com/contributors"
  3934. }
  3935. ],
  3936. "description": "Symfony BrowserKit Component",
  3937. "homepage": "https://symfony.com",
  3938. "support": {
  3939. "source": "https://github.com/symfony/browser-kit/tree/4.2"
  3940. },
  3941. "time": "2019-02-23T15:17:42+00:00"
  3942. },
  3943. {
  3944. "name": "symfony/console",
  3945. "version": "v5.4.11",
  3946. "source": {
  3947. "type": "git",
  3948. "url": "https://github.com/symfony/console.git",
  3949. "reference": "535846c7ee6bc4dd027ca0d93220601456734b10"
  3950. },
  3951. "dist": {
  3952. "type": "zip",
  3953. "url": "https://api.github.com/repos/symfony/console/zipball/535846c7ee6bc4dd027ca0d93220601456734b10",
  3954. "reference": "535846c7ee6bc4dd027ca0d93220601456734b10",
  3955. "shasum": ""
  3956. },
  3957. "require": {
  3958. "php": ">=7.2.5",
  3959. "symfony/deprecation-contracts": "^2.1|^3",
  3960. "symfony/polyfill-mbstring": "~1.0",
  3961. "symfony/polyfill-php73": "^1.9",
  3962. "symfony/polyfill-php80": "^1.16",
  3963. "symfony/service-contracts": "^1.1|^2|^3",
  3964. "symfony/string": "^5.1|^6.0"
  3965. },
  3966. "conflict": {
  3967. "psr/log": ">=3",
  3968. "symfony/dependency-injection": "<4.4",
  3969. "symfony/dotenv": "<5.1",
  3970. "symfony/event-dispatcher": "<4.4",
  3971. "symfony/lock": "<4.4",
  3972. "symfony/process": "<4.4"
  3973. },
  3974. "provide": {
  3975. "psr/log-implementation": "1.0|2.0"
  3976. },
  3977. "require-dev": {
  3978. "psr/log": "^1|^2",
  3979. "symfony/config": "^4.4|^5.0|^6.0",
  3980. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  3981. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  3982. "symfony/lock": "^4.4|^5.0|^6.0",
  3983. "symfony/process": "^4.4|^5.0|^6.0",
  3984. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  3985. },
  3986. "suggest": {
  3987. "psr/log": "For using the console logger",
  3988. "symfony/event-dispatcher": "",
  3989. "symfony/lock": "",
  3990. "symfony/process": ""
  3991. },
  3992. "type": "library",
  3993. "autoload": {
  3994. "psr-4": {
  3995. "Symfony\\Component\\Console\\": ""
  3996. },
  3997. "exclude-from-classmap": [
  3998. "/Tests/"
  3999. ]
  4000. },
  4001. "notification-url": "https://packagist.org/downloads/",
  4002. "license": [
  4003. "MIT"
  4004. ],
  4005. "authors": [
  4006. {
  4007. "name": "Fabien Potencier",
  4008. "email": "fabien@symfony.com"
  4009. },
  4010. {
  4011. "name": "Symfony Community",
  4012. "homepage": "https://symfony.com/contributors"
  4013. }
  4014. ],
  4015. "description": "Eases the creation of beautiful and testable command line interfaces",
  4016. "homepage": "https://symfony.com",
  4017. "keywords": [
  4018. "cli",
  4019. "command line",
  4020. "console",
  4021. "terminal"
  4022. ],
  4023. "support": {
  4024. "source": "https://github.com/symfony/console/tree/v5.4.11"
  4025. },
  4026. "funding": [
  4027. {
  4028. "url": "https://symfony.com/sponsor",
  4029. "type": "custom"
  4030. },
  4031. {
  4032. "url": "https://github.com/fabpot",
  4033. "type": "github"
  4034. },
  4035. {
  4036. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4037. "type": "tidelift"
  4038. }
  4039. ],
  4040. "time": "2022-07-22T10:42:43+00:00"
  4041. },
  4042. {
  4043. "name": "symfony/css-selector",
  4044. "version": "v5.4.11",
  4045. "source": {
  4046. "type": "git",
  4047. "url": "https://github.com/symfony/css-selector.git",
  4048. "reference": "c1681789f059ab756001052164726ae88512ae3d"
  4049. },
  4050. "dist": {
  4051. "type": "zip",
  4052. "url": "https://api.github.com/repos/symfony/css-selector/zipball/c1681789f059ab756001052164726ae88512ae3d",
  4053. "reference": "c1681789f059ab756001052164726ae88512ae3d",
  4054. "shasum": ""
  4055. },
  4056. "require": {
  4057. "php": ">=7.2.5",
  4058. "symfony/polyfill-php80": "^1.16"
  4059. },
  4060. "type": "library",
  4061. "autoload": {
  4062. "psr-4": {
  4063. "Symfony\\Component\\CssSelector\\": ""
  4064. },
  4065. "exclude-from-classmap": [
  4066. "/Tests/"
  4067. ]
  4068. },
  4069. "notification-url": "https://packagist.org/downloads/",
  4070. "license": [
  4071. "MIT"
  4072. ],
  4073. "authors": [
  4074. {
  4075. "name": "Fabien Potencier",
  4076. "email": "fabien@symfony.com"
  4077. },
  4078. {
  4079. "name": "Jean-François Simon",
  4080. "email": "jeanfrancois.simon@sensiolabs.com"
  4081. },
  4082. {
  4083. "name": "Symfony Community",
  4084. "homepage": "https://symfony.com/contributors"
  4085. }
  4086. ],
  4087. "description": "Converts CSS selectors to XPath expressions",
  4088. "homepage": "https://symfony.com",
  4089. "support": {
  4090. "source": "https://github.com/symfony/css-selector/tree/v5.4.11"
  4091. },
  4092. "funding": [
  4093. {
  4094. "url": "https://symfony.com/sponsor",
  4095. "type": "custom"
  4096. },
  4097. {
  4098. "url": "https://github.com/fabpot",
  4099. "type": "github"
  4100. },
  4101. {
  4102. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4103. "type": "tidelift"
  4104. }
  4105. ],
  4106. "time": "2022-06-27T16:58:25+00:00"
  4107. },
  4108. {
  4109. "name": "symfony/deprecation-contracts",
  4110. "version": "v2.5.2",
  4111. "source": {
  4112. "type": "git",
  4113. "url": "https://github.com/symfony/deprecation-contracts.git",
  4114. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66"
  4115. },
  4116. "dist": {
  4117. "type": "zip",
  4118. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  4119. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  4120. "shasum": ""
  4121. },
  4122. "require": {
  4123. "php": ">=7.1"
  4124. },
  4125. "type": "library",
  4126. "extra": {
  4127. "branch-alias": {
  4128. "dev-main": "2.5-dev"
  4129. },
  4130. "thanks": {
  4131. "name": "symfony/contracts",
  4132. "url": "https://github.com/symfony/contracts"
  4133. }
  4134. },
  4135. "autoload": {
  4136. "files": [
  4137. "function.php"
  4138. ]
  4139. },
  4140. "notification-url": "https://packagist.org/downloads/",
  4141. "license": [
  4142. "MIT"
  4143. ],
  4144. "authors": [
  4145. {
  4146. "name": "Nicolas Grekas",
  4147. "email": "p@tchwork.com"
  4148. },
  4149. {
  4150. "name": "Symfony Community",
  4151. "homepage": "https://symfony.com/contributors"
  4152. }
  4153. ],
  4154. "description": "A generic function and convention to trigger deprecation notices",
  4155. "homepage": "https://symfony.com",
  4156. "support": {
  4157. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.2"
  4158. },
  4159. "funding": [
  4160. {
  4161. "url": "https://symfony.com/sponsor",
  4162. "type": "custom"
  4163. },
  4164. {
  4165. "url": "https://github.com/fabpot",
  4166. "type": "github"
  4167. },
  4168. {
  4169. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4170. "type": "tidelift"
  4171. }
  4172. ],
  4173. "time": "2022-01-02T09:53:40+00:00"
  4174. },
  4175. {
  4176. "name": "symfony/dom-crawler",
  4177. "version": "v4.4.44",
  4178. "source": {
  4179. "type": "git",
  4180. "url": "https://github.com/symfony/dom-crawler.git",
  4181. "reference": "53cee1108a9748682b1268bc1a76a3d6a665ede2"
  4182. },
  4183. "dist": {
  4184. "type": "zip",
  4185. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/53cee1108a9748682b1268bc1a76a3d6a665ede2",
  4186. "reference": "53cee1108a9748682b1268bc1a76a3d6a665ede2",
  4187. "shasum": ""
  4188. },
  4189. "require": {
  4190. "php": ">=7.1.3",
  4191. "symfony/polyfill-ctype": "~1.8",
  4192. "symfony/polyfill-mbstring": "~1.0",
  4193. "symfony/polyfill-php80": "^1.16"
  4194. },
  4195. "conflict": {
  4196. "masterminds/html5": "<2.6"
  4197. },
  4198. "require-dev": {
  4199. "masterminds/html5": "^2.6",
  4200. "symfony/css-selector": "^3.4|^4.0|^5.0"
  4201. },
  4202. "suggest": {
  4203. "symfony/css-selector": ""
  4204. },
  4205. "type": "library",
  4206. "autoload": {
  4207. "psr-4": {
  4208. "Symfony\\Component\\DomCrawler\\": ""
  4209. },
  4210. "exclude-from-classmap": [
  4211. "/Tests/"
  4212. ]
  4213. },
  4214. "notification-url": "https://packagist.org/downloads/",
  4215. "license": [
  4216. "MIT"
  4217. ],
  4218. "authors": [
  4219. {
  4220. "name": "Fabien Potencier",
  4221. "email": "fabien@symfony.com"
  4222. },
  4223. {
  4224. "name": "Symfony Community",
  4225. "homepage": "https://symfony.com/contributors"
  4226. }
  4227. ],
  4228. "description": "Eases DOM navigation for HTML and XML documents",
  4229. "homepage": "https://symfony.com",
  4230. "support": {
  4231. "source": "https://github.com/symfony/dom-crawler/tree/v4.4.44"
  4232. },
  4233. "funding": [
  4234. {
  4235. "url": "https://symfony.com/sponsor",
  4236. "type": "custom"
  4237. },
  4238. {
  4239. "url": "https://github.com/fabpot",
  4240. "type": "github"
  4241. },
  4242. {
  4243. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4244. "type": "tidelift"
  4245. }
  4246. ],
  4247. "time": "2022-06-27T13:16:42+00:00"
  4248. },
  4249. {
  4250. "name": "symfony/event-dispatcher",
  4251. "version": "v5.4.9",
  4252. "source": {
  4253. "type": "git",
  4254. "url": "https://github.com/symfony/event-dispatcher.git",
  4255. "reference": "8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc"
  4256. },
  4257. "dist": {
  4258. "type": "zip",
  4259. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc",
  4260. "reference": "8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc",
  4261. "shasum": ""
  4262. },
  4263. "require": {
  4264. "php": ">=7.2.5",
  4265. "symfony/deprecation-contracts": "^2.1|^3",
  4266. "symfony/event-dispatcher-contracts": "^2|^3",
  4267. "symfony/polyfill-php80": "^1.16"
  4268. },
  4269. "conflict": {
  4270. "symfony/dependency-injection": "<4.4"
  4271. },
  4272. "provide": {
  4273. "psr/event-dispatcher-implementation": "1.0",
  4274. "symfony/event-dispatcher-implementation": "2.0"
  4275. },
  4276. "require-dev": {
  4277. "psr/log": "^1|^2|^3",
  4278. "symfony/config": "^4.4|^5.0|^6.0",
  4279. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  4280. "symfony/error-handler": "^4.4|^5.0|^6.0",
  4281. "symfony/expression-language": "^4.4|^5.0|^6.0",
  4282. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  4283. "symfony/service-contracts": "^1.1|^2|^3",
  4284. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  4285. },
  4286. "suggest": {
  4287. "symfony/dependency-injection": "",
  4288. "symfony/http-kernel": ""
  4289. },
  4290. "type": "library",
  4291. "autoload": {
  4292. "psr-4": {
  4293. "Symfony\\Component\\EventDispatcher\\": ""
  4294. },
  4295. "exclude-from-classmap": [
  4296. "/Tests/"
  4297. ]
  4298. },
  4299. "notification-url": "https://packagist.org/downloads/",
  4300. "license": [
  4301. "MIT"
  4302. ],
  4303. "authors": [
  4304. {
  4305. "name": "Fabien Potencier",
  4306. "email": "fabien@symfony.com"
  4307. },
  4308. {
  4309. "name": "Symfony Community",
  4310. "homepage": "https://symfony.com/contributors"
  4311. }
  4312. ],
  4313. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  4314. "homepage": "https://symfony.com",
  4315. "support": {
  4316. "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.9"
  4317. },
  4318. "funding": [
  4319. {
  4320. "url": "https://symfony.com/sponsor",
  4321. "type": "custom"
  4322. },
  4323. {
  4324. "url": "https://github.com/fabpot",
  4325. "type": "github"
  4326. },
  4327. {
  4328. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4329. "type": "tidelift"
  4330. }
  4331. ],
  4332. "time": "2022-05-05T16:45:39+00:00"
  4333. },
  4334. {
  4335. "name": "symfony/event-dispatcher-contracts",
  4336. "version": "v2.5.2",
  4337. "source": {
  4338. "type": "git",
  4339. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  4340. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1"
  4341. },
  4342. "dist": {
  4343. "type": "zip",
  4344. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/f98b54df6ad059855739db6fcbc2d36995283fe1",
  4345. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1",
  4346. "shasum": ""
  4347. },
  4348. "require": {
  4349. "php": ">=7.2.5",
  4350. "psr/event-dispatcher": "^1"
  4351. },
  4352. "suggest": {
  4353. "symfony/event-dispatcher-implementation": ""
  4354. },
  4355. "type": "library",
  4356. "extra": {
  4357. "branch-alias": {
  4358. "dev-main": "2.5-dev"
  4359. },
  4360. "thanks": {
  4361. "name": "symfony/contracts",
  4362. "url": "https://github.com/symfony/contracts"
  4363. }
  4364. },
  4365. "autoload": {
  4366. "psr-4": {
  4367. "Symfony\\Contracts\\EventDispatcher\\": ""
  4368. }
  4369. },
  4370. "notification-url": "https://packagist.org/downloads/",
  4371. "license": [
  4372. "MIT"
  4373. ],
  4374. "authors": [
  4375. {
  4376. "name": "Nicolas Grekas",
  4377. "email": "p@tchwork.com"
  4378. },
  4379. {
  4380. "name": "Symfony Community",
  4381. "homepage": "https://symfony.com/contributors"
  4382. }
  4383. ],
  4384. "description": "Generic abstractions related to dispatching event",
  4385. "homepage": "https://symfony.com",
  4386. "keywords": [
  4387. "abstractions",
  4388. "contracts",
  4389. "decoupling",
  4390. "interfaces",
  4391. "interoperability",
  4392. "standards"
  4393. ],
  4394. "support": {
  4395. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.5.2"
  4396. },
  4397. "funding": [
  4398. {
  4399. "url": "https://symfony.com/sponsor",
  4400. "type": "custom"
  4401. },
  4402. {
  4403. "url": "https://github.com/fabpot",
  4404. "type": "github"
  4405. },
  4406. {
  4407. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4408. "type": "tidelift"
  4409. }
  4410. ],
  4411. "time": "2022-01-02T09:53:40+00:00"
  4412. },
  4413. {
  4414. "name": "symfony/finder",
  4415. "version": "v5.4.11",
  4416. "source": {
  4417. "type": "git",
  4418. "url": "https://github.com/symfony/finder.git",
  4419. "reference": "7872a66f57caffa2916a584db1aa7f12adc76f8c"
  4420. },
  4421. "dist": {
  4422. "type": "zip",
  4423. "url": "https://api.github.com/repos/symfony/finder/zipball/7872a66f57caffa2916a584db1aa7f12adc76f8c",
  4424. "reference": "7872a66f57caffa2916a584db1aa7f12adc76f8c",
  4425. "shasum": ""
  4426. },
  4427. "require": {
  4428. "php": ">=7.2.5",
  4429. "symfony/deprecation-contracts": "^2.1|^3",
  4430. "symfony/polyfill-php80": "^1.16"
  4431. },
  4432. "type": "library",
  4433. "autoload": {
  4434. "psr-4": {
  4435. "Symfony\\Component\\Finder\\": ""
  4436. },
  4437. "exclude-from-classmap": [
  4438. "/Tests/"
  4439. ]
  4440. },
  4441. "notification-url": "https://packagist.org/downloads/",
  4442. "license": [
  4443. "MIT"
  4444. ],
  4445. "authors": [
  4446. {
  4447. "name": "Fabien Potencier",
  4448. "email": "fabien@symfony.com"
  4449. },
  4450. {
  4451. "name": "Symfony Community",
  4452. "homepage": "https://symfony.com/contributors"
  4453. }
  4454. ],
  4455. "description": "Finds files and directories via an intuitive fluent interface",
  4456. "homepage": "https://symfony.com",
  4457. "support": {
  4458. "source": "https://github.com/symfony/finder/tree/v5.4.11"
  4459. },
  4460. "funding": [
  4461. {
  4462. "url": "https://symfony.com/sponsor",
  4463. "type": "custom"
  4464. },
  4465. {
  4466. "url": "https://github.com/fabpot",
  4467. "type": "github"
  4468. },
  4469. {
  4470. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4471. "type": "tidelift"
  4472. }
  4473. ],
  4474. "time": "2022-07-29T07:37:50+00:00"
  4475. },
  4476. {
  4477. "name": "symfony/polyfill-ctype",
  4478. "version": "v1.26.0",
  4479. "source": {
  4480. "type": "git",
  4481. "url": "https://github.com/symfony/polyfill-ctype.git",
  4482. "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4"
  4483. },
  4484. "dist": {
  4485. "type": "zip",
  4486. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4",
  4487. "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4",
  4488. "shasum": ""
  4489. },
  4490. "require": {
  4491. "php": ">=7.1"
  4492. },
  4493. "provide": {
  4494. "ext-ctype": "*"
  4495. },
  4496. "suggest": {
  4497. "ext-ctype": "For best performance"
  4498. },
  4499. "type": "library",
  4500. "extra": {
  4501. "branch-alias": {
  4502. "dev-main": "1.26-dev"
  4503. },
  4504. "thanks": {
  4505. "name": "symfony/polyfill",
  4506. "url": "https://github.com/symfony/polyfill"
  4507. }
  4508. },
  4509. "autoload": {
  4510. "files": [
  4511. "bootstrap.php"
  4512. ],
  4513. "psr-4": {
  4514. "Symfony\\Polyfill\\Ctype\\": ""
  4515. }
  4516. },
  4517. "notification-url": "https://packagist.org/downloads/",
  4518. "license": [
  4519. "MIT"
  4520. ],
  4521. "authors": [
  4522. {
  4523. "name": "Gert de Pagter",
  4524. "email": "BackEndTea@gmail.com"
  4525. },
  4526. {
  4527. "name": "Symfony Community",
  4528. "homepage": "https://symfony.com/contributors"
  4529. }
  4530. ],
  4531. "description": "Symfony polyfill for ctype functions",
  4532. "homepage": "https://symfony.com",
  4533. "keywords": [
  4534. "compatibility",
  4535. "ctype",
  4536. "polyfill",
  4537. "portable"
  4538. ],
  4539. "support": {
  4540. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.26.0"
  4541. },
  4542. "funding": [
  4543. {
  4544. "url": "https://symfony.com/sponsor",
  4545. "type": "custom"
  4546. },
  4547. {
  4548. "url": "https://github.com/fabpot",
  4549. "type": "github"
  4550. },
  4551. {
  4552. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4553. "type": "tidelift"
  4554. }
  4555. ],
  4556. "time": "2022-05-24T11:49:31+00:00"
  4557. },
  4558. {
  4559. "name": "symfony/polyfill-intl-grapheme",
  4560. "version": "v1.26.0",
  4561. "source": {
  4562. "type": "git",
  4563. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  4564. "reference": "433d05519ce6990bf3530fba6957499d327395c2"
  4565. },
  4566. "dist": {
  4567. "type": "zip",
  4568. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/433d05519ce6990bf3530fba6957499d327395c2",
  4569. "reference": "433d05519ce6990bf3530fba6957499d327395c2",
  4570. "shasum": ""
  4571. },
  4572. "require": {
  4573. "php": ">=7.1"
  4574. },
  4575. "suggest": {
  4576. "ext-intl": "For best performance"
  4577. },
  4578. "type": "library",
  4579. "extra": {
  4580. "branch-alias": {
  4581. "dev-main": "1.26-dev"
  4582. },
  4583. "thanks": {
  4584. "name": "symfony/polyfill",
  4585. "url": "https://github.com/symfony/polyfill"
  4586. }
  4587. },
  4588. "autoload": {
  4589. "files": [
  4590. "bootstrap.php"
  4591. ],
  4592. "psr-4": {
  4593. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  4594. }
  4595. },
  4596. "notification-url": "https://packagist.org/downloads/",
  4597. "license": [
  4598. "MIT"
  4599. ],
  4600. "authors": [
  4601. {
  4602. "name": "Nicolas Grekas",
  4603. "email": "p@tchwork.com"
  4604. },
  4605. {
  4606. "name": "Symfony Community",
  4607. "homepage": "https://symfony.com/contributors"
  4608. }
  4609. ],
  4610. "description": "Symfony polyfill for intl's grapheme_* functions",
  4611. "homepage": "https://symfony.com",
  4612. "keywords": [
  4613. "compatibility",
  4614. "grapheme",
  4615. "intl",
  4616. "polyfill",
  4617. "portable",
  4618. "shim"
  4619. ],
  4620. "support": {
  4621. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.26.0"
  4622. },
  4623. "funding": [
  4624. {
  4625. "url": "https://symfony.com/sponsor",
  4626. "type": "custom"
  4627. },
  4628. {
  4629. "url": "https://github.com/fabpot",
  4630. "type": "github"
  4631. },
  4632. {
  4633. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4634. "type": "tidelift"
  4635. }
  4636. ],
  4637. "time": "2022-05-24T11:49:31+00:00"
  4638. },
  4639. {
  4640. "name": "symfony/polyfill-php73",
  4641. "version": "v1.26.0",
  4642. "source": {
  4643. "type": "git",
  4644. "url": "https://github.com/symfony/polyfill-php73.git",
  4645. "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85"
  4646. },
  4647. "dist": {
  4648. "type": "zip",
  4649. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/e440d35fa0286f77fb45b79a03fedbeda9307e85",
  4650. "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85",
  4651. "shasum": ""
  4652. },
  4653. "require": {
  4654. "php": ">=7.1"
  4655. },
  4656. "type": "library",
  4657. "extra": {
  4658. "branch-alias": {
  4659. "dev-main": "1.26-dev"
  4660. },
  4661. "thanks": {
  4662. "name": "symfony/polyfill",
  4663. "url": "https://github.com/symfony/polyfill"
  4664. }
  4665. },
  4666. "autoload": {
  4667. "files": [
  4668. "bootstrap.php"
  4669. ],
  4670. "psr-4": {
  4671. "Symfony\\Polyfill\\Php73\\": ""
  4672. },
  4673. "classmap": [
  4674. "Resources/stubs"
  4675. ]
  4676. },
  4677. "notification-url": "https://packagist.org/downloads/",
  4678. "license": [
  4679. "MIT"
  4680. ],
  4681. "authors": [
  4682. {
  4683. "name": "Nicolas Grekas",
  4684. "email": "p@tchwork.com"
  4685. },
  4686. {
  4687. "name": "Symfony Community",
  4688. "homepage": "https://symfony.com/contributors"
  4689. }
  4690. ],
  4691. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  4692. "homepage": "https://symfony.com",
  4693. "keywords": [
  4694. "compatibility",
  4695. "polyfill",
  4696. "portable",
  4697. "shim"
  4698. ],
  4699. "support": {
  4700. "source": "https://github.com/symfony/polyfill-php73/tree/v1.26.0"
  4701. },
  4702. "funding": [
  4703. {
  4704. "url": "https://symfony.com/sponsor",
  4705. "type": "custom"
  4706. },
  4707. {
  4708. "url": "https://github.com/fabpot",
  4709. "type": "github"
  4710. },
  4711. {
  4712. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4713. "type": "tidelift"
  4714. }
  4715. ],
  4716. "time": "2022-05-24T11:49:31+00:00"
  4717. },
  4718. {
  4719. "name": "symfony/polyfill-php80",
  4720. "version": "v1.26.0",
  4721. "source": {
  4722. "type": "git",
  4723. "url": "https://github.com/symfony/polyfill-php80.git",
  4724. "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace"
  4725. },
  4726. "dist": {
  4727. "type": "zip",
  4728. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/cfa0ae98841b9e461207c13ab093d76b0fa7bace",
  4729. "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace",
  4730. "shasum": ""
  4731. },
  4732. "require": {
  4733. "php": ">=7.1"
  4734. },
  4735. "type": "library",
  4736. "extra": {
  4737. "branch-alias": {
  4738. "dev-main": "1.26-dev"
  4739. },
  4740. "thanks": {
  4741. "name": "symfony/polyfill",
  4742. "url": "https://github.com/symfony/polyfill"
  4743. }
  4744. },
  4745. "autoload": {
  4746. "files": [
  4747. "bootstrap.php"
  4748. ],
  4749. "psr-4": {
  4750. "Symfony\\Polyfill\\Php80\\": ""
  4751. },
  4752. "classmap": [
  4753. "Resources/stubs"
  4754. ]
  4755. },
  4756. "notification-url": "https://packagist.org/downloads/",
  4757. "license": [
  4758. "MIT"
  4759. ],
  4760. "authors": [
  4761. {
  4762. "name": "Ion Bazan",
  4763. "email": "ion.bazan@gmail.com"
  4764. },
  4765. {
  4766. "name": "Nicolas Grekas",
  4767. "email": "p@tchwork.com"
  4768. },
  4769. {
  4770. "name": "Symfony Community",
  4771. "homepage": "https://symfony.com/contributors"
  4772. }
  4773. ],
  4774. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  4775. "homepage": "https://symfony.com",
  4776. "keywords": [
  4777. "compatibility",
  4778. "polyfill",
  4779. "portable",
  4780. "shim"
  4781. ],
  4782. "support": {
  4783. "source": "https://github.com/symfony/polyfill-php80/tree/v1.26.0"
  4784. },
  4785. "funding": [
  4786. {
  4787. "url": "https://symfony.com/sponsor",
  4788. "type": "custom"
  4789. },
  4790. {
  4791. "url": "https://github.com/fabpot",
  4792. "type": "github"
  4793. },
  4794. {
  4795. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4796. "type": "tidelift"
  4797. }
  4798. ],
  4799. "time": "2022-05-10T07:21:04+00:00"
  4800. },
  4801. {
  4802. "name": "symfony/service-contracts",
  4803. "version": "v1.1.2",
  4804. "source": {
  4805. "type": "git",
  4806. "url": "https://github.com/symfony/service-contracts.git",
  4807. "reference": "191afdcb5804db960d26d8566b7e9a2843cab3a0"
  4808. },
  4809. "dist": {
  4810. "type": "zip",
  4811. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/191afdcb5804db960d26d8566b7e9a2843cab3a0",
  4812. "reference": "191afdcb5804db960d26d8566b7e9a2843cab3a0",
  4813. "shasum": ""
  4814. },
  4815. "require": {
  4816. "php": "^7.1.3"
  4817. },
  4818. "suggest": {
  4819. "psr/container": "",
  4820. "symfony/service-implementation": ""
  4821. },
  4822. "type": "library",
  4823. "extra": {
  4824. "branch-alias": {
  4825. "dev-master": "1.1-dev"
  4826. }
  4827. },
  4828. "autoload": {
  4829. "psr-4": {
  4830. "Symfony\\Contracts\\Service\\": ""
  4831. }
  4832. },
  4833. "notification-url": "https://packagist.org/downloads/",
  4834. "license": [
  4835. "MIT"
  4836. ],
  4837. "authors": [
  4838. {
  4839. "name": "Nicolas Grekas",
  4840. "email": "p@tchwork.com"
  4841. },
  4842. {
  4843. "name": "Symfony Community",
  4844. "homepage": "https://symfony.com/contributors"
  4845. }
  4846. ],
  4847. "description": "Generic abstractions related to writing services",
  4848. "homepage": "https://symfony.com",
  4849. "keywords": [
  4850. "abstractions",
  4851. "contracts",
  4852. "decoupling",
  4853. "interfaces",
  4854. "interoperability",
  4855. "standards"
  4856. ],
  4857. "support": {
  4858. "source": "https://github.com/symfony/service-contracts/tree/v1.1.2"
  4859. },
  4860. "time": "2019-05-28T07:50:59+00:00"
  4861. },
  4862. {
  4863. "name": "symfony/string",
  4864. "version": "v5.4.11",
  4865. "source": {
  4866. "type": "git",
  4867. "url": "https://github.com/symfony/string.git",
  4868. "reference": "5eb661e49ad389e4ae2b6e4df8d783a8a6548322"
  4869. },
  4870. "dist": {
  4871. "type": "zip",
  4872. "url": "https://api.github.com/repos/symfony/string/zipball/5eb661e49ad389e4ae2b6e4df8d783a8a6548322",
  4873. "reference": "5eb661e49ad389e4ae2b6e4df8d783a8a6548322",
  4874. "shasum": ""
  4875. },
  4876. "require": {
  4877. "php": ">=7.2.5",
  4878. "symfony/polyfill-ctype": "~1.8",
  4879. "symfony/polyfill-intl-grapheme": "~1.0",
  4880. "symfony/polyfill-intl-normalizer": "~1.0",
  4881. "symfony/polyfill-mbstring": "~1.0",
  4882. "symfony/polyfill-php80": "~1.15"
  4883. },
  4884. "conflict": {
  4885. "symfony/translation-contracts": ">=3.0"
  4886. },
  4887. "require-dev": {
  4888. "symfony/error-handler": "^4.4|^5.0|^6.0",
  4889. "symfony/http-client": "^4.4|^5.0|^6.0",
  4890. "symfony/translation-contracts": "^1.1|^2",
  4891. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  4892. },
  4893. "type": "library",
  4894. "autoload": {
  4895. "files": [
  4896. "Resources/functions.php"
  4897. ],
  4898. "psr-4": {
  4899. "Symfony\\Component\\String\\": ""
  4900. },
  4901. "exclude-from-classmap": [
  4902. "/Tests/"
  4903. ]
  4904. },
  4905. "notification-url": "https://packagist.org/downloads/",
  4906. "license": [
  4907. "MIT"
  4908. ],
  4909. "authors": [
  4910. {
  4911. "name": "Nicolas Grekas",
  4912. "email": "p@tchwork.com"
  4913. },
  4914. {
  4915. "name": "Symfony Community",
  4916. "homepage": "https://symfony.com/contributors"
  4917. }
  4918. ],
  4919. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  4920. "homepage": "https://symfony.com",
  4921. "keywords": [
  4922. "grapheme",
  4923. "i18n",
  4924. "string",
  4925. "unicode",
  4926. "utf-8",
  4927. "utf8"
  4928. ],
  4929. "support": {
  4930. "source": "https://github.com/symfony/string/tree/v5.4.11"
  4931. },
  4932. "funding": [
  4933. {
  4934. "url": "https://symfony.com/sponsor",
  4935. "type": "custom"
  4936. },
  4937. {
  4938. "url": "https://github.com/fabpot",
  4939. "type": "github"
  4940. },
  4941. {
  4942. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4943. "type": "tidelift"
  4944. }
  4945. ],
  4946. "time": "2022-07-24T16:15:25+00:00"
  4947. },
  4948. {
  4949. "name": "symfony/yaml",
  4950. "version": "v5.4.11",
  4951. "source": {
  4952. "type": "git",
  4953. "url": "https://github.com/symfony/yaml.git",
  4954. "reference": "05d4ea560f3402c6c116afd99fdc66e60eda227e"
  4955. },
  4956. "dist": {
  4957. "type": "zip",
  4958. "url": "https://api.github.com/repos/symfony/yaml/zipball/05d4ea560f3402c6c116afd99fdc66e60eda227e",
  4959. "reference": "05d4ea560f3402c6c116afd99fdc66e60eda227e",
  4960. "shasum": ""
  4961. },
  4962. "require": {
  4963. "php": ">=7.2.5",
  4964. "symfony/deprecation-contracts": "^2.1|^3",
  4965. "symfony/polyfill-ctype": "^1.8"
  4966. },
  4967. "conflict": {
  4968. "symfony/console": "<5.3"
  4969. },
  4970. "require-dev": {
  4971. "symfony/console": "^5.3|^6.0"
  4972. },
  4973. "suggest": {
  4974. "symfony/console": "For validating YAML files using the lint command"
  4975. },
  4976. "bin": [
  4977. "Resources/bin/yaml-lint"
  4978. ],
  4979. "type": "library",
  4980. "autoload": {
  4981. "psr-4": {
  4982. "Symfony\\Component\\Yaml\\": ""
  4983. },
  4984. "exclude-from-classmap": [
  4985. "/Tests/"
  4986. ]
  4987. },
  4988. "notification-url": "https://packagist.org/downloads/",
  4989. "license": [
  4990. "MIT"
  4991. ],
  4992. "authors": [
  4993. {
  4994. "name": "Fabien Potencier",
  4995. "email": "fabien@symfony.com"
  4996. },
  4997. {
  4998. "name": "Symfony Community",
  4999. "homepage": "https://symfony.com/contributors"
  5000. }
  5001. ],
  5002. "description": "Loads and dumps YAML files",
  5003. "homepage": "https://symfony.com",
  5004. "support": {
  5005. "source": "https://github.com/symfony/yaml/tree/v5.4.11"
  5006. },
  5007. "funding": [
  5008. {
  5009. "url": "https://symfony.com/sponsor",
  5010. "type": "custom"
  5011. },
  5012. {
  5013. "url": "https://github.com/fabpot",
  5014. "type": "github"
  5015. },
  5016. {
  5017. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5018. "type": "tidelift"
  5019. }
  5020. ],
  5021. "time": "2022-06-27T16:58:25+00:00"
  5022. },
  5023. {
  5024. "name": "theseer/tokenizer",
  5025. "version": "1.2.1",
  5026. "source": {
  5027. "type": "git",
  5028. "url": "https://github.com/theseer/tokenizer.git",
  5029. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  5030. },
  5031. "dist": {
  5032. "type": "zip",
  5033. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  5034. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  5035. "shasum": ""
  5036. },
  5037. "require": {
  5038. "ext-dom": "*",
  5039. "ext-tokenizer": "*",
  5040. "ext-xmlwriter": "*",
  5041. "php": "^7.2 || ^8.0"
  5042. },
  5043. "type": "library",
  5044. "autoload": {
  5045. "classmap": [
  5046. "src/"
  5047. ]
  5048. },
  5049. "notification-url": "https://packagist.org/downloads/",
  5050. "license": [
  5051. "BSD-3-Clause"
  5052. ],
  5053. "authors": [
  5054. {
  5055. "name": "Arne Blankerts",
  5056. "email": "arne@blankerts.de",
  5057. "role": "Developer"
  5058. }
  5059. ],
  5060. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  5061. "support": {
  5062. "issues": "https://github.com/theseer/tokenizer/issues",
  5063. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  5064. },
  5065. "funding": [
  5066. {
  5067. "url": "https://github.com/theseer",
  5068. "type": "github"
  5069. }
  5070. ],
  5071. "time": "2021-07-28T10:34:58+00:00"
  5072. },
  5073. {
  5074. "name": "yiisoft/yii2-debug",
  5075. "version": "2.1.19",
  5076. "source": {
  5077. "type": "git",
  5078. "url": "https://github.com/yiisoft/yii2-debug.git",
  5079. "reference": "84d20d738b0698298f851fcb6fc25e748d759223"
  5080. },
  5081. "dist": {
  5082. "type": "zip",
  5083. "url": "https://api.github.com/repos/yiisoft/yii2-debug/zipball/84d20d738b0698298f851fcb6fc25e748d759223",
  5084. "reference": "84d20d738b0698298f851fcb6fc25e748d759223",
  5085. "shasum": ""
  5086. },
  5087. "require": {
  5088. "ext-mbstring": "*",
  5089. "php": ">=5.4",
  5090. "yiisoft/yii2": "~2.0.13"
  5091. },
  5092. "require-dev": {
  5093. "cweagans/composer-patches": "^1.7",
  5094. "phpunit/phpunit": "4.8.34",
  5095. "yiisoft/yii2-coding-standards": "~2.0",
  5096. "yiisoft/yii2-swiftmailer": "*"
  5097. },
  5098. "type": "yii2-extension",
  5099. "extra": {
  5100. "branch-alias": {
  5101. "dev-master": "2.0.x-dev"
  5102. },
  5103. "composer-exit-on-patch-failure": true,
  5104. "patches": {
  5105. "phpunit/phpunit-mock-objects": {
  5106. "Fix PHP 7 and 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_mock_objects.patch"
  5107. },
  5108. "phpunit/phpunit": {
  5109. "Fix PHP 7 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php7.patch",
  5110. "Fix PHP 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php8.patch",
  5111. "Fix PHP 8.1 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php81.patch"
  5112. }
  5113. }
  5114. },
  5115. "autoload": {
  5116. "psr-4": {
  5117. "yii\\debug\\": "src"
  5118. }
  5119. },
  5120. "notification-url": "https://packagist.org/downloads/",
  5121. "license": [
  5122. "BSD-3-Clause"
  5123. ],
  5124. "authors": [
  5125. {
  5126. "name": "Qiang Xue",
  5127. "email": "qiang.xue@gmail.com"
  5128. },
  5129. {
  5130. "name": "Simon Karlen",
  5131. "email": "simi.albi@outlook.com"
  5132. }
  5133. ],
  5134. "description": "The debugger extension for the Yii framework",
  5135. "keywords": [
  5136. "debug",
  5137. "debugger",
  5138. "yii2"
  5139. ],
  5140. "support": {
  5141. "forum": "http://www.yiiframework.com/forum/",
  5142. "irc": "irc://irc.freenode.net/yii",
  5143. "issues": "https://github.com/yiisoft/yii2-debug/issues",
  5144. "source": "https://github.com/yiisoft/yii2-debug",
  5145. "wiki": "http://www.yiiframework.com/wiki/"
  5146. },
  5147. "funding": [
  5148. {
  5149. "url": "https://github.com/yiisoft",
  5150. "type": "github"
  5151. },
  5152. {
  5153. "url": "https://opencollective.com/yiisoft",
  5154. "type": "open_collective"
  5155. },
  5156. {
  5157. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2-debug",
  5158. "type": "tidelift"
  5159. }
  5160. ],
  5161. "time": "2022-04-05T20:35:14+00:00"
  5162. },
  5163. {
  5164. "name": "yiisoft/yii2-faker",
  5165. "version": "2.0.5",
  5166. "source": {
  5167. "type": "git",
  5168. "url": "https://github.com/yiisoft/yii2-faker.git",
  5169. "reference": "8c361657143bfaea58ff7dcc9bf51f1991a46f5d"
  5170. },
  5171. "dist": {
  5172. "type": "zip",
  5173. "url": "https://api.github.com/repos/yiisoft/yii2-faker/zipball/8c361657143bfaea58ff7dcc9bf51f1991a46f5d",
  5174. "reference": "8c361657143bfaea58ff7dcc9bf51f1991a46f5d",
  5175. "shasum": ""
  5176. },
  5177. "require": {
  5178. "fakerphp/faker": "~1.9|~1.10",
  5179. "yiisoft/yii2": "~2.0.0"
  5180. },
  5181. "require-dev": {
  5182. "cweagans/composer-patches": "^1.7",
  5183. "phpunit/phpunit": "4.8.34"
  5184. },
  5185. "type": "yii2-extension",
  5186. "extra": {
  5187. "branch-alias": {
  5188. "dev-master": "2.0.x-dev"
  5189. },
  5190. "composer-exit-on-patch-failure": true,
  5191. "patches": {
  5192. "phpunit/phpunit-mock-objects": {
  5193. "Fix PHP 7 and 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_mock_objects.patch"
  5194. },
  5195. "phpunit/phpunit": {
  5196. "Fix PHP 7 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php7.patch",
  5197. "Fix PHP 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php8.patch"
  5198. }
  5199. }
  5200. },
  5201. "autoload": {
  5202. "psr-4": {
  5203. "yii\\faker\\": "src"
  5204. }
  5205. },
  5206. "notification-url": "https://packagist.org/downloads/",
  5207. "license": [
  5208. "BSD-3-Clause"
  5209. ],
  5210. "authors": [
  5211. {
  5212. "name": "Mark Jebri",
  5213. "email": "mark.github@yandex.ru"
  5214. }
  5215. ],
  5216. "description": "Fixture generator. The Faker integration for the Yii framework.",
  5217. "keywords": [
  5218. "Fixture",
  5219. "faker",
  5220. "yii2"
  5221. ],
  5222. "support": {
  5223. "forum": "http://www.yiiframework.com/forum/",
  5224. "irc": "irc://irc.freenode.net/yii",
  5225. "issues": "https://github.com/yiisoft/yii2-faker/issues",
  5226. "source": "https://github.com/yiisoft/yii2-faker",
  5227. "wiki": "http://www.yiiframework.com/wiki/"
  5228. },
  5229. "funding": [
  5230. {
  5231. "url": "https://github.com/yiisoft",
  5232. "type": "github"
  5233. },
  5234. {
  5235. "url": "https://opencollective.com/yiisoft",
  5236. "type": "open_collective"
  5237. },
  5238. {
  5239. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2-faker",
  5240. "type": "tidelift"
  5241. }
  5242. ],
  5243. "time": "2020-11-10T12:27:35+00:00"
  5244. },
  5245. {
  5246. "name": "yiisoft/yii2-gii",
  5247. "version": "2.2.4",
  5248. "source": {
  5249. "type": "git",
  5250. "url": "https://github.com/yiisoft/yii2-gii.git",
  5251. "reference": "80893fc4c0df97f3638938948bf34ca43dd8bff6"
  5252. },
  5253. "dist": {
  5254. "type": "zip",
  5255. "url": "https://api.github.com/repos/yiisoft/yii2-gii/zipball/80893fc4c0df97f3638938948bf34ca43dd8bff6",
  5256. "reference": "80893fc4c0df97f3638938948bf34ca43dd8bff6",
  5257. "shasum": ""
  5258. },
  5259. "require": {
  5260. "phpspec/php-diff": "^1.1.0",
  5261. "yiisoft/yii2": "~2.0.14"
  5262. },
  5263. "require-dev": {
  5264. "cweagans/composer-patches": "^1.7",
  5265. "phpunit/phpunit": "4.8.34",
  5266. "yiisoft/yii2-coding-standards": "~2.0"
  5267. },
  5268. "type": "yii2-extension",
  5269. "extra": {
  5270. "branch-alias": {
  5271. "dev-master": "2.0.x-dev"
  5272. },
  5273. "composer-exit-on-patch-failure": true,
  5274. "patches": {
  5275. "phpunit/phpunit-mock-objects": {
  5276. "Fix PHP 7 and 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_mock_objects.patch"
  5277. },
  5278. "phpunit/phpunit": {
  5279. "Fix PHP 7 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php7.patch",
  5280. "Fix PHP 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php8.patch"
  5281. }
  5282. }
  5283. },
  5284. "autoload": {
  5285. "psr-4": {
  5286. "yii\\gii\\": "src"
  5287. }
  5288. },
  5289. "notification-url": "https://packagist.org/downloads/",
  5290. "license": [
  5291. "BSD-3-Clause"
  5292. ],
  5293. "authors": [
  5294. {
  5295. "name": "Qiang Xue",
  5296. "email": "qiang.xue@gmail.com"
  5297. }
  5298. ],
  5299. "description": "The Gii extension for the Yii framework",
  5300. "keywords": [
  5301. "code generator",
  5302. "gii",
  5303. "yii2"
  5304. ],
  5305. "support": {
  5306. "forum": "http://www.yiiframework.com/forum/",
  5307. "irc": "irc://irc.freenode.net/yii",
  5308. "issues": "https://github.com/yiisoft/yii2-gii/issues",
  5309. "source": "https://github.com/yiisoft/yii2-gii",
  5310. "wiki": "http://www.yiiframework.com/wiki/"
  5311. },
  5312. "funding": [
  5313. {
  5314. "url": "https://github.com/yiisoft",
  5315. "type": "github"
  5316. },
  5317. {
  5318. "url": "https://opencollective.com/yiisoft",
  5319. "type": "open_collective"
  5320. },
  5321. {
  5322. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2-gii",
  5323. "type": "tidelift"
  5324. }
  5325. ],
  5326. "time": "2021-12-30T08:36:02+00:00"
  5327. }
  5328. ],
  5329. "aliases": [],
  5330. "minimum-stability": "stable",
  5331. "stability-flags": [],
  5332. "prefer-stable": false,
  5333. "prefer-lowest": false,
  5334. "platform": {
  5335. "php": ">=7.0",
  5336. "ext-pdo": "*",
  5337. "ext-json": "*",
  5338. "ext-bcmath": "*",
  5339. "ext-curl": "*"
  5340. },
  5341. "platform-dev": [],
  5342. "plugin-api-version": "2.3.0"
  5343. }