composer.lock 271 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557
  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": "a5c8848983c58963f4396fdf22763e89",
  8. "packages": [
  9. {
  10. "name": "asm89/stack-cors",
  11. "version": "v2.1.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/asm89/stack-cors.git",
  15. "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/73e5b88775c64ccc0b84fb60836b30dc9d92ac4a",
  20. "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^7.2|^8.0",
  25. "symfony/http-foundation": "^4|^5|^6",
  26. "symfony/http-kernel": "^4|^5|^6"
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "^7|^9",
  30. "squizlabs/php_codesniffer": "^3.5"
  31. },
  32. "type": "library",
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "2.1-dev"
  36. }
  37. },
  38. "autoload": {
  39. "psr-4": {
  40. "Asm89\\Stack\\": "src/"
  41. }
  42. },
  43. "notification-url": "https://packagist.org/downloads/",
  44. "license": [
  45. "MIT"
  46. ],
  47. "authors": [
  48. {
  49. "name": "Alexander",
  50. "email": "iam.asm89@gmail.com"
  51. }
  52. ],
  53. "description": "Cross-origin resource sharing library and stack middleware",
  54. "homepage": "https://github.com/asm89/stack-cors",
  55. "keywords": [
  56. "cors",
  57. "stack"
  58. ],
  59. "support": {
  60. "issues": "https://github.com/asm89/stack-cors/issues",
  61. "source": "https://github.com/asm89/stack-cors/tree/v2.1.1"
  62. },
  63. "time": "2022-01-18T09:12:03+00:00"
  64. },
  65. {
  66. "name": "aws/aws-crt-php",
  67. "version": "v1.2.1",
  68. "source": {
  69. "type": "git",
  70. "url": "https://github.com/awslabs/aws-crt-php.git",
  71. "reference": "1926277fc71d253dfa820271ac5987bdb193ccf5"
  72. },
  73. "dist": {
  74. "type": "zip",
  75. "url": "https://api.github.com/repos/awslabs/aws-crt-php/zipball/1926277fc71d253dfa820271ac5987bdb193ccf5",
  76. "reference": "1926277fc71d253dfa820271ac5987bdb193ccf5",
  77. "shasum": ""
  78. },
  79. "require": {
  80. "php": ">=5.5"
  81. },
  82. "require-dev": {
  83. "phpunit/phpunit": "^4.8.35||^5.6.3||^9.5",
  84. "yoast/phpunit-polyfills": "^1.0"
  85. },
  86. "suggest": {
  87. "ext-awscrt": "Make sure you install awscrt native extension to use any of the functionality."
  88. },
  89. "type": "library",
  90. "autoload": {
  91. "classmap": [
  92. "src/"
  93. ]
  94. },
  95. "notification-url": "https://packagist.org/downloads/",
  96. "license": [
  97. "Apache-2.0"
  98. ],
  99. "authors": [
  100. {
  101. "name": "AWS SDK Common Runtime Team",
  102. "email": "aws-sdk-common-runtime@amazon.com"
  103. }
  104. ],
  105. "description": "AWS Common Runtime for PHP",
  106. "homepage": "https://github.com/awslabs/aws-crt-php",
  107. "keywords": [
  108. "amazon",
  109. "aws",
  110. "crt",
  111. "sdk"
  112. ],
  113. "support": {
  114. "issues": "https://github.com/awslabs/aws-crt-php/issues",
  115. "source": "https://github.com/awslabs/aws-crt-php/tree/v1.2.1"
  116. },
  117. "time": "2023-03-24T20:22:19+00:00"
  118. },
  119. {
  120. "name": "aws/aws-sdk-php",
  121. "version": "3.263.0",
  122. "source": {
  123. "type": "git",
  124. "url": "https://github.com/aws/aws-sdk-php.git",
  125. "reference": "a0a528cb8e22dd0113f97ad0df527a6db32fe061"
  126. },
  127. "dist": {
  128. "type": "zip",
  129. "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/a0a528cb8e22dd0113f97ad0df527a6db32fe061",
  130. "reference": "a0a528cb8e22dd0113f97ad0df527a6db32fe061",
  131. "shasum": ""
  132. },
  133. "require": {
  134. "aws/aws-crt-php": "^1.0.4",
  135. "ext-json": "*",
  136. "ext-pcre": "*",
  137. "ext-simplexml": "*",
  138. "guzzlehttp/guzzle": "^6.5.8 || ^7.4.5",
  139. "guzzlehttp/promises": "^1.4.0",
  140. "guzzlehttp/psr7": "^1.8.5 || ^2.3",
  141. "mtdowling/jmespath.php": "^2.6",
  142. "php": ">=5.5"
  143. },
  144. "require-dev": {
  145. "andrewsville/php-token-reflection": "^1.4",
  146. "aws/aws-php-sns-message-validator": "~1.0",
  147. "behat/behat": "~3.0",
  148. "composer/composer": "^1.10.22",
  149. "dms/phpunit-arraysubset-asserts": "^0.4.0",
  150. "doctrine/cache": "~1.4",
  151. "ext-dom": "*",
  152. "ext-openssl": "*",
  153. "ext-pcntl": "*",
  154. "ext-sockets": "*",
  155. "nette/neon": "^2.3",
  156. "paragonie/random_compat": ">= 2",
  157. "phpunit/phpunit": "^4.8.35 || ^5.6.3 || ^9.5",
  158. "psr/cache": "^1.0",
  159. "psr/simple-cache": "^1.0",
  160. "sebastian/comparator": "^1.2.3 || ^4.0",
  161. "yoast/phpunit-polyfills": "^1.0"
  162. },
  163. "suggest": {
  164. "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications",
  165. "doctrine/cache": "To use the DoctrineCacheAdapter",
  166. "ext-curl": "To send requests using cURL",
  167. "ext-openssl": "Allows working with CloudFront private distributions and verifying received SNS messages",
  168. "ext-sockets": "To use client-side monitoring"
  169. },
  170. "type": "library",
  171. "extra": {
  172. "branch-alias": {
  173. "dev-master": "3.0-dev"
  174. }
  175. },
  176. "autoload": {
  177. "files": [
  178. "src/functions.php"
  179. ],
  180. "psr-4": {
  181. "Aws\\": "src/"
  182. }
  183. },
  184. "notification-url": "https://packagist.org/downloads/",
  185. "license": [
  186. "Apache-2.0"
  187. ],
  188. "authors": [
  189. {
  190. "name": "Amazon Web Services",
  191. "homepage": "http://aws.amazon.com"
  192. }
  193. ],
  194. "description": "AWS SDK for PHP - Use Amazon Web Services in your PHP project",
  195. "homepage": "http://aws.amazon.com/sdkforphp",
  196. "keywords": [
  197. "amazon",
  198. "aws",
  199. "cloud",
  200. "dynamodb",
  201. "ec2",
  202. "glacier",
  203. "s3",
  204. "sdk"
  205. ],
  206. "support": {
  207. "forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80",
  208. "issues": "https://github.com/aws/aws-sdk-php/issues",
  209. "source": "https://github.com/aws/aws-sdk-php/tree/3.263.0"
  210. },
  211. "time": "2023-03-30T18:22:31+00:00"
  212. },
  213. {
  214. "name": "brick/math",
  215. "version": "0.9.3",
  216. "source": {
  217. "type": "git",
  218. "url": "https://github.com/brick/math.git",
  219. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae"
  220. },
  221. "dist": {
  222. "type": "zip",
  223. "url": "https://api.github.com/repos/brick/math/zipball/ca57d18f028f84f777b2168cd1911b0dee2343ae",
  224. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae",
  225. "shasum": ""
  226. },
  227. "require": {
  228. "ext-json": "*",
  229. "php": "^7.1 || ^8.0"
  230. },
  231. "require-dev": {
  232. "php-coveralls/php-coveralls": "^2.2",
  233. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.0",
  234. "vimeo/psalm": "4.9.2"
  235. },
  236. "type": "library",
  237. "autoload": {
  238. "psr-4": {
  239. "Brick\\Math\\": "src/"
  240. }
  241. },
  242. "notification-url": "https://packagist.org/downloads/",
  243. "license": [
  244. "MIT"
  245. ],
  246. "description": "Arbitrary-precision arithmetic library",
  247. "keywords": [
  248. "Arbitrary-precision",
  249. "BigInteger",
  250. "BigRational",
  251. "arithmetic",
  252. "bigdecimal",
  253. "bignum",
  254. "brick",
  255. "math"
  256. ],
  257. "support": {
  258. "issues": "https://github.com/brick/math/issues",
  259. "source": "https://github.com/brick/math/tree/0.9.3"
  260. },
  261. "funding": [
  262. {
  263. "url": "https://github.com/BenMorel",
  264. "type": "github"
  265. },
  266. {
  267. "url": "https://tidelift.com/funding/github/packagist/brick/math",
  268. "type": "tidelift"
  269. }
  270. ],
  271. "time": "2021-08-15T20:50:18+00:00"
  272. },
  273. {
  274. "name": "doctrine/inflector",
  275. "version": "2.0.6",
  276. "source": {
  277. "type": "git",
  278. "url": "https://github.com/doctrine/inflector.git",
  279. "reference": "d9d313a36c872fd6ee06d9a6cbcf713eaa40f024"
  280. },
  281. "dist": {
  282. "type": "zip",
  283. "url": "https://api.github.com/repos/doctrine/inflector/zipball/d9d313a36c872fd6ee06d9a6cbcf713eaa40f024",
  284. "reference": "d9d313a36c872fd6ee06d9a6cbcf713eaa40f024",
  285. "shasum": ""
  286. },
  287. "require": {
  288. "php": "^7.2 || ^8.0"
  289. },
  290. "require-dev": {
  291. "doctrine/coding-standard": "^10",
  292. "phpstan/phpstan": "^1.8",
  293. "phpstan/phpstan-phpunit": "^1.1",
  294. "phpstan/phpstan-strict-rules": "^1.3",
  295. "phpunit/phpunit": "^8.5 || ^9.5",
  296. "vimeo/psalm": "^4.25"
  297. },
  298. "type": "library",
  299. "autoload": {
  300. "psr-4": {
  301. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  302. }
  303. },
  304. "notification-url": "https://packagist.org/downloads/",
  305. "license": [
  306. "MIT"
  307. ],
  308. "authors": [
  309. {
  310. "name": "Guilherme Blanco",
  311. "email": "guilhermeblanco@gmail.com"
  312. },
  313. {
  314. "name": "Roman Borschel",
  315. "email": "roman@code-factory.org"
  316. },
  317. {
  318. "name": "Benjamin Eberlei",
  319. "email": "kontakt@beberlei.de"
  320. },
  321. {
  322. "name": "Jonathan Wage",
  323. "email": "jonwage@gmail.com"
  324. },
  325. {
  326. "name": "Johannes Schmitt",
  327. "email": "schmittjoh@gmail.com"
  328. }
  329. ],
  330. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  331. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  332. "keywords": [
  333. "inflection",
  334. "inflector",
  335. "lowercase",
  336. "manipulation",
  337. "php",
  338. "plural",
  339. "singular",
  340. "strings",
  341. "uppercase",
  342. "words"
  343. ],
  344. "support": {
  345. "issues": "https://github.com/doctrine/inflector/issues",
  346. "source": "https://github.com/doctrine/inflector/tree/2.0.6"
  347. },
  348. "funding": [
  349. {
  350. "url": "https://www.doctrine-project.org/sponsorship.html",
  351. "type": "custom"
  352. },
  353. {
  354. "url": "https://www.patreon.com/phpdoctrine",
  355. "type": "patreon"
  356. },
  357. {
  358. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  359. "type": "tidelift"
  360. }
  361. ],
  362. "time": "2022-10-20T09:10:12+00:00"
  363. },
  364. {
  365. "name": "doctrine/lexer",
  366. "version": "1.2.3",
  367. "source": {
  368. "type": "git",
  369. "url": "https://github.com/doctrine/lexer.git",
  370. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  371. },
  372. "dist": {
  373. "type": "zip",
  374. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  375. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  376. "shasum": ""
  377. },
  378. "require": {
  379. "php": "^7.1 || ^8.0"
  380. },
  381. "require-dev": {
  382. "doctrine/coding-standard": "^9.0",
  383. "phpstan/phpstan": "^1.3",
  384. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  385. "vimeo/psalm": "^4.11"
  386. },
  387. "type": "library",
  388. "autoload": {
  389. "psr-4": {
  390. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  391. }
  392. },
  393. "notification-url": "https://packagist.org/downloads/",
  394. "license": [
  395. "MIT"
  396. ],
  397. "authors": [
  398. {
  399. "name": "Guilherme Blanco",
  400. "email": "guilhermeblanco@gmail.com"
  401. },
  402. {
  403. "name": "Roman Borschel",
  404. "email": "roman@code-factory.org"
  405. },
  406. {
  407. "name": "Johannes Schmitt",
  408. "email": "schmittjoh@gmail.com"
  409. }
  410. ],
  411. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  412. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  413. "keywords": [
  414. "annotations",
  415. "docblock",
  416. "lexer",
  417. "parser",
  418. "php"
  419. ],
  420. "support": {
  421. "issues": "https://github.com/doctrine/lexer/issues",
  422. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  423. },
  424. "funding": [
  425. {
  426. "url": "https://www.doctrine-project.org/sponsorship.html",
  427. "type": "custom"
  428. },
  429. {
  430. "url": "https://www.patreon.com/phpdoctrine",
  431. "type": "patreon"
  432. },
  433. {
  434. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  435. "type": "tidelift"
  436. }
  437. ],
  438. "time": "2022-02-28T11:07:21+00:00"
  439. },
  440. {
  441. "name": "dragonmantank/cron-expression",
  442. "version": "v2.3.1",
  443. "source": {
  444. "type": "git",
  445. "url": "https://github.com/dragonmantank/cron-expression.git",
  446. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2"
  447. },
  448. "dist": {
  449. "type": "zip",
  450. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/65b2d8ee1f10915efb3b55597da3404f096acba2",
  451. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2",
  452. "shasum": ""
  453. },
  454. "require": {
  455. "php": "^7.0|^8.0"
  456. },
  457. "require-dev": {
  458. "phpunit/phpunit": "^6.4|^7.0|^8.0|^9.0"
  459. },
  460. "type": "library",
  461. "extra": {
  462. "branch-alias": {
  463. "dev-master": "2.3-dev"
  464. }
  465. },
  466. "autoload": {
  467. "psr-4": {
  468. "Cron\\": "src/Cron/"
  469. }
  470. },
  471. "notification-url": "https://packagist.org/downloads/",
  472. "license": [
  473. "MIT"
  474. ],
  475. "authors": [
  476. {
  477. "name": "Michael Dowling",
  478. "email": "mtdowling@gmail.com",
  479. "homepage": "https://github.com/mtdowling"
  480. },
  481. {
  482. "name": "Chris Tankersley",
  483. "email": "chris@ctankersley.com",
  484. "homepage": "https://github.com/dragonmantank"
  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. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  494. "source": "https://github.com/dragonmantank/cron-expression/tree/v2.3.1"
  495. },
  496. "funding": [
  497. {
  498. "url": "https://github.com/dragonmantank",
  499. "type": "github"
  500. }
  501. ],
  502. "time": "2020-10-13T00:52:37+00:00"
  503. },
  504. {
  505. "name": "egulias/email-validator",
  506. "version": "2.1.25",
  507. "source": {
  508. "type": "git",
  509. "url": "https://github.com/egulias/EmailValidator.git",
  510. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  511. },
  512. "dist": {
  513. "type": "zip",
  514. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  515. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  516. "shasum": ""
  517. },
  518. "require": {
  519. "doctrine/lexer": "^1.0.1",
  520. "php": ">=5.5",
  521. "symfony/polyfill-intl-idn": "^1.10"
  522. },
  523. "require-dev": {
  524. "dominicsayers/isemail": "^3.0.7",
  525. "phpunit/phpunit": "^4.8.36|^7.5.15",
  526. "satooshi/php-coveralls": "^1.0.1"
  527. },
  528. "suggest": {
  529. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  530. },
  531. "type": "library",
  532. "extra": {
  533. "branch-alias": {
  534. "dev-master": "2.1.x-dev"
  535. }
  536. },
  537. "autoload": {
  538. "psr-4": {
  539. "Egulias\\EmailValidator\\": "src"
  540. }
  541. },
  542. "notification-url": "https://packagist.org/downloads/",
  543. "license": [
  544. "MIT"
  545. ],
  546. "authors": [
  547. {
  548. "name": "Eduardo Gulias Davis"
  549. }
  550. ],
  551. "description": "A library for validating emails against several RFCs",
  552. "homepage": "https://github.com/egulias/EmailValidator",
  553. "keywords": [
  554. "email",
  555. "emailvalidation",
  556. "emailvalidator",
  557. "validation",
  558. "validator"
  559. ],
  560. "support": {
  561. "issues": "https://github.com/egulias/EmailValidator/issues",
  562. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  563. },
  564. "funding": [
  565. {
  566. "url": "https://github.com/egulias",
  567. "type": "github"
  568. }
  569. ],
  570. "time": "2020-12-29T14:50:06+00:00"
  571. },
  572. {
  573. "name": "fideloper/proxy",
  574. "version": "4.4.2",
  575. "source": {
  576. "type": "git",
  577. "url": "https://github.com/fideloper/TrustedProxy.git",
  578. "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750"
  579. },
  580. "dist": {
  581. "type": "zip",
  582. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/a751f2bc86dd8e6cfef12dc0cbdada82f5a18750",
  583. "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750",
  584. "shasum": ""
  585. },
  586. "require": {
  587. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  588. "php": ">=5.4.0"
  589. },
  590. "require-dev": {
  591. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  592. "mockery/mockery": "^1.0",
  593. "phpunit/phpunit": "^8.5.8|^9.3.3"
  594. },
  595. "type": "library",
  596. "extra": {
  597. "laravel": {
  598. "providers": [
  599. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  600. ]
  601. }
  602. },
  603. "autoload": {
  604. "psr-4": {
  605. "Fideloper\\Proxy\\": "src/"
  606. }
  607. },
  608. "notification-url": "https://packagist.org/downloads/",
  609. "license": [
  610. "MIT"
  611. ],
  612. "authors": [
  613. {
  614. "name": "Chris Fidao",
  615. "email": "fideloper@gmail.com"
  616. }
  617. ],
  618. "description": "Set trusted proxies for Laravel",
  619. "keywords": [
  620. "load balancing",
  621. "proxy",
  622. "trusted proxy"
  623. ],
  624. "support": {
  625. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  626. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.2"
  627. },
  628. "time": "2022-02-09T13:33:34+00:00"
  629. },
  630. {
  631. "name": "fruitcake/laravel-cors",
  632. "version": "v2.2.0",
  633. "source": {
  634. "type": "git",
  635. "url": "https://github.com/fruitcake/laravel-cors.git",
  636. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534"
  637. },
  638. "dist": {
  639. "type": "zip",
  640. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/783a74f5e3431d7b9805be8afb60fd0a8f743534",
  641. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534",
  642. "shasum": ""
  643. },
  644. "require": {
  645. "asm89/stack-cors": "^2.0.1",
  646. "illuminate/contracts": "^6|^7|^8|^9",
  647. "illuminate/support": "^6|^7|^8|^9",
  648. "php": ">=7.2"
  649. },
  650. "require-dev": {
  651. "laravel/framework": "^6|^7.24|^8",
  652. "orchestra/testbench-dusk": "^4|^5|^6|^7",
  653. "phpunit/phpunit": "^6|^7|^8|^9",
  654. "squizlabs/php_codesniffer": "^3.5"
  655. },
  656. "type": "library",
  657. "extra": {
  658. "branch-alias": {
  659. "dev-master": "2.1-dev"
  660. },
  661. "laravel": {
  662. "providers": [
  663. "Fruitcake\\Cors\\CorsServiceProvider"
  664. ]
  665. }
  666. },
  667. "autoload": {
  668. "psr-4": {
  669. "Fruitcake\\Cors\\": "src/"
  670. }
  671. },
  672. "notification-url": "https://packagist.org/downloads/",
  673. "license": [
  674. "MIT"
  675. ],
  676. "authors": [
  677. {
  678. "name": "Fruitcake",
  679. "homepage": "https://fruitcake.nl"
  680. },
  681. {
  682. "name": "Barry vd. Heuvel",
  683. "email": "barryvdh@gmail.com"
  684. }
  685. ],
  686. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  687. "keywords": [
  688. "api",
  689. "cors",
  690. "crossdomain",
  691. "laravel"
  692. ],
  693. "support": {
  694. "issues": "https://github.com/fruitcake/laravel-cors/issues",
  695. "source": "https://github.com/fruitcake/laravel-cors/tree/v2.2.0"
  696. },
  697. "funding": [
  698. {
  699. "url": "https://fruitcake.nl",
  700. "type": "custom"
  701. },
  702. {
  703. "url": "https://github.com/barryvdh",
  704. "type": "github"
  705. }
  706. ],
  707. "abandoned": true,
  708. "time": "2022-02-23T14:25:13+00:00"
  709. },
  710. {
  711. "name": "guzzlehttp/guzzle",
  712. "version": "7.5.0",
  713. "source": {
  714. "type": "git",
  715. "url": "https://github.com/guzzle/guzzle.git",
  716. "reference": "b50a2a1251152e43f6a37f0fa053e730a67d25ba"
  717. },
  718. "dist": {
  719. "type": "zip",
  720. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/b50a2a1251152e43f6a37f0fa053e730a67d25ba",
  721. "reference": "b50a2a1251152e43f6a37f0fa053e730a67d25ba",
  722. "shasum": ""
  723. },
  724. "require": {
  725. "ext-json": "*",
  726. "guzzlehttp/promises": "^1.5",
  727. "guzzlehttp/psr7": "^1.9 || ^2.4",
  728. "php": "^7.2.5 || ^8.0",
  729. "psr/http-client": "^1.0",
  730. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  731. },
  732. "provide": {
  733. "psr/http-client-implementation": "1.0"
  734. },
  735. "require-dev": {
  736. "bamarni/composer-bin-plugin": "^1.8.1",
  737. "ext-curl": "*",
  738. "php-http/client-integration-tests": "^3.0",
  739. "phpunit/phpunit": "^8.5.29 || ^9.5.23",
  740. "psr/log": "^1.1 || ^2.0 || ^3.0"
  741. },
  742. "suggest": {
  743. "ext-curl": "Required for CURL handler support",
  744. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  745. "psr/log": "Required for using the Log middleware"
  746. },
  747. "type": "library",
  748. "extra": {
  749. "bamarni-bin": {
  750. "bin-links": true,
  751. "forward-command": false
  752. },
  753. "branch-alias": {
  754. "dev-master": "7.5-dev"
  755. }
  756. },
  757. "autoload": {
  758. "files": [
  759. "src/functions_include.php"
  760. ],
  761. "psr-4": {
  762. "GuzzleHttp\\": "src/"
  763. }
  764. },
  765. "notification-url": "https://packagist.org/downloads/",
  766. "license": [
  767. "MIT"
  768. ],
  769. "authors": [
  770. {
  771. "name": "Graham Campbell",
  772. "email": "hello@gjcampbell.co.uk",
  773. "homepage": "https://github.com/GrahamCampbell"
  774. },
  775. {
  776. "name": "Michael Dowling",
  777. "email": "mtdowling@gmail.com",
  778. "homepage": "https://github.com/mtdowling"
  779. },
  780. {
  781. "name": "Jeremy Lindblom",
  782. "email": "jeremeamia@gmail.com",
  783. "homepage": "https://github.com/jeremeamia"
  784. },
  785. {
  786. "name": "George Mponos",
  787. "email": "gmponos@gmail.com",
  788. "homepage": "https://github.com/gmponos"
  789. },
  790. {
  791. "name": "Tobias Nyholm",
  792. "email": "tobias.nyholm@gmail.com",
  793. "homepage": "https://github.com/Nyholm"
  794. },
  795. {
  796. "name": "Márk Sági-Kazár",
  797. "email": "mark.sagikazar@gmail.com",
  798. "homepage": "https://github.com/sagikazarmark"
  799. },
  800. {
  801. "name": "Tobias Schultze",
  802. "email": "webmaster@tubo-world.de",
  803. "homepage": "https://github.com/Tobion"
  804. }
  805. ],
  806. "description": "Guzzle is a PHP HTTP client library",
  807. "keywords": [
  808. "client",
  809. "curl",
  810. "framework",
  811. "http",
  812. "http client",
  813. "psr-18",
  814. "psr-7",
  815. "rest",
  816. "web service"
  817. ],
  818. "support": {
  819. "issues": "https://github.com/guzzle/guzzle/issues",
  820. "source": "https://github.com/guzzle/guzzle/tree/7.5.0"
  821. },
  822. "funding": [
  823. {
  824. "url": "https://github.com/GrahamCampbell",
  825. "type": "github"
  826. },
  827. {
  828. "url": "https://github.com/Nyholm",
  829. "type": "github"
  830. },
  831. {
  832. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  833. "type": "tidelift"
  834. }
  835. ],
  836. "time": "2022-08-28T15:39:27+00:00"
  837. },
  838. {
  839. "name": "guzzlehttp/promises",
  840. "version": "1.5.2",
  841. "source": {
  842. "type": "git",
  843. "url": "https://github.com/guzzle/promises.git",
  844. "reference": "b94b2807d85443f9719887892882d0329d1e2598"
  845. },
  846. "dist": {
  847. "type": "zip",
  848. "url": "https://api.github.com/repos/guzzle/promises/zipball/b94b2807d85443f9719887892882d0329d1e2598",
  849. "reference": "b94b2807d85443f9719887892882d0329d1e2598",
  850. "shasum": ""
  851. },
  852. "require": {
  853. "php": ">=5.5"
  854. },
  855. "require-dev": {
  856. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  857. },
  858. "type": "library",
  859. "extra": {
  860. "branch-alias": {
  861. "dev-master": "1.5-dev"
  862. }
  863. },
  864. "autoload": {
  865. "files": [
  866. "src/functions_include.php"
  867. ],
  868. "psr-4": {
  869. "GuzzleHttp\\Promise\\": "src/"
  870. }
  871. },
  872. "notification-url": "https://packagist.org/downloads/",
  873. "license": [
  874. "MIT"
  875. ],
  876. "authors": [
  877. {
  878. "name": "Graham Campbell",
  879. "email": "hello@gjcampbell.co.uk",
  880. "homepage": "https://github.com/GrahamCampbell"
  881. },
  882. {
  883. "name": "Michael Dowling",
  884. "email": "mtdowling@gmail.com",
  885. "homepage": "https://github.com/mtdowling"
  886. },
  887. {
  888. "name": "Tobias Nyholm",
  889. "email": "tobias.nyholm@gmail.com",
  890. "homepage": "https://github.com/Nyholm"
  891. },
  892. {
  893. "name": "Tobias Schultze",
  894. "email": "webmaster@tubo-world.de",
  895. "homepage": "https://github.com/Tobion"
  896. }
  897. ],
  898. "description": "Guzzle promises library",
  899. "keywords": [
  900. "promise"
  901. ],
  902. "support": {
  903. "issues": "https://github.com/guzzle/promises/issues",
  904. "source": "https://github.com/guzzle/promises/tree/1.5.2"
  905. },
  906. "funding": [
  907. {
  908. "url": "https://github.com/GrahamCampbell",
  909. "type": "github"
  910. },
  911. {
  912. "url": "https://github.com/Nyholm",
  913. "type": "github"
  914. },
  915. {
  916. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  917. "type": "tidelift"
  918. }
  919. ],
  920. "time": "2022-08-28T14:55:35+00:00"
  921. },
  922. {
  923. "name": "guzzlehttp/psr7",
  924. "version": "2.4.4",
  925. "source": {
  926. "type": "git",
  927. "url": "https://github.com/guzzle/psr7.git",
  928. "reference": "3cf1b6d4f0c820a2cf8bcaec39fc698f3443b5cf"
  929. },
  930. "dist": {
  931. "type": "zip",
  932. "url": "https://api.github.com/repos/guzzle/psr7/zipball/3cf1b6d4f0c820a2cf8bcaec39fc698f3443b5cf",
  933. "reference": "3cf1b6d4f0c820a2cf8bcaec39fc698f3443b5cf",
  934. "shasum": ""
  935. },
  936. "require": {
  937. "php": "^7.2.5 || ^8.0",
  938. "psr/http-factory": "^1.0",
  939. "psr/http-message": "^1.0",
  940. "ralouphie/getallheaders": "^3.0"
  941. },
  942. "provide": {
  943. "psr/http-factory-implementation": "1.0",
  944. "psr/http-message-implementation": "1.0"
  945. },
  946. "require-dev": {
  947. "bamarni/composer-bin-plugin": "^1.8.1",
  948. "http-interop/http-factory-tests": "^0.9",
  949. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  950. },
  951. "suggest": {
  952. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  953. },
  954. "type": "library",
  955. "extra": {
  956. "bamarni-bin": {
  957. "bin-links": true,
  958. "forward-command": false
  959. },
  960. "branch-alias": {
  961. "dev-master": "2.4-dev"
  962. }
  963. },
  964. "autoload": {
  965. "psr-4": {
  966. "GuzzleHttp\\Psr7\\": "src/"
  967. }
  968. },
  969. "notification-url": "https://packagist.org/downloads/",
  970. "license": [
  971. "MIT"
  972. ],
  973. "authors": [
  974. {
  975. "name": "Graham Campbell",
  976. "email": "hello@gjcampbell.co.uk",
  977. "homepage": "https://github.com/GrahamCampbell"
  978. },
  979. {
  980. "name": "Michael Dowling",
  981. "email": "mtdowling@gmail.com",
  982. "homepage": "https://github.com/mtdowling"
  983. },
  984. {
  985. "name": "George Mponos",
  986. "email": "gmponos@gmail.com",
  987. "homepage": "https://github.com/gmponos"
  988. },
  989. {
  990. "name": "Tobias Nyholm",
  991. "email": "tobias.nyholm@gmail.com",
  992. "homepage": "https://github.com/Nyholm"
  993. },
  994. {
  995. "name": "Márk Sági-Kazár",
  996. "email": "mark.sagikazar@gmail.com",
  997. "homepage": "https://github.com/sagikazarmark"
  998. },
  999. {
  1000. "name": "Tobias Schultze",
  1001. "email": "webmaster@tubo-world.de",
  1002. "homepage": "https://github.com/Tobion"
  1003. },
  1004. {
  1005. "name": "Márk Sági-Kazár",
  1006. "email": "mark.sagikazar@gmail.com",
  1007. "homepage": "https://sagikazarmark.hu"
  1008. }
  1009. ],
  1010. "description": "PSR-7 message implementation that also provides common utility methods",
  1011. "keywords": [
  1012. "http",
  1013. "message",
  1014. "psr-7",
  1015. "request",
  1016. "response",
  1017. "stream",
  1018. "uri",
  1019. "url"
  1020. ],
  1021. "support": {
  1022. "issues": "https://github.com/guzzle/psr7/issues",
  1023. "source": "https://github.com/guzzle/psr7/tree/2.4.4"
  1024. },
  1025. "funding": [
  1026. {
  1027. "url": "https://github.com/GrahamCampbell",
  1028. "type": "github"
  1029. },
  1030. {
  1031. "url": "https://github.com/Nyholm",
  1032. "type": "github"
  1033. },
  1034. {
  1035. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1036. "type": "tidelift"
  1037. }
  1038. ],
  1039. "time": "2023-03-09T13:19:02+00:00"
  1040. },
  1041. {
  1042. "name": "laravel/framework",
  1043. "version": "v7.30.6",
  1044. "source": {
  1045. "type": "git",
  1046. "url": "https://github.com/laravel/framework.git",
  1047. "reference": "ecdafad1dda3c790af186a6d18479ea4757ef9ee"
  1048. },
  1049. "dist": {
  1050. "type": "zip",
  1051. "url": "https://api.github.com/repos/laravel/framework/zipball/ecdafad1dda3c790af186a6d18479ea4757ef9ee",
  1052. "reference": "ecdafad1dda3c790af186a6d18479ea4757ef9ee",
  1053. "shasum": ""
  1054. },
  1055. "require": {
  1056. "doctrine/inflector": "^1.4|^2.0",
  1057. "dragonmantank/cron-expression": "^2.3.1",
  1058. "egulias/email-validator": "^2.1.10",
  1059. "ext-json": "*",
  1060. "ext-mbstring": "*",
  1061. "ext-openssl": "*",
  1062. "league/commonmark": "^1.3",
  1063. "league/flysystem": "^1.1",
  1064. "monolog/monolog": "^2.0",
  1065. "nesbot/carbon": "^2.31",
  1066. "opis/closure": "^3.6",
  1067. "php": "^7.2.5|^8.0",
  1068. "psr/container": "^1.0",
  1069. "psr/simple-cache": "^1.0",
  1070. "ramsey/uuid": "^3.7|^4.0",
  1071. "swiftmailer/swiftmailer": "^6.0",
  1072. "symfony/console": "^5.0",
  1073. "symfony/error-handler": "^5.0",
  1074. "symfony/finder": "^5.0",
  1075. "symfony/http-foundation": "^5.0",
  1076. "symfony/http-kernel": "^5.0",
  1077. "symfony/mime": "^5.0",
  1078. "symfony/polyfill-php73": "^1.17",
  1079. "symfony/process": "^5.0",
  1080. "symfony/routing": "^5.0",
  1081. "symfony/var-dumper": "^5.0",
  1082. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  1083. "vlucas/phpdotenv": "^4.0",
  1084. "voku/portable-ascii": "^1.4.8"
  1085. },
  1086. "conflict": {
  1087. "tightenco/collect": "<5.5.33"
  1088. },
  1089. "provide": {
  1090. "psr/container-implementation": "1.0"
  1091. },
  1092. "replace": {
  1093. "illuminate/auth": "self.version",
  1094. "illuminate/broadcasting": "self.version",
  1095. "illuminate/bus": "self.version",
  1096. "illuminate/cache": "self.version",
  1097. "illuminate/config": "self.version",
  1098. "illuminate/console": "self.version",
  1099. "illuminate/container": "self.version",
  1100. "illuminate/contracts": "self.version",
  1101. "illuminate/cookie": "self.version",
  1102. "illuminate/database": "self.version",
  1103. "illuminate/encryption": "self.version",
  1104. "illuminate/events": "self.version",
  1105. "illuminate/filesystem": "self.version",
  1106. "illuminate/hashing": "self.version",
  1107. "illuminate/http": "self.version",
  1108. "illuminate/log": "self.version",
  1109. "illuminate/mail": "self.version",
  1110. "illuminate/notifications": "self.version",
  1111. "illuminate/pagination": "self.version",
  1112. "illuminate/pipeline": "self.version",
  1113. "illuminate/queue": "self.version",
  1114. "illuminate/redis": "self.version",
  1115. "illuminate/routing": "self.version",
  1116. "illuminate/session": "self.version",
  1117. "illuminate/support": "self.version",
  1118. "illuminate/testing": "self.version",
  1119. "illuminate/translation": "self.version",
  1120. "illuminate/validation": "self.version",
  1121. "illuminate/view": "self.version"
  1122. },
  1123. "require-dev": {
  1124. "aws/aws-sdk-php": "^3.155",
  1125. "doctrine/dbal": "^2.6",
  1126. "filp/whoops": "^2.8",
  1127. "guzzlehttp/guzzle": "^6.3.1|^7.0.1",
  1128. "league/flysystem-cached-adapter": "^1.0",
  1129. "mockery/mockery": "~1.3.3|^1.4.2",
  1130. "moontoast/math": "^1.1",
  1131. "orchestra/testbench-core": "^5.8",
  1132. "pda/pheanstalk": "^4.0",
  1133. "phpunit/phpunit": "^8.4|^9.3.3",
  1134. "predis/predis": "^1.1.1",
  1135. "symfony/cache": "^5.0"
  1136. },
  1137. "suggest": {
  1138. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.155).",
  1139. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
  1140. "ext-ftp": "Required to use the Flysystem FTP driver.",
  1141. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  1142. "ext-memcached": "Required to use the memcache cache driver.",
  1143. "ext-pcntl": "Required to use all features of the queue worker.",
  1144. "ext-posix": "Required to use all features of the queue worker.",
  1145. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  1146. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  1147. "filp/whoops": "Required for friendly error pages in development (^2.8).",
  1148. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.3.1|^7.0.1).",
  1149. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  1150. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  1151. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  1152. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  1153. "mockery/mockery": "Required to use mocking (~1.3.3|^1.4.2).",
  1154. "moontoast/math": "Required to use ordered UUIDs (^1.1).",
  1155. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  1156. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  1157. "phpunit/phpunit": "Required to use assertions and run tests (^8.4|^9.3.3).",
  1158. "predis/predis": "Required to use the predis connector (^1.1.2).",
  1159. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  1160. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0).",
  1161. "symfony/cache": "Required to PSR-6 cache bridge (^5.0).",
  1162. "symfony/filesystem": "Required to create relative storage directory symbolic links (^5.0).",
  1163. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  1164. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  1165. },
  1166. "type": "library",
  1167. "extra": {
  1168. "branch-alias": {
  1169. "dev-master": "7.x-dev"
  1170. }
  1171. },
  1172. "autoload": {
  1173. "files": [
  1174. "src/Illuminate/Foundation/helpers.php",
  1175. "src/Illuminate/Support/helpers.php"
  1176. ],
  1177. "psr-4": {
  1178. "Illuminate\\": "src/Illuminate/"
  1179. }
  1180. },
  1181. "notification-url": "https://packagist.org/downloads/",
  1182. "license": [
  1183. "MIT"
  1184. ],
  1185. "authors": [
  1186. {
  1187. "name": "Taylor Otwell",
  1188. "email": "taylor@laravel.com"
  1189. }
  1190. ],
  1191. "description": "The Laravel Framework.",
  1192. "homepage": "https://laravel.com",
  1193. "keywords": [
  1194. "framework",
  1195. "laravel"
  1196. ],
  1197. "support": {
  1198. "issues": "https://github.com/laravel/framework/issues",
  1199. "source": "https://github.com/laravel/framework"
  1200. },
  1201. "time": "2021-12-07T14:56:47+00:00"
  1202. },
  1203. {
  1204. "name": "laravel/tinker",
  1205. "version": "v2.8.1",
  1206. "source": {
  1207. "type": "git",
  1208. "url": "https://github.com/laravel/tinker.git",
  1209. "reference": "04a2d3bd0d650c0764f70bf49d1ee39393e4eb10"
  1210. },
  1211. "dist": {
  1212. "type": "zip",
  1213. "url": "https://api.github.com/repos/laravel/tinker/zipball/04a2d3bd0d650c0764f70bf49d1ee39393e4eb10",
  1214. "reference": "04a2d3bd0d650c0764f70bf49d1ee39393e4eb10",
  1215. "shasum": ""
  1216. },
  1217. "require": {
  1218. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0",
  1219. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0",
  1220. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
  1221. "php": "^7.2.5|^8.0",
  1222. "psy/psysh": "^0.10.4|^0.11.1",
  1223. "symfony/var-dumper": "^4.3.4|^5.0|^6.0"
  1224. },
  1225. "require-dev": {
  1226. "mockery/mockery": "~1.3.3|^1.4.2",
  1227. "phpunit/phpunit": "^8.5.8|^9.3.3"
  1228. },
  1229. "suggest": {
  1230. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0)."
  1231. },
  1232. "type": "library",
  1233. "extra": {
  1234. "branch-alias": {
  1235. "dev-master": "2.x-dev"
  1236. },
  1237. "laravel": {
  1238. "providers": [
  1239. "Laravel\\Tinker\\TinkerServiceProvider"
  1240. ]
  1241. }
  1242. },
  1243. "autoload": {
  1244. "psr-4": {
  1245. "Laravel\\Tinker\\": "src/"
  1246. }
  1247. },
  1248. "notification-url": "https://packagist.org/downloads/",
  1249. "license": [
  1250. "MIT"
  1251. ],
  1252. "authors": [
  1253. {
  1254. "name": "Taylor Otwell",
  1255. "email": "taylor@laravel.com"
  1256. }
  1257. ],
  1258. "description": "Powerful REPL for the Laravel framework.",
  1259. "keywords": [
  1260. "REPL",
  1261. "Tinker",
  1262. "laravel",
  1263. "psysh"
  1264. ],
  1265. "support": {
  1266. "issues": "https://github.com/laravel/tinker/issues",
  1267. "source": "https://github.com/laravel/tinker/tree/v2.8.1"
  1268. },
  1269. "time": "2023-02-15T16:40:09+00:00"
  1270. },
  1271. {
  1272. "name": "laravel/ui",
  1273. "version": "v2.5.0",
  1274. "source": {
  1275. "type": "git",
  1276. "url": "https://github.com/laravel/ui.git",
  1277. "reference": "d01a705763c243b07be795e9d1bb47f89260f73d"
  1278. },
  1279. "dist": {
  1280. "type": "zip",
  1281. "url": "https://api.github.com/repos/laravel/ui/zipball/d01a705763c243b07be795e9d1bb47f89260f73d",
  1282. "reference": "d01a705763c243b07be795e9d1bb47f89260f73d",
  1283. "shasum": ""
  1284. },
  1285. "require": {
  1286. "illuminate/console": "^7.0",
  1287. "illuminate/filesystem": "^7.0",
  1288. "illuminate/support": "^7.0",
  1289. "php": "^7.2.5|^8.0"
  1290. },
  1291. "type": "library",
  1292. "extra": {
  1293. "laravel": {
  1294. "providers": [
  1295. "Laravel\\Ui\\UiServiceProvider"
  1296. ]
  1297. }
  1298. },
  1299. "autoload": {
  1300. "psr-4": {
  1301. "Laravel\\Ui\\": "src/",
  1302. "Illuminate\\Foundation\\Auth\\": "auth-backend/"
  1303. }
  1304. },
  1305. "notification-url": "https://packagist.org/downloads/",
  1306. "license": [
  1307. "MIT"
  1308. ],
  1309. "authors": [
  1310. {
  1311. "name": "Taylor Otwell",
  1312. "email": "taylor@laravel.com"
  1313. }
  1314. ],
  1315. "description": "Laravel UI utilities and presets.",
  1316. "keywords": [
  1317. "laravel",
  1318. "ui"
  1319. ],
  1320. "support": {
  1321. "issues": "https://github.com/laravel/ui/issues",
  1322. "source": "https://github.com/laravel/ui/tree/v2.5.0"
  1323. },
  1324. "time": "2020-11-03T19:45:19+00:00"
  1325. },
  1326. {
  1327. "name": "laravelcollective/html",
  1328. "version": "v6.4.0",
  1329. "source": {
  1330. "type": "git",
  1331. "url": "https://github.com/LaravelCollective/html.git",
  1332. "reference": "ac74f580459a5120079b8def0404e5d312a09504"
  1333. },
  1334. "dist": {
  1335. "type": "zip",
  1336. "url": "https://api.github.com/repos/LaravelCollective/html/zipball/ac74f580459a5120079b8def0404e5d312a09504",
  1337. "reference": "ac74f580459a5120079b8def0404e5d312a09504",
  1338. "shasum": ""
  1339. },
  1340. "require": {
  1341. "illuminate/http": "^6.0|^7.0|^8.0|^9.0|^10.0",
  1342. "illuminate/routing": "^6.0|^7.0|^8.0|^9.0|^10.0",
  1343. "illuminate/session": "^6.0|^7.0|^8.0|^9.0|^10.0",
  1344. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
  1345. "illuminate/view": "^6.0|^7.0|^8.0|^9.0|^10.0",
  1346. "php": ">=7.2.5"
  1347. },
  1348. "require-dev": {
  1349. "illuminate/database": "^6.0|^7.0|^8.0|^9.0|^10.0",
  1350. "mockery/mockery": "~1.0",
  1351. "phpunit/phpunit": "~8.5|^9.5.10"
  1352. },
  1353. "type": "library",
  1354. "extra": {
  1355. "branch-alias": {
  1356. "dev-master": "6.x-dev"
  1357. },
  1358. "laravel": {
  1359. "providers": [
  1360. "Collective\\Html\\HtmlServiceProvider"
  1361. ],
  1362. "aliases": {
  1363. "Form": "Collective\\Html\\FormFacade",
  1364. "Html": "Collective\\Html\\HtmlFacade"
  1365. }
  1366. }
  1367. },
  1368. "autoload": {
  1369. "files": [
  1370. "src/helpers.php"
  1371. ],
  1372. "psr-4": {
  1373. "Collective\\Html\\": "src/"
  1374. }
  1375. },
  1376. "notification-url": "https://packagist.org/downloads/",
  1377. "license": [
  1378. "MIT"
  1379. ],
  1380. "authors": [
  1381. {
  1382. "name": "Adam Engebretson",
  1383. "email": "adam@laravelcollective.com"
  1384. },
  1385. {
  1386. "name": "Taylor Otwell",
  1387. "email": "taylorotwell@gmail.com"
  1388. }
  1389. ],
  1390. "description": "HTML and Form Builders for the Laravel Framework",
  1391. "homepage": "https://laravelcollective.com",
  1392. "support": {
  1393. "issues": "https://github.com/LaravelCollective/html/issues",
  1394. "source": "https://github.com/LaravelCollective/html"
  1395. },
  1396. "time": "2023-02-13T18:15:35+00:00"
  1397. },
  1398. {
  1399. "name": "league/commonmark",
  1400. "version": "1.6.7",
  1401. "source": {
  1402. "type": "git",
  1403. "url": "https://github.com/thephpleague/commonmark.git",
  1404. "reference": "2b8185c13bc9578367a5bf901881d1c1b5bbd09b"
  1405. },
  1406. "dist": {
  1407. "type": "zip",
  1408. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/2b8185c13bc9578367a5bf901881d1c1b5bbd09b",
  1409. "reference": "2b8185c13bc9578367a5bf901881d1c1b5bbd09b",
  1410. "shasum": ""
  1411. },
  1412. "require": {
  1413. "ext-mbstring": "*",
  1414. "php": "^7.1 || ^8.0"
  1415. },
  1416. "conflict": {
  1417. "scrutinizer/ocular": "1.7.*"
  1418. },
  1419. "require-dev": {
  1420. "cebe/markdown": "~1.0",
  1421. "commonmark/commonmark.js": "0.29.2",
  1422. "erusev/parsedown": "~1.0",
  1423. "ext-json": "*",
  1424. "github/gfm": "0.29.0",
  1425. "michelf/php-markdown": "~1.4",
  1426. "mikehaertl/php-shellcommand": "^1.4",
  1427. "phpstan/phpstan": "^0.12.90",
  1428. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.2",
  1429. "scrutinizer/ocular": "^1.5",
  1430. "symfony/finder": "^4.2"
  1431. },
  1432. "bin": [
  1433. "bin/commonmark"
  1434. ],
  1435. "type": "library",
  1436. "autoload": {
  1437. "psr-4": {
  1438. "League\\CommonMark\\": "src"
  1439. }
  1440. },
  1441. "notification-url": "https://packagist.org/downloads/",
  1442. "license": [
  1443. "BSD-3-Clause"
  1444. ],
  1445. "authors": [
  1446. {
  1447. "name": "Colin O'Dell",
  1448. "email": "colinodell@gmail.com",
  1449. "homepage": "https://www.colinodell.com",
  1450. "role": "Lead Developer"
  1451. }
  1452. ],
  1453. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and Github-Flavored Markdown (GFM)",
  1454. "homepage": "https://commonmark.thephpleague.com",
  1455. "keywords": [
  1456. "commonmark",
  1457. "flavored",
  1458. "gfm",
  1459. "github",
  1460. "github-flavored",
  1461. "markdown",
  1462. "md",
  1463. "parser"
  1464. ],
  1465. "support": {
  1466. "docs": "https://commonmark.thephpleague.com/",
  1467. "issues": "https://github.com/thephpleague/commonmark/issues",
  1468. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  1469. "source": "https://github.com/thephpleague/commonmark"
  1470. },
  1471. "funding": [
  1472. {
  1473. "url": "https://www.colinodell.com/sponsor",
  1474. "type": "custom"
  1475. },
  1476. {
  1477. "url": "https://www.paypal.me/colinpodell/10.00",
  1478. "type": "custom"
  1479. },
  1480. {
  1481. "url": "https://github.com/colinodell",
  1482. "type": "github"
  1483. },
  1484. {
  1485. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  1486. "type": "tidelift"
  1487. }
  1488. ],
  1489. "time": "2022-01-13T17:18:13+00:00"
  1490. },
  1491. {
  1492. "name": "league/flysystem",
  1493. "version": "1.1.10",
  1494. "source": {
  1495. "type": "git",
  1496. "url": "https://github.com/thephpleague/flysystem.git",
  1497. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1"
  1498. },
  1499. "dist": {
  1500. "type": "zip",
  1501. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/3239285c825c152bcc315fe0e87d6b55f5972ed1",
  1502. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1",
  1503. "shasum": ""
  1504. },
  1505. "require": {
  1506. "ext-fileinfo": "*",
  1507. "league/mime-type-detection": "^1.3",
  1508. "php": "^7.2.5 || ^8.0"
  1509. },
  1510. "conflict": {
  1511. "league/flysystem-sftp": "<1.0.6"
  1512. },
  1513. "require-dev": {
  1514. "phpspec/prophecy": "^1.11.1",
  1515. "phpunit/phpunit": "^8.5.8"
  1516. },
  1517. "suggest": {
  1518. "ext-ftp": "Allows you to use FTP server storage",
  1519. "ext-openssl": "Allows you to use FTPS server storage",
  1520. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  1521. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  1522. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  1523. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  1524. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  1525. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  1526. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  1527. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  1528. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  1529. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  1530. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  1531. },
  1532. "type": "library",
  1533. "extra": {
  1534. "branch-alias": {
  1535. "dev-master": "1.1-dev"
  1536. }
  1537. },
  1538. "autoload": {
  1539. "psr-4": {
  1540. "League\\Flysystem\\": "src/"
  1541. }
  1542. },
  1543. "notification-url": "https://packagist.org/downloads/",
  1544. "license": [
  1545. "MIT"
  1546. ],
  1547. "authors": [
  1548. {
  1549. "name": "Frank de Jonge",
  1550. "email": "info@frenky.net"
  1551. }
  1552. ],
  1553. "description": "Filesystem abstraction: Many filesystems, one API.",
  1554. "keywords": [
  1555. "Cloud Files",
  1556. "WebDAV",
  1557. "abstraction",
  1558. "aws",
  1559. "cloud",
  1560. "copy.com",
  1561. "dropbox",
  1562. "file systems",
  1563. "files",
  1564. "filesystem",
  1565. "filesystems",
  1566. "ftp",
  1567. "rackspace",
  1568. "remote",
  1569. "s3",
  1570. "sftp",
  1571. "storage"
  1572. ],
  1573. "support": {
  1574. "issues": "https://github.com/thephpleague/flysystem/issues",
  1575. "source": "https://github.com/thephpleague/flysystem/tree/1.1.10"
  1576. },
  1577. "funding": [
  1578. {
  1579. "url": "https://offset.earth/frankdejonge",
  1580. "type": "other"
  1581. }
  1582. ],
  1583. "time": "2022-10-04T09:16:37+00:00"
  1584. },
  1585. {
  1586. "name": "league/flysystem-aws-s3-v3",
  1587. "version": "1.0.30",
  1588. "source": {
  1589. "type": "git",
  1590. "url": "https://github.com/thephpleague/flysystem-aws-s3-v3.git",
  1591. "reference": "af286f291ebab6877bac0c359c6c2cb017eb061d"
  1592. },
  1593. "dist": {
  1594. "type": "zip",
  1595. "url": "https://api.github.com/repos/thephpleague/flysystem-aws-s3-v3/zipball/af286f291ebab6877bac0c359c6c2cb017eb061d",
  1596. "reference": "af286f291ebab6877bac0c359c6c2cb017eb061d",
  1597. "shasum": ""
  1598. },
  1599. "require": {
  1600. "aws/aws-sdk-php": "^3.20.0",
  1601. "league/flysystem": "^1.0.40",
  1602. "php": ">=5.5.0"
  1603. },
  1604. "require-dev": {
  1605. "henrikbjorn/phpspec-code-coverage": "~1.0.1",
  1606. "phpspec/phpspec": "^2.0.0"
  1607. },
  1608. "type": "library",
  1609. "extra": {
  1610. "branch-alias": {
  1611. "dev-master": "1.0-dev"
  1612. }
  1613. },
  1614. "autoload": {
  1615. "psr-4": {
  1616. "League\\Flysystem\\AwsS3v3\\": "src/"
  1617. }
  1618. },
  1619. "notification-url": "https://packagist.org/downloads/",
  1620. "license": [
  1621. "MIT"
  1622. ],
  1623. "authors": [
  1624. {
  1625. "name": "Frank de Jonge",
  1626. "email": "info@frenky.net"
  1627. }
  1628. ],
  1629. "description": "Flysystem adapter for the AWS S3 SDK v3.x",
  1630. "support": {
  1631. "issues": "https://github.com/thephpleague/flysystem-aws-s3-v3/issues",
  1632. "source": "https://github.com/thephpleague/flysystem-aws-s3-v3/tree/1.0.30"
  1633. },
  1634. "funding": [
  1635. {
  1636. "url": "https://offset.earth/frankdejonge",
  1637. "type": "custom"
  1638. },
  1639. {
  1640. "url": "https://github.com/frankdejonge",
  1641. "type": "github"
  1642. },
  1643. {
  1644. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  1645. "type": "tidelift"
  1646. }
  1647. ],
  1648. "time": "2022-07-02T13:51:38+00:00"
  1649. },
  1650. {
  1651. "name": "league/mime-type-detection",
  1652. "version": "1.11.0",
  1653. "source": {
  1654. "type": "git",
  1655. "url": "https://github.com/thephpleague/mime-type-detection.git",
  1656. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd"
  1657. },
  1658. "dist": {
  1659. "type": "zip",
  1660. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  1661. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  1662. "shasum": ""
  1663. },
  1664. "require": {
  1665. "ext-fileinfo": "*",
  1666. "php": "^7.2 || ^8.0"
  1667. },
  1668. "require-dev": {
  1669. "friendsofphp/php-cs-fixer": "^3.2",
  1670. "phpstan/phpstan": "^0.12.68",
  1671. "phpunit/phpunit": "^8.5.8 || ^9.3"
  1672. },
  1673. "type": "library",
  1674. "autoload": {
  1675. "psr-4": {
  1676. "League\\MimeTypeDetection\\": "src"
  1677. }
  1678. },
  1679. "notification-url": "https://packagist.org/downloads/",
  1680. "license": [
  1681. "MIT"
  1682. ],
  1683. "authors": [
  1684. {
  1685. "name": "Frank de Jonge",
  1686. "email": "info@frankdejonge.nl"
  1687. }
  1688. ],
  1689. "description": "Mime-type detection for Flysystem",
  1690. "support": {
  1691. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  1692. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.11.0"
  1693. },
  1694. "funding": [
  1695. {
  1696. "url": "https://github.com/frankdejonge",
  1697. "type": "github"
  1698. },
  1699. {
  1700. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  1701. "type": "tidelift"
  1702. }
  1703. ],
  1704. "time": "2022-04-17T13:12:02+00:00"
  1705. },
  1706. {
  1707. "name": "monolog/monolog",
  1708. "version": "2.9.1",
  1709. "source": {
  1710. "type": "git",
  1711. "url": "https://github.com/Seldaek/monolog.git",
  1712. "reference": "f259e2b15fb95494c83f52d3caad003bbf5ffaa1"
  1713. },
  1714. "dist": {
  1715. "type": "zip",
  1716. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f259e2b15fb95494c83f52d3caad003bbf5ffaa1",
  1717. "reference": "f259e2b15fb95494c83f52d3caad003bbf5ffaa1",
  1718. "shasum": ""
  1719. },
  1720. "require": {
  1721. "php": ">=7.2",
  1722. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  1723. },
  1724. "provide": {
  1725. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  1726. },
  1727. "require-dev": {
  1728. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1729. "doctrine/couchdb": "~1.0@dev",
  1730. "elasticsearch/elasticsearch": "^7 || ^8",
  1731. "ext-json": "*",
  1732. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  1733. "guzzlehttp/guzzle": "^7.4",
  1734. "guzzlehttp/psr7": "^2.2",
  1735. "mongodb/mongodb": "^1.8",
  1736. "php-amqplib/php-amqplib": "~2.4 || ^3",
  1737. "phpspec/prophecy": "^1.15",
  1738. "phpstan/phpstan": "^0.12.91",
  1739. "phpunit/phpunit": "^8.5.14",
  1740. "predis/predis": "^1.1 || ^2.0",
  1741. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  1742. "ruflin/elastica": "^7",
  1743. "swiftmailer/swiftmailer": "^5.3|^6.0",
  1744. "symfony/mailer": "^5.4 || ^6",
  1745. "symfony/mime": "^5.4 || ^6"
  1746. },
  1747. "suggest": {
  1748. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1749. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1750. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  1751. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1752. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  1753. "ext-mbstring": "Allow to work properly with unicode symbols",
  1754. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  1755. "ext-openssl": "Required to send log messages using SSL",
  1756. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  1757. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1758. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  1759. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1760. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1761. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  1762. },
  1763. "type": "library",
  1764. "extra": {
  1765. "branch-alias": {
  1766. "dev-main": "2.x-dev"
  1767. }
  1768. },
  1769. "autoload": {
  1770. "psr-4": {
  1771. "Monolog\\": "src/Monolog"
  1772. }
  1773. },
  1774. "notification-url": "https://packagist.org/downloads/",
  1775. "license": [
  1776. "MIT"
  1777. ],
  1778. "authors": [
  1779. {
  1780. "name": "Jordi Boggiano",
  1781. "email": "j.boggiano@seld.be",
  1782. "homepage": "https://seld.be"
  1783. }
  1784. ],
  1785. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1786. "homepage": "https://github.com/Seldaek/monolog",
  1787. "keywords": [
  1788. "log",
  1789. "logging",
  1790. "psr-3"
  1791. ],
  1792. "support": {
  1793. "issues": "https://github.com/Seldaek/monolog/issues",
  1794. "source": "https://github.com/Seldaek/monolog/tree/2.9.1"
  1795. },
  1796. "funding": [
  1797. {
  1798. "url": "https://github.com/Seldaek",
  1799. "type": "github"
  1800. },
  1801. {
  1802. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  1803. "type": "tidelift"
  1804. }
  1805. ],
  1806. "time": "2023-02-06T13:44:46+00:00"
  1807. },
  1808. {
  1809. "name": "mtdowling/jmespath.php",
  1810. "version": "2.6.1",
  1811. "source": {
  1812. "type": "git",
  1813. "url": "https://github.com/jmespath/jmespath.php.git",
  1814. "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb"
  1815. },
  1816. "dist": {
  1817. "type": "zip",
  1818. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
  1819. "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
  1820. "shasum": ""
  1821. },
  1822. "require": {
  1823. "php": "^5.4 || ^7.0 || ^8.0",
  1824. "symfony/polyfill-mbstring": "^1.17"
  1825. },
  1826. "require-dev": {
  1827. "composer/xdebug-handler": "^1.4 || ^2.0",
  1828. "phpunit/phpunit": "^4.8.36 || ^7.5.15"
  1829. },
  1830. "bin": [
  1831. "bin/jp.php"
  1832. ],
  1833. "type": "library",
  1834. "extra": {
  1835. "branch-alias": {
  1836. "dev-master": "2.6-dev"
  1837. }
  1838. },
  1839. "autoload": {
  1840. "files": [
  1841. "src/JmesPath.php"
  1842. ],
  1843. "psr-4": {
  1844. "JmesPath\\": "src/"
  1845. }
  1846. },
  1847. "notification-url": "https://packagist.org/downloads/",
  1848. "license": [
  1849. "MIT"
  1850. ],
  1851. "authors": [
  1852. {
  1853. "name": "Michael Dowling",
  1854. "email": "mtdowling@gmail.com",
  1855. "homepage": "https://github.com/mtdowling"
  1856. }
  1857. ],
  1858. "description": "Declaratively specify how to extract elements from a JSON document",
  1859. "keywords": [
  1860. "json",
  1861. "jsonpath"
  1862. ],
  1863. "support": {
  1864. "issues": "https://github.com/jmespath/jmespath.php/issues",
  1865. "source": "https://github.com/jmespath/jmespath.php/tree/2.6.1"
  1866. },
  1867. "time": "2021-06-14T00:11:39+00:00"
  1868. },
  1869. {
  1870. "name": "nesbot/carbon",
  1871. "version": "2.66.0",
  1872. "source": {
  1873. "type": "git",
  1874. "url": "https://github.com/briannesbitt/Carbon.git",
  1875. "reference": "496712849902241f04902033b0441b269effe001"
  1876. },
  1877. "dist": {
  1878. "type": "zip",
  1879. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/496712849902241f04902033b0441b269effe001",
  1880. "reference": "496712849902241f04902033b0441b269effe001",
  1881. "shasum": ""
  1882. },
  1883. "require": {
  1884. "ext-json": "*",
  1885. "php": "^7.1.8 || ^8.0",
  1886. "symfony/polyfill-mbstring": "^1.0",
  1887. "symfony/polyfill-php80": "^1.16",
  1888. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  1889. },
  1890. "require-dev": {
  1891. "doctrine/dbal": "^2.0 || ^3.1.4",
  1892. "doctrine/orm": "^2.7",
  1893. "friendsofphp/php-cs-fixer": "^3.0",
  1894. "kylekatarnls/multi-tester": "^2.0",
  1895. "ondrejmirtes/better-reflection": "*",
  1896. "phpmd/phpmd": "^2.9",
  1897. "phpstan/extension-installer": "^1.0",
  1898. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  1899. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  1900. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  1901. "squizlabs/php_codesniffer": "^3.4"
  1902. },
  1903. "bin": [
  1904. "bin/carbon"
  1905. ],
  1906. "type": "library",
  1907. "extra": {
  1908. "branch-alias": {
  1909. "dev-3.x": "3.x-dev",
  1910. "dev-master": "2.x-dev"
  1911. },
  1912. "laravel": {
  1913. "providers": [
  1914. "Carbon\\Laravel\\ServiceProvider"
  1915. ]
  1916. },
  1917. "phpstan": {
  1918. "includes": [
  1919. "extension.neon"
  1920. ]
  1921. }
  1922. },
  1923. "autoload": {
  1924. "psr-4": {
  1925. "Carbon\\": "src/Carbon/"
  1926. }
  1927. },
  1928. "notification-url": "https://packagist.org/downloads/",
  1929. "license": [
  1930. "MIT"
  1931. ],
  1932. "authors": [
  1933. {
  1934. "name": "Brian Nesbitt",
  1935. "email": "brian@nesbot.com",
  1936. "homepage": "https://markido.com"
  1937. },
  1938. {
  1939. "name": "kylekatarnls",
  1940. "homepage": "https://github.com/kylekatarnls"
  1941. }
  1942. ],
  1943. "description": "An API extension for DateTime that supports 281 different languages.",
  1944. "homepage": "https://carbon.nesbot.com",
  1945. "keywords": [
  1946. "date",
  1947. "datetime",
  1948. "time"
  1949. ],
  1950. "support": {
  1951. "docs": "https://carbon.nesbot.com/docs",
  1952. "issues": "https://github.com/briannesbitt/Carbon/issues",
  1953. "source": "https://github.com/briannesbitt/Carbon"
  1954. },
  1955. "funding": [
  1956. {
  1957. "url": "https://github.com/sponsors/kylekatarnls",
  1958. "type": "github"
  1959. },
  1960. {
  1961. "url": "https://opencollective.com/Carbon#sponsor",
  1962. "type": "opencollective"
  1963. },
  1964. {
  1965. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  1966. "type": "tidelift"
  1967. }
  1968. ],
  1969. "time": "2023-01-29T18:53:47+00:00"
  1970. },
  1971. {
  1972. "name": "nikic/php-parser",
  1973. "version": "v4.15.4",
  1974. "source": {
  1975. "type": "git",
  1976. "url": "https://github.com/nikic/PHP-Parser.git",
  1977. "reference": "6bb5176bc4af8bcb7d926f88718db9b96a2d4290"
  1978. },
  1979. "dist": {
  1980. "type": "zip",
  1981. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/6bb5176bc4af8bcb7d926f88718db9b96a2d4290",
  1982. "reference": "6bb5176bc4af8bcb7d926f88718db9b96a2d4290",
  1983. "shasum": ""
  1984. },
  1985. "require": {
  1986. "ext-tokenizer": "*",
  1987. "php": ">=7.0"
  1988. },
  1989. "require-dev": {
  1990. "ircmaxell/php-yacc": "^0.0.7",
  1991. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  1992. },
  1993. "bin": [
  1994. "bin/php-parse"
  1995. ],
  1996. "type": "library",
  1997. "extra": {
  1998. "branch-alias": {
  1999. "dev-master": "4.9-dev"
  2000. }
  2001. },
  2002. "autoload": {
  2003. "psr-4": {
  2004. "PhpParser\\": "lib/PhpParser"
  2005. }
  2006. },
  2007. "notification-url": "https://packagist.org/downloads/",
  2008. "license": [
  2009. "BSD-3-Clause"
  2010. ],
  2011. "authors": [
  2012. {
  2013. "name": "Nikita Popov"
  2014. }
  2015. ],
  2016. "description": "A PHP parser written in PHP",
  2017. "keywords": [
  2018. "parser",
  2019. "php"
  2020. ],
  2021. "support": {
  2022. "issues": "https://github.com/nikic/PHP-Parser/issues",
  2023. "source": "https://github.com/nikic/PHP-Parser/tree/v4.15.4"
  2024. },
  2025. "time": "2023-03-05T19:49:14+00:00"
  2026. },
  2027. {
  2028. "name": "opis/closure",
  2029. "version": "3.6.3",
  2030. "source": {
  2031. "type": "git",
  2032. "url": "https://github.com/opis/closure.git",
  2033. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad"
  2034. },
  2035. "dist": {
  2036. "type": "zip",
  2037. "url": "https://api.github.com/repos/opis/closure/zipball/3d81e4309d2a927abbe66df935f4bb60082805ad",
  2038. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad",
  2039. "shasum": ""
  2040. },
  2041. "require": {
  2042. "php": "^5.4 || ^7.0 || ^8.0"
  2043. },
  2044. "require-dev": {
  2045. "jeremeamia/superclosure": "^2.0",
  2046. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  2047. },
  2048. "type": "library",
  2049. "extra": {
  2050. "branch-alias": {
  2051. "dev-master": "3.6.x-dev"
  2052. }
  2053. },
  2054. "autoload": {
  2055. "files": [
  2056. "functions.php"
  2057. ],
  2058. "psr-4": {
  2059. "Opis\\Closure\\": "src/"
  2060. }
  2061. },
  2062. "notification-url": "https://packagist.org/downloads/",
  2063. "license": [
  2064. "MIT"
  2065. ],
  2066. "authors": [
  2067. {
  2068. "name": "Marius Sarca",
  2069. "email": "marius.sarca@gmail.com"
  2070. },
  2071. {
  2072. "name": "Sorin Sarca",
  2073. "email": "sarca_sorin@hotmail.com"
  2074. }
  2075. ],
  2076. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  2077. "homepage": "https://opis.io/closure",
  2078. "keywords": [
  2079. "anonymous functions",
  2080. "closure",
  2081. "function",
  2082. "serializable",
  2083. "serialization",
  2084. "serialize"
  2085. ],
  2086. "support": {
  2087. "issues": "https://github.com/opis/closure/issues",
  2088. "source": "https://github.com/opis/closure/tree/3.6.3"
  2089. },
  2090. "time": "2022-01-27T09:35:39+00:00"
  2091. },
  2092. {
  2093. "name": "phpoption/phpoption",
  2094. "version": "1.9.1",
  2095. "source": {
  2096. "type": "git",
  2097. "url": "https://github.com/schmittjoh/php-option.git",
  2098. "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e"
  2099. },
  2100. "dist": {
  2101. "type": "zip",
  2102. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/dd3a383e599f49777d8b628dadbb90cae435b87e",
  2103. "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e",
  2104. "shasum": ""
  2105. },
  2106. "require": {
  2107. "php": "^7.2.5 || ^8.0"
  2108. },
  2109. "require-dev": {
  2110. "bamarni/composer-bin-plugin": "^1.8.2",
  2111. "phpunit/phpunit": "^8.5.32 || ^9.6.3 || ^10.0.12"
  2112. },
  2113. "type": "library",
  2114. "extra": {
  2115. "bamarni-bin": {
  2116. "bin-links": true,
  2117. "forward-command": true
  2118. },
  2119. "branch-alias": {
  2120. "dev-master": "1.9-dev"
  2121. }
  2122. },
  2123. "autoload": {
  2124. "psr-4": {
  2125. "PhpOption\\": "src/PhpOption/"
  2126. }
  2127. },
  2128. "notification-url": "https://packagist.org/downloads/",
  2129. "license": [
  2130. "Apache-2.0"
  2131. ],
  2132. "authors": [
  2133. {
  2134. "name": "Johannes M. Schmitt",
  2135. "email": "schmittjoh@gmail.com",
  2136. "homepage": "https://github.com/schmittjoh"
  2137. },
  2138. {
  2139. "name": "Graham Campbell",
  2140. "email": "hello@gjcampbell.co.uk",
  2141. "homepage": "https://github.com/GrahamCampbell"
  2142. }
  2143. ],
  2144. "description": "Option Type for PHP",
  2145. "keywords": [
  2146. "language",
  2147. "option",
  2148. "php",
  2149. "type"
  2150. ],
  2151. "support": {
  2152. "issues": "https://github.com/schmittjoh/php-option/issues",
  2153. "source": "https://github.com/schmittjoh/php-option/tree/1.9.1"
  2154. },
  2155. "funding": [
  2156. {
  2157. "url": "https://github.com/GrahamCampbell",
  2158. "type": "github"
  2159. },
  2160. {
  2161. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  2162. "type": "tidelift"
  2163. }
  2164. ],
  2165. "time": "2023-02-25T19:38:58+00:00"
  2166. },
  2167. {
  2168. "name": "psr/container",
  2169. "version": "1.1.2",
  2170. "source": {
  2171. "type": "git",
  2172. "url": "https://github.com/php-fig/container.git",
  2173. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  2174. },
  2175. "dist": {
  2176. "type": "zip",
  2177. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  2178. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  2179. "shasum": ""
  2180. },
  2181. "require": {
  2182. "php": ">=7.4.0"
  2183. },
  2184. "type": "library",
  2185. "autoload": {
  2186. "psr-4": {
  2187. "Psr\\Container\\": "src/"
  2188. }
  2189. },
  2190. "notification-url": "https://packagist.org/downloads/",
  2191. "license": [
  2192. "MIT"
  2193. ],
  2194. "authors": [
  2195. {
  2196. "name": "PHP-FIG",
  2197. "homepage": "https://www.php-fig.org/"
  2198. }
  2199. ],
  2200. "description": "Common Container Interface (PHP FIG PSR-11)",
  2201. "homepage": "https://github.com/php-fig/container",
  2202. "keywords": [
  2203. "PSR-11",
  2204. "container",
  2205. "container-interface",
  2206. "container-interop",
  2207. "psr"
  2208. ],
  2209. "support": {
  2210. "issues": "https://github.com/php-fig/container/issues",
  2211. "source": "https://github.com/php-fig/container/tree/1.1.2"
  2212. },
  2213. "time": "2021-11-05T16:50:12+00:00"
  2214. },
  2215. {
  2216. "name": "psr/event-dispatcher",
  2217. "version": "1.0.0",
  2218. "source": {
  2219. "type": "git",
  2220. "url": "https://github.com/php-fig/event-dispatcher.git",
  2221. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  2222. },
  2223. "dist": {
  2224. "type": "zip",
  2225. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2226. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2227. "shasum": ""
  2228. },
  2229. "require": {
  2230. "php": ">=7.2.0"
  2231. },
  2232. "type": "library",
  2233. "extra": {
  2234. "branch-alias": {
  2235. "dev-master": "1.0.x-dev"
  2236. }
  2237. },
  2238. "autoload": {
  2239. "psr-4": {
  2240. "Psr\\EventDispatcher\\": "src/"
  2241. }
  2242. },
  2243. "notification-url": "https://packagist.org/downloads/",
  2244. "license": [
  2245. "MIT"
  2246. ],
  2247. "authors": [
  2248. {
  2249. "name": "PHP-FIG",
  2250. "homepage": "http://www.php-fig.org/"
  2251. }
  2252. ],
  2253. "description": "Standard interfaces for event handling.",
  2254. "keywords": [
  2255. "events",
  2256. "psr",
  2257. "psr-14"
  2258. ],
  2259. "support": {
  2260. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  2261. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  2262. },
  2263. "time": "2019-01-08T18:20:26+00:00"
  2264. },
  2265. {
  2266. "name": "psr/http-client",
  2267. "version": "1.0.1",
  2268. "source": {
  2269. "type": "git",
  2270. "url": "https://github.com/php-fig/http-client.git",
  2271. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  2272. },
  2273. "dist": {
  2274. "type": "zip",
  2275. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  2276. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  2277. "shasum": ""
  2278. },
  2279. "require": {
  2280. "php": "^7.0 || ^8.0",
  2281. "psr/http-message": "^1.0"
  2282. },
  2283. "type": "library",
  2284. "extra": {
  2285. "branch-alias": {
  2286. "dev-master": "1.0.x-dev"
  2287. }
  2288. },
  2289. "autoload": {
  2290. "psr-4": {
  2291. "Psr\\Http\\Client\\": "src/"
  2292. }
  2293. },
  2294. "notification-url": "https://packagist.org/downloads/",
  2295. "license": [
  2296. "MIT"
  2297. ],
  2298. "authors": [
  2299. {
  2300. "name": "PHP-FIG",
  2301. "homepage": "http://www.php-fig.org/"
  2302. }
  2303. ],
  2304. "description": "Common interface for HTTP clients",
  2305. "homepage": "https://github.com/php-fig/http-client",
  2306. "keywords": [
  2307. "http",
  2308. "http-client",
  2309. "psr",
  2310. "psr-18"
  2311. ],
  2312. "support": {
  2313. "source": "https://github.com/php-fig/http-client/tree/master"
  2314. },
  2315. "time": "2020-06-29T06:28:15+00:00"
  2316. },
  2317. {
  2318. "name": "psr/http-factory",
  2319. "version": "1.0.1",
  2320. "source": {
  2321. "type": "git",
  2322. "url": "https://github.com/php-fig/http-factory.git",
  2323. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  2324. },
  2325. "dist": {
  2326. "type": "zip",
  2327. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  2328. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  2329. "shasum": ""
  2330. },
  2331. "require": {
  2332. "php": ">=7.0.0",
  2333. "psr/http-message": "^1.0"
  2334. },
  2335. "type": "library",
  2336. "extra": {
  2337. "branch-alias": {
  2338. "dev-master": "1.0.x-dev"
  2339. }
  2340. },
  2341. "autoload": {
  2342. "psr-4": {
  2343. "Psr\\Http\\Message\\": "src/"
  2344. }
  2345. },
  2346. "notification-url": "https://packagist.org/downloads/",
  2347. "license": [
  2348. "MIT"
  2349. ],
  2350. "authors": [
  2351. {
  2352. "name": "PHP-FIG",
  2353. "homepage": "http://www.php-fig.org/"
  2354. }
  2355. ],
  2356. "description": "Common interfaces for PSR-7 HTTP message factories",
  2357. "keywords": [
  2358. "factory",
  2359. "http",
  2360. "message",
  2361. "psr",
  2362. "psr-17",
  2363. "psr-7",
  2364. "request",
  2365. "response"
  2366. ],
  2367. "support": {
  2368. "source": "https://github.com/php-fig/http-factory/tree/master"
  2369. },
  2370. "time": "2019-04-30T12:38:16+00:00"
  2371. },
  2372. {
  2373. "name": "psr/http-message",
  2374. "version": "1.0.1",
  2375. "source": {
  2376. "type": "git",
  2377. "url": "https://github.com/php-fig/http-message.git",
  2378. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  2379. },
  2380. "dist": {
  2381. "type": "zip",
  2382. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  2383. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  2384. "shasum": ""
  2385. },
  2386. "require": {
  2387. "php": ">=5.3.0"
  2388. },
  2389. "type": "library",
  2390. "extra": {
  2391. "branch-alias": {
  2392. "dev-master": "1.0.x-dev"
  2393. }
  2394. },
  2395. "autoload": {
  2396. "psr-4": {
  2397. "Psr\\Http\\Message\\": "src/"
  2398. }
  2399. },
  2400. "notification-url": "https://packagist.org/downloads/",
  2401. "license": [
  2402. "MIT"
  2403. ],
  2404. "authors": [
  2405. {
  2406. "name": "PHP-FIG",
  2407. "homepage": "http://www.php-fig.org/"
  2408. }
  2409. ],
  2410. "description": "Common interface for HTTP messages",
  2411. "homepage": "https://github.com/php-fig/http-message",
  2412. "keywords": [
  2413. "http",
  2414. "http-message",
  2415. "psr",
  2416. "psr-7",
  2417. "request",
  2418. "response"
  2419. ],
  2420. "support": {
  2421. "source": "https://github.com/php-fig/http-message/tree/master"
  2422. },
  2423. "time": "2016-08-06T14:39:51+00:00"
  2424. },
  2425. {
  2426. "name": "psr/log",
  2427. "version": "1.1.4",
  2428. "source": {
  2429. "type": "git",
  2430. "url": "https://github.com/php-fig/log.git",
  2431. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  2432. },
  2433. "dist": {
  2434. "type": "zip",
  2435. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  2436. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  2437. "shasum": ""
  2438. },
  2439. "require": {
  2440. "php": ">=5.3.0"
  2441. },
  2442. "type": "library",
  2443. "extra": {
  2444. "branch-alias": {
  2445. "dev-master": "1.1.x-dev"
  2446. }
  2447. },
  2448. "autoload": {
  2449. "psr-4": {
  2450. "Psr\\Log\\": "Psr/Log/"
  2451. }
  2452. },
  2453. "notification-url": "https://packagist.org/downloads/",
  2454. "license": [
  2455. "MIT"
  2456. ],
  2457. "authors": [
  2458. {
  2459. "name": "PHP-FIG",
  2460. "homepage": "https://www.php-fig.org/"
  2461. }
  2462. ],
  2463. "description": "Common interface for logging libraries",
  2464. "homepage": "https://github.com/php-fig/log",
  2465. "keywords": [
  2466. "log",
  2467. "psr",
  2468. "psr-3"
  2469. ],
  2470. "support": {
  2471. "source": "https://github.com/php-fig/log/tree/1.1.4"
  2472. },
  2473. "time": "2021-05-03T11:20:27+00:00"
  2474. },
  2475. {
  2476. "name": "psr/simple-cache",
  2477. "version": "1.0.1",
  2478. "source": {
  2479. "type": "git",
  2480. "url": "https://github.com/php-fig/simple-cache.git",
  2481. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  2482. },
  2483. "dist": {
  2484. "type": "zip",
  2485. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2486. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2487. "shasum": ""
  2488. },
  2489. "require": {
  2490. "php": ">=5.3.0"
  2491. },
  2492. "type": "library",
  2493. "extra": {
  2494. "branch-alias": {
  2495. "dev-master": "1.0.x-dev"
  2496. }
  2497. },
  2498. "autoload": {
  2499. "psr-4": {
  2500. "Psr\\SimpleCache\\": "src/"
  2501. }
  2502. },
  2503. "notification-url": "https://packagist.org/downloads/",
  2504. "license": [
  2505. "MIT"
  2506. ],
  2507. "authors": [
  2508. {
  2509. "name": "PHP-FIG",
  2510. "homepage": "http://www.php-fig.org/"
  2511. }
  2512. ],
  2513. "description": "Common interfaces for simple caching",
  2514. "keywords": [
  2515. "cache",
  2516. "caching",
  2517. "psr",
  2518. "psr-16",
  2519. "simple-cache"
  2520. ],
  2521. "support": {
  2522. "source": "https://github.com/php-fig/simple-cache/tree/master"
  2523. },
  2524. "time": "2017-10-23T01:57:42+00:00"
  2525. },
  2526. {
  2527. "name": "psy/psysh",
  2528. "version": "v0.11.14",
  2529. "source": {
  2530. "type": "git",
  2531. "url": "https://github.com/bobthecow/psysh.git",
  2532. "reference": "8c2e264def7a8263a68ef6f0b55ce90b77d41e17"
  2533. },
  2534. "dist": {
  2535. "type": "zip",
  2536. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/8c2e264def7a8263a68ef6f0b55ce90b77d41e17",
  2537. "reference": "8c2e264def7a8263a68ef6f0b55ce90b77d41e17",
  2538. "shasum": ""
  2539. },
  2540. "require": {
  2541. "ext-json": "*",
  2542. "ext-tokenizer": "*",
  2543. "nikic/php-parser": "^4.0 || ^3.1",
  2544. "php": "^8.0 || ^7.0.8",
  2545. "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
  2546. "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
  2547. },
  2548. "conflict": {
  2549. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  2550. },
  2551. "require-dev": {
  2552. "bamarni/composer-bin-plugin": "^1.2"
  2553. },
  2554. "suggest": {
  2555. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  2556. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  2557. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  2558. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history."
  2559. },
  2560. "bin": [
  2561. "bin/psysh"
  2562. ],
  2563. "type": "library",
  2564. "extra": {
  2565. "branch-alias": {
  2566. "dev-main": "0.11.x-dev"
  2567. }
  2568. },
  2569. "autoload": {
  2570. "files": [
  2571. "src/functions.php"
  2572. ],
  2573. "psr-4": {
  2574. "Psy\\": "src/"
  2575. }
  2576. },
  2577. "notification-url": "https://packagist.org/downloads/",
  2578. "license": [
  2579. "MIT"
  2580. ],
  2581. "authors": [
  2582. {
  2583. "name": "Justin Hileman",
  2584. "email": "justin@justinhileman.info",
  2585. "homepage": "http://justinhileman.com"
  2586. }
  2587. ],
  2588. "description": "An interactive shell for modern PHP.",
  2589. "homepage": "http://psysh.org",
  2590. "keywords": [
  2591. "REPL",
  2592. "console",
  2593. "interactive",
  2594. "shell"
  2595. ],
  2596. "support": {
  2597. "issues": "https://github.com/bobthecow/psysh/issues",
  2598. "source": "https://github.com/bobthecow/psysh/tree/v0.11.14"
  2599. },
  2600. "time": "2023-03-28T03:41:01+00:00"
  2601. },
  2602. {
  2603. "name": "ralouphie/getallheaders",
  2604. "version": "3.0.3",
  2605. "source": {
  2606. "type": "git",
  2607. "url": "https://github.com/ralouphie/getallheaders.git",
  2608. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  2609. },
  2610. "dist": {
  2611. "type": "zip",
  2612. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  2613. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  2614. "shasum": ""
  2615. },
  2616. "require": {
  2617. "php": ">=5.6"
  2618. },
  2619. "require-dev": {
  2620. "php-coveralls/php-coveralls": "^2.1",
  2621. "phpunit/phpunit": "^5 || ^6.5"
  2622. },
  2623. "type": "library",
  2624. "autoload": {
  2625. "files": [
  2626. "src/getallheaders.php"
  2627. ]
  2628. },
  2629. "notification-url": "https://packagist.org/downloads/",
  2630. "license": [
  2631. "MIT"
  2632. ],
  2633. "authors": [
  2634. {
  2635. "name": "Ralph Khattar",
  2636. "email": "ralph.khattar@gmail.com"
  2637. }
  2638. ],
  2639. "description": "A polyfill for getallheaders.",
  2640. "support": {
  2641. "issues": "https://github.com/ralouphie/getallheaders/issues",
  2642. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  2643. },
  2644. "time": "2019-03-08T08:55:37+00:00"
  2645. },
  2646. {
  2647. "name": "ramsey/collection",
  2648. "version": "1.3.0",
  2649. "source": {
  2650. "type": "git",
  2651. "url": "https://github.com/ramsey/collection.git",
  2652. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4"
  2653. },
  2654. "dist": {
  2655. "type": "zip",
  2656. "url": "https://api.github.com/repos/ramsey/collection/zipball/ad7475d1c9e70b190ecffc58f2d989416af339b4",
  2657. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4",
  2658. "shasum": ""
  2659. },
  2660. "require": {
  2661. "php": "^7.4 || ^8.0",
  2662. "symfony/polyfill-php81": "^1.23"
  2663. },
  2664. "require-dev": {
  2665. "captainhook/plugin-composer": "^5.3",
  2666. "ergebnis/composer-normalize": "^2.28.3",
  2667. "fakerphp/faker": "^1.21",
  2668. "hamcrest/hamcrest-php": "^2.0",
  2669. "jangregor/phpstan-prophecy": "^1.0",
  2670. "mockery/mockery": "^1.5",
  2671. "php-parallel-lint/php-console-highlighter": "^1.0",
  2672. "php-parallel-lint/php-parallel-lint": "^1.3",
  2673. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  2674. "phpspec/prophecy-phpunit": "^2.0",
  2675. "phpstan/extension-installer": "^1.2",
  2676. "phpstan/phpstan": "^1.9",
  2677. "phpstan/phpstan-mockery": "^1.1",
  2678. "phpstan/phpstan-phpunit": "^1.3",
  2679. "phpunit/phpunit": "^9.5",
  2680. "psalm/plugin-mockery": "^1.1",
  2681. "psalm/plugin-phpunit": "^0.18.4",
  2682. "ramsey/coding-standard": "^2.0.3",
  2683. "ramsey/conventional-commits": "^1.3",
  2684. "vimeo/psalm": "^5.4"
  2685. },
  2686. "type": "library",
  2687. "extra": {
  2688. "captainhook": {
  2689. "force-install": true
  2690. },
  2691. "ramsey/conventional-commits": {
  2692. "configFile": "conventional-commits.json"
  2693. }
  2694. },
  2695. "autoload": {
  2696. "psr-4": {
  2697. "Ramsey\\Collection\\": "src/"
  2698. }
  2699. },
  2700. "notification-url": "https://packagist.org/downloads/",
  2701. "license": [
  2702. "MIT"
  2703. ],
  2704. "authors": [
  2705. {
  2706. "name": "Ben Ramsey",
  2707. "email": "ben@benramsey.com",
  2708. "homepage": "https://benramsey.com"
  2709. }
  2710. ],
  2711. "description": "A PHP library for representing and manipulating collections.",
  2712. "keywords": [
  2713. "array",
  2714. "collection",
  2715. "hash",
  2716. "map",
  2717. "queue",
  2718. "set"
  2719. ],
  2720. "support": {
  2721. "issues": "https://github.com/ramsey/collection/issues",
  2722. "source": "https://github.com/ramsey/collection/tree/1.3.0"
  2723. },
  2724. "funding": [
  2725. {
  2726. "url": "https://github.com/ramsey",
  2727. "type": "github"
  2728. },
  2729. {
  2730. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  2731. "type": "tidelift"
  2732. }
  2733. ],
  2734. "time": "2022-12-27T19:12:24+00:00"
  2735. },
  2736. {
  2737. "name": "ramsey/uuid",
  2738. "version": "4.2.3",
  2739. "source": {
  2740. "type": "git",
  2741. "url": "https://github.com/ramsey/uuid.git",
  2742. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df"
  2743. },
  2744. "dist": {
  2745. "type": "zip",
  2746. "url": "https://api.github.com/repos/ramsey/uuid/zipball/fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  2747. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  2748. "shasum": ""
  2749. },
  2750. "require": {
  2751. "brick/math": "^0.8 || ^0.9",
  2752. "ext-json": "*",
  2753. "php": "^7.2 || ^8.0",
  2754. "ramsey/collection": "^1.0",
  2755. "symfony/polyfill-ctype": "^1.8",
  2756. "symfony/polyfill-php80": "^1.14"
  2757. },
  2758. "replace": {
  2759. "rhumsaa/uuid": "self.version"
  2760. },
  2761. "require-dev": {
  2762. "captainhook/captainhook": "^5.10",
  2763. "captainhook/plugin-composer": "^5.3",
  2764. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2765. "doctrine/annotations": "^1.8",
  2766. "ergebnis/composer-normalize": "^2.15",
  2767. "mockery/mockery": "^1.3",
  2768. "moontoast/math": "^1.1",
  2769. "paragonie/random-lib": "^2",
  2770. "php-mock/php-mock": "^2.2",
  2771. "php-mock/php-mock-mockery": "^1.3",
  2772. "php-parallel-lint/php-parallel-lint": "^1.1",
  2773. "phpbench/phpbench": "^1.0",
  2774. "phpstan/extension-installer": "^1.0",
  2775. "phpstan/phpstan": "^0.12",
  2776. "phpstan/phpstan-mockery": "^0.12",
  2777. "phpstan/phpstan-phpunit": "^0.12",
  2778. "phpunit/phpunit": "^8.5 || ^9",
  2779. "slevomat/coding-standard": "^7.0",
  2780. "squizlabs/php_codesniffer": "^3.5",
  2781. "vimeo/psalm": "^4.9"
  2782. },
  2783. "suggest": {
  2784. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  2785. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  2786. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  2787. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  2788. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  2789. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  2790. },
  2791. "type": "library",
  2792. "extra": {
  2793. "branch-alias": {
  2794. "dev-main": "4.x-dev"
  2795. },
  2796. "captainhook": {
  2797. "force-install": true
  2798. }
  2799. },
  2800. "autoload": {
  2801. "files": [
  2802. "src/functions.php"
  2803. ],
  2804. "psr-4": {
  2805. "Ramsey\\Uuid\\": "src/"
  2806. }
  2807. },
  2808. "notification-url": "https://packagist.org/downloads/",
  2809. "license": [
  2810. "MIT"
  2811. ],
  2812. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  2813. "keywords": [
  2814. "guid",
  2815. "identifier",
  2816. "uuid"
  2817. ],
  2818. "support": {
  2819. "issues": "https://github.com/ramsey/uuid/issues",
  2820. "source": "https://github.com/ramsey/uuid/tree/4.2.3"
  2821. },
  2822. "funding": [
  2823. {
  2824. "url": "https://github.com/ramsey",
  2825. "type": "github"
  2826. },
  2827. {
  2828. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  2829. "type": "tidelift"
  2830. }
  2831. ],
  2832. "time": "2021-09-25T23:10:38+00:00"
  2833. },
  2834. {
  2835. "name": "swiftmailer/swiftmailer",
  2836. "version": "v6.3.0",
  2837. "source": {
  2838. "type": "git",
  2839. "url": "https://github.com/swiftmailer/swiftmailer.git",
  2840. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c"
  2841. },
  2842. "dist": {
  2843. "type": "zip",
  2844. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c",
  2845. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  2846. "shasum": ""
  2847. },
  2848. "require": {
  2849. "egulias/email-validator": "^2.0|^3.1",
  2850. "php": ">=7.0.0",
  2851. "symfony/polyfill-iconv": "^1.0",
  2852. "symfony/polyfill-intl-idn": "^1.10",
  2853. "symfony/polyfill-mbstring": "^1.0"
  2854. },
  2855. "require-dev": {
  2856. "mockery/mockery": "^1.0",
  2857. "symfony/phpunit-bridge": "^4.4|^5.4"
  2858. },
  2859. "suggest": {
  2860. "ext-intl": "Needed to support internationalized email addresses"
  2861. },
  2862. "type": "library",
  2863. "extra": {
  2864. "branch-alias": {
  2865. "dev-master": "6.2-dev"
  2866. }
  2867. },
  2868. "autoload": {
  2869. "files": [
  2870. "lib/swift_required.php"
  2871. ]
  2872. },
  2873. "notification-url": "https://packagist.org/downloads/",
  2874. "license": [
  2875. "MIT"
  2876. ],
  2877. "authors": [
  2878. {
  2879. "name": "Chris Corbyn"
  2880. },
  2881. {
  2882. "name": "Fabien Potencier",
  2883. "email": "fabien@symfony.com"
  2884. }
  2885. ],
  2886. "description": "Swiftmailer, free feature-rich PHP mailer",
  2887. "homepage": "https://swiftmailer.symfony.com",
  2888. "keywords": [
  2889. "email",
  2890. "mail",
  2891. "mailer"
  2892. ],
  2893. "support": {
  2894. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  2895. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0"
  2896. },
  2897. "funding": [
  2898. {
  2899. "url": "https://github.com/fabpot",
  2900. "type": "github"
  2901. },
  2902. {
  2903. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  2904. "type": "tidelift"
  2905. }
  2906. ],
  2907. "abandoned": "symfony/mailer",
  2908. "time": "2021-10-18T15:26:12+00:00"
  2909. },
  2910. {
  2911. "name": "symfony/console",
  2912. "version": "v5.4.21",
  2913. "source": {
  2914. "type": "git",
  2915. "url": "https://github.com/symfony/console.git",
  2916. "reference": "c77433ddc6cdc689caf48065d9ea22ca0853fbd9"
  2917. },
  2918. "dist": {
  2919. "type": "zip",
  2920. "url": "https://api.github.com/repos/symfony/console/zipball/c77433ddc6cdc689caf48065d9ea22ca0853fbd9",
  2921. "reference": "c77433ddc6cdc689caf48065d9ea22ca0853fbd9",
  2922. "shasum": ""
  2923. },
  2924. "require": {
  2925. "php": ">=7.2.5",
  2926. "symfony/deprecation-contracts": "^2.1|^3",
  2927. "symfony/polyfill-mbstring": "~1.0",
  2928. "symfony/polyfill-php73": "^1.9",
  2929. "symfony/polyfill-php80": "^1.16",
  2930. "symfony/service-contracts": "^1.1|^2|^3",
  2931. "symfony/string": "^5.1|^6.0"
  2932. },
  2933. "conflict": {
  2934. "psr/log": ">=3",
  2935. "symfony/dependency-injection": "<4.4",
  2936. "symfony/dotenv": "<5.1",
  2937. "symfony/event-dispatcher": "<4.4",
  2938. "symfony/lock": "<4.4",
  2939. "symfony/process": "<4.4"
  2940. },
  2941. "provide": {
  2942. "psr/log-implementation": "1.0|2.0"
  2943. },
  2944. "require-dev": {
  2945. "psr/log": "^1|^2",
  2946. "symfony/config": "^4.4|^5.0|^6.0",
  2947. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  2948. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  2949. "symfony/lock": "^4.4|^5.0|^6.0",
  2950. "symfony/process": "^4.4|^5.0|^6.0",
  2951. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  2952. },
  2953. "suggest": {
  2954. "psr/log": "For using the console logger",
  2955. "symfony/event-dispatcher": "",
  2956. "symfony/lock": "",
  2957. "symfony/process": ""
  2958. },
  2959. "type": "library",
  2960. "autoload": {
  2961. "psr-4": {
  2962. "Symfony\\Component\\Console\\": ""
  2963. },
  2964. "exclude-from-classmap": [
  2965. "/Tests/"
  2966. ]
  2967. },
  2968. "notification-url": "https://packagist.org/downloads/",
  2969. "license": [
  2970. "MIT"
  2971. ],
  2972. "authors": [
  2973. {
  2974. "name": "Fabien Potencier",
  2975. "email": "fabien@symfony.com"
  2976. },
  2977. {
  2978. "name": "Symfony Community",
  2979. "homepage": "https://symfony.com/contributors"
  2980. }
  2981. ],
  2982. "description": "Eases the creation of beautiful and testable command line interfaces",
  2983. "homepage": "https://symfony.com",
  2984. "keywords": [
  2985. "cli",
  2986. "command line",
  2987. "console",
  2988. "terminal"
  2989. ],
  2990. "support": {
  2991. "source": "https://github.com/symfony/console/tree/v5.4.21"
  2992. },
  2993. "funding": [
  2994. {
  2995. "url": "https://symfony.com/sponsor",
  2996. "type": "custom"
  2997. },
  2998. {
  2999. "url": "https://github.com/fabpot",
  3000. "type": "github"
  3001. },
  3002. {
  3003. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3004. "type": "tidelift"
  3005. }
  3006. ],
  3007. "time": "2023-02-25T16:59:41+00:00"
  3008. },
  3009. {
  3010. "name": "symfony/css-selector",
  3011. "version": "v5.4.21",
  3012. "source": {
  3013. "type": "git",
  3014. "url": "https://github.com/symfony/css-selector.git",
  3015. "reference": "95f3c7468db1da8cc360b24fa2a26e7cefcb355d"
  3016. },
  3017. "dist": {
  3018. "type": "zip",
  3019. "url": "https://api.github.com/repos/symfony/css-selector/zipball/95f3c7468db1da8cc360b24fa2a26e7cefcb355d",
  3020. "reference": "95f3c7468db1da8cc360b24fa2a26e7cefcb355d",
  3021. "shasum": ""
  3022. },
  3023. "require": {
  3024. "php": ">=7.2.5",
  3025. "symfony/polyfill-php80": "^1.16"
  3026. },
  3027. "type": "library",
  3028. "autoload": {
  3029. "psr-4": {
  3030. "Symfony\\Component\\CssSelector\\": ""
  3031. },
  3032. "exclude-from-classmap": [
  3033. "/Tests/"
  3034. ]
  3035. },
  3036. "notification-url": "https://packagist.org/downloads/",
  3037. "license": [
  3038. "MIT"
  3039. ],
  3040. "authors": [
  3041. {
  3042. "name": "Fabien Potencier",
  3043. "email": "fabien@symfony.com"
  3044. },
  3045. {
  3046. "name": "Jean-François Simon",
  3047. "email": "jeanfrancois.simon@sensiolabs.com"
  3048. },
  3049. {
  3050. "name": "Symfony Community",
  3051. "homepage": "https://symfony.com/contributors"
  3052. }
  3053. ],
  3054. "description": "Converts CSS selectors to XPath expressions",
  3055. "homepage": "https://symfony.com",
  3056. "support": {
  3057. "source": "https://github.com/symfony/css-selector/tree/v5.4.21"
  3058. },
  3059. "funding": [
  3060. {
  3061. "url": "https://symfony.com/sponsor",
  3062. "type": "custom"
  3063. },
  3064. {
  3065. "url": "https://github.com/fabpot",
  3066. "type": "github"
  3067. },
  3068. {
  3069. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3070. "type": "tidelift"
  3071. }
  3072. ],
  3073. "time": "2023-02-14T08:03:56+00:00"
  3074. },
  3075. {
  3076. "name": "symfony/deprecation-contracts",
  3077. "version": "v2.5.2",
  3078. "source": {
  3079. "type": "git",
  3080. "url": "https://github.com/symfony/deprecation-contracts.git",
  3081. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66"
  3082. },
  3083. "dist": {
  3084. "type": "zip",
  3085. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  3086. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  3087. "shasum": ""
  3088. },
  3089. "require": {
  3090. "php": ">=7.1"
  3091. },
  3092. "type": "library",
  3093. "extra": {
  3094. "branch-alias": {
  3095. "dev-main": "2.5-dev"
  3096. },
  3097. "thanks": {
  3098. "name": "symfony/contracts",
  3099. "url": "https://github.com/symfony/contracts"
  3100. }
  3101. },
  3102. "autoload": {
  3103. "files": [
  3104. "function.php"
  3105. ]
  3106. },
  3107. "notification-url": "https://packagist.org/downloads/",
  3108. "license": [
  3109. "MIT"
  3110. ],
  3111. "authors": [
  3112. {
  3113. "name": "Nicolas Grekas",
  3114. "email": "p@tchwork.com"
  3115. },
  3116. {
  3117. "name": "Symfony Community",
  3118. "homepage": "https://symfony.com/contributors"
  3119. }
  3120. ],
  3121. "description": "A generic function and convention to trigger deprecation notices",
  3122. "homepage": "https://symfony.com",
  3123. "support": {
  3124. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.2"
  3125. },
  3126. "funding": [
  3127. {
  3128. "url": "https://symfony.com/sponsor",
  3129. "type": "custom"
  3130. },
  3131. {
  3132. "url": "https://github.com/fabpot",
  3133. "type": "github"
  3134. },
  3135. {
  3136. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3137. "type": "tidelift"
  3138. }
  3139. ],
  3140. "time": "2022-01-02T09:53:40+00:00"
  3141. },
  3142. {
  3143. "name": "symfony/error-handler",
  3144. "version": "v5.4.21",
  3145. "source": {
  3146. "type": "git",
  3147. "url": "https://github.com/symfony/error-handler.git",
  3148. "reference": "56a94aa8cb5a5fbc411551d8d014a296b5456549"
  3149. },
  3150. "dist": {
  3151. "type": "zip",
  3152. "url": "https://api.github.com/repos/symfony/error-handler/zipball/56a94aa8cb5a5fbc411551d8d014a296b5456549",
  3153. "reference": "56a94aa8cb5a5fbc411551d8d014a296b5456549",
  3154. "shasum": ""
  3155. },
  3156. "require": {
  3157. "php": ">=7.2.5",
  3158. "psr/log": "^1|^2|^3",
  3159. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  3160. },
  3161. "require-dev": {
  3162. "symfony/deprecation-contracts": "^2.1|^3",
  3163. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  3164. "symfony/serializer": "^4.4|^5.0|^6.0"
  3165. },
  3166. "bin": [
  3167. "Resources/bin/patch-type-declarations"
  3168. ],
  3169. "type": "library",
  3170. "autoload": {
  3171. "psr-4": {
  3172. "Symfony\\Component\\ErrorHandler\\": ""
  3173. },
  3174. "exclude-from-classmap": [
  3175. "/Tests/"
  3176. ]
  3177. },
  3178. "notification-url": "https://packagist.org/downloads/",
  3179. "license": [
  3180. "MIT"
  3181. ],
  3182. "authors": [
  3183. {
  3184. "name": "Fabien Potencier",
  3185. "email": "fabien@symfony.com"
  3186. },
  3187. {
  3188. "name": "Symfony Community",
  3189. "homepage": "https://symfony.com/contributors"
  3190. }
  3191. ],
  3192. "description": "Provides tools to manage errors and ease debugging PHP code",
  3193. "homepage": "https://symfony.com",
  3194. "support": {
  3195. "source": "https://github.com/symfony/error-handler/tree/v5.4.21"
  3196. },
  3197. "funding": [
  3198. {
  3199. "url": "https://symfony.com/sponsor",
  3200. "type": "custom"
  3201. },
  3202. {
  3203. "url": "https://github.com/fabpot",
  3204. "type": "github"
  3205. },
  3206. {
  3207. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3208. "type": "tidelift"
  3209. }
  3210. ],
  3211. "time": "2023-02-14T08:03:56+00:00"
  3212. },
  3213. {
  3214. "name": "symfony/event-dispatcher",
  3215. "version": "v5.4.21",
  3216. "source": {
  3217. "type": "git",
  3218. "url": "https://github.com/symfony/event-dispatcher.git",
  3219. "reference": "f0ae1383a8285dfc6752b8d8602790953118ff5a"
  3220. },
  3221. "dist": {
  3222. "type": "zip",
  3223. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/f0ae1383a8285dfc6752b8d8602790953118ff5a",
  3224. "reference": "f0ae1383a8285dfc6752b8d8602790953118ff5a",
  3225. "shasum": ""
  3226. },
  3227. "require": {
  3228. "php": ">=7.2.5",
  3229. "symfony/deprecation-contracts": "^2.1|^3",
  3230. "symfony/event-dispatcher-contracts": "^2|^3",
  3231. "symfony/polyfill-php80": "^1.16"
  3232. },
  3233. "conflict": {
  3234. "symfony/dependency-injection": "<4.4"
  3235. },
  3236. "provide": {
  3237. "psr/event-dispatcher-implementation": "1.0",
  3238. "symfony/event-dispatcher-implementation": "2.0"
  3239. },
  3240. "require-dev": {
  3241. "psr/log": "^1|^2|^3",
  3242. "symfony/config": "^4.4|^5.0|^6.0",
  3243. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  3244. "symfony/error-handler": "^4.4|^5.0|^6.0",
  3245. "symfony/expression-language": "^4.4|^5.0|^6.0",
  3246. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  3247. "symfony/service-contracts": "^1.1|^2|^3",
  3248. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  3249. },
  3250. "suggest": {
  3251. "symfony/dependency-injection": "",
  3252. "symfony/http-kernel": ""
  3253. },
  3254. "type": "library",
  3255. "autoload": {
  3256. "psr-4": {
  3257. "Symfony\\Component\\EventDispatcher\\": ""
  3258. },
  3259. "exclude-from-classmap": [
  3260. "/Tests/"
  3261. ]
  3262. },
  3263. "notification-url": "https://packagist.org/downloads/",
  3264. "license": [
  3265. "MIT"
  3266. ],
  3267. "authors": [
  3268. {
  3269. "name": "Fabien Potencier",
  3270. "email": "fabien@symfony.com"
  3271. },
  3272. {
  3273. "name": "Symfony Community",
  3274. "homepage": "https://symfony.com/contributors"
  3275. }
  3276. ],
  3277. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  3278. "homepage": "https://symfony.com",
  3279. "support": {
  3280. "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.21"
  3281. },
  3282. "funding": [
  3283. {
  3284. "url": "https://symfony.com/sponsor",
  3285. "type": "custom"
  3286. },
  3287. {
  3288. "url": "https://github.com/fabpot",
  3289. "type": "github"
  3290. },
  3291. {
  3292. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3293. "type": "tidelift"
  3294. }
  3295. ],
  3296. "time": "2023-02-14T08:03:56+00:00"
  3297. },
  3298. {
  3299. "name": "symfony/event-dispatcher-contracts",
  3300. "version": "v2.5.2",
  3301. "source": {
  3302. "type": "git",
  3303. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  3304. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1"
  3305. },
  3306. "dist": {
  3307. "type": "zip",
  3308. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/f98b54df6ad059855739db6fcbc2d36995283fe1",
  3309. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1",
  3310. "shasum": ""
  3311. },
  3312. "require": {
  3313. "php": ">=7.2.5",
  3314. "psr/event-dispatcher": "^1"
  3315. },
  3316. "suggest": {
  3317. "symfony/event-dispatcher-implementation": ""
  3318. },
  3319. "type": "library",
  3320. "extra": {
  3321. "branch-alias": {
  3322. "dev-main": "2.5-dev"
  3323. },
  3324. "thanks": {
  3325. "name": "symfony/contracts",
  3326. "url": "https://github.com/symfony/contracts"
  3327. }
  3328. },
  3329. "autoload": {
  3330. "psr-4": {
  3331. "Symfony\\Contracts\\EventDispatcher\\": ""
  3332. }
  3333. },
  3334. "notification-url": "https://packagist.org/downloads/",
  3335. "license": [
  3336. "MIT"
  3337. ],
  3338. "authors": [
  3339. {
  3340. "name": "Nicolas Grekas",
  3341. "email": "p@tchwork.com"
  3342. },
  3343. {
  3344. "name": "Symfony Community",
  3345. "homepage": "https://symfony.com/contributors"
  3346. }
  3347. ],
  3348. "description": "Generic abstractions related to dispatching event",
  3349. "homepage": "https://symfony.com",
  3350. "keywords": [
  3351. "abstractions",
  3352. "contracts",
  3353. "decoupling",
  3354. "interfaces",
  3355. "interoperability",
  3356. "standards"
  3357. ],
  3358. "support": {
  3359. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.5.2"
  3360. },
  3361. "funding": [
  3362. {
  3363. "url": "https://symfony.com/sponsor",
  3364. "type": "custom"
  3365. },
  3366. {
  3367. "url": "https://github.com/fabpot",
  3368. "type": "github"
  3369. },
  3370. {
  3371. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3372. "type": "tidelift"
  3373. }
  3374. ],
  3375. "time": "2022-01-02T09:53:40+00:00"
  3376. },
  3377. {
  3378. "name": "symfony/finder",
  3379. "version": "v5.4.21",
  3380. "source": {
  3381. "type": "git",
  3382. "url": "https://github.com/symfony/finder.git",
  3383. "reference": "078e9a5e1871fcfe6a5ce421b539344c21afef19"
  3384. },
  3385. "dist": {
  3386. "type": "zip",
  3387. "url": "https://api.github.com/repos/symfony/finder/zipball/078e9a5e1871fcfe6a5ce421b539344c21afef19",
  3388. "reference": "078e9a5e1871fcfe6a5ce421b539344c21afef19",
  3389. "shasum": ""
  3390. },
  3391. "require": {
  3392. "php": ">=7.2.5",
  3393. "symfony/deprecation-contracts": "^2.1|^3",
  3394. "symfony/polyfill-php80": "^1.16"
  3395. },
  3396. "type": "library",
  3397. "autoload": {
  3398. "psr-4": {
  3399. "Symfony\\Component\\Finder\\": ""
  3400. },
  3401. "exclude-from-classmap": [
  3402. "/Tests/"
  3403. ]
  3404. },
  3405. "notification-url": "https://packagist.org/downloads/",
  3406. "license": [
  3407. "MIT"
  3408. ],
  3409. "authors": [
  3410. {
  3411. "name": "Fabien Potencier",
  3412. "email": "fabien@symfony.com"
  3413. },
  3414. {
  3415. "name": "Symfony Community",
  3416. "homepage": "https://symfony.com/contributors"
  3417. }
  3418. ],
  3419. "description": "Finds files and directories via an intuitive fluent interface",
  3420. "homepage": "https://symfony.com",
  3421. "support": {
  3422. "source": "https://github.com/symfony/finder/tree/v5.4.21"
  3423. },
  3424. "funding": [
  3425. {
  3426. "url": "https://symfony.com/sponsor",
  3427. "type": "custom"
  3428. },
  3429. {
  3430. "url": "https://github.com/fabpot",
  3431. "type": "github"
  3432. },
  3433. {
  3434. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3435. "type": "tidelift"
  3436. }
  3437. ],
  3438. "time": "2023-02-16T09:33:00+00:00"
  3439. },
  3440. {
  3441. "name": "symfony/http-foundation",
  3442. "version": "v5.4.21",
  3443. "source": {
  3444. "type": "git",
  3445. "url": "https://github.com/symfony/http-foundation.git",
  3446. "reference": "3bb6ee5582366c4176d5ce596b380117c8200bbf"
  3447. },
  3448. "dist": {
  3449. "type": "zip",
  3450. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/3bb6ee5582366c4176d5ce596b380117c8200bbf",
  3451. "reference": "3bb6ee5582366c4176d5ce596b380117c8200bbf",
  3452. "shasum": ""
  3453. },
  3454. "require": {
  3455. "php": ">=7.2.5",
  3456. "symfony/deprecation-contracts": "^2.1|^3",
  3457. "symfony/polyfill-mbstring": "~1.1",
  3458. "symfony/polyfill-php80": "^1.16"
  3459. },
  3460. "require-dev": {
  3461. "predis/predis": "~1.0",
  3462. "symfony/cache": "^4.4|^5.0|^6.0",
  3463. "symfony/dependency-injection": "^5.4|^6.0",
  3464. "symfony/expression-language": "^4.4|^5.0|^6.0",
  3465. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  3466. "symfony/mime": "^4.4|^5.0|^6.0",
  3467. "symfony/rate-limiter": "^5.2|^6.0"
  3468. },
  3469. "suggest": {
  3470. "symfony/mime": "To use the file extension guesser"
  3471. },
  3472. "type": "library",
  3473. "autoload": {
  3474. "psr-4": {
  3475. "Symfony\\Component\\HttpFoundation\\": ""
  3476. },
  3477. "exclude-from-classmap": [
  3478. "/Tests/"
  3479. ]
  3480. },
  3481. "notification-url": "https://packagist.org/downloads/",
  3482. "license": [
  3483. "MIT"
  3484. ],
  3485. "authors": [
  3486. {
  3487. "name": "Fabien Potencier",
  3488. "email": "fabien@symfony.com"
  3489. },
  3490. {
  3491. "name": "Symfony Community",
  3492. "homepage": "https://symfony.com/contributors"
  3493. }
  3494. ],
  3495. "description": "Defines an object-oriented layer for the HTTP specification",
  3496. "homepage": "https://symfony.com",
  3497. "support": {
  3498. "source": "https://github.com/symfony/http-foundation/tree/v5.4.21"
  3499. },
  3500. "funding": [
  3501. {
  3502. "url": "https://symfony.com/sponsor",
  3503. "type": "custom"
  3504. },
  3505. {
  3506. "url": "https://github.com/fabpot",
  3507. "type": "github"
  3508. },
  3509. {
  3510. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3511. "type": "tidelift"
  3512. }
  3513. ],
  3514. "time": "2023-02-17T21:35:35+00:00"
  3515. },
  3516. {
  3517. "name": "symfony/http-kernel",
  3518. "version": "v5.4.21",
  3519. "source": {
  3520. "type": "git",
  3521. "url": "https://github.com/symfony/http-kernel.git",
  3522. "reference": "09c19fc7e4218fbcf73fe0330eea38d66064b775"
  3523. },
  3524. "dist": {
  3525. "type": "zip",
  3526. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/09c19fc7e4218fbcf73fe0330eea38d66064b775",
  3527. "reference": "09c19fc7e4218fbcf73fe0330eea38d66064b775",
  3528. "shasum": ""
  3529. },
  3530. "require": {
  3531. "php": ">=7.2.5",
  3532. "psr/log": "^1|^2",
  3533. "symfony/deprecation-contracts": "^2.1|^3",
  3534. "symfony/error-handler": "^4.4|^5.0|^6.0",
  3535. "symfony/event-dispatcher": "^5.0|^6.0",
  3536. "symfony/http-foundation": "^5.4.21|^6.2.7",
  3537. "symfony/polyfill-ctype": "^1.8",
  3538. "symfony/polyfill-php73": "^1.9",
  3539. "symfony/polyfill-php80": "^1.16"
  3540. },
  3541. "conflict": {
  3542. "symfony/browser-kit": "<5.4",
  3543. "symfony/cache": "<5.0",
  3544. "symfony/config": "<5.0",
  3545. "symfony/console": "<4.4",
  3546. "symfony/dependency-injection": "<5.3",
  3547. "symfony/doctrine-bridge": "<5.0",
  3548. "symfony/form": "<5.0",
  3549. "symfony/http-client": "<5.0",
  3550. "symfony/mailer": "<5.0",
  3551. "symfony/messenger": "<5.0",
  3552. "symfony/translation": "<5.0",
  3553. "symfony/twig-bridge": "<5.0",
  3554. "symfony/validator": "<5.0",
  3555. "twig/twig": "<2.13"
  3556. },
  3557. "provide": {
  3558. "psr/log-implementation": "1.0|2.0"
  3559. },
  3560. "require-dev": {
  3561. "psr/cache": "^1.0|^2.0|^3.0",
  3562. "symfony/browser-kit": "^5.4|^6.0",
  3563. "symfony/config": "^5.0|^6.0",
  3564. "symfony/console": "^4.4|^5.0|^6.0",
  3565. "symfony/css-selector": "^4.4|^5.0|^6.0",
  3566. "symfony/dependency-injection": "^5.3|^6.0",
  3567. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  3568. "symfony/expression-language": "^4.4|^5.0|^6.0",
  3569. "symfony/finder": "^4.4|^5.0|^6.0",
  3570. "symfony/http-client-contracts": "^1.1|^2|^3",
  3571. "symfony/process": "^4.4|^5.0|^6.0",
  3572. "symfony/routing": "^4.4|^5.0|^6.0",
  3573. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  3574. "symfony/translation": "^4.4|^5.0|^6.0",
  3575. "symfony/translation-contracts": "^1.1|^2|^3",
  3576. "twig/twig": "^2.13|^3.0.4"
  3577. },
  3578. "suggest": {
  3579. "symfony/browser-kit": "",
  3580. "symfony/config": "",
  3581. "symfony/console": "",
  3582. "symfony/dependency-injection": ""
  3583. },
  3584. "type": "library",
  3585. "autoload": {
  3586. "psr-4": {
  3587. "Symfony\\Component\\HttpKernel\\": ""
  3588. },
  3589. "exclude-from-classmap": [
  3590. "/Tests/"
  3591. ]
  3592. },
  3593. "notification-url": "https://packagist.org/downloads/",
  3594. "license": [
  3595. "MIT"
  3596. ],
  3597. "authors": [
  3598. {
  3599. "name": "Fabien Potencier",
  3600. "email": "fabien@symfony.com"
  3601. },
  3602. {
  3603. "name": "Symfony Community",
  3604. "homepage": "https://symfony.com/contributors"
  3605. }
  3606. ],
  3607. "description": "Provides a structured process for converting a Request into a Response",
  3608. "homepage": "https://symfony.com",
  3609. "support": {
  3610. "source": "https://github.com/symfony/http-kernel/tree/v5.4.21"
  3611. },
  3612. "funding": [
  3613. {
  3614. "url": "https://symfony.com/sponsor",
  3615. "type": "custom"
  3616. },
  3617. {
  3618. "url": "https://github.com/fabpot",
  3619. "type": "github"
  3620. },
  3621. {
  3622. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3623. "type": "tidelift"
  3624. }
  3625. ],
  3626. "time": "2023-02-28T13:19:09+00:00"
  3627. },
  3628. {
  3629. "name": "symfony/mime",
  3630. "version": "v5.4.21",
  3631. "source": {
  3632. "type": "git",
  3633. "url": "https://github.com/symfony/mime.git",
  3634. "reference": "ef57d9fb9cdd5e6b2ffc567d109865d10b6920cd"
  3635. },
  3636. "dist": {
  3637. "type": "zip",
  3638. "url": "https://api.github.com/repos/symfony/mime/zipball/ef57d9fb9cdd5e6b2ffc567d109865d10b6920cd",
  3639. "reference": "ef57d9fb9cdd5e6b2ffc567d109865d10b6920cd",
  3640. "shasum": ""
  3641. },
  3642. "require": {
  3643. "php": ">=7.2.5",
  3644. "symfony/deprecation-contracts": "^2.1|^3",
  3645. "symfony/polyfill-intl-idn": "^1.10",
  3646. "symfony/polyfill-mbstring": "^1.0",
  3647. "symfony/polyfill-php80": "^1.16"
  3648. },
  3649. "conflict": {
  3650. "egulias/email-validator": "~3.0.0",
  3651. "phpdocumentor/reflection-docblock": "<3.2.2",
  3652. "phpdocumentor/type-resolver": "<1.4.0",
  3653. "symfony/mailer": "<4.4",
  3654. "symfony/serializer": "<5.4.14|>=6.0,<6.0.14|>=6.1,<6.1.6"
  3655. },
  3656. "require-dev": {
  3657. "egulias/email-validator": "^2.1.10|^3.1|^4",
  3658. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  3659. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  3660. "symfony/property-access": "^4.4|^5.1|^6.0",
  3661. "symfony/property-info": "^4.4|^5.1|^6.0",
  3662. "symfony/serializer": "^5.4.14|~6.0.14|^6.1.6"
  3663. },
  3664. "type": "library",
  3665. "autoload": {
  3666. "psr-4": {
  3667. "Symfony\\Component\\Mime\\": ""
  3668. },
  3669. "exclude-from-classmap": [
  3670. "/Tests/"
  3671. ]
  3672. },
  3673. "notification-url": "https://packagist.org/downloads/",
  3674. "license": [
  3675. "MIT"
  3676. ],
  3677. "authors": [
  3678. {
  3679. "name": "Fabien Potencier",
  3680. "email": "fabien@symfony.com"
  3681. },
  3682. {
  3683. "name": "Symfony Community",
  3684. "homepage": "https://symfony.com/contributors"
  3685. }
  3686. ],
  3687. "description": "Allows manipulating MIME messages",
  3688. "homepage": "https://symfony.com",
  3689. "keywords": [
  3690. "mime",
  3691. "mime-type"
  3692. ],
  3693. "support": {
  3694. "source": "https://github.com/symfony/mime/tree/v5.4.21"
  3695. },
  3696. "funding": [
  3697. {
  3698. "url": "https://symfony.com/sponsor",
  3699. "type": "custom"
  3700. },
  3701. {
  3702. "url": "https://github.com/fabpot",
  3703. "type": "github"
  3704. },
  3705. {
  3706. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3707. "type": "tidelift"
  3708. }
  3709. ],
  3710. "time": "2023-02-21T19:46:44+00:00"
  3711. },
  3712. {
  3713. "name": "symfony/polyfill-ctype",
  3714. "version": "v1.27.0",
  3715. "source": {
  3716. "type": "git",
  3717. "url": "https://github.com/symfony/polyfill-ctype.git",
  3718. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a"
  3719. },
  3720. "dist": {
  3721. "type": "zip",
  3722. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a",
  3723. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a",
  3724. "shasum": ""
  3725. },
  3726. "require": {
  3727. "php": ">=7.1"
  3728. },
  3729. "provide": {
  3730. "ext-ctype": "*"
  3731. },
  3732. "suggest": {
  3733. "ext-ctype": "For best performance"
  3734. },
  3735. "type": "library",
  3736. "extra": {
  3737. "branch-alias": {
  3738. "dev-main": "1.27-dev"
  3739. },
  3740. "thanks": {
  3741. "name": "symfony/polyfill",
  3742. "url": "https://github.com/symfony/polyfill"
  3743. }
  3744. },
  3745. "autoload": {
  3746. "files": [
  3747. "bootstrap.php"
  3748. ],
  3749. "psr-4": {
  3750. "Symfony\\Polyfill\\Ctype\\": ""
  3751. }
  3752. },
  3753. "notification-url": "https://packagist.org/downloads/",
  3754. "license": [
  3755. "MIT"
  3756. ],
  3757. "authors": [
  3758. {
  3759. "name": "Gert de Pagter",
  3760. "email": "BackEndTea@gmail.com"
  3761. },
  3762. {
  3763. "name": "Symfony Community",
  3764. "homepage": "https://symfony.com/contributors"
  3765. }
  3766. ],
  3767. "description": "Symfony polyfill for ctype functions",
  3768. "homepage": "https://symfony.com",
  3769. "keywords": [
  3770. "compatibility",
  3771. "ctype",
  3772. "polyfill",
  3773. "portable"
  3774. ],
  3775. "support": {
  3776. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0"
  3777. },
  3778. "funding": [
  3779. {
  3780. "url": "https://symfony.com/sponsor",
  3781. "type": "custom"
  3782. },
  3783. {
  3784. "url": "https://github.com/fabpot",
  3785. "type": "github"
  3786. },
  3787. {
  3788. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3789. "type": "tidelift"
  3790. }
  3791. ],
  3792. "time": "2022-11-03T14:55:06+00:00"
  3793. },
  3794. {
  3795. "name": "symfony/polyfill-iconv",
  3796. "version": "v1.27.0",
  3797. "source": {
  3798. "type": "git",
  3799. "url": "https://github.com/symfony/polyfill-iconv.git",
  3800. "reference": "927013f3aac555983a5059aada98e1907d842695"
  3801. },
  3802. "dist": {
  3803. "type": "zip",
  3804. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/927013f3aac555983a5059aada98e1907d842695",
  3805. "reference": "927013f3aac555983a5059aada98e1907d842695",
  3806. "shasum": ""
  3807. },
  3808. "require": {
  3809. "php": ">=7.1"
  3810. },
  3811. "provide": {
  3812. "ext-iconv": "*"
  3813. },
  3814. "suggest": {
  3815. "ext-iconv": "For best performance"
  3816. },
  3817. "type": "library",
  3818. "extra": {
  3819. "branch-alias": {
  3820. "dev-main": "1.27-dev"
  3821. },
  3822. "thanks": {
  3823. "name": "symfony/polyfill",
  3824. "url": "https://github.com/symfony/polyfill"
  3825. }
  3826. },
  3827. "autoload": {
  3828. "files": [
  3829. "bootstrap.php"
  3830. ],
  3831. "psr-4": {
  3832. "Symfony\\Polyfill\\Iconv\\": ""
  3833. }
  3834. },
  3835. "notification-url": "https://packagist.org/downloads/",
  3836. "license": [
  3837. "MIT"
  3838. ],
  3839. "authors": [
  3840. {
  3841. "name": "Nicolas Grekas",
  3842. "email": "p@tchwork.com"
  3843. },
  3844. {
  3845. "name": "Symfony Community",
  3846. "homepage": "https://symfony.com/contributors"
  3847. }
  3848. ],
  3849. "description": "Symfony polyfill for the Iconv extension",
  3850. "homepage": "https://symfony.com",
  3851. "keywords": [
  3852. "compatibility",
  3853. "iconv",
  3854. "polyfill",
  3855. "portable",
  3856. "shim"
  3857. ],
  3858. "support": {
  3859. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.27.0"
  3860. },
  3861. "funding": [
  3862. {
  3863. "url": "https://symfony.com/sponsor",
  3864. "type": "custom"
  3865. },
  3866. {
  3867. "url": "https://github.com/fabpot",
  3868. "type": "github"
  3869. },
  3870. {
  3871. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3872. "type": "tidelift"
  3873. }
  3874. ],
  3875. "time": "2022-11-03T14:55:06+00:00"
  3876. },
  3877. {
  3878. "name": "symfony/polyfill-intl-grapheme",
  3879. "version": "v1.27.0",
  3880. "source": {
  3881. "type": "git",
  3882. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  3883. "reference": "511a08c03c1960e08a883f4cffcacd219b758354"
  3884. },
  3885. "dist": {
  3886. "type": "zip",
  3887. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/511a08c03c1960e08a883f4cffcacd219b758354",
  3888. "reference": "511a08c03c1960e08a883f4cffcacd219b758354",
  3889. "shasum": ""
  3890. },
  3891. "require": {
  3892. "php": ">=7.1"
  3893. },
  3894. "suggest": {
  3895. "ext-intl": "For best performance"
  3896. },
  3897. "type": "library",
  3898. "extra": {
  3899. "branch-alias": {
  3900. "dev-main": "1.27-dev"
  3901. },
  3902. "thanks": {
  3903. "name": "symfony/polyfill",
  3904. "url": "https://github.com/symfony/polyfill"
  3905. }
  3906. },
  3907. "autoload": {
  3908. "files": [
  3909. "bootstrap.php"
  3910. ],
  3911. "psr-4": {
  3912. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  3913. }
  3914. },
  3915. "notification-url": "https://packagist.org/downloads/",
  3916. "license": [
  3917. "MIT"
  3918. ],
  3919. "authors": [
  3920. {
  3921. "name": "Nicolas Grekas",
  3922. "email": "p@tchwork.com"
  3923. },
  3924. {
  3925. "name": "Symfony Community",
  3926. "homepage": "https://symfony.com/contributors"
  3927. }
  3928. ],
  3929. "description": "Symfony polyfill for intl's grapheme_* functions",
  3930. "homepage": "https://symfony.com",
  3931. "keywords": [
  3932. "compatibility",
  3933. "grapheme",
  3934. "intl",
  3935. "polyfill",
  3936. "portable",
  3937. "shim"
  3938. ],
  3939. "support": {
  3940. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.27.0"
  3941. },
  3942. "funding": [
  3943. {
  3944. "url": "https://symfony.com/sponsor",
  3945. "type": "custom"
  3946. },
  3947. {
  3948. "url": "https://github.com/fabpot",
  3949. "type": "github"
  3950. },
  3951. {
  3952. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3953. "type": "tidelift"
  3954. }
  3955. ],
  3956. "time": "2022-11-03T14:55:06+00:00"
  3957. },
  3958. {
  3959. "name": "symfony/polyfill-intl-idn",
  3960. "version": "v1.27.0",
  3961. "source": {
  3962. "type": "git",
  3963. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  3964. "reference": "639084e360537a19f9ee352433b84ce831f3d2da"
  3965. },
  3966. "dist": {
  3967. "type": "zip",
  3968. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da",
  3969. "reference": "639084e360537a19f9ee352433b84ce831f3d2da",
  3970. "shasum": ""
  3971. },
  3972. "require": {
  3973. "php": ">=7.1",
  3974. "symfony/polyfill-intl-normalizer": "^1.10",
  3975. "symfony/polyfill-php72": "^1.10"
  3976. },
  3977. "suggest": {
  3978. "ext-intl": "For best performance"
  3979. },
  3980. "type": "library",
  3981. "extra": {
  3982. "branch-alias": {
  3983. "dev-main": "1.27-dev"
  3984. },
  3985. "thanks": {
  3986. "name": "symfony/polyfill",
  3987. "url": "https://github.com/symfony/polyfill"
  3988. }
  3989. },
  3990. "autoload": {
  3991. "files": [
  3992. "bootstrap.php"
  3993. ],
  3994. "psr-4": {
  3995. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  3996. }
  3997. },
  3998. "notification-url": "https://packagist.org/downloads/",
  3999. "license": [
  4000. "MIT"
  4001. ],
  4002. "authors": [
  4003. {
  4004. "name": "Laurent Bassin",
  4005. "email": "laurent@bassin.info"
  4006. },
  4007. {
  4008. "name": "Trevor Rowbotham",
  4009. "email": "trevor.rowbotham@pm.me"
  4010. },
  4011. {
  4012. "name": "Symfony Community",
  4013. "homepage": "https://symfony.com/contributors"
  4014. }
  4015. ],
  4016. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  4017. "homepage": "https://symfony.com",
  4018. "keywords": [
  4019. "compatibility",
  4020. "idn",
  4021. "intl",
  4022. "polyfill",
  4023. "portable",
  4024. "shim"
  4025. ],
  4026. "support": {
  4027. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0"
  4028. },
  4029. "funding": [
  4030. {
  4031. "url": "https://symfony.com/sponsor",
  4032. "type": "custom"
  4033. },
  4034. {
  4035. "url": "https://github.com/fabpot",
  4036. "type": "github"
  4037. },
  4038. {
  4039. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4040. "type": "tidelift"
  4041. }
  4042. ],
  4043. "time": "2022-11-03T14:55:06+00:00"
  4044. },
  4045. {
  4046. "name": "symfony/polyfill-intl-normalizer",
  4047. "version": "v1.27.0",
  4048. "source": {
  4049. "type": "git",
  4050. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  4051. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6"
  4052. },
  4053. "dist": {
  4054. "type": "zip",
  4055. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  4056. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  4057. "shasum": ""
  4058. },
  4059. "require": {
  4060. "php": ">=7.1"
  4061. },
  4062. "suggest": {
  4063. "ext-intl": "For best performance"
  4064. },
  4065. "type": "library",
  4066. "extra": {
  4067. "branch-alias": {
  4068. "dev-main": "1.27-dev"
  4069. },
  4070. "thanks": {
  4071. "name": "symfony/polyfill",
  4072. "url": "https://github.com/symfony/polyfill"
  4073. }
  4074. },
  4075. "autoload": {
  4076. "files": [
  4077. "bootstrap.php"
  4078. ],
  4079. "psr-4": {
  4080. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  4081. },
  4082. "classmap": [
  4083. "Resources/stubs"
  4084. ]
  4085. },
  4086. "notification-url": "https://packagist.org/downloads/",
  4087. "license": [
  4088. "MIT"
  4089. ],
  4090. "authors": [
  4091. {
  4092. "name": "Nicolas Grekas",
  4093. "email": "p@tchwork.com"
  4094. },
  4095. {
  4096. "name": "Symfony Community",
  4097. "homepage": "https://symfony.com/contributors"
  4098. }
  4099. ],
  4100. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  4101. "homepage": "https://symfony.com",
  4102. "keywords": [
  4103. "compatibility",
  4104. "intl",
  4105. "normalizer",
  4106. "polyfill",
  4107. "portable",
  4108. "shim"
  4109. ],
  4110. "support": {
  4111. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0"
  4112. },
  4113. "funding": [
  4114. {
  4115. "url": "https://symfony.com/sponsor",
  4116. "type": "custom"
  4117. },
  4118. {
  4119. "url": "https://github.com/fabpot",
  4120. "type": "github"
  4121. },
  4122. {
  4123. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4124. "type": "tidelift"
  4125. }
  4126. ],
  4127. "time": "2022-11-03T14:55:06+00:00"
  4128. },
  4129. {
  4130. "name": "symfony/polyfill-mbstring",
  4131. "version": "v1.27.0",
  4132. "source": {
  4133. "type": "git",
  4134. "url": "https://github.com/symfony/polyfill-mbstring.git",
  4135. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
  4136. },
  4137. "dist": {
  4138. "type": "zip",
  4139. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  4140. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  4141. "shasum": ""
  4142. },
  4143. "require": {
  4144. "php": ">=7.1"
  4145. },
  4146. "provide": {
  4147. "ext-mbstring": "*"
  4148. },
  4149. "suggest": {
  4150. "ext-mbstring": "For best performance"
  4151. },
  4152. "type": "library",
  4153. "extra": {
  4154. "branch-alias": {
  4155. "dev-main": "1.27-dev"
  4156. },
  4157. "thanks": {
  4158. "name": "symfony/polyfill",
  4159. "url": "https://github.com/symfony/polyfill"
  4160. }
  4161. },
  4162. "autoload": {
  4163. "files": [
  4164. "bootstrap.php"
  4165. ],
  4166. "psr-4": {
  4167. "Symfony\\Polyfill\\Mbstring\\": ""
  4168. }
  4169. },
  4170. "notification-url": "https://packagist.org/downloads/",
  4171. "license": [
  4172. "MIT"
  4173. ],
  4174. "authors": [
  4175. {
  4176. "name": "Nicolas Grekas",
  4177. "email": "p@tchwork.com"
  4178. },
  4179. {
  4180. "name": "Symfony Community",
  4181. "homepage": "https://symfony.com/contributors"
  4182. }
  4183. ],
  4184. "description": "Symfony polyfill for the Mbstring extension",
  4185. "homepage": "https://symfony.com",
  4186. "keywords": [
  4187. "compatibility",
  4188. "mbstring",
  4189. "polyfill",
  4190. "portable",
  4191. "shim"
  4192. ],
  4193. "support": {
  4194. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
  4195. },
  4196. "funding": [
  4197. {
  4198. "url": "https://symfony.com/sponsor",
  4199. "type": "custom"
  4200. },
  4201. {
  4202. "url": "https://github.com/fabpot",
  4203. "type": "github"
  4204. },
  4205. {
  4206. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4207. "type": "tidelift"
  4208. }
  4209. ],
  4210. "time": "2022-11-03T14:55:06+00:00"
  4211. },
  4212. {
  4213. "name": "symfony/polyfill-php72",
  4214. "version": "v1.27.0",
  4215. "source": {
  4216. "type": "git",
  4217. "url": "https://github.com/symfony/polyfill-php72.git",
  4218. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97"
  4219. },
  4220. "dist": {
  4221. "type": "zip",
  4222. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/869329b1e9894268a8a61dabb69153029b7a8c97",
  4223. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97",
  4224. "shasum": ""
  4225. },
  4226. "require": {
  4227. "php": ">=7.1"
  4228. },
  4229. "type": "library",
  4230. "extra": {
  4231. "branch-alias": {
  4232. "dev-main": "1.27-dev"
  4233. },
  4234. "thanks": {
  4235. "name": "symfony/polyfill",
  4236. "url": "https://github.com/symfony/polyfill"
  4237. }
  4238. },
  4239. "autoload": {
  4240. "files": [
  4241. "bootstrap.php"
  4242. ],
  4243. "psr-4": {
  4244. "Symfony\\Polyfill\\Php72\\": ""
  4245. }
  4246. },
  4247. "notification-url": "https://packagist.org/downloads/",
  4248. "license": [
  4249. "MIT"
  4250. ],
  4251. "authors": [
  4252. {
  4253. "name": "Nicolas Grekas",
  4254. "email": "p@tchwork.com"
  4255. },
  4256. {
  4257. "name": "Symfony Community",
  4258. "homepage": "https://symfony.com/contributors"
  4259. }
  4260. ],
  4261. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  4262. "homepage": "https://symfony.com",
  4263. "keywords": [
  4264. "compatibility",
  4265. "polyfill",
  4266. "portable",
  4267. "shim"
  4268. ],
  4269. "support": {
  4270. "source": "https://github.com/symfony/polyfill-php72/tree/v1.27.0"
  4271. },
  4272. "funding": [
  4273. {
  4274. "url": "https://symfony.com/sponsor",
  4275. "type": "custom"
  4276. },
  4277. {
  4278. "url": "https://github.com/fabpot",
  4279. "type": "github"
  4280. },
  4281. {
  4282. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4283. "type": "tidelift"
  4284. }
  4285. ],
  4286. "time": "2022-11-03T14:55:06+00:00"
  4287. },
  4288. {
  4289. "name": "symfony/polyfill-php73",
  4290. "version": "v1.27.0",
  4291. "source": {
  4292. "type": "git",
  4293. "url": "https://github.com/symfony/polyfill-php73.git",
  4294. "reference": "9e8ecb5f92152187c4799efd3c96b78ccab18ff9"
  4295. },
  4296. "dist": {
  4297. "type": "zip",
  4298. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/9e8ecb5f92152187c4799efd3c96b78ccab18ff9",
  4299. "reference": "9e8ecb5f92152187c4799efd3c96b78ccab18ff9",
  4300. "shasum": ""
  4301. },
  4302. "require": {
  4303. "php": ">=7.1"
  4304. },
  4305. "type": "library",
  4306. "extra": {
  4307. "branch-alias": {
  4308. "dev-main": "1.27-dev"
  4309. },
  4310. "thanks": {
  4311. "name": "symfony/polyfill",
  4312. "url": "https://github.com/symfony/polyfill"
  4313. }
  4314. },
  4315. "autoload": {
  4316. "files": [
  4317. "bootstrap.php"
  4318. ],
  4319. "psr-4": {
  4320. "Symfony\\Polyfill\\Php73\\": ""
  4321. },
  4322. "classmap": [
  4323. "Resources/stubs"
  4324. ]
  4325. },
  4326. "notification-url": "https://packagist.org/downloads/",
  4327. "license": [
  4328. "MIT"
  4329. ],
  4330. "authors": [
  4331. {
  4332. "name": "Nicolas Grekas",
  4333. "email": "p@tchwork.com"
  4334. },
  4335. {
  4336. "name": "Symfony Community",
  4337. "homepage": "https://symfony.com/contributors"
  4338. }
  4339. ],
  4340. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  4341. "homepage": "https://symfony.com",
  4342. "keywords": [
  4343. "compatibility",
  4344. "polyfill",
  4345. "portable",
  4346. "shim"
  4347. ],
  4348. "support": {
  4349. "source": "https://github.com/symfony/polyfill-php73/tree/v1.27.0"
  4350. },
  4351. "funding": [
  4352. {
  4353. "url": "https://symfony.com/sponsor",
  4354. "type": "custom"
  4355. },
  4356. {
  4357. "url": "https://github.com/fabpot",
  4358. "type": "github"
  4359. },
  4360. {
  4361. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4362. "type": "tidelift"
  4363. }
  4364. ],
  4365. "time": "2022-11-03T14:55:06+00:00"
  4366. },
  4367. {
  4368. "name": "symfony/polyfill-php80",
  4369. "version": "v1.27.0",
  4370. "source": {
  4371. "type": "git",
  4372. "url": "https://github.com/symfony/polyfill-php80.git",
  4373. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936"
  4374. },
  4375. "dist": {
  4376. "type": "zip",
  4377. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  4378. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  4379. "shasum": ""
  4380. },
  4381. "require": {
  4382. "php": ">=7.1"
  4383. },
  4384. "type": "library",
  4385. "extra": {
  4386. "branch-alias": {
  4387. "dev-main": "1.27-dev"
  4388. },
  4389. "thanks": {
  4390. "name": "symfony/polyfill",
  4391. "url": "https://github.com/symfony/polyfill"
  4392. }
  4393. },
  4394. "autoload": {
  4395. "files": [
  4396. "bootstrap.php"
  4397. ],
  4398. "psr-4": {
  4399. "Symfony\\Polyfill\\Php80\\": ""
  4400. },
  4401. "classmap": [
  4402. "Resources/stubs"
  4403. ]
  4404. },
  4405. "notification-url": "https://packagist.org/downloads/",
  4406. "license": [
  4407. "MIT"
  4408. ],
  4409. "authors": [
  4410. {
  4411. "name": "Ion Bazan",
  4412. "email": "ion.bazan@gmail.com"
  4413. },
  4414. {
  4415. "name": "Nicolas Grekas",
  4416. "email": "p@tchwork.com"
  4417. },
  4418. {
  4419. "name": "Symfony Community",
  4420. "homepage": "https://symfony.com/contributors"
  4421. }
  4422. ],
  4423. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  4424. "homepage": "https://symfony.com",
  4425. "keywords": [
  4426. "compatibility",
  4427. "polyfill",
  4428. "portable",
  4429. "shim"
  4430. ],
  4431. "support": {
  4432. "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0"
  4433. },
  4434. "funding": [
  4435. {
  4436. "url": "https://symfony.com/sponsor",
  4437. "type": "custom"
  4438. },
  4439. {
  4440. "url": "https://github.com/fabpot",
  4441. "type": "github"
  4442. },
  4443. {
  4444. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4445. "type": "tidelift"
  4446. }
  4447. ],
  4448. "time": "2022-11-03T14:55:06+00:00"
  4449. },
  4450. {
  4451. "name": "symfony/polyfill-php81",
  4452. "version": "v1.27.0",
  4453. "source": {
  4454. "type": "git",
  4455. "url": "https://github.com/symfony/polyfill-php81.git",
  4456. "reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a"
  4457. },
  4458. "dist": {
  4459. "type": "zip",
  4460. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/707403074c8ea6e2edaf8794b0157a0bfa52157a",
  4461. "reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a",
  4462. "shasum": ""
  4463. },
  4464. "require": {
  4465. "php": ">=7.1"
  4466. },
  4467. "type": "library",
  4468. "extra": {
  4469. "branch-alias": {
  4470. "dev-main": "1.27-dev"
  4471. },
  4472. "thanks": {
  4473. "name": "symfony/polyfill",
  4474. "url": "https://github.com/symfony/polyfill"
  4475. }
  4476. },
  4477. "autoload": {
  4478. "files": [
  4479. "bootstrap.php"
  4480. ],
  4481. "psr-4": {
  4482. "Symfony\\Polyfill\\Php81\\": ""
  4483. },
  4484. "classmap": [
  4485. "Resources/stubs"
  4486. ]
  4487. },
  4488. "notification-url": "https://packagist.org/downloads/",
  4489. "license": [
  4490. "MIT"
  4491. ],
  4492. "authors": [
  4493. {
  4494. "name": "Nicolas Grekas",
  4495. "email": "p@tchwork.com"
  4496. },
  4497. {
  4498. "name": "Symfony Community",
  4499. "homepage": "https://symfony.com/contributors"
  4500. }
  4501. ],
  4502. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  4503. "homepage": "https://symfony.com",
  4504. "keywords": [
  4505. "compatibility",
  4506. "polyfill",
  4507. "portable",
  4508. "shim"
  4509. ],
  4510. "support": {
  4511. "source": "https://github.com/symfony/polyfill-php81/tree/v1.27.0"
  4512. },
  4513. "funding": [
  4514. {
  4515. "url": "https://symfony.com/sponsor",
  4516. "type": "custom"
  4517. },
  4518. {
  4519. "url": "https://github.com/fabpot",
  4520. "type": "github"
  4521. },
  4522. {
  4523. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4524. "type": "tidelift"
  4525. }
  4526. ],
  4527. "time": "2022-11-03T14:55:06+00:00"
  4528. },
  4529. {
  4530. "name": "symfony/process",
  4531. "version": "v5.4.21",
  4532. "source": {
  4533. "type": "git",
  4534. "url": "https://github.com/symfony/process.git",
  4535. "reference": "d4ce417ebcb0b7d090b4c178ed6d3accc518e8bd"
  4536. },
  4537. "dist": {
  4538. "type": "zip",
  4539. "url": "https://api.github.com/repos/symfony/process/zipball/d4ce417ebcb0b7d090b4c178ed6d3accc518e8bd",
  4540. "reference": "d4ce417ebcb0b7d090b4c178ed6d3accc518e8bd",
  4541. "shasum": ""
  4542. },
  4543. "require": {
  4544. "php": ">=7.2.5",
  4545. "symfony/polyfill-php80": "^1.16"
  4546. },
  4547. "type": "library",
  4548. "autoload": {
  4549. "psr-4": {
  4550. "Symfony\\Component\\Process\\": ""
  4551. },
  4552. "exclude-from-classmap": [
  4553. "/Tests/"
  4554. ]
  4555. },
  4556. "notification-url": "https://packagist.org/downloads/",
  4557. "license": [
  4558. "MIT"
  4559. ],
  4560. "authors": [
  4561. {
  4562. "name": "Fabien Potencier",
  4563. "email": "fabien@symfony.com"
  4564. },
  4565. {
  4566. "name": "Symfony Community",
  4567. "homepage": "https://symfony.com/contributors"
  4568. }
  4569. ],
  4570. "description": "Executes commands in sub-processes",
  4571. "homepage": "https://symfony.com",
  4572. "support": {
  4573. "source": "https://github.com/symfony/process/tree/v5.4.21"
  4574. },
  4575. "funding": [
  4576. {
  4577. "url": "https://symfony.com/sponsor",
  4578. "type": "custom"
  4579. },
  4580. {
  4581. "url": "https://github.com/fabpot",
  4582. "type": "github"
  4583. },
  4584. {
  4585. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4586. "type": "tidelift"
  4587. }
  4588. ],
  4589. "time": "2023-02-21T19:46:44+00:00"
  4590. },
  4591. {
  4592. "name": "symfony/routing",
  4593. "version": "v5.4.21",
  4594. "source": {
  4595. "type": "git",
  4596. "url": "https://github.com/symfony/routing.git",
  4597. "reference": "2ea0f3049076e8ef96eab203a809d6b2332f0361"
  4598. },
  4599. "dist": {
  4600. "type": "zip",
  4601. "url": "https://api.github.com/repos/symfony/routing/zipball/2ea0f3049076e8ef96eab203a809d6b2332f0361",
  4602. "reference": "2ea0f3049076e8ef96eab203a809d6b2332f0361",
  4603. "shasum": ""
  4604. },
  4605. "require": {
  4606. "php": ">=7.2.5",
  4607. "symfony/deprecation-contracts": "^2.1|^3",
  4608. "symfony/polyfill-php80": "^1.16"
  4609. },
  4610. "conflict": {
  4611. "doctrine/annotations": "<1.12",
  4612. "symfony/config": "<5.3",
  4613. "symfony/dependency-injection": "<4.4",
  4614. "symfony/yaml": "<4.4"
  4615. },
  4616. "require-dev": {
  4617. "doctrine/annotations": "^1.12|^2",
  4618. "psr/log": "^1|^2|^3",
  4619. "symfony/config": "^5.3|^6.0",
  4620. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  4621. "symfony/expression-language": "^4.4|^5.0|^6.0",
  4622. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  4623. "symfony/yaml": "^4.4|^5.0|^6.0"
  4624. },
  4625. "suggest": {
  4626. "symfony/config": "For using the all-in-one router or any loader",
  4627. "symfony/expression-language": "For using expression matching",
  4628. "symfony/http-foundation": "For using a Symfony Request object",
  4629. "symfony/yaml": "For using the YAML loader"
  4630. },
  4631. "type": "library",
  4632. "autoload": {
  4633. "psr-4": {
  4634. "Symfony\\Component\\Routing\\": ""
  4635. },
  4636. "exclude-from-classmap": [
  4637. "/Tests/"
  4638. ]
  4639. },
  4640. "notification-url": "https://packagist.org/downloads/",
  4641. "license": [
  4642. "MIT"
  4643. ],
  4644. "authors": [
  4645. {
  4646. "name": "Fabien Potencier",
  4647. "email": "fabien@symfony.com"
  4648. },
  4649. {
  4650. "name": "Symfony Community",
  4651. "homepage": "https://symfony.com/contributors"
  4652. }
  4653. ],
  4654. "description": "Maps an HTTP request to a set of configuration variables",
  4655. "homepage": "https://symfony.com",
  4656. "keywords": [
  4657. "router",
  4658. "routing",
  4659. "uri",
  4660. "url"
  4661. ],
  4662. "support": {
  4663. "source": "https://github.com/symfony/routing/tree/v5.4.21"
  4664. },
  4665. "funding": [
  4666. {
  4667. "url": "https://symfony.com/sponsor",
  4668. "type": "custom"
  4669. },
  4670. {
  4671. "url": "https://github.com/fabpot",
  4672. "type": "github"
  4673. },
  4674. {
  4675. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4676. "type": "tidelift"
  4677. }
  4678. ],
  4679. "time": "2023-02-16T09:33:00+00:00"
  4680. },
  4681. {
  4682. "name": "symfony/service-contracts",
  4683. "version": "v2.5.2",
  4684. "source": {
  4685. "type": "git",
  4686. "url": "https://github.com/symfony/service-contracts.git",
  4687. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c"
  4688. },
  4689. "dist": {
  4690. "type": "zip",
  4691. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  4692. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  4693. "shasum": ""
  4694. },
  4695. "require": {
  4696. "php": ">=7.2.5",
  4697. "psr/container": "^1.1",
  4698. "symfony/deprecation-contracts": "^2.1|^3"
  4699. },
  4700. "conflict": {
  4701. "ext-psr": "<1.1|>=2"
  4702. },
  4703. "suggest": {
  4704. "symfony/service-implementation": ""
  4705. },
  4706. "type": "library",
  4707. "extra": {
  4708. "branch-alias": {
  4709. "dev-main": "2.5-dev"
  4710. },
  4711. "thanks": {
  4712. "name": "symfony/contracts",
  4713. "url": "https://github.com/symfony/contracts"
  4714. }
  4715. },
  4716. "autoload": {
  4717. "psr-4": {
  4718. "Symfony\\Contracts\\Service\\": ""
  4719. }
  4720. },
  4721. "notification-url": "https://packagist.org/downloads/",
  4722. "license": [
  4723. "MIT"
  4724. ],
  4725. "authors": [
  4726. {
  4727. "name": "Nicolas Grekas",
  4728. "email": "p@tchwork.com"
  4729. },
  4730. {
  4731. "name": "Symfony Community",
  4732. "homepage": "https://symfony.com/contributors"
  4733. }
  4734. ],
  4735. "description": "Generic abstractions related to writing services",
  4736. "homepage": "https://symfony.com",
  4737. "keywords": [
  4738. "abstractions",
  4739. "contracts",
  4740. "decoupling",
  4741. "interfaces",
  4742. "interoperability",
  4743. "standards"
  4744. ],
  4745. "support": {
  4746. "source": "https://github.com/symfony/service-contracts/tree/v2.5.2"
  4747. },
  4748. "funding": [
  4749. {
  4750. "url": "https://symfony.com/sponsor",
  4751. "type": "custom"
  4752. },
  4753. {
  4754. "url": "https://github.com/fabpot",
  4755. "type": "github"
  4756. },
  4757. {
  4758. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4759. "type": "tidelift"
  4760. }
  4761. ],
  4762. "time": "2022-05-30T19:17:29+00:00"
  4763. },
  4764. {
  4765. "name": "symfony/string",
  4766. "version": "v5.4.21",
  4767. "source": {
  4768. "type": "git",
  4769. "url": "https://github.com/symfony/string.git",
  4770. "reference": "edac10d167b78b1d90f46a80320d632de0bd9f2f"
  4771. },
  4772. "dist": {
  4773. "type": "zip",
  4774. "url": "https://api.github.com/repos/symfony/string/zipball/edac10d167b78b1d90f46a80320d632de0bd9f2f",
  4775. "reference": "edac10d167b78b1d90f46a80320d632de0bd9f2f",
  4776. "shasum": ""
  4777. },
  4778. "require": {
  4779. "php": ">=7.2.5",
  4780. "symfony/polyfill-ctype": "~1.8",
  4781. "symfony/polyfill-intl-grapheme": "~1.0",
  4782. "symfony/polyfill-intl-normalizer": "~1.0",
  4783. "symfony/polyfill-mbstring": "~1.0",
  4784. "symfony/polyfill-php80": "~1.15"
  4785. },
  4786. "conflict": {
  4787. "symfony/translation-contracts": ">=3.0"
  4788. },
  4789. "require-dev": {
  4790. "symfony/error-handler": "^4.4|^5.0|^6.0",
  4791. "symfony/http-client": "^4.4|^5.0|^6.0",
  4792. "symfony/translation-contracts": "^1.1|^2",
  4793. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  4794. },
  4795. "type": "library",
  4796. "autoload": {
  4797. "files": [
  4798. "Resources/functions.php"
  4799. ],
  4800. "psr-4": {
  4801. "Symfony\\Component\\String\\": ""
  4802. },
  4803. "exclude-from-classmap": [
  4804. "/Tests/"
  4805. ]
  4806. },
  4807. "notification-url": "https://packagist.org/downloads/",
  4808. "license": [
  4809. "MIT"
  4810. ],
  4811. "authors": [
  4812. {
  4813. "name": "Nicolas Grekas",
  4814. "email": "p@tchwork.com"
  4815. },
  4816. {
  4817. "name": "Symfony Community",
  4818. "homepage": "https://symfony.com/contributors"
  4819. }
  4820. ],
  4821. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  4822. "homepage": "https://symfony.com",
  4823. "keywords": [
  4824. "grapheme",
  4825. "i18n",
  4826. "string",
  4827. "unicode",
  4828. "utf-8",
  4829. "utf8"
  4830. ],
  4831. "support": {
  4832. "source": "https://github.com/symfony/string/tree/v5.4.21"
  4833. },
  4834. "funding": [
  4835. {
  4836. "url": "https://symfony.com/sponsor",
  4837. "type": "custom"
  4838. },
  4839. {
  4840. "url": "https://github.com/fabpot",
  4841. "type": "github"
  4842. },
  4843. {
  4844. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4845. "type": "tidelift"
  4846. }
  4847. ],
  4848. "time": "2023-02-22T08:00:55+00:00"
  4849. },
  4850. {
  4851. "name": "symfony/translation",
  4852. "version": "v5.4.21",
  4853. "source": {
  4854. "type": "git",
  4855. "url": "https://github.com/symfony/translation.git",
  4856. "reference": "6996affeea65705086939894b77110e9a7f80874"
  4857. },
  4858. "dist": {
  4859. "type": "zip",
  4860. "url": "https://api.github.com/repos/symfony/translation/zipball/6996affeea65705086939894b77110e9a7f80874",
  4861. "reference": "6996affeea65705086939894b77110e9a7f80874",
  4862. "shasum": ""
  4863. },
  4864. "require": {
  4865. "php": ">=7.2.5",
  4866. "symfony/deprecation-contracts": "^2.1|^3",
  4867. "symfony/polyfill-mbstring": "~1.0",
  4868. "symfony/polyfill-php80": "^1.16",
  4869. "symfony/translation-contracts": "^2.3"
  4870. },
  4871. "conflict": {
  4872. "symfony/config": "<4.4",
  4873. "symfony/console": "<5.3",
  4874. "symfony/dependency-injection": "<5.0",
  4875. "symfony/http-kernel": "<5.0",
  4876. "symfony/twig-bundle": "<5.0",
  4877. "symfony/yaml": "<4.4"
  4878. },
  4879. "provide": {
  4880. "symfony/translation-implementation": "2.3"
  4881. },
  4882. "require-dev": {
  4883. "psr/log": "^1|^2|^3",
  4884. "symfony/config": "^4.4|^5.0|^6.0",
  4885. "symfony/console": "^5.4|^6.0",
  4886. "symfony/dependency-injection": "^5.0|^6.0",
  4887. "symfony/finder": "^4.4|^5.0|^6.0",
  4888. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  4889. "symfony/http-kernel": "^5.0|^6.0",
  4890. "symfony/intl": "^4.4|^5.0|^6.0",
  4891. "symfony/polyfill-intl-icu": "^1.21",
  4892. "symfony/service-contracts": "^1.1.2|^2|^3",
  4893. "symfony/yaml": "^4.4|^5.0|^6.0"
  4894. },
  4895. "suggest": {
  4896. "psr/log-implementation": "To use logging capability in translator",
  4897. "symfony/config": "",
  4898. "symfony/yaml": ""
  4899. },
  4900. "type": "library",
  4901. "autoload": {
  4902. "files": [
  4903. "Resources/functions.php"
  4904. ],
  4905. "psr-4": {
  4906. "Symfony\\Component\\Translation\\": ""
  4907. },
  4908. "exclude-from-classmap": [
  4909. "/Tests/"
  4910. ]
  4911. },
  4912. "notification-url": "https://packagist.org/downloads/",
  4913. "license": [
  4914. "MIT"
  4915. ],
  4916. "authors": [
  4917. {
  4918. "name": "Fabien Potencier",
  4919. "email": "fabien@symfony.com"
  4920. },
  4921. {
  4922. "name": "Symfony Community",
  4923. "homepage": "https://symfony.com/contributors"
  4924. }
  4925. ],
  4926. "description": "Provides tools to internationalize your application",
  4927. "homepage": "https://symfony.com",
  4928. "support": {
  4929. "source": "https://github.com/symfony/translation/tree/v5.4.21"
  4930. },
  4931. "funding": [
  4932. {
  4933. "url": "https://symfony.com/sponsor",
  4934. "type": "custom"
  4935. },
  4936. {
  4937. "url": "https://github.com/fabpot",
  4938. "type": "github"
  4939. },
  4940. {
  4941. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4942. "type": "tidelift"
  4943. }
  4944. ],
  4945. "time": "2023-02-21T19:46:44+00:00"
  4946. },
  4947. {
  4948. "name": "symfony/translation-contracts",
  4949. "version": "v2.5.2",
  4950. "source": {
  4951. "type": "git",
  4952. "url": "https://github.com/symfony/translation-contracts.git",
  4953. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe"
  4954. },
  4955. "dist": {
  4956. "type": "zip",
  4957. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  4958. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  4959. "shasum": ""
  4960. },
  4961. "require": {
  4962. "php": ">=7.2.5"
  4963. },
  4964. "suggest": {
  4965. "symfony/translation-implementation": ""
  4966. },
  4967. "type": "library",
  4968. "extra": {
  4969. "branch-alias": {
  4970. "dev-main": "2.5-dev"
  4971. },
  4972. "thanks": {
  4973. "name": "symfony/contracts",
  4974. "url": "https://github.com/symfony/contracts"
  4975. }
  4976. },
  4977. "autoload": {
  4978. "psr-4": {
  4979. "Symfony\\Contracts\\Translation\\": ""
  4980. }
  4981. },
  4982. "notification-url": "https://packagist.org/downloads/",
  4983. "license": [
  4984. "MIT"
  4985. ],
  4986. "authors": [
  4987. {
  4988. "name": "Nicolas Grekas",
  4989. "email": "p@tchwork.com"
  4990. },
  4991. {
  4992. "name": "Symfony Community",
  4993. "homepage": "https://symfony.com/contributors"
  4994. }
  4995. ],
  4996. "description": "Generic abstractions related to translation",
  4997. "homepage": "https://symfony.com",
  4998. "keywords": [
  4999. "abstractions",
  5000. "contracts",
  5001. "decoupling",
  5002. "interfaces",
  5003. "interoperability",
  5004. "standards"
  5005. ],
  5006. "support": {
  5007. "source": "https://github.com/symfony/translation-contracts/tree/v2.5.2"
  5008. },
  5009. "funding": [
  5010. {
  5011. "url": "https://symfony.com/sponsor",
  5012. "type": "custom"
  5013. },
  5014. {
  5015. "url": "https://github.com/fabpot",
  5016. "type": "github"
  5017. },
  5018. {
  5019. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5020. "type": "tidelift"
  5021. }
  5022. ],
  5023. "time": "2022-06-27T16:58:25+00:00"
  5024. },
  5025. {
  5026. "name": "symfony/var-dumper",
  5027. "version": "v5.4.21",
  5028. "source": {
  5029. "type": "git",
  5030. "url": "https://github.com/symfony/var-dumper.git",
  5031. "reference": "6c5ac3a1be8b849d59a1a77877ee110e1b55eb74"
  5032. },
  5033. "dist": {
  5034. "type": "zip",
  5035. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/6c5ac3a1be8b849d59a1a77877ee110e1b55eb74",
  5036. "reference": "6c5ac3a1be8b849d59a1a77877ee110e1b55eb74",
  5037. "shasum": ""
  5038. },
  5039. "require": {
  5040. "php": ">=7.2.5",
  5041. "symfony/polyfill-mbstring": "~1.0",
  5042. "symfony/polyfill-php80": "^1.16"
  5043. },
  5044. "conflict": {
  5045. "phpunit/phpunit": "<5.4.3",
  5046. "symfony/console": "<4.4"
  5047. },
  5048. "require-dev": {
  5049. "ext-iconv": "*",
  5050. "symfony/console": "^4.4|^5.0|^6.0",
  5051. "symfony/process": "^4.4|^5.0|^6.0",
  5052. "symfony/uid": "^5.1|^6.0",
  5053. "twig/twig": "^2.13|^3.0.4"
  5054. },
  5055. "suggest": {
  5056. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  5057. "ext-intl": "To show region name in time zone dump",
  5058. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  5059. },
  5060. "bin": [
  5061. "Resources/bin/var-dump-server"
  5062. ],
  5063. "type": "library",
  5064. "autoload": {
  5065. "files": [
  5066. "Resources/functions/dump.php"
  5067. ],
  5068. "psr-4": {
  5069. "Symfony\\Component\\VarDumper\\": ""
  5070. },
  5071. "exclude-from-classmap": [
  5072. "/Tests/"
  5073. ]
  5074. },
  5075. "notification-url": "https://packagist.org/downloads/",
  5076. "license": [
  5077. "MIT"
  5078. ],
  5079. "authors": [
  5080. {
  5081. "name": "Nicolas Grekas",
  5082. "email": "p@tchwork.com"
  5083. },
  5084. {
  5085. "name": "Symfony Community",
  5086. "homepage": "https://symfony.com/contributors"
  5087. }
  5088. ],
  5089. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  5090. "homepage": "https://symfony.com",
  5091. "keywords": [
  5092. "debug",
  5093. "dump"
  5094. ],
  5095. "support": {
  5096. "source": "https://github.com/symfony/var-dumper/tree/v5.4.21"
  5097. },
  5098. "funding": [
  5099. {
  5100. "url": "https://symfony.com/sponsor",
  5101. "type": "custom"
  5102. },
  5103. {
  5104. "url": "https://github.com/fabpot",
  5105. "type": "github"
  5106. },
  5107. {
  5108. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5109. "type": "tidelift"
  5110. }
  5111. ],
  5112. "time": "2023-02-23T10:00:28+00:00"
  5113. },
  5114. {
  5115. "name": "tijsverkoyen/css-to-inline-styles",
  5116. "version": "2.2.6",
  5117. "source": {
  5118. "type": "git",
  5119. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  5120. "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c"
  5121. },
  5122. "dist": {
  5123. "type": "zip",
  5124. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/c42125b83a4fa63b187fdf29f9c93cb7733da30c",
  5125. "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c",
  5126. "shasum": ""
  5127. },
  5128. "require": {
  5129. "ext-dom": "*",
  5130. "ext-libxml": "*",
  5131. "php": "^5.5 || ^7.0 || ^8.0",
  5132. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  5133. },
  5134. "require-dev": {
  5135. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  5136. },
  5137. "type": "library",
  5138. "extra": {
  5139. "branch-alias": {
  5140. "dev-master": "2.2.x-dev"
  5141. }
  5142. },
  5143. "autoload": {
  5144. "psr-4": {
  5145. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  5146. }
  5147. },
  5148. "notification-url": "https://packagist.org/downloads/",
  5149. "license": [
  5150. "BSD-3-Clause"
  5151. ],
  5152. "authors": [
  5153. {
  5154. "name": "Tijs Verkoyen",
  5155. "email": "css_to_inline_styles@verkoyen.eu",
  5156. "role": "Developer"
  5157. }
  5158. ],
  5159. "description": "CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.",
  5160. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  5161. "support": {
  5162. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  5163. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.6"
  5164. },
  5165. "time": "2023-01-03T09:29:04+00:00"
  5166. },
  5167. {
  5168. "name": "vlucas/phpdotenv",
  5169. "version": "v4.3.0",
  5170. "source": {
  5171. "type": "git",
  5172. "url": "https://github.com/vlucas/phpdotenv.git",
  5173. "reference": "67a491df68208bef8c37092db11fa3885008efcf"
  5174. },
  5175. "dist": {
  5176. "type": "zip",
  5177. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/67a491df68208bef8c37092db11fa3885008efcf",
  5178. "reference": "67a491df68208bef8c37092db11fa3885008efcf",
  5179. "shasum": ""
  5180. },
  5181. "require": {
  5182. "php": "^5.5.9 || ^7.0 || ^8.0",
  5183. "phpoption/phpoption": "^1.7.3",
  5184. "symfony/polyfill-ctype": "^1.17"
  5185. },
  5186. "require-dev": {
  5187. "bamarni/composer-bin-plugin": "^1.4.1",
  5188. "ext-filter": "*",
  5189. "ext-pcre": "*",
  5190. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.30"
  5191. },
  5192. "suggest": {
  5193. "ext-filter": "Required to use the boolean validator.",
  5194. "ext-pcre": "Required to use most of the library."
  5195. },
  5196. "type": "library",
  5197. "extra": {
  5198. "bamarni-bin": {
  5199. "bin-links": true,
  5200. "forward-command": true
  5201. },
  5202. "branch-alias": {
  5203. "dev-master": "4.3-dev"
  5204. }
  5205. },
  5206. "autoload": {
  5207. "psr-4": {
  5208. "Dotenv\\": "src/"
  5209. }
  5210. },
  5211. "notification-url": "https://packagist.org/downloads/",
  5212. "license": [
  5213. "BSD-3-Clause"
  5214. ],
  5215. "authors": [
  5216. {
  5217. "name": "Graham Campbell",
  5218. "email": "hello@gjcampbell.co.uk",
  5219. "homepage": "https://github.com/GrahamCampbell"
  5220. },
  5221. {
  5222. "name": "Vance Lucas",
  5223. "email": "vance@vancelucas.com",
  5224. "homepage": "https://github.com/vlucas"
  5225. }
  5226. ],
  5227. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  5228. "keywords": [
  5229. "dotenv",
  5230. "env",
  5231. "environment"
  5232. ],
  5233. "support": {
  5234. "issues": "https://github.com/vlucas/phpdotenv/issues",
  5235. "source": "https://github.com/vlucas/phpdotenv/tree/v4.3.0"
  5236. },
  5237. "funding": [
  5238. {
  5239. "url": "https://github.com/GrahamCampbell",
  5240. "type": "github"
  5241. },
  5242. {
  5243. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  5244. "type": "tidelift"
  5245. }
  5246. ],
  5247. "time": "2022-10-16T00:51:09+00:00"
  5248. },
  5249. {
  5250. "name": "voku/portable-ascii",
  5251. "version": "1.6.1",
  5252. "source": {
  5253. "type": "git",
  5254. "url": "https://github.com/voku/portable-ascii.git",
  5255. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a"
  5256. },
  5257. "dist": {
  5258. "type": "zip",
  5259. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/87337c91b9dfacee02452244ee14ab3c43bc485a",
  5260. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a",
  5261. "shasum": ""
  5262. },
  5263. "require": {
  5264. "php": ">=7.0.0"
  5265. },
  5266. "require-dev": {
  5267. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  5268. },
  5269. "suggest": {
  5270. "ext-intl": "Use Intl for transliterator_transliterate() support"
  5271. },
  5272. "type": "library",
  5273. "autoload": {
  5274. "psr-4": {
  5275. "voku\\": "src/voku/"
  5276. }
  5277. },
  5278. "notification-url": "https://packagist.org/downloads/",
  5279. "license": [
  5280. "MIT"
  5281. ],
  5282. "authors": [
  5283. {
  5284. "name": "Lars Moelleken",
  5285. "homepage": "http://www.moelleken.org/"
  5286. }
  5287. ],
  5288. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  5289. "homepage": "https://github.com/voku/portable-ascii",
  5290. "keywords": [
  5291. "ascii",
  5292. "clean",
  5293. "php"
  5294. ],
  5295. "support": {
  5296. "issues": "https://github.com/voku/portable-ascii/issues",
  5297. "source": "https://github.com/voku/portable-ascii/tree/1.6.1"
  5298. },
  5299. "funding": [
  5300. {
  5301. "url": "https://www.paypal.me/moelleken",
  5302. "type": "custom"
  5303. },
  5304. {
  5305. "url": "https://github.com/voku",
  5306. "type": "github"
  5307. },
  5308. {
  5309. "url": "https://opencollective.com/portable-ascii",
  5310. "type": "open_collective"
  5311. },
  5312. {
  5313. "url": "https://www.patreon.com/voku",
  5314. "type": "patreon"
  5315. },
  5316. {
  5317. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  5318. "type": "tidelift"
  5319. }
  5320. ],
  5321. "time": "2022-01-24T18:55:24+00:00"
  5322. }
  5323. ],
  5324. "packages-dev": [
  5325. {
  5326. "name": "doctrine/instantiator",
  5327. "version": "1.5.0",
  5328. "source": {
  5329. "type": "git",
  5330. "url": "https://github.com/doctrine/instantiator.git",
  5331. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  5332. },
  5333. "dist": {
  5334. "type": "zip",
  5335. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  5336. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  5337. "shasum": ""
  5338. },
  5339. "require": {
  5340. "php": "^7.1 || ^8.0"
  5341. },
  5342. "require-dev": {
  5343. "doctrine/coding-standard": "^9 || ^11",
  5344. "ext-pdo": "*",
  5345. "ext-phar": "*",
  5346. "phpbench/phpbench": "^0.16 || ^1",
  5347. "phpstan/phpstan": "^1.4",
  5348. "phpstan/phpstan-phpunit": "^1",
  5349. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  5350. "vimeo/psalm": "^4.30 || ^5.4"
  5351. },
  5352. "type": "library",
  5353. "autoload": {
  5354. "psr-4": {
  5355. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  5356. }
  5357. },
  5358. "notification-url": "https://packagist.org/downloads/",
  5359. "license": [
  5360. "MIT"
  5361. ],
  5362. "authors": [
  5363. {
  5364. "name": "Marco Pivetta",
  5365. "email": "ocramius@gmail.com",
  5366. "homepage": "https://ocramius.github.io/"
  5367. }
  5368. ],
  5369. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  5370. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  5371. "keywords": [
  5372. "constructor",
  5373. "instantiate"
  5374. ],
  5375. "support": {
  5376. "issues": "https://github.com/doctrine/instantiator/issues",
  5377. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  5378. },
  5379. "funding": [
  5380. {
  5381. "url": "https://www.doctrine-project.org/sponsorship.html",
  5382. "type": "custom"
  5383. },
  5384. {
  5385. "url": "https://www.patreon.com/phpdoctrine",
  5386. "type": "patreon"
  5387. },
  5388. {
  5389. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  5390. "type": "tidelift"
  5391. }
  5392. ],
  5393. "time": "2022-12-30T00:15:36+00:00"
  5394. },
  5395. {
  5396. "name": "facade/flare-client-php",
  5397. "version": "1.10.0",
  5398. "source": {
  5399. "type": "git",
  5400. "url": "https://github.com/facade/flare-client-php.git",
  5401. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8"
  5402. },
  5403. "dist": {
  5404. "type": "zip",
  5405. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  5406. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  5407. "shasum": ""
  5408. },
  5409. "require": {
  5410. "facade/ignition-contracts": "~1.0",
  5411. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  5412. "php": "^7.1|^8.0",
  5413. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  5414. "symfony/mime": "^3.4|^4.0|^5.1",
  5415. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  5416. },
  5417. "require-dev": {
  5418. "friendsofphp/php-cs-fixer": "^2.14",
  5419. "phpunit/phpunit": "^7.5",
  5420. "spatie/phpunit-snapshot-assertions": "^2.0"
  5421. },
  5422. "type": "library",
  5423. "extra": {
  5424. "branch-alias": {
  5425. "dev-master": "1.0-dev"
  5426. }
  5427. },
  5428. "autoload": {
  5429. "files": [
  5430. "src/helpers.php"
  5431. ],
  5432. "psr-4": {
  5433. "Facade\\FlareClient\\": "src"
  5434. }
  5435. },
  5436. "notification-url": "https://packagist.org/downloads/",
  5437. "license": [
  5438. "MIT"
  5439. ],
  5440. "description": "Send PHP errors to Flare",
  5441. "homepage": "https://github.com/facade/flare-client-php",
  5442. "keywords": [
  5443. "exception",
  5444. "facade",
  5445. "flare",
  5446. "reporting"
  5447. ],
  5448. "support": {
  5449. "issues": "https://github.com/facade/flare-client-php/issues",
  5450. "source": "https://github.com/facade/flare-client-php/tree/1.10.0"
  5451. },
  5452. "funding": [
  5453. {
  5454. "url": "https://github.com/spatie",
  5455. "type": "github"
  5456. }
  5457. ],
  5458. "time": "2022-08-09T11:23:57+00:00"
  5459. },
  5460. {
  5461. "name": "facade/ignition",
  5462. "version": "2.17.7",
  5463. "source": {
  5464. "type": "git",
  5465. "url": "https://github.com/facade/ignition.git",
  5466. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9"
  5467. },
  5468. "dist": {
  5469. "type": "zip",
  5470. "url": "https://api.github.com/repos/facade/ignition/zipball/b4f5955825bb4b74cba0f94001761c46335c33e9",
  5471. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9",
  5472. "shasum": ""
  5473. },
  5474. "require": {
  5475. "ext-curl": "*",
  5476. "ext-json": "*",
  5477. "ext-mbstring": "*",
  5478. "facade/flare-client-php": "^1.9.1",
  5479. "facade/ignition-contracts": "^1.0.2",
  5480. "illuminate/support": "^7.0|^8.0",
  5481. "monolog/monolog": "^2.0",
  5482. "php": "^7.2.5|^8.0",
  5483. "symfony/console": "^5.0",
  5484. "symfony/var-dumper": "^5.0"
  5485. },
  5486. "require-dev": {
  5487. "friendsofphp/php-cs-fixer": "^2.14",
  5488. "livewire/livewire": "^2.4",
  5489. "mockery/mockery": "^1.3",
  5490. "orchestra/testbench": "^5.0|^6.0",
  5491. "psalm/plugin-laravel": "^1.2"
  5492. },
  5493. "suggest": {
  5494. "laravel/telescope": "^3.1"
  5495. },
  5496. "type": "library",
  5497. "extra": {
  5498. "branch-alias": {
  5499. "dev-master": "2.x-dev"
  5500. },
  5501. "laravel": {
  5502. "providers": [
  5503. "Facade\\Ignition\\IgnitionServiceProvider"
  5504. ],
  5505. "aliases": {
  5506. "Flare": "Facade\\Ignition\\Facades\\Flare"
  5507. }
  5508. }
  5509. },
  5510. "autoload": {
  5511. "files": [
  5512. "src/helpers.php"
  5513. ],
  5514. "psr-4": {
  5515. "Facade\\Ignition\\": "src"
  5516. }
  5517. },
  5518. "notification-url": "https://packagist.org/downloads/",
  5519. "license": [
  5520. "MIT"
  5521. ],
  5522. "description": "A beautiful error page for Laravel applications.",
  5523. "homepage": "https://github.com/facade/ignition",
  5524. "keywords": [
  5525. "error",
  5526. "flare",
  5527. "laravel",
  5528. "page"
  5529. ],
  5530. "support": {
  5531. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  5532. "forum": "https://twitter.com/flareappio",
  5533. "issues": "https://github.com/facade/ignition/issues",
  5534. "source": "https://github.com/facade/ignition"
  5535. },
  5536. "time": "2023-01-26T12:34:59+00:00"
  5537. },
  5538. {
  5539. "name": "facade/ignition-contracts",
  5540. "version": "1.0.2",
  5541. "source": {
  5542. "type": "git",
  5543. "url": "https://github.com/facade/ignition-contracts.git",
  5544. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  5545. },
  5546. "dist": {
  5547. "type": "zip",
  5548. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  5549. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  5550. "shasum": ""
  5551. },
  5552. "require": {
  5553. "php": "^7.3|^8.0"
  5554. },
  5555. "require-dev": {
  5556. "friendsofphp/php-cs-fixer": "^v2.15.8",
  5557. "phpunit/phpunit": "^9.3.11",
  5558. "vimeo/psalm": "^3.17.1"
  5559. },
  5560. "type": "library",
  5561. "autoload": {
  5562. "psr-4": {
  5563. "Facade\\IgnitionContracts\\": "src"
  5564. }
  5565. },
  5566. "notification-url": "https://packagist.org/downloads/",
  5567. "license": [
  5568. "MIT"
  5569. ],
  5570. "authors": [
  5571. {
  5572. "name": "Freek Van der Herten",
  5573. "email": "freek@spatie.be",
  5574. "homepage": "https://flareapp.io",
  5575. "role": "Developer"
  5576. }
  5577. ],
  5578. "description": "Solution contracts for Ignition",
  5579. "homepage": "https://github.com/facade/ignition-contracts",
  5580. "keywords": [
  5581. "contracts",
  5582. "flare",
  5583. "ignition"
  5584. ],
  5585. "support": {
  5586. "issues": "https://github.com/facade/ignition-contracts/issues",
  5587. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  5588. },
  5589. "time": "2020-10-16T08:27:54+00:00"
  5590. },
  5591. {
  5592. "name": "fakerphp/faker",
  5593. "version": "v1.21.0",
  5594. "source": {
  5595. "type": "git",
  5596. "url": "https://github.com/FakerPHP/Faker.git",
  5597. "reference": "92efad6a967f0b79c499705c69b662f738cc9e4d"
  5598. },
  5599. "dist": {
  5600. "type": "zip",
  5601. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/92efad6a967f0b79c499705c69b662f738cc9e4d",
  5602. "reference": "92efad6a967f0b79c499705c69b662f738cc9e4d",
  5603. "shasum": ""
  5604. },
  5605. "require": {
  5606. "php": "^7.4 || ^8.0",
  5607. "psr/container": "^1.0 || ^2.0",
  5608. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  5609. },
  5610. "conflict": {
  5611. "fzaninotto/faker": "*"
  5612. },
  5613. "require-dev": {
  5614. "bamarni/composer-bin-plugin": "^1.4.1",
  5615. "doctrine/persistence": "^1.3 || ^2.0",
  5616. "ext-intl": "*",
  5617. "phpunit/phpunit": "^9.5.26",
  5618. "symfony/phpunit-bridge": "^5.4.16"
  5619. },
  5620. "suggest": {
  5621. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  5622. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  5623. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  5624. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  5625. "ext-mbstring": "Required for multibyte Unicode string functionality."
  5626. },
  5627. "type": "library",
  5628. "extra": {
  5629. "branch-alias": {
  5630. "dev-main": "v1.21-dev"
  5631. }
  5632. },
  5633. "autoload": {
  5634. "psr-4": {
  5635. "Faker\\": "src/Faker/"
  5636. }
  5637. },
  5638. "notification-url": "https://packagist.org/downloads/",
  5639. "license": [
  5640. "MIT"
  5641. ],
  5642. "authors": [
  5643. {
  5644. "name": "François Zaninotto"
  5645. }
  5646. ],
  5647. "description": "Faker is a PHP library that generates fake data for you.",
  5648. "keywords": [
  5649. "data",
  5650. "faker",
  5651. "fixtures"
  5652. ],
  5653. "support": {
  5654. "issues": "https://github.com/FakerPHP/Faker/issues",
  5655. "source": "https://github.com/FakerPHP/Faker/tree/v1.21.0"
  5656. },
  5657. "time": "2022-12-13T13:54:32+00:00"
  5658. },
  5659. {
  5660. "name": "filp/whoops",
  5661. "version": "2.15.1",
  5662. "source": {
  5663. "type": "git",
  5664. "url": "https://github.com/filp/whoops.git",
  5665. "reference": "e864ac957acd66e1565f25efda61e37791a5db0b"
  5666. },
  5667. "dist": {
  5668. "type": "zip",
  5669. "url": "https://api.github.com/repos/filp/whoops/zipball/e864ac957acd66e1565f25efda61e37791a5db0b",
  5670. "reference": "e864ac957acd66e1565f25efda61e37791a5db0b",
  5671. "shasum": ""
  5672. },
  5673. "require": {
  5674. "php": "^5.5.9 || ^7.0 || ^8.0",
  5675. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  5676. },
  5677. "require-dev": {
  5678. "mockery/mockery": "^0.9 || ^1.0",
  5679. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  5680. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  5681. },
  5682. "suggest": {
  5683. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  5684. "whoops/soap": "Formats errors as SOAP responses"
  5685. },
  5686. "type": "library",
  5687. "extra": {
  5688. "branch-alias": {
  5689. "dev-master": "2.7-dev"
  5690. }
  5691. },
  5692. "autoload": {
  5693. "psr-4": {
  5694. "Whoops\\": "src/Whoops/"
  5695. }
  5696. },
  5697. "notification-url": "https://packagist.org/downloads/",
  5698. "license": [
  5699. "MIT"
  5700. ],
  5701. "authors": [
  5702. {
  5703. "name": "Filipe Dobreira",
  5704. "homepage": "https://github.com/filp",
  5705. "role": "Developer"
  5706. }
  5707. ],
  5708. "description": "php error handling for cool kids",
  5709. "homepage": "https://filp.github.io/whoops/",
  5710. "keywords": [
  5711. "error",
  5712. "exception",
  5713. "handling",
  5714. "library",
  5715. "throwable",
  5716. "whoops"
  5717. ],
  5718. "support": {
  5719. "issues": "https://github.com/filp/whoops/issues",
  5720. "source": "https://github.com/filp/whoops/tree/2.15.1"
  5721. },
  5722. "funding": [
  5723. {
  5724. "url": "https://github.com/denis-sokolov",
  5725. "type": "github"
  5726. }
  5727. ],
  5728. "time": "2023-03-06T18:09:13+00:00"
  5729. },
  5730. {
  5731. "name": "hamcrest/hamcrest-php",
  5732. "version": "v2.0.1",
  5733. "source": {
  5734. "type": "git",
  5735. "url": "https://github.com/hamcrest/hamcrest-php.git",
  5736. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  5737. },
  5738. "dist": {
  5739. "type": "zip",
  5740. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  5741. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  5742. "shasum": ""
  5743. },
  5744. "require": {
  5745. "php": "^5.3|^7.0|^8.0"
  5746. },
  5747. "replace": {
  5748. "cordoval/hamcrest-php": "*",
  5749. "davedevelopment/hamcrest-php": "*",
  5750. "kodova/hamcrest-php": "*"
  5751. },
  5752. "require-dev": {
  5753. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  5754. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  5755. },
  5756. "type": "library",
  5757. "extra": {
  5758. "branch-alias": {
  5759. "dev-master": "2.1-dev"
  5760. }
  5761. },
  5762. "autoload": {
  5763. "classmap": [
  5764. "hamcrest"
  5765. ]
  5766. },
  5767. "notification-url": "https://packagist.org/downloads/",
  5768. "license": [
  5769. "BSD-3-Clause"
  5770. ],
  5771. "description": "This is the PHP port of Hamcrest Matchers",
  5772. "keywords": [
  5773. "test"
  5774. ],
  5775. "support": {
  5776. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  5777. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  5778. },
  5779. "time": "2020-07-09T08:09:16+00:00"
  5780. },
  5781. {
  5782. "name": "mockery/mockery",
  5783. "version": "1.5.1",
  5784. "source": {
  5785. "type": "git",
  5786. "url": "https://github.com/mockery/mockery.git",
  5787. "reference": "e92dcc83d5a51851baf5f5591d32cb2b16e3684e"
  5788. },
  5789. "dist": {
  5790. "type": "zip",
  5791. "url": "https://api.github.com/repos/mockery/mockery/zipball/e92dcc83d5a51851baf5f5591d32cb2b16e3684e",
  5792. "reference": "e92dcc83d5a51851baf5f5591d32cb2b16e3684e",
  5793. "shasum": ""
  5794. },
  5795. "require": {
  5796. "hamcrest/hamcrest-php": "^2.0.1",
  5797. "lib-pcre": ">=7.0",
  5798. "php": "^7.3 || ^8.0"
  5799. },
  5800. "conflict": {
  5801. "phpunit/phpunit": "<8.0"
  5802. },
  5803. "require-dev": {
  5804. "phpunit/phpunit": "^8.5 || ^9.3"
  5805. },
  5806. "type": "library",
  5807. "extra": {
  5808. "branch-alias": {
  5809. "dev-master": "1.4.x-dev"
  5810. }
  5811. },
  5812. "autoload": {
  5813. "psr-0": {
  5814. "Mockery": "library/"
  5815. }
  5816. },
  5817. "notification-url": "https://packagist.org/downloads/",
  5818. "license": [
  5819. "BSD-3-Clause"
  5820. ],
  5821. "authors": [
  5822. {
  5823. "name": "Pádraic Brady",
  5824. "email": "padraic.brady@gmail.com",
  5825. "homepage": "http://blog.astrumfutura.com"
  5826. },
  5827. {
  5828. "name": "Dave Marshall",
  5829. "email": "dave.marshall@atstsolutions.co.uk",
  5830. "homepage": "http://davedevelopment.co.uk"
  5831. }
  5832. ],
  5833. "description": "Mockery is a simple yet flexible PHP mock object framework",
  5834. "homepage": "https://github.com/mockery/mockery",
  5835. "keywords": [
  5836. "BDD",
  5837. "TDD",
  5838. "library",
  5839. "mock",
  5840. "mock objects",
  5841. "mockery",
  5842. "stub",
  5843. "test",
  5844. "test double",
  5845. "testing"
  5846. ],
  5847. "support": {
  5848. "issues": "https://github.com/mockery/mockery/issues",
  5849. "source": "https://github.com/mockery/mockery/tree/1.5.1"
  5850. },
  5851. "time": "2022-09-07T15:32:08+00:00"
  5852. },
  5853. {
  5854. "name": "myclabs/deep-copy",
  5855. "version": "1.11.1",
  5856. "source": {
  5857. "type": "git",
  5858. "url": "https://github.com/myclabs/DeepCopy.git",
  5859. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  5860. },
  5861. "dist": {
  5862. "type": "zip",
  5863. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  5864. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  5865. "shasum": ""
  5866. },
  5867. "require": {
  5868. "php": "^7.1 || ^8.0"
  5869. },
  5870. "conflict": {
  5871. "doctrine/collections": "<1.6.8",
  5872. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  5873. },
  5874. "require-dev": {
  5875. "doctrine/collections": "^1.6.8",
  5876. "doctrine/common": "^2.13.3 || ^3.2.2",
  5877. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  5878. },
  5879. "type": "library",
  5880. "autoload": {
  5881. "files": [
  5882. "src/DeepCopy/deep_copy.php"
  5883. ],
  5884. "psr-4": {
  5885. "DeepCopy\\": "src/DeepCopy/"
  5886. }
  5887. },
  5888. "notification-url": "https://packagist.org/downloads/",
  5889. "license": [
  5890. "MIT"
  5891. ],
  5892. "description": "Create deep copies (clones) of your objects",
  5893. "keywords": [
  5894. "clone",
  5895. "copy",
  5896. "duplicate",
  5897. "object",
  5898. "object graph"
  5899. ],
  5900. "support": {
  5901. "issues": "https://github.com/myclabs/DeepCopy/issues",
  5902. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  5903. },
  5904. "funding": [
  5905. {
  5906. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  5907. "type": "tidelift"
  5908. }
  5909. ],
  5910. "time": "2023-03-08T13:26:56+00:00"
  5911. },
  5912. {
  5913. "name": "nunomaduro/collision",
  5914. "version": "v4.3.0",
  5915. "source": {
  5916. "type": "git",
  5917. "url": "https://github.com/nunomaduro/collision.git",
  5918. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e"
  5919. },
  5920. "dist": {
  5921. "type": "zip",
  5922. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/7c125dc2463f3e144ddc7e05e63077109508c94e",
  5923. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e",
  5924. "shasum": ""
  5925. },
  5926. "require": {
  5927. "facade/ignition-contracts": "^1.0",
  5928. "filp/whoops": "^2.4",
  5929. "php": "^7.2.5 || ^8.0",
  5930. "symfony/console": "^5.0"
  5931. },
  5932. "require-dev": {
  5933. "facade/ignition": "^2.0",
  5934. "fideloper/proxy": "^4.2",
  5935. "friendsofphp/php-cs-fixer": "^2.16",
  5936. "fruitcake/laravel-cors": "^1.0",
  5937. "laravel/framework": "^7.0",
  5938. "laravel/tinker": "^2.0",
  5939. "nunomaduro/larastan": "^0.6",
  5940. "orchestra/testbench": "^5.0",
  5941. "phpstan/phpstan": "^0.12.3",
  5942. "phpunit/phpunit": "^8.5.1 || ^9.0"
  5943. },
  5944. "type": "library",
  5945. "extra": {
  5946. "laravel": {
  5947. "providers": [
  5948. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  5949. ]
  5950. }
  5951. },
  5952. "autoload": {
  5953. "psr-4": {
  5954. "NunoMaduro\\Collision\\": "src/"
  5955. }
  5956. },
  5957. "notification-url": "https://packagist.org/downloads/",
  5958. "license": [
  5959. "MIT"
  5960. ],
  5961. "authors": [
  5962. {
  5963. "name": "Nuno Maduro",
  5964. "email": "enunomaduro@gmail.com"
  5965. }
  5966. ],
  5967. "description": "Cli error handling for console/command-line PHP applications.",
  5968. "keywords": [
  5969. "artisan",
  5970. "cli",
  5971. "command-line",
  5972. "console",
  5973. "error",
  5974. "handling",
  5975. "laravel",
  5976. "laravel-zero",
  5977. "php",
  5978. "symfony"
  5979. ],
  5980. "support": {
  5981. "issues": "https://github.com/nunomaduro/collision/issues",
  5982. "source": "https://github.com/nunomaduro/collision"
  5983. },
  5984. "funding": [
  5985. {
  5986. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  5987. "type": "custom"
  5988. },
  5989. {
  5990. "url": "https://github.com/nunomaduro",
  5991. "type": "github"
  5992. },
  5993. {
  5994. "url": "https://www.patreon.com/nunomaduro",
  5995. "type": "patreon"
  5996. }
  5997. ],
  5998. "time": "2020-10-29T15:12:23+00:00"
  5999. },
  6000. {
  6001. "name": "phar-io/manifest",
  6002. "version": "2.0.3",
  6003. "source": {
  6004. "type": "git",
  6005. "url": "https://github.com/phar-io/manifest.git",
  6006. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  6007. },
  6008. "dist": {
  6009. "type": "zip",
  6010. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  6011. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  6012. "shasum": ""
  6013. },
  6014. "require": {
  6015. "ext-dom": "*",
  6016. "ext-phar": "*",
  6017. "ext-xmlwriter": "*",
  6018. "phar-io/version": "^3.0.1",
  6019. "php": "^7.2 || ^8.0"
  6020. },
  6021. "type": "library",
  6022. "extra": {
  6023. "branch-alias": {
  6024. "dev-master": "2.0.x-dev"
  6025. }
  6026. },
  6027. "autoload": {
  6028. "classmap": [
  6029. "src/"
  6030. ]
  6031. },
  6032. "notification-url": "https://packagist.org/downloads/",
  6033. "license": [
  6034. "BSD-3-Clause"
  6035. ],
  6036. "authors": [
  6037. {
  6038. "name": "Arne Blankerts",
  6039. "email": "arne@blankerts.de",
  6040. "role": "Developer"
  6041. },
  6042. {
  6043. "name": "Sebastian Heuer",
  6044. "email": "sebastian@phpeople.de",
  6045. "role": "Developer"
  6046. },
  6047. {
  6048. "name": "Sebastian Bergmann",
  6049. "email": "sebastian@phpunit.de",
  6050. "role": "Developer"
  6051. }
  6052. ],
  6053. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  6054. "support": {
  6055. "issues": "https://github.com/phar-io/manifest/issues",
  6056. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  6057. },
  6058. "time": "2021-07-20T11:28:43+00:00"
  6059. },
  6060. {
  6061. "name": "phar-io/version",
  6062. "version": "3.2.1",
  6063. "source": {
  6064. "type": "git",
  6065. "url": "https://github.com/phar-io/version.git",
  6066. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  6067. },
  6068. "dist": {
  6069. "type": "zip",
  6070. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  6071. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  6072. "shasum": ""
  6073. },
  6074. "require": {
  6075. "php": "^7.2 || ^8.0"
  6076. },
  6077. "type": "library",
  6078. "autoload": {
  6079. "classmap": [
  6080. "src/"
  6081. ]
  6082. },
  6083. "notification-url": "https://packagist.org/downloads/",
  6084. "license": [
  6085. "BSD-3-Clause"
  6086. ],
  6087. "authors": [
  6088. {
  6089. "name": "Arne Blankerts",
  6090. "email": "arne@blankerts.de",
  6091. "role": "Developer"
  6092. },
  6093. {
  6094. "name": "Sebastian Heuer",
  6095. "email": "sebastian@phpeople.de",
  6096. "role": "Developer"
  6097. },
  6098. {
  6099. "name": "Sebastian Bergmann",
  6100. "email": "sebastian@phpunit.de",
  6101. "role": "Developer"
  6102. }
  6103. ],
  6104. "description": "Library for handling version information and constraints",
  6105. "support": {
  6106. "issues": "https://github.com/phar-io/version/issues",
  6107. "source": "https://github.com/phar-io/version/tree/3.2.1"
  6108. },
  6109. "time": "2022-02-21T01:04:05+00:00"
  6110. },
  6111. {
  6112. "name": "phpunit/php-code-coverage",
  6113. "version": "9.2.26",
  6114. "source": {
  6115. "type": "git",
  6116. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  6117. "reference": "443bc6912c9bd5b409254a40f4b0f4ced7c80ea1"
  6118. },
  6119. "dist": {
  6120. "type": "zip",
  6121. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/443bc6912c9bd5b409254a40f4b0f4ced7c80ea1",
  6122. "reference": "443bc6912c9bd5b409254a40f4b0f4ced7c80ea1",
  6123. "shasum": ""
  6124. },
  6125. "require": {
  6126. "ext-dom": "*",
  6127. "ext-libxml": "*",
  6128. "ext-xmlwriter": "*",
  6129. "nikic/php-parser": "^4.15",
  6130. "php": ">=7.3",
  6131. "phpunit/php-file-iterator": "^3.0.3",
  6132. "phpunit/php-text-template": "^2.0.2",
  6133. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  6134. "sebastian/complexity": "^2.0",
  6135. "sebastian/environment": "^5.1.2",
  6136. "sebastian/lines-of-code": "^1.0.3",
  6137. "sebastian/version": "^3.0.1",
  6138. "theseer/tokenizer": "^1.2.0"
  6139. },
  6140. "require-dev": {
  6141. "phpunit/phpunit": "^9.3"
  6142. },
  6143. "suggest": {
  6144. "ext-pcov": "PHP extension that provides line coverage",
  6145. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  6146. },
  6147. "type": "library",
  6148. "extra": {
  6149. "branch-alias": {
  6150. "dev-master": "9.2-dev"
  6151. }
  6152. },
  6153. "autoload": {
  6154. "classmap": [
  6155. "src/"
  6156. ]
  6157. },
  6158. "notification-url": "https://packagist.org/downloads/",
  6159. "license": [
  6160. "BSD-3-Clause"
  6161. ],
  6162. "authors": [
  6163. {
  6164. "name": "Sebastian Bergmann",
  6165. "email": "sebastian@phpunit.de",
  6166. "role": "lead"
  6167. }
  6168. ],
  6169. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  6170. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  6171. "keywords": [
  6172. "coverage",
  6173. "testing",
  6174. "xunit"
  6175. ],
  6176. "support": {
  6177. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  6178. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.26"
  6179. },
  6180. "funding": [
  6181. {
  6182. "url": "https://github.com/sebastianbergmann",
  6183. "type": "github"
  6184. }
  6185. ],
  6186. "time": "2023-03-06T12:58:08+00:00"
  6187. },
  6188. {
  6189. "name": "phpunit/php-file-iterator",
  6190. "version": "3.0.6",
  6191. "source": {
  6192. "type": "git",
  6193. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  6194. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  6195. },
  6196. "dist": {
  6197. "type": "zip",
  6198. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  6199. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  6200. "shasum": ""
  6201. },
  6202. "require": {
  6203. "php": ">=7.3"
  6204. },
  6205. "require-dev": {
  6206. "phpunit/phpunit": "^9.3"
  6207. },
  6208. "type": "library",
  6209. "extra": {
  6210. "branch-alias": {
  6211. "dev-master": "3.0-dev"
  6212. }
  6213. },
  6214. "autoload": {
  6215. "classmap": [
  6216. "src/"
  6217. ]
  6218. },
  6219. "notification-url": "https://packagist.org/downloads/",
  6220. "license": [
  6221. "BSD-3-Clause"
  6222. ],
  6223. "authors": [
  6224. {
  6225. "name": "Sebastian Bergmann",
  6226. "email": "sebastian@phpunit.de",
  6227. "role": "lead"
  6228. }
  6229. ],
  6230. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  6231. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  6232. "keywords": [
  6233. "filesystem",
  6234. "iterator"
  6235. ],
  6236. "support": {
  6237. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  6238. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  6239. },
  6240. "funding": [
  6241. {
  6242. "url": "https://github.com/sebastianbergmann",
  6243. "type": "github"
  6244. }
  6245. ],
  6246. "time": "2021-12-02T12:48:52+00:00"
  6247. },
  6248. {
  6249. "name": "phpunit/php-invoker",
  6250. "version": "3.1.1",
  6251. "source": {
  6252. "type": "git",
  6253. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  6254. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  6255. },
  6256. "dist": {
  6257. "type": "zip",
  6258. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  6259. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  6260. "shasum": ""
  6261. },
  6262. "require": {
  6263. "php": ">=7.3"
  6264. },
  6265. "require-dev": {
  6266. "ext-pcntl": "*",
  6267. "phpunit/phpunit": "^9.3"
  6268. },
  6269. "suggest": {
  6270. "ext-pcntl": "*"
  6271. },
  6272. "type": "library",
  6273. "extra": {
  6274. "branch-alias": {
  6275. "dev-master": "3.1-dev"
  6276. }
  6277. },
  6278. "autoload": {
  6279. "classmap": [
  6280. "src/"
  6281. ]
  6282. },
  6283. "notification-url": "https://packagist.org/downloads/",
  6284. "license": [
  6285. "BSD-3-Clause"
  6286. ],
  6287. "authors": [
  6288. {
  6289. "name": "Sebastian Bergmann",
  6290. "email": "sebastian@phpunit.de",
  6291. "role": "lead"
  6292. }
  6293. ],
  6294. "description": "Invoke callables with a timeout",
  6295. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  6296. "keywords": [
  6297. "process"
  6298. ],
  6299. "support": {
  6300. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  6301. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  6302. },
  6303. "funding": [
  6304. {
  6305. "url": "https://github.com/sebastianbergmann",
  6306. "type": "github"
  6307. }
  6308. ],
  6309. "time": "2020-09-28T05:58:55+00:00"
  6310. },
  6311. {
  6312. "name": "phpunit/php-text-template",
  6313. "version": "2.0.4",
  6314. "source": {
  6315. "type": "git",
  6316. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  6317. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  6318. },
  6319. "dist": {
  6320. "type": "zip",
  6321. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  6322. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  6323. "shasum": ""
  6324. },
  6325. "require": {
  6326. "php": ">=7.3"
  6327. },
  6328. "require-dev": {
  6329. "phpunit/phpunit": "^9.3"
  6330. },
  6331. "type": "library",
  6332. "extra": {
  6333. "branch-alias": {
  6334. "dev-master": "2.0-dev"
  6335. }
  6336. },
  6337. "autoload": {
  6338. "classmap": [
  6339. "src/"
  6340. ]
  6341. },
  6342. "notification-url": "https://packagist.org/downloads/",
  6343. "license": [
  6344. "BSD-3-Clause"
  6345. ],
  6346. "authors": [
  6347. {
  6348. "name": "Sebastian Bergmann",
  6349. "email": "sebastian@phpunit.de",
  6350. "role": "lead"
  6351. }
  6352. ],
  6353. "description": "Simple template engine.",
  6354. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  6355. "keywords": [
  6356. "template"
  6357. ],
  6358. "support": {
  6359. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  6360. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  6361. },
  6362. "funding": [
  6363. {
  6364. "url": "https://github.com/sebastianbergmann",
  6365. "type": "github"
  6366. }
  6367. ],
  6368. "time": "2020-10-26T05:33:50+00:00"
  6369. },
  6370. {
  6371. "name": "phpunit/php-timer",
  6372. "version": "5.0.3",
  6373. "source": {
  6374. "type": "git",
  6375. "url": "https://github.com/sebastianbergmann/php-timer.git",
  6376. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  6377. },
  6378. "dist": {
  6379. "type": "zip",
  6380. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  6381. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  6382. "shasum": ""
  6383. },
  6384. "require": {
  6385. "php": ">=7.3"
  6386. },
  6387. "require-dev": {
  6388. "phpunit/phpunit": "^9.3"
  6389. },
  6390. "type": "library",
  6391. "extra": {
  6392. "branch-alias": {
  6393. "dev-master": "5.0-dev"
  6394. }
  6395. },
  6396. "autoload": {
  6397. "classmap": [
  6398. "src/"
  6399. ]
  6400. },
  6401. "notification-url": "https://packagist.org/downloads/",
  6402. "license": [
  6403. "BSD-3-Clause"
  6404. ],
  6405. "authors": [
  6406. {
  6407. "name": "Sebastian Bergmann",
  6408. "email": "sebastian@phpunit.de",
  6409. "role": "lead"
  6410. }
  6411. ],
  6412. "description": "Utility class for timing",
  6413. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  6414. "keywords": [
  6415. "timer"
  6416. ],
  6417. "support": {
  6418. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  6419. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  6420. },
  6421. "funding": [
  6422. {
  6423. "url": "https://github.com/sebastianbergmann",
  6424. "type": "github"
  6425. }
  6426. ],
  6427. "time": "2020-10-26T13:16:10+00:00"
  6428. },
  6429. {
  6430. "name": "phpunit/phpunit",
  6431. "version": "9.6.6",
  6432. "source": {
  6433. "type": "git",
  6434. "url": "https://github.com/sebastianbergmann/phpunit.git",
  6435. "reference": "b65d59a059d3004a040c16a82e07bbdf6cfdd115"
  6436. },
  6437. "dist": {
  6438. "type": "zip",
  6439. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/b65d59a059d3004a040c16a82e07bbdf6cfdd115",
  6440. "reference": "b65d59a059d3004a040c16a82e07bbdf6cfdd115",
  6441. "shasum": ""
  6442. },
  6443. "require": {
  6444. "doctrine/instantiator": "^1.3.1 || ^2",
  6445. "ext-dom": "*",
  6446. "ext-json": "*",
  6447. "ext-libxml": "*",
  6448. "ext-mbstring": "*",
  6449. "ext-xml": "*",
  6450. "ext-xmlwriter": "*",
  6451. "myclabs/deep-copy": "^1.10.1",
  6452. "phar-io/manifest": "^2.0.3",
  6453. "phar-io/version": "^3.0.2",
  6454. "php": ">=7.3",
  6455. "phpunit/php-code-coverage": "^9.2.13",
  6456. "phpunit/php-file-iterator": "^3.0.5",
  6457. "phpunit/php-invoker": "^3.1.1",
  6458. "phpunit/php-text-template": "^2.0.3",
  6459. "phpunit/php-timer": "^5.0.2",
  6460. "sebastian/cli-parser": "^1.0.1",
  6461. "sebastian/code-unit": "^1.0.6",
  6462. "sebastian/comparator": "^4.0.8",
  6463. "sebastian/diff": "^4.0.3",
  6464. "sebastian/environment": "^5.1.3",
  6465. "sebastian/exporter": "^4.0.5",
  6466. "sebastian/global-state": "^5.0.1",
  6467. "sebastian/object-enumerator": "^4.0.3",
  6468. "sebastian/resource-operations": "^3.0.3",
  6469. "sebastian/type": "^3.2",
  6470. "sebastian/version": "^3.0.2"
  6471. },
  6472. "suggest": {
  6473. "ext-soap": "To be able to generate mocks based on WSDL files",
  6474. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  6475. },
  6476. "bin": [
  6477. "phpunit"
  6478. ],
  6479. "type": "library",
  6480. "extra": {
  6481. "branch-alias": {
  6482. "dev-master": "9.6-dev"
  6483. }
  6484. },
  6485. "autoload": {
  6486. "files": [
  6487. "src/Framework/Assert/Functions.php"
  6488. ],
  6489. "classmap": [
  6490. "src/"
  6491. ]
  6492. },
  6493. "notification-url": "https://packagist.org/downloads/",
  6494. "license": [
  6495. "BSD-3-Clause"
  6496. ],
  6497. "authors": [
  6498. {
  6499. "name": "Sebastian Bergmann",
  6500. "email": "sebastian@phpunit.de",
  6501. "role": "lead"
  6502. }
  6503. ],
  6504. "description": "The PHP Unit Testing framework.",
  6505. "homepage": "https://phpunit.de/",
  6506. "keywords": [
  6507. "phpunit",
  6508. "testing",
  6509. "xunit"
  6510. ],
  6511. "support": {
  6512. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  6513. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  6514. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.6"
  6515. },
  6516. "funding": [
  6517. {
  6518. "url": "https://phpunit.de/sponsors.html",
  6519. "type": "custom"
  6520. },
  6521. {
  6522. "url": "https://github.com/sebastianbergmann",
  6523. "type": "github"
  6524. },
  6525. {
  6526. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  6527. "type": "tidelift"
  6528. }
  6529. ],
  6530. "time": "2023-03-27T11:43:46+00:00"
  6531. },
  6532. {
  6533. "name": "sebastian/cli-parser",
  6534. "version": "1.0.1",
  6535. "source": {
  6536. "type": "git",
  6537. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  6538. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  6539. },
  6540. "dist": {
  6541. "type": "zip",
  6542. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  6543. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  6544. "shasum": ""
  6545. },
  6546. "require": {
  6547. "php": ">=7.3"
  6548. },
  6549. "require-dev": {
  6550. "phpunit/phpunit": "^9.3"
  6551. },
  6552. "type": "library",
  6553. "extra": {
  6554. "branch-alias": {
  6555. "dev-master": "1.0-dev"
  6556. }
  6557. },
  6558. "autoload": {
  6559. "classmap": [
  6560. "src/"
  6561. ]
  6562. },
  6563. "notification-url": "https://packagist.org/downloads/",
  6564. "license": [
  6565. "BSD-3-Clause"
  6566. ],
  6567. "authors": [
  6568. {
  6569. "name": "Sebastian Bergmann",
  6570. "email": "sebastian@phpunit.de",
  6571. "role": "lead"
  6572. }
  6573. ],
  6574. "description": "Library for parsing CLI options",
  6575. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  6576. "support": {
  6577. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  6578. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  6579. },
  6580. "funding": [
  6581. {
  6582. "url": "https://github.com/sebastianbergmann",
  6583. "type": "github"
  6584. }
  6585. ],
  6586. "time": "2020-09-28T06:08:49+00:00"
  6587. },
  6588. {
  6589. "name": "sebastian/code-unit",
  6590. "version": "1.0.8",
  6591. "source": {
  6592. "type": "git",
  6593. "url": "https://github.com/sebastianbergmann/code-unit.git",
  6594. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  6595. },
  6596. "dist": {
  6597. "type": "zip",
  6598. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  6599. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  6600. "shasum": ""
  6601. },
  6602. "require": {
  6603. "php": ">=7.3"
  6604. },
  6605. "require-dev": {
  6606. "phpunit/phpunit": "^9.3"
  6607. },
  6608. "type": "library",
  6609. "extra": {
  6610. "branch-alias": {
  6611. "dev-master": "1.0-dev"
  6612. }
  6613. },
  6614. "autoload": {
  6615. "classmap": [
  6616. "src/"
  6617. ]
  6618. },
  6619. "notification-url": "https://packagist.org/downloads/",
  6620. "license": [
  6621. "BSD-3-Clause"
  6622. ],
  6623. "authors": [
  6624. {
  6625. "name": "Sebastian Bergmann",
  6626. "email": "sebastian@phpunit.de",
  6627. "role": "lead"
  6628. }
  6629. ],
  6630. "description": "Collection of value objects that represent the PHP code units",
  6631. "homepage": "https://github.com/sebastianbergmann/code-unit",
  6632. "support": {
  6633. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  6634. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  6635. },
  6636. "funding": [
  6637. {
  6638. "url": "https://github.com/sebastianbergmann",
  6639. "type": "github"
  6640. }
  6641. ],
  6642. "time": "2020-10-26T13:08:54+00:00"
  6643. },
  6644. {
  6645. "name": "sebastian/code-unit-reverse-lookup",
  6646. "version": "2.0.3",
  6647. "source": {
  6648. "type": "git",
  6649. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  6650. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  6651. },
  6652. "dist": {
  6653. "type": "zip",
  6654. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  6655. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  6656. "shasum": ""
  6657. },
  6658. "require": {
  6659. "php": ">=7.3"
  6660. },
  6661. "require-dev": {
  6662. "phpunit/phpunit": "^9.3"
  6663. },
  6664. "type": "library",
  6665. "extra": {
  6666. "branch-alias": {
  6667. "dev-master": "2.0-dev"
  6668. }
  6669. },
  6670. "autoload": {
  6671. "classmap": [
  6672. "src/"
  6673. ]
  6674. },
  6675. "notification-url": "https://packagist.org/downloads/",
  6676. "license": [
  6677. "BSD-3-Clause"
  6678. ],
  6679. "authors": [
  6680. {
  6681. "name": "Sebastian Bergmann",
  6682. "email": "sebastian@phpunit.de"
  6683. }
  6684. ],
  6685. "description": "Looks up which function or method a line of code belongs to",
  6686. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  6687. "support": {
  6688. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  6689. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  6690. },
  6691. "funding": [
  6692. {
  6693. "url": "https://github.com/sebastianbergmann",
  6694. "type": "github"
  6695. }
  6696. ],
  6697. "time": "2020-09-28T05:30:19+00:00"
  6698. },
  6699. {
  6700. "name": "sebastian/comparator",
  6701. "version": "4.0.8",
  6702. "source": {
  6703. "type": "git",
  6704. "url": "https://github.com/sebastianbergmann/comparator.git",
  6705. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  6706. },
  6707. "dist": {
  6708. "type": "zip",
  6709. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  6710. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  6711. "shasum": ""
  6712. },
  6713. "require": {
  6714. "php": ">=7.3",
  6715. "sebastian/diff": "^4.0",
  6716. "sebastian/exporter": "^4.0"
  6717. },
  6718. "require-dev": {
  6719. "phpunit/phpunit": "^9.3"
  6720. },
  6721. "type": "library",
  6722. "extra": {
  6723. "branch-alias": {
  6724. "dev-master": "4.0-dev"
  6725. }
  6726. },
  6727. "autoload": {
  6728. "classmap": [
  6729. "src/"
  6730. ]
  6731. },
  6732. "notification-url": "https://packagist.org/downloads/",
  6733. "license": [
  6734. "BSD-3-Clause"
  6735. ],
  6736. "authors": [
  6737. {
  6738. "name": "Sebastian Bergmann",
  6739. "email": "sebastian@phpunit.de"
  6740. },
  6741. {
  6742. "name": "Jeff Welch",
  6743. "email": "whatthejeff@gmail.com"
  6744. },
  6745. {
  6746. "name": "Volker Dusch",
  6747. "email": "github@wallbash.com"
  6748. },
  6749. {
  6750. "name": "Bernhard Schussek",
  6751. "email": "bschussek@2bepublished.at"
  6752. }
  6753. ],
  6754. "description": "Provides the functionality to compare PHP values for equality",
  6755. "homepage": "https://github.com/sebastianbergmann/comparator",
  6756. "keywords": [
  6757. "comparator",
  6758. "compare",
  6759. "equality"
  6760. ],
  6761. "support": {
  6762. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  6763. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  6764. },
  6765. "funding": [
  6766. {
  6767. "url": "https://github.com/sebastianbergmann",
  6768. "type": "github"
  6769. }
  6770. ],
  6771. "time": "2022-09-14T12:41:17+00:00"
  6772. },
  6773. {
  6774. "name": "sebastian/complexity",
  6775. "version": "2.0.2",
  6776. "source": {
  6777. "type": "git",
  6778. "url": "https://github.com/sebastianbergmann/complexity.git",
  6779. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  6780. },
  6781. "dist": {
  6782. "type": "zip",
  6783. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  6784. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  6785. "shasum": ""
  6786. },
  6787. "require": {
  6788. "nikic/php-parser": "^4.7",
  6789. "php": ">=7.3"
  6790. },
  6791. "require-dev": {
  6792. "phpunit/phpunit": "^9.3"
  6793. },
  6794. "type": "library",
  6795. "extra": {
  6796. "branch-alias": {
  6797. "dev-master": "2.0-dev"
  6798. }
  6799. },
  6800. "autoload": {
  6801. "classmap": [
  6802. "src/"
  6803. ]
  6804. },
  6805. "notification-url": "https://packagist.org/downloads/",
  6806. "license": [
  6807. "BSD-3-Clause"
  6808. ],
  6809. "authors": [
  6810. {
  6811. "name": "Sebastian Bergmann",
  6812. "email": "sebastian@phpunit.de",
  6813. "role": "lead"
  6814. }
  6815. ],
  6816. "description": "Library for calculating the complexity of PHP code units",
  6817. "homepage": "https://github.com/sebastianbergmann/complexity",
  6818. "support": {
  6819. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  6820. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  6821. },
  6822. "funding": [
  6823. {
  6824. "url": "https://github.com/sebastianbergmann",
  6825. "type": "github"
  6826. }
  6827. ],
  6828. "time": "2020-10-26T15:52:27+00:00"
  6829. },
  6830. {
  6831. "name": "sebastian/diff",
  6832. "version": "4.0.4",
  6833. "source": {
  6834. "type": "git",
  6835. "url": "https://github.com/sebastianbergmann/diff.git",
  6836. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  6837. },
  6838. "dist": {
  6839. "type": "zip",
  6840. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  6841. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  6842. "shasum": ""
  6843. },
  6844. "require": {
  6845. "php": ">=7.3"
  6846. },
  6847. "require-dev": {
  6848. "phpunit/phpunit": "^9.3",
  6849. "symfony/process": "^4.2 || ^5"
  6850. },
  6851. "type": "library",
  6852. "extra": {
  6853. "branch-alias": {
  6854. "dev-master": "4.0-dev"
  6855. }
  6856. },
  6857. "autoload": {
  6858. "classmap": [
  6859. "src/"
  6860. ]
  6861. },
  6862. "notification-url": "https://packagist.org/downloads/",
  6863. "license": [
  6864. "BSD-3-Clause"
  6865. ],
  6866. "authors": [
  6867. {
  6868. "name": "Sebastian Bergmann",
  6869. "email": "sebastian@phpunit.de"
  6870. },
  6871. {
  6872. "name": "Kore Nordmann",
  6873. "email": "mail@kore-nordmann.de"
  6874. }
  6875. ],
  6876. "description": "Diff implementation",
  6877. "homepage": "https://github.com/sebastianbergmann/diff",
  6878. "keywords": [
  6879. "diff",
  6880. "udiff",
  6881. "unidiff",
  6882. "unified diff"
  6883. ],
  6884. "support": {
  6885. "issues": "https://github.com/sebastianbergmann/diff/issues",
  6886. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  6887. },
  6888. "funding": [
  6889. {
  6890. "url": "https://github.com/sebastianbergmann",
  6891. "type": "github"
  6892. }
  6893. ],
  6894. "time": "2020-10-26T13:10:38+00:00"
  6895. },
  6896. {
  6897. "name": "sebastian/environment",
  6898. "version": "5.1.5",
  6899. "source": {
  6900. "type": "git",
  6901. "url": "https://github.com/sebastianbergmann/environment.git",
  6902. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  6903. },
  6904. "dist": {
  6905. "type": "zip",
  6906. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  6907. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  6908. "shasum": ""
  6909. },
  6910. "require": {
  6911. "php": ">=7.3"
  6912. },
  6913. "require-dev": {
  6914. "phpunit/phpunit": "^9.3"
  6915. },
  6916. "suggest": {
  6917. "ext-posix": "*"
  6918. },
  6919. "type": "library",
  6920. "extra": {
  6921. "branch-alias": {
  6922. "dev-master": "5.1-dev"
  6923. }
  6924. },
  6925. "autoload": {
  6926. "classmap": [
  6927. "src/"
  6928. ]
  6929. },
  6930. "notification-url": "https://packagist.org/downloads/",
  6931. "license": [
  6932. "BSD-3-Clause"
  6933. ],
  6934. "authors": [
  6935. {
  6936. "name": "Sebastian Bergmann",
  6937. "email": "sebastian@phpunit.de"
  6938. }
  6939. ],
  6940. "description": "Provides functionality to handle HHVM/PHP environments",
  6941. "homepage": "http://www.github.com/sebastianbergmann/environment",
  6942. "keywords": [
  6943. "Xdebug",
  6944. "environment",
  6945. "hhvm"
  6946. ],
  6947. "support": {
  6948. "issues": "https://github.com/sebastianbergmann/environment/issues",
  6949. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  6950. },
  6951. "funding": [
  6952. {
  6953. "url": "https://github.com/sebastianbergmann",
  6954. "type": "github"
  6955. }
  6956. ],
  6957. "time": "2023-02-03T06:03:51+00:00"
  6958. },
  6959. {
  6960. "name": "sebastian/exporter",
  6961. "version": "4.0.5",
  6962. "source": {
  6963. "type": "git",
  6964. "url": "https://github.com/sebastianbergmann/exporter.git",
  6965. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d"
  6966. },
  6967. "dist": {
  6968. "type": "zip",
  6969. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  6970. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  6971. "shasum": ""
  6972. },
  6973. "require": {
  6974. "php": ">=7.3",
  6975. "sebastian/recursion-context": "^4.0"
  6976. },
  6977. "require-dev": {
  6978. "ext-mbstring": "*",
  6979. "phpunit/phpunit": "^9.3"
  6980. },
  6981. "type": "library",
  6982. "extra": {
  6983. "branch-alias": {
  6984. "dev-master": "4.0-dev"
  6985. }
  6986. },
  6987. "autoload": {
  6988. "classmap": [
  6989. "src/"
  6990. ]
  6991. },
  6992. "notification-url": "https://packagist.org/downloads/",
  6993. "license": [
  6994. "BSD-3-Clause"
  6995. ],
  6996. "authors": [
  6997. {
  6998. "name": "Sebastian Bergmann",
  6999. "email": "sebastian@phpunit.de"
  7000. },
  7001. {
  7002. "name": "Jeff Welch",
  7003. "email": "whatthejeff@gmail.com"
  7004. },
  7005. {
  7006. "name": "Volker Dusch",
  7007. "email": "github@wallbash.com"
  7008. },
  7009. {
  7010. "name": "Adam Harvey",
  7011. "email": "aharvey@php.net"
  7012. },
  7013. {
  7014. "name": "Bernhard Schussek",
  7015. "email": "bschussek@gmail.com"
  7016. }
  7017. ],
  7018. "description": "Provides the functionality to export PHP variables for visualization",
  7019. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  7020. "keywords": [
  7021. "export",
  7022. "exporter"
  7023. ],
  7024. "support": {
  7025. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  7026. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5"
  7027. },
  7028. "funding": [
  7029. {
  7030. "url": "https://github.com/sebastianbergmann",
  7031. "type": "github"
  7032. }
  7033. ],
  7034. "time": "2022-09-14T06:03:37+00:00"
  7035. },
  7036. {
  7037. "name": "sebastian/global-state",
  7038. "version": "5.0.5",
  7039. "source": {
  7040. "type": "git",
  7041. "url": "https://github.com/sebastianbergmann/global-state.git",
  7042. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2"
  7043. },
  7044. "dist": {
  7045. "type": "zip",
  7046. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  7047. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  7048. "shasum": ""
  7049. },
  7050. "require": {
  7051. "php": ">=7.3",
  7052. "sebastian/object-reflector": "^2.0",
  7053. "sebastian/recursion-context": "^4.0"
  7054. },
  7055. "require-dev": {
  7056. "ext-dom": "*",
  7057. "phpunit/phpunit": "^9.3"
  7058. },
  7059. "suggest": {
  7060. "ext-uopz": "*"
  7061. },
  7062. "type": "library",
  7063. "extra": {
  7064. "branch-alias": {
  7065. "dev-master": "5.0-dev"
  7066. }
  7067. },
  7068. "autoload": {
  7069. "classmap": [
  7070. "src/"
  7071. ]
  7072. },
  7073. "notification-url": "https://packagist.org/downloads/",
  7074. "license": [
  7075. "BSD-3-Clause"
  7076. ],
  7077. "authors": [
  7078. {
  7079. "name": "Sebastian Bergmann",
  7080. "email": "sebastian@phpunit.de"
  7081. }
  7082. ],
  7083. "description": "Snapshotting of global state",
  7084. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  7085. "keywords": [
  7086. "global state"
  7087. ],
  7088. "support": {
  7089. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  7090. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5"
  7091. },
  7092. "funding": [
  7093. {
  7094. "url": "https://github.com/sebastianbergmann",
  7095. "type": "github"
  7096. }
  7097. ],
  7098. "time": "2022-02-14T08:28:10+00:00"
  7099. },
  7100. {
  7101. "name": "sebastian/lines-of-code",
  7102. "version": "1.0.3",
  7103. "source": {
  7104. "type": "git",
  7105. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  7106. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  7107. },
  7108. "dist": {
  7109. "type": "zip",
  7110. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  7111. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  7112. "shasum": ""
  7113. },
  7114. "require": {
  7115. "nikic/php-parser": "^4.6",
  7116. "php": ">=7.3"
  7117. },
  7118. "require-dev": {
  7119. "phpunit/phpunit": "^9.3"
  7120. },
  7121. "type": "library",
  7122. "extra": {
  7123. "branch-alias": {
  7124. "dev-master": "1.0-dev"
  7125. }
  7126. },
  7127. "autoload": {
  7128. "classmap": [
  7129. "src/"
  7130. ]
  7131. },
  7132. "notification-url": "https://packagist.org/downloads/",
  7133. "license": [
  7134. "BSD-3-Clause"
  7135. ],
  7136. "authors": [
  7137. {
  7138. "name": "Sebastian Bergmann",
  7139. "email": "sebastian@phpunit.de",
  7140. "role": "lead"
  7141. }
  7142. ],
  7143. "description": "Library for counting the lines of code in PHP source code",
  7144. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  7145. "support": {
  7146. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  7147. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  7148. },
  7149. "funding": [
  7150. {
  7151. "url": "https://github.com/sebastianbergmann",
  7152. "type": "github"
  7153. }
  7154. ],
  7155. "time": "2020-11-28T06:42:11+00:00"
  7156. },
  7157. {
  7158. "name": "sebastian/object-enumerator",
  7159. "version": "4.0.4",
  7160. "source": {
  7161. "type": "git",
  7162. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  7163. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  7164. },
  7165. "dist": {
  7166. "type": "zip",
  7167. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  7168. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  7169. "shasum": ""
  7170. },
  7171. "require": {
  7172. "php": ">=7.3",
  7173. "sebastian/object-reflector": "^2.0",
  7174. "sebastian/recursion-context": "^4.0"
  7175. },
  7176. "require-dev": {
  7177. "phpunit/phpunit": "^9.3"
  7178. },
  7179. "type": "library",
  7180. "extra": {
  7181. "branch-alias": {
  7182. "dev-master": "4.0-dev"
  7183. }
  7184. },
  7185. "autoload": {
  7186. "classmap": [
  7187. "src/"
  7188. ]
  7189. },
  7190. "notification-url": "https://packagist.org/downloads/",
  7191. "license": [
  7192. "BSD-3-Clause"
  7193. ],
  7194. "authors": [
  7195. {
  7196. "name": "Sebastian Bergmann",
  7197. "email": "sebastian@phpunit.de"
  7198. }
  7199. ],
  7200. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  7201. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  7202. "support": {
  7203. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  7204. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  7205. },
  7206. "funding": [
  7207. {
  7208. "url": "https://github.com/sebastianbergmann",
  7209. "type": "github"
  7210. }
  7211. ],
  7212. "time": "2020-10-26T13:12:34+00:00"
  7213. },
  7214. {
  7215. "name": "sebastian/object-reflector",
  7216. "version": "2.0.4",
  7217. "source": {
  7218. "type": "git",
  7219. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  7220. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  7221. },
  7222. "dist": {
  7223. "type": "zip",
  7224. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  7225. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  7226. "shasum": ""
  7227. },
  7228. "require": {
  7229. "php": ">=7.3"
  7230. },
  7231. "require-dev": {
  7232. "phpunit/phpunit": "^9.3"
  7233. },
  7234. "type": "library",
  7235. "extra": {
  7236. "branch-alias": {
  7237. "dev-master": "2.0-dev"
  7238. }
  7239. },
  7240. "autoload": {
  7241. "classmap": [
  7242. "src/"
  7243. ]
  7244. },
  7245. "notification-url": "https://packagist.org/downloads/",
  7246. "license": [
  7247. "BSD-3-Clause"
  7248. ],
  7249. "authors": [
  7250. {
  7251. "name": "Sebastian Bergmann",
  7252. "email": "sebastian@phpunit.de"
  7253. }
  7254. ],
  7255. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  7256. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  7257. "support": {
  7258. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  7259. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  7260. },
  7261. "funding": [
  7262. {
  7263. "url": "https://github.com/sebastianbergmann",
  7264. "type": "github"
  7265. }
  7266. ],
  7267. "time": "2020-10-26T13:14:26+00:00"
  7268. },
  7269. {
  7270. "name": "sebastian/recursion-context",
  7271. "version": "4.0.5",
  7272. "source": {
  7273. "type": "git",
  7274. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  7275. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  7276. },
  7277. "dist": {
  7278. "type": "zip",
  7279. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  7280. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  7281. "shasum": ""
  7282. },
  7283. "require": {
  7284. "php": ">=7.3"
  7285. },
  7286. "require-dev": {
  7287. "phpunit/phpunit": "^9.3"
  7288. },
  7289. "type": "library",
  7290. "extra": {
  7291. "branch-alias": {
  7292. "dev-master": "4.0-dev"
  7293. }
  7294. },
  7295. "autoload": {
  7296. "classmap": [
  7297. "src/"
  7298. ]
  7299. },
  7300. "notification-url": "https://packagist.org/downloads/",
  7301. "license": [
  7302. "BSD-3-Clause"
  7303. ],
  7304. "authors": [
  7305. {
  7306. "name": "Sebastian Bergmann",
  7307. "email": "sebastian@phpunit.de"
  7308. },
  7309. {
  7310. "name": "Jeff Welch",
  7311. "email": "whatthejeff@gmail.com"
  7312. },
  7313. {
  7314. "name": "Adam Harvey",
  7315. "email": "aharvey@php.net"
  7316. }
  7317. ],
  7318. "description": "Provides functionality to recursively process PHP variables",
  7319. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  7320. "support": {
  7321. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  7322. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  7323. },
  7324. "funding": [
  7325. {
  7326. "url": "https://github.com/sebastianbergmann",
  7327. "type": "github"
  7328. }
  7329. ],
  7330. "time": "2023-02-03T06:07:39+00:00"
  7331. },
  7332. {
  7333. "name": "sebastian/resource-operations",
  7334. "version": "3.0.3",
  7335. "source": {
  7336. "type": "git",
  7337. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  7338. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  7339. },
  7340. "dist": {
  7341. "type": "zip",
  7342. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  7343. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  7344. "shasum": ""
  7345. },
  7346. "require": {
  7347. "php": ">=7.3"
  7348. },
  7349. "require-dev": {
  7350. "phpunit/phpunit": "^9.0"
  7351. },
  7352. "type": "library",
  7353. "extra": {
  7354. "branch-alias": {
  7355. "dev-master": "3.0-dev"
  7356. }
  7357. },
  7358. "autoload": {
  7359. "classmap": [
  7360. "src/"
  7361. ]
  7362. },
  7363. "notification-url": "https://packagist.org/downloads/",
  7364. "license": [
  7365. "BSD-3-Clause"
  7366. ],
  7367. "authors": [
  7368. {
  7369. "name": "Sebastian Bergmann",
  7370. "email": "sebastian@phpunit.de"
  7371. }
  7372. ],
  7373. "description": "Provides a list of PHP built-in functions that operate on resources",
  7374. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  7375. "support": {
  7376. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  7377. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  7378. },
  7379. "funding": [
  7380. {
  7381. "url": "https://github.com/sebastianbergmann",
  7382. "type": "github"
  7383. }
  7384. ],
  7385. "time": "2020-09-28T06:45:17+00:00"
  7386. },
  7387. {
  7388. "name": "sebastian/type",
  7389. "version": "3.2.1",
  7390. "source": {
  7391. "type": "git",
  7392. "url": "https://github.com/sebastianbergmann/type.git",
  7393. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  7394. },
  7395. "dist": {
  7396. "type": "zip",
  7397. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  7398. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  7399. "shasum": ""
  7400. },
  7401. "require": {
  7402. "php": ">=7.3"
  7403. },
  7404. "require-dev": {
  7405. "phpunit/phpunit": "^9.5"
  7406. },
  7407. "type": "library",
  7408. "extra": {
  7409. "branch-alias": {
  7410. "dev-master": "3.2-dev"
  7411. }
  7412. },
  7413. "autoload": {
  7414. "classmap": [
  7415. "src/"
  7416. ]
  7417. },
  7418. "notification-url": "https://packagist.org/downloads/",
  7419. "license": [
  7420. "BSD-3-Clause"
  7421. ],
  7422. "authors": [
  7423. {
  7424. "name": "Sebastian Bergmann",
  7425. "email": "sebastian@phpunit.de",
  7426. "role": "lead"
  7427. }
  7428. ],
  7429. "description": "Collection of value objects that represent the types of the PHP type system",
  7430. "homepage": "https://github.com/sebastianbergmann/type",
  7431. "support": {
  7432. "issues": "https://github.com/sebastianbergmann/type/issues",
  7433. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  7434. },
  7435. "funding": [
  7436. {
  7437. "url": "https://github.com/sebastianbergmann",
  7438. "type": "github"
  7439. }
  7440. ],
  7441. "time": "2023-02-03T06:13:03+00:00"
  7442. },
  7443. {
  7444. "name": "sebastian/version",
  7445. "version": "3.0.2",
  7446. "source": {
  7447. "type": "git",
  7448. "url": "https://github.com/sebastianbergmann/version.git",
  7449. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  7450. },
  7451. "dist": {
  7452. "type": "zip",
  7453. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  7454. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  7455. "shasum": ""
  7456. },
  7457. "require": {
  7458. "php": ">=7.3"
  7459. },
  7460. "type": "library",
  7461. "extra": {
  7462. "branch-alias": {
  7463. "dev-master": "3.0-dev"
  7464. }
  7465. },
  7466. "autoload": {
  7467. "classmap": [
  7468. "src/"
  7469. ]
  7470. },
  7471. "notification-url": "https://packagist.org/downloads/",
  7472. "license": [
  7473. "BSD-3-Clause"
  7474. ],
  7475. "authors": [
  7476. {
  7477. "name": "Sebastian Bergmann",
  7478. "email": "sebastian@phpunit.de",
  7479. "role": "lead"
  7480. }
  7481. ],
  7482. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  7483. "homepage": "https://github.com/sebastianbergmann/version",
  7484. "support": {
  7485. "issues": "https://github.com/sebastianbergmann/version/issues",
  7486. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  7487. },
  7488. "funding": [
  7489. {
  7490. "url": "https://github.com/sebastianbergmann",
  7491. "type": "github"
  7492. }
  7493. ],
  7494. "time": "2020-09-28T06:39:44+00:00"
  7495. },
  7496. {
  7497. "name": "theseer/tokenizer",
  7498. "version": "1.2.1",
  7499. "source": {
  7500. "type": "git",
  7501. "url": "https://github.com/theseer/tokenizer.git",
  7502. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  7503. },
  7504. "dist": {
  7505. "type": "zip",
  7506. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  7507. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  7508. "shasum": ""
  7509. },
  7510. "require": {
  7511. "ext-dom": "*",
  7512. "ext-tokenizer": "*",
  7513. "ext-xmlwriter": "*",
  7514. "php": "^7.2 || ^8.0"
  7515. },
  7516. "type": "library",
  7517. "autoload": {
  7518. "classmap": [
  7519. "src/"
  7520. ]
  7521. },
  7522. "notification-url": "https://packagist.org/downloads/",
  7523. "license": [
  7524. "BSD-3-Clause"
  7525. ],
  7526. "authors": [
  7527. {
  7528. "name": "Arne Blankerts",
  7529. "email": "arne@blankerts.de",
  7530. "role": "Developer"
  7531. }
  7532. ],
  7533. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  7534. "support": {
  7535. "issues": "https://github.com/theseer/tokenizer/issues",
  7536. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  7537. },
  7538. "funding": [
  7539. {
  7540. "url": "https://github.com/theseer",
  7541. "type": "github"
  7542. }
  7543. ],
  7544. "time": "2021-07-28T10:34:58+00:00"
  7545. }
  7546. ],
  7547. "aliases": [],
  7548. "minimum-stability": "dev",
  7549. "stability-flags": [],
  7550. "prefer-stable": true,
  7551. "prefer-lowest": false,
  7552. "platform": {
  7553. "php": "^7.2.5|^8.0"
  7554. },
  7555. "platform-dev": [],
  7556. "plugin-api-version": "2.3.0"
  7557. }