composer.lock 226 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405
  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": "3b106a4d1a271673896d67cbdc8623e1",
  8. "packages": [
  9. {
  10. "name": "composer/ca-bundle",
  11. "version": "1.3.6",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/composer/ca-bundle.git",
  15. "reference": "90d087e988ff194065333d16bc5cf649872d9cdb"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/90d087e988ff194065333d16bc5cf649872d9cdb",
  20. "reference": "90d087e988ff194065333d16bc5cf649872d9cdb",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "ext-openssl": "*",
  25. "ext-pcre": "*",
  26. "php": "^5.3.2 || ^7.0 || ^8.0"
  27. },
  28. "require-dev": {
  29. "phpstan/phpstan": "^0.12.55",
  30. "psr/log": "^1.0",
  31. "symfony/phpunit-bridge": "^4.2 || ^5",
  32. "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  33. },
  34. "type": "library",
  35. "extra": {
  36. "branch-alias": {
  37. "dev-main": "1.x-dev"
  38. }
  39. },
  40. "autoload": {
  41. "psr-4": {
  42. "Composer\\CaBundle\\": "src"
  43. }
  44. },
  45. "notification-url": "https://packagist.org/downloads/",
  46. "license": [
  47. "MIT"
  48. ],
  49. "authors": [
  50. {
  51. "name": "Jordi Boggiano",
  52. "email": "j.boggiano@seld.be",
  53. "homepage": "http://seld.be"
  54. }
  55. ],
  56. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  57. "keywords": [
  58. "cabundle",
  59. "cacert",
  60. "certificate",
  61. "ssl",
  62. "tls"
  63. ],
  64. "support": {
  65. "irc": "irc://irc.freenode.org/composer",
  66. "issues": "https://github.com/composer/ca-bundle/issues",
  67. "source": "https://github.com/composer/ca-bundle/tree/1.3.6"
  68. },
  69. "funding": [
  70. {
  71. "url": "https://packagist.com",
  72. "type": "custom"
  73. },
  74. {
  75. "url": "https://github.com/composer",
  76. "type": "github"
  77. },
  78. {
  79. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  80. "type": "tidelift"
  81. }
  82. ],
  83. "time": "2023-06-06T12:02:59+00:00"
  84. },
  85. {
  86. "name": "composer/semver",
  87. "version": "1.7.2",
  88. "source": {
  89. "type": "git",
  90. "url": "https://github.com/composer/semver.git",
  91. "reference": "647490bbcaf7fc4891c58f47b825eb99d19c377a"
  92. },
  93. "dist": {
  94. "type": "zip",
  95. "url": "https://api.github.com/repos/composer/semver/zipball/647490bbcaf7fc4891c58f47b825eb99d19c377a",
  96. "reference": "647490bbcaf7fc4891c58f47b825eb99d19c377a",
  97. "shasum": ""
  98. },
  99. "require": {
  100. "php": "^5.3.2 || ^7.0 || ^8.0"
  101. },
  102. "require-dev": {
  103. "phpunit/phpunit": "^4.5 || ^5.0.5"
  104. },
  105. "type": "library",
  106. "extra": {
  107. "branch-alias": {
  108. "dev-master": "1.x-dev"
  109. }
  110. },
  111. "autoload": {
  112. "psr-4": {
  113. "Composer\\Semver\\": "src"
  114. }
  115. },
  116. "notification-url": "https://packagist.org/downloads/",
  117. "license": [
  118. "MIT"
  119. ],
  120. "authors": [
  121. {
  122. "name": "Nils Adermann",
  123. "email": "naderman@naderman.de",
  124. "homepage": "http://www.naderman.de"
  125. },
  126. {
  127. "name": "Jordi Boggiano",
  128. "email": "j.boggiano@seld.be",
  129. "homepage": "http://seld.be"
  130. },
  131. {
  132. "name": "Rob Bast",
  133. "email": "rob.bast@gmail.com",
  134. "homepage": "http://robbast.nl"
  135. }
  136. ],
  137. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  138. "keywords": [
  139. "semantic",
  140. "semver",
  141. "validation",
  142. "versioning"
  143. ],
  144. "support": {
  145. "irc": "irc://irc.freenode.org/composer",
  146. "issues": "https://github.com/composer/semver/issues",
  147. "source": "https://github.com/composer/semver/tree/1.7.2"
  148. },
  149. "funding": [
  150. {
  151. "url": "https://packagist.com",
  152. "type": "custom"
  153. },
  154. {
  155. "url": "https://github.com/composer",
  156. "type": "github"
  157. },
  158. {
  159. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  160. "type": "tidelift"
  161. }
  162. ],
  163. "time": "2020-12-03T15:47:16+00:00"
  164. },
  165. {
  166. "name": "doctrine/cache",
  167. "version": "1.13.0",
  168. "source": {
  169. "type": "git",
  170. "url": "https://github.com/doctrine/cache.git",
  171. "reference": "56cd022adb5514472cb144c087393c1821911d09"
  172. },
  173. "dist": {
  174. "type": "zip",
  175. "url": "https://api.github.com/repos/doctrine/cache/zipball/56cd022adb5514472cb144c087393c1821911d09",
  176. "reference": "56cd022adb5514472cb144c087393c1821911d09",
  177. "shasum": ""
  178. },
  179. "require": {
  180. "php": "~7.1 || ^8.0"
  181. },
  182. "conflict": {
  183. "doctrine/common": ">2.2,<2.4"
  184. },
  185. "require-dev": {
  186. "alcaeus/mongo-php-adapter": "^1.1",
  187. "cache/integration-tests": "dev-master",
  188. "doctrine/coding-standard": "^9",
  189. "mongodb/mongodb": "^1.1",
  190. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  191. "predis/predis": "~1.0",
  192. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  193. "symfony/cache": "^4.4 || ^5.4 || ^6",
  194. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  195. },
  196. "suggest": {
  197. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  198. },
  199. "type": "library",
  200. "autoload": {
  201. "psr-4": {
  202. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  203. }
  204. },
  205. "notification-url": "https://packagist.org/downloads/",
  206. "license": [
  207. "MIT"
  208. ],
  209. "authors": [
  210. {
  211. "name": "Guilherme Blanco",
  212. "email": "guilhermeblanco@gmail.com"
  213. },
  214. {
  215. "name": "Roman Borschel",
  216. "email": "roman@code-factory.org"
  217. },
  218. {
  219. "name": "Benjamin Eberlei",
  220. "email": "kontakt@beberlei.de"
  221. },
  222. {
  223. "name": "Jonathan Wage",
  224. "email": "jonwage@gmail.com"
  225. },
  226. {
  227. "name": "Johannes Schmitt",
  228. "email": "schmittjoh@gmail.com"
  229. }
  230. ],
  231. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  232. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  233. "keywords": [
  234. "abstraction",
  235. "apcu",
  236. "cache",
  237. "caching",
  238. "couchdb",
  239. "memcached",
  240. "php",
  241. "redis",
  242. "xcache"
  243. ],
  244. "support": {
  245. "issues": "https://github.com/doctrine/cache/issues",
  246. "source": "https://github.com/doctrine/cache/tree/1.13.0"
  247. },
  248. "funding": [
  249. {
  250. "url": "https://www.doctrine-project.org/sponsorship.html",
  251. "type": "custom"
  252. },
  253. {
  254. "url": "https://www.patreon.com/phpdoctrine",
  255. "type": "patreon"
  256. },
  257. {
  258. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  259. "type": "tidelift"
  260. }
  261. ],
  262. "time": "2022-05-20T20:06:54+00:00"
  263. },
  264. {
  265. "name": "doctrine/collections",
  266. "version": "1.8.0",
  267. "source": {
  268. "type": "git",
  269. "url": "https://github.com/doctrine/collections.git",
  270. "reference": "2b44dd4cbca8b5744327de78bafef5945c7e7b5e"
  271. },
  272. "dist": {
  273. "type": "zip",
  274. "url": "https://api.github.com/repos/doctrine/collections/zipball/2b44dd4cbca8b5744327de78bafef5945c7e7b5e",
  275. "reference": "2b44dd4cbca8b5744327de78bafef5945c7e7b5e",
  276. "shasum": ""
  277. },
  278. "require": {
  279. "doctrine/deprecations": "^0.5.3 || ^1",
  280. "php": "^7.1.3 || ^8.0"
  281. },
  282. "require-dev": {
  283. "doctrine/coding-standard": "^9.0 || ^10.0",
  284. "phpstan/phpstan": "^1.4.8",
  285. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.1.5",
  286. "vimeo/psalm": "^4.22"
  287. },
  288. "type": "library",
  289. "autoload": {
  290. "psr-4": {
  291. "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections"
  292. }
  293. },
  294. "notification-url": "https://packagist.org/downloads/",
  295. "license": [
  296. "MIT"
  297. ],
  298. "authors": [
  299. {
  300. "name": "Guilherme Blanco",
  301. "email": "guilhermeblanco@gmail.com"
  302. },
  303. {
  304. "name": "Roman Borschel",
  305. "email": "roman@code-factory.org"
  306. },
  307. {
  308. "name": "Benjamin Eberlei",
  309. "email": "kontakt@beberlei.de"
  310. },
  311. {
  312. "name": "Jonathan Wage",
  313. "email": "jonwage@gmail.com"
  314. },
  315. {
  316. "name": "Johannes Schmitt",
  317. "email": "schmittjoh@gmail.com"
  318. }
  319. ],
  320. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  321. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  322. "keywords": [
  323. "array",
  324. "collections",
  325. "iterators",
  326. "php"
  327. ],
  328. "support": {
  329. "issues": "https://github.com/doctrine/collections/issues",
  330. "source": "https://github.com/doctrine/collections/tree/1.8.0"
  331. },
  332. "time": "2022-09-01T20:12:10+00:00"
  333. },
  334. {
  335. "name": "doctrine/deprecations",
  336. "version": "v1.1.1",
  337. "source": {
  338. "type": "git",
  339. "url": "https://github.com/doctrine/deprecations.git",
  340. "reference": "612a3ee5ab0d5dd97b7cf3874a6efe24325efac3"
  341. },
  342. "dist": {
  343. "type": "zip",
  344. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/612a3ee5ab0d5dd97b7cf3874a6efe24325efac3",
  345. "reference": "612a3ee5ab0d5dd97b7cf3874a6efe24325efac3",
  346. "shasum": ""
  347. },
  348. "require": {
  349. "php": "^7.1 || ^8.0"
  350. },
  351. "require-dev": {
  352. "doctrine/coding-standard": "^9",
  353. "phpstan/phpstan": "1.4.10 || 1.10.15",
  354. "phpstan/phpstan-phpunit": "^1.0",
  355. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  356. "psalm/plugin-phpunit": "0.18.4",
  357. "psr/log": "^1 || ^2 || ^3",
  358. "vimeo/psalm": "4.30.0 || 5.12.0"
  359. },
  360. "suggest": {
  361. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  362. },
  363. "type": "library",
  364. "autoload": {
  365. "psr-4": {
  366. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  367. }
  368. },
  369. "notification-url": "https://packagist.org/downloads/",
  370. "license": [
  371. "MIT"
  372. ],
  373. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  374. "homepage": "https://www.doctrine-project.org/",
  375. "support": {
  376. "issues": "https://github.com/doctrine/deprecations/issues",
  377. "source": "https://github.com/doctrine/deprecations/tree/v1.1.1"
  378. },
  379. "time": "2023-06-03T09:27:29+00:00"
  380. },
  381. {
  382. "name": "donatj/phpuseragentparser",
  383. "version": "v1.7.0",
  384. "source": {
  385. "type": "git",
  386. "url": "https://github.com/donatj/PhpUserAgent.git",
  387. "reference": "a35900b93530715f8669c10e49756adde5c8e6fc"
  388. },
  389. "dist": {
  390. "type": "zip",
  391. "url": "https://api.github.com/repos/donatj/PhpUserAgent/zipball/a35900b93530715f8669c10e49756adde5c8e6fc",
  392. "reference": "a35900b93530715f8669c10e49756adde5c8e6fc",
  393. "shasum": ""
  394. },
  395. "require": {
  396. "php": ">=5.4.0"
  397. },
  398. "require-dev": {
  399. "camspiers/json-pretty": "~1.0",
  400. "donatj/drop": "*",
  401. "ext-json": "*",
  402. "phpunit/phpunit": "~4.8|~9"
  403. },
  404. "type": "library",
  405. "autoload": {
  406. "files": [
  407. "src/UserAgentParser.php"
  408. ],
  409. "psr-4": {
  410. "donatj\\UserAgent\\": "src/UserAgent"
  411. }
  412. },
  413. "notification-url": "https://packagist.org/downloads/",
  414. "license": [
  415. "MIT"
  416. ],
  417. "authors": [
  418. {
  419. "name": "Jesse G. Donat",
  420. "email": "donatj@gmail.com",
  421. "homepage": "https://donatstudios.com",
  422. "role": "Developer"
  423. }
  424. ],
  425. "description": "Lightning fast, minimalist PHP UserAgent string parser.",
  426. "homepage": "https://donatstudios.com/PHP-Parser-HTTP_USER_AGENT",
  427. "keywords": [
  428. "browser",
  429. "browser detection",
  430. "parser",
  431. "user agent",
  432. "useragent"
  433. ],
  434. "support": {
  435. "issues": "https://github.com/donatj/PhpUserAgent/issues",
  436. "source": "https://github.com/donatj/PhpUserAgent/tree/v1.7.0"
  437. },
  438. "funding": [
  439. {
  440. "url": "https://www.paypal.me/donatj/15",
  441. "type": "custom"
  442. },
  443. {
  444. "url": "https://github.com/donatj",
  445. "type": "github"
  446. }
  447. ],
  448. "time": "2022-08-06T15:41:58+00:00"
  449. },
  450. {
  451. "name": "dragonmantank/cron-expression",
  452. "version": "v1.2.1",
  453. "source": {
  454. "type": "git",
  455. "url": "https://github.com/dragonmantank/cron-expression.git",
  456. "reference": "9504fa9ea681b586028adaaa0877db4aecf32bad"
  457. },
  458. "dist": {
  459. "type": "zip",
  460. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/9504fa9ea681b586028adaaa0877db4aecf32bad",
  461. "reference": "9504fa9ea681b586028adaaa0877db4aecf32bad",
  462. "shasum": ""
  463. },
  464. "require": {
  465. "php": ">=5.3.2"
  466. },
  467. "require-dev": {
  468. "phpunit/phpunit": "~4.0|~5.0"
  469. },
  470. "type": "library",
  471. "autoload": {
  472. "psr-4": {
  473. "Cron\\": "src/Cron/"
  474. }
  475. },
  476. "notification-url": "https://packagist.org/downloads/",
  477. "license": [
  478. "MIT"
  479. ],
  480. "authors": [
  481. {
  482. "name": "Michael Dowling",
  483. "email": "mtdowling@gmail.com",
  484. "homepage": "https://github.com/mtdowling"
  485. }
  486. ],
  487. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  488. "keywords": [
  489. "cron",
  490. "schedule"
  491. ],
  492. "support": {
  493. "source": "https://github.com/dragonmantank/cron-expression/tree/v1.2.0"
  494. },
  495. "time": "2017-01-23T04:29:33+00:00"
  496. },
  497. {
  498. "name": "erusev/parsedown",
  499. "version": "1.7.4",
  500. "source": {
  501. "type": "git",
  502. "url": "https://github.com/erusev/parsedown.git",
  503. "reference": "cb17b6477dfff935958ba01325f2e8a2bfa6dab3"
  504. },
  505. "dist": {
  506. "type": "zip",
  507. "url": "https://api.github.com/repos/erusev/parsedown/zipball/cb17b6477dfff935958ba01325f2e8a2bfa6dab3",
  508. "reference": "cb17b6477dfff935958ba01325f2e8a2bfa6dab3",
  509. "shasum": ""
  510. },
  511. "require": {
  512. "ext-mbstring": "*",
  513. "php": ">=5.3.0"
  514. },
  515. "require-dev": {
  516. "phpunit/phpunit": "^4.8.35"
  517. },
  518. "type": "library",
  519. "autoload": {
  520. "psr-0": {
  521. "Parsedown": ""
  522. }
  523. },
  524. "notification-url": "https://packagist.org/downloads/",
  525. "license": [
  526. "MIT"
  527. ],
  528. "authors": [
  529. {
  530. "name": "Emanuil Rusev",
  531. "email": "hello@erusev.com",
  532. "homepage": "http://erusev.com"
  533. }
  534. ],
  535. "description": "Parser for Markdown.",
  536. "homepage": "http://parsedown.org",
  537. "keywords": [
  538. "markdown",
  539. "parser"
  540. ],
  541. "support": {
  542. "issues": "https://github.com/erusev/parsedown/issues",
  543. "source": "https://github.com/erusev/parsedown/tree/1.7.x"
  544. },
  545. "time": "2019-12-30T22:54:17+00:00"
  546. },
  547. {
  548. "name": "erusev/parsedown-extra",
  549. "version": "0.8.1",
  550. "source": {
  551. "type": "git",
  552. "url": "https://github.com/erusev/parsedown-extra.git",
  553. "reference": "91ac3ff98f0cea243bdccc688df43810f044dcef"
  554. },
  555. "dist": {
  556. "type": "zip",
  557. "url": "https://api.github.com/repos/erusev/parsedown-extra/zipball/91ac3ff98f0cea243bdccc688df43810f044dcef",
  558. "reference": "91ac3ff98f0cea243bdccc688df43810f044dcef",
  559. "shasum": ""
  560. },
  561. "require": {
  562. "erusev/parsedown": "^1.7.4"
  563. },
  564. "require-dev": {
  565. "phpunit/phpunit": "^4.8.35"
  566. },
  567. "type": "library",
  568. "autoload": {
  569. "psr-0": {
  570. "ParsedownExtra": ""
  571. }
  572. },
  573. "notification-url": "https://packagist.org/downloads/",
  574. "license": [
  575. "MIT"
  576. ],
  577. "authors": [
  578. {
  579. "name": "Emanuil Rusev",
  580. "email": "hello@erusev.com",
  581. "homepage": "http://erusev.com"
  582. }
  583. ],
  584. "description": "An extension of Parsedown that adds support for Markdown Extra.",
  585. "homepage": "https://github.com/erusev/parsedown-extra",
  586. "keywords": [
  587. "markdown",
  588. "markdown extra",
  589. "parsedown",
  590. "parser"
  591. ],
  592. "support": {
  593. "issues": "https://github.com/erusev/parsedown-extra/issues",
  594. "source": "https://github.com/erusev/parsedown-extra/tree/0.8.x"
  595. },
  596. "time": "2019-12-30T23:20:37+00:00"
  597. },
  598. {
  599. "name": "filp/whoops",
  600. "version": "2.15.2",
  601. "source": {
  602. "type": "git",
  603. "url": "https://github.com/filp/whoops.git",
  604. "reference": "aac9304c5ed61bf7b1b7a6064bf9806ab842ce73"
  605. },
  606. "dist": {
  607. "type": "zip",
  608. "url": "https://api.github.com/repos/filp/whoops/zipball/aac9304c5ed61bf7b1b7a6064bf9806ab842ce73",
  609. "reference": "aac9304c5ed61bf7b1b7a6064bf9806ab842ce73",
  610. "shasum": ""
  611. },
  612. "require": {
  613. "php": "^5.5.9 || ^7.0 || ^8.0",
  614. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  615. },
  616. "require-dev": {
  617. "mockery/mockery": "^0.9 || ^1.0",
  618. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  619. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  620. },
  621. "suggest": {
  622. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  623. "whoops/soap": "Formats errors as SOAP responses"
  624. },
  625. "type": "library",
  626. "extra": {
  627. "branch-alias": {
  628. "dev-master": "2.7-dev"
  629. }
  630. },
  631. "autoload": {
  632. "psr-4": {
  633. "Whoops\\": "src/Whoops/"
  634. }
  635. },
  636. "notification-url": "https://packagist.org/downloads/",
  637. "license": [
  638. "MIT"
  639. ],
  640. "authors": [
  641. {
  642. "name": "Filipe Dobreira",
  643. "homepage": "https://github.com/filp",
  644. "role": "Developer"
  645. }
  646. ],
  647. "description": "php error handling for cool kids",
  648. "homepage": "https://filp.github.io/whoops/",
  649. "keywords": [
  650. "error",
  651. "exception",
  652. "handling",
  653. "library",
  654. "throwable",
  655. "whoops"
  656. ],
  657. "support": {
  658. "issues": "https://github.com/filp/whoops/issues",
  659. "source": "https://github.com/filp/whoops/tree/2.15.2"
  660. },
  661. "funding": [
  662. {
  663. "url": "https://github.com/denis-sokolov",
  664. "type": "github"
  665. }
  666. ],
  667. "time": "2023-04-12T12:00:00+00:00"
  668. },
  669. {
  670. "name": "getgrav/cache",
  671. "version": "v2.0.0",
  672. "target-dir": "Gregwar/Cache",
  673. "source": {
  674. "type": "git",
  675. "url": "https://github.com/getgrav/Cache.git",
  676. "reference": "56fd63f752779928fcd1074ab7d12f406dde8861"
  677. },
  678. "dist": {
  679. "type": "zip",
  680. "url": "https://api.github.com/repos/getgrav/Cache/zipball/56fd63f752779928fcd1074ab7d12f406dde8861",
  681. "reference": "56fd63f752779928fcd1074ab7d12f406dde8861",
  682. "shasum": ""
  683. },
  684. "require": {
  685. "php": ">=5.3"
  686. },
  687. "type": "library",
  688. "autoload": {
  689. "psr-0": {
  690. "Gregwar\\Cache": ""
  691. }
  692. },
  693. "notification-url": "https://packagist.org/downloads/",
  694. "license": [
  695. "MIT"
  696. ],
  697. "authors": [
  698. {
  699. "name": "Gregwar",
  700. "email": "g.passault@gmail.com"
  701. },
  702. {
  703. "name": "Grav CMS",
  704. "email": "hello@getgrav.org",
  705. "homepage": "https://getgrav.org"
  706. }
  707. ],
  708. "description": "A lightweight file-system cache system",
  709. "keywords": [
  710. "cache",
  711. "caching",
  712. "file-system",
  713. "system"
  714. ],
  715. "support": {
  716. "source": "https://github.com/getgrav/Cache/tree/v2.0.0"
  717. },
  718. "time": "2021-04-20T05:48:00+00:00"
  719. },
  720. {
  721. "name": "getgrav/image",
  722. "version": "v3.0.1",
  723. "target-dir": "Gregwar/Image",
  724. "source": {
  725. "type": "git",
  726. "url": "https://github.com/getgrav/Image.git",
  727. "reference": "a6a36c24db4b0fd7a7bfd50b86412eaecd5c6370"
  728. },
  729. "dist": {
  730. "type": "zip",
  731. "url": "https://api.github.com/repos/getgrav/Image/zipball/a6a36c24db4b0fd7a7bfd50b86412eaecd5c6370",
  732. "reference": "a6a36c24db4b0fd7a7bfd50b86412eaecd5c6370",
  733. "shasum": ""
  734. },
  735. "require": {
  736. "ext-gd": "*",
  737. "getgrav/cache": "^2.0",
  738. "php": "^5.6 || ^7.0 || ^8.0"
  739. },
  740. "require-dev": {
  741. "sllh/php-cs-fixer-styleci-bridge": "~1.0",
  742. "symfony/phpunit-bridge": "^2.7.4 || ^3.0"
  743. },
  744. "suggest": {
  745. "behat/transliterator": "Transliterator provides ability to set non-latin1 pretty names"
  746. },
  747. "type": "library",
  748. "autoload": {
  749. "psr-0": {
  750. "Gregwar\\Image": ""
  751. }
  752. },
  753. "notification-url": "https://packagist.org/downloads/",
  754. "license": [
  755. "MIT"
  756. ],
  757. "authors": [
  758. {
  759. "name": "Grégoire Passault",
  760. "email": "g.passault@gmail.com",
  761. "homepage": "http://www.gregwar.com/"
  762. },
  763. {
  764. "name": "Grav CMS",
  765. "email": "hello@getgrav.org",
  766. "homepage": "https://getgrav.org"
  767. }
  768. ],
  769. "description": "Image handling",
  770. "homepage": "https://github.com/Gregwar/Image",
  771. "keywords": [
  772. "gd",
  773. "image"
  774. ],
  775. "support": {
  776. "source": "https://github.com/getgrav/Image/tree/v3.0.1"
  777. },
  778. "time": "2023-05-08T21:44:38+00:00"
  779. },
  780. {
  781. "name": "guzzlehttp/psr7",
  782. "version": "1.9.1",
  783. "source": {
  784. "type": "git",
  785. "url": "https://github.com/guzzle/psr7.git",
  786. "reference": "e4490cabc77465aaee90b20cfc9a770f8c04be6b"
  787. },
  788. "dist": {
  789. "type": "zip",
  790. "url": "https://api.github.com/repos/guzzle/psr7/zipball/e4490cabc77465aaee90b20cfc9a770f8c04be6b",
  791. "reference": "e4490cabc77465aaee90b20cfc9a770f8c04be6b",
  792. "shasum": ""
  793. },
  794. "require": {
  795. "php": ">=5.4.0",
  796. "psr/http-message": "~1.0",
  797. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  798. },
  799. "provide": {
  800. "psr/http-message-implementation": "1.0"
  801. },
  802. "require-dev": {
  803. "ext-zlib": "*",
  804. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  805. },
  806. "suggest": {
  807. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  808. },
  809. "type": "library",
  810. "autoload": {
  811. "files": [
  812. "src/functions_include.php"
  813. ],
  814. "psr-4": {
  815. "GuzzleHttp\\Psr7\\": "src/"
  816. }
  817. },
  818. "notification-url": "https://packagist.org/downloads/",
  819. "license": [
  820. "MIT"
  821. ],
  822. "authors": [
  823. {
  824. "name": "Graham Campbell",
  825. "email": "hello@gjcampbell.co.uk",
  826. "homepage": "https://github.com/GrahamCampbell"
  827. },
  828. {
  829. "name": "Michael Dowling",
  830. "email": "mtdowling@gmail.com",
  831. "homepage": "https://github.com/mtdowling"
  832. },
  833. {
  834. "name": "George Mponos",
  835. "email": "gmponos@gmail.com",
  836. "homepage": "https://github.com/gmponos"
  837. },
  838. {
  839. "name": "Tobias Nyholm",
  840. "email": "tobias.nyholm@gmail.com",
  841. "homepage": "https://github.com/Nyholm"
  842. },
  843. {
  844. "name": "Márk Sági-Kazár",
  845. "email": "mark.sagikazar@gmail.com",
  846. "homepage": "https://github.com/sagikazarmark"
  847. },
  848. {
  849. "name": "Tobias Schultze",
  850. "email": "webmaster@tubo-world.de",
  851. "homepage": "https://github.com/Tobion"
  852. }
  853. ],
  854. "description": "PSR-7 message implementation that also provides common utility methods",
  855. "keywords": [
  856. "http",
  857. "message",
  858. "psr-7",
  859. "request",
  860. "response",
  861. "stream",
  862. "uri",
  863. "url"
  864. ],
  865. "support": {
  866. "issues": "https://github.com/guzzle/psr7/issues",
  867. "source": "https://github.com/guzzle/psr7/tree/1.9.1"
  868. },
  869. "funding": [
  870. {
  871. "url": "https://github.com/GrahamCampbell",
  872. "type": "github"
  873. },
  874. {
  875. "url": "https://github.com/Nyholm",
  876. "type": "github"
  877. },
  878. {
  879. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  880. "type": "tidelift"
  881. }
  882. ],
  883. "time": "2023-04-17T16:00:37+00:00"
  884. },
  885. {
  886. "name": "itsgoingd/clockwork",
  887. "version": "v5.1.12",
  888. "source": {
  889. "type": "git",
  890. "url": "https://github.com/itsgoingd/clockwork.git",
  891. "reference": "c9dbdbb1f0efd19bb80f1080ef63f1b9b1bc3b1b"
  892. },
  893. "dist": {
  894. "type": "zip",
  895. "url": "https://api.github.com/repos/itsgoingd/clockwork/zipball/c9dbdbb1f0efd19bb80f1080ef63f1b9b1bc3b1b",
  896. "reference": "c9dbdbb1f0efd19bb80f1080ef63f1b9b1bc3b1b",
  897. "shasum": ""
  898. },
  899. "require": {
  900. "ext-json": "*",
  901. "php": ">=5.6"
  902. },
  903. "type": "library",
  904. "extra": {
  905. "laravel": {
  906. "providers": [
  907. "Clockwork\\Support\\Laravel\\ClockworkServiceProvider"
  908. ],
  909. "aliases": {
  910. "Clockwork": "Clockwork\\Support\\Laravel\\Facade"
  911. }
  912. }
  913. },
  914. "autoload": {
  915. "psr-4": {
  916. "Clockwork\\": "Clockwork/"
  917. }
  918. },
  919. "notification-url": "https://packagist.org/downloads/",
  920. "license": [
  921. "MIT"
  922. ],
  923. "authors": [
  924. {
  925. "name": "itsgoingd",
  926. "email": "itsgoingd@luzer.sk",
  927. "homepage": "https://twitter.com/itsgoingd"
  928. }
  929. ],
  930. "description": "php dev tools in your browser",
  931. "homepage": "https://underground.works/clockwork",
  932. "keywords": [
  933. "Devtools",
  934. "debugging",
  935. "laravel",
  936. "logging",
  937. "lumen",
  938. "profiling",
  939. "slim"
  940. ],
  941. "support": {
  942. "issues": "https://github.com/itsgoingd/clockwork/issues",
  943. "source": "https://github.com/itsgoingd/clockwork/tree/v5.1.12"
  944. },
  945. "funding": [
  946. {
  947. "url": "https://github.com/itsgoingd",
  948. "type": "github"
  949. }
  950. ],
  951. "time": "2022-12-13T00:04:12+00:00"
  952. },
  953. {
  954. "name": "league/climate",
  955. "version": "3.8.2",
  956. "source": {
  957. "type": "git",
  958. "url": "https://github.com/thephpleague/climate.git",
  959. "reference": "a785a3ac8f584eed4abd45e4e16fe64c46659a28"
  960. },
  961. "dist": {
  962. "type": "zip",
  963. "url": "https://api.github.com/repos/thephpleague/climate/zipball/a785a3ac8f584eed4abd45e4e16fe64c46659a28",
  964. "reference": "a785a3ac8f584eed4abd45e4e16fe64c46659a28",
  965. "shasum": ""
  966. },
  967. "require": {
  968. "php": "^7.3 || ^8.0",
  969. "psr/log": "^1.0 || ^2.0 || ^3.0",
  970. "seld/cli-prompt": "^1.0"
  971. },
  972. "require-dev": {
  973. "mikey179/vfsstream": "^1.6.10",
  974. "mockery/mockery": "^1.4.2",
  975. "phpunit/phpunit": "^9.5.10"
  976. },
  977. "suggest": {
  978. "ext-mbstring": "If ext-mbstring is not available you MUST install symfony/polyfill-mbstring"
  979. },
  980. "type": "library",
  981. "autoload": {
  982. "psr-4": {
  983. "League\\CLImate\\": "src/"
  984. }
  985. },
  986. "notification-url": "https://packagist.org/downloads/",
  987. "license": [
  988. "MIT"
  989. ],
  990. "authors": [
  991. {
  992. "name": "Joe Tannenbaum",
  993. "email": "hey@joe.codes",
  994. "homepage": "http://joe.codes/",
  995. "role": "Developer"
  996. },
  997. {
  998. "name": "Craig Duncan",
  999. "email": "git@duncanc.co.uk",
  1000. "homepage": "https://github.com/duncan3dc",
  1001. "role": "Developer"
  1002. }
  1003. ],
  1004. "description": "PHP's best friend for the terminal. CLImate allows you to easily output colored text, special formats, and more.",
  1005. "keywords": [
  1006. "cli",
  1007. "colors",
  1008. "command",
  1009. "php",
  1010. "terminal"
  1011. ],
  1012. "support": {
  1013. "issues": "https://github.com/thephpleague/climate/issues",
  1014. "source": "https://github.com/thephpleague/climate/tree/3.8.2"
  1015. },
  1016. "time": "2022-06-18T14:42:08+00:00"
  1017. },
  1018. {
  1019. "name": "matthiasmullie/minify",
  1020. "version": "1.3.71",
  1021. "source": {
  1022. "type": "git",
  1023. "url": "https://github.com/matthiasmullie/minify.git",
  1024. "reference": "ae42a47d7fecc1fbb7277b2f2d84c37a33edc3b1"
  1025. },
  1026. "dist": {
  1027. "type": "zip",
  1028. "url": "https://api.github.com/repos/matthiasmullie/minify/zipball/ae42a47d7fecc1fbb7277b2f2d84c37a33edc3b1",
  1029. "reference": "ae42a47d7fecc1fbb7277b2f2d84c37a33edc3b1",
  1030. "shasum": ""
  1031. },
  1032. "require": {
  1033. "ext-pcre": "*",
  1034. "matthiasmullie/path-converter": "~1.1",
  1035. "php": ">=5.3.0"
  1036. },
  1037. "require-dev": {
  1038. "friendsofphp/php-cs-fixer": ">=2.0",
  1039. "matthiasmullie/scrapbook": ">=1.3",
  1040. "phpunit/phpunit": ">=4.8",
  1041. "squizlabs/php_codesniffer": ">=3.0"
  1042. },
  1043. "suggest": {
  1044. "psr/cache-implementation": "Cache implementation to use with Minify::cache"
  1045. },
  1046. "bin": [
  1047. "bin/minifycss",
  1048. "bin/minifyjs"
  1049. ],
  1050. "type": "library",
  1051. "autoload": {
  1052. "psr-4": {
  1053. "MatthiasMullie\\Minify\\": "src/"
  1054. }
  1055. },
  1056. "notification-url": "https://packagist.org/downloads/",
  1057. "license": [
  1058. "MIT"
  1059. ],
  1060. "authors": [
  1061. {
  1062. "name": "Matthias Mullie",
  1063. "email": "minify@mullie.eu",
  1064. "homepage": "https://www.mullie.eu",
  1065. "role": "Developer"
  1066. }
  1067. ],
  1068. "description": "CSS & JavaScript minifier, in PHP. Removes whitespace, strips comments, combines files (incl. @import statements and small assets in CSS files), and optimizes/shortens a few common programming patterns.",
  1069. "homepage": "https://github.com/matthiasmullie/minify",
  1070. "keywords": [
  1071. "JS",
  1072. "css",
  1073. "javascript",
  1074. "minifier",
  1075. "minify"
  1076. ],
  1077. "support": {
  1078. "issues": "https://github.com/matthiasmullie/minify/issues",
  1079. "source": "https://github.com/matthiasmullie/minify/tree/1.3.71"
  1080. },
  1081. "funding": [
  1082. {
  1083. "url": "https://github.com/matthiasmullie",
  1084. "type": "github"
  1085. }
  1086. ],
  1087. "time": "2023-04-25T20:33:03+00:00"
  1088. },
  1089. {
  1090. "name": "matthiasmullie/path-converter",
  1091. "version": "1.1.3",
  1092. "source": {
  1093. "type": "git",
  1094. "url": "https://github.com/matthiasmullie/path-converter.git",
  1095. "reference": "e7d13b2c7e2f2268e1424aaed02085518afa02d9"
  1096. },
  1097. "dist": {
  1098. "type": "zip",
  1099. "url": "https://api.github.com/repos/matthiasmullie/path-converter/zipball/e7d13b2c7e2f2268e1424aaed02085518afa02d9",
  1100. "reference": "e7d13b2c7e2f2268e1424aaed02085518afa02d9",
  1101. "shasum": ""
  1102. },
  1103. "require": {
  1104. "ext-pcre": "*",
  1105. "php": ">=5.3.0"
  1106. },
  1107. "require-dev": {
  1108. "phpunit/phpunit": "~4.8"
  1109. },
  1110. "type": "library",
  1111. "autoload": {
  1112. "psr-4": {
  1113. "MatthiasMullie\\PathConverter\\": "src/"
  1114. }
  1115. },
  1116. "notification-url": "https://packagist.org/downloads/",
  1117. "license": [
  1118. "MIT"
  1119. ],
  1120. "authors": [
  1121. {
  1122. "name": "Matthias Mullie",
  1123. "email": "pathconverter@mullie.eu",
  1124. "homepage": "http://www.mullie.eu",
  1125. "role": "Developer"
  1126. }
  1127. ],
  1128. "description": "Relative path converter",
  1129. "homepage": "http://github.com/matthiasmullie/path-converter",
  1130. "keywords": [
  1131. "converter",
  1132. "path",
  1133. "paths",
  1134. "relative"
  1135. ],
  1136. "support": {
  1137. "issues": "https://github.com/matthiasmullie/path-converter/issues",
  1138. "source": "https://github.com/matthiasmullie/path-converter/tree/1.1.3"
  1139. },
  1140. "time": "2019-02-05T23:41:09+00:00"
  1141. },
  1142. {
  1143. "name": "maximebf/debugbar",
  1144. "version": "v1.18.2",
  1145. "source": {
  1146. "type": "git",
  1147. "url": "https://github.com/maximebf/php-debugbar.git",
  1148. "reference": "17dcf3f6ed112bb85a37cf13538fd8de49f5c274"
  1149. },
  1150. "dist": {
  1151. "type": "zip",
  1152. "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/17dcf3f6ed112bb85a37cf13538fd8de49f5c274",
  1153. "reference": "17dcf3f6ed112bb85a37cf13538fd8de49f5c274",
  1154. "shasum": ""
  1155. },
  1156. "require": {
  1157. "php": "^7.1|^8",
  1158. "psr/log": "^1|^2|^3",
  1159. "symfony/var-dumper": "^4|^5|^6"
  1160. },
  1161. "require-dev": {
  1162. "phpunit/phpunit": ">=7.5.20 <10.0",
  1163. "twig/twig": "^1.38|^2.7|^3.0"
  1164. },
  1165. "suggest": {
  1166. "kriswallsmith/assetic": "The best way to manage assets",
  1167. "monolog/monolog": "Log using Monolog",
  1168. "predis/predis": "Redis storage"
  1169. },
  1170. "type": "library",
  1171. "extra": {
  1172. "branch-alias": {
  1173. "dev-master": "1.18-dev"
  1174. }
  1175. },
  1176. "autoload": {
  1177. "psr-4": {
  1178. "DebugBar\\": "src/DebugBar/"
  1179. }
  1180. },
  1181. "notification-url": "https://packagist.org/downloads/",
  1182. "license": [
  1183. "MIT"
  1184. ],
  1185. "authors": [
  1186. {
  1187. "name": "Maxime Bouroumeau-Fuseau",
  1188. "email": "maxime.bouroumeau@gmail.com",
  1189. "homepage": "http://maximebf.com"
  1190. },
  1191. {
  1192. "name": "Barry vd. Heuvel",
  1193. "email": "barryvdh@gmail.com"
  1194. }
  1195. ],
  1196. "description": "Debug bar in the browser for php application",
  1197. "homepage": "https://github.com/maximebf/php-debugbar",
  1198. "keywords": [
  1199. "debug",
  1200. "debugbar"
  1201. ],
  1202. "support": {
  1203. "issues": "https://github.com/maximebf/php-debugbar/issues",
  1204. "source": "https://github.com/maximebf/php-debugbar/tree/v1.18.2"
  1205. },
  1206. "time": "2023-02-04T15:27:00+00:00"
  1207. },
  1208. {
  1209. "name": "miljar/php-exif",
  1210. "version": "v0.6.5",
  1211. "source": {
  1212. "type": "git",
  1213. "url": "https://github.com/PHPExif/php-exif.git",
  1214. "reference": "41f23db39d7b48e4af0e134c2e80e577c1782ac9"
  1215. },
  1216. "dist": {
  1217. "type": "zip",
  1218. "url": "https://api.github.com/repos/PHPExif/php-exif/zipball/41f23db39d7b48e4af0e134c2e80e577c1782ac9",
  1219. "reference": "41f23db39d7b48e4af0e134c2e80e577c1782ac9",
  1220. "shasum": ""
  1221. },
  1222. "require": {
  1223. "php": ">=5.4"
  1224. },
  1225. "require-dev": {
  1226. "jakub-onderka/php-parallel-lint": "^1.0",
  1227. "phpmd/phpmd": "~2.2",
  1228. "phpunit/phpunit": ">=4.0 <6.0",
  1229. "satooshi/php-coveralls": "~0.6",
  1230. "sebastian/phpcpd": "1.4.*@stable",
  1231. "squizlabs/php_codesniffer": "1.4.*@stable"
  1232. },
  1233. "suggest": {
  1234. "ext-exif": "Use exif PHP extension as adapter",
  1235. "lib-exiftool": "Use perl lib exiftool as adapter"
  1236. },
  1237. "type": "library",
  1238. "autoload": {
  1239. "psr-0": {
  1240. "PHPExif": "lib/"
  1241. }
  1242. },
  1243. "notification-url": "https://packagist.org/downloads/",
  1244. "license": [
  1245. "MIT"
  1246. ],
  1247. "authors": [
  1248. {
  1249. "name": "Tom Van Herreweghe",
  1250. "homepage": "http://theanalogguy.be",
  1251. "role": "Developer"
  1252. }
  1253. ],
  1254. "description": "Object-Oriented EXIF parsing",
  1255. "keywords": [
  1256. "IPTC",
  1257. "exif",
  1258. "exiftool",
  1259. "jpeg",
  1260. "tiff"
  1261. ],
  1262. "support": {
  1263. "issues": "https://github.com/PHPExif/php-exif/issues",
  1264. "source": "https://github.com/PHPExif/php-exif/tree/v0.6.5"
  1265. },
  1266. "time": "2019-02-11T13:47:52+00:00"
  1267. },
  1268. {
  1269. "name": "monolog/monolog",
  1270. "version": "1.27.1",
  1271. "source": {
  1272. "type": "git",
  1273. "url": "https://github.com/Seldaek/monolog.git",
  1274. "reference": "904713c5929655dc9b97288b69cfeedad610c9a1"
  1275. },
  1276. "dist": {
  1277. "type": "zip",
  1278. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/904713c5929655dc9b97288b69cfeedad610c9a1",
  1279. "reference": "904713c5929655dc9b97288b69cfeedad610c9a1",
  1280. "shasum": ""
  1281. },
  1282. "require": {
  1283. "php": ">=5.3.0",
  1284. "psr/log": "~1.0"
  1285. },
  1286. "provide": {
  1287. "psr/log-implementation": "1.0.0"
  1288. },
  1289. "require-dev": {
  1290. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1291. "doctrine/couchdb": "~1.0@dev",
  1292. "graylog2/gelf-php": "~1.0",
  1293. "php-amqplib/php-amqplib": "~2.4",
  1294. "php-console/php-console": "^3.1.3",
  1295. "phpstan/phpstan": "^0.12.59",
  1296. "phpunit/phpunit": "~4.5",
  1297. "ruflin/elastica": ">=0.90 <3.0",
  1298. "sentry/sentry": "^0.13",
  1299. "swiftmailer/swiftmailer": "^5.3|^6.0"
  1300. },
  1301. "suggest": {
  1302. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1303. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1304. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1305. "ext-mongo": "Allow sending log messages to a MongoDB server",
  1306. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1307. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  1308. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1309. "php-console/php-console": "Allow sending log messages to Google Chrome",
  1310. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1311. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  1312. "sentry/sentry": "Allow sending log messages to a Sentry server"
  1313. },
  1314. "type": "library",
  1315. "autoload": {
  1316. "psr-4": {
  1317. "Monolog\\": "src/Monolog"
  1318. }
  1319. },
  1320. "notification-url": "https://packagist.org/downloads/",
  1321. "license": [
  1322. "MIT"
  1323. ],
  1324. "authors": [
  1325. {
  1326. "name": "Jordi Boggiano",
  1327. "email": "j.boggiano@seld.be",
  1328. "homepage": "http://seld.be"
  1329. }
  1330. ],
  1331. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1332. "homepage": "http://github.com/Seldaek/monolog",
  1333. "keywords": [
  1334. "log",
  1335. "logging",
  1336. "psr-3"
  1337. ],
  1338. "support": {
  1339. "issues": "https://github.com/Seldaek/monolog/issues",
  1340. "source": "https://github.com/Seldaek/monolog/tree/1.27.1"
  1341. },
  1342. "funding": [
  1343. {
  1344. "url": "https://github.com/Seldaek",
  1345. "type": "github"
  1346. },
  1347. {
  1348. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  1349. "type": "tidelift"
  1350. }
  1351. ],
  1352. "time": "2022-06-09T08:53:42+00:00"
  1353. },
  1354. {
  1355. "name": "multiavatar/multiavatar-php",
  1356. "version": "v1.0.5",
  1357. "source": {
  1358. "type": "git",
  1359. "url": "https://github.com/multiavatar/multiavatar-php.git",
  1360. "reference": "13a62a656b1c2ca1c62dee57b4c1d8a3b04e6574"
  1361. },
  1362. "dist": {
  1363. "type": "zip",
  1364. "url": "https://api.github.com/repos/multiavatar/multiavatar-php/zipball/13a62a656b1c2ca1c62dee57b4c1d8a3b04e6574",
  1365. "reference": "13a62a656b1c2ca1c62dee57b4c1d8a3b04e6574",
  1366. "shasum": ""
  1367. },
  1368. "type": "library",
  1369. "autoload": {
  1370. "classmap": [
  1371. "Multiavatar.php"
  1372. ]
  1373. },
  1374. "notification-url": "https://packagist.org/downloads/",
  1375. "license": [
  1376. "proprietary"
  1377. ],
  1378. "authors": [
  1379. {
  1380. "name": "Gie Katon",
  1381. "homepage": "https://giekaton.com"
  1382. }
  1383. ],
  1384. "description": "Multicultural Avatar Generator",
  1385. "homepage": "https://multiavatar.com",
  1386. "keywords": [
  1387. "avatar",
  1388. "creator",
  1389. "generator",
  1390. "image",
  1391. "maker",
  1392. "picture",
  1393. "profile"
  1394. ],
  1395. "support": {
  1396. "issues": "https://github.com/multiavatar/multiavatar-php/issues",
  1397. "source": "https://github.com/multiavatar/multiavatar-php/tree/v1.0.5"
  1398. },
  1399. "time": "2021-03-02T07:33:46+00:00"
  1400. },
  1401. {
  1402. "name": "nyholm/psr7",
  1403. "version": "1.8.0",
  1404. "source": {
  1405. "type": "git",
  1406. "url": "https://github.com/Nyholm/psr7.git",
  1407. "reference": "3cb4d163b58589e47b35103e8e5e6a6a475b47be"
  1408. },
  1409. "dist": {
  1410. "type": "zip",
  1411. "url": "https://api.github.com/repos/Nyholm/psr7/zipball/3cb4d163b58589e47b35103e8e5e6a6a475b47be",
  1412. "reference": "3cb4d163b58589e47b35103e8e5e6a6a475b47be",
  1413. "shasum": ""
  1414. },
  1415. "require": {
  1416. "php": ">=7.2",
  1417. "psr/http-factory": "^1.0",
  1418. "psr/http-message": "^1.1 || ^2.0"
  1419. },
  1420. "provide": {
  1421. "php-http/message-factory-implementation": "1.0",
  1422. "psr/http-factory-implementation": "1.0",
  1423. "psr/http-message-implementation": "1.0"
  1424. },
  1425. "require-dev": {
  1426. "http-interop/http-factory-tests": "^0.9",
  1427. "php-http/message-factory": "^1.0",
  1428. "php-http/psr7-integration-tests": "^1.0",
  1429. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.4",
  1430. "symfony/error-handler": "^4.4"
  1431. },
  1432. "type": "library",
  1433. "extra": {
  1434. "branch-alias": {
  1435. "dev-master": "1.8-dev"
  1436. }
  1437. },
  1438. "autoload": {
  1439. "psr-4": {
  1440. "Nyholm\\Psr7\\": "src/"
  1441. }
  1442. },
  1443. "notification-url": "https://packagist.org/downloads/",
  1444. "license": [
  1445. "MIT"
  1446. ],
  1447. "authors": [
  1448. {
  1449. "name": "Tobias Nyholm",
  1450. "email": "tobias.nyholm@gmail.com"
  1451. },
  1452. {
  1453. "name": "Martijn van der Ven",
  1454. "email": "martijn@vanderven.se"
  1455. }
  1456. ],
  1457. "description": "A fast PHP7 implementation of PSR-7",
  1458. "homepage": "https://tnyholm.se",
  1459. "keywords": [
  1460. "psr-17",
  1461. "psr-7"
  1462. ],
  1463. "support": {
  1464. "issues": "https://github.com/Nyholm/psr7/issues",
  1465. "source": "https://github.com/Nyholm/psr7/tree/1.8.0"
  1466. },
  1467. "funding": [
  1468. {
  1469. "url": "https://github.com/Zegnat",
  1470. "type": "github"
  1471. },
  1472. {
  1473. "url": "https://github.com/nyholm",
  1474. "type": "github"
  1475. }
  1476. ],
  1477. "time": "2023-05-02T11:26:24+00:00"
  1478. },
  1479. {
  1480. "name": "nyholm/psr7-server",
  1481. "version": "1.0.2",
  1482. "source": {
  1483. "type": "git",
  1484. "url": "https://github.com/Nyholm/psr7-server.git",
  1485. "reference": "b846a689844cef114e8079d8c80f0afd96745ae3"
  1486. },
  1487. "dist": {
  1488. "type": "zip",
  1489. "url": "https://api.github.com/repos/Nyholm/psr7-server/zipball/b846a689844cef114e8079d8c80f0afd96745ae3",
  1490. "reference": "b846a689844cef114e8079d8c80f0afd96745ae3",
  1491. "shasum": ""
  1492. },
  1493. "require": {
  1494. "php": "^7.1 || ^8.0",
  1495. "psr/http-factory": "^1.0",
  1496. "psr/http-message": "^1.0"
  1497. },
  1498. "require-dev": {
  1499. "nyholm/nsa": "^1.1",
  1500. "nyholm/psr7": "^1.3",
  1501. "phpunit/phpunit": "^7.0 || ^8.5 || ^9.3"
  1502. },
  1503. "type": "library",
  1504. "autoload": {
  1505. "psr-4": {
  1506. "Nyholm\\Psr7Server\\": "src/"
  1507. }
  1508. },
  1509. "notification-url": "https://packagist.org/downloads/",
  1510. "license": [
  1511. "MIT"
  1512. ],
  1513. "authors": [
  1514. {
  1515. "name": "Tobias Nyholm",
  1516. "email": "tobias.nyholm@gmail.com"
  1517. },
  1518. {
  1519. "name": "Martijn van der Ven",
  1520. "email": "martijn@vanderven.se"
  1521. }
  1522. ],
  1523. "description": "Helper classes to handle PSR-7 server requests",
  1524. "homepage": "http://tnyholm.se",
  1525. "keywords": [
  1526. "psr-17",
  1527. "psr-7"
  1528. ],
  1529. "support": {
  1530. "issues": "https://github.com/Nyholm/psr7-server/issues",
  1531. "source": "https://github.com/Nyholm/psr7-server/tree/1.0.2"
  1532. },
  1533. "funding": [
  1534. {
  1535. "url": "https://github.com/Zegnat",
  1536. "type": "github"
  1537. },
  1538. {
  1539. "url": "https://github.com/nyholm",
  1540. "type": "github"
  1541. }
  1542. ],
  1543. "time": "2021-05-12T11:11:27+00:00"
  1544. },
  1545. {
  1546. "name": "pimple/pimple",
  1547. "version": "v3.5.0",
  1548. "source": {
  1549. "type": "git",
  1550. "url": "https://github.com/silexphp/Pimple.git",
  1551. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed"
  1552. },
  1553. "dist": {
  1554. "type": "zip",
  1555. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  1556. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  1557. "shasum": ""
  1558. },
  1559. "require": {
  1560. "php": ">=7.2.5",
  1561. "psr/container": "^1.1 || ^2.0"
  1562. },
  1563. "require-dev": {
  1564. "symfony/phpunit-bridge": "^5.4@dev"
  1565. },
  1566. "type": "library",
  1567. "extra": {
  1568. "branch-alias": {
  1569. "dev-master": "3.4.x-dev"
  1570. }
  1571. },
  1572. "autoload": {
  1573. "psr-0": {
  1574. "Pimple": "src/"
  1575. }
  1576. },
  1577. "notification-url": "https://packagist.org/downloads/",
  1578. "license": [
  1579. "MIT"
  1580. ],
  1581. "authors": [
  1582. {
  1583. "name": "Fabien Potencier",
  1584. "email": "fabien@symfony.com"
  1585. }
  1586. ],
  1587. "description": "Pimple, a simple Dependency Injection Container",
  1588. "homepage": "https://pimple.symfony.com",
  1589. "keywords": [
  1590. "container",
  1591. "dependency injection"
  1592. ],
  1593. "support": {
  1594. "source": "https://github.com/silexphp/Pimple/tree/v3.5.0"
  1595. },
  1596. "time": "2021-10-28T11:13:42+00:00"
  1597. },
  1598. {
  1599. "name": "psr/cache",
  1600. "version": "1.0.1",
  1601. "source": {
  1602. "type": "git",
  1603. "url": "https://github.com/php-fig/cache.git",
  1604. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  1605. },
  1606. "dist": {
  1607. "type": "zip",
  1608. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  1609. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  1610. "shasum": ""
  1611. },
  1612. "require": {
  1613. "php": ">=5.3.0"
  1614. },
  1615. "type": "library",
  1616. "extra": {
  1617. "branch-alias": {
  1618. "dev-master": "1.0.x-dev"
  1619. }
  1620. },
  1621. "autoload": {
  1622. "psr-4": {
  1623. "Psr\\Cache\\": "src/"
  1624. }
  1625. },
  1626. "notification-url": "https://packagist.org/downloads/",
  1627. "license": [
  1628. "MIT"
  1629. ],
  1630. "authors": [
  1631. {
  1632. "name": "PHP-FIG",
  1633. "homepage": "http://www.php-fig.org/"
  1634. }
  1635. ],
  1636. "description": "Common interface for caching libraries",
  1637. "keywords": [
  1638. "cache",
  1639. "psr",
  1640. "psr-6"
  1641. ],
  1642. "support": {
  1643. "source": "https://github.com/php-fig/cache/tree/master"
  1644. },
  1645. "time": "2016-08-06T20:24:11+00:00"
  1646. },
  1647. {
  1648. "name": "psr/container",
  1649. "version": "1.1.1",
  1650. "source": {
  1651. "type": "git",
  1652. "url": "https://github.com/php-fig/container.git",
  1653. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
  1654. },
  1655. "dist": {
  1656. "type": "zip",
  1657. "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
  1658. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
  1659. "shasum": ""
  1660. },
  1661. "require": {
  1662. "php": ">=7.2.0"
  1663. },
  1664. "type": "library",
  1665. "autoload": {
  1666. "psr-4": {
  1667. "Psr\\Container\\": "src/"
  1668. }
  1669. },
  1670. "notification-url": "https://packagist.org/downloads/",
  1671. "license": [
  1672. "MIT"
  1673. ],
  1674. "authors": [
  1675. {
  1676. "name": "PHP-FIG",
  1677. "homepage": "https://www.php-fig.org/"
  1678. }
  1679. ],
  1680. "description": "Common Container Interface (PHP FIG PSR-11)",
  1681. "homepage": "https://github.com/php-fig/container",
  1682. "keywords": [
  1683. "PSR-11",
  1684. "container",
  1685. "container-interface",
  1686. "container-interop",
  1687. "psr"
  1688. ],
  1689. "support": {
  1690. "issues": "https://github.com/php-fig/container/issues",
  1691. "source": "https://github.com/php-fig/container/tree/1.1.1"
  1692. },
  1693. "time": "2021-03-05T17:36:06+00:00"
  1694. },
  1695. {
  1696. "name": "psr/http-factory",
  1697. "version": "1.0.2",
  1698. "source": {
  1699. "type": "git",
  1700. "url": "https://github.com/php-fig/http-factory.git",
  1701. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  1702. },
  1703. "dist": {
  1704. "type": "zip",
  1705. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  1706. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  1707. "shasum": ""
  1708. },
  1709. "require": {
  1710. "php": ">=7.0.0",
  1711. "psr/http-message": "^1.0 || ^2.0"
  1712. },
  1713. "type": "library",
  1714. "extra": {
  1715. "branch-alias": {
  1716. "dev-master": "1.0.x-dev"
  1717. }
  1718. },
  1719. "autoload": {
  1720. "psr-4": {
  1721. "Psr\\Http\\Message\\": "src/"
  1722. }
  1723. },
  1724. "notification-url": "https://packagist.org/downloads/",
  1725. "license": [
  1726. "MIT"
  1727. ],
  1728. "authors": [
  1729. {
  1730. "name": "PHP-FIG",
  1731. "homepage": "https://www.php-fig.org/"
  1732. }
  1733. ],
  1734. "description": "Common interfaces for PSR-7 HTTP message factories",
  1735. "keywords": [
  1736. "factory",
  1737. "http",
  1738. "message",
  1739. "psr",
  1740. "psr-17",
  1741. "psr-7",
  1742. "request",
  1743. "response"
  1744. ],
  1745. "support": {
  1746. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  1747. },
  1748. "time": "2023-04-10T20:10:41+00:00"
  1749. },
  1750. {
  1751. "name": "psr/http-message",
  1752. "version": "1.1",
  1753. "source": {
  1754. "type": "git",
  1755. "url": "https://github.com/php-fig/http-message.git",
  1756. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  1757. },
  1758. "dist": {
  1759. "type": "zip",
  1760. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  1761. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  1762. "shasum": ""
  1763. },
  1764. "require": {
  1765. "php": "^7.2 || ^8.0"
  1766. },
  1767. "type": "library",
  1768. "extra": {
  1769. "branch-alias": {
  1770. "dev-master": "1.1.x-dev"
  1771. }
  1772. },
  1773. "autoload": {
  1774. "psr-4": {
  1775. "Psr\\Http\\Message\\": "src/"
  1776. }
  1777. },
  1778. "notification-url": "https://packagist.org/downloads/",
  1779. "license": [
  1780. "MIT"
  1781. ],
  1782. "authors": [
  1783. {
  1784. "name": "PHP-FIG",
  1785. "homepage": "http://www.php-fig.org/"
  1786. }
  1787. ],
  1788. "description": "Common interface for HTTP messages",
  1789. "homepage": "https://github.com/php-fig/http-message",
  1790. "keywords": [
  1791. "http",
  1792. "http-message",
  1793. "psr",
  1794. "psr-7",
  1795. "request",
  1796. "response"
  1797. ],
  1798. "support": {
  1799. "source": "https://github.com/php-fig/http-message/tree/1.1"
  1800. },
  1801. "time": "2023-04-04T09:50:52+00:00"
  1802. },
  1803. {
  1804. "name": "psr/http-server-handler",
  1805. "version": "1.0.2",
  1806. "source": {
  1807. "type": "git",
  1808. "url": "https://github.com/php-fig/http-server-handler.git",
  1809. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4"
  1810. },
  1811. "dist": {
  1812. "type": "zip",
  1813. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/84c4fb66179be4caaf8e97bd239203245302e7d4",
  1814. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4",
  1815. "shasum": ""
  1816. },
  1817. "require": {
  1818. "php": ">=7.0",
  1819. "psr/http-message": "^1.0 || ^2.0"
  1820. },
  1821. "type": "library",
  1822. "extra": {
  1823. "branch-alias": {
  1824. "dev-master": "1.0.x-dev"
  1825. }
  1826. },
  1827. "autoload": {
  1828. "psr-4": {
  1829. "Psr\\Http\\Server\\": "src/"
  1830. }
  1831. },
  1832. "notification-url": "https://packagist.org/downloads/",
  1833. "license": [
  1834. "MIT"
  1835. ],
  1836. "authors": [
  1837. {
  1838. "name": "PHP-FIG",
  1839. "homepage": "https://www.php-fig.org/"
  1840. }
  1841. ],
  1842. "description": "Common interface for HTTP server-side request handler",
  1843. "keywords": [
  1844. "handler",
  1845. "http",
  1846. "http-interop",
  1847. "psr",
  1848. "psr-15",
  1849. "psr-7",
  1850. "request",
  1851. "response",
  1852. "server"
  1853. ],
  1854. "support": {
  1855. "source": "https://github.com/php-fig/http-server-handler/tree/1.0.2"
  1856. },
  1857. "time": "2023-04-10T20:06:20+00:00"
  1858. },
  1859. {
  1860. "name": "psr/http-server-middleware",
  1861. "version": "1.0.2",
  1862. "source": {
  1863. "type": "git",
  1864. "url": "https://github.com/php-fig/http-server-middleware.git",
  1865. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829"
  1866. },
  1867. "dist": {
  1868. "type": "zip",
  1869. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  1870. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  1871. "shasum": ""
  1872. },
  1873. "require": {
  1874. "php": ">=7.0",
  1875. "psr/http-message": "^1.0 || ^2.0",
  1876. "psr/http-server-handler": "^1.0"
  1877. },
  1878. "type": "library",
  1879. "extra": {
  1880. "branch-alias": {
  1881. "dev-master": "1.0.x-dev"
  1882. }
  1883. },
  1884. "autoload": {
  1885. "psr-4": {
  1886. "Psr\\Http\\Server\\": "src/"
  1887. }
  1888. },
  1889. "notification-url": "https://packagist.org/downloads/",
  1890. "license": [
  1891. "MIT"
  1892. ],
  1893. "authors": [
  1894. {
  1895. "name": "PHP-FIG",
  1896. "homepage": "https://www.php-fig.org/"
  1897. }
  1898. ],
  1899. "description": "Common interface for HTTP server-side middleware",
  1900. "keywords": [
  1901. "http",
  1902. "http-interop",
  1903. "middleware",
  1904. "psr",
  1905. "psr-15",
  1906. "psr-7",
  1907. "request",
  1908. "response"
  1909. ],
  1910. "support": {
  1911. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  1912. "source": "https://github.com/php-fig/http-server-middleware/tree/1.0.2"
  1913. },
  1914. "time": "2023-04-11T06:14:47+00:00"
  1915. },
  1916. {
  1917. "name": "psr/log",
  1918. "version": "1.1.4",
  1919. "source": {
  1920. "type": "git",
  1921. "url": "https://github.com/php-fig/log.git",
  1922. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  1923. },
  1924. "dist": {
  1925. "type": "zip",
  1926. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  1927. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  1928. "shasum": ""
  1929. },
  1930. "require": {
  1931. "php": ">=5.3.0"
  1932. },
  1933. "type": "library",
  1934. "extra": {
  1935. "branch-alias": {
  1936. "dev-master": "1.1.x-dev"
  1937. }
  1938. },
  1939. "autoload": {
  1940. "psr-4": {
  1941. "Psr\\Log\\": "Psr/Log/"
  1942. }
  1943. },
  1944. "notification-url": "https://packagist.org/downloads/",
  1945. "license": [
  1946. "MIT"
  1947. ],
  1948. "authors": [
  1949. {
  1950. "name": "PHP-FIG",
  1951. "homepage": "https://www.php-fig.org/"
  1952. }
  1953. ],
  1954. "description": "Common interface for logging libraries",
  1955. "homepage": "https://github.com/php-fig/log",
  1956. "keywords": [
  1957. "log",
  1958. "psr",
  1959. "psr-3"
  1960. ],
  1961. "support": {
  1962. "source": "https://github.com/php-fig/log/tree/1.1.4"
  1963. },
  1964. "time": "2021-05-03T11:20:27+00:00"
  1965. },
  1966. {
  1967. "name": "psr/simple-cache",
  1968. "version": "1.0.1",
  1969. "source": {
  1970. "type": "git",
  1971. "url": "https://github.com/php-fig/simple-cache.git",
  1972. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  1973. },
  1974. "dist": {
  1975. "type": "zip",
  1976. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1977. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1978. "shasum": ""
  1979. },
  1980. "require": {
  1981. "php": ">=5.3.0"
  1982. },
  1983. "type": "library",
  1984. "extra": {
  1985. "branch-alias": {
  1986. "dev-master": "1.0.x-dev"
  1987. }
  1988. },
  1989. "autoload": {
  1990. "psr-4": {
  1991. "Psr\\SimpleCache\\": "src/"
  1992. }
  1993. },
  1994. "notification-url": "https://packagist.org/downloads/",
  1995. "license": [
  1996. "MIT"
  1997. ],
  1998. "authors": [
  1999. {
  2000. "name": "PHP-FIG",
  2001. "homepage": "http://www.php-fig.org/"
  2002. }
  2003. ],
  2004. "description": "Common interfaces for simple caching",
  2005. "keywords": [
  2006. "cache",
  2007. "caching",
  2008. "psr",
  2009. "psr-16",
  2010. "simple-cache"
  2011. ],
  2012. "support": {
  2013. "source": "https://github.com/php-fig/simple-cache/tree/master"
  2014. },
  2015. "time": "2017-10-23T01:57:42+00:00"
  2016. },
  2017. {
  2018. "name": "ralouphie/getallheaders",
  2019. "version": "3.0.3",
  2020. "source": {
  2021. "type": "git",
  2022. "url": "https://github.com/ralouphie/getallheaders.git",
  2023. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  2024. },
  2025. "dist": {
  2026. "type": "zip",
  2027. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  2028. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  2029. "shasum": ""
  2030. },
  2031. "require": {
  2032. "php": ">=5.6"
  2033. },
  2034. "require-dev": {
  2035. "php-coveralls/php-coveralls": "^2.1",
  2036. "phpunit/phpunit": "^5 || ^6.5"
  2037. },
  2038. "type": "library",
  2039. "autoload": {
  2040. "files": [
  2041. "src/getallheaders.php"
  2042. ]
  2043. },
  2044. "notification-url": "https://packagist.org/downloads/",
  2045. "license": [
  2046. "MIT"
  2047. ],
  2048. "authors": [
  2049. {
  2050. "name": "Ralph Khattar",
  2051. "email": "ralph.khattar@gmail.com"
  2052. }
  2053. ],
  2054. "description": "A polyfill for getallheaders.",
  2055. "support": {
  2056. "issues": "https://github.com/ralouphie/getallheaders/issues",
  2057. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  2058. },
  2059. "time": "2019-03-08T08:55:37+00:00"
  2060. },
  2061. {
  2062. "name": "rhukster/dom-sanitizer",
  2063. "version": "1.0.6",
  2064. "source": {
  2065. "type": "git",
  2066. "url": "https://github.com/rhukster/dom-sanitizer.git",
  2067. "reference": "4db3ef1ac3d5505d044c5eb12aa106ba745bf129"
  2068. },
  2069. "dist": {
  2070. "type": "zip",
  2071. "url": "https://api.github.com/repos/rhukster/dom-sanitizer/zipball/4db3ef1ac3d5505d044c5eb12aa106ba745bf129",
  2072. "reference": "4db3ef1ac3d5505d044c5eb12aa106ba745bf129",
  2073. "shasum": ""
  2074. },
  2075. "require": {
  2076. "ext-dom": "*",
  2077. "ext-libxml": "*",
  2078. "php": ">=7.3"
  2079. },
  2080. "require-dev": {
  2081. "phpunit/phpunit": "^9"
  2082. },
  2083. "type": "library",
  2084. "autoload": {
  2085. "psr-4": {
  2086. "Rhukster\\DomSanitizer\\": "src"
  2087. }
  2088. },
  2089. "notification-url": "https://packagist.org/downloads/",
  2090. "license": [
  2091. "MIT"
  2092. ],
  2093. "authors": [
  2094. {
  2095. "name": "Andy Miller",
  2096. "email": "rhuk@rhuk.net"
  2097. }
  2098. ],
  2099. "description": "A simple but effective DOM/SVG/MathML Sanitizer for PHP 7.4+",
  2100. "support": {
  2101. "issues": "https://github.com/rhukster/dom-sanitizer/issues",
  2102. "source": "https://github.com/rhukster/dom-sanitizer/tree/1.0.6"
  2103. },
  2104. "time": "2021-09-30T15:41:33+00:00"
  2105. },
  2106. {
  2107. "name": "rockettheme/toolbox",
  2108. "version": "1.6.5",
  2109. "source": {
  2110. "type": "git",
  2111. "url": "https://github.com/rockettheme/toolbox.git",
  2112. "reference": "c5e84deac813da7fcb78cd8a663c8966da9b27bd"
  2113. },
  2114. "dist": {
  2115. "type": "zip",
  2116. "url": "https://api.github.com/repos/rockettheme/toolbox/zipball/c5e84deac813da7fcb78cd8a663c8966da9b27bd",
  2117. "reference": "c5e84deac813da7fcb78cd8a663c8966da9b27bd",
  2118. "shasum": ""
  2119. },
  2120. "require": {
  2121. "ext-json": "*",
  2122. "php": ">=5.6.0",
  2123. "pimple/pimple": "^3.0",
  2124. "symfony/event-dispatcher": "^3.4|^4.0",
  2125. "symfony/yaml": "^3.4|^4.0|^5.0"
  2126. },
  2127. "type": "library",
  2128. "autoload": {
  2129. "psr-4": {
  2130. "RocketTheme\\Toolbox\\DI\\": "DI/src",
  2131. "RocketTheme\\Toolbox\\File\\": "File/src",
  2132. "RocketTheme\\Toolbox\\Event\\": "Event/src",
  2133. "RocketTheme\\Toolbox\\Compat\\": "Compat/src",
  2134. "RocketTheme\\Toolbox\\Session\\": "Session/src",
  2135. "RocketTheme\\Toolbox\\Blueprints\\": "Blueprints/src",
  2136. "RocketTheme\\Toolbox\\ArrayTraits\\": "ArrayTraits/src",
  2137. "RocketTheme\\Toolbox\\StreamWrapper\\": "StreamWrapper/src",
  2138. "RocketTheme\\Toolbox\\ResourceLocator\\": "ResourceLocator/src"
  2139. },
  2140. "exclude-from-classmap": [
  2141. "**/tests/"
  2142. ]
  2143. },
  2144. "notification-url": "https://packagist.org/downloads/",
  2145. "license": [
  2146. "MIT"
  2147. ],
  2148. "description": "RocketTheme Toolbox Library",
  2149. "homepage": "http://www.rockettheme.com",
  2150. "keywords": [
  2151. "php",
  2152. "rockettheme"
  2153. ],
  2154. "support": {
  2155. "issues": "https://github.com/rockettheme/toolbox/issues",
  2156. "source": "https://github.com/rockettheme/toolbox/tree/1.6.5"
  2157. },
  2158. "time": "2023-05-09T18:11:17+00:00"
  2159. },
  2160. {
  2161. "name": "seld/cli-prompt",
  2162. "version": "1.0.4",
  2163. "source": {
  2164. "type": "git",
  2165. "url": "https://github.com/Seldaek/cli-prompt.git",
  2166. "reference": "b8dfcf02094b8c03b40322c229493bb2884423c5"
  2167. },
  2168. "dist": {
  2169. "type": "zip",
  2170. "url": "https://api.github.com/repos/Seldaek/cli-prompt/zipball/b8dfcf02094b8c03b40322c229493bb2884423c5",
  2171. "reference": "b8dfcf02094b8c03b40322c229493bb2884423c5",
  2172. "shasum": ""
  2173. },
  2174. "require": {
  2175. "php": ">=5.3"
  2176. },
  2177. "require-dev": {
  2178. "phpstan/phpstan": "^0.12.63"
  2179. },
  2180. "type": "library",
  2181. "extra": {
  2182. "branch-alias": {
  2183. "dev-master": "1.x-dev"
  2184. }
  2185. },
  2186. "autoload": {
  2187. "psr-4": {
  2188. "Seld\\CliPrompt\\": "src/"
  2189. }
  2190. },
  2191. "notification-url": "https://packagist.org/downloads/",
  2192. "license": [
  2193. "MIT"
  2194. ],
  2195. "authors": [
  2196. {
  2197. "name": "Jordi Boggiano",
  2198. "email": "j.boggiano@seld.be"
  2199. }
  2200. ],
  2201. "description": "Allows you to prompt for user input on the command line, and optionally hide the characters they type",
  2202. "keywords": [
  2203. "cli",
  2204. "console",
  2205. "hidden",
  2206. "input",
  2207. "prompt"
  2208. ],
  2209. "support": {
  2210. "issues": "https://github.com/Seldaek/cli-prompt/issues",
  2211. "source": "https://github.com/Seldaek/cli-prompt/tree/1.0.4"
  2212. },
  2213. "time": "2020-12-15T21:32:01+00:00"
  2214. },
  2215. {
  2216. "name": "symfony/console",
  2217. "version": "v4.4.49",
  2218. "source": {
  2219. "type": "git",
  2220. "url": "https://github.com/symfony/console.git",
  2221. "reference": "33fa45ffc81fdcc1ca368d4946da859c8cdb58d9"
  2222. },
  2223. "dist": {
  2224. "type": "zip",
  2225. "url": "https://api.github.com/repos/symfony/console/zipball/33fa45ffc81fdcc1ca368d4946da859c8cdb58d9",
  2226. "reference": "33fa45ffc81fdcc1ca368d4946da859c8cdb58d9",
  2227. "shasum": ""
  2228. },
  2229. "require": {
  2230. "php": ">=7.1.3",
  2231. "symfony/polyfill-mbstring": "~1.0",
  2232. "symfony/polyfill-php73": "^1.8",
  2233. "symfony/polyfill-php80": "^1.16",
  2234. "symfony/service-contracts": "^1.1|^2"
  2235. },
  2236. "conflict": {
  2237. "psr/log": ">=3",
  2238. "symfony/dependency-injection": "<3.4",
  2239. "symfony/event-dispatcher": "<4.3|>=5",
  2240. "symfony/lock": "<4.4",
  2241. "symfony/process": "<3.3"
  2242. },
  2243. "provide": {
  2244. "psr/log-implementation": "1.0|2.0"
  2245. },
  2246. "require-dev": {
  2247. "psr/log": "^1|^2",
  2248. "symfony/config": "^3.4|^4.0|^5.0",
  2249. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  2250. "symfony/event-dispatcher": "^4.3",
  2251. "symfony/lock": "^4.4|^5.0",
  2252. "symfony/process": "^3.4|^4.0|^5.0",
  2253. "symfony/var-dumper": "^4.3|^5.0"
  2254. },
  2255. "suggest": {
  2256. "psr/log": "For using the console logger",
  2257. "symfony/event-dispatcher": "",
  2258. "symfony/lock": "",
  2259. "symfony/process": ""
  2260. },
  2261. "type": "library",
  2262. "autoload": {
  2263. "psr-4": {
  2264. "Symfony\\Component\\Console\\": ""
  2265. },
  2266. "exclude-from-classmap": [
  2267. "/Tests/"
  2268. ]
  2269. },
  2270. "notification-url": "https://packagist.org/downloads/",
  2271. "license": [
  2272. "MIT"
  2273. ],
  2274. "authors": [
  2275. {
  2276. "name": "Fabien Potencier",
  2277. "email": "fabien@symfony.com"
  2278. },
  2279. {
  2280. "name": "Symfony Community",
  2281. "homepage": "https://symfony.com/contributors"
  2282. }
  2283. ],
  2284. "description": "Eases the creation of beautiful and testable command line interfaces",
  2285. "homepage": "https://symfony.com",
  2286. "support": {
  2287. "source": "https://github.com/symfony/console/tree/v4.4.49"
  2288. },
  2289. "funding": [
  2290. {
  2291. "url": "https://symfony.com/sponsor",
  2292. "type": "custom"
  2293. },
  2294. {
  2295. "url": "https://github.com/fabpot",
  2296. "type": "github"
  2297. },
  2298. {
  2299. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2300. "type": "tidelift"
  2301. }
  2302. ],
  2303. "time": "2022-11-05T17:10:16+00:00"
  2304. },
  2305. {
  2306. "name": "symfony/contracts",
  2307. "version": "v1.1.13",
  2308. "source": {
  2309. "type": "git",
  2310. "url": "https://github.com/symfony/contracts.git",
  2311. "reference": "9e27f5c175ecbd6fff554d839ff4a432da797168"
  2312. },
  2313. "dist": {
  2314. "type": "zip",
  2315. "url": "https://api.github.com/repos/symfony/contracts/zipball/9e27f5c175ecbd6fff554d839ff4a432da797168",
  2316. "reference": "9e27f5c175ecbd6fff554d839ff4a432da797168",
  2317. "shasum": ""
  2318. },
  2319. "require": {
  2320. "php": ">=7.1.3",
  2321. "psr/cache": "^1.0|^2.0|^3.0",
  2322. "psr/container": "^1.0"
  2323. },
  2324. "replace": {
  2325. "symfony/cache-contracts": "self.version",
  2326. "symfony/event-dispatcher-contracts": "self.version",
  2327. "symfony/http-client-contracts": "self.version",
  2328. "symfony/service-contracts": "self.version",
  2329. "symfony/translation-contracts": "self.version"
  2330. },
  2331. "require-dev": {
  2332. "symfony/polyfill-intl-idn": "^1.10"
  2333. },
  2334. "suggest": {
  2335. "psr/event-dispatcher": "When using the EventDispatcher contracts",
  2336. "symfony/cache-implementation": "",
  2337. "symfony/event-dispatcher-implementation": "",
  2338. "symfony/http-client-implementation": "",
  2339. "symfony/service-implementation": "",
  2340. "symfony/translation-implementation": ""
  2341. },
  2342. "type": "library",
  2343. "extra": {
  2344. "branch-alias": {
  2345. "dev-main": "1.1-dev"
  2346. }
  2347. },
  2348. "autoload": {
  2349. "psr-4": {
  2350. "Symfony\\Contracts\\": ""
  2351. },
  2352. "exclude-from-classmap": [
  2353. "**/Tests/"
  2354. ]
  2355. },
  2356. "notification-url": "https://packagist.org/downloads/",
  2357. "license": [
  2358. "MIT"
  2359. ],
  2360. "authors": [
  2361. {
  2362. "name": "Nicolas Grekas",
  2363. "email": "p@tchwork.com"
  2364. },
  2365. {
  2366. "name": "Symfony Community",
  2367. "homepage": "https://symfony.com/contributors"
  2368. }
  2369. ],
  2370. "description": "A set of abstractions extracted out of the Symfony components",
  2371. "homepage": "https://symfony.com",
  2372. "keywords": [
  2373. "abstractions",
  2374. "contracts",
  2375. "decoupling",
  2376. "interfaces",
  2377. "interoperability",
  2378. "standards"
  2379. ],
  2380. "support": {
  2381. "source": "https://github.com/symfony/contracts/tree/v1.1.13"
  2382. },
  2383. "funding": [
  2384. {
  2385. "url": "https://symfony.com/sponsor",
  2386. "type": "custom"
  2387. },
  2388. {
  2389. "url": "https://github.com/fabpot",
  2390. "type": "github"
  2391. },
  2392. {
  2393. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2394. "type": "tidelift"
  2395. }
  2396. ],
  2397. "time": "2022-06-27T13:16:42+00:00"
  2398. },
  2399. {
  2400. "name": "symfony/event-dispatcher",
  2401. "version": "v4.4.44",
  2402. "source": {
  2403. "type": "git",
  2404. "url": "https://github.com/symfony/event-dispatcher.git",
  2405. "reference": "1e866e9e5c1b22168e0ce5f0b467f19bba61266a"
  2406. },
  2407. "dist": {
  2408. "type": "zip",
  2409. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/1e866e9e5c1b22168e0ce5f0b467f19bba61266a",
  2410. "reference": "1e866e9e5c1b22168e0ce5f0b467f19bba61266a",
  2411. "shasum": ""
  2412. },
  2413. "require": {
  2414. "php": ">=7.1.3",
  2415. "symfony/event-dispatcher-contracts": "^1.1",
  2416. "symfony/polyfill-php80": "^1.16"
  2417. },
  2418. "conflict": {
  2419. "symfony/dependency-injection": "<3.4"
  2420. },
  2421. "provide": {
  2422. "psr/event-dispatcher-implementation": "1.0",
  2423. "symfony/event-dispatcher-implementation": "1.1"
  2424. },
  2425. "require-dev": {
  2426. "psr/log": "^1|^2|^3",
  2427. "symfony/config": "^3.4|^4.0|^5.0",
  2428. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  2429. "symfony/error-handler": "~3.4|~4.4",
  2430. "symfony/expression-language": "^3.4|^4.0|^5.0",
  2431. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  2432. "symfony/service-contracts": "^1.1|^2",
  2433. "symfony/stopwatch": "^3.4|^4.0|^5.0"
  2434. },
  2435. "suggest": {
  2436. "symfony/dependency-injection": "",
  2437. "symfony/http-kernel": ""
  2438. },
  2439. "type": "library",
  2440. "autoload": {
  2441. "psr-4": {
  2442. "Symfony\\Component\\EventDispatcher\\": ""
  2443. },
  2444. "exclude-from-classmap": [
  2445. "/Tests/"
  2446. ]
  2447. },
  2448. "notification-url": "https://packagist.org/downloads/",
  2449. "license": [
  2450. "MIT"
  2451. ],
  2452. "authors": [
  2453. {
  2454. "name": "Fabien Potencier",
  2455. "email": "fabien@symfony.com"
  2456. },
  2457. {
  2458. "name": "Symfony Community",
  2459. "homepage": "https://symfony.com/contributors"
  2460. }
  2461. ],
  2462. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  2463. "homepage": "https://symfony.com",
  2464. "support": {
  2465. "source": "https://github.com/symfony/event-dispatcher/tree/v4.4.44"
  2466. },
  2467. "funding": [
  2468. {
  2469. "url": "https://symfony.com/sponsor",
  2470. "type": "custom"
  2471. },
  2472. {
  2473. "url": "https://github.com/fabpot",
  2474. "type": "github"
  2475. },
  2476. {
  2477. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2478. "type": "tidelift"
  2479. }
  2480. ],
  2481. "time": "2022-07-20T09:59:04+00:00"
  2482. },
  2483. {
  2484. "name": "symfony/http-client",
  2485. "version": "v4.4.49",
  2486. "source": {
  2487. "type": "git",
  2488. "url": "https://github.com/symfony/http-client.git",
  2489. "reference": "0185497cd61440bdf68df7d81241b97a543e9c3f"
  2490. },
  2491. "dist": {
  2492. "type": "zip",
  2493. "url": "https://api.github.com/repos/symfony/http-client/zipball/0185497cd61440bdf68df7d81241b97a543e9c3f",
  2494. "reference": "0185497cd61440bdf68df7d81241b97a543e9c3f",
  2495. "shasum": ""
  2496. },
  2497. "require": {
  2498. "php": ">=7.1.3",
  2499. "psr/log": "^1|^2|^3",
  2500. "symfony/http-client-contracts": "^1.1.10|^2",
  2501. "symfony/polyfill-php73": "^1.11",
  2502. "symfony/polyfill-php80": "^1.16",
  2503. "symfony/service-contracts": "^1.0|^2"
  2504. },
  2505. "provide": {
  2506. "php-http/async-client-implementation": "*",
  2507. "php-http/client-implementation": "*",
  2508. "psr/http-client-implementation": "1.0",
  2509. "symfony/http-client-implementation": "1.1|2.0"
  2510. },
  2511. "require-dev": {
  2512. "guzzlehttp/promises": "^1.4",
  2513. "nyholm/psr7": "^1.0",
  2514. "php-http/httplug": "^1.0|^2.0",
  2515. "psr/http-client": "^1.0",
  2516. "symfony/dependency-injection": "^4.3|^5.0",
  2517. "symfony/http-kernel": "^4.4.13",
  2518. "symfony/process": "^4.2|^5.0"
  2519. },
  2520. "type": "library",
  2521. "autoload": {
  2522. "psr-4": {
  2523. "Symfony\\Component\\HttpClient\\": ""
  2524. },
  2525. "exclude-from-classmap": [
  2526. "/Tests/"
  2527. ]
  2528. },
  2529. "notification-url": "https://packagist.org/downloads/",
  2530. "license": [
  2531. "MIT"
  2532. ],
  2533. "authors": [
  2534. {
  2535. "name": "Nicolas Grekas",
  2536. "email": "p@tchwork.com"
  2537. },
  2538. {
  2539. "name": "Symfony Community",
  2540. "homepage": "https://symfony.com/contributors"
  2541. }
  2542. ],
  2543. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  2544. "homepage": "https://symfony.com",
  2545. "support": {
  2546. "source": "https://github.com/symfony/http-client/tree/v4.4.49"
  2547. },
  2548. "funding": [
  2549. {
  2550. "url": "https://symfony.com/sponsor",
  2551. "type": "custom"
  2552. },
  2553. {
  2554. "url": "https://github.com/fabpot",
  2555. "type": "github"
  2556. },
  2557. {
  2558. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2559. "type": "tidelift"
  2560. }
  2561. ],
  2562. "time": "2022-11-03T19:03:45+00:00"
  2563. },
  2564. {
  2565. "name": "symfony/polyfill-ctype",
  2566. "version": "v1.27.0",
  2567. "source": {
  2568. "type": "git",
  2569. "url": "https://github.com/symfony/polyfill-ctype.git",
  2570. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a"
  2571. },
  2572. "dist": {
  2573. "type": "zip",
  2574. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a",
  2575. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a",
  2576. "shasum": ""
  2577. },
  2578. "require": {
  2579. "php": ">=7.1"
  2580. },
  2581. "provide": {
  2582. "ext-ctype": "*"
  2583. },
  2584. "suggest": {
  2585. "ext-ctype": "For best performance"
  2586. },
  2587. "type": "library",
  2588. "extra": {
  2589. "branch-alias": {
  2590. "dev-main": "1.27-dev"
  2591. },
  2592. "thanks": {
  2593. "name": "symfony/polyfill",
  2594. "url": "https://github.com/symfony/polyfill"
  2595. }
  2596. },
  2597. "autoload": {
  2598. "files": [
  2599. "bootstrap.php"
  2600. ],
  2601. "psr-4": {
  2602. "Symfony\\Polyfill\\Ctype\\": ""
  2603. }
  2604. },
  2605. "notification-url": "https://packagist.org/downloads/",
  2606. "license": [
  2607. "MIT"
  2608. ],
  2609. "authors": [
  2610. {
  2611. "name": "Gert de Pagter",
  2612. "email": "BackEndTea@gmail.com"
  2613. },
  2614. {
  2615. "name": "Symfony Community",
  2616. "homepage": "https://symfony.com/contributors"
  2617. }
  2618. ],
  2619. "description": "Symfony polyfill for ctype functions",
  2620. "homepage": "https://symfony.com",
  2621. "keywords": [
  2622. "compatibility",
  2623. "ctype",
  2624. "polyfill",
  2625. "portable"
  2626. ],
  2627. "support": {
  2628. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0"
  2629. },
  2630. "funding": [
  2631. {
  2632. "url": "https://symfony.com/sponsor",
  2633. "type": "custom"
  2634. },
  2635. {
  2636. "url": "https://github.com/fabpot",
  2637. "type": "github"
  2638. },
  2639. {
  2640. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2641. "type": "tidelift"
  2642. }
  2643. ],
  2644. "time": "2022-11-03T14:55:06+00:00"
  2645. },
  2646. {
  2647. "name": "symfony/polyfill-iconv",
  2648. "version": "v1.27.0",
  2649. "source": {
  2650. "type": "git",
  2651. "url": "https://github.com/symfony/polyfill-iconv.git",
  2652. "reference": "927013f3aac555983a5059aada98e1907d842695"
  2653. },
  2654. "dist": {
  2655. "type": "zip",
  2656. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/927013f3aac555983a5059aada98e1907d842695",
  2657. "reference": "927013f3aac555983a5059aada98e1907d842695",
  2658. "shasum": ""
  2659. },
  2660. "require": {
  2661. "php": ">=7.1"
  2662. },
  2663. "provide": {
  2664. "ext-iconv": "*"
  2665. },
  2666. "suggest": {
  2667. "ext-iconv": "For best performance"
  2668. },
  2669. "type": "library",
  2670. "extra": {
  2671. "branch-alias": {
  2672. "dev-main": "1.27-dev"
  2673. },
  2674. "thanks": {
  2675. "name": "symfony/polyfill",
  2676. "url": "https://github.com/symfony/polyfill"
  2677. }
  2678. },
  2679. "autoload": {
  2680. "files": [
  2681. "bootstrap.php"
  2682. ],
  2683. "psr-4": {
  2684. "Symfony\\Polyfill\\Iconv\\": ""
  2685. }
  2686. },
  2687. "notification-url": "https://packagist.org/downloads/",
  2688. "license": [
  2689. "MIT"
  2690. ],
  2691. "authors": [
  2692. {
  2693. "name": "Nicolas Grekas",
  2694. "email": "p@tchwork.com"
  2695. },
  2696. {
  2697. "name": "Symfony Community",
  2698. "homepage": "https://symfony.com/contributors"
  2699. }
  2700. ],
  2701. "description": "Symfony polyfill for the Iconv extension",
  2702. "homepage": "https://symfony.com",
  2703. "keywords": [
  2704. "compatibility",
  2705. "iconv",
  2706. "polyfill",
  2707. "portable",
  2708. "shim"
  2709. ],
  2710. "support": {
  2711. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.27.0"
  2712. },
  2713. "funding": [
  2714. {
  2715. "url": "https://symfony.com/sponsor",
  2716. "type": "custom"
  2717. },
  2718. {
  2719. "url": "https://github.com/fabpot",
  2720. "type": "github"
  2721. },
  2722. {
  2723. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2724. "type": "tidelift"
  2725. }
  2726. ],
  2727. "time": "2022-11-03T14:55:06+00:00"
  2728. },
  2729. {
  2730. "name": "symfony/polyfill-mbstring",
  2731. "version": "v1.27.0",
  2732. "source": {
  2733. "type": "git",
  2734. "url": "https://github.com/symfony/polyfill-mbstring.git",
  2735. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
  2736. },
  2737. "dist": {
  2738. "type": "zip",
  2739. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  2740. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  2741. "shasum": ""
  2742. },
  2743. "require": {
  2744. "php": ">=7.1"
  2745. },
  2746. "provide": {
  2747. "ext-mbstring": "*"
  2748. },
  2749. "suggest": {
  2750. "ext-mbstring": "For best performance"
  2751. },
  2752. "type": "library",
  2753. "extra": {
  2754. "branch-alias": {
  2755. "dev-main": "1.27-dev"
  2756. },
  2757. "thanks": {
  2758. "name": "symfony/polyfill",
  2759. "url": "https://github.com/symfony/polyfill"
  2760. }
  2761. },
  2762. "autoload": {
  2763. "files": [
  2764. "bootstrap.php"
  2765. ],
  2766. "psr-4": {
  2767. "Symfony\\Polyfill\\Mbstring\\": ""
  2768. }
  2769. },
  2770. "notification-url": "https://packagist.org/downloads/",
  2771. "license": [
  2772. "MIT"
  2773. ],
  2774. "authors": [
  2775. {
  2776. "name": "Nicolas Grekas",
  2777. "email": "p@tchwork.com"
  2778. },
  2779. {
  2780. "name": "Symfony Community",
  2781. "homepage": "https://symfony.com/contributors"
  2782. }
  2783. ],
  2784. "description": "Symfony polyfill for the Mbstring extension",
  2785. "homepage": "https://symfony.com",
  2786. "keywords": [
  2787. "compatibility",
  2788. "mbstring",
  2789. "polyfill",
  2790. "portable",
  2791. "shim"
  2792. ],
  2793. "support": {
  2794. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
  2795. },
  2796. "funding": [
  2797. {
  2798. "url": "https://symfony.com/sponsor",
  2799. "type": "custom"
  2800. },
  2801. {
  2802. "url": "https://github.com/fabpot",
  2803. "type": "github"
  2804. },
  2805. {
  2806. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2807. "type": "tidelift"
  2808. }
  2809. ],
  2810. "time": "2022-11-03T14:55:06+00:00"
  2811. },
  2812. {
  2813. "name": "symfony/polyfill-php74",
  2814. "version": "v1.27.0",
  2815. "source": {
  2816. "type": "git",
  2817. "url": "https://github.com/symfony/polyfill-php74.git",
  2818. "reference": "aa7f1231a1aa56d695e626043252b7be6a90c4ce"
  2819. },
  2820. "dist": {
  2821. "type": "zip",
  2822. "url": "https://api.github.com/repos/symfony/polyfill-php74/zipball/aa7f1231a1aa56d695e626043252b7be6a90c4ce",
  2823. "reference": "aa7f1231a1aa56d695e626043252b7be6a90c4ce",
  2824. "shasum": ""
  2825. },
  2826. "require": {
  2827. "php": ">=7.1"
  2828. },
  2829. "type": "library",
  2830. "extra": {
  2831. "branch-alias": {
  2832. "dev-main": "1.27-dev"
  2833. },
  2834. "thanks": {
  2835. "name": "symfony/polyfill",
  2836. "url": "https://github.com/symfony/polyfill"
  2837. }
  2838. },
  2839. "autoload": {
  2840. "files": [
  2841. "bootstrap.php"
  2842. ],
  2843. "psr-4": {
  2844. "Symfony\\Polyfill\\Php74\\": ""
  2845. }
  2846. },
  2847. "notification-url": "https://packagist.org/downloads/",
  2848. "license": [
  2849. "MIT"
  2850. ],
  2851. "authors": [
  2852. {
  2853. "name": "Ion Bazan",
  2854. "email": "ion.bazan@gmail.com"
  2855. },
  2856. {
  2857. "name": "Nicolas Grekas",
  2858. "email": "p@tchwork.com"
  2859. },
  2860. {
  2861. "name": "Symfony Community",
  2862. "homepage": "https://symfony.com/contributors"
  2863. }
  2864. ],
  2865. "description": "Symfony polyfill backporting some PHP 7.4+ features to lower PHP versions",
  2866. "homepage": "https://symfony.com",
  2867. "keywords": [
  2868. "compatibility",
  2869. "polyfill",
  2870. "portable",
  2871. "shim"
  2872. ],
  2873. "support": {
  2874. "source": "https://github.com/symfony/polyfill-php74/tree/v1.27.0"
  2875. },
  2876. "funding": [
  2877. {
  2878. "url": "https://symfony.com/sponsor",
  2879. "type": "custom"
  2880. },
  2881. {
  2882. "url": "https://github.com/fabpot",
  2883. "type": "github"
  2884. },
  2885. {
  2886. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2887. "type": "tidelift"
  2888. }
  2889. ],
  2890. "time": "2022-11-03T14:55:06+00:00"
  2891. },
  2892. {
  2893. "name": "symfony/polyfill-php80",
  2894. "version": "v1.27.0",
  2895. "source": {
  2896. "type": "git",
  2897. "url": "https://github.com/symfony/polyfill-php80.git",
  2898. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936"
  2899. },
  2900. "dist": {
  2901. "type": "zip",
  2902. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  2903. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  2904. "shasum": ""
  2905. },
  2906. "require": {
  2907. "php": ">=7.1"
  2908. },
  2909. "type": "library",
  2910. "extra": {
  2911. "branch-alias": {
  2912. "dev-main": "1.27-dev"
  2913. },
  2914. "thanks": {
  2915. "name": "symfony/polyfill",
  2916. "url": "https://github.com/symfony/polyfill"
  2917. }
  2918. },
  2919. "autoload": {
  2920. "files": [
  2921. "bootstrap.php"
  2922. ],
  2923. "psr-4": {
  2924. "Symfony\\Polyfill\\Php80\\": ""
  2925. },
  2926. "classmap": [
  2927. "Resources/stubs"
  2928. ]
  2929. },
  2930. "notification-url": "https://packagist.org/downloads/",
  2931. "license": [
  2932. "MIT"
  2933. ],
  2934. "authors": [
  2935. {
  2936. "name": "Ion Bazan",
  2937. "email": "ion.bazan@gmail.com"
  2938. },
  2939. {
  2940. "name": "Nicolas Grekas",
  2941. "email": "p@tchwork.com"
  2942. },
  2943. {
  2944. "name": "Symfony Community",
  2945. "homepage": "https://symfony.com/contributors"
  2946. }
  2947. ],
  2948. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  2949. "homepage": "https://symfony.com",
  2950. "keywords": [
  2951. "compatibility",
  2952. "polyfill",
  2953. "portable",
  2954. "shim"
  2955. ],
  2956. "support": {
  2957. "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0"
  2958. },
  2959. "funding": [
  2960. {
  2961. "url": "https://symfony.com/sponsor",
  2962. "type": "custom"
  2963. },
  2964. {
  2965. "url": "https://github.com/fabpot",
  2966. "type": "github"
  2967. },
  2968. {
  2969. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2970. "type": "tidelift"
  2971. }
  2972. ],
  2973. "time": "2022-11-03T14:55:06+00:00"
  2974. },
  2975. {
  2976. "name": "symfony/polyfill-php81",
  2977. "version": "v1.27.0",
  2978. "source": {
  2979. "type": "git",
  2980. "url": "https://github.com/symfony/polyfill-php81.git",
  2981. "reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a"
  2982. },
  2983. "dist": {
  2984. "type": "zip",
  2985. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/707403074c8ea6e2edaf8794b0157a0bfa52157a",
  2986. "reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a",
  2987. "shasum": ""
  2988. },
  2989. "require": {
  2990. "php": ">=7.1"
  2991. },
  2992. "type": "library",
  2993. "extra": {
  2994. "branch-alias": {
  2995. "dev-main": "1.27-dev"
  2996. },
  2997. "thanks": {
  2998. "name": "symfony/polyfill",
  2999. "url": "https://github.com/symfony/polyfill"
  3000. }
  3001. },
  3002. "autoload": {
  3003. "files": [
  3004. "bootstrap.php"
  3005. ],
  3006. "psr-4": {
  3007. "Symfony\\Polyfill\\Php81\\": ""
  3008. },
  3009. "classmap": [
  3010. "Resources/stubs"
  3011. ]
  3012. },
  3013. "notification-url": "https://packagist.org/downloads/",
  3014. "license": [
  3015. "MIT"
  3016. ],
  3017. "authors": [
  3018. {
  3019. "name": "Nicolas Grekas",
  3020. "email": "p@tchwork.com"
  3021. },
  3022. {
  3023. "name": "Symfony Community",
  3024. "homepage": "https://symfony.com/contributors"
  3025. }
  3026. ],
  3027. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  3028. "homepage": "https://symfony.com",
  3029. "keywords": [
  3030. "compatibility",
  3031. "polyfill",
  3032. "portable",
  3033. "shim"
  3034. ],
  3035. "support": {
  3036. "source": "https://github.com/symfony/polyfill-php81/tree/v1.27.0"
  3037. },
  3038. "funding": [
  3039. {
  3040. "url": "https://symfony.com/sponsor",
  3041. "type": "custom"
  3042. },
  3043. {
  3044. "url": "https://github.com/fabpot",
  3045. "type": "github"
  3046. },
  3047. {
  3048. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3049. "type": "tidelift"
  3050. }
  3051. ],
  3052. "time": "2022-11-03T14:55:06+00:00"
  3053. },
  3054. {
  3055. "name": "symfony/process",
  3056. "version": "v4.4.44",
  3057. "source": {
  3058. "type": "git",
  3059. "url": "https://github.com/symfony/process.git",
  3060. "reference": "5cee9cdc4f7805e2699d9fd66991a0e6df8252a2"
  3061. },
  3062. "dist": {
  3063. "type": "zip",
  3064. "url": "https://api.github.com/repos/symfony/process/zipball/5cee9cdc4f7805e2699d9fd66991a0e6df8252a2",
  3065. "reference": "5cee9cdc4f7805e2699d9fd66991a0e6df8252a2",
  3066. "shasum": ""
  3067. },
  3068. "require": {
  3069. "php": ">=7.1.3",
  3070. "symfony/polyfill-php80": "^1.16"
  3071. },
  3072. "type": "library",
  3073. "autoload": {
  3074. "psr-4": {
  3075. "Symfony\\Component\\Process\\": ""
  3076. },
  3077. "exclude-from-classmap": [
  3078. "/Tests/"
  3079. ]
  3080. },
  3081. "notification-url": "https://packagist.org/downloads/",
  3082. "license": [
  3083. "MIT"
  3084. ],
  3085. "authors": [
  3086. {
  3087. "name": "Fabien Potencier",
  3088. "email": "fabien@symfony.com"
  3089. },
  3090. {
  3091. "name": "Symfony Community",
  3092. "homepage": "https://symfony.com/contributors"
  3093. }
  3094. ],
  3095. "description": "Executes commands in sub-processes",
  3096. "homepage": "https://symfony.com",
  3097. "support": {
  3098. "source": "https://github.com/symfony/process/tree/v4.4.44"
  3099. },
  3100. "funding": [
  3101. {
  3102. "url": "https://symfony.com/sponsor",
  3103. "type": "custom"
  3104. },
  3105. {
  3106. "url": "https://github.com/fabpot",
  3107. "type": "github"
  3108. },
  3109. {
  3110. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3111. "type": "tidelift"
  3112. }
  3113. ],
  3114. "time": "2022-06-27T13:16:42+00:00"
  3115. },
  3116. {
  3117. "name": "symfony/var-dumper",
  3118. "version": "v4.4.47",
  3119. "source": {
  3120. "type": "git",
  3121. "url": "https://github.com/symfony/var-dumper.git",
  3122. "reference": "1069c7a3fca74578022fab6f81643248d02f8e63"
  3123. },
  3124. "dist": {
  3125. "type": "zip",
  3126. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/1069c7a3fca74578022fab6f81643248d02f8e63",
  3127. "reference": "1069c7a3fca74578022fab6f81643248d02f8e63",
  3128. "shasum": ""
  3129. },
  3130. "require": {
  3131. "php": ">=7.1.3",
  3132. "symfony/polyfill-mbstring": "~1.0",
  3133. "symfony/polyfill-php72": "~1.5",
  3134. "symfony/polyfill-php80": "^1.16"
  3135. },
  3136. "conflict": {
  3137. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  3138. "symfony/console": "<3.4"
  3139. },
  3140. "require-dev": {
  3141. "ext-iconv": "*",
  3142. "symfony/console": "^3.4|^4.0|^5.0",
  3143. "symfony/process": "^4.4|^5.0",
  3144. "twig/twig": "^1.43|^2.13|^3.0.4"
  3145. },
  3146. "suggest": {
  3147. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  3148. "ext-intl": "To show region name in time zone dump",
  3149. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  3150. },
  3151. "bin": [
  3152. "Resources/bin/var-dump-server"
  3153. ],
  3154. "type": "library",
  3155. "autoload": {
  3156. "files": [
  3157. "Resources/functions/dump.php"
  3158. ],
  3159. "psr-4": {
  3160. "Symfony\\Component\\VarDumper\\": ""
  3161. },
  3162. "exclude-from-classmap": [
  3163. "/Tests/"
  3164. ]
  3165. },
  3166. "notification-url": "https://packagist.org/downloads/",
  3167. "license": [
  3168. "MIT"
  3169. ],
  3170. "authors": [
  3171. {
  3172. "name": "Nicolas Grekas",
  3173. "email": "p@tchwork.com"
  3174. },
  3175. {
  3176. "name": "Symfony Community",
  3177. "homepage": "https://symfony.com/contributors"
  3178. }
  3179. ],
  3180. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  3181. "homepage": "https://symfony.com",
  3182. "keywords": [
  3183. "debug",
  3184. "dump"
  3185. ],
  3186. "support": {
  3187. "source": "https://github.com/symfony/var-dumper/tree/v4.4.47"
  3188. },
  3189. "funding": [
  3190. {
  3191. "url": "https://symfony.com/sponsor",
  3192. "type": "custom"
  3193. },
  3194. {
  3195. "url": "https://github.com/fabpot",
  3196. "type": "github"
  3197. },
  3198. {
  3199. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3200. "type": "tidelift"
  3201. }
  3202. ],
  3203. "time": "2022-10-03T15:15:11+00:00"
  3204. },
  3205. {
  3206. "name": "symfony/yaml",
  3207. "version": "v4.4.45",
  3208. "source": {
  3209. "type": "git",
  3210. "url": "https://github.com/symfony/yaml.git",
  3211. "reference": "aeccc4dc52a9e634f1d1eebeb21eacfdcff1053d"
  3212. },
  3213. "dist": {
  3214. "type": "zip",
  3215. "url": "https://api.github.com/repos/symfony/yaml/zipball/aeccc4dc52a9e634f1d1eebeb21eacfdcff1053d",
  3216. "reference": "aeccc4dc52a9e634f1d1eebeb21eacfdcff1053d",
  3217. "shasum": ""
  3218. },
  3219. "require": {
  3220. "php": ">=7.1.3",
  3221. "symfony/polyfill-ctype": "~1.8"
  3222. },
  3223. "conflict": {
  3224. "symfony/console": "<3.4"
  3225. },
  3226. "require-dev": {
  3227. "symfony/console": "^3.4|^4.0|^5.0"
  3228. },
  3229. "suggest": {
  3230. "symfony/console": "For validating YAML files using the lint command"
  3231. },
  3232. "type": "library",
  3233. "autoload": {
  3234. "psr-4": {
  3235. "Symfony\\Component\\Yaml\\": ""
  3236. },
  3237. "exclude-from-classmap": [
  3238. "/Tests/"
  3239. ]
  3240. },
  3241. "notification-url": "https://packagist.org/downloads/",
  3242. "license": [
  3243. "MIT"
  3244. ],
  3245. "authors": [
  3246. {
  3247. "name": "Fabien Potencier",
  3248. "email": "fabien@symfony.com"
  3249. },
  3250. {
  3251. "name": "Symfony Community",
  3252. "homepage": "https://symfony.com/contributors"
  3253. }
  3254. ],
  3255. "description": "Loads and dumps YAML files",
  3256. "homepage": "https://symfony.com",
  3257. "support": {
  3258. "source": "https://github.com/symfony/yaml/tree/v4.4.45"
  3259. },
  3260. "funding": [
  3261. {
  3262. "url": "https://symfony.com/sponsor",
  3263. "type": "custom"
  3264. },
  3265. {
  3266. "url": "https://github.com/fabpot",
  3267. "type": "github"
  3268. },
  3269. {
  3270. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3271. "type": "tidelift"
  3272. }
  3273. ],
  3274. "time": "2022-08-02T15:47:23+00:00"
  3275. },
  3276. {
  3277. "name": "twig/twig",
  3278. "version": "v1.44.7",
  3279. "source": {
  3280. "type": "git",
  3281. "url": "https://github.com/twigphp/Twig.git",
  3282. "reference": "0887422319889e442458e48e2f3d9add1a172ad5"
  3283. },
  3284. "dist": {
  3285. "type": "zip",
  3286. "url": "https://api.github.com/repos/twigphp/Twig/zipball/0887422319889e442458e48e2f3d9add1a172ad5",
  3287. "reference": "0887422319889e442458e48e2f3d9add1a172ad5",
  3288. "shasum": ""
  3289. },
  3290. "require": {
  3291. "php": ">=7.2.5",
  3292. "symfony/polyfill-ctype": "^1.8"
  3293. },
  3294. "require-dev": {
  3295. "psr/container": "^1.0",
  3296. "symfony/phpunit-bridge": "^4.4.9|^5.0.9"
  3297. },
  3298. "type": "library",
  3299. "extra": {
  3300. "branch-alias": {
  3301. "dev-master": "1.44-dev"
  3302. }
  3303. },
  3304. "autoload": {
  3305. "psr-0": {
  3306. "Twig_": "lib/"
  3307. },
  3308. "psr-4": {
  3309. "Twig\\": "src/"
  3310. }
  3311. },
  3312. "notification-url": "https://packagist.org/downloads/",
  3313. "license": [
  3314. "BSD-3-Clause"
  3315. ],
  3316. "authors": [
  3317. {
  3318. "name": "Fabien Potencier",
  3319. "email": "fabien@symfony.com",
  3320. "homepage": "http://fabien.potencier.org",
  3321. "role": "Lead Developer"
  3322. },
  3323. {
  3324. "name": "Twig Team",
  3325. "role": "Contributors"
  3326. },
  3327. {
  3328. "name": "Armin Ronacher",
  3329. "email": "armin.ronacher@active-4.com",
  3330. "role": "Project Founder"
  3331. }
  3332. ],
  3333. "description": "Twig, the flexible, fast, and secure template language for PHP",
  3334. "homepage": "https://twig.symfony.com",
  3335. "keywords": [
  3336. "templating"
  3337. ],
  3338. "support": {
  3339. "issues": "https://github.com/twigphp/Twig/issues",
  3340. "source": "https://github.com/twigphp/Twig/tree/v1.44.7"
  3341. },
  3342. "funding": [
  3343. {
  3344. "url": "https://github.com/fabpot",
  3345. "type": "github"
  3346. },
  3347. {
  3348. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  3349. "type": "tidelift"
  3350. }
  3351. ],
  3352. "time": "2022-09-28T08:38:36+00:00"
  3353. },
  3354. {
  3355. "name": "willdurand/negotiation",
  3356. "version": "3.1.0",
  3357. "source": {
  3358. "type": "git",
  3359. "url": "https://github.com/willdurand/Negotiation.git",
  3360. "reference": "68e9ea0553ef6e2ee8db5c1d98829f111e623ec2"
  3361. },
  3362. "dist": {
  3363. "type": "zip",
  3364. "url": "https://api.github.com/repos/willdurand/Negotiation/zipball/68e9ea0553ef6e2ee8db5c1d98829f111e623ec2",
  3365. "reference": "68e9ea0553ef6e2ee8db5c1d98829f111e623ec2",
  3366. "shasum": ""
  3367. },
  3368. "require": {
  3369. "php": ">=7.1.0"
  3370. },
  3371. "require-dev": {
  3372. "symfony/phpunit-bridge": "^5.0"
  3373. },
  3374. "type": "library",
  3375. "extra": {
  3376. "branch-alias": {
  3377. "dev-master": "3.0-dev"
  3378. }
  3379. },
  3380. "autoload": {
  3381. "psr-4": {
  3382. "Negotiation\\": "src/Negotiation"
  3383. }
  3384. },
  3385. "notification-url": "https://packagist.org/downloads/",
  3386. "license": [
  3387. "MIT"
  3388. ],
  3389. "authors": [
  3390. {
  3391. "name": "William Durand",
  3392. "email": "will+git@drnd.me"
  3393. }
  3394. ],
  3395. "description": "Content Negotiation tools for PHP provided as a standalone library.",
  3396. "homepage": "http://williamdurand.fr/Negotiation/",
  3397. "keywords": [
  3398. "accept",
  3399. "content",
  3400. "format",
  3401. "header",
  3402. "negotiation"
  3403. ],
  3404. "support": {
  3405. "issues": "https://github.com/willdurand/Negotiation/issues",
  3406. "source": "https://github.com/willdurand/Negotiation/tree/3.1.0"
  3407. },
  3408. "time": "2022-01-30T20:08:53+00:00"
  3409. }
  3410. ],
  3411. "packages-dev": [
  3412. {
  3413. "name": "behat/gherkin",
  3414. "version": "v4.9.0",
  3415. "source": {
  3416. "type": "git",
  3417. "url": "https://github.com/Behat/Gherkin.git",
  3418. "reference": "0bc8d1e30e96183e4f36db9dc79caead300beff4"
  3419. },
  3420. "dist": {
  3421. "type": "zip",
  3422. "url": "https://api.github.com/repos/Behat/Gherkin/zipball/0bc8d1e30e96183e4f36db9dc79caead300beff4",
  3423. "reference": "0bc8d1e30e96183e4f36db9dc79caead300beff4",
  3424. "shasum": ""
  3425. },
  3426. "require": {
  3427. "php": "~7.2|~8.0"
  3428. },
  3429. "require-dev": {
  3430. "cucumber/cucumber": "dev-gherkin-22.0.0",
  3431. "phpunit/phpunit": "~8|~9",
  3432. "symfony/yaml": "~3|~4|~5"
  3433. },
  3434. "suggest": {
  3435. "symfony/yaml": "If you want to parse features, represented in YAML files"
  3436. },
  3437. "type": "library",
  3438. "extra": {
  3439. "branch-alias": {
  3440. "dev-master": "4.x-dev"
  3441. }
  3442. },
  3443. "autoload": {
  3444. "psr-0": {
  3445. "Behat\\Gherkin": "src/"
  3446. }
  3447. },
  3448. "notification-url": "https://packagist.org/downloads/",
  3449. "license": [
  3450. "MIT"
  3451. ],
  3452. "authors": [
  3453. {
  3454. "name": "Konstantin Kudryashov",
  3455. "email": "ever.zet@gmail.com",
  3456. "homepage": "http://everzet.com"
  3457. }
  3458. ],
  3459. "description": "Gherkin DSL parser for PHP",
  3460. "homepage": "http://behat.org/",
  3461. "keywords": [
  3462. "BDD",
  3463. "Behat",
  3464. "Cucumber",
  3465. "DSL",
  3466. "gherkin",
  3467. "parser"
  3468. ],
  3469. "support": {
  3470. "issues": "https://github.com/Behat/Gherkin/issues",
  3471. "source": "https://github.com/Behat/Gherkin/tree/v4.9.0"
  3472. },
  3473. "time": "2021-10-12T13:05:09+00:00"
  3474. },
  3475. {
  3476. "name": "codeception/codeception",
  3477. "version": "4.2.2",
  3478. "source": {
  3479. "type": "git",
  3480. "url": "https://github.com/Codeception/Codeception.git",
  3481. "reference": "b88014f3348c93f3df99dc6d0967b0dbfa804474"
  3482. },
  3483. "dist": {
  3484. "type": "zip",
  3485. "url": "https://api.github.com/repos/Codeception/Codeception/zipball/b88014f3348c93f3df99dc6d0967b0dbfa804474",
  3486. "reference": "b88014f3348c93f3df99dc6d0967b0dbfa804474",
  3487. "shasum": ""
  3488. },
  3489. "require": {
  3490. "behat/gherkin": "^4.4.0",
  3491. "codeception/lib-asserts": "^1.0 | 2.0.*@dev",
  3492. "codeception/phpunit-wrapper": ">6.0.15 <6.1.0 | ^6.6.1 | ^7.7.1 | ^8.1.1 | ^9.0",
  3493. "codeception/stub": "^2.0 | ^3.0 | ^4.0",
  3494. "ext-curl": "*",
  3495. "ext-json": "*",
  3496. "ext-mbstring": "*",
  3497. "guzzlehttp/psr7": "^1.4 | ^2.0",
  3498. "php": ">=5.6.0 <9.0",
  3499. "symfony/console": ">=2.7 <6.0",
  3500. "symfony/css-selector": ">=2.7 <6.0",
  3501. "symfony/event-dispatcher": ">=2.7 <6.0",
  3502. "symfony/finder": ">=2.7 <6.0",
  3503. "symfony/yaml": ">=2.7 <6.0"
  3504. },
  3505. "require-dev": {
  3506. "codeception/module-asserts": "^1.0 | 2.0.*@dev",
  3507. "codeception/module-cli": "^1.0 | 2.0.*@dev",
  3508. "codeception/module-db": "^1.0 | 2.0.*@dev",
  3509. "codeception/module-filesystem": "^1.0 | 2.0.*@dev",
  3510. "codeception/module-phpbrowser": "^1.0 | 2.0.*@dev",
  3511. "codeception/specify": "~0.3",
  3512. "codeception/util-universalframework": "*@dev",
  3513. "monolog/monolog": "~1.8",
  3514. "squizlabs/php_codesniffer": "~2.0",
  3515. "symfony/process": ">=2.7 <6.0",
  3516. "vlucas/phpdotenv": "^2.0 | ^3.0 | ^4.0 | ^5.0"
  3517. },
  3518. "suggest": {
  3519. "codeception/specify": "BDD-style code blocks",
  3520. "codeception/verify": "BDD-style assertions",
  3521. "hoa/console": "For interactive console functionality",
  3522. "stecman/symfony-console-completion": "For BASH autocompletion",
  3523. "symfony/phpunit-bridge": "For phpunit-bridge support"
  3524. },
  3525. "bin": [
  3526. "codecept"
  3527. ],
  3528. "type": "library",
  3529. "extra": {
  3530. "branch-alias": []
  3531. },
  3532. "autoload": {
  3533. "files": [
  3534. "functions.php"
  3535. ],
  3536. "psr-4": {
  3537. "Codeception\\": "src/Codeception",
  3538. "Codeception\\Extension\\": "ext"
  3539. }
  3540. },
  3541. "notification-url": "https://packagist.org/downloads/",
  3542. "license": [
  3543. "MIT"
  3544. ],
  3545. "authors": [
  3546. {
  3547. "name": "Michael Bodnarchuk",
  3548. "email": "davert@mail.ua",
  3549. "homepage": "https://codegyre.com"
  3550. }
  3551. ],
  3552. "description": "BDD-style testing framework",
  3553. "homepage": "https://codeception.com/",
  3554. "keywords": [
  3555. "BDD",
  3556. "TDD",
  3557. "acceptance testing",
  3558. "functional testing",
  3559. "unit testing"
  3560. ],
  3561. "support": {
  3562. "issues": "https://github.com/Codeception/Codeception/issues",
  3563. "source": "https://github.com/Codeception/Codeception/tree/4.2.2"
  3564. },
  3565. "funding": [
  3566. {
  3567. "url": "https://opencollective.com/codeception",
  3568. "type": "open_collective"
  3569. }
  3570. ],
  3571. "time": "2022-08-13T13:28:25+00:00"
  3572. },
  3573. {
  3574. "name": "codeception/lib-asserts",
  3575. "version": "1.13.2",
  3576. "source": {
  3577. "type": "git",
  3578. "url": "https://github.com/Codeception/lib-asserts.git",
  3579. "reference": "184231d5eab66bc69afd6b9429344d80c67a33b6"
  3580. },
  3581. "dist": {
  3582. "type": "zip",
  3583. "url": "https://api.github.com/repos/Codeception/lib-asserts/zipball/184231d5eab66bc69afd6b9429344d80c67a33b6",
  3584. "reference": "184231d5eab66bc69afd6b9429344d80c67a33b6",
  3585. "shasum": ""
  3586. },
  3587. "require": {
  3588. "codeception/phpunit-wrapper": ">6.0.15 <6.1.0 | ^6.6.1 | ^7.7.1 | ^8.0.3 | ^9.0",
  3589. "ext-dom": "*",
  3590. "php": ">=5.6.0 <9.0"
  3591. },
  3592. "type": "library",
  3593. "autoload": {
  3594. "classmap": [
  3595. "src/"
  3596. ]
  3597. },
  3598. "notification-url": "https://packagist.org/downloads/",
  3599. "license": [
  3600. "MIT"
  3601. ],
  3602. "authors": [
  3603. {
  3604. "name": "Michael Bodnarchuk",
  3605. "email": "davert@mail.ua",
  3606. "homepage": "http://codegyre.com"
  3607. },
  3608. {
  3609. "name": "Gintautas Miselis"
  3610. },
  3611. {
  3612. "name": "Gustavo Nieves",
  3613. "homepage": "https://medium.com/@ganieves"
  3614. }
  3615. ],
  3616. "description": "Assertion methods used by Codeception core and Asserts module",
  3617. "homepage": "https://codeception.com/",
  3618. "keywords": [
  3619. "codeception"
  3620. ],
  3621. "support": {
  3622. "issues": "https://github.com/Codeception/lib-asserts/issues",
  3623. "source": "https://github.com/Codeception/lib-asserts/tree/1.13.2"
  3624. },
  3625. "time": "2020-10-21T16:26:20+00:00"
  3626. },
  3627. {
  3628. "name": "codeception/lib-innerbrowser",
  3629. "version": "1.5.1",
  3630. "source": {
  3631. "type": "git",
  3632. "url": "https://github.com/Codeception/lib-innerbrowser.git",
  3633. "reference": "31b4b56ad53c3464fcb2c0a14d55a51a201bd3c2"
  3634. },
  3635. "dist": {
  3636. "type": "zip",
  3637. "url": "https://api.github.com/repos/Codeception/lib-innerbrowser/zipball/31b4b56ad53c3464fcb2c0a14d55a51a201bd3c2",
  3638. "reference": "31b4b56ad53c3464fcb2c0a14d55a51a201bd3c2",
  3639. "shasum": ""
  3640. },
  3641. "require": {
  3642. "codeception/codeception": "4.*@dev",
  3643. "ext-dom": "*",
  3644. "ext-json": "*",
  3645. "ext-mbstring": "*",
  3646. "php": ">=5.6.0 <9.0",
  3647. "symfony/browser-kit": ">=2.7 <6.0",
  3648. "symfony/dom-crawler": ">=2.7 <6.0"
  3649. },
  3650. "conflict": {
  3651. "codeception/codeception": "<4.0"
  3652. },
  3653. "require-dev": {
  3654. "codeception/util-universalframework": "dev-master"
  3655. },
  3656. "type": "library",
  3657. "autoload": {
  3658. "classmap": [
  3659. "src/"
  3660. ]
  3661. },
  3662. "notification-url": "https://packagist.org/downloads/",
  3663. "license": [
  3664. "MIT"
  3665. ],
  3666. "authors": [
  3667. {
  3668. "name": "Michael Bodnarchuk",
  3669. "email": "davert@mail.ua",
  3670. "homepage": "http://codegyre.com"
  3671. },
  3672. {
  3673. "name": "Gintautas Miselis"
  3674. }
  3675. ],
  3676. "description": "Parent library for all Codeception framework modules and PhpBrowser",
  3677. "homepage": "https://codeception.com/",
  3678. "keywords": [
  3679. "codeception"
  3680. ],
  3681. "support": {
  3682. "issues": "https://github.com/Codeception/lib-innerbrowser/issues",
  3683. "source": "https://github.com/Codeception/lib-innerbrowser/tree/1.5.1"
  3684. },
  3685. "time": "2021-08-30T15:21:42+00:00"
  3686. },
  3687. {
  3688. "name": "codeception/module-asserts",
  3689. "version": "1.3.1",
  3690. "source": {
  3691. "type": "git",
  3692. "url": "https://github.com/Codeception/module-asserts.git",
  3693. "reference": "59374f2fef0cabb9e8ddb53277e85cdca74328de"
  3694. },
  3695. "dist": {
  3696. "type": "zip",
  3697. "url": "https://api.github.com/repos/Codeception/module-asserts/zipball/59374f2fef0cabb9e8ddb53277e85cdca74328de",
  3698. "reference": "59374f2fef0cabb9e8ddb53277e85cdca74328de",
  3699. "shasum": ""
  3700. },
  3701. "require": {
  3702. "codeception/codeception": "*@dev",
  3703. "codeception/lib-asserts": "^1.13.1",
  3704. "php": ">=5.6.0 <9.0"
  3705. },
  3706. "conflict": {
  3707. "codeception/codeception": "<4.0"
  3708. },
  3709. "type": "library",
  3710. "autoload": {
  3711. "classmap": [
  3712. "src/"
  3713. ]
  3714. },
  3715. "notification-url": "https://packagist.org/downloads/",
  3716. "license": [
  3717. "MIT"
  3718. ],
  3719. "authors": [
  3720. {
  3721. "name": "Michael Bodnarchuk"
  3722. },
  3723. {
  3724. "name": "Gintautas Miselis"
  3725. },
  3726. {
  3727. "name": "Gustavo Nieves",
  3728. "homepage": "https://medium.com/@ganieves"
  3729. }
  3730. ],
  3731. "description": "Codeception module containing various assertions",
  3732. "homepage": "https://codeception.com/",
  3733. "keywords": [
  3734. "assertions",
  3735. "asserts",
  3736. "codeception"
  3737. ],
  3738. "support": {
  3739. "issues": "https://github.com/Codeception/module-asserts/issues",
  3740. "source": "https://github.com/Codeception/module-asserts/tree/1.3.1"
  3741. },
  3742. "time": "2020-10-21T16:48:15+00:00"
  3743. },
  3744. {
  3745. "name": "codeception/module-phpbrowser",
  3746. "version": "1.0.3",
  3747. "source": {
  3748. "type": "git",
  3749. "url": "https://github.com/Codeception/module-phpbrowser.git",
  3750. "reference": "8ba6bede11d0914e74d98691f427fd8f397f192e"
  3751. },
  3752. "dist": {
  3753. "type": "zip",
  3754. "url": "https://api.github.com/repos/Codeception/module-phpbrowser/zipball/8ba6bede11d0914e74d98691f427fd8f397f192e",
  3755. "reference": "8ba6bede11d0914e74d98691f427fd8f397f192e",
  3756. "shasum": ""
  3757. },
  3758. "require": {
  3759. "codeception/codeception": "^4.1",
  3760. "codeception/lib-innerbrowser": "^1.3",
  3761. "guzzlehttp/guzzle": "^6.3|^7.0",
  3762. "php": ">=5.6.0 <9.0"
  3763. },
  3764. "conflict": {
  3765. "codeception/codeception": "<4.0"
  3766. },
  3767. "require-dev": {
  3768. "codeception/module-rest": "^1.0"
  3769. },
  3770. "suggest": {
  3771. "codeception/phpbuiltinserver": "Start and stop PHP built-in web server for your tests"
  3772. },
  3773. "type": "library",
  3774. "autoload": {
  3775. "classmap": [
  3776. "src/"
  3777. ]
  3778. },
  3779. "notification-url": "https://packagist.org/downloads/",
  3780. "license": [
  3781. "MIT"
  3782. ],
  3783. "authors": [
  3784. {
  3785. "name": "Michael Bodnarchuk"
  3786. },
  3787. {
  3788. "name": "Gintautas Miselis"
  3789. }
  3790. ],
  3791. "description": "Codeception module for testing web application over HTTP",
  3792. "homepage": "http://codeception.com/",
  3793. "keywords": [
  3794. "codeception",
  3795. "functional-testing",
  3796. "http"
  3797. ],
  3798. "support": {
  3799. "issues": "https://github.com/Codeception/module-phpbrowser/issues",
  3800. "source": "https://github.com/Codeception/module-phpbrowser/tree/1.0.3"
  3801. },
  3802. "time": "2022-05-21T13:50:41+00:00"
  3803. },
  3804. {
  3805. "name": "codeception/phpunit-wrapper",
  3806. "version": "9.0.9",
  3807. "source": {
  3808. "type": "git",
  3809. "url": "https://github.com/Codeception/phpunit-wrapper.git",
  3810. "reference": "7439a53ae367986e9c22b2ac00f9d7376bb2f8cf"
  3811. },
  3812. "dist": {
  3813. "type": "zip",
  3814. "url": "https://api.github.com/repos/Codeception/phpunit-wrapper/zipball/7439a53ae367986e9c22b2ac00f9d7376bb2f8cf",
  3815. "reference": "7439a53ae367986e9c22b2ac00f9d7376bb2f8cf",
  3816. "shasum": ""
  3817. },
  3818. "require": {
  3819. "php": ">=7.2",
  3820. "phpunit/phpunit": "^9.0"
  3821. },
  3822. "require-dev": {
  3823. "codeception/specify": "*",
  3824. "consolidation/robo": "^3.0.0-alpha3",
  3825. "vlucas/phpdotenv": "^3.0"
  3826. },
  3827. "type": "library",
  3828. "autoload": {
  3829. "psr-4": {
  3830. "Codeception\\PHPUnit\\": "src/"
  3831. }
  3832. },
  3833. "notification-url": "https://packagist.org/downloads/",
  3834. "license": [
  3835. "MIT"
  3836. ],
  3837. "authors": [
  3838. {
  3839. "name": "Davert",
  3840. "email": "davert.php@resend.cc"
  3841. },
  3842. {
  3843. "name": "Naktibalda"
  3844. }
  3845. ],
  3846. "description": "PHPUnit classes used by Codeception",
  3847. "support": {
  3848. "issues": "https://github.com/Codeception/phpunit-wrapper/issues",
  3849. "source": "https://github.com/Codeception/phpunit-wrapper/tree/9.0.9"
  3850. },
  3851. "time": "2022-05-23T06:24:11+00:00"
  3852. },
  3853. {
  3854. "name": "codeception/stub",
  3855. "version": "3.7.0",
  3856. "source": {
  3857. "type": "git",
  3858. "url": "https://github.com/Codeception/Stub.git",
  3859. "reference": "468dd5fe659f131fc997f5196aad87512f9b1304"
  3860. },
  3861. "dist": {
  3862. "type": "zip",
  3863. "url": "https://api.github.com/repos/Codeception/Stub/zipball/468dd5fe659f131fc997f5196aad87512f9b1304",
  3864. "reference": "468dd5fe659f131fc997f5196aad87512f9b1304",
  3865. "shasum": ""
  3866. },
  3867. "require": {
  3868. "phpunit/phpunit": "^8.4 | ^9.0"
  3869. },
  3870. "type": "library",
  3871. "autoload": {
  3872. "psr-4": {
  3873. "Codeception\\": "src/"
  3874. }
  3875. },
  3876. "notification-url": "https://packagist.org/downloads/",
  3877. "license": [
  3878. "MIT"
  3879. ],
  3880. "description": "Flexible Stub wrapper for PHPUnit's Mock Builder",
  3881. "support": {
  3882. "issues": "https://github.com/Codeception/Stub/issues",
  3883. "source": "https://github.com/Codeception/Stub/tree/3.7.0"
  3884. },
  3885. "time": "2020-07-03T15:54:43+00:00"
  3886. },
  3887. {
  3888. "name": "doctrine/instantiator",
  3889. "version": "1.5.0",
  3890. "source": {
  3891. "type": "git",
  3892. "url": "https://github.com/doctrine/instantiator.git",
  3893. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  3894. },
  3895. "dist": {
  3896. "type": "zip",
  3897. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  3898. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  3899. "shasum": ""
  3900. },
  3901. "require": {
  3902. "php": "^7.1 || ^8.0"
  3903. },
  3904. "require-dev": {
  3905. "doctrine/coding-standard": "^9 || ^11",
  3906. "ext-pdo": "*",
  3907. "ext-phar": "*",
  3908. "phpbench/phpbench": "^0.16 || ^1",
  3909. "phpstan/phpstan": "^1.4",
  3910. "phpstan/phpstan-phpunit": "^1",
  3911. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  3912. "vimeo/psalm": "^4.30 || ^5.4"
  3913. },
  3914. "type": "library",
  3915. "autoload": {
  3916. "psr-4": {
  3917. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  3918. }
  3919. },
  3920. "notification-url": "https://packagist.org/downloads/",
  3921. "license": [
  3922. "MIT"
  3923. ],
  3924. "authors": [
  3925. {
  3926. "name": "Marco Pivetta",
  3927. "email": "ocramius@gmail.com",
  3928. "homepage": "https://ocramius.github.io/"
  3929. }
  3930. ],
  3931. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  3932. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  3933. "keywords": [
  3934. "constructor",
  3935. "instantiate"
  3936. ],
  3937. "support": {
  3938. "issues": "https://github.com/doctrine/instantiator/issues",
  3939. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  3940. },
  3941. "funding": [
  3942. {
  3943. "url": "https://www.doctrine-project.org/sponsorship.html",
  3944. "type": "custom"
  3945. },
  3946. {
  3947. "url": "https://www.patreon.com/phpdoctrine",
  3948. "type": "patreon"
  3949. },
  3950. {
  3951. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  3952. "type": "tidelift"
  3953. }
  3954. ],
  3955. "time": "2022-12-30T00:15:36+00:00"
  3956. },
  3957. {
  3958. "name": "getgrav/markdowndocs",
  3959. "version": "2.0.1",
  3960. "source": {
  3961. "type": "git",
  3962. "url": "https://github.com/getgrav/PHP-Markdown-Documentation-Generator.git",
  3963. "reference": "4a24d1b64a88da17e8f1696dc64969f5ca769064"
  3964. },
  3965. "dist": {
  3966. "type": "zip",
  3967. "url": "https://api.github.com/repos/getgrav/PHP-Markdown-Documentation-Generator/zipball/4a24d1b64a88da17e8f1696dc64969f5ca769064",
  3968. "reference": "4a24d1b64a88da17e8f1696dc64969f5ca769064",
  3969. "shasum": ""
  3970. },
  3971. "require": {
  3972. "php": ">=5.5.0",
  3973. "symfony/console": ">=2.6"
  3974. },
  3975. "require-dev": {
  3976. "phpunit/phpunit": "3.7.23"
  3977. },
  3978. "bin": [
  3979. "bin/phpdoc-md"
  3980. ],
  3981. "type": "library",
  3982. "autoload": {
  3983. "psr-0": {
  3984. "PHPDocsMD": "src/"
  3985. }
  3986. },
  3987. "notification-url": "https://packagist.org/downloads/",
  3988. "license": [
  3989. "MIT"
  3990. ],
  3991. "authors": [
  3992. {
  3993. "name": "Victor Jonsson",
  3994. "email": "kontakt@victorjonsson.se"
  3995. },
  3996. {
  3997. "name": "Grav CMS",
  3998. "email": "hello@getgrav.org",
  3999. "homepage": "https://getgrav.org"
  4000. }
  4001. ],
  4002. "description": "Command line tool for generating markdown-formatted class documentation",
  4003. "homepage": "https://github.com/victorjonsson/PHP-Markdown-Documentation-Generator",
  4004. "support": {
  4005. "source": "https://github.com/getgrav/PHP-Markdown-Documentation-Generator/tree/2.0.1"
  4006. },
  4007. "time": "2021-04-20T06:04:42+00:00"
  4008. },
  4009. {
  4010. "name": "guzzlehttp/guzzle",
  4011. "version": "7.7.0",
  4012. "source": {
  4013. "type": "git",
  4014. "url": "https://github.com/guzzle/guzzle.git",
  4015. "reference": "fb7566caccf22d74d1ab270de3551f72a58399f5"
  4016. },
  4017. "dist": {
  4018. "type": "zip",
  4019. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/fb7566caccf22d74d1ab270de3551f72a58399f5",
  4020. "reference": "fb7566caccf22d74d1ab270de3551f72a58399f5",
  4021. "shasum": ""
  4022. },
  4023. "require": {
  4024. "ext-json": "*",
  4025. "guzzlehttp/promises": "^1.5.3 || ^2.0",
  4026. "guzzlehttp/psr7": "^1.9.1 || ^2.4.5",
  4027. "php": "^7.2.5 || ^8.0",
  4028. "psr/http-client": "^1.0",
  4029. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  4030. },
  4031. "provide": {
  4032. "psr/http-client-implementation": "1.0"
  4033. },
  4034. "require-dev": {
  4035. "bamarni/composer-bin-plugin": "^1.8.1",
  4036. "ext-curl": "*",
  4037. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  4038. "php-http/message-factory": "^1.1",
  4039. "phpunit/phpunit": "^8.5.29 || ^9.5.23",
  4040. "psr/log": "^1.1 || ^2.0 || ^3.0"
  4041. },
  4042. "suggest": {
  4043. "ext-curl": "Required for CURL handler support",
  4044. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  4045. "psr/log": "Required for using the Log middleware"
  4046. },
  4047. "type": "library",
  4048. "extra": {
  4049. "bamarni-bin": {
  4050. "bin-links": true,
  4051. "forward-command": false
  4052. }
  4053. },
  4054. "autoload": {
  4055. "files": [
  4056. "src/functions_include.php"
  4057. ],
  4058. "psr-4": {
  4059. "GuzzleHttp\\": "src/"
  4060. }
  4061. },
  4062. "notification-url": "https://packagist.org/downloads/",
  4063. "license": [
  4064. "MIT"
  4065. ],
  4066. "authors": [
  4067. {
  4068. "name": "Graham Campbell",
  4069. "email": "hello@gjcampbell.co.uk",
  4070. "homepage": "https://github.com/GrahamCampbell"
  4071. },
  4072. {
  4073. "name": "Michael Dowling",
  4074. "email": "mtdowling@gmail.com",
  4075. "homepage": "https://github.com/mtdowling"
  4076. },
  4077. {
  4078. "name": "Jeremy Lindblom",
  4079. "email": "jeremeamia@gmail.com",
  4080. "homepage": "https://github.com/jeremeamia"
  4081. },
  4082. {
  4083. "name": "George Mponos",
  4084. "email": "gmponos@gmail.com",
  4085. "homepage": "https://github.com/gmponos"
  4086. },
  4087. {
  4088. "name": "Tobias Nyholm",
  4089. "email": "tobias.nyholm@gmail.com",
  4090. "homepage": "https://github.com/Nyholm"
  4091. },
  4092. {
  4093. "name": "Márk Sági-Kazár",
  4094. "email": "mark.sagikazar@gmail.com",
  4095. "homepage": "https://github.com/sagikazarmark"
  4096. },
  4097. {
  4098. "name": "Tobias Schultze",
  4099. "email": "webmaster@tubo-world.de",
  4100. "homepage": "https://github.com/Tobion"
  4101. }
  4102. ],
  4103. "description": "Guzzle is a PHP HTTP client library",
  4104. "keywords": [
  4105. "client",
  4106. "curl",
  4107. "framework",
  4108. "http",
  4109. "http client",
  4110. "psr-18",
  4111. "psr-7",
  4112. "rest",
  4113. "web service"
  4114. ],
  4115. "support": {
  4116. "issues": "https://github.com/guzzle/guzzle/issues",
  4117. "source": "https://github.com/guzzle/guzzle/tree/7.7.0"
  4118. },
  4119. "funding": [
  4120. {
  4121. "url": "https://github.com/GrahamCampbell",
  4122. "type": "github"
  4123. },
  4124. {
  4125. "url": "https://github.com/Nyholm",
  4126. "type": "github"
  4127. },
  4128. {
  4129. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  4130. "type": "tidelift"
  4131. }
  4132. ],
  4133. "time": "2023-05-21T14:04:53+00:00"
  4134. },
  4135. {
  4136. "name": "guzzlehttp/promises",
  4137. "version": "2.0.0",
  4138. "source": {
  4139. "type": "git",
  4140. "url": "https://github.com/guzzle/promises.git",
  4141. "reference": "3a494dc7dc1d7d12e511890177ae2d0e6c107da6"
  4142. },
  4143. "dist": {
  4144. "type": "zip",
  4145. "url": "https://api.github.com/repos/guzzle/promises/zipball/3a494dc7dc1d7d12e511890177ae2d0e6c107da6",
  4146. "reference": "3a494dc7dc1d7d12e511890177ae2d0e6c107da6",
  4147. "shasum": ""
  4148. },
  4149. "require": {
  4150. "php": "^7.2.5 || ^8.0"
  4151. },
  4152. "require-dev": {
  4153. "bamarni/composer-bin-plugin": "^1.8.1",
  4154. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  4155. },
  4156. "type": "library",
  4157. "extra": {
  4158. "bamarni-bin": {
  4159. "bin-links": true,
  4160. "forward-command": false
  4161. }
  4162. },
  4163. "autoload": {
  4164. "psr-4": {
  4165. "GuzzleHttp\\Promise\\": "src/"
  4166. }
  4167. },
  4168. "notification-url": "https://packagist.org/downloads/",
  4169. "license": [
  4170. "MIT"
  4171. ],
  4172. "authors": [
  4173. {
  4174. "name": "Graham Campbell",
  4175. "email": "hello@gjcampbell.co.uk",
  4176. "homepage": "https://github.com/GrahamCampbell"
  4177. },
  4178. {
  4179. "name": "Michael Dowling",
  4180. "email": "mtdowling@gmail.com",
  4181. "homepage": "https://github.com/mtdowling"
  4182. },
  4183. {
  4184. "name": "Tobias Nyholm",
  4185. "email": "tobias.nyholm@gmail.com",
  4186. "homepage": "https://github.com/Nyholm"
  4187. },
  4188. {
  4189. "name": "Tobias Schultze",
  4190. "email": "webmaster@tubo-world.de",
  4191. "homepage": "https://github.com/Tobion"
  4192. }
  4193. ],
  4194. "description": "Guzzle promises library",
  4195. "keywords": [
  4196. "promise"
  4197. ],
  4198. "support": {
  4199. "issues": "https://github.com/guzzle/promises/issues",
  4200. "source": "https://github.com/guzzle/promises/tree/2.0.0"
  4201. },
  4202. "funding": [
  4203. {
  4204. "url": "https://github.com/GrahamCampbell",
  4205. "type": "github"
  4206. },
  4207. {
  4208. "url": "https://github.com/Nyholm",
  4209. "type": "github"
  4210. },
  4211. {
  4212. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  4213. "type": "tidelift"
  4214. }
  4215. ],
  4216. "time": "2023-05-21T13:50:22+00:00"
  4217. },
  4218. {
  4219. "name": "myclabs/deep-copy",
  4220. "version": "1.11.1",
  4221. "source": {
  4222. "type": "git",
  4223. "url": "https://github.com/myclabs/DeepCopy.git",
  4224. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  4225. },
  4226. "dist": {
  4227. "type": "zip",
  4228. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  4229. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  4230. "shasum": ""
  4231. },
  4232. "require": {
  4233. "php": "^7.1 || ^8.0"
  4234. },
  4235. "conflict": {
  4236. "doctrine/collections": "<1.6.8",
  4237. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  4238. },
  4239. "require-dev": {
  4240. "doctrine/collections": "^1.6.8",
  4241. "doctrine/common": "^2.13.3 || ^3.2.2",
  4242. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  4243. },
  4244. "type": "library",
  4245. "autoload": {
  4246. "files": [
  4247. "src/DeepCopy/deep_copy.php"
  4248. ],
  4249. "psr-4": {
  4250. "DeepCopy\\": "src/DeepCopy/"
  4251. }
  4252. },
  4253. "notification-url": "https://packagist.org/downloads/",
  4254. "license": [
  4255. "MIT"
  4256. ],
  4257. "description": "Create deep copies (clones) of your objects",
  4258. "keywords": [
  4259. "clone",
  4260. "copy",
  4261. "duplicate",
  4262. "object",
  4263. "object graph"
  4264. ],
  4265. "support": {
  4266. "issues": "https://github.com/myclabs/DeepCopy/issues",
  4267. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  4268. },
  4269. "funding": [
  4270. {
  4271. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  4272. "type": "tidelift"
  4273. }
  4274. ],
  4275. "time": "2023-03-08T13:26:56+00:00"
  4276. },
  4277. {
  4278. "name": "nikic/php-parser",
  4279. "version": "v4.15.5",
  4280. "source": {
  4281. "type": "git",
  4282. "url": "https://github.com/nikic/PHP-Parser.git",
  4283. "reference": "11e2663a5bc9db5d714eedb4277ee300403b4a9e"
  4284. },
  4285. "dist": {
  4286. "type": "zip",
  4287. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/11e2663a5bc9db5d714eedb4277ee300403b4a9e",
  4288. "reference": "11e2663a5bc9db5d714eedb4277ee300403b4a9e",
  4289. "shasum": ""
  4290. },
  4291. "require": {
  4292. "ext-tokenizer": "*",
  4293. "php": ">=7.0"
  4294. },
  4295. "require-dev": {
  4296. "ircmaxell/php-yacc": "^0.0.7",
  4297. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  4298. },
  4299. "bin": [
  4300. "bin/php-parse"
  4301. ],
  4302. "type": "library",
  4303. "extra": {
  4304. "branch-alias": {
  4305. "dev-master": "4.9-dev"
  4306. }
  4307. },
  4308. "autoload": {
  4309. "psr-4": {
  4310. "PhpParser\\": "lib/PhpParser"
  4311. }
  4312. },
  4313. "notification-url": "https://packagist.org/downloads/",
  4314. "license": [
  4315. "BSD-3-Clause"
  4316. ],
  4317. "authors": [
  4318. {
  4319. "name": "Nikita Popov"
  4320. }
  4321. ],
  4322. "description": "A PHP parser written in PHP",
  4323. "keywords": [
  4324. "parser",
  4325. "php"
  4326. ],
  4327. "support": {
  4328. "issues": "https://github.com/nikic/PHP-Parser/issues",
  4329. "source": "https://github.com/nikic/PHP-Parser/tree/v4.15.5"
  4330. },
  4331. "time": "2023-05-19T20:20:00+00:00"
  4332. },
  4333. {
  4334. "name": "phar-io/manifest",
  4335. "version": "2.0.3",
  4336. "source": {
  4337. "type": "git",
  4338. "url": "https://github.com/phar-io/manifest.git",
  4339. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  4340. },
  4341. "dist": {
  4342. "type": "zip",
  4343. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  4344. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  4345. "shasum": ""
  4346. },
  4347. "require": {
  4348. "ext-dom": "*",
  4349. "ext-phar": "*",
  4350. "ext-xmlwriter": "*",
  4351. "phar-io/version": "^3.0.1",
  4352. "php": "^7.2 || ^8.0"
  4353. },
  4354. "type": "library",
  4355. "extra": {
  4356. "branch-alias": {
  4357. "dev-master": "2.0.x-dev"
  4358. }
  4359. },
  4360. "autoload": {
  4361. "classmap": [
  4362. "src/"
  4363. ]
  4364. },
  4365. "notification-url": "https://packagist.org/downloads/",
  4366. "license": [
  4367. "BSD-3-Clause"
  4368. ],
  4369. "authors": [
  4370. {
  4371. "name": "Arne Blankerts",
  4372. "email": "arne@blankerts.de",
  4373. "role": "Developer"
  4374. },
  4375. {
  4376. "name": "Sebastian Heuer",
  4377. "email": "sebastian@phpeople.de",
  4378. "role": "Developer"
  4379. },
  4380. {
  4381. "name": "Sebastian Bergmann",
  4382. "email": "sebastian@phpunit.de",
  4383. "role": "Developer"
  4384. }
  4385. ],
  4386. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  4387. "support": {
  4388. "issues": "https://github.com/phar-io/manifest/issues",
  4389. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  4390. },
  4391. "time": "2021-07-20T11:28:43+00:00"
  4392. },
  4393. {
  4394. "name": "phar-io/version",
  4395. "version": "3.2.1",
  4396. "source": {
  4397. "type": "git",
  4398. "url": "https://github.com/phar-io/version.git",
  4399. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  4400. },
  4401. "dist": {
  4402. "type": "zip",
  4403. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  4404. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  4405. "shasum": ""
  4406. },
  4407. "require": {
  4408. "php": "^7.2 || ^8.0"
  4409. },
  4410. "type": "library",
  4411. "autoload": {
  4412. "classmap": [
  4413. "src/"
  4414. ]
  4415. },
  4416. "notification-url": "https://packagist.org/downloads/",
  4417. "license": [
  4418. "BSD-3-Clause"
  4419. ],
  4420. "authors": [
  4421. {
  4422. "name": "Arne Blankerts",
  4423. "email": "arne@blankerts.de",
  4424. "role": "Developer"
  4425. },
  4426. {
  4427. "name": "Sebastian Heuer",
  4428. "email": "sebastian@phpeople.de",
  4429. "role": "Developer"
  4430. },
  4431. {
  4432. "name": "Sebastian Bergmann",
  4433. "email": "sebastian@phpunit.de",
  4434. "role": "Developer"
  4435. }
  4436. ],
  4437. "description": "Library for handling version information and constraints",
  4438. "support": {
  4439. "issues": "https://github.com/phar-io/version/issues",
  4440. "source": "https://github.com/phar-io/version/tree/3.2.1"
  4441. },
  4442. "time": "2022-02-21T01:04:05+00:00"
  4443. },
  4444. {
  4445. "name": "phpstan/phpstan",
  4446. "version": "1.10.19",
  4447. "source": {
  4448. "type": "git",
  4449. "url": "https://github.com/phpstan/phpstan.git",
  4450. "reference": "af5a296ff02610c1bfb4ddfac9fd4a08657b9046"
  4451. },
  4452. "dist": {
  4453. "type": "zip",
  4454. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/af5a296ff02610c1bfb4ddfac9fd4a08657b9046",
  4455. "reference": "af5a296ff02610c1bfb4ddfac9fd4a08657b9046",
  4456. "shasum": ""
  4457. },
  4458. "require": {
  4459. "php": "^7.2|^8.0"
  4460. },
  4461. "conflict": {
  4462. "phpstan/phpstan-shim": "*"
  4463. },
  4464. "bin": [
  4465. "phpstan",
  4466. "phpstan.phar"
  4467. ],
  4468. "type": "library",
  4469. "autoload": {
  4470. "files": [
  4471. "bootstrap.php"
  4472. ]
  4473. },
  4474. "notification-url": "https://packagist.org/downloads/",
  4475. "license": [
  4476. "MIT"
  4477. ],
  4478. "description": "PHPStan - PHP Static Analysis Tool",
  4479. "keywords": [
  4480. "dev",
  4481. "static analysis"
  4482. ],
  4483. "support": {
  4484. "docs": "https://phpstan.org/user-guide/getting-started",
  4485. "forum": "https://github.com/phpstan/phpstan/discussions",
  4486. "issues": "https://github.com/phpstan/phpstan/issues",
  4487. "security": "https://github.com/phpstan/phpstan/security/policy",
  4488. "source": "https://github.com/phpstan/phpstan-src"
  4489. },
  4490. "funding": [
  4491. {
  4492. "url": "https://github.com/ondrejmirtes",
  4493. "type": "github"
  4494. },
  4495. {
  4496. "url": "https://github.com/phpstan",
  4497. "type": "github"
  4498. },
  4499. {
  4500. "url": "https://tidelift.com/funding/github/packagist/phpstan/phpstan",
  4501. "type": "tidelift"
  4502. }
  4503. ],
  4504. "time": "2023-06-14T15:26:58+00:00"
  4505. },
  4506. {
  4507. "name": "phpstan/phpstan-deprecation-rules",
  4508. "version": "1.1.3",
  4509. "source": {
  4510. "type": "git",
  4511. "url": "https://github.com/phpstan/phpstan-deprecation-rules.git",
  4512. "reference": "a22b36b955a2e9a3d39fe533b6c1bb5359f9c319"
  4513. },
  4514. "dist": {
  4515. "type": "zip",
  4516. "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/a22b36b955a2e9a3d39fe533b6c1bb5359f9c319",
  4517. "reference": "a22b36b955a2e9a3d39fe533b6c1bb5359f9c319",
  4518. "shasum": ""
  4519. },
  4520. "require": {
  4521. "php": "^7.2 || ^8.0",
  4522. "phpstan/phpstan": "^1.10"
  4523. },
  4524. "require-dev": {
  4525. "php-parallel-lint/php-parallel-lint": "^1.2",
  4526. "phpstan/phpstan-php-parser": "^1.1",
  4527. "phpstan/phpstan-phpunit": "^1.0",
  4528. "phpunit/phpunit": "^9.5"
  4529. },
  4530. "type": "phpstan-extension",
  4531. "extra": {
  4532. "phpstan": {
  4533. "includes": [
  4534. "rules.neon"
  4535. ]
  4536. }
  4537. },
  4538. "autoload": {
  4539. "psr-4": {
  4540. "PHPStan\\": "src/"
  4541. }
  4542. },
  4543. "notification-url": "https://packagist.org/downloads/",
  4544. "license": [
  4545. "MIT"
  4546. ],
  4547. "description": "PHPStan rules for detecting usage of deprecated classes, methods, properties, constants and traits.",
  4548. "support": {
  4549. "issues": "https://github.com/phpstan/phpstan-deprecation-rules/issues",
  4550. "source": "https://github.com/phpstan/phpstan-deprecation-rules/tree/1.1.3"
  4551. },
  4552. "time": "2023-03-17T07:50:08+00:00"
  4553. },
  4554. {
  4555. "name": "phpunit/php-code-coverage",
  4556. "version": "9.2.26",
  4557. "source": {
  4558. "type": "git",
  4559. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  4560. "reference": "443bc6912c9bd5b409254a40f4b0f4ced7c80ea1"
  4561. },
  4562. "dist": {
  4563. "type": "zip",
  4564. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/443bc6912c9bd5b409254a40f4b0f4ced7c80ea1",
  4565. "reference": "443bc6912c9bd5b409254a40f4b0f4ced7c80ea1",
  4566. "shasum": ""
  4567. },
  4568. "require": {
  4569. "ext-dom": "*",
  4570. "ext-libxml": "*",
  4571. "ext-xmlwriter": "*",
  4572. "nikic/php-parser": "^4.15",
  4573. "php": ">=7.3",
  4574. "phpunit/php-file-iterator": "^3.0.3",
  4575. "phpunit/php-text-template": "^2.0.2",
  4576. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  4577. "sebastian/complexity": "^2.0",
  4578. "sebastian/environment": "^5.1.2",
  4579. "sebastian/lines-of-code": "^1.0.3",
  4580. "sebastian/version": "^3.0.1",
  4581. "theseer/tokenizer": "^1.2.0"
  4582. },
  4583. "require-dev": {
  4584. "phpunit/phpunit": "^9.3"
  4585. },
  4586. "suggest": {
  4587. "ext-pcov": "PHP extension that provides line coverage",
  4588. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  4589. },
  4590. "type": "library",
  4591. "extra": {
  4592. "branch-alias": {
  4593. "dev-master": "9.2-dev"
  4594. }
  4595. },
  4596. "autoload": {
  4597. "classmap": [
  4598. "src/"
  4599. ]
  4600. },
  4601. "notification-url": "https://packagist.org/downloads/",
  4602. "license": [
  4603. "BSD-3-Clause"
  4604. ],
  4605. "authors": [
  4606. {
  4607. "name": "Sebastian Bergmann",
  4608. "email": "sebastian@phpunit.de",
  4609. "role": "lead"
  4610. }
  4611. ],
  4612. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  4613. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  4614. "keywords": [
  4615. "coverage",
  4616. "testing",
  4617. "xunit"
  4618. ],
  4619. "support": {
  4620. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  4621. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.26"
  4622. },
  4623. "funding": [
  4624. {
  4625. "url": "https://github.com/sebastianbergmann",
  4626. "type": "github"
  4627. }
  4628. ],
  4629. "time": "2023-03-06T12:58:08+00:00"
  4630. },
  4631. {
  4632. "name": "phpunit/php-file-iterator",
  4633. "version": "3.0.6",
  4634. "source": {
  4635. "type": "git",
  4636. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  4637. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  4638. },
  4639. "dist": {
  4640. "type": "zip",
  4641. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  4642. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  4643. "shasum": ""
  4644. },
  4645. "require": {
  4646. "php": ">=7.3"
  4647. },
  4648. "require-dev": {
  4649. "phpunit/phpunit": "^9.3"
  4650. },
  4651. "type": "library",
  4652. "extra": {
  4653. "branch-alias": {
  4654. "dev-master": "3.0-dev"
  4655. }
  4656. },
  4657. "autoload": {
  4658. "classmap": [
  4659. "src/"
  4660. ]
  4661. },
  4662. "notification-url": "https://packagist.org/downloads/",
  4663. "license": [
  4664. "BSD-3-Clause"
  4665. ],
  4666. "authors": [
  4667. {
  4668. "name": "Sebastian Bergmann",
  4669. "email": "sebastian@phpunit.de",
  4670. "role": "lead"
  4671. }
  4672. ],
  4673. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  4674. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  4675. "keywords": [
  4676. "filesystem",
  4677. "iterator"
  4678. ],
  4679. "support": {
  4680. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  4681. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  4682. },
  4683. "funding": [
  4684. {
  4685. "url": "https://github.com/sebastianbergmann",
  4686. "type": "github"
  4687. }
  4688. ],
  4689. "time": "2021-12-02T12:48:52+00:00"
  4690. },
  4691. {
  4692. "name": "phpunit/php-invoker",
  4693. "version": "3.1.1",
  4694. "source": {
  4695. "type": "git",
  4696. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  4697. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  4698. },
  4699. "dist": {
  4700. "type": "zip",
  4701. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  4702. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  4703. "shasum": ""
  4704. },
  4705. "require": {
  4706. "php": ">=7.3"
  4707. },
  4708. "require-dev": {
  4709. "ext-pcntl": "*",
  4710. "phpunit/phpunit": "^9.3"
  4711. },
  4712. "suggest": {
  4713. "ext-pcntl": "*"
  4714. },
  4715. "type": "library",
  4716. "extra": {
  4717. "branch-alias": {
  4718. "dev-master": "3.1-dev"
  4719. }
  4720. },
  4721. "autoload": {
  4722. "classmap": [
  4723. "src/"
  4724. ]
  4725. },
  4726. "notification-url": "https://packagist.org/downloads/",
  4727. "license": [
  4728. "BSD-3-Clause"
  4729. ],
  4730. "authors": [
  4731. {
  4732. "name": "Sebastian Bergmann",
  4733. "email": "sebastian@phpunit.de",
  4734. "role": "lead"
  4735. }
  4736. ],
  4737. "description": "Invoke callables with a timeout",
  4738. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  4739. "keywords": [
  4740. "process"
  4741. ],
  4742. "support": {
  4743. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  4744. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  4745. },
  4746. "funding": [
  4747. {
  4748. "url": "https://github.com/sebastianbergmann",
  4749. "type": "github"
  4750. }
  4751. ],
  4752. "time": "2020-09-28T05:58:55+00:00"
  4753. },
  4754. {
  4755. "name": "phpunit/php-text-template",
  4756. "version": "2.0.4",
  4757. "source": {
  4758. "type": "git",
  4759. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  4760. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  4761. },
  4762. "dist": {
  4763. "type": "zip",
  4764. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  4765. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  4766. "shasum": ""
  4767. },
  4768. "require": {
  4769. "php": ">=7.3"
  4770. },
  4771. "require-dev": {
  4772. "phpunit/phpunit": "^9.3"
  4773. },
  4774. "type": "library",
  4775. "extra": {
  4776. "branch-alias": {
  4777. "dev-master": "2.0-dev"
  4778. }
  4779. },
  4780. "autoload": {
  4781. "classmap": [
  4782. "src/"
  4783. ]
  4784. },
  4785. "notification-url": "https://packagist.org/downloads/",
  4786. "license": [
  4787. "BSD-3-Clause"
  4788. ],
  4789. "authors": [
  4790. {
  4791. "name": "Sebastian Bergmann",
  4792. "email": "sebastian@phpunit.de",
  4793. "role": "lead"
  4794. }
  4795. ],
  4796. "description": "Simple template engine.",
  4797. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  4798. "keywords": [
  4799. "template"
  4800. ],
  4801. "support": {
  4802. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  4803. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  4804. },
  4805. "funding": [
  4806. {
  4807. "url": "https://github.com/sebastianbergmann",
  4808. "type": "github"
  4809. }
  4810. ],
  4811. "time": "2020-10-26T05:33:50+00:00"
  4812. },
  4813. {
  4814. "name": "phpunit/php-timer",
  4815. "version": "5.0.3",
  4816. "source": {
  4817. "type": "git",
  4818. "url": "https://github.com/sebastianbergmann/php-timer.git",
  4819. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  4820. },
  4821. "dist": {
  4822. "type": "zip",
  4823. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  4824. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  4825. "shasum": ""
  4826. },
  4827. "require": {
  4828. "php": ">=7.3"
  4829. },
  4830. "require-dev": {
  4831. "phpunit/phpunit": "^9.3"
  4832. },
  4833. "type": "library",
  4834. "extra": {
  4835. "branch-alias": {
  4836. "dev-master": "5.0-dev"
  4837. }
  4838. },
  4839. "autoload": {
  4840. "classmap": [
  4841. "src/"
  4842. ]
  4843. },
  4844. "notification-url": "https://packagist.org/downloads/",
  4845. "license": [
  4846. "BSD-3-Clause"
  4847. ],
  4848. "authors": [
  4849. {
  4850. "name": "Sebastian Bergmann",
  4851. "email": "sebastian@phpunit.de",
  4852. "role": "lead"
  4853. }
  4854. ],
  4855. "description": "Utility class for timing",
  4856. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  4857. "keywords": [
  4858. "timer"
  4859. ],
  4860. "support": {
  4861. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  4862. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  4863. },
  4864. "funding": [
  4865. {
  4866. "url": "https://github.com/sebastianbergmann",
  4867. "type": "github"
  4868. }
  4869. ],
  4870. "time": "2020-10-26T13:16:10+00:00"
  4871. },
  4872. {
  4873. "name": "phpunit/phpunit",
  4874. "version": "9.6.9",
  4875. "source": {
  4876. "type": "git",
  4877. "url": "https://github.com/sebastianbergmann/phpunit.git",
  4878. "reference": "a9aceaf20a682aeacf28d582654a1670d8826778"
  4879. },
  4880. "dist": {
  4881. "type": "zip",
  4882. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/a9aceaf20a682aeacf28d582654a1670d8826778",
  4883. "reference": "a9aceaf20a682aeacf28d582654a1670d8826778",
  4884. "shasum": ""
  4885. },
  4886. "require": {
  4887. "doctrine/instantiator": "^1.3.1 || ^2",
  4888. "ext-dom": "*",
  4889. "ext-json": "*",
  4890. "ext-libxml": "*",
  4891. "ext-mbstring": "*",
  4892. "ext-xml": "*",
  4893. "ext-xmlwriter": "*",
  4894. "myclabs/deep-copy": "^1.10.1",
  4895. "phar-io/manifest": "^2.0.3",
  4896. "phar-io/version": "^3.0.2",
  4897. "php": ">=7.3",
  4898. "phpunit/php-code-coverage": "^9.2.13",
  4899. "phpunit/php-file-iterator": "^3.0.5",
  4900. "phpunit/php-invoker": "^3.1.1",
  4901. "phpunit/php-text-template": "^2.0.3",
  4902. "phpunit/php-timer": "^5.0.2",
  4903. "sebastian/cli-parser": "^1.0.1",
  4904. "sebastian/code-unit": "^1.0.6",
  4905. "sebastian/comparator": "^4.0.8",
  4906. "sebastian/diff": "^4.0.3",
  4907. "sebastian/environment": "^5.1.3",
  4908. "sebastian/exporter": "^4.0.5",
  4909. "sebastian/global-state": "^5.0.1",
  4910. "sebastian/object-enumerator": "^4.0.3",
  4911. "sebastian/resource-operations": "^3.0.3",
  4912. "sebastian/type": "^3.2",
  4913. "sebastian/version": "^3.0.2"
  4914. },
  4915. "suggest": {
  4916. "ext-soap": "To be able to generate mocks based on WSDL files",
  4917. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  4918. },
  4919. "bin": [
  4920. "phpunit"
  4921. ],
  4922. "type": "library",
  4923. "extra": {
  4924. "branch-alias": {
  4925. "dev-master": "9.6-dev"
  4926. }
  4927. },
  4928. "autoload": {
  4929. "files": [
  4930. "src/Framework/Assert/Functions.php"
  4931. ],
  4932. "classmap": [
  4933. "src/"
  4934. ]
  4935. },
  4936. "notification-url": "https://packagist.org/downloads/",
  4937. "license": [
  4938. "BSD-3-Clause"
  4939. ],
  4940. "authors": [
  4941. {
  4942. "name": "Sebastian Bergmann",
  4943. "email": "sebastian@phpunit.de",
  4944. "role": "lead"
  4945. }
  4946. ],
  4947. "description": "The PHP Unit Testing framework.",
  4948. "homepage": "https://phpunit.de/",
  4949. "keywords": [
  4950. "phpunit",
  4951. "testing",
  4952. "xunit"
  4953. ],
  4954. "support": {
  4955. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  4956. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  4957. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.9"
  4958. },
  4959. "funding": [
  4960. {
  4961. "url": "https://phpunit.de/sponsors.html",
  4962. "type": "custom"
  4963. },
  4964. {
  4965. "url": "https://github.com/sebastianbergmann",
  4966. "type": "github"
  4967. },
  4968. {
  4969. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  4970. "type": "tidelift"
  4971. }
  4972. ],
  4973. "time": "2023-06-11T06:13:56+00:00"
  4974. },
  4975. {
  4976. "name": "psr/http-client",
  4977. "version": "1.0.2",
  4978. "source": {
  4979. "type": "git",
  4980. "url": "https://github.com/php-fig/http-client.git",
  4981. "reference": "0955afe48220520692d2d09f7ab7e0f93ffd6a31"
  4982. },
  4983. "dist": {
  4984. "type": "zip",
  4985. "url": "https://api.github.com/repos/php-fig/http-client/zipball/0955afe48220520692d2d09f7ab7e0f93ffd6a31",
  4986. "reference": "0955afe48220520692d2d09f7ab7e0f93ffd6a31",
  4987. "shasum": ""
  4988. },
  4989. "require": {
  4990. "php": "^7.0 || ^8.0",
  4991. "psr/http-message": "^1.0 || ^2.0"
  4992. },
  4993. "type": "library",
  4994. "extra": {
  4995. "branch-alias": {
  4996. "dev-master": "1.0.x-dev"
  4997. }
  4998. },
  4999. "autoload": {
  5000. "psr-4": {
  5001. "Psr\\Http\\Client\\": "src/"
  5002. }
  5003. },
  5004. "notification-url": "https://packagist.org/downloads/",
  5005. "license": [
  5006. "MIT"
  5007. ],
  5008. "authors": [
  5009. {
  5010. "name": "PHP-FIG",
  5011. "homepage": "https://www.php-fig.org/"
  5012. }
  5013. ],
  5014. "description": "Common interface for HTTP clients",
  5015. "homepage": "https://github.com/php-fig/http-client",
  5016. "keywords": [
  5017. "http",
  5018. "http-client",
  5019. "psr",
  5020. "psr-18"
  5021. ],
  5022. "support": {
  5023. "source": "https://github.com/php-fig/http-client/tree/1.0.2"
  5024. },
  5025. "time": "2023-04-10T20:12:12+00:00"
  5026. },
  5027. {
  5028. "name": "sebastian/cli-parser",
  5029. "version": "1.0.1",
  5030. "source": {
  5031. "type": "git",
  5032. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  5033. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  5034. },
  5035. "dist": {
  5036. "type": "zip",
  5037. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  5038. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  5039. "shasum": ""
  5040. },
  5041. "require": {
  5042. "php": ">=7.3"
  5043. },
  5044. "require-dev": {
  5045. "phpunit/phpunit": "^9.3"
  5046. },
  5047. "type": "library",
  5048. "extra": {
  5049. "branch-alias": {
  5050. "dev-master": "1.0-dev"
  5051. }
  5052. },
  5053. "autoload": {
  5054. "classmap": [
  5055. "src/"
  5056. ]
  5057. },
  5058. "notification-url": "https://packagist.org/downloads/",
  5059. "license": [
  5060. "BSD-3-Clause"
  5061. ],
  5062. "authors": [
  5063. {
  5064. "name": "Sebastian Bergmann",
  5065. "email": "sebastian@phpunit.de",
  5066. "role": "lead"
  5067. }
  5068. ],
  5069. "description": "Library for parsing CLI options",
  5070. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  5071. "support": {
  5072. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  5073. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  5074. },
  5075. "funding": [
  5076. {
  5077. "url": "https://github.com/sebastianbergmann",
  5078. "type": "github"
  5079. }
  5080. ],
  5081. "time": "2020-09-28T06:08:49+00:00"
  5082. },
  5083. {
  5084. "name": "sebastian/code-unit",
  5085. "version": "1.0.8",
  5086. "source": {
  5087. "type": "git",
  5088. "url": "https://github.com/sebastianbergmann/code-unit.git",
  5089. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  5090. },
  5091. "dist": {
  5092. "type": "zip",
  5093. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  5094. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  5095. "shasum": ""
  5096. },
  5097. "require": {
  5098. "php": ">=7.3"
  5099. },
  5100. "require-dev": {
  5101. "phpunit/phpunit": "^9.3"
  5102. },
  5103. "type": "library",
  5104. "extra": {
  5105. "branch-alias": {
  5106. "dev-master": "1.0-dev"
  5107. }
  5108. },
  5109. "autoload": {
  5110. "classmap": [
  5111. "src/"
  5112. ]
  5113. },
  5114. "notification-url": "https://packagist.org/downloads/",
  5115. "license": [
  5116. "BSD-3-Clause"
  5117. ],
  5118. "authors": [
  5119. {
  5120. "name": "Sebastian Bergmann",
  5121. "email": "sebastian@phpunit.de",
  5122. "role": "lead"
  5123. }
  5124. ],
  5125. "description": "Collection of value objects that represent the PHP code units",
  5126. "homepage": "https://github.com/sebastianbergmann/code-unit",
  5127. "support": {
  5128. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  5129. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  5130. },
  5131. "funding": [
  5132. {
  5133. "url": "https://github.com/sebastianbergmann",
  5134. "type": "github"
  5135. }
  5136. ],
  5137. "time": "2020-10-26T13:08:54+00:00"
  5138. },
  5139. {
  5140. "name": "sebastian/code-unit-reverse-lookup",
  5141. "version": "2.0.3",
  5142. "source": {
  5143. "type": "git",
  5144. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  5145. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  5146. },
  5147. "dist": {
  5148. "type": "zip",
  5149. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  5150. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  5151. "shasum": ""
  5152. },
  5153. "require": {
  5154. "php": ">=7.3"
  5155. },
  5156. "require-dev": {
  5157. "phpunit/phpunit": "^9.3"
  5158. },
  5159. "type": "library",
  5160. "extra": {
  5161. "branch-alias": {
  5162. "dev-master": "2.0-dev"
  5163. }
  5164. },
  5165. "autoload": {
  5166. "classmap": [
  5167. "src/"
  5168. ]
  5169. },
  5170. "notification-url": "https://packagist.org/downloads/",
  5171. "license": [
  5172. "BSD-3-Clause"
  5173. ],
  5174. "authors": [
  5175. {
  5176. "name": "Sebastian Bergmann",
  5177. "email": "sebastian@phpunit.de"
  5178. }
  5179. ],
  5180. "description": "Looks up which function or method a line of code belongs to",
  5181. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  5182. "support": {
  5183. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  5184. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  5185. },
  5186. "funding": [
  5187. {
  5188. "url": "https://github.com/sebastianbergmann",
  5189. "type": "github"
  5190. }
  5191. ],
  5192. "time": "2020-09-28T05:30:19+00:00"
  5193. },
  5194. {
  5195. "name": "sebastian/comparator",
  5196. "version": "4.0.8",
  5197. "source": {
  5198. "type": "git",
  5199. "url": "https://github.com/sebastianbergmann/comparator.git",
  5200. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  5201. },
  5202. "dist": {
  5203. "type": "zip",
  5204. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  5205. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  5206. "shasum": ""
  5207. },
  5208. "require": {
  5209. "php": ">=7.3",
  5210. "sebastian/diff": "^4.0",
  5211. "sebastian/exporter": "^4.0"
  5212. },
  5213. "require-dev": {
  5214. "phpunit/phpunit": "^9.3"
  5215. },
  5216. "type": "library",
  5217. "extra": {
  5218. "branch-alias": {
  5219. "dev-master": "4.0-dev"
  5220. }
  5221. },
  5222. "autoload": {
  5223. "classmap": [
  5224. "src/"
  5225. ]
  5226. },
  5227. "notification-url": "https://packagist.org/downloads/",
  5228. "license": [
  5229. "BSD-3-Clause"
  5230. ],
  5231. "authors": [
  5232. {
  5233. "name": "Sebastian Bergmann",
  5234. "email": "sebastian@phpunit.de"
  5235. },
  5236. {
  5237. "name": "Jeff Welch",
  5238. "email": "whatthejeff@gmail.com"
  5239. },
  5240. {
  5241. "name": "Volker Dusch",
  5242. "email": "github@wallbash.com"
  5243. },
  5244. {
  5245. "name": "Bernhard Schussek",
  5246. "email": "bschussek@2bepublished.at"
  5247. }
  5248. ],
  5249. "description": "Provides the functionality to compare PHP values for equality",
  5250. "homepage": "https://github.com/sebastianbergmann/comparator",
  5251. "keywords": [
  5252. "comparator",
  5253. "compare",
  5254. "equality"
  5255. ],
  5256. "support": {
  5257. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  5258. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  5259. },
  5260. "funding": [
  5261. {
  5262. "url": "https://github.com/sebastianbergmann",
  5263. "type": "github"
  5264. }
  5265. ],
  5266. "time": "2022-09-14T12:41:17+00:00"
  5267. },
  5268. {
  5269. "name": "sebastian/complexity",
  5270. "version": "2.0.2",
  5271. "source": {
  5272. "type": "git",
  5273. "url": "https://github.com/sebastianbergmann/complexity.git",
  5274. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  5275. },
  5276. "dist": {
  5277. "type": "zip",
  5278. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  5279. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  5280. "shasum": ""
  5281. },
  5282. "require": {
  5283. "nikic/php-parser": "^4.7",
  5284. "php": ">=7.3"
  5285. },
  5286. "require-dev": {
  5287. "phpunit/phpunit": "^9.3"
  5288. },
  5289. "type": "library",
  5290. "extra": {
  5291. "branch-alias": {
  5292. "dev-master": "2.0-dev"
  5293. }
  5294. },
  5295. "autoload": {
  5296. "classmap": [
  5297. "src/"
  5298. ]
  5299. },
  5300. "notification-url": "https://packagist.org/downloads/",
  5301. "license": [
  5302. "BSD-3-Clause"
  5303. ],
  5304. "authors": [
  5305. {
  5306. "name": "Sebastian Bergmann",
  5307. "email": "sebastian@phpunit.de",
  5308. "role": "lead"
  5309. }
  5310. ],
  5311. "description": "Library for calculating the complexity of PHP code units",
  5312. "homepage": "https://github.com/sebastianbergmann/complexity",
  5313. "support": {
  5314. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  5315. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  5316. },
  5317. "funding": [
  5318. {
  5319. "url": "https://github.com/sebastianbergmann",
  5320. "type": "github"
  5321. }
  5322. ],
  5323. "time": "2020-10-26T15:52:27+00:00"
  5324. },
  5325. {
  5326. "name": "sebastian/diff",
  5327. "version": "4.0.5",
  5328. "source": {
  5329. "type": "git",
  5330. "url": "https://github.com/sebastianbergmann/diff.git",
  5331. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131"
  5332. },
  5333. "dist": {
  5334. "type": "zip",
  5335. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  5336. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  5337. "shasum": ""
  5338. },
  5339. "require": {
  5340. "php": ">=7.3"
  5341. },
  5342. "require-dev": {
  5343. "phpunit/phpunit": "^9.3",
  5344. "symfony/process": "^4.2 || ^5"
  5345. },
  5346. "type": "library",
  5347. "extra": {
  5348. "branch-alias": {
  5349. "dev-master": "4.0-dev"
  5350. }
  5351. },
  5352. "autoload": {
  5353. "classmap": [
  5354. "src/"
  5355. ]
  5356. },
  5357. "notification-url": "https://packagist.org/downloads/",
  5358. "license": [
  5359. "BSD-3-Clause"
  5360. ],
  5361. "authors": [
  5362. {
  5363. "name": "Sebastian Bergmann",
  5364. "email": "sebastian@phpunit.de"
  5365. },
  5366. {
  5367. "name": "Kore Nordmann",
  5368. "email": "mail@kore-nordmann.de"
  5369. }
  5370. ],
  5371. "description": "Diff implementation",
  5372. "homepage": "https://github.com/sebastianbergmann/diff",
  5373. "keywords": [
  5374. "diff",
  5375. "udiff",
  5376. "unidiff",
  5377. "unified diff"
  5378. ],
  5379. "support": {
  5380. "issues": "https://github.com/sebastianbergmann/diff/issues",
  5381. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.5"
  5382. },
  5383. "funding": [
  5384. {
  5385. "url": "https://github.com/sebastianbergmann",
  5386. "type": "github"
  5387. }
  5388. ],
  5389. "time": "2023-05-07T05:35:17+00:00"
  5390. },
  5391. {
  5392. "name": "sebastian/environment",
  5393. "version": "5.1.5",
  5394. "source": {
  5395. "type": "git",
  5396. "url": "https://github.com/sebastianbergmann/environment.git",
  5397. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  5398. },
  5399. "dist": {
  5400. "type": "zip",
  5401. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  5402. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  5403. "shasum": ""
  5404. },
  5405. "require": {
  5406. "php": ">=7.3"
  5407. },
  5408. "require-dev": {
  5409. "phpunit/phpunit": "^9.3"
  5410. },
  5411. "suggest": {
  5412. "ext-posix": "*"
  5413. },
  5414. "type": "library",
  5415. "extra": {
  5416. "branch-alias": {
  5417. "dev-master": "5.1-dev"
  5418. }
  5419. },
  5420. "autoload": {
  5421. "classmap": [
  5422. "src/"
  5423. ]
  5424. },
  5425. "notification-url": "https://packagist.org/downloads/",
  5426. "license": [
  5427. "BSD-3-Clause"
  5428. ],
  5429. "authors": [
  5430. {
  5431. "name": "Sebastian Bergmann",
  5432. "email": "sebastian@phpunit.de"
  5433. }
  5434. ],
  5435. "description": "Provides functionality to handle HHVM/PHP environments",
  5436. "homepage": "http://www.github.com/sebastianbergmann/environment",
  5437. "keywords": [
  5438. "Xdebug",
  5439. "environment",
  5440. "hhvm"
  5441. ],
  5442. "support": {
  5443. "issues": "https://github.com/sebastianbergmann/environment/issues",
  5444. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  5445. },
  5446. "funding": [
  5447. {
  5448. "url": "https://github.com/sebastianbergmann",
  5449. "type": "github"
  5450. }
  5451. ],
  5452. "time": "2023-02-03T06:03:51+00:00"
  5453. },
  5454. {
  5455. "name": "sebastian/exporter",
  5456. "version": "4.0.5",
  5457. "source": {
  5458. "type": "git",
  5459. "url": "https://github.com/sebastianbergmann/exporter.git",
  5460. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d"
  5461. },
  5462. "dist": {
  5463. "type": "zip",
  5464. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  5465. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  5466. "shasum": ""
  5467. },
  5468. "require": {
  5469. "php": ">=7.3",
  5470. "sebastian/recursion-context": "^4.0"
  5471. },
  5472. "require-dev": {
  5473. "ext-mbstring": "*",
  5474. "phpunit/phpunit": "^9.3"
  5475. },
  5476. "type": "library",
  5477. "extra": {
  5478. "branch-alias": {
  5479. "dev-master": "4.0-dev"
  5480. }
  5481. },
  5482. "autoload": {
  5483. "classmap": [
  5484. "src/"
  5485. ]
  5486. },
  5487. "notification-url": "https://packagist.org/downloads/",
  5488. "license": [
  5489. "BSD-3-Clause"
  5490. ],
  5491. "authors": [
  5492. {
  5493. "name": "Sebastian Bergmann",
  5494. "email": "sebastian@phpunit.de"
  5495. },
  5496. {
  5497. "name": "Jeff Welch",
  5498. "email": "whatthejeff@gmail.com"
  5499. },
  5500. {
  5501. "name": "Volker Dusch",
  5502. "email": "github@wallbash.com"
  5503. },
  5504. {
  5505. "name": "Adam Harvey",
  5506. "email": "aharvey@php.net"
  5507. },
  5508. {
  5509. "name": "Bernhard Schussek",
  5510. "email": "bschussek@gmail.com"
  5511. }
  5512. ],
  5513. "description": "Provides the functionality to export PHP variables for visualization",
  5514. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  5515. "keywords": [
  5516. "export",
  5517. "exporter"
  5518. ],
  5519. "support": {
  5520. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  5521. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5"
  5522. },
  5523. "funding": [
  5524. {
  5525. "url": "https://github.com/sebastianbergmann",
  5526. "type": "github"
  5527. }
  5528. ],
  5529. "time": "2022-09-14T06:03:37+00:00"
  5530. },
  5531. {
  5532. "name": "sebastian/global-state",
  5533. "version": "5.0.5",
  5534. "source": {
  5535. "type": "git",
  5536. "url": "https://github.com/sebastianbergmann/global-state.git",
  5537. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2"
  5538. },
  5539. "dist": {
  5540. "type": "zip",
  5541. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  5542. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  5543. "shasum": ""
  5544. },
  5545. "require": {
  5546. "php": ">=7.3",
  5547. "sebastian/object-reflector": "^2.0",
  5548. "sebastian/recursion-context": "^4.0"
  5549. },
  5550. "require-dev": {
  5551. "ext-dom": "*",
  5552. "phpunit/phpunit": "^9.3"
  5553. },
  5554. "suggest": {
  5555. "ext-uopz": "*"
  5556. },
  5557. "type": "library",
  5558. "extra": {
  5559. "branch-alias": {
  5560. "dev-master": "5.0-dev"
  5561. }
  5562. },
  5563. "autoload": {
  5564. "classmap": [
  5565. "src/"
  5566. ]
  5567. },
  5568. "notification-url": "https://packagist.org/downloads/",
  5569. "license": [
  5570. "BSD-3-Clause"
  5571. ],
  5572. "authors": [
  5573. {
  5574. "name": "Sebastian Bergmann",
  5575. "email": "sebastian@phpunit.de"
  5576. }
  5577. ],
  5578. "description": "Snapshotting of global state",
  5579. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  5580. "keywords": [
  5581. "global state"
  5582. ],
  5583. "support": {
  5584. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  5585. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5"
  5586. },
  5587. "funding": [
  5588. {
  5589. "url": "https://github.com/sebastianbergmann",
  5590. "type": "github"
  5591. }
  5592. ],
  5593. "time": "2022-02-14T08:28:10+00:00"
  5594. },
  5595. {
  5596. "name": "sebastian/lines-of-code",
  5597. "version": "1.0.3",
  5598. "source": {
  5599. "type": "git",
  5600. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  5601. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  5602. },
  5603. "dist": {
  5604. "type": "zip",
  5605. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  5606. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  5607. "shasum": ""
  5608. },
  5609. "require": {
  5610. "nikic/php-parser": "^4.6",
  5611. "php": ">=7.3"
  5612. },
  5613. "require-dev": {
  5614. "phpunit/phpunit": "^9.3"
  5615. },
  5616. "type": "library",
  5617. "extra": {
  5618. "branch-alias": {
  5619. "dev-master": "1.0-dev"
  5620. }
  5621. },
  5622. "autoload": {
  5623. "classmap": [
  5624. "src/"
  5625. ]
  5626. },
  5627. "notification-url": "https://packagist.org/downloads/",
  5628. "license": [
  5629. "BSD-3-Clause"
  5630. ],
  5631. "authors": [
  5632. {
  5633. "name": "Sebastian Bergmann",
  5634. "email": "sebastian@phpunit.de",
  5635. "role": "lead"
  5636. }
  5637. ],
  5638. "description": "Library for counting the lines of code in PHP source code",
  5639. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  5640. "support": {
  5641. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  5642. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  5643. },
  5644. "funding": [
  5645. {
  5646. "url": "https://github.com/sebastianbergmann",
  5647. "type": "github"
  5648. }
  5649. ],
  5650. "time": "2020-11-28T06:42:11+00:00"
  5651. },
  5652. {
  5653. "name": "sebastian/object-enumerator",
  5654. "version": "4.0.4",
  5655. "source": {
  5656. "type": "git",
  5657. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  5658. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  5659. },
  5660. "dist": {
  5661. "type": "zip",
  5662. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  5663. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  5664. "shasum": ""
  5665. },
  5666. "require": {
  5667. "php": ">=7.3",
  5668. "sebastian/object-reflector": "^2.0",
  5669. "sebastian/recursion-context": "^4.0"
  5670. },
  5671. "require-dev": {
  5672. "phpunit/phpunit": "^9.3"
  5673. },
  5674. "type": "library",
  5675. "extra": {
  5676. "branch-alias": {
  5677. "dev-master": "4.0-dev"
  5678. }
  5679. },
  5680. "autoload": {
  5681. "classmap": [
  5682. "src/"
  5683. ]
  5684. },
  5685. "notification-url": "https://packagist.org/downloads/",
  5686. "license": [
  5687. "BSD-3-Clause"
  5688. ],
  5689. "authors": [
  5690. {
  5691. "name": "Sebastian Bergmann",
  5692. "email": "sebastian@phpunit.de"
  5693. }
  5694. ],
  5695. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  5696. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  5697. "support": {
  5698. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  5699. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  5700. },
  5701. "funding": [
  5702. {
  5703. "url": "https://github.com/sebastianbergmann",
  5704. "type": "github"
  5705. }
  5706. ],
  5707. "time": "2020-10-26T13:12:34+00:00"
  5708. },
  5709. {
  5710. "name": "sebastian/object-reflector",
  5711. "version": "2.0.4",
  5712. "source": {
  5713. "type": "git",
  5714. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  5715. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  5716. },
  5717. "dist": {
  5718. "type": "zip",
  5719. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  5720. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  5721. "shasum": ""
  5722. },
  5723. "require": {
  5724. "php": ">=7.3"
  5725. },
  5726. "require-dev": {
  5727. "phpunit/phpunit": "^9.3"
  5728. },
  5729. "type": "library",
  5730. "extra": {
  5731. "branch-alias": {
  5732. "dev-master": "2.0-dev"
  5733. }
  5734. },
  5735. "autoload": {
  5736. "classmap": [
  5737. "src/"
  5738. ]
  5739. },
  5740. "notification-url": "https://packagist.org/downloads/",
  5741. "license": [
  5742. "BSD-3-Clause"
  5743. ],
  5744. "authors": [
  5745. {
  5746. "name": "Sebastian Bergmann",
  5747. "email": "sebastian@phpunit.de"
  5748. }
  5749. ],
  5750. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  5751. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  5752. "support": {
  5753. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  5754. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  5755. },
  5756. "funding": [
  5757. {
  5758. "url": "https://github.com/sebastianbergmann",
  5759. "type": "github"
  5760. }
  5761. ],
  5762. "time": "2020-10-26T13:14:26+00:00"
  5763. },
  5764. {
  5765. "name": "sebastian/recursion-context",
  5766. "version": "4.0.5",
  5767. "source": {
  5768. "type": "git",
  5769. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  5770. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  5771. },
  5772. "dist": {
  5773. "type": "zip",
  5774. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  5775. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  5776. "shasum": ""
  5777. },
  5778. "require": {
  5779. "php": ">=7.3"
  5780. },
  5781. "require-dev": {
  5782. "phpunit/phpunit": "^9.3"
  5783. },
  5784. "type": "library",
  5785. "extra": {
  5786. "branch-alias": {
  5787. "dev-master": "4.0-dev"
  5788. }
  5789. },
  5790. "autoload": {
  5791. "classmap": [
  5792. "src/"
  5793. ]
  5794. },
  5795. "notification-url": "https://packagist.org/downloads/",
  5796. "license": [
  5797. "BSD-3-Clause"
  5798. ],
  5799. "authors": [
  5800. {
  5801. "name": "Sebastian Bergmann",
  5802. "email": "sebastian@phpunit.de"
  5803. },
  5804. {
  5805. "name": "Jeff Welch",
  5806. "email": "whatthejeff@gmail.com"
  5807. },
  5808. {
  5809. "name": "Adam Harvey",
  5810. "email": "aharvey@php.net"
  5811. }
  5812. ],
  5813. "description": "Provides functionality to recursively process PHP variables",
  5814. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  5815. "support": {
  5816. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  5817. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  5818. },
  5819. "funding": [
  5820. {
  5821. "url": "https://github.com/sebastianbergmann",
  5822. "type": "github"
  5823. }
  5824. ],
  5825. "time": "2023-02-03T06:07:39+00:00"
  5826. },
  5827. {
  5828. "name": "sebastian/resource-operations",
  5829. "version": "3.0.3",
  5830. "source": {
  5831. "type": "git",
  5832. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  5833. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  5834. },
  5835. "dist": {
  5836. "type": "zip",
  5837. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  5838. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  5839. "shasum": ""
  5840. },
  5841. "require": {
  5842. "php": ">=7.3"
  5843. },
  5844. "require-dev": {
  5845. "phpunit/phpunit": "^9.0"
  5846. },
  5847. "type": "library",
  5848. "extra": {
  5849. "branch-alias": {
  5850. "dev-master": "3.0-dev"
  5851. }
  5852. },
  5853. "autoload": {
  5854. "classmap": [
  5855. "src/"
  5856. ]
  5857. },
  5858. "notification-url": "https://packagist.org/downloads/",
  5859. "license": [
  5860. "BSD-3-Clause"
  5861. ],
  5862. "authors": [
  5863. {
  5864. "name": "Sebastian Bergmann",
  5865. "email": "sebastian@phpunit.de"
  5866. }
  5867. ],
  5868. "description": "Provides a list of PHP built-in functions that operate on resources",
  5869. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  5870. "support": {
  5871. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  5872. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  5873. },
  5874. "funding": [
  5875. {
  5876. "url": "https://github.com/sebastianbergmann",
  5877. "type": "github"
  5878. }
  5879. ],
  5880. "time": "2020-09-28T06:45:17+00:00"
  5881. },
  5882. {
  5883. "name": "sebastian/type",
  5884. "version": "3.2.1",
  5885. "source": {
  5886. "type": "git",
  5887. "url": "https://github.com/sebastianbergmann/type.git",
  5888. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  5889. },
  5890. "dist": {
  5891. "type": "zip",
  5892. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  5893. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  5894. "shasum": ""
  5895. },
  5896. "require": {
  5897. "php": ">=7.3"
  5898. },
  5899. "require-dev": {
  5900. "phpunit/phpunit": "^9.5"
  5901. },
  5902. "type": "library",
  5903. "extra": {
  5904. "branch-alias": {
  5905. "dev-master": "3.2-dev"
  5906. }
  5907. },
  5908. "autoload": {
  5909. "classmap": [
  5910. "src/"
  5911. ]
  5912. },
  5913. "notification-url": "https://packagist.org/downloads/",
  5914. "license": [
  5915. "BSD-3-Clause"
  5916. ],
  5917. "authors": [
  5918. {
  5919. "name": "Sebastian Bergmann",
  5920. "email": "sebastian@phpunit.de",
  5921. "role": "lead"
  5922. }
  5923. ],
  5924. "description": "Collection of value objects that represent the types of the PHP type system",
  5925. "homepage": "https://github.com/sebastianbergmann/type",
  5926. "support": {
  5927. "issues": "https://github.com/sebastianbergmann/type/issues",
  5928. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  5929. },
  5930. "funding": [
  5931. {
  5932. "url": "https://github.com/sebastianbergmann",
  5933. "type": "github"
  5934. }
  5935. ],
  5936. "time": "2023-02-03T06:13:03+00:00"
  5937. },
  5938. {
  5939. "name": "sebastian/version",
  5940. "version": "3.0.2",
  5941. "source": {
  5942. "type": "git",
  5943. "url": "https://github.com/sebastianbergmann/version.git",
  5944. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  5945. },
  5946. "dist": {
  5947. "type": "zip",
  5948. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  5949. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  5950. "shasum": ""
  5951. },
  5952. "require": {
  5953. "php": ">=7.3"
  5954. },
  5955. "type": "library",
  5956. "extra": {
  5957. "branch-alias": {
  5958. "dev-master": "3.0-dev"
  5959. }
  5960. },
  5961. "autoload": {
  5962. "classmap": [
  5963. "src/"
  5964. ]
  5965. },
  5966. "notification-url": "https://packagist.org/downloads/",
  5967. "license": [
  5968. "BSD-3-Clause"
  5969. ],
  5970. "authors": [
  5971. {
  5972. "name": "Sebastian Bergmann",
  5973. "email": "sebastian@phpunit.de",
  5974. "role": "lead"
  5975. }
  5976. ],
  5977. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  5978. "homepage": "https://github.com/sebastianbergmann/version",
  5979. "support": {
  5980. "issues": "https://github.com/sebastianbergmann/version/issues",
  5981. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  5982. },
  5983. "funding": [
  5984. {
  5985. "url": "https://github.com/sebastianbergmann",
  5986. "type": "github"
  5987. }
  5988. ],
  5989. "time": "2020-09-28T06:39:44+00:00"
  5990. },
  5991. {
  5992. "name": "symfony/browser-kit",
  5993. "version": "v5.4.21",
  5994. "source": {
  5995. "type": "git",
  5996. "url": "https://github.com/symfony/browser-kit.git",
  5997. "reference": "a866ca7e396f15d7efb6d74a8a7d364d4e05b704"
  5998. },
  5999. "dist": {
  6000. "type": "zip",
  6001. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/a866ca7e396f15d7efb6d74a8a7d364d4e05b704",
  6002. "reference": "a866ca7e396f15d7efb6d74a8a7d364d4e05b704",
  6003. "shasum": ""
  6004. },
  6005. "require": {
  6006. "php": ">=7.2.5",
  6007. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  6008. "symfony/polyfill-php80": "^1.16"
  6009. },
  6010. "require-dev": {
  6011. "symfony/css-selector": "^4.4|^5.0|^6.0",
  6012. "symfony/http-client": "^4.4|^5.0|^6.0",
  6013. "symfony/mime": "^4.4|^5.0|^6.0",
  6014. "symfony/process": "^4.4|^5.0|^6.0"
  6015. },
  6016. "suggest": {
  6017. "symfony/process": ""
  6018. },
  6019. "type": "library",
  6020. "autoload": {
  6021. "psr-4": {
  6022. "Symfony\\Component\\BrowserKit\\": ""
  6023. },
  6024. "exclude-from-classmap": [
  6025. "/Tests/"
  6026. ]
  6027. },
  6028. "notification-url": "https://packagist.org/downloads/",
  6029. "license": [
  6030. "MIT"
  6031. ],
  6032. "authors": [
  6033. {
  6034. "name": "Fabien Potencier",
  6035. "email": "fabien@symfony.com"
  6036. },
  6037. {
  6038. "name": "Symfony Community",
  6039. "homepage": "https://symfony.com/contributors"
  6040. }
  6041. ],
  6042. "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically",
  6043. "homepage": "https://symfony.com",
  6044. "support": {
  6045. "source": "https://github.com/symfony/browser-kit/tree/v5.4.21"
  6046. },
  6047. "funding": [
  6048. {
  6049. "url": "https://symfony.com/sponsor",
  6050. "type": "custom"
  6051. },
  6052. {
  6053. "url": "https://github.com/fabpot",
  6054. "type": "github"
  6055. },
  6056. {
  6057. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6058. "type": "tidelift"
  6059. }
  6060. ],
  6061. "time": "2023-02-14T08:03:56+00:00"
  6062. },
  6063. {
  6064. "name": "symfony/css-selector",
  6065. "version": "v5.4.21",
  6066. "source": {
  6067. "type": "git",
  6068. "url": "https://github.com/symfony/css-selector.git",
  6069. "reference": "95f3c7468db1da8cc360b24fa2a26e7cefcb355d"
  6070. },
  6071. "dist": {
  6072. "type": "zip",
  6073. "url": "https://api.github.com/repos/symfony/css-selector/zipball/95f3c7468db1da8cc360b24fa2a26e7cefcb355d",
  6074. "reference": "95f3c7468db1da8cc360b24fa2a26e7cefcb355d",
  6075. "shasum": ""
  6076. },
  6077. "require": {
  6078. "php": ">=7.2.5",
  6079. "symfony/polyfill-php80": "^1.16"
  6080. },
  6081. "type": "library",
  6082. "autoload": {
  6083. "psr-4": {
  6084. "Symfony\\Component\\CssSelector\\": ""
  6085. },
  6086. "exclude-from-classmap": [
  6087. "/Tests/"
  6088. ]
  6089. },
  6090. "notification-url": "https://packagist.org/downloads/",
  6091. "license": [
  6092. "MIT"
  6093. ],
  6094. "authors": [
  6095. {
  6096. "name": "Fabien Potencier",
  6097. "email": "fabien@symfony.com"
  6098. },
  6099. {
  6100. "name": "Jean-François Simon",
  6101. "email": "jeanfrancois.simon@sensiolabs.com"
  6102. },
  6103. {
  6104. "name": "Symfony Community",
  6105. "homepage": "https://symfony.com/contributors"
  6106. }
  6107. ],
  6108. "description": "Converts CSS selectors to XPath expressions",
  6109. "homepage": "https://symfony.com",
  6110. "support": {
  6111. "source": "https://github.com/symfony/css-selector/tree/v5.4.21"
  6112. },
  6113. "funding": [
  6114. {
  6115. "url": "https://symfony.com/sponsor",
  6116. "type": "custom"
  6117. },
  6118. {
  6119. "url": "https://github.com/fabpot",
  6120. "type": "github"
  6121. },
  6122. {
  6123. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6124. "type": "tidelift"
  6125. }
  6126. ],
  6127. "time": "2023-02-14T08:03:56+00:00"
  6128. },
  6129. {
  6130. "name": "symfony/deprecation-contracts",
  6131. "version": "v2.5.2",
  6132. "source": {
  6133. "type": "git",
  6134. "url": "https://github.com/symfony/deprecation-contracts.git",
  6135. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66"
  6136. },
  6137. "dist": {
  6138. "type": "zip",
  6139. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  6140. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  6141. "shasum": ""
  6142. },
  6143. "require": {
  6144. "php": ">=7.1"
  6145. },
  6146. "type": "library",
  6147. "extra": {
  6148. "branch-alias": {
  6149. "dev-main": "2.5-dev"
  6150. },
  6151. "thanks": {
  6152. "name": "symfony/contracts",
  6153. "url": "https://github.com/symfony/contracts"
  6154. }
  6155. },
  6156. "autoload": {
  6157. "files": [
  6158. "function.php"
  6159. ]
  6160. },
  6161. "notification-url": "https://packagist.org/downloads/",
  6162. "license": [
  6163. "MIT"
  6164. ],
  6165. "authors": [
  6166. {
  6167. "name": "Nicolas Grekas",
  6168. "email": "p@tchwork.com"
  6169. },
  6170. {
  6171. "name": "Symfony Community",
  6172. "homepage": "https://symfony.com/contributors"
  6173. }
  6174. ],
  6175. "description": "A generic function and convention to trigger deprecation notices",
  6176. "homepage": "https://symfony.com",
  6177. "support": {
  6178. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.2"
  6179. },
  6180. "funding": [
  6181. {
  6182. "url": "https://symfony.com/sponsor",
  6183. "type": "custom"
  6184. },
  6185. {
  6186. "url": "https://github.com/fabpot",
  6187. "type": "github"
  6188. },
  6189. {
  6190. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6191. "type": "tidelift"
  6192. }
  6193. ],
  6194. "time": "2022-01-02T09:53:40+00:00"
  6195. },
  6196. {
  6197. "name": "symfony/dom-crawler",
  6198. "version": "v5.4.23",
  6199. "source": {
  6200. "type": "git",
  6201. "url": "https://github.com/symfony/dom-crawler.git",
  6202. "reference": "4a286c916b74ecfb6e2caf1aa31d3fe2a34b7e08"
  6203. },
  6204. "dist": {
  6205. "type": "zip",
  6206. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/4a286c916b74ecfb6e2caf1aa31d3fe2a34b7e08",
  6207. "reference": "4a286c916b74ecfb6e2caf1aa31d3fe2a34b7e08",
  6208. "shasum": ""
  6209. },
  6210. "require": {
  6211. "php": ">=7.2.5",
  6212. "symfony/deprecation-contracts": "^2.1|^3",
  6213. "symfony/polyfill-ctype": "~1.8",
  6214. "symfony/polyfill-mbstring": "~1.0",
  6215. "symfony/polyfill-php80": "^1.16"
  6216. },
  6217. "conflict": {
  6218. "masterminds/html5": "<2.6"
  6219. },
  6220. "require-dev": {
  6221. "masterminds/html5": "^2.6",
  6222. "symfony/css-selector": "^4.4|^5.0|^6.0"
  6223. },
  6224. "suggest": {
  6225. "symfony/css-selector": ""
  6226. },
  6227. "type": "library",
  6228. "autoload": {
  6229. "psr-4": {
  6230. "Symfony\\Component\\DomCrawler\\": ""
  6231. },
  6232. "exclude-from-classmap": [
  6233. "/Tests/"
  6234. ]
  6235. },
  6236. "notification-url": "https://packagist.org/downloads/",
  6237. "license": [
  6238. "MIT"
  6239. ],
  6240. "authors": [
  6241. {
  6242. "name": "Fabien Potencier",
  6243. "email": "fabien@symfony.com"
  6244. },
  6245. {
  6246. "name": "Symfony Community",
  6247. "homepage": "https://symfony.com/contributors"
  6248. }
  6249. ],
  6250. "description": "Eases DOM navigation for HTML and XML documents",
  6251. "homepage": "https://symfony.com",
  6252. "support": {
  6253. "source": "https://github.com/symfony/dom-crawler/tree/v5.4.23"
  6254. },
  6255. "funding": [
  6256. {
  6257. "url": "https://symfony.com/sponsor",
  6258. "type": "custom"
  6259. },
  6260. {
  6261. "url": "https://github.com/fabpot",
  6262. "type": "github"
  6263. },
  6264. {
  6265. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6266. "type": "tidelift"
  6267. }
  6268. ],
  6269. "time": "2023-04-08T21:20:19+00:00"
  6270. },
  6271. {
  6272. "name": "symfony/finder",
  6273. "version": "v5.4.21",
  6274. "source": {
  6275. "type": "git",
  6276. "url": "https://github.com/symfony/finder.git",
  6277. "reference": "078e9a5e1871fcfe6a5ce421b539344c21afef19"
  6278. },
  6279. "dist": {
  6280. "type": "zip",
  6281. "url": "https://api.github.com/repos/symfony/finder/zipball/078e9a5e1871fcfe6a5ce421b539344c21afef19",
  6282. "reference": "078e9a5e1871fcfe6a5ce421b539344c21afef19",
  6283. "shasum": ""
  6284. },
  6285. "require": {
  6286. "php": ">=7.2.5",
  6287. "symfony/deprecation-contracts": "^2.1|^3",
  6288. "symfony/polyfill-php80": "^1.16"
  6289. },
  6290. "type": "library",
  6291. "autoload": {
  6292. "psr-4": {
  6293. "Symfony\\Component\\Finder\\": ""
  6294. },
  6295. "exclude-from-classmap": [
  6296. "/Tests/"
  6297. ]
  6298. },
  6299. "notification-url": "https://packagist.org/downloads/",
  6300. "license": [
  6301. "MIT"
  6302. ],
  6303. "authors": [
  6304. {
  6305. "name": "Fabien Potencier",
  6306. "email": "fabien@symfony.com"
  6307. },
  6308. {
  6309. "name": "Symfony Community",
  6310. "homepage": "https://symfony.com/contributors"
  6311. }
  6312. ],
  6313. "description": "Finds files and directories via an intuitive fluent interface",
  6314. "homepage": "https://symfony.com",
  6315. "support": {
  6316. "source": "https://github.com/symfony/finder/tree/v5.4.21"
  6317. },
  6318. "funding": [
  6319. {
  6320. "url": "https://symfony.com/sponsor",
  6321. "type": "custom"
  6322. },
  6323. {
  6324. "url": "https://github.com/fabpot",
  6325. "type": "github"
  6326. },
  6327. {
  6328. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6329. "type": "tidelift"
  6330. }
  6331. ],
  6332. "time": "2023-02-16T09:33:00+00:00"
  6333. },
  6334. {
  6335. "name": "theseer/tokenizer",
  6336. "version": "1.2.1",
  6337. "source": {
  6338. "type": "git",
  6339. "url": "https://github.com/theseer/tokenizer.git",
  6340. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  6341. },
  6342. "dist": {
  6343. "type": "zip",
  6344. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  6345. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  6346. "shasum": ""
  6347. },
  6348. "require": {
  6349. "ext-dom": "*",
  6350. "ext-tokenizer": "*",
  6351. "ext-xmlwriter": "*",
  6352. "php": "^7.2 || ^8.0"
  6353. },
  6354. "type": "library",
  6355. "autoload": {
  6356. "classmap": [
  6357. "src/"
  6358. ]
  6359. },
  6360. "notification-url": "https://packagist.org/downloads/",
  6361. "license": [
  6362. "BSD-3-Clause"
  6363. ],
  6364. "authors": [
  6365. {
  6366. "name": "Arne Blankerts",
  6367. "email": "arne@blankerts.de",
  6368. "role": "Developer"
  6369. }
  6370. ],
  6371. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  6372. "support": {
  6373. "issues": "https://github.com/theseer/tokenizer/issues",
  6374. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  6375. },
  6376. "funding": [
  6377. {
  6378. "url": "https://github.com/theseer",
  6379. "type": "github"
  6380. }
  6381. ],
  6382. "time": "2021-07-28T10:34:58+00:00"
  6383. }
  6384. ],
  6385. "aliases": [],
  6386. "minimum-stability": "stable",
  6387. "stability-flags": [],
  6388. "prefer-stable": false,
  6389. "prefer-lowest": false,
  6390. "platform": {
  6391. "php": "^7.3.6 || ^8.0",
  6392. "ext-json": "*",
  6393. "ext-openssl": "*",
  6394. "ext-curl": "*",
  6395. "ext-zip": "*",
  6396. "ext-dom": "*",
  6397. "ext-libxml": "*",
  6398. "ext-gd": "*"
  6399. },
  6400. "platform-dev": [],
  6401. "platform-overrides": {
  6402. "php": "7.3.6"
  6403. },
  6404. "plugin-api-version": "2.3.0"
  6405. }