composer.lock 282 KB

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