composer.lock 285 KB

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