composer.lock 285 KB

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