composer.lock 318 KB

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