composer.lock 335 KB

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