You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

composer.lock 439KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162
  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": "8a30a3775744c40a82d0aa5083bd15e4",
  8. "packages": [
  9. {
  10. "name": "akaunting/laravel-money",
  11. "version": "5.2.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/akaunting/laravel-money.git",
  15. "reference": "c6710ee50ad9a394e3f607a0ebbc64905c308e69"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/akaunting/laravel-money/zipball/c6710ee50ad9a394e3f607a0ebbc64905c308e69",
  20. "reference": "c6710ee50ad9a394e3f607a0ebbc64905c308e69",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "illuminate/contracts": "^9.0|^10.0|^11.0",
  25. "illuminate/support": "^9.0|^10.0|^11.0",
  26. "illuminate/validation": "^9.0|^10.0|^11.0",
  27. "illuminate/view": "^9.0|^10.0|^11.0",
  28. "php": "^8.0",
  29. "vlucas/phpdotenv": "^5.4.1"
  30. },
  31. "require-dev": {
  32. "orchestra/testbench": "^7.4|^8.0|^9.0",
  33. "phpunit/phpunit": "^9.5|^10.0|^11.0",
  34. "vimeo/psalm": "^4.23|^5.1"
  35. },
  36. "type": "library",
  37. "extra": {
  38. "laravel": {
  39. "providers": [
  40. "Akaunting\\Money\\Provider"
  41. ]
  42. }
  43. },
  44. "autoload": {
  45. "files": [
  46. "src/helpers.php"
  47. ],
  48. "psr-4": {
  49. "Akaunting\\Money\\": "src"
  50. }
  51. },
  52. "notification-url": "https://packagist.org/downloads/",
  53. "license": [
  54. "MIT"
  55. ],
  56. "authors": [
  57. {
  58. "name": "Denis Duliçi",
  59. "email": "info@akaunting.com",
  60. "homepage": "https://akaunting.com",
  61. "role": "Developer"
  62. }
  63. ],
  64. "description": "Currency formatting and conversion package for Laravel",
  65. "keywords": [
  66. "convert",
  67. "currency",
  68. "format",
  69. "laravel",
  70. "money"
  71. ],
  72. "support": {
  73. "issues": "https://github.com/akaunting/laravel-money/issues",
  74. "source": "https://github.com/akaunting/laravel-money/tree/5.2.0"
  75. },
  76. "time": "2024-03-19T21:43:10+00:00"
  77. },
  78. {
  79. "name": "andrewdwallo/filament-companies",
  80. "version": "v4.0.2",
  81. "source": {
  82. "type": "git",
  83. "url": "https://github.com/andrewdwallo/filament-companies.git",
  84. "reference": "2320fe95d32f90c09e17dd23aba6e99086d609e1"
  85. },
  86. "dist": {
  87. "type": "zip",
  88. "url": "https://api.github.com/repos/andrewdwallo/filament-companies/zipball/2320fe95d32f90c09e17dd23aba6e99086d609e1",
  89. "reference": "2320fe95d32f90c09e17dd23aba6e99086d609e1",
  90. "shasum": ""
  91. },
  92. "require": {
  93. "ext-json": "*",
  94. "filament/filament": "^3.2.29",
  95. "illuminate/console": "^11.0",
  96. "illuminate/contracts": "^11.0",
  97. "illuminate/support": "^11.0",
  98. "laravel/socialite": "^5.12",
  99. "matomo/device-detector": "^6.1",
  100. "php": "^8.2"
  101. },
  102. "require-dev": {
  103. "laravel/pint": "^1.14",
  104. "laravel/sanctum": "^4.0",
  105. "livewire/livewire": "^3.4.9",
  106. "mockery/mockery": "^1.6",
  107. "orchestra/testbench": "^9.0",
  108. "phpunit/phpunit": "^10.5"
  109. },
  110. "type": "library",
  111. "extra": {
  112. "laravel": {
  113. "providers": [
  114. "Wallo\\FilamentCompanies\\FilamentCompaniesServiceProvider"
  115. ]
  116. }
  117. },
  118. "autoload": {
  119. "psr-4": {
  120. "Wallo\\FilamentCompanies\\": "src/"
  121. }
  122. },
  123. "notification-url": "https://packagist.org/downloads/",
  124. "license": [
  125. "MIT"
  126. ],
  127. "authors": [
  128. {
  129. "name": "Andrew Wallo",
  130. "email": "andrewdwallo@gmail.com",
  131. "role": "Developer"
  132. }
  133. ],
  134. "description": "A comprehensive Laravel authentication and authorization system designed for Filament, focusing on multi-tenant company management.",
  135. "homepage": "https://github.com/andrewdwallo/filament-companies",
  136. "keywords": [
  137. "Authentication",
  138. "ERP",
  139. "andrewdwallo",
  140. "business management",
  141. "company management",
  142. "crm",
  143. "filament",
  144. "filament companies",
  145. "filament-companies",
  146. "laravel",
  147. "multi-tenant",
  148. "saas",
  149. "socialite"
  150. ],
  151. "support": {
  152. "issues": "https://github.com/andrewdwallo/filament-companies/issues",
  153. "source": "https://github.com/andrewdwallo/filament-companies/tree/v4.0.2"
  154. },
  155. "time": "2024-04-05T21:36:19+00:00"
  156. },
  157. {
  158. "name": "andrewdwallo/filament-selectify",
  159. "version": "v2.0.7",
  160. "source": {
  161. "type": "git",
  162. "url": "https://github.com/andrewdwallo/filament-selectify.git",
  163. "reference": "8d83fdc9c06f14a04060076ed9d809e6363abfc4"
  164. },
  165. "dist": {
  166. "type": "zip",
  167. "url": "https://api.github.com/repos/andrewdwallo/filament-selectify/zipball/8d83fdc9c06f14a04060076ed9d809e6363abfc4",
  168. "reference": "8d83fdc9c06f14a04060076ed9d809e6363abfc4",
  169. "shasum": ""
  170. },
  171. "require": {
  172. "filament/forms": "^3.0",
  173. "php": "^8.1",
  174. "spatie/laravel-package-tools": "^1.15.0"
  175. },
  176. "require-dev": {
  177. "laravel/pint": "^1.0",
  178. "nunomaduro/collision": "^7.9",
  179. "orchestra/testbench": "^8.0",
  180. "pestphp/pest": "^2.0",
  181. "pestphp/pest-plugin-arch": "^2.0",
  182. "pestphp/pest-plugin-laravel": "^2.0"
  183. },
  184. "type": "library",
  185. "extra": {
  186. "laravel": {
  187. "providers": [
  188. "Wallo\\FilamentSelectify\\FilamentSelectifyServiceProvider"
  189. ]
  190. }
  191. },
  192. "autoload": {
  193. "psr-4": {
  194. "Wallo\\FilamentSelectify\\": "src/"
  195. }
  196. },
  197. "notification-url": "https://packagist.org/downloads/",
  198. "license": [
  199. "MIT"
  200. ],
  201. "authors": [
  202. {
  203. "name": "Andrew Wallo",
  204. "email": "andrewdwallo@gmail.com",
  205. "role": "Developer"
  206. }
  207. ],
  208. "description": "This is my package filament-selectify",
  209. "homepage": "https://github.com/andrewdwallo/filament-selectify",
  210. "keywords": [
  211. "andrewdwallo",
  212. "filament-selectify",
  213. "laravel"
  214. ],
  215. "support": {
  216. "issues": "https://github.com/andrewdwallo/filament-selectify/issues",
  217. "source": "https://github.com/andrewdwallo/filament-selectify/tree/v2.0.7"
  218. },
  219. "time": "2024-02-26T03:11:42+00:00"
  220. },
  221. {
  222. "name": "andrewdwallo/transmatic",
  223. "version": "v1.1.0",
  224. "source": {
  225. "type": "git",
  226. "url": "https://github.com/andrewdwallo/transmatic.git",
  227. "reference": "fabd11ba0b9ed2813cd60556f7e8d3f0d236c329"
  228. },
  229. "dist": {
  230. "type": "zip",
  231. "url": "https://api.github.com/repos/andrewdwallo/transmatic/zipball/fabd11ba0b9ed2813cd60556f7e8d3f0d236c329",
  232. "reference": "fabd11ba0b9ed2813cd60556f7e8d3f0d236c329",
  233. "shasum": ""
  234. },
  235. "require": {
  236. "aws/aws-sdk-php-laravel": "^3.8",
  237. "ext-intl": "*",
  238. "ext-json": "*",
  239. "illuminate/contracts": "^10.0|^11.0",
  240. "php": "^8.1",
  241. "spatie/laravel-package-tools": "^1.14.0"
  242. },
  243. "require-dev": {
  244. "larastan/larastan": "^2.9",
  245. "laravel/pint": "^1.0",
  246. "nunomaduro/collision": "^7.8|^8.0",
  247. "orchestra/testbench": "^8.8|^9.0",
  248. "pestphp/pest": "^2.20",
  249. "pestphp/pest-plugin-arch": "^2.0",
  250. "pestphp/pest-plugin-laravel": "^2.0",
  251. "phpstan/extension-installer": "^1.1",
  252. "phpstan/phpstan-deprecation-rules": "^1.0",
  253. "phpstan/phpstan-phpunit": "^1.0",
  254. "spatie/laravel-ray": "^1.26"
  255. },
  256. "type": "library",
  257. "extra": {
  258. "laravel": {
  259. "providers": [
  260. "Wallo\\Transmatic\\TransmaticServiceProvider"
  261. ],
  262. "aliases": {
  263. "Transmatic": "Wallo\\Transmatic\\Facades\\Transmatic"
  264. }
  265. }
  266. },
  267. "autoload": {
  268. "files": [
  269. "src/helpers.php"
  270. ],
  271. "psr-4": {
  272. "Wallo\\Transmatic\\": "src/"
  273. }
  274. },
  275. "notification-url": "https://packagist.org/downloads/",
  276. "license": [
  277. "MIT"
  278. ],
  279. "authors": [
  280. {
  281. "name": "Andrew Wallo",
  282. "email": "andrewdwallo@gmail.com",
  283. "role": "Developer"
  284. }
  285. ],
  286. "description": "Automate and streamline real-time text translations in your Laravel applications",
  287. "homepage": "https://github.com/andrewdwallo/transmatic",
  288. "keywords": [
  289. "andrewdwallo",
  290. "aws",
  291. "laravel",
  292. "localization",
  293. "translation",
  294. "translations",
  295. "transmatic"
  296. ],
  297. "support": {
  298. "issues": "https://github.com/andrewdwallo/transmatic/issues",
  299. "source": "https://github.com/andrewdwallo/transmatic/tree/v1.1.0"
  300. },
  301. "time": "2024-03-22T21:31:50+00:00"
  302. },
  303. {
  304. "name": "anourvalar/eloquent-serialize",
  305. "version": "1.2.22",
  306. "source": {
  307. "type": "git",
  308. "url": "https://github.com/AnourValar/eloquent-serialize.git",
  309. "reference": "6e91093c10940859c4b0549b6a90f18d8db45998"
  310. },
  311. "dist": {
  312. "type": "zip",
  313. "url": "https://api.github.com/repos/AnourValar/eloquent-serialize/zipball/6e91093c10940859c4b0549b6a90f18d8db45998",
  314. "reference": "6e91093c10940859c4b0549b6a90f18d8db45998",
  315. "shasum": ""
  316. },
  317. "require": {
  318. "laravel/framework": "^8.0|^9.0|^10.0|^11.0",
  319. "php": "^7.4|^8.0"
  320. },
  321. "require-dev": {
  322. "friendsofphp/php-cs-fixer": "^3.26",
  323. "laravel/legacy-factories": "^1.1",
  324. "orchestra/testbench": "^6.0|^7.0|^8.0|^9.0",
  325. "phpstan/phpstan": "^1.10",
  326. "phpunit/phpunit": "^9.5|^10.5",
  327. "psalm/plugin-laravel": "^2.8",
  328. "squizlabs/php_codesniffer": "^3.7"
  329. },
  330. "type": "library",
  331. "extra": {
  332. "laravel": {
  333. "aliases": {
  334. "EloquentSerialize": "AnourValar\\EloquentSerialize\\Facades\\EloquentSerializeFacade"
  335. }
  336. }
  337. },
  338. "autoload": {
  339. "psr-4": {
  340. "AnourValar\\EloquentSerialize\\": "src/"
  341. }
  342. },
  343. "notification-url": "https://packagist.org/downloads/",
  344. "license": [
  345. "MIT"
  346. ],
  347. "description": "Laravel Query Builder (Eloquent) serialization",
  348. "homepage": "https://github.com/AnourValar/eloquent-serialize",
  349. "keywords": [
  350. "anourvalar",
  351. "builder",
  352. "copy",
  353. "eloquent",
  354. "job",
  355. "laravel",
  356. "query",
  357. "querybuilder",
  358. "queue",
  359. "serializable",
  360. "serialization",
  361. "serialize"
  362. ],
  363. "support": {
  364. "issues": "https://github.com/AnourValar/eloquent-serialize/issues",
  365. "source": "https://github.com/AnourValar/eloquent-serialize/tree/1.2.22"
  366. },
  367. "time": "2024-03-22T12:56:46+00:00"
  368. },
  369. {
  370. "name": "awcodes/filament-table-repeater",
  371. "version": "v3.0.4",
  372. "source": {
  373. "type": "git",
  374. "url": "https://github.com/awcodes/filament-table-repeater.git",
  375. "reference": "01288f0d8c9323f147a6aac7f1fb6c2c4b8b880b"
  376. },
  377. "dist": {
  378. "type": "zip",
  379. "url": "https://api.github.com/repos/awcodes/filament-table-repeater/zipball/01288f0d8c9323f147a6aac7f1fb6c2c4b8b880b",
  380. "reference": "01288f0d8c9323f147a6aac7f1fb6c2c4b8b880b",
  381. "shasum": ""
  382. },
  383. "require": {
  384. "filament/forms": "^3.1",
  385. "php": "^8.1",
  386. "spatie/laravel-package-tools": "^1.13.5"
  387. },
  388. "require-dev": {
  389. "laravel/pint": "^1.0",
  390. "nunomaduro/collision": "^7.0",
  391. "orchestra/testbench": "^8.0",
  392. "pestphp/pest": "^2.0",
  393. "pestphp/pest-plugin-faker": "^2.0",
  394. "pestphp/pest-plugin-laravel": "^2.0",
  395. "pestphp/pest-plugin-livewire": "^2.0",
  396. "phpunit/phpunit": "^10.0",
  397. "spatie/laravel-ray": "^1.26"
  398. },
  399. "type": "library",
  400. "extra": {
  401. "laravel": {
  402. "providers": [
  403. "Awcodes\\TableRepeater\\TableRepeaterServiceProvider"
  404. ]
  405. }
  406. },
  407. "autoload": {
  408. "psr-4": {
  409. "Awcodes\\TableRepeater\\": "src"
  410. }
  411. },
  412. "notification-url": "https://packagist.org/downloads/",
  413. "license": [
  414. "MIT"
  415. ],
  416. "authors": [
  417. {
  418. "name": "Adam Weston",
  419. "email": "awcodes1@gmail.com",
  420. "role": "Developer"
  421. }
  422. ],
  423. "description": "A modified version of the Filament Forms Repeater to display it as a table.",
  424. "homepage": "https://github.com/awcodes/filament-table-repeater",
  425. "keywords": [
  426. "awcodes",
  427. "filament",
  428. "laravel",
  429. "plugin",
  430. "table repeater"
  431. ],
  432. "support": {
  433. "issues": "https://github.com/awcodes/filament-table-repeater/issues",
  434. "source": "https://github.com/awcodes/filament-table-repeater/tree/v3.0.4"
  435. },
  436. "funding": [
  437. {
  438. "url": "https://github.com/awcodes",
  439. "type": "github"
  440. }
  441. ],
  442. "time": "2024-05-13T12:44:06+00:00"
  443. },
  444. {
  445. "name": "aws/aws-crt-php",
  446. "version": "v1.2.5",
  447. "source": {
  448. "type": "git",
  449. "url": "https://github.com/awslabs/aws-crt-php.git",
  450. "reference": "0ea1f04ec5aa9f049f97e012d1ed63b76834a31b"
  451. },
  452. "dist": {
  453. "type": "zip",
  454. "url": "https://api.github.com/repos/awslabs/aws-crt-php/zipball/0ea1f04ec5aa9f049f97e012d1ed63b76834a31b",
  455. "reference": "0ea1f04ec5aa9f049f97e012d1ed63b76834a31b",
  456. "shasum": ""
  457. },
  458. "require": {
  459. "php": ">=5.5"
  460. },
  461. "require-dev": {
  462. "phpunit/phpunit": "^4.8.35||^5.6.3||^9.5",
  463. "yoast/phpunit-polyfills": "^1.0"
  464. },
  465. "suggest": {
  466. "ext-awscrt": "Make sure you install awscrt native extension to use any of the functionality."
  467. },
  468. "type": "library",
  469. "autoload": {
  470. "classmap": [
  471. "src/"
  472. ]
  473. },
  474. "notification-url": "https://packagist.org/downloads/",
  475. "license": [
  476. "Apache-2.0"
  477. ],
  478. "authors": [
  479. {
  480. "name": "AWS SDK Common Runtime Team",
  481. "email": "aws-sdk-common-runtime@amazon.com"
  482. }
  483. ],
  484. "description": "AWS Common Runtime for PHP",
  485. "homepage": "https://github.com/awslabs/aws-crt-php",
  486. "keywords": [
  487. "amazon",
  488. "aws",
  489. "crt",
  490. "sdk"
  491. ],
  492. "support": {
  493. "issues": "https://github.com/awslabs/aws-crt-php/issues",
  494. "source": "https://github.com/awslabs/aws-crt-php/tree/v1.2.5"
  495. },
  496. "time": "2024-04-19T21:30:56+00:00"
  497. },
  498. {
  499. "name": "aws/aws-sdk-php",
  500. "version": "3.314.2",
  501. "source": {
  502. "type": "git",
  503. "url": "https://github.com/aws/aws-sdk-php.git",
  504. "reference": "1f5ccf9c73a66fb85c7c5de8f11ed69e44c636ef"
  505. },
  506. "dist": {
  507. "type": "zip",
  508. "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/1f5ccf9c73a66fb85c7c5de8f11ed69e44c636ef",
  509. "reference": "1f5ccf9c73a66fb85c7c5de8f11ed69e44c636ef",
  510. "shasum": ""
  511. },
  512. "require": {
  513. "aws/aws-crt-php": "^1.2.3",
  514. "ext-json": "*",
  515. "ext-pcre": "*",
  516. "ext-simplexml": "*",
  517. "guzzlehttp/guzzle": "^6.5.8 || ^7.4.5",
  518. "guzzlehttp/promises": "^1.4.0 || ^2.0",
  519. "guzzlehttp/psr7": "^1.9.1 || ^2.4.5",
  520. "mtdowling/jmespath.php": "^2.6",
  521. "php": ">=7.2.5",
  522. "psr/http-message": "^1.0 || ^2.0"
  523. },
  524. "require-dev": {
  525. "andrewsville/php-token-reflection": "^1.4",
  526. "aws/aws-php-sns-message-validator": "~1.0",
  527. "behat/behat": "~3.0",
  528. "composer/composer": "^1.10.22",
  529. "dms/phpunit-arraysubset-asserts": "^0.4.0",
  530. "doctrine/cache": "~1.4",
  531. "ext-dom": "*",
  532. "ext-openssl": "*",
  533. "ext-pcntl": "*",
  534. "ext-sockets": "*",
  535. "nette/neon": "^2.3",
  536. "paragonie/random_compat": ">= 2",
  537. "phpunit/phpunit": "^5.6.3 || ^8.5 || ^9.5",
  538. "psr/cache": "^1.0",
  539. "psr/simple-cache": "^1.0",
  540. "sebastian/comparator": "^1.2.3 || ^4.0",
  541. "yoast/phpunit-polyfills": "^1.0"
  542. },
  543. "suggest": {
  544. "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications",
  545. "doctrine/cache": "To use the DoctrineCacheAdapter",
  546. "ext-curl": "To send requests using cURL",
  547. "ext-openssl": "Allows working with CloudFront private distributions and verifying received SNS messages",
  548. "ext-sockets": "To use client-side monitoring"
  549. },
  550. "type": "library",
  551. "extra": {
  552. "branch-alias": {
  553. "dev-master": "3.0-dev"
  554. }
  555. },
  556. "autoload": {
  557. "files": [
  558. "src/functions.php"
  559. ],
  560. "psr-4": {
  561. "Aws\\": "src/"
  562. }
  563. },
  564. "notification-url": "https://packagist.org/downloads/",
  565. "license": [
  566. "Apache-2.0"
  567. ],
  568. "authors": [
  569. {
  570. "name": "Amazon Web Services",
  571. "homepage": "http://aws.amazon.com"
  572. }
  573. ],
  574. "description": "AWS SDK for PHP - Use Amazon Web Services in your PHP project",
  575. "homepage": "http://aws.amazon.com/sdkforphp",
  576. "keywords": [
  577. "amazon",
  578. "aws",
  579. "cloud",
  580. "dynamodb",
  581. "ec2",
  582. "glacier",
  583. "s3",
  584. "sdk"
  585. ],
  586. "support": {
  587. "forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80",
  588. "issues": "https://github.com/aws/aws-sdk-php/issues",
  589. "source": "https://github.com/aws/aws-sdk-php/tree/3.314.2"
  590. },
  591. "time": "2024-06-14T18:11:34+00:00"
  592. },
  593. {
  594. "name": "aws/aws-sdk-php-laravel",
  595. "version": "3.9.0",
  596. "source": {
  597. "type": "git",
  598. "url": "https://github.com/aws/aws-sdk-php-laravel.git",
  599. "reference": "11cb363873bd77a91b262936936abfa6a2122d53"
  600. },
  601. "dist": {
  602. "type": "zip",
  603. "url": "https://api.github.com/repos/aws/aws-sdk-php-laravel/zipball/11cb363873bd77a91b262936936abfa6a2122d53",
  604. "reference": "11cb363873bd77a91b262936936abfa6a2122d53",
  605. "shasum": ""
  606. },
  607. "require": {
  608. "aws/aws-sdk-php": "^3.279.0",
  609. "illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0",
  610. "php": ">=7.2.5"
  611. },
  612. "require-dev": {
  613. "phpunit/phpunit": "^8.0 || ^9.0",
  614. "vlucas/phpdotenv": "^1.0 || ^2.0 || ^3.0 || ^4.0 || ^5.0",
  615. "yoast/phpunit-polyfills": "^1.0"
  616. },
  617. "suggest": {
  618. "laravel/framework": "To test the Laravel bindings",
  619. "laravel/lumen-framework": "To test the Lumen bindings"
  620. },
  621. "type": "library",
  622. "extra": {
  623. "laravel": {
  624. "providers": [
  625. "Aws\\Laravel\\AwsServiceProvider"
  626. ],
  627. "aliases": {
  628. "AWS": "Aws\\Laravel\\AwsFacade"
  629. }
  630. }
  631. },
  632. "autoload": {
  633. "psr-4": {
  634. "Aws\\Laravel\\": "src/"
  635. }
  636. },
  637. "notification-url": "https://packagist.org/downloads/",
  638. "license": [
  639. "Apache-2.0"
  640. ],
  641. "authors": [
  642. {
  643. "name": "Amazon Web Services",
  644. "homepage": "http://aws.amazon.com"
  645. }
  646. ],
  647. "description": "A simple Laravel 6/7/8/9/10/11 service provider for including the AWS SDK for PHP.",
  648. "homepage": "https://aws.amazon.com/sdk-for-php/",
  649. "keywords": [
  650. "amazon",
  651. "aws",
  652. "dynamodb",
  653. "ec2",
  654. "laravel",
  655. "laravel 10",
  656. "laravel 11",
  657. "laravel 6",
  658. "laravel 7",
  659. "laravel 8",
  660. "laravel 9",
  661. "s3",
  662. "sdk"
  663. ],
  664. "support": {
  665. "issues": "https://github.com/aws/aws-sdk-php-laravel/issues",
  666. "source": "https://github.com/aws/aws-sdk-php-laravel/tree/3.9.0"
  667. },
  668. "time": "2024-03-18T17:43:45+00:00"
  669. },
  670. {
  671. "name": "barryvdh/laravel-dompdf",
  672. "version": "v2.2.0",
  673. "source": {
  674. "type": "git",
  675. "url": "https://github.com/barryvdh/laravel-dompdf.git",
  676. "reference": "c96f90c97666cebec154ca1ffb67afed372114d8"
  677. },
  678. "dist": {
  679. "type": "zip",
  680. "url": "https://api.github.com/repos/barryvdh/laravel-dompdf/zipball/c96f90c97666cebec154ca1ffb67afed372114d8",
  681. "reference": "c96f90c97666cebec154ca1ffb67afed372114d8",
  682. "shasum": ""
  683. },
  684. "require": {
  685. "dompdf/dompdf": "^2.0.7",
  686. "illuminate/support": "^6|^7|^8|^9|^10|^11",
  687. "php": "^7.2 || ^8.0"
  688. },
  689. "require-dev": {
  690. "larastan/larastan": "^1.0|^2.7.0",
  691. "orchestra/testbench": "^4|^5|^6|^7|^8|^9",
  692. "phpro/grumphp": "^1 || ^2.5",
  693. "squizlabs/php_codesniffer": "^3.5"
  694. },
  695. "type": "library",
  696. "extra": {
  697. "branch-alias": {
  698. "dev-master": "2.0-dev"
  699. },
  700. "laravel": {
  701. "providers": [
  702. "Barryvdh\\DomPDF\\ServiceProvider"
  703. ],
  704. "aliases": {
  705. "Pdf": "Barryvdh\\DomPDF\\Facade\\Pdf",
  706. "PDF": "Barryvdh\\DomPDF\\Facade\\Pdf"
  707. }
  708. }
  709. },
  710. "autoload": {
  711. "psr-4": {
  712. "Barryvdh\\DomPDF\\": "src"
  713. }
  714. },
  715. "notification-url": "https://packagist.org/downloads/",
  716. "license": [
  717. "MIT"
  718. ],
  719. "authors": [
  720. {
  721. "name": "Barry vd. Heuvel",
  722. "email": "barryvdh@gmail.com"
  723. }
  724. ],
  725. "description": "A DOMPDF Wrapper for Laravel",
  726. "keywords": [
  727. "dompdf",
  728. "laravel",
  729. "pdf"
  730. ],
  731. "support": {
  732. "issues": "https://github.com/barryvdh/laravel-dompdf/issues",
  733. "source": "https://github.com/barryvdh/laravel-dompdf/tree/v2.2.0"
  734. },
  735. "funding": [
  736. {
  737. "url": "https://fruitcake.nl",
  738. "type": "custom"
  739. },
  740. {
  741. "url": "https://github.com/barryvdh",
  742. "type": "github"
  743. }
  744. ],
  745. "time": "2024-04-25T13:16:04+00:00"
  746. },
  747. {
  748. "name": "bezhansalleh/filament-panel-switch",
  749. "version": "1.0.5",
  750. "source": {
  751. "type": "git",
  752. "url": "https://github.com/bezhanSalleh/filament-panel-switch.git",
  753. "reference": "85fdf7ec35a7c35f380d952146594cd423af683d"
  754. },
  755. "dist": {
  756. "type": "zip",
  757. "url": "https://api.github.com/repos/bezhanSalleh/filament-panel-switch/zipball/85fdf7ec35a7c35f380d952146594cd423af683d",
  758. "reference": "85fdf7ec35a7c35f380d952146594cd423af683d",
  759. "shasum": ""
  760. },
  761. "require": {
  762. "filament/filament": "^3.0",
  763. "php": "^8.1",
  764. "spatie/laravel-package-tools": "^1.15.0"
  765. },
  766. "require-dev": {
  767. "laravel/pint": "^1.0",
  768. "nunomaduro/collision": "^7.9",
  769. "orchestra/testbench": "^8.0",
  770. "pestphp/pest": "^2.0",
  771. "pestphp/pest-plugin-arch": "^2.0",
  772. "pestphp/pest-plugin-laravel": "^2.0",
  773. "spatie/laravel-ray": "^1.26"
  774. },
  775. "type": "library",
  776. "extra": {
  777. "laravel": {
  778. "providers": [
  779. "BezhanSalleh\\PanelSwitch\\PanelSwitchServiceProvider"
  780. ],
  781. "aliases": {
  782. "PanelSwitch": "BezhanSalleh\\PanelSwitch\\Facades\\PanelSwitch"
  783. }
  784. }
  785. },
  786. "autoload": {
  787. "psr-4": {
  788. "BezhanSalleh\\PanelSwitch\\": "src/",
  789. "BezhanSalleh\\PanelSwitch\\Database\\Factories\\": "database/factories/"
  790. }
  791. },
  792. "notification-url": "https://packagist.org/downloads/",
  793. "license": [
  794. "MIT"
  795. ],
  796. "authors": [
  797. {
  798. "name": "Bezhan Salleh",
  799. "email": "bezhan_salleh@yahoo.com",
  800. "role": "Developer"
  801. }
  802. ],
  803. "description": "Easily Switch between your Filament Panels",
  804. "homepage": "https://github.com/bezhansalleh/filament-panel-switch",
  805. "keywords": [
  806. "bezhanSalleh",
  807. "filament",
  808. "filament-panel-switch",
  809. "panel-changer",
  810. "panel-navigation",
  811. "panel-switch"
  812. ],
  813. "support": {
  814. "issues": "https://github.com/bezhansalleh/filament-panel-switch/issues",
  815. "source": "https://github.com/bezhansalleh/filament-panel-switch"
  816. },
  817. "funding": [
  818. {
  819. "url": "https://github.com/bezhanSalleh",
  820. "type": "github"
  821. }
  822. ],
  823. "time": "2024-01-12T02:52:11+00:00"
  824. },
  825. {
  826. "name": "blade-ui-kit/blade-heroicons",
  827. "version": "2.3.0",
  828. "source": {
  829. "type": "git",
  830. "url": "https://github.com/blade-ui-kit/blade-heroicons.git",
  831. "reference": "a265dbcf2a098121aad05752d0bba9f59022e4ba"
  832. },
  833. "dist": {
  834. "type": "zip",
  835. "url": "https://api.github.com/repos/blade-ui-kit/blade-heroicons/zipball/a265dbcf2a098121aad05752d0bba9f59022e4ba",
  836. "reference": "a265dbcf2a098121aad05752d0bba9f59022e4ba",
  837. "shasum": ""
  838. },
  839. "require": {
  840. "blade-ui-kit/blade-icons": "^1.6",
  841. "illuminate/support": "^9.0|^10.0|^11.0",
  842. "php": "^8.0"
  843. },
  844. "require-dev": {
  845. "orchestra/testbench": "^7.0|^8.0|^9.0",
  846. "phpunit/phpunit": "^9.0|^10.5|^11.0"
  847. },
  848. "type": "library",
  849. "extra": {
  850. "laravel": {
  851. "providers": [
  852. "BladeUI\\Heroicons\\BladeHeroiconsServiceProvider"
  853. ]
  854. }
  855. },
  856. "autoload": {
  857. "psr-4": {
  858. "BladeUI\\Heroicons\\": "src"
  859. }
  860. },
  861. "notification-url": "https://packagist.org/downloads/",
  862. "license": [
  863. "MIT"
  864. ],
  865. "authors": [
  866. {
  867. "name": "Dries Vints",
  868. "homepage": "https://driesvints.com"
  869. }
  870. ],
  871. "description": "A package to easily make use of Heroicons in your Laravel Blade views.",
  872. "homepage": "https://github.com/blade-ui-kit/blade-heroicons",
  873. "keywords": [
  874. "Heroicons",
  875. "blade",
  876. "laravel"
  877. ],
  878. "support": {
  879. "issues": "https://github.com/blade-ui-kit/blade-heroicons/issues",
  880. "source": "https://github.com/blade-ui-kit/blade-heroicons/tree/2.3.0"
  881. },
  882. "funding": [
  883. {
  884. "url": "https://github.com/sponsors/driesvints",
  885. "type": "github"
  886. },
  887. {
  888. "url": "https://www.paypal.com/paypalme/driesvints",
  889. "type": "paypal"
  890. }
  891. ],
  892. "time": "2024-02-07T16:33:46+00:00"
  893. },
  894. {
  895. "name": "blade-ui-kit/blade-icons",
  896. "version": "1.6.0",
  897. "source": {
  898. "type": "git",
  899. "url": "https://github.com/blade-ui-kit/blade-icons.git",
  900. "reference": "89660d93f9897d231e9113ba203cd17f4c5efade"
  901. },
  902. "dist": {
  903. "type": "zip",
  904. "url": "https://api.github.com/repos/blade-ui-kit/blade-icons/zipball/89660d93f9897d231e9113ba203cd17f4c5efade",
  905. "reference": "89660d93f9897d231e9113ba203cd17f4c5efade",
  906. "shasum": ""
  907. },
  908. "require": {
  909. "illuminate/contracts": "^8.0|^9.0|^10.0|^11.0",
  910. "illuminate/filesystem": "^8.0|^9.0|^10.0|^11.0",
  911. "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
  912. "illuminate/view": "^8.0|^9.0|^10.0|^11.0",
  913. "php": "^7.4|^8.0",
  914. "symfony/console": "^5.3|^6.0|^7.0",
  915. "symfony/finder": "^5.3|^6.0|^7.0"
  916. },
  917. "require-dev": {
  918. "mockery/mockery": "^1.5.1",
  919. "orchestra/testbench": "^6.0|^7.0|^8.0|^9.0",
  920. "phpunit/phpunit": "^9.0|^10.5|^11.0"
  921. },
  922. "bin": [
  923. "bin/blade-icons-generate"
  924. ],
  925. "type": "library",
  926. "extra": {
  927. "laravel": {
  928. "providers": [
  929. "BladeUI\\Icons\\BladeIconsServiceProvider"
  930. ]
  931. }
  932. },
  933. "autoload": {
  934. "files": [
  935. "src/helpers.php"
  936. ],
  937. "psr-4": {
  938. "BladeUI\\Icons\\": "src"
  939. }
  940. },
  941. "notification-url": "https://packagist.org/downloads/",
  942. "license": [
  943. "MIT"
  944. ],
  945. "authors": [
  946. {
  947. "name": "Dries Vints",
  948. "homepage": "https://driesvints.com"
  949. }
  950. ],
  951. "description": "A package to easily make use of icons in your Laravel Blade views.",
  952. "homepage": "https://github.com/blade-ui-kit/blade-icons",
  953. "keywords": [
  954. "blade",
  955. "icons",
  956. "laravel",
  957. "svg"
  958. ],
  959. "support": {
  960. "issues": "https://github.com/blade-ui-kit/blade-icons/issues",
  961. "source": "https://github.com/blade-ui-kit/blade-icons"
  962. },
  963. "funding": [
  964. {
  965. "url": "https://github.com/sponsors/driesvints",
  966. "type": "github"
  967. },
  968. {
  969. "url": "https://www.paypal.com/paypalme/driesvints",
  970. "type": "paypal"
  971. }
  972. ],
  973. "time": "2024-02-07T16:09:20+00:00"
  974. },
  975. {
  976. "name": "brick/math",
  977. "version": "0.12.1",
  978. "source": {
  979. "type": "git",
  980. "url": "https://github.com/brick/math.git",
  981. "reference": "f510c0a40911935b77b86859eb5223d58d660df1"
  982. },
  983. "dist": {
  984. "type": "zip",
  985. "url": "https://api.github.com/repos/brick/math/zipball/f510c0a40911935b77b86859eb5223d58d660df1",
  986. "reference": "f510c0a40911935b77b86859eb5223d58d660df1",
  987. "shasum": ""
  988. },
  989. "require": {
  990. "php": "^8.1"
  991. },
  992. "require-dev": {
  993. "php-coveralls/php-coveralls": "^2.2",
  994. "phpunit/phpunit": "^10.1",
  995. "vimeo/psalm": "5.16.0"
  996. },
  997. "type": "library",
  998. "autoload": {
  999. "psr-4": {
  1000. "Brick\\Math\\": "src/"
  1001. }
  1002. },
  1003. "notification-url": "https://packagist.org/downloads/",
  1004. "license": [
  1005. "MIT"
  1006. ],
  1007. "description": "Arbitrary-precision arithmetic library",
  1008. "keywords": [
  1009. "Arbitrary-precision",
  1010. "BigInteger",
  1011. "BigRational",
  1012. "arithmetic",
  1013. "bigdecimal",
  1014. "bignum",
  1015. "bignumber",
  1016. "brick",
  1017. "decimal",
  1018. "integer",
  1019. "math",
  1020. "mathematics",
  1021. "rational"
  1022. ],
  1023. "support": {
  1024. "issues": "https://github.com/brick/math/issues",
  1025. "source": "https://github.com/brick/math/tree/0.12.1"
  1026. },
  1027. "funding": [
  1028. {
  1029. "url": "https://github.com/BenMorel",
  1030. "type": "github"
  1031. }
  1032. ],
  1033. "time": "2023-11-29T23:19:16+00:00"
  1034. },
  1035. {
  1036. "name": "carbonphp/carbon-doctrine-types",
  1037. "version": "2.1.0",
  1038. "source": {
  1039. "type": "git",
  1040. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  1041. "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb"
  1042. },
  1043. "dist": {
  1044. "type": "zip",
  1045. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
  1046. "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
  1047. "shasum": ""
  1048. },
  1049. "require": {
  1050. "php": "^7.4 || ^8.0"
  1051. },
  1052. "conflict": {
  1053. "doctrine/dbal": "<3.7.0 || >=4.0.0"
  1054. },
  1055. "require-dev": {
  1056. "doctrine/dbal": "^3.7.0",
  1057. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  1058. "phpunit/phpunit": "^10.3"
  1059. },
  1060. "type": "library",
  1061. "autoload": {
  1062. "psr-4": {
  1063. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  1064. }
  1065. },
  1066. "notification-url": "https://packagist.org/downloads/",
  1067. "license": [
  1068. "MIT"
  1069. ],
  1070. "authors": [
  1071. {
  1072. "name": "KyleKatarn",
  1073. "email": "kylekatarnls@gmail.com"
  1074. }
  1075. ],
  1076. "description": "Types to use Carbon in Doctrine",
  1077. "keywords": [
  1078. "carbon",
  1079. "date",
  1080. "datetime",
  1081. "doctrine",
  1082. "time"
  1083. ],
  1084. "support": {
  1085. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  1086. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/2.1.0"
  1087. },
  1088. "funding": [
  1089. {
  1090. "url": "https://github.com/kylekatarnls",
  1091. "type": "github"
  1092. },
  1093. {
  1094. "url": "https://opencollective.com/Carbon",
  1095. "type": "open_collective"
  1096. },
  1097. {
  1098. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  1099. "type": "tidelift"
  1100. }
  1101. ],
  1102. "time": "2023-12-11T17:09:12+00:00"
  1103. },
  1104. {
  1105. "name": "danharrin/date-format-converter",
  1106. "version": "v0.3.1",
  1107. "source": {
  1108. "type": "git",
  1109. "url": "https://github.com/danharrin/date-format-converter.git",
  1110. "reference": "7c31171bc981e48726729a5f3a05a2d2b63f0b1e"
  1111. },
  1112. "dist": {
  1113. "type": "zip",
  1114. "url": "https://api.github.com/repos/danharrin/date-format-converter/zipball/7c31171bc981e48726729a5f3a05a2d2b63f0b1e",
  1115. "reference": "7c31171bc981e48726729a5f3a05a2d2b63f0b1e",
  1116. "shasum": ""
  1117. },
  1118. "require": {
  1119. "php": "^7.2|^8.0"
  1120. },
  1121. "type": "library",
  1122. "autoload": {
  1123. "files": [
  1124. "src/helpers.php",
  1125. "src/standards.php"
  1126. ],
  1127. "psr-4": {
  1128. "DanHarrin\\DateFormatConverter\\": "src/"
  1129. }
  1130. },
  1131. "notification-url": "https://packagist.org/downloads/",
  1132. "license": [
  1133. "MIT"
  1134. ],
  1135. "authors": [
  1136. {
  1137. "name": "Dan Harrin",
  1138. "email": "dan@danharrin.com"
  1139. }
  1140. ],
  1141. "description": "Convert token-based date formats between standards.",
  1142. "homepage": "https://github.com/danharrin/date-format-converter",
  1143. "support": {
  1144. "issues": "https://github.com/danharrin/date-format-converter/issues",
  1145. "source": "https://github.com/danharrin/date-format-converter"
  1146. },
  1147. "funding": [
  1148. {
  1149. "url": "https://github.com/danharrin",
  1150. "type": "github"
  1151. }
  1152. ],
  1153. "time": "2024-06-13T09:38:44+00:00"
  1154. },
  1155. {
  1156. "name": "danharrin/livewire-rate-limiting",
  1157. "version": "v1.3.1",
  1158. "source": {
  1159. "type": "git",
  1160. "url": "https://github.com/danharrin/livewire-rate-limiting.git",
  1161. "reference": "1a1b299e20de61f88ed6e94ea0bbcfc33aab1ddb"
  1162. },
  1163. "dist": {
  1164. "type": "zip",
  1165. "url": "https://api.github.com/repos/danharrin/livewire-rate-limiting/zipball/1a1b299e20de61f88ed6e94ea0bbcfc33aab1ddb",
  1166. "reference": "1a1b299e20de61f88ed6e94ea0bbcfc33aab1ddb",
  1167. "shasum": ""
  1168. },
  1169. "require": {
  1170. "illuminate/support": "^9.0|^10.0|^11.0",
  1171. "php": "^8.0"
  1172. },
  1173. "require-dev": {
  1174. "livewire/livewire": "^3.0",
  1175. "livewire/volt": "^1.3",
  1176. "orchestra/testbench": "^7.0|^8.0|^9.0",
  1177. "phpunit/phpunit": "^9.0|^10.0"
  1178. },
  1179. "type": "library",
  1180. "autoload": {
  1181. "psr-4": {
  1182. "DanHarrin\\LivewireRateLimiting\\": "src"
  1183. }
  1184. },
  1185. "notification-url": "https://packagist.org/downloads/",
  1186. "license": [
  1187. "MIT"
  1188. ],
  1189. "authors": [
  1190. {
  1191. "name": "Dan Harrin",
  1192. "email": "dan@danharrin.com"
  1193. }
  1194. ],
  1195. "description": "Apply rate limiters to Laravel Livewire actions.",
  1196. "homepage": "https://github.com/danharrin/livewire-rate-limiting",
  1197. "support": {
  1198. "issues": "https://github.com/danharrin/livewire-rate-limiting/issues",
  1199. "source": "https://github.com/danharrin/livewire-rate-limiting"
  1200. },
  1201. "funding": [
  1202. {
  1203. "url": "https://github.com/danharrin",
  1204. "type": "github"
  1205. }
  1206. ],
  1207. "time": "2024-05-06T09:10:03+00:00"
  1208. },
  1209. {
  1210. "name": "dflydev/dot-access-data",
  1211. "version": "v3.0.2",
  1212. "source": {
  1213. "type": "git",
  1214. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1215. "reference": "f41715465d65213d644d3141a6a93081be5d3549"
  1216. },
  1217. "dist": {
  1218. "type": "zip",
  1219. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549",
  1220. "reference": "f41715465d65213d644d3141a6a93081be5d3549",
  1221. "shasum": ""
  1222. },
  1223. "require": {
  1224. "php": "^7.1 || ^8.0"
  1225. },
  1226. "require-dev": {
  1227. "phpstan/phpstan": "^0.12.42",
  1228. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  1229. "scrutinizer/ocular": "1.6.0",
  1230. "squizlabs/php_codesniffer": "^3.5",
  1231. "vimeo/psalm": "^4.0.0"
  1232. },
  1233. "type": "library",
  1234. "extra": {
  1235. "branch-alias": {
  1236. "dev-main": "3.x-dev"
  1237. }
  1238. },
  1239. "autoload": {
  1240. "psr-4": {
  1241. "Dflydev\\DotAccessData\\": "src/"
  1242. }
  1243. },
  1244. "notification-url": "https://packagist.org/downloads/",
  1245. "license": [
  1246. "MIT"
  1247. ],
  1248. "authors": [
  1249. {
  1250. "name": "Dragonfly Development Inc.",
  1251. "email": "info@dflydev.com",
  1252. "homepage": "http://dflydev.com"
  1253. },
  1254. {
  1255. "name": "Beau Simensen",
  1256. "email": "beau@dflydev.com",
  1257. "homepage": "http://beausimensen.com"
  1258. },
  1259. {
  1260. "name": "Carlos Frutos",
  1261. "email": "carlos@kiwing.it",
  1262. "homepage": "https://github.com/cfrutos"
  1263. },
  1264. {
  1265. "name": "Colin O'Dell",
  1266. "email": "colinodell@gmail.com",
  1267. "homepage": "https://www.colinodell.com"
  1268. }
  1269. ],
  1270. "description": "Given a deep data structure, access data by dot notation.",
  1271. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1272. "keywords": [
  1273. "access",
  1274. "data",
  1275. "dot",
  1276. "notation"
  1277. ],
  1278. "support": {
  1279. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  1280. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.2"
  1281. },
  1282. "time": "2022-10-27T11:44:00+00:00"
  1283. },
  1284. {
  1285. "name": "doctrine/cache",
  1286. "version": "2.2.0",
  1287. "source": {
  1288. "type": "git",
  1289. "url": "https://github.com/doctrine/cache.git",
  1290. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb"
  1291. },
  1292. "dist": {
  1293. "type": "zip",
  1294. "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb",
  1295. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb",
  1296. "shasum": ""
  1297. },
  1298. "require": {
  1299. "php": "~7.1 || ^8.0"
  1300. },
  1301. "conflict": {
  1302. "doctrine/common": ">2.2,<2.4"
  1303. },
  1304. "require-dev": {
  1305. "cache/integration-tests": "dev-master",
  1306. "doctrine/coding-standard": "^9",
  1307. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1308. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  1309. "symfony/cache": "^4.4 || ^5.4 || ^6",
  1310. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  1311. },
  1312. "type": "library",
  1313. "autoload": {
  1314. "psr-4": {
  1315. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  1316. }
  1317. },
  1318. "notification-url": "https://packagist.org/downloads/",
  1319. "license": [
  1320. "MIT"
  1321. ],
  1322. "authors": [
  1323. {
  1324. "name": "Guilherme Blanco",
  1325. "email": "guilhermeblanco@gmail.com"
  1326. },
  1327. {
  1328. "name": "Roman Borschel",
  1329. "email": "roman@code-factory.org"
  1330. },
  1331. {
  1332. "name": "Benjamin Eberlei",
  1333. "email": "kontakt@beberlei.de"
  1334. },
  1335. {
  1336. "name": "Jonathan Wage",
  1337. "email": "jonwage@gmail.com"
  1338. },
  1339. {
  1340. "name": "Johannes Schmitt",
  1341. "email": "schmittjoh@gmail.com"
  1342. }
  1343. ],
  1344. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  1345. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  1346. "keywords": [
  1347. "abstraction",
  1348. "apcu",
  1349. "cache",
  1350. "caching",
  1351. "couchdb",
  1352. "memcached",
  1353. "php",
  1354. "redis",
  1355. "xcache"
  1356. ],
  1357. "support": {
  1358. "issues": "https://github.com/doctrine/cache/issues",
  1359. "source": "https://github.com/doctrine/cache/tree/2.2.0"
  1360. },
  1361. "funding": [
  1362. {
  1363. "url": "https://www.doctrine-project.org/sponsorship.html",
  1364. "type": "custom"
  1365. },
  1366. {
  1367. "url": "https://www.patreon.com/phpdoctrine",
  1368. "type": "patreon"
  1369. },
  1370. {
  1371. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  1372. "type": "tidelift"
  1373. }
  1374. ],
  1375. "time": "2022-05-20T20:07:39+00:00"
  1376. },
  1377. {
  1378. "name": "doctrine/dbal",
  1379. "version": "3.8.5",
  1380. "source": {
  1381. "type": "git",
  1382. "url": "https://github.com/doctrine/dbal.git",
  1383. "reference": "0e3536ba088a749985c8801105b6b3ac6c1280b6"
  1384. },
  1385. "dist": {
  1386. "type": "zip",
  1387. "url": "https://api.github.com/repos/doctrine/dbal/zipball/0e3536ba088a749985c8801105b6b3ac6c1280b6",
  1388. "reference": "0e3536ba088a749985c8801105b6b3ac6c1280b6",
  1389. "shasum": ""
  1390. },
  1391. "require": {
  1392. "composer-runtime-api": "^2",
  1393. "doctrine/cache": "^1.11|^2.0",
  1394. "doctrine/deprecations": "^0.5.3|^1",
  1395. "doctrine/event-manager": "^1|^2",
  1396. "php": "^7.4 || ^8.0",
  1397. "psr/cache": "^1|^2|^3",
  1398. "psr/log": "^1|^2|^3"
  1399. },
  1400. "require-dev": {
  1401. "doctrine/coding-standard": "12.0.0",
  1402. "fig/log-test": "^1",
  1403. "jetbrains/phpstorm-stubs": "2023.1",
  1404. "phpstan/phpstan": "1.11.1",
  1405. "phpstan/phpstan-strict-rules": "^1.6",
  1406. "phpunit/phpunit": "9.6.19",
  1407. "psalm/plugin-phpunit": "0.18.4",
  1408. "slevomat/coding-standard": "8.13.1",
  1409. "squizlabs/php_codesniffer": "3.9.2",
  1410. "symfony/cache": "^5.4|^6.0|^7.0",
  1411. "symfony/console": "^4.4|^5.4|^6.0|^7.0",
  1412. "vimeo/psalm": "4.30.0"
  1413. },
  1414. "suggest": {
  1415. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  1416. },
  1417. "bin": [
  1418. "bin/doctrine-dbal"
  1419. ],
  1420. "type": "library",
  1421. "autoload": {
  1422. "psr-4": {
  1423. "Doctrine\\DBAL\\": "src"
  1424. }
  1425. },
  1426. "notification-url": "https://packagist.org/downloads/",
  1427. "license": [
  1428. "MIT"
  1429. ],
  1430. "authors": [
  1431. {
  1432. "name": "Guilherme Blanco",
  1433. "email": "guilhermeblanco@gmail.com"
  1434. },
  1435. {
  1436. "name": "Roman Borschel",
  1437. "email": "roman@code-factory.org"
  1438. },
  1439. {
  1440. "name": "Benjamin Eberlei",
  1441. "email": "kontakt@beberlei.de"
  1442. },
  1443. {
  1444. "name": "Jonathan Wage",
  1445. "email": "jonwage@gmail.com"
  1446. }
  1447. ],
  1448. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  1449. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  1450. "keywords": [
  1451. "abstraction",
  1452. "database",
  1453. "db2",
  1454. "dbal",
  1455. "mariadb",
  1456. "mssql",
  1457. "mysql",
  1458. "oci8",
  1459. "oracle",
  1460. "pdo",
  1461. "pgsql",
  1462. "postgresql",
  1463. "queryobject",
  1464. "sasql",
  1465. "sql",
  1466. "sqlite",
  1467. "sqlserver",
  1468. "sqlsrv"
  1469. ],
  1470. "support": {
  1471. "issues": "https://github.com/doctrine/dbal/issues",
  1472. "source": "https://github.com/doctrine/dbal/tree/3.8.5"
  1473. },
  1474. "funding": [
  1475. {
  1476. "url": "https://www.doctrine-project.org/sponsorship.html",
  1477. "type": "custom"
  1478. },
  1479. {
  1480. "url": "https://www.patreon.com/phpdoctrine",
  1481. "type": "patreon"
  1482. },
  1483. {
  1484. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  1485. "type": "tidelift"
  1486. }
  1487. ],
  1488. "time": "2024-06-08T17:49:56+00:00"
  1489. },
  1490. {
  1491. "name": "doctrine/deprecations",
  1492. "version": "1.1.3",
  1493. "source": {
  1494. "type": "git",
  1495. "url": "https://github.com/doctrine/deprecations.git",
  1496. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab"
  1497. },
  1498. "dist": {
  1499. "type": "zip",
  1500. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  1501. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  1502. "shasum": ""
  1503. },
  1504. "require": {
  1505. "php": "^7.1 || ^8.0"
  1506. },
  1507. "require-dev": {
  1508. "doctrine/coding-standard": "^9",
  1509. "phpstan/phpstan": "1.4.10 || 1.10.15",
  1510. "phpstan/phpstan-phpunit": "^1.0",
  1511. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1512. "psalm/plugin-phpunit": "0.18.4",
  1513. "psr/log": "^1 || ^2 || ^3",
  1514. "vimeo/psalm": "4.30.0 || 5.12.0"
  1515. },
  1516. "suggest": {
  1517. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  1518. },
  1519. "type": "library",
  1520. "autoload": {
  1521. "psr-4": {
  1522. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  1523. }
  1524. },
  1525. "notification-url": "https://packagist.org/downloads/",
  1526. "license": [
  1527. "MIT"
  1528. ],
  1529. "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.",
  1530. "homepage": "https://www.doctrine-project.org/",
  1531. "support": {
  1532. "issues": "https://github.com/doctrine/deprecations/issues",
  1533. "source": "https://github.com/doctrine/deprecations/tree/1.1.3"
  1534. },
  1535. "time": "2024-01-30T19:34:25+00:00"
  1536. },
  1537. {
  1538. "name": "doctrine/event-manager",
  1539. "version": "2.0.1",
  1540. "source": {
  1541. "type": "git",
  1542. "url": "https://github.com/doctrine/event-manager.git",
  1543. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e"
  1544. },
  1545. "dist": {
  1546. "type": "zip",
  1547. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/b680156fa328f1dfd874fd48c7026c41570b9c6e",
  1548. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e",
  1549. "shasum": ""
  1550. },
  1551. "require": {
  1552. "php": "^8.1"
  1553. },
  1554. "conflict": {
  1555. "doctrine/common": "<2.9"
  1556. },
  1557. "require-dev": {
  1558. "doctrine/coding-standard": "^12",
  1559. "phpstan/phpstan": "^1.8.8",
  1560. "phpunit/phpunit": "^10.5",
  1561. "vimeo/psalm": "^5.24"
  1562. },
  1563. "type": "library",
  1564. "autoload": {
  1565. "psr-4": {
  1566. "Doctrine\\Common\\": "src"
  1567. }
  1568. },
  1569. "notification-url": "https://packagist.org/downloads/",
  1570. "license": [
  1571. "MIT"
  1572. ],
  1573. "authors": [
  1574. {
  1575. "name": "Guilherme Blanco",
  1576. "email": "guilhermeblanco@gmail.com"
  1577. },
  1578. {
  1579. "name": "Roman Borschel",
  1580. "email": "roman@code-factory.org"
  1581. },
  1582. {
  1583. "name": "Benjamin Eberlei",
  1584. "email": "kontakt@beberlei.de"
  1585. },
  1586. {
  1587. "name": "Jonathan Wage",
  1588. "email": "jonwage@gmail.com"
  1589. },
  1590. {
  1591. "name": "Johannes Schmitt",
  1592. "email": "schmittjoh@gmail.com"
  1593. },
  1594. {
  1595. "name": "Marco Pivetta",
  1596. "email": "ocramius@gmail.com"
  1597. }
  1598. ],
  1599. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  1600. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  1601. "keywords": [
  1602. "event",
  1603. "event dispatcher",
  1604. "event manager",
  1605. "event system",
  1606. "events"
  1607. ],
  1608. "support": {
  1609. "issues": "https://github.com/doctrine/event-manager/issues",
  1610. "source": "https://github.com/doctrine/event-manager/tree/2.0.1"
  1611. },
  1612. "funding": [
  1613. {
  1614. "url": "https://www.doctrine-project.org/sponsorship.html",
  1615. "type": "custom"
  1616. },
  1617. {
  1618. "url": "https://www.patreon.com/phpdoctrine",
  1619. "type": "patreon"
  1620. },
  1621. {
  1622. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  1623. "type": "tidelift"
  1624. }
  1625. ],
  1626. "time": "2024-05-22T20:47:39+00:00"
  1627. },
  1628. {
  1629. "name": "doctrine/inflector",
  1630. "version": "2.0.10",
  1631. "source": {
  1632. "type": "git",
  1633. "url": "https://github.com/doctrine/inflector.git",
  1634. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  1635. },
  1636. "dist": {
  1637. "type": "zip",
  1638. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  1639. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  1640. "shasum": ""
  1641. },
  1642. "require": {
  1643. "php": "^7.2 || ^8.0"
  1644. },
  1645. "require-dev": {
  1646. "doctrine/coding-standard": "^11.0",
  1647. "phpstan/phpstan": "^1.8",
  1648. "phpstan/phpstan-phpunit": "^1.1",
  1649. "phpstan/phpstan-strict-rules": "^1.3",
  1650. "phpunit/phpunit": "^8.5 || ^9.5",
  1651. "vimeo/psalm": "^4.25 || ^5.4"
  1652. },
  1653. "type": "library",
  1654. "autoload": {
  1655. "psr-4": {
  1656. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  1657. }
  1658. },
  1659. "notification-url": "https://packagist.org/downloads/",
  1660. "license": [
  1661. "MIT"
  1662. ],
  1663. "authors": [
  1664. {
  1665. "name": "Guilherme Blanco",
  1666. "email": "guilhermeblanco@gmail.com"
  1667. },
  1668. {
  1669. "name": "Roman Borschel",
  1670. "email": "roman@code-factory.org"
  1671. },
  1672. {
  1673. "name": "Benjamin Eberlei",
  1674. "email": "kontakt@beberlei.de"
  1675. },
  1676. {
  1677. "name": "Jonathan Wage",
  1678. "email": "jonwage@gmail.com"
  1679. },
  1680. {
  1681. "name": "Johannes Schmitt",
  1682. "email": "schmittjoh@gmail.com"
  1683. }
  1684. ],
  1685. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1686. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1687. "keywords": [
  1688. "inflection",
  1689. "inflector",
  1690. "lowercase",
  1691. "manipulation",
  1692. "php",
  1693. "plural",
  1694. "singular",
  1695. "strings",
  1696. "uppercase",
  1697. "words"
  1698. ],
  1699. "support": {
  1700. "issues": "https://github.com/doctrine/inflector/issues",
  1701. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  1702. },
  1703. "funding": [
  1704. {
  1705. "url": "https://www.doctrine-project.org/sponsorship.html",
  1706. "type": "custom"
  1707. },
  1708. {
  1709. "url": "https://www.patreon.com/phpdoctrine",
  1710. "type": "patreon"
  1711. },
  1712. {
  1713. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1714. "type": "tidelift"
  1715. }
  1716. ],
  1717. "time": "2024-02-18T20:23:39+00:00"
  1718. },
  1719. {
  1720. "name": "doctrine/lexer",
  1721. "version": "3.0.1",
  1722. "source": {
  1723. "type": "git",
  1724. "url": "https://github.com/doctrine/lexer.git",
  1725. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  1726. },
  1727. "dist": {
  1728. "type": "zip",
  1729. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  1730. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  1731. "shasum": ""
  1732. },
  1733. "require": {
  1734. "php": "^8.1"
  1735. },
  1736. "require-dev": {
  1737. "doctrine/coding-standard": "^12",
  1738. "phpstan/phpstan": "^1.10",
  1739. "phpunit/phpunit": "^10.5",
  1740. "psalm/plugin-phpunit": "^0.18.3",
  1741. "vimeo/psalm": "^5.21"
  1742. },
  1743. "type": "library",
  1744. "autoload": {
  1745. "psr-4": {
  1746. "Doctrine\\Common\\Lexer\\": "src"
  1747. }
  1748. },
  1749. "notification-url": "https://packagist.org/downloads/",
  1750. "license": [
  1751. "MIT"
  1752. ],
  1753. "authors": [
  1754. {
  1755. "name": "Guilherme Blanco",
  1756. "email": "guilhermeblanco@gmail.com"
  1757. },
  1758. {
  1759. "name": "Roman Borschel",
  1760. "email": "roman@code-factory.org"
  1761. },
  1762. {
  1763. "name": "Johannes Schmitt",
  1764. "email": "schmittjoh@gmail.com"
  1765. }
  1766. ],
  1767. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1768. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1769. "keywords": [
  1770. "annotations",
  1771. "docblock",
  1772. "lexer",
  1773. "parser",
  1774. "php"
  1775. ],
  1776. "support": {
  1777. "issues": "https://github.com/doctrine/lexer/issues",
  1778. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  1779. },
  1780. "funding": [
  1781. {
  1782. "url": "https://www.doctrine-project.org/sponsorship.html",
  1783. "type": "custom"
  1784. },
  1785. {
  1786. "url": "https://www.patreon.com/phpdoctrine",
  1787. "type": "patreon"
  1788. },
  1789. {
  1790. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1791. "type": "tidelift"
  1792. }
  1793. ],
  1794. "time": "2024-02-05T11:56:58+00:00"
  1795. },
  1796. {
  1797. "name": "dompdf/dompdf",
  1798. "version": "v2.0.8",
  1799. "source": {
  1800. "type": "git",
  1801. "url": "https://github.com/dompdf/dompdf.git",
  1802. "reference": "c20247574601700e1f7c8dab39310fca1964dc52"
  1803. },
  1804. "dist": {
  1805. "type": "zip",
  1806. "url": "https://api.github.com/repos/dompdf/dompdf/zipball/c20247574601700e1f7c8dab39310fca1964dc52",
  1807. "reference": "c20247574601700e1f7c8dab39310fca1964dc52",
  1808. "shasum": ""
  1809. },
  1810. "require": {
  1811. "ext-dom": "*",
  1812. "ext-mbstring": "*",
  1813. "masterminds/html5": "^2.0",
  1814. "phenx/php-font-lib": ">=0.5.4 <1.0.0",
  1815. "phenx/php-svg-lib": ">=0.5.2 <1.0.0",
  1816. "php": "^7.1 || ^8.0"
  1817. },
  1818. "require-dev": {
  1819. "ext-json": "*",
  1820. "ext-zip": "*",
  1821. "mockery/mockery": "^1.3",
  1822. "phpunit/phpunit": "^7.5 || ^8 || ^9",
  1823. "squizlabs/php_codesniffer": "^3.5"
  1824. },
  1825. "suggest": {
  1826. "ext-gd": "Needed to process images",
  1827. "ext-gmagick": "Improves image processing performance",
  1828. "ext-imagick": "Improves image processing performance",
  1829. "ext-zlib": "Needed for pdf stream compression"
  1830. },
  1831. "type": "library",
  1832. "autoload": {
  1833. "psr-4": {
  1834. "Dompdf\\": "src/"
  1835. },
  1836. "classmap": [
  1837. "lib/"
  1838. ]
  1839. },
  1840. "notification-url": "https://packagist.org/downloads/",
  1841. "license": [
  1842. "LGPL-2.1"
  1843. ],
  1844. "authors": [
  1845. {
  1846. "name": "The Dompdf Community",
  1847. "homepage": "https://github.com/dompdf/dompdf/blob/master/AUTHORS.md"
  1848. }
  1849. ],
  1850. "description": "DOMPDF is a CSS 2.1 compliant HTML to PDF converter",
  1851. "homepage": "https://github.com/dompdf/dompdf",
  1852. "support": {
  1853. "issues": "https://github.com/dompdf/dompdf/issues",
  1854. "source": "https://github.com/dompdf/dompdf/tree/v2.0.8"
  1855. },
  1856. "time": "2024-04-29T13:06:17+00:00"
  1857. },
  1858. {
  1859. "name": "dragonmantank/cron-expression",
  1860. "version": "v3.3.3",
  1861. "source": {
  1862. "type": "git",
  1863. "url": "https://github.com/dragonmantank/cron-expression.git",
  1864. "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a"
  1865. },
  1866. "dist": {
  1867. "type": "zip",
  1868. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/adfb1f505deb6384dc8b39804c5065dd3c8c8c0a",
  1869. "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a",
  1870. "shasum": ""
  1871. },
  1872. "require": {
  1873. "php": "^7.2|^8.0",
  1874. "webmozart/assert": "^1.0"
  1875. },
  1876. "replace": {
  1877. "mtdowling/cron-expression": "^1.0"
  1878. },
  1879. "require-dev": {
  1880. "phpstan/extension-installer": "^1.0",
  1881. "phpstan/phpstan": "^1.0",
  1882. "phpstan/phpstan-webmozart-assert": "^1.0",
  1883. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  1884. },
  1885. "type": "library",
  1886. "autoload": {
  1887. "psr-4": {
  1888. "Cron\\": "src/Cron/"
  1889. }
  1890. },
  1891. "notification-url": "https://packagist.org/downloads/",
  1892. "license": [
  1893. "MIT"
  1894. ],
  1895. "authors": [
  1896. {
  1897. "name": "Chris Tankersley",
  1898. "email": "chris@ctankersley.com",
  1899. "homepage": "https://github.com/dragonmantank"
  1900. }
  1901. ],
  1902. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1903. "keywords": [
  1904. "cron",
  1905. "schedule"
  1906. ],
  1907. "support": {
  1908. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  1909. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.3"
  1910. },
  1911. "funding": [
  1912. {
  1913. "url": "https://github.com/dragonmantank",
  1914. "type": "github"
  1915. }
  1916. ],
  1917. "time": "2023-08-10T19:36:49+00:00"
  1918. },
  1919. {
  1920. "name": "egulias/email-validator",
  1921. "version": "4.0.2",
  1922. "source": {
  1923. "type": "git",
  1924. "url": "https://github.com/egulias/EmailValidator.git",
  1925. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e"
  1926. },
  1927. "dist": {
  1928. "type": "zip",
  1929. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e",
  1930. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e",
  1931. "shasum": ""
  1932. },
  1933. "require": {
  1934. "doctrine/lexer": "^2.0 || ^3.0",
  1935. "php": ">=8.1",
  1936. "symfony/polyfill-intl-idn": "^1.26"
  1937. },
  1938. "require-dev": {
  1939. "phpunit/phpunit": "^10.2",
  1940. "vimeo/psalm": "^5.12"
  1941. },
  1942. "suggest": {
  1943. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1944. },
  1945. "type": "library",
  1946. "extra": {
  1947. "branch-alias": {
  1948. "dev-master": "4.0.x-dev"
  1949. }
  1950. },
  1951. "autoload": {
  1952. "psr-4": {
  1953. "Egulias\\EmailValidator\\": "src"
  1954. }
  1955. },
  1956. "notification-url": "https://packagist.org/downloads/",
  1957. "license": [
  1958. "MIT"
  1959. ],
  1960. "authors": [
  1961. {
  1962. "name": "Eduardo Gulias Davis"
  1963. }
  1964. ],
  1965. "description": "A library for validating emails against several RFCs",
  1966. "homepage": "https://github.com/egulias/EmailValidator",
  1967. "keywords": [
  1968. "email",
  1969. "emailvalidation",
  1970. "emailvalidator",
  1971. "validation",
  1972. "validator"
  1973. ],
  1974. "support": {
  1975. "issues": "https://github.com/egulias/EmailValidator/issues",
  1976. "source": "https://github.com/egulias/EmailValidator/tree/4.0.2"
  1977. },
  1978. "funding": [
  1979. {
  1980. "url": "https://github.com/egulias",
  1981. "type": "github"
  1982. }
  1983. ],
  1984. "time": "2023-10-06T06:47:41+00:00"
  1985. },
  1986. {
  1987. "name": "filament/actions",
  1988. "version": "v3.2.91",
  1989. "source": {
  1990. "type": "git",
  1991. "url": "https://github.com/filamentphp/actions.git",
  1992. "reference": "99bf5ed84e3a563250775c223928b185db0d4b7a"
  1993. },
  1994. "dist": {
  1995. "type": "zip",
  1996. "url": "https://api.github.com/repos/filamentphp/actions/zipball/99bf5ed84e3a563250775c223928b185db0d4b7a",
  1997. "reference": "99bf5ed84e3a563250775c223928b185db0d4b7a",
  1998. "shasum": ""
  1999. },
  2000. "require": {
  2001. "anourvalar/eloquent-serialize": "^1.2",
  2002. "filament/forms": "self.version",
  2003. "filament/infolists": "self.version",
  2004. "filament/notifications": "self.version",
  2005. "filament/support": "self.version",
  2006. "illuminate/contracts": "^10.45|^11.0",
  2007. "illuminate/database": "^10.45|^11.0",
  2008. "illuminate/support": "^10.45|^11.0",
  2009. "league/csv": "^9.14",
  2010. "openspout/openspout": "^4.23",
  2011. "php": "^8.1",
  2012. "spatie/laravel-package-tools": "^1.9"
  2013. },
  2014. "type": "library",
  2015. "extra": {
  2016. "laravel": {
  2017. "providers": [
  2018. "Filament\\Actions\\ActionsServiceProvider"
  2019. ]
  2020. }
  2021. },
  2022. "autoload": {
  2023. "psr-4": {
  2024. "Filament\\Actions\\": "src"
  2025. }
  2026. },
  2027. "notification-url": "https://packagist.org/downloads/",
  2028. "license": [
  2029. "MIT"
  2030. ],
  2031. "description": "Easily add beautiful action modals to any Livewire component.",
  2032. "homepage": "https://github.com/filamentphp/filament",
  2033. "support": {
  2034. "issues": "https://github.com/filamentphp/filament/issues",
  2035. "source": "https://github.com/filamentphp/filament"
  2036. },
  2037. "time": "2024-06-14T10:24:05+00:00"
  2038. },
  2039. {
  2040. "name": "filament/filament",
  2041. "version": "v3.2.91",
  2042. "source": {
  2043. "type": "git",
  2044. "url": "https://github.com/filamentphp/panels.git",
  2045. "reference": "4e1a260a78487375dc025acbdd07c3561aabd8e0"
  2046. },
  2047. "dist": {
  2048. "type": "zip",
  2049. "url": "https://api.github.com/repos/filamentphp/panels/zipball/4e1a260a78487375dc025acbdd07c3561aabd8e0",
  2050. "reference": "4e1a260a78487375dc025acbdd07c3561aabd8e0",
  2051. "shasum": ""
  2052. },
  2053. "require": {
  2054. "danharrin/livewire-rate-limiting": "^0.3|^1.0",
  2055. "filament/actions": "self.version",
  2056. "filament/forms": "self.version",
  2057. "filament/infolists": "self.version",
  2058. "filament/notifications": "self.version",
  2059. "filament/support": "self.version",
  2060. "filament/tables": "self.version",
  2061. "filament/widgets": "self.version",
  2062. "illuminate/auth": "^10.45|^11.0",
  2063. "illuminate/console": "^10.45|^11.0",
  2064. "illuminate/contracts": "^10.45|^11.0",
  2065. "illuminate/cookie": "^10.45|^11.0",
  2066. "illuminate/database": "^10.45|^11.0",
  2067. "illuminate/http": "^10.45|^11.0",
  2068. "illuminate/routing": "^10.45|^11.0",
  2069. "illuminate/session": "^10.45|^11.0",
  2070. "illuminate/support": "^10.45|^11.0",
  2071. "illuminate/view": "^10.45|^11.0",
  2072. "php": "^8.1",
  2073. "spatie/laravel-package-tools": "^1.9"
  2074. },
  2075. "type": "library",
  2076. "extra": {
  2077. "laravel": {
  2078. "providers": [
  2079. "Filament\\FilamentServiceProvider"
  2080. ]
  2081. }
  2082. },
  2083. "autoload": {
  2084. "files": [
  2085. "src/global_helpers.php",
  2086. "src/helpers.php"
  2087. ],
  2088. "psr-4": {
  2089. "Filament\\": "src"
  2090. }
  2091. },
  2092. "notification-url": "https://packagist.org/downloads/",
  2093. "license": [
  2094. "MIT"
  2095. ],
  2096. "description": "A collection of full-stack components for accelerated Laravel app development.",
  2097. "homepage": "https://github.com/filamentphp/filament",
  2098. "support": {
  2099. "issues": "https://github.com/filamentphp/filament/issues",
  2100. "source": "https://github.com/filamentphp/filament"
  2101. },
  2102. "time": "2024-06-14T10:24:14+00:00"
  2103. },
  2104. {
  2105. "name": "filament/forms",
  2106. "version": "v3.2.91",
  2107. "source": {
  2108. "type": "git",
  2109. "url": "https://github.com/filamentphp/forms.git",
  2110. "reference": "8708f598cf0bc1e747a8f59626d7166c7c94f149"
  2111. },
  2112. "dist": {
  2113. "type": "zip",
  2114. "url": "https://api.github.com/repos/filamentphp/forms/zipball/8708f598cf0bc1e747a8f59626d7166c7c94f149",
  2115. "reference": "8708f598cf0bc1e747a8f59626d7166c7c94f149",
  2116. "shasum": ""
  2117. },
  2118. "require": {
  2119. "danharrin/date-format-converter": "^0.3",
  2120. "filament/actions": "self.version",
  2121. "filament/support": "self.version",
  2122. "illuminate/console": "^10.45|^11.0",
  2123. "illuminate/contracts": "^10.45|^11.0",
  2124. "illuminate/database": "^10.45|^11.0",
  2125. "illuminate/filesystem": "^10.45|^11.0",
  2126. "illuminate/support": "^10.45|^11.0",
  2127. "illuminate/validation": "^10.45|^11.0",
  2128. "illuminate/view": "^10.45|^11.0",
  2129. "php": "^8.1",
  2130. "spatie/laravel-package-tools": "^1.9"
  2131. },
  2132. "type": "library",
  2133. "extra": {
  2134. "laravel": {
  2135. "providers": [
  2136. "Filament\\Forms\\FormsServiceProvider"
  2137. ]
  2138. }
  2139. },
  2140. "autoload": {
  2141. "files": [
  2142. "src/helpers.php"
  2143. ],
  2144. "psr-4": {
  2145. "Filament\\Forms\\": "src"
  2146. }
  2147. },
  2148. "notification-url": "https://packagist.org/downloads/",
  2149. "license": [
  2150. "MIT"
  2151. ],
  2152. "description": "Easily add beautiful forms to any Livewire component.",
  2153. "homepage": "https://github.com/filamentphp/filament",
  2154. "support": {
  2155. "issues": "https://github.com/filamentphp/filament/issues",
  2156. "source": "https://github.com/filamentphp/filament"
  2157. },
  2158. "time": "2024-06-14T10:24:06+00:00"
  2159. },
  2160. {
  2161. "name": "filament/infolists",
  2162. "version": "v3.2.91",
  2163. "source": {
  2164. "type": "git",
  2165. "url": "https://github.com/filamentphp/infolists.git",
  2166. "reference": "59909a1206fb9961f7bd3ceb993b7e7a0c4d2215"
  2167. },
  2168. "dist": {
  2169. "type": "zip",
  2170. "url": "https://api.github.com/repos/filamentphp/infolists/zipball/59909a1206fb9961f7bd3ceb993b7e7a0c4d2215",
  2171. "reference": "59909a1206fb9961f7bd3ceb993b7e7a0c4d2215",
  2172. "shasum": ""
  2173. },
  2174. "require": {
  2175. "filament/actions": "self.version",
  2176. "filament/support": "self.version",
  2177. "illuminate/console": "^10.45|^11.0",
  2178. "illuminate/contracts": "^10.45|^11.0",
  2179. "illuminate/database": "^10.45|^11.0",
  2180. "illuminate/filesystem": "^10.45|^11.0",
  2181. "illuminate/support": "^10.45|^11.0",
  2182. "illuminate/view": "^10.45|^11.0",
  2183. "php": "^8.1",
  2184. "spatie/laravel-package-tools": "^1.9"
  2185. },
  2186. "type": "library",
  2187. "extra": {
  2188. "laravel": {
  2189. "providers": [
  2190. "Filament\\Infolists\\InfolistsServiceProvider"
  2191. ]
  2192. }
  2193. },
  2194. "autoload": {
  2195. "psr-4": {
  2196. "Filament\\Infolists\\": "src"
  2197. }
  2198. },
  2199. "notification-url": "https://packagist.org/downloads/",
  2200. "license": [
  2201. "MIT"
  2202. ],
  2203. "description": "Easily add beautiful read-only infolists to any Livewire component.",
  2204. "homepage": "https://github.com/filamentphp/filament",
  2205. "support": {
  2206. "issues": "https://github.com/filamentphp/filament/issues",
  2207. "source": "https://github.com/filamentphp/filament"
  2208. },
  2209. "time": "2024-06-13T07:04:01+00:00"
  2210. },
  2211. {
  2212. "name": "filament/notifications",
  2213. "version": "v3.2.91",
  2214. "source": {
  2215. "type": "git",
  2216. "url": "https://github.com/filamentphp/notifications.git",
  2217. "reference": "a78b0be5e5b2a598e65ba62ae5cfbb3d464f6bbb"
  2218. },
  2219. "dist": {
  2220. "type": "zip",
  2221. "url": "https://api.github.com/repos/filamentphp/notifications/zipball/a78b0be5e5b2a598e65ba62ae5cfbb3d464f6bbb",
  2222. "reference": "a78b0be5e5b2a598e65ba62ae5cfbb3d464f6bbb",
  2223. "shasum": ""
  2224. },
  2225. "require": {
  2226. "filament/actions": "self.version",
  2227. "filament/support": "self.version",
  2228. "illuminate/contracts": "^10.45|^11.0",
  2229. "illuminate/filesystem": "^10.45|^11.0",
  2230. "illuminate/notifications": "^10.45|^11.0",
  2231. "illuminate/support": "^10.45|^11.0",
  2232. "php": "^8.1",
  2233. "spatie/laravel-package-tools": "^1.9"
  2234. },
  2235. "type": "library",
  2236. "extra": {
  2237. "laravel": {
  2238. "providers": [
  2239. "Filament\\Notifications\\NotificationsServiceProvider"
  2240. ]
  2241. }
  2242. },
  2243. "autoload": {
  2244. "files": [
  2245. "src/Testing/Autoload.php"
  2246. ],
  2247. "psr-4": {
  2248. "Filament\\Notifications\\": "src"
  2249. }
  2250. },
  2251. "notification-url": "https://packagist.org/downloads/",
  2252. "license": [
  2253. "MIT"
  2254. ],
  2255. "description": "Easily add beautiful notifications to any Livewire app.",
  2256. "homepage": "https://github.com/filamentphp/filament",
  2257. "support": {
  2258. "issues": "https://github.com/filamentphp/filament/issues",
  2259. "source": "https://github.com/filamentphp/filament"
  2260. },
  2261. "time": "2024-05-30T12:37:03+00:00"
  2262. },
  2263. {
  2264. "name": "filament/support",
  2265. "version": "v3.2.91",
  2266. "source": {
  2267. "type": "git",
  2268. "url": "https://github.com/filamentphp/support.git",
  2269. "reference": "852ec3783349d799141c302a4944d5303ece985d"
  2270. },
  2271. "dist": {
  2272. "type": "zip",
  2273. "url": "https://api.github.com/repos/filamentphp/support/zipball/852ec3783349d799141c302a4944d5303ece985d",
  2274. "reference": "852ec3783349d799141c302a4944d5303ece985d",
  2275. "shasum": ""
  2276. },
  2277. "require": {
  2278. "blade-ui-kit/blade-heroicons": "^2.2.1",
  2279. "doctrine/dbal": "^3.2",
  2280. "ext-intl": "*",
  2281. "illuminate/contracts": "^10.45|^11.0",
  2282. "illuminate/support": "^10.45|^11.0",
  2283. "illuminate/view": "^10.45|^11.0",
  2284. "livewire/livewire": "^3.4.10",
  2285. "php": "^8.1",
  2286. "ryangjchandler/blade-capture-directive": "^0.2|^0.3|^1.0",
  2287. "spatie/color": "^1.5",
  2288. "spatie/invade": "^1.0|^2.0",
  2289. "spatie/laravel-package-tools": "^1.9",
  2290. "symfony/console": "^6.0|^7.0",
  2291. "symfony/html-sanitizer": "^6.1|^7.0"
  2292. },
  2293. "type": "library",
  2294. "extra": {
  2295. "laravel": {
  2296. "providers": [
  2297. "Filament\\Support\\SupportServiceProvider"
  2298. ]
  2299. }
  2300. },
  2301. "autoload": {
  2302. "files": [
  2303. "src/helpers.php"
  2304. ],
  2305. "psr-4": {
  2306. "Filament\\Support\\": "src"
  2307. }
  2308. },
  2309. "notification-url": "https://packagist.org/downloads/",
  2310. "license": [
  2311. "MIT"
  2312. ],
  2313. "description": "Core helper methods and foundation code for all Filament packages.",
  2314. "homepage": "https://github.com/filamentphp/filament",
  2315. "support": {
  2316. "issues": "https://github.com/filamentphp/filament/issues",
  2317. "source": "https://github.com/filamentphp/filament"
  2318. },
  2319. "time": "2024-06-14T10:24:22+00:00"
  2320. },
  2321. {
  2322. "name": "filament/tables",
  2323. "version": "v3.2.91",
  2324. "source": {
  2325. "type": "git",
  2326. "url": "https://github.com/filamentphp/tables.git",
  2327. "reference": "34ea607f95e45d0bf9580d47294a179b1457e0e6"
  2328. },
  2329. "dist": {
  2330. "type": "zip",
  2331. "url": "https://api.github.com/repos/filamentphp/tables/zipball/34ea607f95e45d0bf9580d47294a179b1457e0e6",
  2332. "reference": "34ea607f95e45d0bf9580d47294a179b1457e0e6",
  2333. "shasum": ""
  2334. },
  2335. "require": {
  2336. "filament/actions": "self.version",
  2337. "filament/forms": "self.version",
  2338. "filament/support": "self.version",
  2339. "illuminate/console": "^10.45|^11.0",
  2340. "illuminate/contracts": "^10.45|^11.0",
  2341. "illuminate/database": "^10.45|^11.0",
  2342. "illuminate/filesystem": "^10.45|^11.0",
  2343. "illuminate/support": "^10.45|^11.0",
  2344. "illuminate/view": "^10.45|^11.0",
  2345. "kirschbaum-development/eloquent-power-joins": "^3.0",
  2346. "php": "^8.1",
  2347. "spatie/laravel-package-tools": "^1.9"
  2348. },
  2349. "type": "library",
  2350. "extra": {
  2351. "laravel": {
  2352. "providers": [
  2353. "Filament\\Tables\\TablesServiceProvider"
  2354. ]
  2355. }
  2356. },
  2357. "autoload": {
  2358. "psr-4": {
  2359. "Filament\\Tables\\": "src"
  2360. }
  2361. },
  2362. "notification-url": "https://packagist.org/downloads/",
  2363. "license": [
  2364. "MIT"
  2365. ],
  2366. "description": "Easily add beautiful tables to any Livewire component.",
  2367. "homepage": "https://github.com/filamentphp/filament",
  2368. "support": {
  2369. "issues": "https://github.com/filamentphp/filament/issues",
  2370. "source": "https://github.com/filamentphp/filament"
  2371. },
  2372. "time": "2024-06-13T07:04:15+00:00"
  2373. },
  2374. {
  2375. "name": "filament/widgets",
  2376. "version": "v3.2.91",
  2377. "source": {
  2378. "type": "git",
  2379. "url": "https://github.com/filamentphp/widgets.git",
  2380. "reference": "0253f4312909a17e2d80b70021daae3f1659e7da"
  2381. },
  2382. "dist": {
  2383. "type": "zip",
  2384. "url": "https://api.github.com/repos/filamentphp/widgets/zipball/0253f4312909a17e2d80b70021daae3f1659e7da",
  2385. "reference": "0253f4312909a17e2d80b70021daae3f1659e7da",
  2386. "shasum": ""
  2387. },
  2388. "require": {
  2389. "filament/support": "self.version",
  2390. "php": "^8.1",
  2391. "spatie/laravel-package-tools": "^1.9"
  2392. },
  2393. "type": "library",
  2394. "extra": {
  2395. "laravel": {
  2396. "providers": [
  2397. "Filament\\Widgets\\WidgetsServiceProvider"
  2398. ]
  2399. }
  2400. },
  2401. "autoload": {
  2402. "psr-4": {
  2403. "Filament\\Widgets\\": "src"
  2404. }
  2405. },
  2406. "notification-url": "https://packagist.org/downloads/",
  2407. "license": [
  2408. "MIT"
  2409. ],
  2410. "description": "Easily add beautiful dashboard widgets to any Livewire component.",
  2411. "homepage": "https://github.com/filamentphp/filament",
  2412. "support": {
  2413. "issues": "https://github.com/filamentphp/filament/issues",
  2414. "source": "https://github.com/filamentphp/filament"
  2415. },
  2416. "time": "2024-06-05T09:38:52+00:00"
  2417. },
  2418. {
  2419. "name": "firebase/php-jwt",
  2420. "version": "v6.10.1",
  2421. "source": {
  2422. "type": "git",
  2423. "url": "https://github.com/firebase/php-jwt.git",
  2424. "reference": "500501c2ce893c824c801da135d02661199f60c5"
  2425. },
  2426. "dist": {
  2427. "type": "zip",
  2428. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/500501c2ce893c824c801da135d02661199f60c5",
  2429. "reference": "500501c2ce893c824c801da135d02661199f60c5",
  2430. "shasum": ""
  2431. },
  2432. "require": {
  2433. "php": "^8.0"
  2434. },
  2435. "require-dev": {
  2436. "guzzlehttp/guzzle": "^7.4",
  2437. "phpspec/prophecy-phpunit": "^2.0",
  2438. "phpunit/phpunit": "^9.5",
  2439. "psr/cache": "^2.0||^3.0",
  2440. "psr/http-client": "^1.0",
  2441. "psr/http-factory": "^1.0"
  2442. },
  2443. "suggest": {
  2444. "ext-sodium": "Support EdDSA (Ed25519) signatures",
  2445. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  2446. },
  2447. "type": "library",
  2448. "autoload": {
  2449. "psr-4": {
  2450. "Firebase\\JWT\\": "src"
  2451. }
  2452. },
  2453. "notification-url": "https://packagist.org/downloads/",
  2454. "license": [
  2455. "BSD-3-Clause"
  2456. ],
  2457. "authors": [
  2458. {
  2459. "name": "Neuman Vong",
  2460. "email": "neuman+pear@twilio.com",
  2461. "role": "Developer"
  2462. },
  2463. {
  2464. "name": "Anant Narayanan",
  2465. "email": "anant@php.net",
  2466. "role": "Developer"
  2467. }
  2468. ],
  2469. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  2470. "homepage": "https://github.com/firebase/php-jwt",
  2471. "keywords": [
  2472. "jwt",
  2473. "php"
  2474. ],
  2475. "support": {
  2476. "issues": "https://github.com/firebase/php-jwt/issues",
  2477. "source": "https://github.com/firebase/php-jwt/tree/v6.10.1"
  2478. },
  2479. "time": "2024-05-18T18:05:11+00:00"
  2480. },
  2481. {
  2482. "name": "fruitcake/php-cors",
  2483. "version": "v1.3.0",
  2484. "source": {
  2485. "type": "git",
  2486. "url": "https://github.com/fruitcake/php-cors.git",
  2487. "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b"
  2488. },
  2489. "dist": {
  2490. "type": "zip",
  2491. "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/3d158f36e7875e2f040f37bc0573956240a5a38b",
  2492. "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b",
  2493. "shasum": ""
  2494. },
  2495. "require": {
  2496. "php": "^7.4|^8.0",
  2497. "symfony/http-foundation": "^4.4|^5.4|^6|^7"
  2498. },
  2499. "require-dev": {
  2500. "phpstan/phpstan": "^1.4",
  2501. "phpunit/phpunit": "^9",
  2502. "squizlabs/php_codesniffer": "^3.5"
  2503. },
  2504. "type": "library",
  2505. "extra": {
  2506. "branch-alias": {
  2507. "dev-master": "1.2-dev"
  2508. }
  2509. },
  2510. "autoload": {
  2511. "psr-4": {
  2512. "Fruitcake\\Cors\\": "src/"
  2513. }
  2514. },
  2515. "notification-url": "https://packagist.org/downloads/",
  2516. "license": [
  2517. "MIT"
  2518. ],
  2519. "authors": [
  2520. {
  2521. "name": "Fruitcake",
  2522. "homepage": "https://fruitcake.nl"
  2523. },
  2524. {
  2525. "name": "Barryvdh",
  2526. "email": "barryvdh@gmail.com"
  2527. }
  2528. ],
  2529. "description": "Cross-origin resource sharing library for the Symfony HttpFoundation",
  2530. "homepage": "https://github.com/fruitcake/php-cors",
  2531. "keywords": [
  2532. "cors",
  2533. "laravel",
  2534. "symfony"
  2535. ],
  2536. "support": {
  2537. "issues": "https://github.com/fruitcake/php-cors/issues",
  2538. "source": "https://github.com/fruitcake/php-cors/tree/v1.3.0"
  2539. },
  2540. "funding": [
  2541. {
  2542. "url": "https://fruitcake.nl",
  2543. "type": "custom"
  2544. },
  2545. {
  2546. "url": "https://github.com/barryvdh",
  2547. "type": "github"
  2548. }
  2549. ],
  2550. "time": "2023-10-12T05:21:21+00:00"
  2551. },
  2552. {
  2553. "name": "graham-campbell/result-type",
  2554. "version": "v1.1.2",
  2555. "source": {
  2556. "type": "git",
  2557. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  2558. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862"
  2559. },
  2560. "dist": {
  2561. "type": "zip",
  2562. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/fbd48bce38f73f8a4ec8583362e732e4095e5862",
  2563. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862",
  2564. "shasum": ""
  2565. },
  2566. "require": {
  2567. "php": "^7.2.5 || ^8.0",
  2568. "phpoption/phpoption": "^1.9.2"
  2569. },
  2570. "require-dev": {
  2571. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  2572. },
  2573. "type": "library",
  2574. "autoload": {
  2575. "psr-4": {
  2576. "GrahamCampbell\\ResultType\\": "src/"
  2577. }
  2578. },
  2579. "notification-url": "https://packagist.org/downloads/",
  2580. "license": [
  2581. "MIT"
  2582. ],
  2583. "authors": [
  2584. {
  2585. "name": "Graham Campbell",
  2586. "email": "hello@gjcampbell.co.uk",
  2587. "homepage": "https://github.com/GrahamCampbell"
  2588. }
  2589. ],
  2590. "description": "An Implementation Of The Result Type",
  2591. "keywords": [
  2592. "Graham Campbell",
  2593. "GrahamCampbell",
  2594. "Result Type",
  2595. "Result-Type",
  2596. "result"
  2597. ],
  2598. "support": {
  2599. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  2600. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.2"
  2601. },
  2602. "funding": [
  2603. {
  2604. "url": "https://github.com/GrahamCampbell",
  2605. "type": "github"
  2606. },
  2607. {
  2608. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  2609. "type": "tidelift"
  2610. }
  2611. ],
  2612. "time": "2023-11-12T22:16:48+00:00"
  2613. },
  2614. {
  2615. "name": "guava/filament-clusters",
  2616. "version": "1.4.0",
  2617. "source": {
  2618. "type": "git",
  2619. "url": "https://github.com/GuavaCZ/filament-clusters.git",
  2620. "reference": "c4a2ad6342f630f494f5e923b65426d935d12694"
  2621. },
  2622. "dist": {
  2623. "type": "zip",
  2624. "url": "https://api.github.com/repos/GuavaCZ/filament-clusters/zipball/c4a2ad6342f630f494f5e923b65426d935d12694",
  2625. "reference": "c4a2ad6342f630f494f5e923b65426d935d12694",
  2626. "shasum": ""
  2627. },
  2628. "require": {
  2629. "filament/filament": "^3.0",
  2630. "illuminate/contracts": "^10.0 | ^11.0",
  2631. "php": "^8.1",
  2632. "spatie/laravel-package-tools": "^1.14.0"
  2633. },
  2634. "require-dev": {
  2635. "laravel/pint": "^1.0",
  2636. "nunomaduro/collision": "^7.8",
  2637. "nunomaduro/larastan": "^2.0.1",
  2638. "orchestra/testbench": "^8.8",
  2639. "pestphp/pest": "^2.0",
  2640. "pestphp/pest-plugin-arch": "^2.0",
  2641. "pestphp/pest-plugin-laravel": "^2.0",
  2642. "phpstan/extension-installer": "^1.1",
  2643. "phpstan/phpstan-deprecation-rules": "^1.0",
  2644. "phpstan/phpstan-phpunit": "^1.0"
  2645. },
  2646. "type": "library",
  2647. "extra": {
  2648. "laravel": {
  2649. "providers": [
  2650. "Guava\\FilamentClusters\\FilamentClustersServiceProvider"
  2651. ]
  2652. }
  2653. },
  2654. "autoload": {
  2655. "psr-4": {
  2656. "Guava\\FilamentClusters\\": "src/"
  2657. }
  2658. },
  2659. "notification-url": "https://packagist.org/downloads/",
  2660. "license": [
  2661. "MIT"
  2662. ],
  2663. "authors": [
  2664. {
  2665. "name": "Lukas Frey",
  2666. "email": "lukas.frey@guava.cz",
  2667. "role": "Developer"
  2668. }
  2669. ],
  2670. "description": "Filament clusters allow you to cluster multiple fields into one visually.",
  2671. "homepage": "https://github.com/GuavaCZ/filament-clusters",
  2672. "keywords": [
  2673. "Guava",
  2674. "filament-clusters",
  2675. "laravel"
  2676. ],
  2677. "support": {
  2678. "issues": "https://github.com/GuavaCZ/filament-clusters/issues",
  2679. "source": "https://github.com/GuavaCZ/filament-clusters/tree/1.4.0"
  2680. },
  2681. "funding": [
  2682. {
  2683. "url": "https://github.com/GuavaCZ",
  2684. "type": "github"
  2685. }
  2686. ],
  2687. "time": "2024-05-31T09:31:08+00:00"
  2688. },
  2689. {
  2690. "name": "guzzlehttp/guzzle",
  2691. "version": "7.8.1",
  2692. "source": {
  2693. "type": "git",
  2694. "url": "https://github.com/guzzle/guzzle.git",
  2695. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104"
  2696. },
  2697. "dist": {
  2698. "type": "zip",
  2699. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/41042bc7ab002487b876a0683fc8dce04ddce104",
  2700. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104",
  2701. "shasum": ""
  2702. },
  2703. "require": {
  2704. "ext-json": "*",
  2705. "guzzlehttp/promises": "^1.5.3 || ^2.0.1",
  2706. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
  2707. "php": "^7.2.5 || ^8.0",
  2708. "psr/http-client": "^1.0",
  2709. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  2710. },
  2711. "provide": {
  2712. "psr/http-client-implementation": "1.0"
  2713. },
  2714. "require-dev": {
  2715. "bamarni/composer-bin-plugin": "^1.8.2",
  2716. "ext-curl": "*",
  2717. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  2718. "php-http/message-factory": "^1.1",
  2719. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  2720. "psr/log": "^1.1 || ^2.0 || ^3.0"
  2721. },
  2722. "suggest": {
  2723. "ext-curl": "Required for CURL handler support",
  2724. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  2725. "psr/log": "Required for using the Log middleware"
  2726. },
  2727. "type": "library",
  2728. "extra": {
  2729. "bamarni-bin": {
  2730. "bin-links": true,
  2731. "forward-command": false
  2732. }
  2733. },
  2734. "autoload": {
  2735. "files": [
  2736. "src/functions_include.php"
  2737. ],
  2738. "psr-4": {
  2739. "GuzzleHttp\\": "src/"
  2740. }
  2741. },
  2742. "notification-url": "https://packagist.org/downloads/",
  2743. "license": [
  2744. "MIT"
  2745. ],
  2746. "authors": [
  2747. {
  2748. "name": "Graham Campbell",
  2749. "email": "hello@gjcampbell.co.uk",
  2750. "homepage": "https://github.com/GrahamCampbell"
  2751. },
  2752. {
  2753. "name": "Michael Dowling",
  2754. "email": "mtdowling@gmail.com",
  2755. "homepage": "https://github.com/mtdowling"
  2756. },
  2757. {
  2758. "name": "Jeremy Lindblom",
  2759. "email": "jeremeamia@gmail.com",
  2760. "homepage": "https://github.com/jeremeamia"
  2761. },
  2762. {
  2763. "name": "George Mponos",
  2764. "email": "gmponos@gmail.com",
  2765. "homepage": "https://github.com/gmponos"
  2766. },
  2767. {
  2768. "name": "Tobias Nyholm",
  2769. "email": "tobias.nyholm@gmail.com",
  2770. "homepage": "https://github.com/Nyholm"
  2771. },
  2772. {
  2773. "name": "Márk Sági-Kazár",
  2774. "email": "mark.sagikazar@gmail.com",
  2775. "homepage": "https://github.com/sagikazarmark"
  2776. },
  2777. {
  2778. "name": "Tobias Schultze",
  2779. "email": "webmaster@tubo-world.de",
  2780. "homepage": "https://github.com/Tobion"
  2781. }
  2782. ],
  2783. "description": "Guzzle is a PHP HTTP client library",
  2784. "keywords": [
  2785. "client",
  2786. "curl",
  2787. "framework",
  2788. "http",
  2789. "http client",
  2790. "psr-18",
  2791. "psr-7",
  2792. "rest",
  2793. "web service"
  2794. ],
  2795. "support": {
  2796. "issues": "https://github.com/guzzle/guzzle/issues",
  2797. "source": "https://github.com/guzzle/guzzle/tree/7.8.1"
  2798. },
  2799. "funding": [
  2800. {
  2801. "url": "https://github.com/GrahamCampbell",
  2802. "type": "github"
  2803. },
  2804. {
  2805. "url": "https://github.com/Nyholm",
  2806. "type": "github"
  2807. },
  2808. {
  2809. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  2810. "type": "tidelift"
  2811. }
  2812. ],
  2813. "time": "2023-12-03T20:35:24+00:00"
  2814. },
  2815. {
  2816. "name": "guzzlehttp/promises",
  2817. "version": "2.0.2",
  2818. "source": {
  2819. "type": "git",
  2820. "url": "https://github.com/guzzle/promises.git",
  2821. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223"
  2822. },
  2823. "dist": {
  2824. "type": "zip",
  2825. "url": "https://api.github.com/repos/guzzle/promises/zipball/bbff78d96034045e58e13dedd6ad91b5d1253223",
  2826. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223",
  2827. "shasum": ""
  2828. },
  2829. "require": {
  2830. "php": "^7.2.5 || ^8.0"
  2831. },
  2832. "require-dev": {
  2833. "bamarni/composer-bin-plugin": "^1.8.2",
  2834. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  2835. },
  2836. "type": "library",
  2837. "extra": {
  2838. "bamarni-bin": {
  2839. "bin-links": true,
  2840. "forward-command": false
  2841. }
  2842. },
  2843. "autoload": {
  2844. "psr-4": {
  2845. "GuzzleHttp\\Promise\\": "src/"
  2846. }
  2847. },
  2848. "notification-url": "https://packagist.org/downloads/",
  2849. "license": [
  2850. "MIT"
  2851. ],
  2852. "authors": [
  2853. {
  2854. "name": "Graham Campbell",
  2855. "email": "hello@gjcampbell.co.uk",
  2856. "homepage": "https://github.com/GrahamCampbell"
  2857. },
  2858. {
  2859. "name": "Michael Dowling",
  2860. "email": "mtdowling@gmail.com",
  2861. "homepage": "https://github.com/mtdowling"
  2862. },
  2863. {
  2864. "name": "Tobias Nyholm",
  2865. "email": "tobias.nyholm@gmail.com",
  2866. "homepage": "https://github.com/Nyholm"
  2867. },
  2868. {
  2869. "name": "Tobias Schultze",
  2870. "email": "webmaster@tubo-world.de",
  2871. "homepage": "https://github.com/Tobion"
  2872. }
  2873. ],
  2874. "description": "Guzzle promises library",
  2875. "keywords": [
  2876. "promise"
  2877. ],
  2878. "support": {
  2879. "issues": "https://github.com/guzzle/promises/issues",
  2880. "source": "https://github.com/guzzle/promises/tree/2.0.2"
  2881. },
  2882. "funding": [
  2883. {
  2884. "url": "https://github.com/GrahamCampbell",
  2885. "type": "github"
  2886. },
  2887. {
  2888. "url": "https://github.com/Nyholm",
  2889. "type": "github"
  2890. },
  2891. {
  2892. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  2893. "type": "tidelift"
  2894. }
  2895. ],
  2896. "time": "2023-12-03T20:19:20+00:00"
  2897. },
  2898. {
  2899. "name": "guzzlehttp/psr7",
  2900. "version": "2.6.2",
  2901. "source": {
  2902. "type": "git",
  2903. "url": "https://github.com/guzzle/psr7.git",
  2904. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221"
  2905. },
  2906. "dist": {
  2907. "type": "zip",
  2908. "url": "https://api.github.com/repos/guzzle/psr7/zipball/45b30f99ac27b5ca93cb4831afe16285f57b8221",
  2909. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221",
  2910. "shasum": ""
  2911. },
  2912. "require": {
  2913. "php": "^7.2.5 || ^8.0",
  2914. "psr/http-factory": "^1.0",
  2915. "psr/http-message": "^1.1 || ^2.0",
  2916. "ralouphie/getallheaders": "^3.0"
  2917. },
  2918. "provide": {
  2919. "psr/http-factory-implementation": "1.0",
  2920. "psr/http-message-implementation": "1.0"
  2921. },
  2922. "require-dev": {
  2923. "bamarni/composer-bin-plugin": "^1.8.2",
  2924. "http-interop/http-factory-tests": "^0.9",
  2925. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  2926. },
  2927. "suggest": {
  2928. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  2929. },
  2930. "type": "library",
  2931. "extra": {
  2932. "bamarni-bin": {
  2933. "bin-links": true,
  2934. "forward-command": false
  2935. }
  2936. },
  2937. "autoload": {
  2938. "psr-4": {
  2939. "GuzzleHttp\\Psr7\\": "src/"
  2940. }
  2941. },
  2942. "notification-url": "https://packagist.org/downloads/",
  2943. "license": [
  2944. "MIT"
  2945. ],
  2946. "authors": [
  2947. {
  2948. "name": "Graham Campbell",
  2949. "email": "hello@gjcampbell.co.uk",
  2950. "homepage": "https://github.com/GrahamCampbell"
  2951. },
  2952. {
  2953. "name": "Michael Dowling",
  2954. "email": "mtdowling@gmail.com",
  2955. "homepage": "https://github.com/mtdowling"
  2956. },
  2957. {
  2958. "name": "George Mponos",
  2959. "email": "gmponos@gmail.com",
  2960. "homepage": "https://github.com/gmponos"
  2961. },
  2962. {
  2963. "name": "Tobias Nyholm",
  2964. "email": "tobias.nyholm@gmail.com",
  2965. "homepage": "https://github.com/Nyholm"
  2966. },
  2967. {
  2968. "name": "Márk Sági-Kazár",
  2969. "email": "mark.sagikazar@gmail.com",
  2970. "homepage": "https://github.com/sagikazarmark"
  2971. },
  2972. {
  2973. "name": "Tobias Schultze",
  2974. "email": "webmaster@tubo-world.de",
  2975. "homepage": "https://github.com/Tobion"
  2976. },
  2977. {
  2978. "name": "Márk Sági-Kazár",
  2979. "email": "mark.sagikazar@gmail.com",
  2980. "homepage": "https://sagikazarmark.hu"
  2981. }
  2982. ],
  2983. "description": "PSR-7 message implementation that also provides common utility methods",
  2984. "keywords": [
  2985. "http",
  2986. "message",
  2987. "psr-7",
  2988. "request",
  2989. "response",
  2990. "stream",
  2991. "uri",
  2992. "url"
  2993. ],
  2994. "support": {
  2995. "issues": "https://github.com/guzzle/psr7/issues",
  2996. "source": "https://github.com/guzzle/psr7/tree/2.6.2"
  2997. },
  2998. "funding": [
  2999. {
  3000. "url": "https://github.com/GrahamCampbell",
  3001. "type": "github"
  3002. },
  3003. {
  3004. "url": "https://github.com/Nyholm",
  3005. "type": "github"
  3006. },
  3007. {
  3008. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  3009. "type": "tidelift"
  3010. }
  3011. ],
  3012. "time": "2023-12-03T20:05:35+00:00"
  3013. },
  3014. {
  3015. "name": "guzzlehttp/uri-template",
  3016. "version": "v1.0.3",
  3017. "source": {
  3018. "type": "git",
  3019. "url": "https://github.com/guzzle/uri-template.git",
  3020. "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c"
  3021. },
  3022. "dist": {
  3023. "type": "zip",
  3024. "url": "https://api.github.com/repos/guzzle/uri-template/zipball/ecea8feef63bd4fef1f037ecb288386999ecc11c",
  3025. "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c",
  3026. "shasum": ""
  3027. },
  3028. "require": {
  3029. "php": "^7.2.5 || ^8.0",
  3030. "symfony/polyfill-php80": "^1.24"
  3031. },
  3032. "require-dev": {
  3033. "bamarni/composer-bin-plugin": "^1.8.2",
  3034. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  3035. "uri-template/tests": "1.0.0"
  3036. },
  3037. "type": "library",
  3038. "extra": {
  3039. "bamarni-bin": {
  3040. "bin-links": true,
  3041. "forward-command": false
  3042. }
  3043. },
  3044. "autoload": {
  3045. "psr-4": {
  3046. "GuzzleHttp\\UriTemplate\\": "src"
  3047. }
  3048. },
  3049. "notification-url": "https://packagist.org/downloads/",
  3050. "license": [
  3051. "MIT"
  3052. ],
  3053. "authors": [
  3054. {
  3055. "name": "Graham Campbell",
  3056. "email": "hello@gjcampbell.co.uk",
  3057. "homepage": "https://github.com/GrahamCampbell"
  3058. },
  3059. {
  3060. "name": "Michael Dowling",
  3061. "email": "mtdowling@gmail.com",
  3062. "homepage": "https://github.com/mtdowling"
  3063. },
  3064. {
  3065. "name": "George Mponos",
  3066. "email": "gmponos@gmail.com",
  3067. "homepage": "https://github.com/gmponos"
  3068. },
  3069. {
  3070. "name": "Tobias Nyholm",
  3071. "email": "tobias.nyholm@gmail.com",
  3072. "homepage": "https://github.com/Nyholm"
  3073. }
  3074. ],
  3075. "description": "A polyfill class for uri_template of PHP",
  3076. "keywords": [
  3077. "guzzlehttp",
  3078. "uri-template"
  3079. ],
  3080. "support": {
  3081. "issues": "https://github.com/guzzle/uri-template/issues",
  3082. "source": "https://github.com/guzzle/uri-template/tree/v1.0.3"
  3083. },
  3084. "funding": [
  3085. {
  3086. "url": "https://github.com/GrahamCampbell",
  3087. "type": "github"
  3088. },
  3089. {
  3090. "url": "https://github.com/Nyholm",
  3091. "type": "github"
  3092. },
  3093. {
  3094. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
  3095. "type": "tidelift"
  3096. }
  3097. ],
  3098. "time": "2023-12-03T19:50:20+00:00"
  3099. },
  3100. {
  3101. "name": "kirschbaum-development/eloquent-power-joins",
  3102. "version": "3.5.6",
  3103. "source": {
  3104. "type": "git",
  3105. "url": "https://github.com/kirschbaum-development/eloquent-power-joins.git",
  3106. "reference": "6de51d9ec43af34e77bd1d9908173de1416a0aed"
  3107. },
  3108. "dist": {
  3109. "type": "zip",
  3110. "url": "https://api.github.com/repos/kirschbaum-development/eloquent-power-joins/zipball/6de51d9ec43af34e77bd1d9908173de1416a0aed",
  3111. "reference": "6de51d9ec43af34e77bd1d9908173de1416a0aed",
  3112. "shasum": ""
  3113. },
  3114. "require": {
  3115. "illuminate/database": "^8.0|^9.0|^10.0|^11.0",
  3116. "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
  3117. "php": "^8.0"
  3118. },
  3119. "require-dev": {
  3120. "laravel/legacy-factories": "^1.0@dev",
  3121. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0|^9.0",
  3122. "phpunit/phpunit": "^8.0|^9.0|^10.0"
  3123. },
  3124. "type": "library",
  3125. "extra": {
  3126. "laravel": {
  3127. "providers": [
  3128. "Kirschbaum\\PowerJoins\\PowerJoinsServiceProvider"
  3129. ]
  3130. }
  3131. },
  3132. "autoload": {
  3133. "psr-4": {
  3134. "Kirschbaum\\PowerJoins\\": "src"
  3135. }
  3136. },
  3137. "notification-url": "https://packagist.org/downloads/",
  3138. "license": [
  3139. "MIT"
  3140. ],
  3141. "authors": [
  3142. {
  3143. "name": "Luis Dalmolin",
  3144. "email": "luis.nh@gmail.com",
  3145. "role": "Developer"
  3146. }
  3147. ],
  3148. "description": "The Laravel magic applied to joins.",
  3149. "homepage": "https://github.com/kirschbaum-development/eloquent-power-joins",
  3150. "keywords": [
  3151. "eloquent",
  3152. "join",
  3153. "laravel",
  3154. "mysql"
  3155. ],
  3156. "support": {
  3157. "issues": "https://github.com/kirschbaum-development/eloquent-power-joins/issues",
  3158. "source": "https://github.com/kirschbaum-development/eloquent-power-joins/tree/3.5.6"
  3159. },
  3160. "time": "2024-04-09T00:35:30+00:00"
  3161. },
  3162. {
  3163. "name": "laravel/framework",
  3164. "version": "v11.10.0",
  3165. "source": {
  3166. "type": "git",
  3167. "url": "https://github.com/laravel/framework.git",
  3168. "reference": "99b4255194912044b75ab72329f8c19e6345720e"
  3169. },
  3170. "dist": {
  3171. "type": "zip",
  3172. "url": "https://api.github.com/repos/laravel/framework/zipball/99b4255194912044b75ab72329f8c19e6345720e",
  3173. "reference": "99b4255194912044b75ab72329f8c19e6345720e",
  3174. "shasum": ""
  3175. },
  3176. "require": {
  3177. "brick/math": "^0.9.3|^0.10.2|^0.11|^0.12",
  3178. "composer-runtime-api": "^2.2",
  3179. "doctrine/inflector": "^2.0.5",
  3180. "dragonmantank/cron-expression": "^3.3.2",
  3181. "egulias/email-validator": "^3.2.1|^4.0",
  3182. "ext-ctype": "*",
  3183. "ext-filter": "*",
  3184. "ext-hash": "*",
  3185. "ext-mbstring": "*",
  3186. "ext-openssl": "*",
  3187. "ext-session": "*",
  3188. "ext-tokenizer": "*",
  3189. "fruitcake/php-cors": "^1.3",
  3190. "guzzlehttp/guzzle": "^7.8",
  3191. "guzzlehttp/uri-template": "^1.0",
  3192. "laravel/prompts": "^0.1.18",
  3193. "laravel/serializable-closure": "^1.3",
  3194. "league/commonmark": "^2.2.1",
  3195. "league/flysystem": "^3.8.0",
  3196. "monolog/monolog": "^3.0",
  3197. "nesbot/carbon": "^2.72.2|^3.0",
  3198. "nunomaduro/termwind": "^2.0",
  3199. "php": "^8.2",
  3200. "psr/container": "^1.1.1|^2.0.1",
  3201. "psr/log": "^1.0|^2.0|^3.0",
  3202. "psr/simple-cache": "^1.0|^2.0|^3.0",
  3203. "ramsey/uuid": "^4.7",
  3204. "symfony/console": "^7.0",
  3205. "symfony/error-handler": "^7.0",
  3206. "symfony/finder": "^7.0",
  3207. "symfony/http-foundation": "^7.0",
  3208. "symfony/http-kernel": "^7.0",
  3209. "symfony/mailer": "^7.0",
  3210. "symfony/mime": "^7.0",
  3211. "symfony/polyfill-php83": "^1.28",
  3212. "symfony/process": "^7.0",
  3213. "symfony/routing": "^7.0",
  3214. "symfony/uid": "^7.0",
  3215. "symfony/var-dumper": "^7.0",
  3216. "tijsverkoyen/css-to-inline-styles": "^2.2.5",
  3217. "vlucas/phpdotenv": "^5.4.1",
  3218. "voku/portable-ascii": "^2.0"
  3219. },
  3220. "conflict": {
  3221. "mockery/mockery": "1.6.8",
  3222. "tightenco/collect": "<5.5.33"
  3223. },
  3224. "provide": {
  3225. "psr/container-implementation": "1.1|2.0",
  3226. "psr/simple-cache-implementation": "1.0|2.0|3.0"
  3227. },
  3228. "replace": {
  3229. "illuminate/auth": "self.version",
  3230. "illuminate/broadcasting": "self.version",
  3231. "illuminate/bus": "self.version",
  3232. "illuminate/cache": "self.version",
  3233. "illuminate/collections": "self.version",
  3234. "illuminate/conditionable": "self.version",
  3235. "illuminate/config": "self.version",
  3236. "illuminate/console": "self.version",
  3237. "illuminate/container": "self.version",
  3238. "illuminate/contracts": "self.version",
  3239. "illuminate/cookie": "self.version",
  3240. "illuminate/database": "self.version",
  3241. "illuminate/encryption": "self.version",
  3242. "illuminate/events": "self.version",
  3243. "illuminate/filesystem": "self.version",
  3244. "illuminate/hashing": "self.version",
  3245. "illuminate/http": "self.version",
  3246. "illuminate/log": "self.version",
  3247. "illuminate/macroable": "self.version",
  3248. "illuminate/mail": "self.version",
  3249. "illuminate/notifications": "self.version",
  3250. "illuminate/pagination": "self.version",
  3251. "illuminate/pipeline": "self.version",
  3252. "illuminate/process": "self.version",
  3253. "illuminate/queue": "self.version",
  3254. "illuminate/redis": "self.version",
  3255. "illuminate/routing": "self.version",
  3256. "illuminate/session": "self.version",
  3257. "illuminate/support": "self.version",
  3258. "illuminate/testing": "self.version",
  3259. "illuminate/translation": "self.version",
  3260. "illuminate/validation": "self.version",
  3261. "illuminate/view": "self.version",
  3262. "spatie/once": "*"
  3263. },
  3264. "require-dev": {
  3265. "ably/ably-php": "^1.0",
  3266. "aws/aws-sdk-php": "^3.235.5",
  3267. "ext-gmp": "*",
  3268. "fakerphp/faker": "^1.23",
  3269. "league/flysystem-aws-s3-v3": "^3.0",
  3270. "league/flysystem-ftp": "^3.0",
  3271. "league/flysystem-path-prefixing": "^3.3",
  3272. "league/flysystem-read-only": "^3.3",
  3273. "league/flysystem-sftp-v3": "^3.0",
  3274. "mockery/mockery": "^1.6",
  3275. "nyholm/psr7": "^1.2",
  3276. "orchestra/testbench-core": "^9.0.15",
  3277. "pda/pheanstalk": "^5.0",
  3278. "phpstan/phpstan": "^1.4.7",
  3279. "phpunit/phpunit": "^10.5|^11.0",
  3280. "predis/predis": "^2.0.2",
  3281. "resend/resend-php": "^0.10.0",
  3282. "symfony/cache": "^7.0",
  3283. "symfony/http-client": "^7.0",
  3284. "symfony/psr-http-message-bridge": "^7.0"
  3285. },
  3286. "suggest": {
  3287. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  3288. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.235.5).",
  3289. "brianium/paratest": "Required to run tests in parallel (^7.0|^8.0).",
  3290. "ext-apcu": "Required to use the APC cache driver.",
  3291. "ext-fileinfo": "Required to use the Filesystem class.",
  3292. "ext-ftp": "Required to use the Flysystem FTP driver.",
  3293. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  3294. "ext-memcached": "Required to use the memcache cache driver.",
  3295. "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.",
  3296. "ext-pdo": "Required to use all database features.",
  3297. "ext-posix": "Required to use all features of the queue worker.",
  3298. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0|^6.0).",
  3299. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  3300. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  3301. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  3302. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.0).",
  3303. "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.0).",
  3304. "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.3).",
  3305. "league/flysystem-read-only": "Required to use read-only disks (^3.3)",
  3306. "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.0).",
  3307. "mockery/mockery": "Required to use mocking (^1.6).",
  3308. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  3309. "pda/pheanstalk": "Required to use the beanstalk queue driver (^5.0).",
  3310. "phpunit/phpunit": "Required to use assertions and run tests (^10.5|^11.0).",
  3311. "predis/predis": "Required to use the predis connector (^2.0.2).",
  3312. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  3313. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).",
  3314. "resend/resend-php": "Required to enable support for the Resend mail transport (^0.10.0).",
  3315. "symfony/cache": "Required to PSR-6 cache bridge (^7.0).",
  3316. "symfony/filesystem": "Required to enable support for relative symbolic links (^7.0).",
  3317. "symfony/http-client": "Required to enable support for the Symfony API mail transports (^7.0).",
  3318. "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^7.0).",
  3319. "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^7.0).",
  3320. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^7.0)."
  3321. },
  3322. "type": "library",
  3323. "extra": {
  3324. "branch-alias": {
  3325. "dev-master": "11.x-dev"
  3326. }
  3327. },
  3328. "autoload": {
  3329. "files": [
  3330. "src/Illuminate/Collections/helpers.php",
  3331. "src/Illuminate/Events/functions.php",
  3332. "src/Illuminate/Filesystem/functions.php",
  3333. "src/Illuminate/Foundation/helpers.php",
  3334. "src/Illuminate/Support/helpers.php"
  3335. ],
  3336. "psr-4": {
  3337. "Illuminate\\": "src/Illuminate/",
  3338. "Illuminate\\Support\\": [
  3339. "src/Illuminate/Macroable/",
  3340. "src/Illuminate/Collections/",
  3341. "src/Illuminate/Conditionable/"
  3342. ]
  3343. }
  3344. },
  3345. "notification-url": "https://packagist.org/downloads/",
  3346. "license": [
  3347. "MIT"
  3348. ],
  3349. "authors": [
  3350. {
  3351. "name": "Taylor Otwell",
  3352. "email": "taylor@laravel.com"
  3353. }
  3354. ],
  3355. "description": "The Laravel Framework.",
  3356. "homepage": "https://laravel.com",
  3357. "keywords": [
  3358. "framework",
  3359. "laravel"
  3360. ],
  3361. "support": {
  3362. "issues": "https://github.com/laravel/framework/issues",
  3363. "source": "https://github.com/laravel/framework"
  3364. },
  3365. "time": "2024-06-04T13:45:55+00:00"
  3366. },
  3367. {
  3368. "name": "laravel/prompts",
  3369. "version": "v0.1.23",
  3370. "source": {
  3371. "type": "git",
  3372. "url": "https://github.com/laravel/prompts.git",
  3373. "reference": "9bc4df7c699b0452c6b815e64a2d84b6d7f99400"
  3374. },
  3375. "dist": {
  3376. "type": "zip",
  3377. "url": "https://api.github.com/repos/laravel/prompts/zipball/9bc4df7c699b0452c6b815e64a2d84b6d7f99400",
  3378. "reference": "9bc4df7c699b0452c6b815e64a2d84b6d7f99400",
  3379. "shasum": ""
  3380. },
  3381. "require": {
  3382. "ext-mbstring": "*",
  3383. "illuminate/collections": "^10.0|^11.0",
  3384. "php": "^8.1",
  3385. "symfony/console": "^6.2|^7.0"
  3386. },
  3387. "conflict": {
  3388. "illuminate/console": ">=10.17.0 <10.25.0",
  3389. "laravel/framework": ">=10.17.0 <10.25.0"
  3390. },
  3391. "require-dev": {
  3392. "mockery/mockery": "^1.5",
  3393. "pestphp/pest": "^2.3",
  3394. "phpstan/phpstan": "^1.11",
  3395. "phpstan/phpstan-mockery": "^1.1"
  3396. },
  3397. "suggest": {
  3398. "ext-pcntl": "Required for the spinner to be animated."
  3399. },
  3400. "type": "library",
  3401. "extra": {
  3402. "branch-alias": {
  3403. "dev-main": "0.1.x-dev"
  3404. }
  3405. },
  3406. "autoload": {
  3407. "files": [
  3408. "src/helpers.php"
  3409. ],
  3410. "psr-4": {
  3411. "Laravel\\Prompts\\": "src/"
  3412. }
  3413. },
  3414. "notification-url": "https://packagist.org/downloads/",
  3415. "license": [
  3416. "MIT"
  3417. ],
  3418. "description": "Add beautiful and user-friendly forms to your command-line applications.",
  3419. "support": {
  3420. "issues": "https://github.com/laravel/prompts/issues",
  3421. "source": "https://github.com/laravel/prompts/tree/v0.1.23"
  3422. },
  3423. "time": "2024-05-27T13:53:20+00:00"
  3424. },
  3425. {
  3426. "name": "laravel/sanctum",
  3427. "version": "v4.0.2",
  3428. "source": {
  3429. "type": "git",
  3430. "url": "https://github.com/laravel/sanctum.git",
  3431. "reference": "9cfc0ce80cabad5334efff73ec856339e8ec1ac1"
  3432. },
  3433. "dist": {
  3434. "type": "zip",
  3435. "url": "https://api.github.com/repos/laravel/sanctum/zipball/9cfc0ce80cabad5334efff73ec856339e8ec1ac1",
  3436. "reference": "9cfc0ce80cabad5334efff73ec856339e8ec1ac1",
  3437. "shasum": ""
  3438. },
  3439. "require": {
  3440. "ext-json": "*",
  3441. "illuminate/console": "^11.0",
  3442. "illuminate/contracts": "^11.0",
  3443. "illuminate/database": "^11.0",
  3444. "illuminate/support": "^11.0",
  3445. "php": "^8.2",
  3446. "symfony/console": "^7.0"
  3447. },
  3448. "require-dev": {
  3449. "mockery/mockery": "^1.6",
  3450. "orchestra/testbench": "^9.0",
  3451. "phpstan/phpstan": "^1.10",
  3452. "phpunit/phpunit": "^10.5"
  3453. },
  3454. "type": "library",
  3455. "extra": {
  3456. "laravel": {
  3457. "providers": [
  3458. "Laravel\\Sanctum\\SanctumServiceProvider"
  3459. ]
  3460. }
  3461. },
  3462. "autoload": {
  3463. "psr-4": {
  3464. "Laravel\\Sanctum\\": "src/"
  3465. }
  3466. },
  3467. "notification-url": "https://packagist.org/downloads/",
  3468. "license": [
  3469. "MIT"
  3470. ],
  3471. "authors": [
  3472. {
  3473. "name": "Taylor Otwell",
  3474. "email": "taylor@laravel.com"
  3475. }
  3476. ],
  3477. "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.",
  3478. "keywords": [
  3479. "auth",
  3480. "laravel",
  3481. "sanctum"
  3482. ],
  3483. "support": {
  3484. "issues": "https://github.com/laravel/sanctum/issues",
  3485. "source": "https://github.com/laravel/sanctum"
  3486. },
  3487. "time": "2024-04-10T19:39:58+00:00"
  3488. },
  3489. {
  3490. "name": "laravel/serializable-closure",
  3491. "version": "v1.3.3",
  3492. "source": {
  3493. "type": "git",
  3494. "url": "https://github.com/laravel/serializable-closure.git",
  3495. "reference": "3dbf8a8e914634c48d389c1234552666b3d43754"
  3496. },
  3497. "dist": {
  3498. "type": "zip",
  3499. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/3dbf8a8e914634c48d389c1234552666b3d43754",
  3500. "reference": "3dbf8a8e914634c48d389c1234552666b3d43754",
  3501. "shasum": ""
  3502. },
  3503. "require": {
  3504. "php": "^7.3|^8.0"
  3505. },
  3506. "require-dev": {
  3507. "nesbot/carbon": "^2.61",
  3508. "pestphp/pest": "^1.21.3",
  3509. "phpstan/phpstan": "^1.8.2",
  3510. "symfony/var-dumper": "^5.4.11"
  3511. },
  3512. "type": "library",
  3513. "extra": {
  3514. "branch-alias": {
  3515. "dev-master": "1.x-dev"
  3516. }
  3517. },
  3518. "autoload": {
  3519. "psr-4": {
  3520. "Laravel\\SerializableClosure\\": "src/"
  3521. }
  3522. },
  3523. "notification-url": "https://packagist.org/downloads/",
  3524. "license": [
  3525. "MIT"
  3526. ],
  3527. "authors": [
  3528. {
  3529. "name": "Taylor Otwell",
  3530. "email": "taylor@laravel.com"
  3531. },
  3532. {
  3533. "name": "Nuno Maduro",
  3534. "email": "nuno@laravel.com"
  3535. }
  3536. ],
  3537. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  3538. "keywords": [
  3539. "closure",
  3540. "laravel",
  3541. "serializable"
  3542. ],
  3543. "support": {
  3544. "issues": "https://github.com/laravel/serializable-closure/issues",
  3545. "source": "https://github.com/laravel/serializable-closure"
  3546. },
  3547. "time": "2023-11-08T14:08:06+00:00"
  3548. },
  3549. {
  3550. "name": "laravel/socialite",
  3551. "version": "v5.14.0",
  3552. "source": {
  3553. "type": "git",
  3554. "url": "https://github.com/laravel/socialite.git",
  3555. "reference": "c7b0193a3753a29aff8ce80aa2f511917e6ed68a"
  3556. },
  3557. "dist": {
  3558. "type": "zip",
  3559. "url": "https://api.github.com/repos/laravel/socialite/zipball/c7b0193a3753a29aff8ce80aa2f511917e6ed68a",
  3560. "reference": "c7b0193a3753a29aff8ce80aa2f511917e6ed68a",
  3561. "shasum": ""
  3562. },
  3563. "require": {
  3564. "ext-json": "*",
  3565. "firebase/php-jwt": "^6.4",
  3566. "guzzlehttp/guzzle": "^6.0|^7.0",
  3567. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  3568. "illuminate/http": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  3569. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  3570. "league/oauth1-client": "^1.10.1",
  3571. "php": "^7.2|^8.0",
  3572. "phpseclib/phpseclib": "^3.0"
  3573. },
  3574. "require-dev": {
  3575. "mockery/mockery": "^1.0",
  3576. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0|^9.0",
  3577. "phpstan/phpstan": "^1.10",
  3578. "phpunit/phpunit": "^8.0|^9.3|^10.4"
  3579. },
  3580. "type": "library",
  3581. "extra": {
  3582. "branch-alias": {
  3583. "dev-master": "5.x-dev"
  3584. },
  3585. "laravel": {
  3586. "providers": [
  3587. "Laravel\\Socialite\\SocialiteServiceProvider"
  3588. ],
  3589. "aliases": {
  3590. "Socialite": "Laravel\\Socialite\\Facades\\Socialite"
  3591. }
  3592. }
  3593. },
  3594. "autoload": {
  3595. "psr-4": {
  3596. "Laravel\\Socialite\\": "src/"
  3597. }
  3598. },
  3599. "notification-url": "https://packagist.org/downloads/",
  3600. "license": [
  3601. "MIT"
  3602. ],
  3603. "authors": [
  3604. {
  3605. "name": "Taylor Otwell",
  3606. "email": "taylor@laravel.com"
  3607. }
  3608. ],
  3609. "description": "Laravel wrapper around OAuth 1 & OAuth 2 libraries.",
  3610. "homepage": "https://laravel.com",
  3611. "keywords": [
  3612. "laravel",
  3613. "oauth"
  3614. ],
  3615. "support": {
  3616. "issues": "https://github.com/laravel/socialite/issues",
  3617. "source": "https://github.com/laravel/socialite"
  3618. },
  3619. "time": "2024-05-03T20:31:38+00:00"
  3620. },
  3621. {
  3622. "name": "laravel/tinker",
  3623. "version": "v2.9.0",
  3624. "source": {
  3625. "type": "git",
  3626. "url": "https://github.com/laravel/tinker.git",
  3627. "reference": "502e0fe3f0415d06d5db1f83a472f0f3b754bafe"
  3628. },
  3629. "dist": {
  3630. "type": "zip",
  3631. "url": "https://api.github.com/repos/laravel/tinker/zipball/502e0fe3f0415d06d5db1f83a472f0f3b754bafe",
  3632. "reference": "502e0fe3f0415d06d5db1f83a472f0f3b754bafe",
  3633. "shasum": ""
  3634. },
  3635. "require": {
  3636. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  3637. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  3638. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  3639. "php": "^7.2.5|^8.0",
  3640. "psy/psysh": "^0.11.1|^0.12.0",
  3641. "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0"
  3642. },
  3643. "require-dev": {
  3644. "mockery/mockery": "~1.3.3|^1.4.2",
  3645. "phpstan/phpstan": "^1.10",
  3646. "phpunit/phpunit": "^8.5.8|^9.3.3"
  3647. },
  3648. "suggest": {
  3649. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0)."
  3650. },
  3651. "type": "library",
  3652. "extra": {
  3653. "laravel": {
  3654. "providers": [
  3655. "Laravel\\Tinker\\TinkerServiceProvider"
  3656. ]
  3657. }
  3658. },
  3659. "autoload": {
  3660. "psr-4": {
  3661. "Laravel\\Tinker\\": "src/"
  3662. }
  3663. },
  3664. "notification-url": "https://packagist.org/downloads/",
  3665. "license": [
  3666. "MIT"
  3667. ],
  3668. "authors": [
  3669. {
  3670. "name": "Taylor Otwell",
  3671. "email": "taylor@laravel.com"
  3672. }
  3673. ],
  3674. "description": "Powerful REPL for the Laravel framework.",
  3675. "keywords": [
  3676. "REPL",
  3677. "Tinker",
  3678. "laravel",
  3679. "psysh"
  3680. ],
  3681. "support": {
  3682. "issues": "https://github.com/laravel/tinker/issues",
  3683. "source": "https://github.com/laravel/tinker/tree/v2.9.0"
  3684. },
  3685. "time": "2024-01-04T16:10:04+00:00"
  3686. },
  3687. {
  3688. "name": "league/commonmark",
  3689. "version": "2.4.2",
  3690. "source": {
  3691. "type": "git",
  3692. "url": "https://github.com/thephpleague/commonmark.git",
  3693. "reference": "91c24291965bd6d7c46c46a12ba7492f83b1cadf"
  3694. },
  3695. "dist": {
  3696. "type": "zip",
  3697. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/91c24291965bd6d7c46c46a12ba7492f83b1cadf",
  3698. "reference": "91c24291965bd6d7c46c46a12ba7492f83b1cadf",
  3699. "shasum": ""
  3700. },
  3701. "require": {
  3702. "ext-mbstring": "*",
  3703. "league/config": "^1.1.1",
  3704. "php": "^7.4 || ^8.0",
  3705. "psr/event-dispatcher": "^1.0",
  3706. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  3707. "symfony/polyfill-php80": "^1.16"
  3708. },
  3709. "require-dev": {
  3710. "cebe/markdown": "^1.0",
  3711. "commonmark/cmark": "0.30.3",
  3712. "commonmark/commonmark.js": "0.30.0",
  3713. "composer/package-versions-deprecated": "^1.8",
  3714. "embed/embed": "^4.4",
  3715. "erusev/parsedown": "^1.0",
  3716. "ext-json": "*",
  3717. "github/gfm": "0.29.0",
  3718. "michelf/php-markdown": "^1.4 || ^2.0",
  3719. "nyholm/psr7": "^1.5",
  3720. "phpstan/phpstan": "^1.8.2",
  3721. "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
  3722. "scrutinizer/ocular": "^1.8.1",
  3723. "symfony/finder": "^5.3 | ^6.0 || ^7.0",
  3724. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 || ^7.0",
  3725. "unleashedtech/php-coding-standard": "^3.1.1",
  3726. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  3727. },
  3728. "suggest": {
  3729. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  3730. },
  3731. "type": "library",
  3732. "extra": {
  3733. "branch-alias": {
  3734. "dev-main": "2.5-dev"
  3735. }
  3736. },
  3737. "autoload": {
  3738. "psr-4": {
  3739. "League\\CommonMark\\": "src"
  3740. }
  3741. },
  3742. "notification-url": "https://packagist.org/downloads/",
  3743. "license": [
  3744. "BSD-3-Clause"
  3745. ],
  3746. "authors": [
  3747. {
  3748. "name": "Colin O'Dell",
  3749. "email": "colinodell@gmail.com",
  3750. "homepage": "https://www.colinodell.com",
  3751. "role": "Lead Developer"
  3752. }
  3753. ],
  3754. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  3755. "homepage": "https://commonmark.thephpleague.com",
  3756. "keywords": [
  3757. "commonmark",
  3758. "flavored",
  3759. "gfm",
  3760. "github",
  3761. "github-flavored",
  3762. "markdown",
  3763. "md",
  3764. "parser"
  3765. ],
  3766. "support": {
  3767. "docs": "https://commonmark.thephpleague.com/",
  3768. "forum": "https://github.com/thephpleague/commonmark/discussions",
  3769. "issues": "https://github.com/thephpleague/commonmark/issues",
  3770. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  3771. "source": "https://github.com/thephpleague/commonmark"
  3772. },
  3773. "funding": [
  3774. {
  3775. "url": "https://www.colinodell.com/sponsor",
  3776. "type": "custom"
  3777. },
  3778. {
  3779. "url": "https://www.paypal.me/colinpodell/10.00",
  3780. "type": "custom"
  3781. },
  3782. {
  3783. "url": "https://github.com/colinodell",
  3784. "type": "github"
  3785. },
  3786. {
  3787. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  3788. "type": "tidelift"
  3789. }
  3790. ],
  3791. "time": "2024-02-02T11:59:32+00:00"
  3792. },
  3793. {
  3794. "name": "league/config",
  3795. "version": "v1.2.0",
  3796. "source": {
  3797. "type": "git",
  3798. "url": "https://github.com/thephpleague/config.git",
  3799. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  3800. },
  3801. "dist": {
  3802. "type": "zip",
  3803. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  3804. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  3805. "shasum": ""
  3806. },
  3807. "require": {
  3808. "dflydev/dot-access-data": "^3.0.1",
  3809. "nette/schema": "^1.2",
  3810. "php": "^7.4 || ^8.0"
  3811. },
  3812. "require-dev": {
  3813. "phpstan/phpstan": "^1.8.2",
  3814. "phpunit/phpunit": "^9.5.5",
  3815. "scrutinizer/ocular": "^1.8.1",
  3816. "unleashedtech/php-coding-standard": "^3.1",
  3817. "vimeo/psalm": "^4.7.3"
  3818. },
  3819. "type": "library",
  3820. "extra": {
  3821. "branch-alias": {
  3822. "dev-main": "1.2-dev"
  3823. }
  3824. },
  3825. "autoload": {
  3826. "psr-4": {
  3827. "League\\Config\\": "src"
  3828. }
  3829. },
  3830. "notification-url": "https://packagist.org/downloads/",
  3831. "license": [
  3832. "BSD-3-Clause"
  3833. ],
  3834. "authors": [
  3835. {
  3836. "name": "Colin O'Dell",
  3837. "email": "colinodell@gmail.com",
  3838. "homepage": "https://www.colinodell.com",
  3839. "role": "Lead Developer"
  3840. }
  3841. ],
  3842. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  3843. "homepage": "https://config.thephpleague.com",
  3844. "keywords": [
  3845. "array",
  3846. "config",
  3847. "configuration",
  3848. "dot",
  3849. "dot-access",
  3850. "nested",
  3851. "schema"
  3852. ],
  3853. "support": {
  3854. "docs": "https://config.thephpleague.com/",
  3855. "issues": "https://github.com/thephpleague/config/issues",
  3856. "rss": "https://github.com/thephpleague/config/releases.atom",
  3857. "source": "https://github.com/thephpleague/config"
  3858. },
  3859. "funding": [
  3860. {
  3861. "url": "https://www.colinodell.com/sponsor",
  3862. "type": "custom"
  3863. },
  3864. {
  3865. "url": "https://www.paypal.me/colinpodell/10.00",
  3866. "type": "custom"
  3867. },
  3868. {
  3869. "url": "https://github.com/colinodell",
  3870. "type": "github"
  3871. }
  3872. ],
  3873. "time": "2022-12-11T20:36:23+00:00"
  3874. },
  3875. {
  3876. "name": "league/csv",
  3877. "version": "9.16.0",
  3878. "source": {
  3879. "type": "git",
  3880. "url": "https://github.com/thephpleague/csv.git",
  3881. "reference": "998280c6c34bd67d8125fdc8b45bae28d761b440"
  3882. },
  3883. "dist": {
  3884. "type": "zip",
  3885. "url": "https://api.github.com/repos/thephpleague/csv/zipball/998280c6c34bd67d8125fdc8b45bae28d761b440",
  3886. "reference": "998280c6c34bd67d8125fdc8b45bae28d761b440",
  3887. "shasum": ""
  3888. },
  3889. "require": {
  3890. "ext-filter": "*",
  3891. "php": "^8.1.2"
  3892. },
  3893. "require-dev": {
  3894. "doctrine/collections": "^2.2.2",
  3895. "ext-dom": "*",
  3896. "ext-xdebug": "*",
  3897. "friendsofphp/php-cs-fixer": "^3.57.1",
  3898. "phpbench/phpbench": "^1.2.15",
  3899. "phpstan/phpstan": "^1.11.1",
  3900. "phpstan/phpstan-deprecation-rules": "^1.2.0",
  3901. "phpstan/phpstan-phpunit": "^1.4.0",
  3902. "phpstan/phpstan-strict-rules": "^1.6.0",
  3903. "phpunit/phpunit": "^10.5.16 || ^11.1.3",
  3904. "symfony/var-dumper": "^6.4.6 || ^7.0.7"
  3905. },
  3906. "suggest": {
  3907. "ext-dom": "Required to use the XMLConverter and the HTMLConverter classes",
  3908. "ext-iconv": "Needed to ease transcoding CSV using iconv stream filters",
  3909. "ext-mbstring": "Needed to ease transcoding CSV using mb stream filters"
  3910. },
  3911. "type": "library",
  3912. "extra": {
  3913. "branch-alias": {
  3914. "dev-master": "9.x-dev"
  3915. }
  3916. },
  3917. "autoload": {
  3918. "files": [
  3919. "src/functions_include.php"
  3920. ],
  3921. "psr-4": {
  3922. "League\\Csv\\": "src"
  3923. }
  3924. },
  3925. "notification-url": "https://packagist.org/downloads/",
  3926. "license": [
  3927. "MIT"
  3928. ],
  3929. "authors": [
  3930. {
  3931. "name": "Ignace Nyamagana Butera",
  3932. "email": "nyamsprod@gmail.com",
  3933. "homepage": "https://github.com/nyamsprod/",
  3934. "role": "Developer"
  3935. }
  3936. ],
  3937. "description": "CSV data manipulation made easy in PHP",
  3938. "homepage": "https://csv.thephpleague.com",
  3939. "keywords": [
  3940. "convert",
  3941. "csv",
  3942. "export",
  3943. "filter",
  3944. "import",
  3945. "read",
  3946. "transform",
  3947. "write"
  3948. ],
  3949. "support": {
  3950. "docs": "https://csv.thephpleague.com",
  3951. "issues": "https://github.com/thephpleague/csv/issues",
  3952. "rss": "https://github.com/thephpleague/csv/releases.atom",
  3953. "source": "https://github.com/thephpleague/csv"
  3954. },
  3955. "funding": [
  3956. {
  3957. "url": "https://github.com/sponsors/nyamsprod",
  3958. "type": "github"
  3959. }
  3960. ],
  3961. "time": "2024-05-24T11:04:54+00:00"
  3962. },
  3963. {
  3964. "name": "league/flysystem",
  3965. "version": "3.28.0",
  3966. "source": {
  3967. "type": "git",
  3968. "url": "https://github.com/thephpleague/flysystem.git",
  3969. "reference": "e611adab2b1ae2e3072fa72d62c62f52c2bf1f0c"
  3970. },
  3971. "dist": {
  3972. "type": "zip",
  3973. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/e611adab2b1ae2e3072fa72d62c62f52c2bf1f0c",
  3974. "reference": "e611adab2b1ae2e3072fa72d62c62f52c2bf1f0c",
  3975. "shasum": ""
  3976. },
  3977. "require": {
  3978. "league/flysystem-local": "^3.0.0",
  3979. "league/mime-type-detection": "^1.0.0",
  3980. "php": "^8.0.2"
  3981. },
  3982. "conflict": {
  3983. "async-aws/core": "<1.19.0",
  3984. "async-aws/s3": "<1.14.0",
  3985. "aws/aws-sdk-php": "3.209.31 || 3.210.0",
  3986. "guzzlehttp/guzzle": "<7.0",
  3987. "guzzlehttp/ringphp": "<1.1.1",
  3988. "phpseclib/phpseclib": "3.0.15",
  3989. "symfony/http-client": "<5.2"
  3990. },
  3991. "require-dev": {
  3992. "async-aws/s3": "^1.5 || ^2.0",
  3993. "async-aws/simple-s3": "^1.1 || ^2.0",
  3994. "aws/aws-sdk-php": "^3.295.10",
  3995. "composer/semver": "^3.0",
  3996. "ext-fileinfo": "*",
  3997. "ext-ftp": "*",
  3998. "ext-mongodb": "^1.3",
  3999. "ext-zip": "*",
  4000. "friendsofphp/php-cs-fixer": "^3.5",
  4001. "google/cloud-storage": "^1.23",
  4002. "guzzlehttp/psr7": "^2.6",
  4003. "microsoft/azure-storage-blob": "^1.1",
  4004. "mongodb/mongodb": "^1.2",
  4005. "phpseclib/phpseclib": "^3.0.36",
  4006. "phpstan/phpstan": "^1.10",
  4007. "phpunit/phpunit": "^9.5.11|^10.0",
  4008. "sabre/dav": "^4.6.0"
  4009. },
  4010. "type": "library",
  4011. "autoload": {
  4012. "psr-4": {
  4013. "League\\Flysystem\\": "src"
  4014. }
  4015. },
  4016. "notification-url": "https://packagist.org/downloads/",
  4017. "license": [
  4018. "MIT"
  4019. ],
  4020. "authors": [
  4021. {
  4022. "name": "Frank de Jonge",
  4023. "email": "info@frankdejonge.nl"
  4024. }
  4025. ],
  4026. "description": "File storage abstraction for PHP",
  4027. "keywords": [
  4028. "WebDAV",
  4029. "aws",
  4030. "cloud",
  4031. "file",
  4032. "files",
  4033. "filesystem",
  4034. "filesystems",
  4035. "ftp",
  4036. "s3",
  4037. "sftp",
  4038. "storage"
  4039. ],
  4040. "support": {
  4041. "issues": "https://github.com/thephpleague/flysystem/issues",
  4042. "source": "https://github.com/thephpleague/flysystem/tree/3.28.0"
  4043. },
  4044. "time": "2024-05-22T10:09:12+00:00"
  4045. },
  4046. {
  4047. "name": "league/flysystem-local",
  4048. "version": "3.28.0",
  4049. "source": {
  4050. "type": "git",
  4051. "url": "https://github.com/thephpleague/flysystem-local.git",
  4052. "reference": "13f22ea8be526ea58c2ddff9e158ef7c296e4f40"
  4053. },
  4054. "dist": {
  4055. "type": "zip",
  4056. "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/13f22ea8be526ea58c2ddff9e158ef7c296e4f40",
  4057. "reference": "13f22ea8be526ea58c2ddff9e158ef7c296e4f40",
  4058. "shasum": ""
  4059. },
  4060. "require": {
  4061. "ext-fileinfo": "*",
  4062. "league/flysystem": "^3.0.0",
  4063. "league/mime-type-detection": "^1.0.0",
  4064. "php": "^8.0.2"
  4065. },
  4066. "type": "library",
  4067. "autoload": {
  4068. "psr-4": {
  4069. "League\\Flysystem\\Local\\": ""
  4070. }
  4071. },
  4072. "notification-url": "https://packagist.org/downloads/",
  4073. "license": [
  4074. "MIT"
  4075. ],
  4076. "authors": [
  4077. {
  4078. "name": "Frank de Jonge",
  4079. "email": "info@frankdejonge.nl"
  4080. }
  4081. ],
  4082. "description": "Local filesystem adapter for Flysystem.",
  4083. "keywords": [
  4084. "Flysystem",
  4085. "file",
  4086. "files",
  4087. "filesystem",
  4088. "local"
  4089. ],
  4090. "support": {
  4091. "source": "https://github.com/thephpleague/flysystem-local/tree/3.28.0"
  4092. },
  4093. "time": "2024-05-06T20:05:52+00:00"
  4094. },
  4095. {
  4096. "name": "league/mime-type-detection",
  4097. "version": "1.15.0",
  4098. "source": {
  4099. "type": "git",
  4100. "url": "https://github.com/thephpleague/mime-type-detection.git",
  4101. "reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301"
  4102. },
  4103. "dist": {
  4104. "type": "zip",
  4105. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301",
  4106. "reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301",
  4107. "shasum": ""
  4108. },
  4109. "require": {
  4110. "ext-fileinfo": "*",
  4111. "php": "^7.4 || ^8.0"
  4112. },
  4113. "require-dev": {
  4114. "friendsofphp/php-cs-fixer": "^3.2",
  4115. "phpstan/phpstan": "^0.12.68",
  4116. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  4117. },
  4118. "type": "library",
  4119. "autoload": {
  4120. "psr-4": {
  4121. "League\\MimeTypeDetection\\": "src"
  4122. }
  4123. },
  4124. "notification-url": "https://packagist.org/downloads/",
  4125. "license": [
  4126. "MIT"
  4127. ],
  4128. "authors": [
  4129. {
  4130. "name": "Frank de Jonge",
  4131. "email": "info@frankdejonge.nl"
  4132. }
  4133. ],
  4134. "description": "Mime-type detection for Flysystem",
  4135. "support": {
  4136. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  4137. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.15.0"
  4138. },
  4139. "funding": [
  4140. {
  4141. "url": "https://github.com/frankdejonge",
  4142. "type": "github"
  4143. },
  4144. {
  4145. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  4146. "type": "tidelift"
  4147. }
  4148. ],
  4149. "time": "2024-01-28T23:22:08+00:00"
  4150. },
  4151. {
  4152. "name": "league/oauth1-client",
  4153. "version": "v1.10.1",
  4154. "source": {
  4155. "type": "git",
  4156. "url": "https://github.com/thephpleague/oauth1-client.git",
  4157. "reference": "d6365b901b5c287dd41f143033315e2f777e1167"
  4158. },
  4159. "dist": {
  4160. "type": "zip",
  4161. "url": "https://api.github.com/repos/thephpleague/oauth1-client/zipball/d6365b901b5c287dd41f143033315e2f777e1167",
  4162. "reference": "d6365b901b5c287dd41f143033315e2f777e1167",
  4163. "shasum": ""
  4164. },
  4165. "require": {
  4166. "ext-json": "*",
  4167. "ext-openssl": "*",
  4168. "guzzlehttp/guzzle": "^6.0|^7.0",
  4169. "guzzlehttp/psr7": "^1.7|^2.0",
  4170. "php": ">=7.1||>=8.0"
  4171. },
  4172. "require-dev": {
  4173. "ext-simplexml": "*",
  4174. "friendsofphp/php-cs-fixer": "^2.17",
  4175. "mockery/mockery": "^1.3.3",
  4176. "phpstan/phpstan": "^0.12.42",
  4177. "phpunit/phpunit": "^7.5||9.5"
  4178. },
  4179. "suggest": {
  4180. "ext-simplexml": "For decoding XML-based responses."
  4181. },
  4182. "type": "library",
  4183. "extra": {
  4184. "branch-alias": {
  4185. "dev-master": "1.0-dev",
  4186. "dev-develop": "2.0-dev"
  4187. }
  4188. },
  4189. "autoload": {
  4190. "psr-4": {
  4191. "League\\OAuth1\\Client\\": "src/"
  4192. }
  4193. },
  4194. "notification-url": "https://packagist.org/downloads/",
  4195. "license": [
  4196. "MIT"
  4197. ],
  4198. "authors": [
  4199. {
  4200. "name": "Ben Corlett",
  4201. "email": "bencorlett@me.com",
  4202. "homepage": "http://www.webcomm.com.au",
  4203. "role": "Developer"
  4204. }
  4205. ],
  4206. "description": "OAuth 1.0 Client Library",
  4207. "keywords": [
  4208. "Authentication",
  4209. "SSO",
  4210. "authorization",
  4211. "bitbucket",
  4212. "identity",
  4213. "idp",
  4214. "oauth",
  4215. "oauth1",
  4216. "single sign on",
  4217. "trello",
  4218. "tumblr",
  4219. "twitter"
  4220. ],
  4221. "support": {
  4222. "issues": "https://github.com/thephpleague/oauth1-client/issues",
  4223. "source": "https://github.com/thephpleague/oauth1-client/tree/v1.10.1"
  4224. },
  4225. "time": "2022-04-15T14:02:14+00:00"
  4226. },
  4227. {
  4228. "name": "league/uri",
  4229. "version": "7.4.1",
  4230. "source": {
  4231. "type": "git",
  4232. "url": "https://github.com/thephpleague/uri.git",
  4233. "reference": "bedb6e55eff0c933668addaa7efa1e1f2c417cc4"
  4234. },
  4235. "dist": {
  4236. "type": "zip",
  4237. "url": "https://api.github.com/repos/thephpleague/uri/zipball/bedb6e55eff0c933668addaa7efa1e1f2c417cc4",
  4238. "reference": "bedb6e55eff0c933668addaa7efa1e1f2c417cc4",
  4239. "shasum": ""
  4240. },
  4241. "require": {
  4242. "league/uri-interfaces": "^7.3",
  4243. "php": "^8.1"
  4244. },
  4245. "conflict": {
  4246. "league/uri-schemes": "^1.0"
  4247. },
  4248. "suggest": {
  4249. "ext-bcmath": "to improve IPV4 host parsing",
  4250. "ext-fileinfo": "to create Data URI from file contennts",
  4251. "ext-gmp": "to improve IPV4 host parsing",
  4252. "ext-intl": "to handle IDN host with the best performance",
  4253. "jeremykendall/php-domain-parser": "to resolve Public Suffix and Top Level Domain",
  4254. "league/uri-components": "Needed to easily manipulate URI objects components",
  4255. "php-64bit": "to improve IPV4 host parsing",
  4256. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  4257. },
  4258. "type": "library",
  4259. "extra": {
  4260. "branch-alias": {
  4261. "dev-master": "7.x-dev"
  4262. }
  4263. },
  4264. "autoload": {
  4265. "psr-4": {
  4266. "League\\Uri\\": ""
  4267. }
  4268. },
  4269. "notification-url": "https://packagist.org/downloads/",
  4270. "license": [
  4271. "MIT"
  4272. ],
  4273. "authors": [
  4274. {
  4275. "name": "Ignace Nyamagana Butera",
  4276. "email": "nyamsprod@gmail.com",
  4277. "homepage": "https://nyamsprod.com"
  4278. }
  4279. ],
  4280. "description": "URI manipulation library",
  4281. "homepage": "https://uri.thephpleague.com",
  4282. "keywords": [
  4283. "data-uri",
  4284. "file-uri",
  4285. "ftp",
  4286. "hostname",
  4287. "http",
  4288. "https",
  4289. "middleware",
  4290. "parse_str",
  4291. "parse_url",
  4292. "psr-7",
  4293. "query-string",
  4294. "querystring",
  4295. "rfc3986",
  4296. "rfc3987",
  4297. "rfc6570",
  4298. "uri",
  4299. "uri-template",
  4300. "url",
  4301. "ws"
  4302. ],
  4303. "support": {
  4304. "docs": "https://uri.thephpleague.com",
  4305. "forum": "https://thephpleague.slack.com",
  4306. "issues": "https://github.com/thephpleague/uri-src/issues",
  4307. "source": "https://github.com/thephpleague/uri/tree/7.4.1"
  4308. },
  4309. "funding": [
  4310. {
  4311. "url": "https://github.com/sponsors/nyamsprod",
  4312. "type": "github"
  4313. }
  4314. ],
  4315. "time": "2024-03-23T07:42:40+00:00"
  4316. },
  4317. {
  4318. "name": "league/uri-interfaces",
  4319. "version": "7.4.1",
  4320. "source": {
  4321. "type": "git",
  4322. "url": "https://github.com/thephpleague/uri-interfaces.git",
  4323. "reference": "8d43ef5c841032c87e2de015972c06f3865ef718"
  4324. },
  4325. "dist": {
  4326. "type": "zip",
  4327. "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/8d43ef5c841032c87e2de015972c06f3865ef718",
  4328. "reference": "8d43ef5c841032c87e2de015972c06f3865ef718",
  4329. "shasum": ""
  4330. },
  4331. "require": {
  4332. "ext-filter": "*",
  4333. "php": "^8.1",
  4334. "psr/http-factory": "^1",
  4335. "psr/http-message": "^1.1 || ^2.0"
  4336. },
  4337. "suggest": {
  4338. "ext-bcmath": "to improve IPV4 host parsing",
  4339. "ext-gmp": "to improve IPV4 host parsing",
  4340. "ext-intl": "to handle IDN host with the best performance",
  4341. "php-64bit": "to improve IPV4 host parsing",
  4342. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  4343. },
  4344. "type": "library",
  4345. "extra": {
  4346. "branch-alias": {
  4347. "dev-master": "7.x-dev"
  4348. }
  4349. },
  4350. "autoload": {
  4351. "psr-4": {
  4352. "League\\Uri\\": ""
  4353. }
  4354. },
  4355. "notification-url": "https://packagist.org/downloads/",
  4356. "license": [
  4357. "MIT"
  4358. ],
  4359. "authors": [
  4360. {
  4361. "name": "Ignace Nyamagana Butera",
  4362. "email": "nyamsprod@gmail.com",
  4363. "homepage": "https://nyamsprod.com"
  4364. }
  4365. ],
  4366. "description": "Common interfaces and classes for URI representation and interaction",
  4367. "homepage": "https://uri.thephpleague.com",
  4368. "keywords": [
  4369. "data-uri",
  4370. "file-uri",
  4371. "ftp",
  4372. "hostname",
  4373. "http",
  4374. "https",
  4375. "parse_str",
  4376. "parse_url",
  4377. "psr-7",
  4378. "query-string",
  4379. "querystring",
  4380. "rfc3986",
  4381. "rfc3987",
  4382. "rfc6570",
  4383. "uri",
  4384. "url",
  4385. "ws"
  4386. ],
  4387. "support": {
  4388. "docs": "https://uri.thephpleague.com",
  4389. "forum": "https://thephpleague.slack.com",
  4390. "issues": "https://github.com/thephpleague/uri-src/issues",
  4391. "source": "https://github.com/thephpleague/uri-interfaces/tree/7.4.1"
  4392. },
  4393. "funding": [
  4394. {
  4395. "url": "https://github.com/sponsors/nyamsprod",
  4396. "type": "github"
  4397. }
  4398. ],
  4399. "time": "2024-03-23T07:42:40+00:00"
  4400. },
  4401. {
  4402. "name": "livewire/livewire",
  4403. "version": "v3.5.0",
  4404. "source": {
  4405. "type": "git",
  4406. "url": "https://github.com/livewire/livewire.git",
  4407. "reference": "72e900825c560f0e4e620185b26c5441a8914435"
  4408. },
  4409. "dist": {
  4410. "type": "zip",
  4411. "url": "https://api.github.com/repos/livewire/livewire/zipball/72e900825c560f0e4e620185b26c5441a8914435",
  4412. "reference": "72e900825c560f0e4e620185b26c5441a8914435",
  4413. "shasum": ""
  4414. },
  4415. "require": {
  4416. "illuminate/database": "^10.0|^11.0",
  4417. "illuminate/routing": "^10.0|^11.0",
  4418. "illuminate/support": "^10.0|^11.0",
  4419. "illuminate/validation": "^10.0|^11.0",
  4420. "league/mime-type-detection": "^1.9",
  4421. "php": "^8.1",
  4422. "symfony/console": "^6.0|^7.0",
  4423. "symfony/http-kernel": "^6.2|^7.0"
  4424. },
  4425. "require-dev": {
  4426. "calebporzio/sushi": "^2.1",
  4427. "laravel/framework": "^10.15.0|^11.0",
  4428. "laravel/prompts": "^0.1.6",
  4429. "mockery/mockery": "^1.3.1",
  4430. "orchestra/testbench": "^8.21.0|^9.0",
  4431. "orchestra/testbench-dusk": "^8.24|^9.1",
  4432. "phpunit/phpunit": "^10.4",
  4433. "psy/psysh": "^0.11.22|^0.12"
  4434. },
  4435. "type": "library",
  4436. "extra": {
  4437. "laravel": {
  4438. "providers": [
  4439. "Livewire\\LivewireServiceProvider"
  4440. ],
  4441. "aliases": {
  4442. "Livewire": "Livewire\\Livewire"
  4443. }
  4444. }
  4445. },
  4446. "autoload": {
  4447. "files": [
  4448. "src/helpers.php"
  4449. ],
  4450. "psr-4": {
  4451. "Livewire\\": "src/"
  4452. }
  4453. },
  4454. "notification-url": "https://packagist.org/downloads/",
  4455. "license": [
  4456. "MIT"
  4457. ],
  4458. "authors": [
  4459. {
  4460. "name": "Caleb Porzio",
  4461. "email": "calebporzio@gmail.com"
  4462. }
  4463. ],
  4464. "description": "A front-end framework for Laravel.",
  4465. "support": {
  4466. "issues": "https://github.com/livewire/livewire/issues",
  4467. "source": "https://github.com/livewire/livewire/tree/v3.5.0"
  4468. },
  4469. "funding": [
  4470. {
  4471. "url": "https://github.com/livewire",
  4472. "type": "github"
  4473. }
  4474. ],
  4475. "time": "2024-05-21T13:39:04+00:00"
  4476. },
  4477. {
  4478. "name": "masterminds/html5",
  4479. "version": "2.9.0",
  4480. "source": {
  4481. "type": "git",
  4482. "url": "https://github.com/Masterminds/html5-php.git",
  4483. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6"
  4484. },
  4485. "dist": {
  4486. "type": "zip",
  4487. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  4488. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  4489. "shasum": ""
  4490. },
  4491. "require": {
  4492. "ext-dom": "*",
  4493. "php": ">=5.3.0"
  4494. },
  4495. "require-dev": {
  4496. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9"
  4497. },
  4498. "type": "library",
  4499. "extra": {
  4500. "branch-alias": {
  4501. "dev-master": "2.7-dev"
  4502. }
  4503. },
  4504. "autoload": {
  4505. "psr-4": {
  4506. "Masterminds\\": "src"
  4507. }
  4508. },
  4509. "notification-url": "https://packagist.org/downloads/",
  4510. "license": [
  4511. "MIT"
  4512. ],
  4513. "authors": [
  4514. {
  4515. "name": "Matt Butcher",
  4516. "email": "technosophos@gmail.com"
  4517. },
  4518. {
  4519. "name": "Matt Farina",
  4520. "email": "matt@mattfarina.com"
  4521. },
  4522. {
  4523. "name": "Asmir Mustafic",
  4524. "email": "goetas@gmail.com"
  4525. }
  4526. ],
  4527. "description": "An HTML5 parser and serializer.",
  4528. "homepage": "http://masterminds.github.io/html5-php",
  4529. "keywords": [
  4530. "HTML5",
  4531. "dom",
  4532. "html",
  4533. "parser",
  4534. "querypath",
  4535. "serializer",
  4536. "xml"
  4537. ],
  4538. "support": {
  4539. "issues": "https://github.com/Masterminds/html5-php/issues",
  4540. "source": "https://github.com/Masterminds/html5-php/tree/2.9.0"
  4541. },
  4542. "time": "2024-03-31T07:05:07+00:00"
  4543. },
  4544. {
  4545. "name": "matomo/device-detector",
  4546. "version": "6.3.2",
  4547. "source": {
  4548. "type": "git",
  4549. "url": "https://github.com/matomo-org/device-detector.git",
  4550. "reference": "fd4042cb6a7f3f985a81aedc075dd59e0b991a51"
  4551. },
  4552. "dist": {
  4553. "type": "zip",
  4554. "url": "https://api.github.com/repos/matomo-org/device-detector/zipball/fd4042cb6a7f3f985a81aedc075dd59e0b991a51",
  4555. "reference": "fd4042cb6a7f3f985a81aedc075dd59e0b991a51",
  4556. "shasum": ""
  4557. },
  4558. "require": {
  4559. "mustangostang/spyc": "*",
  4560. "php": "^7.2|^8.0"
  4561. },
  4562. "replace": {
  4563. "piwik/device-detector": "self.version"
  4564. },
  4565. "require-dev": {
  4566. "matthiasmullie/scrapbook": "^1.4.7",
  4567. "mayflower/mo4-coding-standard": "^v9.0.0",
  4568. "phpstan/phpstan": "^1.10.44",
  4569. "phpunit/phpunit": "^8.5.8",
  4570. "psr/cache": "^1.0.1",
  4571. "psr/simple-cache": "^1.0.1",
  4572. "symfony/yaml": "^5.1.7"
  4573. },
  4574. "suggest": {
  4575. "doctrine/cache": "Can directly be used for caching purpose",
  4576. "ext-yaml": "Necessary for using the Pecl YAML parser"
  4577. },
  4578. "type": "library",
  4579. "autoload": {
  4580. "psr-4": {
  4581. "DeviceDetector\\": ""
  4582. },
  4583. "exclude-from-classmap": [
  4584. "Tests/"
  4585. ]
  4586. },
  4587. "notification-url": "https://packagist.org/downloads/",
  4588. "license": [
  4589. "LGPL-3.0-or-later"
  4590. ],
  4591. "authors": [
  4592. {
  4593. "name": "The Matomo Team",
  4594. "email": "hello@matomo.org",
  4595. "homepage": "https://matomo.org/team/"
  4596. }
  4597. ],
  4598. "description": "The Universal Device Detection library, that parses User Agents and detects devices (desktop, tablet, mobile, tv, cars, console, etc.), clients (browsers, media players, mobile apps, feed readers, libraries, etc), operating systems, devices, brands and models.",
  4599. "homepage": "https://matomo.org",
  4600. "keywords": [
  4601. "devicedetection",
  4602. "parser",
  4603. "useragent"
  4604. ],
  4605. "support": {
  4606. "forum": "https://forum.matomo.org/",
  4607. "issues": "https://github.com/matomo-org/device-detector/issues",
  4608. "source": "https://github.com/matomo-org/matomo",
  4609. "wiki": "https://dev.matomo.org/"
  4610. },
  4611. "time": "2024-05-28T10:16:19+00:00"
  4612. },
  4613. {
  4614. "name": "monolog/monolog",
  4615. "version": "3.6.0",
  4616. "source": {
  4617. "type": "git",
  4618. "url": "https://github.com/Seldaek/monolog.git",
  4619. "reference": "4b18b21a5527a3d5ffdac2fd35d3ab25a9597654"
  4620. },
  4621. "dist": {
  4622. "type": "zip",
  4623. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/4b18b21a5527a3d5ffdac2fd35d3ab25a9597654",
  4624. "reference": "4b18b21a5527a3d5ffdac2fd35d3ab25a9597654",
  4625. "shasum": ""
  4626. },
  4627. "require": {
  4628. "php": ">=8.1",
  4629. "psr/log": "^2.0 || ^3.0"
  4630. },
  4631. "provide": {
  4632. "psr/log-implementation": "3.0.0"
  4633. },
  4634. "require-dev": {
  4635. "aws/aws-sdk-php": "^3.0",
  4636. "doctrine/couchdb": "~1.0@dev",
  4637. "elasticsearch/elasticsearch": "^7 || ^8",
  4638. "ext-json": "*",
  4639. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  4640. "guzzlehttp/guzzle": "^7.4.5",
  4641. "guzzlehttp/psr7": "^2.2",
  4642. "mongodb/mongodb": "^1.8",
  4643. "php-amqplib/php-amqplib": "~2.4 || ^3",
  4644. "phpstan/phpstan": "^1.9",
  4645. "phpstan/phpstan-deprecation-rules": "^1.0",
  4646. "phpstan/phpstan-strict-rules": "^1.4",
  4647. "phpunit/phpunit": "^10.5.17",
  4648. "predis/predis": "^1.1 || ^2",
  4649. "ruflin/elastica": "^7",
  4650. "symfony/mailer": "^5.4 || ^6",
  4651. "symfony/mime": "^5.4 || ^6"
  4652. },
  4653. "suggest": {
  4654. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  4655. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  4656. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  4657. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  4658. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  4659. "ext-mbstring": "Allow to work properly with unicode symbols",
  4660. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  4661. "ext-openssl": "Required to send log messages using SSL",
  4662. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  4663. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  4664. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  4665. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  4666. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  4667. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  4668. },
  4669. "type": "library",
  4670. "extra": {
  4671. "branch-alias": {
  4672. "dev-main": "3.x-dev"
  4673. }
  4674. },
  4675. "autoload": {
  4676. "psr-4": {
  4677. "Monolog\\": "src/Monolog"
  4678. }
  4679. },
  4680. "notification-url": "https://packagist.org/downloads/",
  4681. "license": [
  4682. "MIT"
  4683. ],
  4684. "authors": [
  4685. {
  4686. "name": "Jordi Boggiano",
  4687. "email": "j.boggiano@seld.be",
  4688. "homepage": "https://seld.be"
  4689. }
  4690. ],
  4691. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  4692. "homepage": "https://github.com/Seldaek/monolog",
  4693. "keywords": [
  4694. "log",
  4695. "logging",
  4696. "psr-3"
  4697. ],
  4698. "support": {
  4699. "issues": "https://github.com/Seldaek/monolog/issues",
  4700. "source": "https://github.com/Seldaek/monolog/tree/3.6.0"
  4701. },
  4702. "funding": [
  4703. {
  4704. "url": "https://github.com/Seldaek",
  4705. "type": "github"
  4706. },
  4707. {
  4708. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  4709. "type": "tidelift"
  4710. }
  4711. ],
  4712. "time": "2024-04-12T21:02:21+00:00"
  4713. },
  4714. {
  4715. "name": "mtdowling/jmespath.php",
  4716. "version": "2.7.0",
  4717. "source": {
  4718. "type": "git",
  4719. "url": "https://github.com/jmespath/jmespath.php.git",
  4720. "reference": "bbb69a935c2cbb0c03d7f481a238027430f6440b"
  4721. },
  4722. "dist": {
  4723. "type": "zip",
  4724. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/bbb69a935c2cbb0c03d7f481a238027430f6440b",
  4725. "reference": "bbb69a935c2cbb0c03d7f481a238027430f6440b",
  4726. "shasum": ""
  4727. },
  4728. "require": {
  4729. "php": "^7.2.5 || ^8.0",
  4730. "symfony/polyfill-mbstring": "^1.17"
  4731. },
  4732. "require-dev": {
  4733. "composer/xdebug-handler": "^3.0.3",
  4734. "phpunit/phpunit": "^8.5.33"
  4735. },
  4736. "bin": [
  4737. "bin/jp.php"
  4738. ],
  4739. "type": "library",
  4740. "extra": {
  4741. "branch-alias": {
  4742. "dev-master": "2.7-dev"
  4743. }
  4744. },
  4745. "autoload": {
  4746. "files": [
  4747. "src/JmesPath.php"
  4748. ],
  4749. "psr-4": {
  4750. "JmesPath\\": "src/"
  4751. }
  4752. },
  4753. "notification-url": "https://packagist.org/downloads/",
  4754. "license": [
  4755. "MIT"
  4756. ],
  4757. "authors": [
  4758. {
  4759. "name": "Graham Campbell",
  4760. "email": "hello@gjcampbell.co.uk",
  4761. "homepage": "https://github.com/GrahamCampbell"
  4762. },
  4763. {
  4764. "name": "Michael Dowling",
  4765. "email": "mtdowling@gmail.com",
  4766. "homepage": "https://github.com/mtdowling"
  4767. }
  4768. ],
  4769. "description": "Declaratively specify how to extract elements from a JSON document",
  4770. "keywords": [
  4771. "json",
  4772. "jsonpath"
  4773. ],
  4774. "support": {
  4775. "issues": "https://github.com/jmespath/jmespath.php/issues",
  4776. "source": "https://github.com/jmespath/jmespath.php/tree/2.7.0"
  4777. },
  4778. "time": "2023-08-25T10:54:48+00:00"
  4779. },
  4780. {
  4781. "name": "mustangostang/spyc",
  4782. "version": "0.6.3",
  4783. "source": {
  4784. "type": "git",
  4785. "url": "https://github.com/mustangostang/spyc.git",
  4786. "reference": "4627c838b16550b666d15aeae1e5289dd5b77da0"
  4787. },
  4788. "dist": {
  4789. "type": "zip",
  4790. "url": "https://api.github.com/repos/mustangostang/spyc/zipball/4627c838b16550b666d15aeae1e5289dd5b77da0",
  4791. "reference": "4627c838b16550b666d15aeae1e5289dd5b77da0",
  4792. "shasum": ""
  4793. },
  4794. "require": {
  4795. "php": ">=5.3.1"
  4796. },
  4797. "require-dev": {
  4798. "phpunit/phpunit": "4.3.*@dev"
  4799. },
  4800. "type": "library",
  4801. "extra": {
  4802. "branch-alias": {
  4803. "dev-master": "0.5.x-dev"
  4804. }
  4805. },
  4806. "autoload": {
  4807. "files": [
  4808. "Spyc.php"
  4809. ]
  4810. },
  4811. "notification-url": "https://packagist.org/downloads/",
  4812. "license": [
  4813. "MIT"
  4814. ],
  4815. "authors": [
  4816. {
  4817. "name": "mustangostang",
  4818. "email": "vlad.andersen@gmail.com"
  4819. }
  4820. ],
  4821. "description": "A simple YAML loader/dumper class for PHP",
  4822. "homepage": "https://github.com/mustangostang/spyc/",
  4823. "keywords": [
  4824. "spyc",
  4825. "yaml",
  4826. "yml"
  4827. ],
  4828. "support": {
  4829. "issues": "https://github.com/mustangostang/spyc/issues",
  4830. "source": "https://github.com/mustangostang/spyc/tree/0.6.3"
  4831. },
  4832. "time": "2019-09-10T13:16:29+00:00"
  4833. },
  4834. {
  4835. "name": "nesbot/carbon",
  4836. "version": "3.5.0",
  4837. "source": {
  4838. "type": "git",
  4839. "url": "https://github.com/briannesbitt/Carbon.git",
  4840. "reference": "415782b7e48223342f1a616c16c45a95b15b2318"
  4841. },
  4842. "dist": {
  4843. "type": "zip",
  4844. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/415782b7e48223342f1a616c16c45a95b15b2318",
  4845. "reference": "415782b7e48223342f1a616c16c45a95b15b2318",
  4846. "shasum": ""
  4847. },
  4848. "require": {
  4849. "carbonphp/carbon-doctrine-types": "*",
  4850. "ext-json": "*",
  4851. "php": "^8.1",
  4852. "psr/clock": "^1.0",
  4853. "symfony/clock": "^6.3 || ^7.0",
  4854. "symfony/polyfill-mbstring": "^1.0",
  4855. "symfony/translation": "^4.4.18 || ^5.2.1|| ^6.0 || ^7.0"
  4856. },
  4857. "provide": {
  4858. "psr/clock-implementation": "1.0"
  4859. },
  4860. "require-dev": {
  4861. "doctrine/dbal": "^3.6.3 || ^4.0",
  4862. "doctrine/orm": "^2.15.2 || ^3.0",
  4863. "friendsofphp/php-cs-fixer": "^3.57.2",
  4864. "kylekatarnls/multi-tester": "^2.5.3",
  4865. "ondrejmirtes/better-reflection": "^6.25.0.4",
  4866. "phpmd/phpmd": "^2.15.0",
  4867. "phpstan/extension-installer": "^1.3.1",
  4868. "phpstan/phpstan": "^1.11.2",
  4869. "phpunit/phpunit": "^10.5.20",
  4870. "squizlabs/php_codesniffer": "^3.9.0"
  4871. },
  4872. "bin": [
  4873. "bin/carbon"
  4874. ],
  4875. "type": "library",
  4876. "extra": {
  4877. "branch-alias": {
  4878. "dev-master": "3.x-dev",
  4879. "dev-2.x": "2.x-dev"
  4880. },
  4881. "laravel": {
  4882. "providers": [
  4883. "Carbon\\Laravel\\ServiceProvider"
  4884. ]
  4885. },
  4886. "phpstan": {
  4887. "includes": [
  4888. "extension.neon"
  4889. ]
  4890. }
  4891. },
  4892. "autoload": {
  4893. "psr-4": {
  4894. "Carbon\\": "src/Carbon/"
  4895. }
  4896. },
  4897. "notification-url": "https://packagist.org/downloads/",
  4898. "license": [
  4899. "MIT"
  4900. ],
  4901. "authors": [
  4902. {
  4903. "name": "Brian Nesbitt",
  4904. "email": "brian@nesbot.com",
  4905. "homepage": "https://markido.com"
  4906. },
  4907. {
  4908. "name": "kylekatarnls",
  4909. "homepage": "https://github.com/kylekatarnls"
  4910. }
  4911. ],
  4912. "description": "An API extension for DateTime that supports 281 different languages.",
  4913. "homepage": "https://carbon.nesbot.com",
  4914. "keywords": [
  4915. "date",
  4916. "datetime",
  4917. "time"
  4918. ],
  4919. "support": {
  4920. "docs": "https://carbon.nesbot.com/docs",
  4921. "issues": "https://github.com/briannesbitt/Carbon/issues",
  4922. "source": "https://github.com/briannesbitt/Carbon"
  4923. },
  4924. "funding": [
  4925. {
  4926. "url": "https://github.com/sponsors/kylekatarnls",
  4927. "type": "github"
  4928. },
  4929. {
  4930. "url": "https://opencollective.com/Carbon#sponsor",
  4931. "type": "opencollective"
  4932. },
  4933. {
  4934. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  4935. "type": "tidelift"
  4936. }
  4937. ],
  4938. "time": "2024-06-03T17:25:54+00:00"
  4939. },
  4940. {
  4941. "name": "nette/schema",
  4942. "version": "v1.3.0",
  4943. "source": {
  4944. "type": "git",
  4945. "url": "https://github.com/nette/schema.git",
  4946. "reference": "a6d3a6d1f545f01ef38e60f375d1cf1f4de98188"
  4947. },
  4948. "dist": {
  4949. "type": "zip",
  4950. "url": "https://api.github.com/repos/nette/schema/zipball/a6d3a6d1f545f01ef38e60f375d1cf1f4de98188",
  4951. "reference": "a6d3a6d1f545f01ef38e60f375d1cf1f4de98188",
  4952. "shasum": ""
  4953. },
  4954. "require": {
  4955. "nette/utils": "^4.0",
  4956. "php": "8.1 - 8.3"
  4957. },
  4958. "require-dev": {
  4959. "nette/tester": "^2.4",
  4960. "phpstan/phpstan-nette": "^1.0",
  4961. "tracy/tracy": "^2.8"
  4962. },
  4963. "type": "library",
  4964. "extra": {
  4965. "branch-alias": {
  4966. "dev-master": "1.3-dev"
  4967. }
  4968. },
  4969. "autoload": {
  4970. "classmap": [
  4971. "src/"
  4972. ]
  4973. },
  4974. "notification-url": "https://packagist.org/downloads/",
  4975. "license": [
  4976. "BSD-3-Clause",
  4977. "GPL-2.0-only",
  4978. "GPL-3.0-only"
  4979. ],
  4980. "authors": [
  4981. {
  4982. "name": "David Grudl",
  4983. "homepage": "https://davidgrudl.com"
  4984. },
  4985. {
  4986. "name": "Nette Community",
  4987. "homepage": "https://nette.org/contributors"
  4988. }
  4989. ],
  4990. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  4991. "homepage": "https://nette.org",
  4992. "keywords": [
  4993. "config",
  4994. "nette"
  4995. ],
  4996. "support": {
  4997. "issues": "https://github.com/nette/schema/issues",
  4998. "source": "https://github.com/nette/schema/tree/v1.3.0"
  4999. },
  5000. "time": "2023-12-11T11:54:22+00:00"
  5001. },
  5002. {
  5003. "name": "nette/utils",
  5004. "version": "v4.0.4",
  5005. "source": {
  5006. "type": "git",
  5007. "url": "https://github.com/nette/utils.git",
  5008. "reference": "d3ad0aa3b9f934602cb3e3902ebccf10be34d218"
  5009. },
  5010. "dist": {
  5011. "type": "zip",
  5012. "url": "https://api.github.com/repos/nette/utils/zipball/d3ad0aa3b9f934602cb3e3902ebccf10be34d218",
  5013. "reference": "d3ad0aa3b9f934602cb3e3902ebccf10be34d218",
  5014. "shasum": ""
  5015. },
  5016. "require": {
  5017. "php": ">=8.0 <8.4"
  5018. },
  5019. "conflict": {
  5020. "nette/finder": "<3",
  5021. "nette/schema": "<1.2.2"
  5022. },
  5023. "require-dev": {
  5024. "jetbrains/phpstorm-attributes": "dev-master",
  5025. "nette/tester": "^2.5",
  5026. "phpstan/phpstan": "^1.0",
  5027. "tracy/tracy": "^2.9"
  5028. },
  5029. "suggest": {
  5030. "ext-gd": "to use Image",
  5031. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  5032. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  5033. "ext-json": "to use Nette\\Utils\\Json",
  5034. "ext-mbstring": "to use Strings::lower() etc...",
  5035. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  5036. },
  5037. "type": "library",
  5038. "extra": {
  5039. "branch-alias": {
  5040. "dev-master": "4.0-dev"
  5041. }
  5042. },
  5043. "autoload": {
  5044. "classmap": [
  5045. "src/"
  5046. ]
  5047. },
  5048. "notification-url": "https://packagist.org/downloads/",
  5049. "license": [
  5050. "BSD-3-Clause",
  5051. "GPL-2.0-only",
  5052. "GPL-3.0-only"
  5053. ],
  5054. "authors": [
  5055. {
  5056. "name": "David Grudl",
  5057. "homepage": "https://davidgrudl.com"
  5058. },
  5059. {
  5060. "name": "Nette Community",
  5061. "homepage": "https://nette.org/contributors"
  5062. }
  5063. ],
  5064. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  5065. "homepage": "https://nette.org",
  5066. "keywords": [
  5067. "array",
  5068. "core",
  5069. "datetime",
  5070. "images",
  5071. "json",
  5072. "nette",
  5073. "paginator",
  5074. "password",
  5075. "slugify",
  5076. "string",
  5077. "unicode",
  5078. "utf-8",
  5079. "utility",
  5080. "validation"
  5081. ],
  5082. "support": {
  5083. "issues": "https://github.com/nette/utils/issues",
  5084. "source": "https://github.com/nette/utils/tree/v4.0.4"
  5085. },
  5086. "time": "2024-01-17T16:50:36+00:00"
  5087. },
  5088. {
  5089. "name": "nikic/php-parser",
  5090. "version": "v5.0.2",
  5091. "source": {
  5092. "type": "git",
  5093. "url": "https://github.com/nikic/PHP-Parser.git",
  5094. "reference": "139676794dc1e9231bf7bcd123cfc0c99182cb13"
  5095. },
  5096. "dist": {
  5097. "type": "zip",
  5098. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/139676794dc1e9231bf7bcd123cfc0c99182cb13",
  5099. "reference": "139676794dc1e9231bf7bcd123cfc0c99182cb13",
  5100. "shasum": ""
  5101. },
  5102. "require": {
  5103. "ext-ctype": "*",
  5104. "ext-json": "*",
  5105. "ext-tokenizer": "*",
  5106. "php": ">=7.4"
  5107. },
  5108. "require-dev": {
  5109. "ircmaxell/php-yacc": "^0.0.7",
  5110. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  5111. },
  5112. "bin": [
  5113. "bin/php-parse"
  5114. ],
  5115. "type": "library",
  5116. "extra": {
  5117. "branch-alias": {
  5118. "dev-master": "5.0-dev"
  5119. }
  5120. },
  5121. "autoload": {
  5122. "psr-4": {
  5123. "PhpParser\\": "lib/PhpParser"
  5124. }
  5125. },
  5126. "notification-url": "https://packagist.org/downloads/",
  5127. "license": [
  5128. "BSD-3-Clause"
  5129. ],
  5130. "authors": [
  5131. {
  5132. "name": "Nikita Popov"
  5133. }
  5134. ],
  5135. "description": "A PHP parser written in PHP",
  5136. "keywords": [
  5137. "parser",
  5138. "php"
  5139. ],
  5140. "support": {
  5141. "issues": "https://github.com/nikic/PHP-Parser/issues",
  5142. "source": "https://github.com/nikic/PHP-Parser/tree/v5.0.2"
  5143. },
  5144. "time": "2024-03-05T20:51:40+00:00"
  5145. },
  5146. {
  5147. "name": "nunomaduro/termwind",
  5148. "version": "v2.0.1",
  5149. "source": {
  5150. "type": "git",
  5151. "url": "https://github.com/nunomaduro/termwind.git",
  5152. "reference": "58c4c58cf23df7f498daeb97092e34f5259feb6a"
  5153. },
  5154. "dist": {
  5155. "type": "zip",
  5156. "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/58c4c58cf23df7f498daeb97092e34f5259feb6a",
  5157. "reference": "58c4c58cf23df7f498daeb97092e34f5259feb6a",
  5158. "shasum": ""
  5159. },
  5160. "require": {
  5161. "ext-mbstring": "*",
  5162. "php": "^8.2",
  5163. "symfony/console": "^7.0.4"
  5164. },
  5165. "require-dev": {
  5166. "ergebnis/phpstan-rules": "^2.2.0",
  5167. "illuminate/console": "^11.0.0",
  5168. "laravel/pint": "^1.14.0",
  5169. "mockery/mockery": "^1.6.7",
  5170. "pestphp/pest": "^2.34.1",
  5171. "phpstan/phpstan": "^1.10.59",
  5172. "phpstan/phpstan-strict-rules": "^1.5.2",
  5173. "symfony/var-dumper": "^7.0.4",
  5174. "thecodingmachine/phpstan-strict-rules": "^1.0.0"
  5175. },
  5176. "type": "library",
  5177. "extra": {
  5178. "laravel": {
  5179. "providers": [
  5180. "Termwind\\Laravel\\TermwindServiceProvider"
  5181. ]
  5182. },
  5183. "branch-alias": {
  5184. "dev-2.x": "2.x-dev"
  5185. }
  5186. },
  5187. "autoload": {
  5188. "files": [
  5189. "src/Functions.php"
  5190. ],
  5191. "psr-4": {
  5192. "Termwind\\": "src/"
  5193. }
  5194. },
  5195. "notification-url": "https://packagist.org/downloads/",
  5196. "license": [
  5197. "MIT"
  5198. ],
  5199. "authors": [
  5200. {
  5201. "name": "Nuno Maduro",
  5202. "email": "enunomaduro@gmail.com"
  5203. }
  5204. ],
  5205. "description": "Its like Tailwind CSS, but for the console.",
  5206. "keywords": [
  5207. "cli",
  5208. "console",
  5209. "css",
  5210. "package",
  5211. "php",
  5212. "style"
  5213. ],
  5214. "support": {
  5215. "issues": "https://github.com/nunomaduro/termwind/issues",
  5216. "source": "https://github.com/nunomaduro/termwind/tree/v2.0.1"
  5217. },
  5218. "funding": [
  5219. {
  5220. "url": "https://www.paypal.com/paypalme/enunomaduro",
  5221. "type": "custom"
  5222. },
  5223. {
  5224. "url": "https://github.com/nunomaduro",
  5225. "type": "github"
  5226. },
  5227. {
  5228. "url": "https://github.com/xiCO2k",
  5229. "type": "github"
  5230. }
  5231. ],
  5232. "time": "2024-03-06T16:17:14+00:00"
  5233. },
  5234. {
  5235. "name": "openspout/openspout",
  5236. "version": "v4.24.1",
  5237. "source": {
  5238. "type": "git",
  5239. "url": "https://github.com/openspout/openspout.git",
  5240. "reference": "003991abc5cfee93423254774c71766d38cbe340"
  5241. },
  5242. "dist": {
  5243. "type": "zip",
  5244. "url": "https://api.github.com/repos/openspout/openspout/zipball/003991abc5cfee93423254774c71766d38cbe340",
  5245. "reference": "003991abc5cfee93423254774c71766d38cbe340",
  5246. "shasum": ""
  5247. },
  5248. "require": {
  5249. "ext-dom": "*",
  5250. "ext-fileinfo": "*",
  5251. "ext-filter": "*",
  5252. "ext-libxml": "*",
  5253. "ext-xmlreader": "*",
  5254. "ext-zip": "*",
  5255. "php": "~8.1.0 || ~8.2.0 || ~8.3.0"
  5256. },
  5257. "require-dev": {
  5258. "ext-zlib": "*",
  5259. "friendsofphp/php-cs-fixer": "^3.57.1",
  5260. "infection/infection": "^0.28.1",
  5261. "phpbench/phpbench": "^1.2.15",
  5262. "phpstan/phpstan": "^1.11.1",
  5263. "phpstan/phpstan-phpunit": "^1.4.0",
  5264. "phpstan/phpstan-strict-rules": "^1.6.0",
  5265. "phpunit/phpunit": "^10.5.20"
  5266. },
  5267. "suggest": {
  5268. "ext-iconv": "To handle non UTF-8 CSV files (if \"php-mbstring\" is not already installed or is too limited)",
  5269. "ext-mbstring": "To handle non UTF-8 CSV files (if \"iconv\" is not already installed)"
  5270. },
  5271. "type": "library",
  5272. "extra": {
  5273. "branch-alias": {
  5274. "dev-master": "3.3.x-dev"
  5275. }
  5276. },
  5277. "autoload": {
  5278. "psr-4": {
  5279. "OpenSpout\\": "src/"
  5280. }
  5281. },
  5282. "notification-url": "https://packagist.org/downloads/",
  5283. "license": [
  5284. "MIT"
  5285. ],
  5286. "authors": [
  5287. {
  5288. "name": "Adrien Loison",
  5289. "email": "adrien@box.com"
  5290. }
  5291. ],
  5292. "description": "PHP Library to read and write spreadsheet files (CSV, XLSX and ODS), in a fast and scalable way",
  5293. "homepage": "https://github.com/openspout/openspout",
  5294. "keywords": [
  5295. "OOXML",
  5296. "csv",
  5297. "excel",
  5298. "memory",
  5299. "odf",
  5300. "ods",
  5301. "office",
  5302. "open",
  5303. "php",
  5304. "read",
  5305. "scale",
  5306. "spreadsheet",
  5307. "stream",
  5308. "write",
  5309. "xlsx"
  5310. ],
  5311. "support": {
  5312. "issues": "https://github.com/openspout/openspout/issues",
  5313. "source": "https://github.com/openspout/openspout/tree/v4.24.1"
  5314. },
  5315. "funding": [
  5316. {
  5317. "url": "https://paypal.me/filippotessarotto",
  5318. "type": "custom"
  5319. },
  5320. {
  5321. "url": "https://github.com/Slamdunk",
  5322. "type": "github"
  5323. }
  5324. ],
  5325. "time": "2024-05-20T09:32:59+00:00"
  5326. },
  5327. {
  5328. "name": "paragonie/constant_time_encoding",
  5329. "version": "v2.7.0",
  5330. "source": {
  5331. "type": "git",
  5332. "url": "https://github.com/paragonie/constant_time_encoding.git",
  5333. "reference": "52a0d99e69f56b9ec27ace92ba56897fe6993105"
  5334. },
  5335. "dist": {
  5336. "type": "zip",
  5337. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/52a0d99e69f56b9ec27ace92ba56897fe6993105",
  5338. "reference": "52a0d99e69f56b9ec27ace92ba56897fe6993105",
  5339. "shasum": ""
  5340. },
  5341. "require": {
  5342. "php": "^7|^8"
  5343. },
  5344. "require-dev": {
  5345. "phpunit/phpunit": "^6|^7|^8|^9",
  5346. "vimeo/psalm": "^1|^2|^3|^4"
  5347. },
  5348. "type": "library",
  5349. "autoload": {
  5350. "psr-4": {
  5351. "ParagonIE\\ConstantTime\\": "src/"
  5352. }
  5353. },
  5354. "notification-url": "https://packagist.org/downloads/",
  5355. "license": [
  5356. "MIT"
  5357. ],
  5358. "authors": [
  5359. {
  5360. "name": "Paragon Initiative Enterprises",
  5361. "email": "security@paragonie.com",
  5362. "homepage": "https://paragonie.com",
  5363. "role": "Maintainer"
  5364. },
  5365. {
  5366. "name": "Steve 'Sc00bz' Thomas",
  5367. "email": "steve@tobtu.com",
  5368. "homepage": "https://www.tobtu.com",
  5369. "role": "Original Developer"
  5370. }
  5371. ],
  5372. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  5373. "keywords": [
  5374. "base16",
  5375. "base32",
  5376. "base32_decode",
  5377. "base32_encode",
  5378. "base64",
  5379. "base64_decode",
  5380. "base64_encode",
  5381. "bin2hex",
  5382. "encoding",
  5383. "hex",
  5384. "hex2bin",
  5385. "rfc4648"
  5386. ],
  5387. "support": {
  5388. "email": "info@paragonie.com",
  5389. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  5390. "source": "https://github.com/paragonie/constant_time_encoding"
  5391. },
  5392. "time": "2024-05-08T12:18:48+00:00"
  5393. },
  5394. {
  5395. "name": "paragonie/random_compat",
  5396. "version": "v9.99.100",
  5397. "source": {
  5398. "type": "git",
  5399. "url": "https://github.com/paragonie/random_compat.git",
  5400. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  5401. },
  5402. "dist": {
  5403. "type": "zip",
  5404. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5405. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5406. "shasum": ""
  5407. },
  5408. "require": {
  5409. "php": ">= 7"
  5410. },
  5411. "require-dev": {
  5412. "phpunit/phpunit": "4.*|5.*",
  5413. "vimeo/psalm": "^1"
  5414. },
  5415. "suggest": {
  5416. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  5417. },
  5418. "type": "library",
  5419. "notification-url": "https://packagist.org/downloads/",
  5420. "license": [
  5421. "MIT"
  5422. ],
  5423. "authors": [
  5424. {
  5425. "name": "Paragon Initiative Enterprises",
  5426. "email": "security@paragonie.com",
  5427. "homepage": "https://paragonie.com"
  5428. }
  5429. ],
  5430. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  5431. "keywords": [
  5432. "csprng",
  5433. "polyfill",
  5434. "pseudorandom",
  5435. "random"
  5436. ],
  5437. "support": {
  5438. "email": "info@paragonie.com",
  5439. "issues": "https://github.com/paragonie/random_compat/issues",
  5440. "source": "https://github.com/paragonie/random_compat"
  5441. },
  5442. "time": "2020-10-15T08:29:30+00:00"
  5443. },
  5444. {
  5445. "name": "phenx/php-font-lib",
  5446. "version": "0.5.6",
  5447. "source": {
  5448. "type": "git",
  5449. "url": "https://github.com/dompdf/php-font-lib.git",
  5450. "reference": "a1681e9793040740a405ac5b189275059e2a9863"
  5451. },
  5452. "dist": {
  5453. "type": "zip",
  5454. "url": "https://api.github.com/repos/dompdf/php-font-lib/zipball/a1681e9793040740a405ac5b189275059e2a9863",
  5455. "reference": "a1681e9793040740a405ac5b189275059e2a9863",
  5456. "shasum": ""
  5457. },
  5458. "require": {
  5459. "ext-mbstring": "*"
  5460. },
  5461. "require-dev": {
  5462. "symfony/phpunit-bridge": "^3 || ^4 || ^5 || ^6"
  5463. },
  5464. "type": "library",
  5465. "autoload": {
  5466. "psr-4": {
  5467. "FontLib\\": "src/FontLib"
  5468. }
  5469. },
  5470. "notification-url": "https://packagist.org/downloads/",
  5471. "license": [
  5472. "LGPL-2.1-or-later"
  5473. ],
  5474. "authors": [
  5475. {
  5476. "name": "Fabien Ménager",
  5477. "email": "fabien.menager@gmail.com"
  5478. }
  5479. ],
  5480. "description": "A library to read, parse, export and make subsets of different types of font files.",
  5481. "homepage": "https://github.com/PhenX/php-font-lib",
  5482. "support": {
  5483. "issues": "https://github.com/dompdf/php-font-lib/issues",
  5484. "source": "https://github.com/dompdf/php-font-lib/tree/0.5.6"
  5485. },
  5486. "time": "2024-01-29T14:45:26+00:00"
  5487. },
  5488. {
  5489. "name": "phenx/php-svg-lib",
  5490. "version": "0.5.4",
  5491. "source": {
  5492. "type": "git",
  5493. "url": "https://github.com/dompdf/php-svg-lib.git",
  5494. "reference": "46b25da81613a9cf43c83b2a8c2c1bdab27df691"
  5495. },
  5496. "dist": {
  5497. "type": "zip",
  5498. "url": "https://api.github.com/repos/dompdf/php-svg-lib/zipball/46b25da81613a9cf43c83b2a8c2c1bdab27df691",
  5499. "reference": "46b25da81613a9cf43c83b2a8c2c1bdab27df691",
  5500. "shasum": ""
  5501. },
  5502. "require": {
  5503. "ext-mbstring": "*",
  5504. "php": "^7.1 || ^8.0",
  5505. "sabberworm/php-css-parser": "^8.4"
  5506. },
  5507. "require-dev": {
  5508. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5"
  5509. },
  5510. "type": "library",
  5511. "autoload": {
  5512. "psr-4": {
  5513. "Svg\\": "src/Svg"
  5514. }
  5515. },
  5516. "notification-url": "https://packagist.org/downloads/",
  5517. "license": [
  5518. "LGPL-3.0-or-later"
  5519. ],
  5520. "authors": [
  5521. {
  5522. "name": "Fabien Ménager",
  5523. "email": "fabien.menager@gmail.com"
  5524. }
  5525. ],
  5526. "description": "A library to read, parse and export to PDF SVG files.",
  5527. "homepage": "https://github.com/PhenX/php-svg-lib",
  5528. "support": {
  5529. "issues": "https://github.com/dompdf/php-svg-lib/issues",
  5530. "source": "https://github.com/dompdf/php-svg-lib/tree/0.5.4"
  5531. },
  5532. "time": "2024-04-08T12:52:34+00:00"
  5533. },
  5534. {
  5535. "name": "phpoption/phpoption",
  5536. "version": "1.9.2",
  5537. "source": {
  5538. "type": "git",
  5539. "url": "https://github.com/schmittjoh/php-option.git",
  5540. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820"
  5541. },
  5542. "dist": {
  5543. "type": "zip",
  5544. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/80735db690fe4fc5c76dfa7f9b770634285fa820",
  5545. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820",
  5546. "shasum": ""
  5547. },
  5548. "require": {
  5549. "php": "^7.2.5 || ^8.0"
  5550. },
  5551. "require-dev": {
  5552. "bamarni/composer-bin-plugin": "^1.8.2",
  5553. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  5554. },
  5555. "type": "library",
  5556. "extra": {
  5557. "bamarni-bin": {
  5558. "bin-links": true,
  5559. "forward-command": true
  5560. },
  5561. "branch-alias": {
  5562. "dev-master": "1.9-dev"
  5563. }
  5564. },
  5565. "autoload": {
  5566. "psr-4": {
  5567. "PhpOption\\": "src/PhpOption/"
  5568. }
  5569. },
  5570. "notification-url": "https://packagist.org/downloads/",
  5571. "license": [
  5572. "Apache-2.0"
  5573. ],
  5574. "authors": [
  5575. {
  5576. "name": "Johannes M. Schmitt",
  5577. "email": "schmittjoh@gmail.com",
  5578. "homepage": "https://github.com/schmittjoh"
  5579. },
  5580. {
  5581. "name": "Graham Campbell",
  5582. "email": "hello@gjcampbell.co.uk",
  5583. "homepage": "https://github.com/GrahamCampbell"
  5584. }
  5585. ],
  5586. "description": "Option Type for PHP",
  5587. "keywords": [
  5588. "language",
  5589. "option",
  5590. "php",
  5591. "type"
  5592. ],
  5593. "support": {
  5594. "issues": "https://github.com/schmittjoh/php-option/issues",
  5595. "source": "https://github.com/schmittjoh/php-option/tree/1.9.2"
  5596. },
  5597. "funding": [
  5598. {
  5599. "url": "https://github.com/GrahamCampbell",
  5600. "type": "github"
  5601. },
  5602. {
  5603. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  5604. "type": "tidelift"
  5605. }
  5606. ],
  5607. "time": "2023-11-12T21:59:55+00:00"
  5608. },
  5609. {
  5610. "name": "phpseclib/phpseclib",
  5611. "version": "3.0.37",
  5612. "source": {
  5613. "type": "git",
  5614. "url": "https://github.com/phpseclib/phpseclib.git",
  5615. "reference": "cfa2013d0f68c062055180dd4328cc8b9d1f30b8"
  5616. },
  5617. "dist": {
  5618. "type": "zip",
  5619. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/cfa2013d0f68c062055180dd4328cc8b9d1f30b8",
  5620. "reference": "cfa2013d0f68c062055180dd4328cc8b9d1f30b8",
  5621. "shasum": ""
  5622. },
  5623. "require": {
  5624. "paragonie/constant_time_encoding": "^1|^2",
  5625. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  5626. "php": ">=5.6.1"
  5627. },
  5628. "require-dev": {
  5629. "phpunit/phpunit": "*"
  5630. },
  5631. "suggest": {
  5632. "ext-dom": "Install the DOM extension to load XML formatted public keys.",
  5633. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  5634. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  5635. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  5636. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  5637. },
  5638. "type": "library",
  5639. "autoload": {
  5640. "files": [
  5641. "phpseclib/bootstrap.php"
  5642. ],
  5643. "psr-4": {
  5644. "phpseclib3\\": "phpseclib/"
  5645. }
  5646. },
  5647. "notification-url": "https://packagist.org/downloads/",
  5648. "license": [
  5649. "MIT"
  5650. ],
  5651. "authors": [
  5652. {
  5653. "name": "Jim Wigginton",
  5654. "email": "terrafrost@php.net",
  5655. "role": "Lead Developer"
  5656. },
  5657. {
  5658. "name": "Patrick Monnerat",
  5659. "email": "pm@datasphere.ch",
  5660. "role": "Developer"
  5661. },
  5662. {
  5663. "name": "Andreas Fischer",
  5664. "email": "bantu@phpbb.com",
  5665. "role": "Developer"
  5666. },
  5667. {
  5668. "name": "Hans-Jürgen Petrich",
  5669. "email": "petrich@tronic-media.com",
  5670. "role": "Developer"
  5671. },
  5672. {
  5673. "name": "Graham Campbell",
  5674. "email": "graham@alt-three.com",
  5675. "role": "Developer"
  5676. }
  5677. ],
  5678. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  5679. "homepage": "http://phpseclib.sourceforge.net",
  5680. "keywords": [
  5681. "BigInteger",
  5682. "aes",
  5683. "asn.1",
  5684. "asn1",
  5685. "blowfish",
  5686. "crypto",
  5687. "cryptography",
  5688. "encryption",
  5689. "rsa",
  5690. "security",
  5691. "sftp",
  5692. "signature",
  5693. "signing",
  5694. "ssh",
  5695. "twofish",
  5696. "x.509",
  5697. "x509"
  5698. ],
  5699. "support": {
  5700. "issues": "https://github.com/phpseclib/phpseclib/issues",
  5701. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.37"
  5702. },
  5703. "funding": [
  5704. {
  5705. "url": "https://github.com/terrafrost",
  5706. "type": "github"
  5707. },
  5708. {
  5709. "url": "https://www.patreon.com/phpseclib",
  5710. "type": "patreon"
  5711. },
  5712. {
  5713. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  5714. "type": "tidelift"
  5715. }
  5716. ],
  5717. "time": "2024-03-03T02:14:58+00:00"
  5718. },
  5719. {
  5720. "name": "psr/cache",
  5721. "version": "3.0.0",
  5722. "source": {
  5723. "type": "git",
  5724. "url": "https://github.com/php-fig/cache.git",
  5725. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  5726. },
  5727. "dist": {
  5728. "type": "zip",
  5729. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5730. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5731. "shasum": ""
  5732. },
  5733. "require": {
  5734. "php": ">=8.0.0"
  5735. },
  5736. "type": "library",
  5737. "extra": {
  5738. "branch-alias": {
  5739. "dev-master": "1.0.x-dev"
  5740. }
  5741. },
  5742. "autoload": {
  5743. "psr-4": {
  5744. "Psr\\Cache\\": "src/"
  5745. }
  5746. },
  5747. "notification-url": "https://packagist.org/downloads/",
  5748. "license": [
  5749. "MIT"
  5750. ],
  5751. "authors": [
  5752. {
  5753. "name": "PHP-FIG",
  5754. "homepage": "https://www.php-fig.org/"
  5755. }
  5756. ],
  5757. "description": "Common interface for caching libraries",
  5758. "keywords": [
  5759. "cache",
  5760. "psr",
  5761. "psr-6"
  5762. ],
  5763. "support": {
  5764. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  5765. },
  5766. "time": "2021-02-03T23:26:27+00:00"
  5767. },
  5768. {
  5769. "name": "psr/clock",
  5770. "version": "1.0.0",
  5771. "source": {
  5772. "type": "git",
  5773. "url": "https://github.com/php-fig/clock.git",
  5774. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  5775. },
  5776. "dist": {
  5777. "type": "zip",
  5778. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5779. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5780. "shasum": ""
  5781. },
  5782. "require": {
  5783. "php": "^7.0 || ^8.0"
  5784. },
  5785. "type": "library",
  5786. "autoload": {
  5787. "psr-4": {
  5788. "Psr\\Clock\\": "src/"
  5789. }
  5790. },
  5791. "notification-url": "https://packagist.org/downloads/",
  5792. "license": [
  5793. "MIT"
  5794. ],
  5795. "authors": [
  5796. {
  5797. "name": "PHP-FIG",
  5798. "homepage": "https://www.php-fig.org/"
  5799. }
  5800. ],
  5801. "description": "Common interface for reading the clock.",
  5802. "homepage": "https://github.com/php-fig/clock",
  5803. "keywords": [
  5804. "clock",
  5805. "now",
  5806. "psr",
  5807. "psr-20",
  5808. "time"
  5809. ],
  5810. "support": {
  5811. "issues": "https://github.com/php-fig/clock/issues",
  5812. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  5813. },
  5814. "time": "2022-11-25T14:36:26+00:00"
  5815. },
  5816. {
  5817. "name": "psr/container",
  5818. "version": "2.0.2",
  5819. "source": {
  5820. "type": "git",
  5821. "url": "https://github.com/php-fig/container.git",
  5822. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  5823. },
  5824. "dist": {
  5825. "type": "zip",
  5826. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5827. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5828. "shasum": ""
  5829. },
  5830. "require": {
  5831. "php": ">=7.4.0"
  5832. },
  5833. "type": "library",
  5834. "extra": {
  5835. "branch-alias": {
  5836. "dev-master": "2.0.x-dev"
  5837. }
  5838. },
  5839. "autoload": {
  5840. "psr-4": {
  5841. "Psr\\Container\\": "src/"
  5842. }
  5843. },
  5844. "notification-url": "https://packagist.org/downloads/",
  5845. "license": [
  5846. "MIT"
  5847. ],
  5848. "authors": [
  5849. {
  5850. "name": "PHP-FIG",
  5851. "homepage": "https://www.php-fig.org/"
  5852. }
  5853. ],
  5854. "description": "Common Container Interface (PHP FIG PSR-11)",
  5855. "homepage": "https://github.com/php-fig/container",
  5856. "keywords": [
  5857. "PSR-11",
  5858. "container",
  5859. "container-interface",
  5860. "container-interop",
  5861. "psr"
  5862. ],
  5863. "support": {
  5864. "issues": "https://github.com/php-fig/container/issues",
  5865. "source": "https://github.com/php-fig/container/tree/2.0.2"
  5866. },
  5867. "time": "2021-11-05T16:47:00+00:00"
  5868. },
  5869. {
  5870. "name": "psr/event-dispatcher",
  5871. "version": "1.0.0",
  5872. "source": {
  5873. "type": "git",
  5874. "url": "https://github.com/php-fig/event-dispatcher.git",
  5875. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  5876. },
  5877. "dist": {
  5878. "type": "zip",
  5879. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5880. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5881. "shasum": ""
  5882. },
  5883. "require": {
  5884. "php": ">=7.2.0"
  5885. },
  5886. "type": "library",
  5887. "extra": {
  5888. "branch-alias": {
  5889. "dev-master": "1.0.x-dev"
  5890. }
  5891. },
  5892. "autoload": {
  5893. "psr-4": {
  5894. "Psr\\EventDispatcher\\": "src/"
  5895. }
  5896. },
  5897. "notification-url": "https://packagist.org/downloads/",
  5898. "license": [
  5899. "MIT"
  5900. ],
  5901. "authors": [
  5902. {
  5903. "name": "PHP-FIG",
  5904. "homepage": "http://www.php-fig.org/"
  5905. }
  5906. ],
  5907. "description": "Standard interfaces for event handling.",
  5908. "keywords": [
  5909. "events",
  5910. "psr",
  5911. "psr-14"
  5912. ],
  5913. "support": {
  5914. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  5915. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  5916. },
  5917. "time": "2019-01-08T18:20:26+00:00"
  5918. },
  5919. {
  5920. "name": "psr/http-client",
  5921. "version": "1.0.3",
  5922. "source": {
  5923. "type": "git",
  5924. "url": "https://github.com/php-fig/http-client.git",
  5925. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  5926. },
  5927. "dist": {
  5928. "type": "zip",
  5929. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5930. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5931. "shasum": ""
  5932. },
  5933. "require": {
  5934. "php": "^7.0 || ^8.0",
  5935. "psr/http-message": "^1.0 || ^2.0"
  5936. },
  5937. "type": "library",
  5938. "extra": {
  5939. "branch-alias": {
  5940. "dev-master": "1.0.x-dev"
  5941. }
  5942. },
  5943. "autoload": {
  5944. "psr-4": {
  5945. "Psr\\Http\\Client\\": "src/"
  5946. }
  5947. },
  5948. "notification-url": "https://packagist.org/downloads/",
  5949. "license": [
  5950. "MIT"
  5951. ],
  5952. "authors": [
  5953. {
  5954. "name": "PHP-FIG",
  5955. "homepage": "https://www.php-fig.org/"
  5956. }
  5957. ],
  5958. "description": "Common interface for HTTP clients",
  5959. "homepage": "https://github.com/php-fig/http-client",
  5960. "keywords": [
  5961. "http",
  5962. "http-client",
  5963. "psr",
  5964. "psr-18"
  5965. ],
  5966. "support": {
  5967. "source": "https://github.com/php-fig/http-client"
  5968. },
  5969. "time": "2023-09-23T14:17:50+00:00"
  5970. },
  5971. {
  5972. "name": "psr/http-factory",
  5973. "version": "1.1.0",
  5974. "source": {
  5975. "type": "git",
  5976. "url": "https://github.com/php-fig/http-factory.git",
  5977. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  5978. },
  5979. "dist": {
  5980. "type": "zip",
  5981. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5982. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5983. "shasum": ""
  5984. },
  5985. "require": {
  5986. "php": ">=7.1",
  5987. "psr/http-message": "^1.0 || ^2.0"
  5988. },
  5989. "type": "library",
  5990. "extra": {
  5991. "branch-alias": {
  5992. "dev-master": "1.0.x-dev"
  5993. }
  5994. },
  5995. "autoload": {
  5996. "psr-4": {
  5997. "Psr\\Http\\Message\\": "src/"
  5998. }
  5999. },
  6000. "notification-url": "https://packagist.org/downloads/",
  6001. "license": [
  6002. "MIT"
  6003. ],
  6004. "authors": [
  6005. {
  6006. "name": "PHP-FIG",
  6007. "homepage": "https://www.php-fig.org/"
  6008. }
  6009. ],
  6010. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  6011. "keywords": [
  6012. "factory",
  6013. "http",
  6014. "message",
  6015. "psr",
  6016. "psr-17",
  6017. "psr-7",
  6018. "request",
  6019. "response"
  6020. ],
  6021. "support": {
  6022. "source": "https://github.com/php-fig/http-factory"
  6023. },
  6024. "time": "2024-04-15T12:06:14+00:00"
  6025. },
  6026. {
  6027. "name": "psr/http-message",
  6028. "version": "2.0",
  6029. "source": {
  6030. "type": "git",
  6031. "url": "https://github.com/php-fig/http-message.git",
  6032. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  6033. },
  6034. "dist": {
  6035. "type": "zip",
  6036. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  6037. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  6038. "shasum": ""
  6039. },
  6040. "require": {
  6041. "php": "^7.2 || ^8.0"
  6042. },
  6043. "type": "library",
  6044. "extra": {
  6045. "branch-alias": {
  6046. "dev-master": "2.0.x-dev"
  6047. }
  6048. },
  6049. "autoload": {
  6050. "psr-4": {
  6051. "Psr\\Http\\Message\\": "src/"
  6052. }
  6053. },
  6054. "notification-url": "https://packagist.org/downloads/",
  6055. "license": [
  6056. "MIT"
  6057. ],
  6058. "authors": [
  6059. {
  6060. "name": "PHP-FIG",
  6061. "homepage": "https://www.php-fig.org/"
  6062. }
  6063. ],
  6064. "description": "Common interface for HTTP messages",
  6065. "homepage": "https://github.com/php-fig/http-message",
  6066. "keywords": [
  6067. "http",
  6068. "http-message",
  6069. "psr",
  6070. "psr-7",
  6071. "request",
  6072. "response"
  6073. ],
  6074. "support": {
  6075. "source": "https://github.com/php-fig/http-message/tree/2.0"
  6076. },
  6077. "time": "2023-04-04T09:54:51+00:00"
  6078. },
  6079. {
  6080. "name": "psr/log",
  6081. "version": "3.0.0",
  6082. "source": {
  6083. "type": "git",
  6084. "url": "https://github.com/php-fig/log.git",
  6085. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  6086. },
  6087. "dist": {
  6088. "type": "zip",
  6089. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  6090. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  6091. "shasum": ""
  6092. },
  6093. "require": {
  6094. "php": ">=8.0.0"
  6095. },
  6096. "type": "library",
  6097. "extra": {
  6098. "branch-alias": {
  6099. "dev-master": "3.x-dev"
  6100. }
  6101. },
  6102. "autoload": {
  6103. "psr-4": {
  6104. "Psr\\Log\\": "src"
  6105. }
  6106. },
  6107. "notification-url": "https://packagist.org/downloads/",
  6108. "license": [
  6109. "MIT"
  6110. ],
  6111. "authors": [
  6112. {
  6113. "name": "PHP-FIG",
  6114. "homepage": "https://www.php-fig.org/"
  6115. }
  6116. ],
  6117. "description": "Common interface for logging libraries",
  6118. "homepage": "https://github.com/php-fig/log",
  6119. "keywords": [
  6120. "log",
  6121. "psr",
  6122. "psr-3"
  6123. ],
  6124. "support": {
  6125. "source": "https://github.com/php-fig/log/tree/3.0.0"
  6126. },
  6127. "time": "2021-07-14T16:46:02+00:00"
  6128. },
  6129. {
  6130. "name": "psr/simple-cache",
  6131. "version": "3.0.0",
  6132. "source": {
  6133. "type": "git",
  6134. "url": "https://github.com/php-fig/simple-cache.git",
  6135. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  6136. },
  6137. "dist": {
  6138. "type": "zip",
  6139. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6140. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6141. "shasum": ""
  6142. },
  6143. "require": {
  6144. "php": ">=8.0.0"
  6145. },
  6146. "type": "library",
  6147. "extra": {
  6148. "branch-alias": {
  6149. "dev-master": "3.0.x-dev"
  6150. }
  6151. },
  6152. "autoload": {
  6153. "psr-4": {
  6154. "Psr\\SimpleCache\\": "src/"
  6155. }
  6156. },
  6157. "notification-url": "https://packagist.org/downloads/",
  6158. "license": [
  6159. "MIT"
  6160. ],
  6161. "authors": [
  6162. {
  6163. "name": "PHP-FIG",
  6164. "homepage": "https://www.php-fig.org/"
  6165. }
  6166. ],
  6167. "description": "Common interfaces for simple caching",
  6168. "keywords": [
  6169. "cache",
  6170. "caching",
  6171. "psr",
  6172. "psr-16",
  6173. "simple-cache"
  6174. ],
  6175. "support": {
  6176. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  6177. },
  6178. "time": "2021-10-29T13:26:27+00:00"
  6179. },
  6180. {
  6181. "name": "psy/psysh",
  6182. "version": "v0.12.4",
  6183. "source": {
  6184. "type": "git",
  6185. "url": "https://github.com/bobthecow/psysh.git",
  6186. "reference": "2fd717afa05341b4f8152547f142cd2f130f6818"
  6187. },
  6188. "dist": {
  6189. "type": "zip",
  6190. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/2fd717afa05341b4f8152547f142cd2f130f6818",
  6191. "reference": "2fd717afa05341b4f8152547f142cd2f130f6818",
  6192. "shasum": ""
  6193. },
  6194. "require": {
  6195. "ext-json": "*",
  6196. "ext-tokenizer": "*",
  6197. "nikic/php-parser": "^5.0 || ^4.0",
  6198. "php": "^8.0 || ^7.4",
  6199. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  6200. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  6201. },
  6202. "conflict": {
  6203. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  6204. },
  6205. "require-dev": {
  6206. "bamarni/composer-bin-plugin": "^1.2"
  6207. },
  6208. "suggest": {
  6209. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  6210. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  6211. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  6212. },
  6213. "bin": [
  6214. "bin/psysh"
  6215. ],
  6216. "type": "library",
  6217. "extra": {
  6218. "branch-alias": {
  6219. "dev-main": "0.12.x-dev"
  6220. },
  6221. "bamarni-bin": {
  6222. "bin-links": false,
  6223. "forward-command": false
  6224. }
  6225. },
  6226. "autoload": {
  6227. "files": [
  6228. "src/functions.php"
  6229. ],
  6230. "psr-4": {
  6231. "Psy\\": "src/"
  6232. }
  6233. },
  6234. "notification-url": "https://packagist.org/downloads/",
  6235. "license": [
  6236. "MIT"
  6237. ],
  6238. "authors": [
  6239. {
  6240. "name": "Justin Hileman",
  6241. "email": "justin@justinhileman.info",
  6242. "homepage": "http://justinhileman.com"
  6243. }
  6244. ],
  6245. "description": "An interactive shell for modern PHP.",
  6246. "homepage": "http://psysh.org",
  6247. "keywords": [
  6248. "REPL",
  6249. "console",
  6250. "interactive",
  6251. "shell"
  6252. ],
  6253. "support": {
  6254. "issues": "https://github.com/bobthecow/psysh/issues",
  6255. "source": "https://github.com/bobthecow/psysh/tree/v0.12.4"
  6256. },
  6257. "time": "2024-06-10T01:18:23+00:00"
  6258. },
  6259. {
  6260. "name": "ralouphie/getallheaders",
  6261. "version": "3.0.3",
  6262. "source": {
  6263. "type": "git",
  6264. "url": "https://github.com/ralouphie/getallheaders.git",
  6265. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  6266. },
  6267. "dist": {
  6268. "type": "zip",
  6269. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  6270. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  6271. "shasum": ""
  6272. },
  6273. "require": {
  6274. "php": ">=5.6"
  6275. },
  6276. "require-dev": {
  6277. "php-coveralls/php-coveralls": "^2.1",
  6278. "phpunit/phpunit": "^5 || ^6.5"
  6279. },
  6280. "type": "library",
  6281. "autoload": {
  6282. "files": [
  6283. "src/getallheaders.php"
  6284. ]
  6285. },
  6286. "notification-url": "https://packagist.org/downloads/",
  6287. "license": [
  6288. "MIT"
  6289. ],
  6290. "authors": [
  6291. {
  6292. "name": "Ralph Khattar",
  6293. "email": "ralph.khattar@gmail.com"
  6294. }
  6295. ],
  6296. "description": "A polyfill for getallheaders.",
  6297. "support": {
  6298. "issues": "https://github.com/ralouphie/getallheaders/issues",
  6299. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  6300. },
  6301. "time": "2019-03-08T08:55:37+00:00"
  6302. },
  6303. {
  6304. "name": "ramsey/collection",
  6305. "version": "2.0.0",
  6306. "source": {
  6307. "type": "git",
  6308. "url": "https://github.com/ramsey/collection.git",
  6309. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5"
  6310. },
  6311. "dist": {
  6312. "type": "zip",
  6313. "url": "https://api.github.com/repos/ramsey/collection/zipball/a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  6314. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  6315. "shasum": ""
  6316. },
  6317. "require": {
  6318. "php": "^8.1"
  6319. },
  6320. "require-dev": {
  6321. "captainhook/plugin-composer": "^5.3",
  6322. "ergebnis/composer-normalize": "^2.28.3",
  6323. "fakerphp/faker": "^1.21",
  6324. "hamcrest/hamcrest-php": "^2.0",
  6325. "jangregor/phpstan-prophecy": "^1.0",
  6326. "mockery/mockery": "^1.5",
  6327. "php-parallel-lint/php-console-highlighter": "^1.0",
  6328. "php-parallel-lint/php-parallel-lint": "^1.3",
  6329. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  6330. "phpspec/prophecy-phpunit": "^2.0",
  6331. "phpstan/extension-installer": "^1.2",
  6332. "phpstan/phpstan": "^1.9",
  6333. "phpstan/phpstan-mockery": "^1.1",
  6334. "phpstan/phpstan-phpunit": "^1.3",
  6335. "phpunit/phpunit": "^9.5",
  6336. "psalm/plugin-mockery": "^1.1",
  6337. "psalm/plugin-phpunit": "^0.18.4",
  6338. "ramsey/coding-standard": "^2.0.3",
  6339. "ramsey/conventional-commits": "^1.3",
  6340. "vimeo/psalm": "^5.4"
  6341. },
  6342. "type": "library",
  6343. "extra": {
  6344. "captainhook": {
  6345. "force-install": true
  6346. },
  6347. "ramsey/conventional-commits": {
  6348. "configFile": "conventional-commits.json"
  6349. }
  6350. },
  6351. "autoload": {
  6352. "psr-4": {
  6353. "Ramsey\\Collection\\": "src/"
  6354. }
  6355. },
  6356. "notification-url": "https://packagist.org/downloads/",
  6357. "license": [
  6358. "MIT"
  6359. ],
  6360. "authors": [
  6361. {
  6362. "name": "Ben Ramsey",
  6363. "email": "ben@benramsey.com",
  6364. "homepage": "https://benramsey.com"
  6365. }
  6366. ],
  6367. "description": "A PHP library for representing and manipulating collections.",
  6368. "keywords": [
  6369. "array",
  6370. "collection",
  6371. "hash",
  6372. "map",
  6373. "queue",
  6374. "set"
  6375. ],
  6376. "support": {
  6377. "issues": "https://github.com/ramsey/collection/issues",
  6378. "source": "https://github.com/ramsey/collection/tree/2.0.0"
  6379. },
  6380. "funding": [
  6381. {
  6382. "url": "https://github.com/ramsey",
  6383. "type": "github"
  6384. },
  6385. {
  6386. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  6387. "type": "tidelift"
  6388. }
  6389. ],
  6390. "time": "2022-12-31T21:50:55+00:00"
  6391. },
  6392. {
  6393. "name": "ramsey/uuid",
  6394. "version": "4.7.6",
  6395. "source": {
  6396. "type": "git",
  6397. "url": "https://github.com/ramsey/uuid.git",
  6398. "reference": "91039bc1faa45ba123c4328958e620d382ec7088"
  6399. },
  6400. "dist": {
  6401. "type": "zip",
  6402. "url": "https://api.github.com/repos/ramsey/uuid/zipball/91039bc1faa45ba123c4328958e620d382ec7088",
  6403. "reference": "91039bc1faa45ba123c4328958e620d382ec7088",
  6404. "shasum": ""
  6405. },
  6406. "require": {
  6407. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12",
  6408. "ext-json": "*",
  6409. "php": "^8.0",
  6410. "ramsey/collection": "^1.2 || ^2.0"
  6411. },
  6412. "replace": {
  6413. "rhumsaa/uuid": "self.version"
  6414. },
  6415. "require-dev": {
  6416. "captainhook/captainhook": "^5.10",
  6417. "captainhook/plugin-composer": "^5.3",
  6418. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  6419. "doctrine/annotations": "^1.8",
  6420. "ergebnis/composer-normalize": "^2.15",
  6421. "mockery/mockery": "^1.3",
  6422. "paragonie/random-lib": "^2",
  6423. "php-mock/php-mock": "^2.2",
  6424. "php-mock/php-mock-mockery": "^1.3",
  6425. "php-parallel-lint/php-parallel-lint": "^1.1",
  6426. "phpbench/phpbench": "^1.0",
  6427. "phpstan/extension-installer": "^1.1",
  6428. "phpstan/phpstan": "^1.8",
  6429. "phpstan/phpstan-mockery": "^1.1",
  6430. "phpstan/phpstan-phpunit": "^1.1",
  6431. "phpunit/phpunit": "^8.5 || ^9",
  6432. "ramsey/composer-repl": "^1.4",
  6433. "slevomat/coding-standard": "^8.4",
  6434. "squizlabs/php_codesniffer": "^3.5",
  6435. "vimeo/psalm": "^4.9"
  6436. },
  6437. "suggest": {
  6438. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  6439. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  6440. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  6441. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  6442. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  6443. },
  6444. "type": "library",
  6445. "extra": {
  6446. "captainhook": {
  6447. "force-install": true
  6448. }
  6449. },
  6450. "autoload": {
  6451. "files": [
  6452. "src/functions.php"
  6453. ],
  6454. "psr-4": {
  6455. "Ramsey\\Uuid\\": "src/"
  6456. }
  6457. },
  6458. "notification-url": "https://packagist.org/downloads/",
  6459. "license": [
  6460. "MIT"
  6461. ],
  6462. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  6463. "keywords": [
  6464. "guid",
  6465. "identifier",
  6466. "uuid"
  6467. ],
  6468. "support": {
  6469. "issues": "https://github.com/ramsey/uuid/issues",
  6470. "source": "https://github.com/ramsey/uuid/tree/4.7.6"
  6471. },
  6472. "funding": [
  6473. {
  6474. "url": "https://github.com/ramsey",
  6475. "type": "github"
  6476. },
  6477. {
  6478. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  6479. "type": "tidelift"
  6480. }
  6481. ],
  6482. "time": "2024-04-27T21:32:50+00:00"
  6483. },
  6484. {
  6485. "name": "ryangjchandler/blade-capture-directive",
  6486. "version": "v1.0.0",
  6487. "source": {
  6488. "type": "git",
  6489. "url": "https://github.com/ryangjchandler/blade-capture-directive.git",
  6490. "reference": "cb6f58663d97f17bece176295240b740835e14f1"
  6491. },
  6492. "dist": {
  6493. "type": "zip",
  6494. "url": "https://api.github.com/repos/ryangjchandler/blade-capture-directive/zipball/cb6f58663d97f17bece176295240b740835e14f1",
  6495. "reference": "cb6f58663d97f17bece176295240b740835e14f1",
  6496. "shasum": ""
  6497. },
  6498. "require": {
  6499. "illuminate/contracts": "^10.0|^11.0",
  6500. "php": "^8.1",
  6501. "spatie/laravel-package-tools": "^1.9.2"
  6502. },
  6503. "require-dev": {
  6504. "nunomaduro/collision": "^7.0|^8.0",
  6505. "nunomaduro/larastan": "^2.0",
  6506. "orchestra/testbench": "^8.0|^9.0",
  6507. "pestphp/pest": "^2.0",
  6508. "pestphp/pest-plugin-laravel": "^2.0",
  6509. "phpstan/extension-installer": "^1.1",
  6510. "phpstan/phpstan-deprecation-rules": "^1.0",
  6511. "phpstan/phpstan-phpunit": "^1.0",
  6512. "phpunit/phpunit": "^10.0",
  6513. "spatie/laravel-ray": "^1.26"
  6514. },
  6515. "type": "library",
  6516. "extra": {
  6517. "laravel": {
  6518. "providers": [
  6519. "RyanChandler\\BladeCaptureDirective\\BladeCaptureDirectiveServiceProvider"
  6520. ],
  6521. "aliases": {
  6522. "BladeCaptureDirective": "RyanChandler\\BladeCaptureDirective\\Facades\\BladeCaptureDirective"
  6523. }
  6524. }
  6525. },
  6526. "autoload": {
  6527. "psr-4": {
  6528. "RyanChandler\\BladeCaptureDirective\\": "src",
  6529. "RyanChandler\\BladeCaptureDirective\\Database\\Factories\\": "database/factories"
  6530. }
  6531. },
  6532. "notification-url": "https://packagist.org/downloads/",
  6533. "license": [
  6534. "MIT"
  6535. ],
  6536. "authors": [
  6537. {
  6538. "name": "Ryan Chandler",
  6539. "email": "support@ryangjchandler.co.uk",
  6540. "role": "Developer"
  6541. }
  6542. ],
  6543. "description": "Create inline partials in your Blade templates with ease.",
  6544. "homepage": "https://github.com/ryangjchandler/blade-capture-directive",
  6545. "keywords": [
  6546. "blade-capture-directive",
  6547. "laravel",
  6548. "ryangjchandler"
  6549. ],
  6550. "support": {
  6551. "issues": "https://github.com/ryangjchandler/blade-capture-directive/issues",
  6552. "source": "https://github.com/ryangjchandler/blade-capture-directive/tree/v1.0.0"
  6553. },
  6554. "funding": [
  6555. {
  6556. "url": "https://github.com/ryangjchandler",
  6557. "type": "github"
  6558. }
  6559. ],
  6560. "time": "2024-02-26T18:08:49+00:00"
  6561. },
  6562. {
  6563. "name": "sabberworm/php-css-parser",
  6564. "version": "v8.5.1",
  6565. "source": {
  6566. "type": "git",
  6567. "url": "https://github.com/MyIntervals/PHP-CSS-Parser.git",
  6568. "reference": "4a3d572b0f8b28bb6fd016ae8bbfc445facef152"
  6569. },
  6570. "dist": {
  6571. "type": "zip",
  6572. "url": "https://api.github.com/repos/MyIntervals/PHP-CSS-Parser/zipball/4a3d572b0f8b28bb6fd016ae8bbfc445facef152",
  6573. "reference": "4a3d572b0f8b28bb6fd016ae8bbfc445facef152",
  6574. "shasum": ""
  6575. },
  6576. "require": {
  6577. "ext-iconv": "*",
  6578. "php": ">=5.6.20"
  6579. },
  6580. "require-dev": {
  6581. "phpunit/phpunit": "^5.7.27"
  6582. },
  6583. "suggest": {
  6584. "ext-mbstring": "for parsing UTF-8 CSS"
  6585. },
  6586. "type": "library",
  6587. "extra": {
  6588. "branch-alias": {
  6589. "dev-main": "9.0.x-dev"
  6590. }
  6591. },
  6592. "autoload": {
  6593. "psr-4": {
  6594. "Sabberworm\\CSS\\": "src/"
  6595. }
  6596. },
  6597. "notification-url": "https://packagist.org/downloads/",
  6598. "license": [
  6599. "MIT"
  6600. ],
  6601. "authors": [
  6602. {
  6603. "name": "Raphael Schweikert"
  6604. },
  6605. {
  6606. "name": "Oliver Klee",
  6607. "email": "github@oliverklee.de"
  6608. },
  6609. {
  6610. "name": "Jake Hotson",
  6611. "email": "jake.github@qzdesign.co.uk"
  6612. }
  6613. ],
  6614. "description": "Parser for CSS Files written in PHP",
  6615. "homepage": "https://www.sabberworm.com/blog/2010/6/10/php-css-parser",
  6616. "keywords": [
  6617. "css",
  6618. "parser",
  6619. "stylesheet"
  6620. ],
  6621. "support": {
  6622. "issues": "https://github.com/MyIntervals/PHP-CSS-Parser/issues",
  6623. "source": "https://github.com/MyIntervals/PHP-CSS-Parser/tree/v8.5.1"
  6624. },
  6625. "time": "2024-02-15T16:41:13+00:00"
  6626. },
  6627. {
  6628. "name": "spatie/color",
  6629. "version": "1.5.3",
  6630. "source": {
  6631. "type": "git",
  6632. "url": "https://github.com/spatie/color.git",
  6633. "reference": "49739265900cabce4640cd26c3266fd8d2cca390"
  6634. },
  6635. "dist": {
  6636. "type": "zip",
  6637. "url": "https://api.github.com/repos/spatie/color/zipball/49739265900cabce4640cd26c3266fd8d2cca390",
  6638. "reference": "49739265900cabce4640cd26c3266fd8d2cca390",
  6639. "shasum": ""
  6640. },
  6641. "require": {
  6642. "php": "^7.3|^8.0"
  6643. },
  6644. "require-dev": {
  6645. "pestphp/pest": "^1.22",
  6646. "phpunit/phpunit": "^6.5||^9.0"
  6647. },
  6648. "type": "library",
  6649. "autoload": {
  6650. "psr-4": {
  6651. "Spatie\\Color\\": "src"
  6652. }
  6653. },
  6654. "notification-url": "https://packagist.org/downloads/",
  6655. "license": [
  6656. "MIT"
  6657. ],
  6658. "authors": [
  6659. {
  6660. "name": "Sebastian De Deyne",
  6661. "email": "sebastian@spatie.be",
  6662. "homepage": "https://spatie.be",
  6663. "role": "Developer"
  6664. }
  6665. ],
  6666. "description": "A little library to handle color conversions",
  6667. "homepage": "https://github.com/spatie/color",
  6668. "keywords": [
  6669. "color",
  6670. "conversion",
  6671. "rgb",
  6672. "spatie"
  6673. ],
  6674. "support": {
  6675. "issues": "https://github.com/spatie/color/issues",
  6676. "source": "https://github.com/spatie/color/tree/1.5.3"
  6677. },
  6678. "funding": [
  6679. {
  6680. "url": "https://github.com/spatie",
  6681. "type": "github"
  6682. }
  6683. ],
  6684. "time": "2022-12-18T12:58:32+00:00"
  6685. },
  6686. {
  6687. "name": "spatie/invade",
  6688. "version": "2.1.0",
  6689. "source": {
  6690. "type": "git",
  6691. "url": "https://github.com/spatie/invade.git",
  6692. "reference": "b920f6411d21df4e8610a138e2e87ae4957d7f63"
  6693. },
  6694. "dist": {
  6695. "type": "zip",
  6696. "url": "https://api.github.com/repos/spatie/invade/zipball/b920f6411d21df4e8610a138e2e87ae4957d7f63",
  6697. "reference": "b920f6411d21df4e8610a138e2e87ae4957d7f63",
  6698. "shasum": ""
  6699. },
  6700. "require": {
  6701. "php": "^8.0"
  6702. },
  6703. "require-dev": {
  6704. "pestphp/pest": "^1.20",
  6705. "phpstan/phpstan": "^1.4",
  6706. "spatie/ray": "^1.28"
  6707. },
  6708. "type": "library",
  6709. "autoload": {
  6710. "files": [
  6711. "src/functions.php"
  6712. ],
  6713. "psr-4": {
  6714. "Spatie\\Invade\\": "src"
  6715. }
  6716. },
  6717. "notification-url": "https://packagist.org/downloads/",
  6718. "license": [
  6719. "MIT"
  6720. ],
  6721. "authors": [
  6722. {
  6723. "name": "Freek Van der Herten",
  6724. "email": "freek@spatie.be",
  6725. "role": "Developer"
  6726. }
  6727. ],
  6728. "description": "A PHP function to work with private properties and methods",
  6729. "homepage": "https://github.com/spatie/invade",
  6730. "keywords": [
  6731. "invade",
  6732. "spatie"
  6733. ],
  6734. "support": {
  6735. "source": "https://github.com/spatie/invade/tree/2.1.0"
  6736. },
  6737. "funding": [
  6738. {
  6739. "url": "https://github.com/spatie",
  6740. "type": "github"
  6741. }
  6742. ],
  6743. "time": "2024-05-17T09:06:10+00:00"
  6744. },
  6745. {
  6746. "name": "spatie/laravel-package-tools",
  6747. "version": "1.16.4",
  6748. "source": {
  6749. "type": "git",
  6750. "url": "https://github.com/spatie/laravel-package-tools.git",
  6751. "reference": "ddf678e78d7f8b17e5cdd99c0c3413a4a6592e53"
  6752. },
  6753. "dist": {
  6754. "type": "zip",
  6755. "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/ddf678e78d7f8b17e5cdd99c0c3413a4a6592e53",
  6756. "reference": "ddf678e78d7f8b17e5cdd99c0c3413a4a6592e53",
  6757. "shasum": ""
  6758. },
  6759. "require": {
  6760. "illuminate/contracts": "^9.28|^10.0|^11.0",
  6761. "php": "^8.0"
  6762. },
  6763. "require-dev": {
  6764. "mockery/mockery": "^1.5",
  6765. "orchestra/testbench": "^7.7|^8.0",
  6766. "pestphp/pest": "^1.22",
  6767. "phpunit/phpunit": "^9.5.24",
  6768. "spatie/pest-plugin-test-time": "^1.1"
  6769. },
  6770. "type": "library",
  6771. "autoload": {
  6772. "psr-4": {
  6773. "Spatie\\LaravelPackageTools\\": "src"
  6774. }
  6775. },
  6776. "notification-url": "https://packagist.org/downloads/",
  6777. "license": [
  6778. "MIT"
  6779. ],
  6780. "authors": [
  6781. {
  6782. "name": "Freek Van der Herten",
  6783. "email": "freek@spatie.be",
  6784. "role": "Developer"
  6785. }
  6786. ],
  6787. "description": "Tools for creating Laravel packages",
  6788. "homepage": "https://github.com/spatie/laravel-package-tools",
  6789. "keywords": [
  6790. "laravel-package-tools",
  6791. "spatie"
  6792. ],
  6793. "support": {
  6794. "issues": "https://github.com/spatie/laravel-package-tools/issues",
  6795. "source": "https://github.com/spatie/laravel-package-tools/tree/1.16.4"
  6796. },
  6797. "funding": [
  6798. {
  6799. "url": "https://github.com/spatie",
  6800. "type": "github"
  6801. }
  6802. ],
  6803. "time": "2024-03-20T07:29:11+00:00"
  6804. },
  6805. {
  6806. "name": "squirephp/model",
  6807. "version": "v3.5.0",
  6808. "source": {
  6809. "type": "git",
  6810. "url": "https://github.com/squirephp/model.git",
  6811. "reference": "9faa567a39c3ceb31db79c5bec81a5ee89a233ce"
  6812. },
  6813. "dist": {
  6814. "type": "zip",
  6815. "url": "https://api.github.com/repos/squirephp/model/zipball/9faa567a39c3ceb31db79c5bec81a5ee89a233ce",
  6816. "reference": "9faa567a39c3ceb31db79c5bec81a5ee89a233ce",
  6817. "shasum": ""
  6818. },
  6819. "require": {
  6820. "ext-pdo_sqlite": "*",
  6821. "illuminate/database": "^8.40|^9.0|^10.0|^11.0",
  6822. "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
  6823. "php": "^8.0"
  6824. },
  6825. "type": "library",
  6826. "extra": {
  6827. "laravel": {
  6828. "providers": [
  6829. "Squire\\ModelServiceProvider"
  6830. ]
  6831. }
  6832. },
  6833. "autoload": {
  6834. "psr-4": {
  6835. "Squire\\": "src"
  6836. }
  6837. },
  6838. "notification-url": "https://packagist.org/downloads/",
  6839. "license": [
  6840. "MIT"
  6841. ],
  6842. "authors": [
  6843. {
  6844. "name": "Dan Harrin",
  6845. "email": "dan@danharrin.com"
  6846. }
  6847. ],
  6848. "description": "A library containing the base Squire model class.",
  6849. "homepage": "https://github.com/squirephp",
  6850. "keywords": [
  6851. "squire"
  6852. ],
  6853. "support": {
  6854. "issues": "https://github.com/squirephp/squire/issues",
  6855. "source": "https://github.com/squirephp/squire"
  6856. },
  6857. "time": "2024-03-11T11:06:10+00:00"
  6858. },
  6859. {
  6860. "name": "squirephp/repository",
  6861. "version": "v3.5.0",
  6862. "source": {
  6863. "type": "git",
  6864. "url": "https://github.com/squirephp/repository.git",
  6865. "reference": "c7cf78011f32904905638f4689975cbbbc78501c"
  6866. },
  6867. "dist": {
  6868. "type": "zip",
  6869. "url": "https://api.github.com/repos/squirephp/repository/zipball/c7cf78011f32904905638f4689975cbbbc78501c",
  6870. "reference": "c7cf78011f32904905638f4689975cbbbc78501c",
  6871. "shasum": ""
  6872. },
  6873. "require": {
  6874. "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
  6875. "php": "^8.0"
  6876. },
  6877. "type": "library",
  6878. "extra": {
  6879. "laravel": {
  6880. "providers": [
  6881. "Squire\\RepositoryServiceProvider"
  6882. ],
  6883. "aliases": {
  6884. "RepositoryManager": "Squire\\Repository\\Facades\\Repository"
  6885. }
  6886. }
  6887. },
  6888. "autoload": {
  6889. "psr-4": {
  6890. "Squire\\": "src"
  6891. }
  6892. },
  6893. "notification-url": "https://packagist.org/downloads/",
  6894. "license": [
  6895. "MIT"
  6896. ],
  6897. "authors": [
  6898. {
  6899. "name": "Dan Harrin",
  6900. "email": "dan@danharrin.com"
  6901. }
  6902. ],
  6903. "description": "A library containing the Squire repository.",
  6904. "homepage": "https://github.com/squirephp",
  6905. "keywords": [
  6906. "squire"
  6907. ],
  6908. "support": {
  6909. "issues": "https://github.com/squirephp/squire/issues",
  6910. "source": "https://github.com/squirephp/squire"
  6911. },
  6912. "time": "2024-03-11T11:06:10+00:00"
  6913. },
  6914. {
  6915. "name": "symfony/clock",
  6916. "version": "v7.1.1",
  6917. "source": {
  6918. "type": "git",
  6919. "url": "https://github.com/symfony/clock.git",
  6920. "reference": "3dfc8b084853586de51dd1441c6242c76a28cbe7"
  6921. },
  6922. "dist": {
  6923. "type": "zip",
  6924. "url": "https://api.github.com/repos/symfony/clock/zipball/3dfc8b084853586de51dd1441c6242c76a28cbe7",
  6925. "reference": "3dfc8b084853586de51dd1441c6242c76a28cbe7",
  6926. "shasum": ""
  6927. },
  6928. "require": {
  6929. "php": ">=8.2",
  6930. "psr/clock": "^1.0",
  6931. "symfony/polyfill-php83": "^1.28"
  6932. },
  6933. "provide": {
  6934. "psr/clock-implementation": "1.0"
  6935. },
  6936. "type": "library",
  6937. "autoload": {
  6938. "files": [
  6939. "Resources/now.php"
  6940. ],
  6941. "psr-4": {
  6942. "Symfony\\Component\\Clock\\": ""
  6943. },
  6944. "exclude-from-classmap": [
  6945. "/Tests/"
  6946. ]
  6947. },
  6948. "notification-url": "https://packagist.org/downloads/",
  6949. "license": [
  6950. "MIT"
  6951. ],
  6952. "authors": [
  6953. {
  6954. "name": "Nicolas Grekas",
  6955. "email": "p@tchwork.com"
  6956. },
  6957. {
  6958. "name": "Symfony Community",
  6959. "homepage": "https://symfony.com/contributors"
  6960. }
  6961. ],
  6962. "description": "Decouples applications from the system clock",
  6963. "homepage": "https://symfony.com",
  6964. "keywords": [
  6965. "clock",
  6966. "psr20",
  6967. "time"
  6968. ],
  6969. "support": {
  6970. "source": "https://github.com/symfony/clock/tree/v7.1.1"
  6971. },
  6972. "funding": [
  6973. {
  6974. "url": "https://symfony.com/sponsor",
  6975. "type": "custom"
  6976. },
  6977. {
  6978. "url": "https://github.com/fabpot",
  6979. "type": "github"
  6980. },
  6981. {
  6982. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6983. "type": "tidelift"
  6984. }
  6985. ],
  6986. "time": "2024-05-31T14:57:53+00:00"
  6987. },
  6988. {
  6989. "name": "symfony/console",
  6990. "version": "v7.1.1",
  6991. "source": {
  6992. "type": "git",
  6993. "url": "https://github.com/symfony/console.git",
  6994. "reference": "9b008f2d7b21c74ef4d0c3de6077a642bc55ece3"
  6995. },
  6996. "dist": {
  6997. "type": "zip",
  6998. "url": "https://api.github.com/repos/symfony/console/zipball/9b008f2d7b21c74ef4d0c3de6077a642bc55ece3",
  6999. "reference": "9b008f2d7b21c74ef4d0c3de6077a642bc55ece3",
  7000. "shasum": ""
  7001. },
  7002. "require": {
  7003. "php": ">=8.2",
  7004. "symfony/polyfill-mbstring": "~1.0",
  7005. "symfony/service-contracts": "^2.5|^3",
  7006. "symfony/string": "^6.4|^7.0"
  7007. },
  7008. "conflict": {
  7009. "symfony/dependency-injection": "<6.4",
  7010. "symfony/dotenv": "<6.4",
  7011. "symfony/event-dispatcher": "<6.4",
  7012. "symfony/lock": "<6.4",
  7013. "symfony/process": "<6.4"
  7014. },
  7015. "provide": {
  7016. "psr/log-implementation": "1.0|2.0|3.0"
  7017. },
  7018. "require-dev": {
  7019. "psr/log": "^1|^2|^3",
  7020. "symfony/config": "^6.4|^7.0",
  7021. "symfony/dependency-injection": "^6.4|^7.0",
  7022. "symfony/event-dispatcher": "^6.4|^7.0",
  7023. "symfony/http-foundation": "^6.4|^7.0",
  7024. "symfony/http-kernel": "^6.4|^7.0",
  7025. "symfony/lock": "^6.4|^7.0",
  7026. "symfony/messenger": "^6.4|^7.0",
  7027. "symfony/process": "^6.4|^7.0",
  7028. "symfony/stopwatch": "^6.4|^7.0",
  7029. "symfony/var-dumper": "^6.4|^7.0"
  7030. },
  7031. "type": "library",
  7032. "autoload": {
  7033. "psr-4": {
  7034. "Symfony\\Component\\Console\\": ""
  7035. },
  7036. "exclude-from-classmap": [
  7037. "/Tests/"
  7038. ]
  7039. },
  7040. "notification-url": "https://packagist.org/downloads/",
  7041. "license": [
  7042. "MIT"
  7043. ],
  7044. "authors": [
  7045. {
  7046. "name": "Fabien Potencier",
  7047. "email": "fabien@symfony.com"
  7048. },
  7049. {
  7050. "name": "Symfony Community",
  7051. "homepage": "https://symfony.com/contributors"
  7052. }
  7053. ],
  7054. "description": "Eases the creation of beautiful and testable command line interfaces",
  7055. "homepage": "https://symfony.com",
  7056. "keywords": [
  7057. "cli",
  7058. "command-line",
  7059. "console",
  7060. "terminal"
  7061. ],
  7062. "support": {
  7063. "source": "https://github.com/symfony/console/tree/v7.1.1"
  7064. },
  7065. "funding": [
  7066. {
  7067. "url": "https://symfony.com/sponsor",
  7068. "type": "custom"
  7069. },
  7070. {
  7071. "url": "https://github.com/fabpot",
  7072. "type": "github"
  7073. },
  7074. {
  7075. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7076. "type": "tidelift"
  7077. }
  7078. ],
  7079. "time": "2024-05-31T14:57:53+00:00"
  7080. },
  7081. {
  7082. "name": "symfony/css-selector",
  7083. "version": "v7.1.1",
  7084. "source": {
  7085. "type": "git",
  7086. "url": "https://github.com/symfony/css-selector.git",
  7087. "reference": "1c7cee86c6f812896af54434f8ce29c8d94f9ff4"
  7088. },
  7089. "dist": {
  7090. "type": "zip",
  7091. "url": "https://api.github.com/repos/symfony/css-selector/zipball/1c7cee86c6f812896af54434f8ce29c8d94f9ff4",
  7092. "reference": "1c7cee86c6f812896af54434f8ce29c8d94f9ff4",
  7093. "shasum": ""
  7094. },
  7095. "require": {
  7096. "php": ">=8.2"
  7097. },
  7098. "type": "library",
  7099. "autoload": {
  7100. "psr-4": {
  7101. "Symfony\\Component\\CssSelector\\": ""
  7102. },
  7103. "exclude-from-classmap": [
  7104. "/Tests/"
  7105. ]
  7106. },
  7107. "notification-url": "https://packagist.org/downloads/",
  7108. "license": [
  7109. "MIT"
  7110. ],
  7111. "authors": [
  7112. {
  7113. "name": "Fabien Potencier",
  7114. "email": "fabien@symfony.com"
  7115. },
  7116. {
  7117. "name": "Jean-François Simon",
  7118. "email": "jeanfrancois.simon@sensiolabs.com"
  7119. },
  7120. {
  7121. "name": "Symfony Community",
  7122. "homepage": "https://symfony.com/contributors"
  7123. }
  7124. ],
  7125. "description": "Converts CSS selectors to XPath expressions",
  7126. "homepage": "https://symfony.com",
  7127. "support": {
  7128. "source": "https://github.com/symfony/css-selector/tree/v7.1.1"
  7129. },
  7130. "funding": [
  7131. {
  7132. "url": "https://symfony.com/sponsor",
  7133. "type": "custom"
  7134. },
  7135. {
  7136. "url": "https://github.com/fabpot",
  7137. "type": "github"
  7138. },
  7139. {
  7140. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7141. "type": "tidelift"
  7142. }
  7143. ],
  7144. "time": "2024-05-31T14:57:53+00:00"
  7145. },
  7146. {
  7147. "name": "symfony/deprecation-contracts",
  7148. "version": "v3.5.0",
  7149. "source": {
  7150. "type": "git",
  7151. "url": "https://github.com/symfony/deprecation-contracts.git",
  7152. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
  7153. },
  7154. "dist": {
  7155. "type": "zip",
  7156. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  7157. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  7158. "shasum": ""
  7159. },
  7160. "require": {
  7161. "php": ">=8.1"
  7162. },
  7163. "type": "library",
  7164. "extra": {
  7165. "branch-alias": {
  7166. "dev-main": "3.5-dev"
  7167. },
  7168. "thanks": {
  7169. "name": "symfony/contracts",
  7170. "url": "https://github.com/symfony/contracts"
  7171. }
  7172. },
  7173. "autoload": {
  7174. "files": [
  7175. "function.php"
  7176. ]
  7177. },
  7178. "notification-url": "https://packagist.org/downloads/",
  7179. "license": [
  7180. "MIT"
  7181. ],
  7182. "authors": [
  7183. {
  7184. "name": "Nicolas Grekas",
  7185. "email": "p@tchwork.com"
  7186. },
  7187. {
  7188. "name": "Symfony Community",
  7189. "homepage": "https://symfony.com/contributors"
  7190. }
  7191. ],
  7192. "description": "A generic function and convention to trigger deprecation notices",
  7193. "homepage": "https://symfony.com",
  7194. "support": {
  7195. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
  7196. },
  7197. "funding": [
  7198. {
  7199. "url": "https://symfony.com/sponsor",
  7200. "type": "custom"
  7201. },
  7202. {
  7203. "url": "https://github.com/fabpot",
  7204. "type": "github"
  7205. },
  7206. {
  7207. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7208. "type": "tidelift"
  7209. }
  7210. ],
  7211. "time": "2024-04-18T09:32:20+00:00"
  7212. },
  7213. {
  7214. "name": "symfony/error-handler",
  7215. "version": "v7.1.1",
  7216. "source": {
  7217. "type": "git",
  7218. "url": "https://github.com/symfony/error-handler.git",
  7219. "reference": "e9b8bbce0b4f322939332ab7b6b81d8c11da27dd"
  7220. },
  7221. "dist": {
  7222. "type": "zip",
  7223. "url": "https://api.github.com/repos/symfony/error-handler/zipball/e9b8bbce0b4f322939332ab7b6b81d8c11da27dd",
  7224. "reference": "e9b8bbce0b4f322939332ab7b6b81d8c11da27dd",
  7225. "shasum": ""
  7226. },
  7227. "require": {
  7228. "php": ">=8.2",
  7229. "psr/log": "^1|^2|^3",
  7230. "symfony/var-dumper": "^6.4|^7.0"
  7231. },
  7232. "conflict": {
  7233. "symfony/deprecation-contracts": "<2.5",
  7234. "symfony/http-kernel": "<6.4"
  7235. },
  7236. "require-dev": {
  7237. "symfony/deprecation-contracts": "^2.5|^3",
  7238. "symfony/http-kernel": "^6.4|^7.0",
  7239. "symfony/serializer": "^6.4|^7.0"
  7240. },
  7241. "bin": [
  7242. "Resources/bin/patch-type-declarations"
  7243. ],
  7244. "type": "library",
  7245. "autoload": {
  7246. "psr-4": {
  7247. "Symfony\\Component\\ErrorHandler\\": ""
  7248. },
  7249. "exclude-from-classmap": [
  7250. "/Tests/"
  7251. ]
  7252. },
  7253. "notification-url": "https://packagist.org/downloads/",
  7254. "license": [
  7255. "MIT"
  7256. ],
  7257. "authors": [
  7258. {
  7259. "name": "Fabien Potencier",
  7260. "email": "fabien@symfony.com"
  7261. },
  7262. {
  7263. "name": "Symfony Community",
  7264. "homepage": "https://symfony.com/contributors"
  7265. }
  7266. ],
  7267. "description": "Provides tools to manage errors and ease debugging PHP code",
  7268. "homepage": "https://symfony.com",
  7269. "support": {
  7270. "source": "https://github.com/symfony/error-handler/tree/v7.1.1"
  7271. },
  7272. "funding": [
  7273. {
  7274. "url": "https://symfony.com/sponsor",
  7275. "type": "custom"
  7276. },
  7277. {
  7278. "url": "https://github.com/fabpot",
  7279. "type": "github"
  7280. },
  7281. {
  7282. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7283. "type": "tidelift"
  7284. }
  7285. ],
  7286. "time": "2024-05-31T14:57:53+00:00"
  7287. },
  7288. {
  7289. "name": "symfony/event-dispatcher",
  7290. "version": "v7.1.1",
  7291. "source": {
  7292. "type": "git",
  7293. "url": "https://github.com/symfony/event-dispatcher.git",
  7294. "reference": "9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7"
  7295. },
  7296. "dist": {
  7297. "type": "zip",
  7298. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7",
  7299. "reference": "9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7",
  7300. "shasum": ""
  7301. },
  7302. "require": {
  7303. "php": ">=8.2",
  7304. "symfony/event-dispatcher-contracts": "^2.5|^3"
  7305. },
  7306. "conflict": {
  7307. "symfony/dependency-injection": "<6.4",
  7308. "symfony/service-contracts": "<2.5"
  7309. },
  7310. "provide": {
  7311. "psr/event-dispatcher-implementation": "1.0",
  7312. "symfony/event-dispatcher-implementation": "2.0|3.0"
  7313. },
  7314. "require-dev": {
  7315. "psr/log": "^1|^2|^3",
  7316. "symfony/config": "^6.4|^7.0",
  7317. "symfony/dependency-injection": "^6.4|^7.0",
  7318. "symfony/error-handler": "^6.4|^7.0",
  7319. "symfony/expression-language": "^6.4|^7.0",
  7320. "symfony/http-foundation": "^6.4|^7.0",
  7321. "symfony/service-contracts": "^2.5|^3",
  7322. "symfony/stopwatch": "^6.4|^7.0"
  7323. },
  7324. "type": "library",
  7325. "autoload": {
  7326. "psr-4": {
  7327. "Symfony\\Component\\EventDispatcher\\": ""
  7328. },
  7329. "exclude-from-classmap": [
  7330. "/Tests/"
  7331. ]
  7332. },
  7333. "notification-url": "https://packagist.org/downloads/",
  7334. "license": [
  7335. "MIT"
  7336. ],
  7337. "authors": [
  7338. {
  7339. "name": "Fabien Potencier",
  7340. "email": "fabien@symfony.com"
  7341. },
  7342. {
  7343. "name": "Symfony Community",
  7344. "homepage": "https://symfony.com/contributors"
  7345. }
  7346. ],
  7347. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  7348. "homepage": "https://symfony.com",
  7349. "support": {
  7350. "source": "https://github.com/symfony/event-dispatcher/tree/v7.1.1"
  7351. },
  7352. "funding": [
  7353. {
  7354. "url": "https://symfony.com/sponsor",
  7355. "type": "custom"
  7356. },
  7357. {
  7358. "url": "https://github.com/fabpot",
  7359. "type": "github"
  7360. },
  7361. {
  7362. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7363. "type": "tidelift"
  7364. }
  7365. ],
  7366. "time": "2024-05-31T14:57:53+00:00"
  7367. },
  7368. {
  7369. "name": "symfony/event-dispatcher-contracts",
  7370. "version": "v3.5.0",
  7371. "source": {
  7372. "type": "git",
  7373. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  7374. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50"
  7375. },
  7376. "dist": {
  7377. "type": "zip",
  7378. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50",
  7379. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
  7380. "shasum": ""
  7381. },
  7382. "require": {
  7383. "php": ">=8.1",
  7384. "psr/event-dispatcher": "^1"
  7385. },
  7386. "type": "library",
  7387. "extra": {
  7388. "branch-alias": {
  7389. "dev-main": "3.5-dev"
  7390. },
  7391. "thanks": {
  7392. "name": "symfony/contracts",
  7393. "url": "https://github.com/symfony/contracts"
  7394. }
  7395. },
  7396. "autoload": {
  7397. "psr-4": {
  7398. "Symfony\\Contracts\\EventDispatcher\\": ""
  7399. }
  7400. },
  7401. "notification-url": "https://packagist.org/downloads/",
  7402. "license": [
  7403. "MIT"
  7404. ],
  7405. "authors": [
  7406. {
  7407. "name": "Nicolas Grekas",
  7408. "email": "p@tchwork.com"
  7409. },
  7410. {
  7411. "name": "Symfony Community",
  7412. "homepage": "https://symfony.com/contributors"
  7413. }
  7414. ],
  7415. "description": "Generic abstractions related to dispatching event",
  7416. "homepage": "https://symfony.com",
  7417. "keywords": [
  7418. "abstractions",
  7419. "contracts",
  7420. "decoupling",
  7421. "interfaces",
  7422. "interoperability",
  7423. "standards"
  7424. ],
  7425. "support": {
  7426. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0"
  7427. },
  7428. "funding": [
  7429. {
  7430. "url": "https://symfony.com/sponsor",
  7431. "type": "custom"
  7432. },
  7433. {
  7434. "url": "https://github.com/fabpot",
  7435. "type": "github"
  7436. },
  7437. {
  7438. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7439. "type": "tidelift"
  7440. }
  7441. ],
  7442. "time": "2024-04-18T09:32:20+00:00"
  7443. },
  7444. {
  7445. "name": "symfony/finder",
  7446. "version": "v7.1.1",
  7447. "source": {
  7448. "type": "git",
  7449. "url": "https://github.com/symfony/finder.git",
  7450. "reference": "fbb0ba67688b780efbc886c1a0a0948dcf7205d6"
  7451. },
  7452. "dist": {
  7453. "type": "zip",
  7454. "url": "https://api.github.com/repos/symfony/finder/zipball/fbb0ba67688b780efbc886c1a0a0948dcf7205d6",
  7455. "reference": "fbb0ba67688b780efbc886c1a0a0948dcf7205d6",
  7456. "shasum": ""
  7457. },
  7458. "require": {
  7459. "php": ">=8.2"
  7460. },
  7461. "require-dev": {
  7462. "symfony/filesystem": "^6.4|^7.0"
  7463. },
  7464. "type": "library",
  7465. "autoload": {
  7466. "psr-4": {
  7467. "Symfony\\Component\\Finder\\": ""
  7468. },
  7469. "exclude-from-classmap": [
  7470. "/Tests/"
  7471. ]
  7472. },
  7473. "notification-url": "https://packagist.org/downloads/",
  7474. "license": [
  7475. "MIT"
  7476. ],
  7477. "authors": [
  7478. {
  7479. "name": "Fabien Potencier",
  7480. "email": "fabien@symfony.com"
  7481. },
  7482. {
  7483. "name": "Symfony Community",
  7484. "homepage": "https://symfony.com/contributors"
  7485. }
  7486. ],
  7487. "description": "Finds files and directories via an intuitive fluent interface",
  7488. "homepage": "https://symfony.com",
  7489. "support": {
  7490. "source": "https://github.com/symfony/finder/tree/v7.1.1"
  7491. },
  7492. "funding": [
  7493. {
  7494. "url": "https://symfony.com/sponsor",
  7495. "type": "custom"
  7496. },
  7497. {
  7498. "url": "https://github.com/fabpot",
  7499. "type": "github"
  7500. },
  7501. {
  7502. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7503. "type": "tidelift"
  7504. }
  7505. ],
  7506. "time": "2024-05-31T14:57:53+00:00"
  7507. },
  7508. {
  7509. "name": "symfony/html-sanitizer",
  7510. "version": "v7.1.1",
  7511. "source": {
  7512. "type": "git",
  7513. "url": "https://github.com/symfony/html-sanitizer.git",
  7514. "reference": "737cbaa8082b696d0574afd91b9f471eca67fc65"
  7515. },
  7516. "dist": {
  7517. "type": "zip",
  7518. "url": "https://api.github.com/repos/symfony/html-sanitizer/zipball/737cbaa8082b696d0574afd91b9f471eca67fc65",
  7519. "reference": "737cbaa8082b696d0574afd91b9f471eca67fc65",
  7520. "shasum": ""
  7521. },
  7522. "require": {
  7523. "ext-dom": "*",
  7524. "league/uri": "^6.5|^7.0",
  7525. "masterminds/html5": "^2.7.2",
  7526. "php": ">=8.2"
  7527. },
  7528. "type": "library",
  7529. "autoload": {
  7530. "psr-4": {
  7531. "Symfony\\Component\\HtmlSanitizer\\": ""
  7532. },
  7533. "exclude-from-classmap": [
  7534. "/Tests/"
  7535. ]
  7536. },
  7537. "notification-url": "https://packagist.org/downloads/",
  7538. "license": [
  7539. "MIT"
  7540. ],
  7541. "authors": [
  7542. {
  7543. "name": "Titouan Galopin",
  7544. "email": "galopintitouan@gmail.com"
  7545. },
  7546. {
  7547. "name": "Symfony Community",
  7548. "homepage": "https://symfony.com/contributors"
  7549. }
  7550. ],
  7551. "description": "Provides an object-oriented API to sanitize untrusted HTML input for safe insertion into a document's DOM.",
  7552. "homepage": "https://symfony.com",
  7553. "keywords": [
  7554. "Purifier",
  7555. "html",
  7556. "sanitizer"
  7557. ],
  7558. "support": {
  7559. "source": "https://github.com/symfony/html-sanitizer/tree/v7.1.1"
  7560. },
  7561. "funding": [
  7562. {
  7563. "url": "https://symfony.com/sponsor",
  7564. "type": "custom"
  7565. },
  7566. {
  7567. "url": "https://github.com/fabpot",
  7568. "type": "github"
  7569. },
  7570. {
  7571. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7572. "type": "tidelift"
  7573. }
  7574. ],
  7575. "time": "2024-05-31T14:55:39+00:00"
  7576. },
  7577. {
  7578. "name": "symfony/http-foundation",
  7579. "version": "v7.1.1",
  7580. "source": {
  7581. "type": "git",
  7582. "url": "https://github.com/symfony/http-foundation.git",
  7583. "reference": "74d171d5b6a1d9e4bfee09a41937c17a7536acfa"
  7584. },
  7585. "dist": {
  7586. "type": "zip",
  7587. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/74d171d5b6a1d9e4bfee09a41937c17a7536acfa",
  7588. "reference": "74d171d5b6a1d9e4bfee09a41937c17a7536acfa",
  7589. "shasum": ""
  7590. },
  7591. "require": {
  7592. "php": ">=8.2",
  7593. "symfony/polyfill-mbstring": "~1.1",
  7594. "symfony/polyfill-php83": "^1.27"
  7595. },
  7596. "conflict": {
  7597. "doctrine/dbal": "<3.6",
  7598. "symfony/cache": "<6.4"
  7599. },
  7600. "require-dev": {
  7601. "doctrine/dbal": "^3.6|^4",
  7602. "predis/predis": "^1.1|^2.0",
  7603. "symfony/cache": "^6.4|^7.0",
  7604. "symfony/dependency-injection": "^6.4|^7.0",
  7605. "symfony/expression-language": "^6.4|^7.0",
  7606. "symfony/http-kernel": "^6.4|^7.0",
  7607. "symfony/mime": "^6.4|^7.0",
  7608. "symfony/rate-limiter": "^6.4|^7.0"
  7609. },
  7610. "type": "library",
  7611. "autoload": {
  7612. "psr-4": {
  7613. "Symfony\\Component\\HttpFoundation\\": ""
  7614. },
  7615. "exclude-from-classmap": [
  7616. "/Tests/"
  7617. ]
  7618. },
  7619. "notification-url": "https://packagist.org/downloads/",
  7620. "license": [
  7621. "MIT"
  7622. ],
  7623. "authors": [
  7624. {
  7625. "name": "Fabien Potencier",
  7626. "email": "fabien@symfony.com"
  7627. },
  7628. {
  7629. "name": "Symfony Community",
  7630. "homepage": "https://symfony.com/contributors"
  7631. }
  7632. ],
  7633. "description": "Defines an object-oriented layer for the HTTP specification",
  7634. "homepage": "https://symfony.com",
  7635. "support": {
  7636. "source": "https://github.com/symfony/http-foundation/tree/v7.1.1"
  7637. },
  7638. "funding": [
  7639. {
  7640. "url": "https://symfony.com/sponsor",
  7641. "type": "custom"
  7642. },
  7643. {
  7644. "url": "https://github.com/fabpot",
  7645. "type": "github"
  7646. },
  7647. {
  7648. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7649. "type": "tidelift"
  7650. }
  7651. ],
  7652. "time": "2024-05-31T14:57:53+00:00"
  7653. },
  7654. {
  7655. "name": "symfony/http-kernel",
  7656. "version": "v7.1.1",
  7657. "source": {
  7658. "type": "git",
  7659. "url": "https://github.com/symfony/http-kernel.git",
  7660. "reference": "fa8d1c75b5f33b1302afccf81811f93976c6e26f"
  7661. },
  7662. "dist": {
  7663. "type": "zip",
  7664. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/fa8d1c75b5f33b1302afccf81811f93976c6e26f",
  7665. "reference": "fa8d1c75b5f33b1302afccf81811f93976c6e26f",
  7666. "shasum": ""
  7667. },
  7668. "require": {
  7669. "php": ">=8.2",
  7670. "psr/log": "^1|^2|^3",
  7671. "symfony/deprecation-contracts": "^2.5|^3",
  7672. "symfony/error-handler": "^6.4|^7.0",
  7673. "symfony/event-dispatcher": "^6.4|^7.0",
  7674. "symfony/http-foundation": "^6.4|^7.0",
  7675. "symfony/polyfill-ctype": "^1.8"
  7676. },
  7677. "conflict": {
  7678. "symfony/browser-kit": "<6.4",
  7679. "symfony/cache": "<6.4",
  7680. "symfony/config": "<6.4",
  7681. "symfony/console": "<6.4",
  7682. "symfony/dependency-injection": "<6.4",
  7683. "symfony/doctrine-bridge": "<6.4",
  7684. "symfony/form": "<6.4",
  7685. "symfony/http-client": "<6.4",
  7686. "symfony/http-client-contracts": "<2.5",
  7687. "symfony/mailer": "<6.4",
  7688. "symfony/messenger": "<6.4",
  7689. "symfony/translation": "<6.4",
  7690. "symfony/translation-contracts": "<2.5",
  7691. "symfony/twig-bridge": "<6.4",
  7692. "symfony/validator": "<6.4",
  7693. "symfony/var-dumper": "<6.4",
  7694. "twig/twig": "<3.0.4"
  7695. },
  7696. "provide": {
  7697. "psr/log-implementation": "1.0|2.0|3.0"
  7698. },
  7699. "require-dev": {
  7700. "psr/cache": "^1.0|^2.0|^3.0",
  7701. "symfony/browser-kit": "^6.4|^7.0",
  7702. "symfony/clock": "^6.4|^7.0",
  7703. "symfony/config": "^6.4|^7.0",
  7704. "symfony/console": "^6.4|^7.0",
  7705. "symfony/css-selector": "^6.4|^7.0",
  7706. "symfony/dependency-injection": "^6.4|^7.0",
  7707. "symfony/dom-crawler": "^6.4|^7.0",
  7708. "symfony/expression-language": "^6.4|^7.0",
  7709. "symfony/finder": "^6.4|^7.0",
  7710. "symfony/http-client-contracts": "^2.5|^3",
  7711. "symfony/process": "^6.4|^7.0",
  7712. "symfony/property-access": "^7.1",
  7713. "symfony/routing": "^6.4|^7.0",
  7714. "symfony/serializer": "^7.1",
  7715. "symfony/stopwatch": "^6.4|^7.0",
  7716. "symfony/translation": "^6.4|^7.0",
  7717. "symfony/translation-contracts": "^2.5|^3",
  7718. "symfony/uid": "^6.4|^7.0",
  7719. "symfony/validator": "^6.4|^7.0",
  7720. "symfony/var-dumper": "^6.4|^7.0",
  7721. "symfony/var-exporter": "^6.4|^7.0",
  7722. "twig/twig": "^3.0.4"
  7723. },
  7724. "type": "library",
  7725. "autoload": {
  7726. "psr-4": {
  7727. "Symfony\\Component\\HttpKernel\\": ""
  7728. },
  7729. "exclude-from-classmap": [
  7730. "/Tests/"
  7731. ]
  7732. },
  7733. "notification-url": "https://packagist.org/downloads/",
  7734. "license": [
  7735. "MIT"
  7736. ],
  7737. "authors": [
  7738. {
  7739. "name": "Fabien Potencier",
  7740. "email": "fabien@symfony.com"
  7741. },
  7742. {
  7743. "name": "Symfony Community",
  7744. "homepage": "https://symfony.com/contributors"
  7745. }
  7746. ],
  7747. "description": "Provides a structured process for converting a Request into a Response",
  7748. "homepage": "https://symfony.com",
  7749. "support": {
  7750. "source": "https://github.com/symfony/http-kernel/tree/v7.1.1"
  7751. },
  7752. "funding": [
  7753. {
  7754. "url": "https://symfony.com/sponsor",
  7755. "type": "custom"
  7756. },
  7757. {
  7758. "url": "https://github.com/fabpot",
  7759. "type": "github"
  7760. },
  7761. {
  7762. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7763. "type": "tidelift"
  7764. }
  7765. ],
  7766. "time": "2024-06-04T06:52:15+00:00"
  7767. },
  7768. {
  7769. "name": "symfony/intl",
  7770. "version": "v6.4.8",
  7771. "source": {
  7772. "type": "git",
  7773. "url": "https://github.com/symfony/intl.git",
  7774. "reference": "50265cdcf5a44bec3fcf487b5d0015aece91d1eb"
  7775. },
  7776. "dist": {
  7777. "type": "zip",
  7778. "url": "https://api.github.com/repos/symfony/intl/zipball/50265cdcf5a44bec3fcf487b5d0015aece91d1eb",
  7779. "reference": "50265cdcf5a44bec3fcf487b5d0015aece91d1eb",
  7780. "shasum": ""
  7781. },
  7782. "require": {
  7783. "php": ">=8.1"
  7784. },
  7785. "require-dev": {
  7786. "symfony/filesystem": "^5.4|^6.0|^7.0",
  7787. "symfony/finder": "^5.4|^6.0|^7.0",
  7788. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  7789. },
  7790. "type": "library",
  7791. "autoload": {
  7792. "psr-4": {
  7793. "Symfony\\Component\\Intl\\": ""
  7794. },
  7795. "exclude-from-classmap": [
  7796. "/Tests/",
  7797. "/Resources/data/"
  7798. ]
  7799. },
  7800. "notification-url": "https://packagist.org/downloads/",
  7801. "license": [
  7802. "MIT"
  7803. ],
  7804. "authors": [
  7805. {
  7806. "name": "Bernhard Schussek",
  7807. "email": "bschussek@gmail.com"
  7808. },
  7809. {
  7810. "name": "Eriksen Costa",
  7811. "email": "eriksen.costa@infranology.com.br"
  7812. },
  7813. {
  7814. "name": "Igor Wiedler",
  7815. "email": "igor@wiedler.ch"
  7816. },
  7817. {
  7818. "name": "Symfony Community",
  7819. "homepage": "https://symfony.com/contributors"
  7820. }
  7821. ],
  7822. "description": "Provides access to the localization data of the ICU library",
  7823. "homepage": "https://symfony.com",
  7824. "keywords": [
  7825. "i18n",
  7826. "icu",
  7827. "internationalization",
  7828. "intl",
  7829. "l10n",
  7830. "localization"
  7831. ],
  7832. "support": {
  7833. "source": "https://github.com/symfony/intl/tree/v6.4.8"
  7834. },
  7835. "funding": [
  7836. {
  7837. "url": "https://symfony.com/sponsor",
  7838. "type": "custom"
  7839. },
  7840. {
  7841. "url": "https://github.com/fabpot",
  7842. "type": "github"
  7843. },
  7844. {
  7845. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7846. "type": "tidelift"
  7847. }
  7848. ],
  7849. "time": "2024-05-31T14:49:08+00:00"
  7850. },
  7851. {
  7852. "name": "symfony/mailer",
  7853. "version": "v7.1.1",
  7854. "source": {
  7855. "type": "git",
  7856. "url": "https://github.com/symfony/mailer.git",
  7857. "reference": "2eaad2e167cae930f25a3d731fec8b2ded5e751e"
  7858. },
  7859. "dist": {
  7860. "type": "zip",
  7861. "url": "https://api.github.com/repos/symfony/mailer/zipball/2eaad2e167cae930f25a3d731fec8b2ded5e751e",
  7862. "reference": "2eaad2e167cae930f25a3d731fec8b2ded5e751e",
  7863. "shasum": ""
  7864. },
  7865. "require": {
  7866. "egulias/email-validator": "^2.1.10|^3|^4",
  7867. "php": ">=8.2",
  7868. "psr/event-dispatcher": "^1",
  7869. "psr/log": "^1|^2|^3",
  7870. "symfony/event-dispatcher": "^6.4|^7.0",
  7871. "symfony/mime": "^6.4|^7.0",
  7872. "symfony/service-contracts": "^2.5|^3"
  7873. },
  7874. "conflict": {
  7875. "symfony/http-client-contracts": "<2.5",
  7876. "symfony/http-kernel": "<6.4",
  7877. "symfony/messenger": "<6.4",
  7878. "symfony/mime": "<6.4",
  7879. "symfony/twig-bridge": "<6.4"
  7880. },
  7881. "require-dev": {
  7882. "symfony/console": "^6.4|^7.0",
  7883. "symfony/http-client": "^6.4|^7.0",
  7884. "symfony/messenger": "^6.4|^7.0",
  7885. "symfony/twig-bridge": "^6.4|^7.0"
  7886. },
  7887. "type": "library",
  7888. "autoload": {
  7889. "psr-4": {
  7890. "Symfony\\Component\\Mailer\\": ""
  7891. },
  7892. "exclude-from-classmap": [
  7893. "/Tests/"
  7894. ]
  7895. },
  7896. "notification-url": "https://packagist.org/downloads/",
  7897. "license": [
  7898. "MIT"
  7899. ],
  7900. "authors": [
  7901. {
  7902. "name": "Fabien Potencier",
  7903. "email": "fabien@symfony.com"
  7904. },
  7905. {
  7906. "name": "Symfony Community",
  7907. "homepage": "https://symfony.com/contributors"
  7908. }
  7909. ],
  7910. "description": "Helps sending emails",
  7911. "homepage": "https://symfony.com",
  7912. "support": {
  7913. "source": "https://github.com/symfony/mailer/tree/v7.1.1"
  7914. },
  7915. "funding": [
  7916. {
  7917. "url": "https://symfony.com/sponsor",
  7918. "type": "custom"
  7919. },
  7920. {
  7921. "url": "https://github.com/fabpot",
  7922. "type": "github"
  7923. },
  7924. {
  7925. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7926. "type": "tidelift"
  7927. }
  7928. ],
  7929. "time": "2024-05-31T14:57:53+00:00"
  7930. },
  7931. {
  7932. "name": "symfony/mime",
  7933. "version": "v7.1.1",
  7934. "source": {
  7935. "type": "git",
  7936. "url": "https://github.com/symfony/mime.git",
  7937. "reference": "21027eaacc1a8a20f5e616c25c3580f5dd3a15df"
  7938. },
  7939. "dist": {
  7940. "type": "zip",
  7941. "url": "https://api.github.com/repos/symfony/mime/zipball/21027eaacc1a8a20f5e616c25c3580f5dd3a15df",
  7942. "reference": "21027eaacc1a8a20f5e616c25c3580f5dd3a15df",
  7943. "shasum": ""
  7944. },
  7945. "require": {
  7946. "php": ">=8.2",
  7947. "symfony/polyfill-intl-idn": "^1.10",
  7948. "symfony/polyfill-mbstring": "^1.0"
  7949. },
  7950. "conflict": {
  7951. "egulias/email-validator": "~3.0.0",
  7952. "phpdocumentor/reflection-docblock": "<3.2.2",
  7953. "phpdocumentor/type-resolver": "<1.4.0",
  7954. "symfony/mailer": "<6.4",
  7955. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  7956. },
  7957. "require-dev": {
  7958. "egulias/email-validator": "^2.1.10|^3.1|^4",
  7959. "league/html-to-markdown": "^5.0",
  7960. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  7961. "symfony/dependency-injection": "^6.4|^7.0",
  7962. "symfony/process": "^6.4|^7.0",
  7963. "symfony/property-access": "^6.4|^7.0",
  7964. "symfony/property-info": "^6.4|^7.0",
  7965. "symfony/serializer": "^6.4.3|^7.0.3"
  7966. },
  7967. "type": "library",
  7968. "autoload": {
  7969. "psr-4": {
  7970. "Symfony\\Component\\Mime\\": ""
  7971. },
  7972. "exclude-from-classmap": [
  7973. "/Tests/"
  7974. ]
  7975. },
  7976. "notification-url": "https://packagist.org/downloads/",
  7977. "license": [
  7978. "MIT"
  7979. ],
  7980. "authors": [
  7981. {
  7982. "name": "Fabien Potencier",
  7983. "email": "fabien@symfony.com"
  7984. },
  7985. {
  7986. "name": "Symfony Community",
  7987. "homepage": "https://symfony.com/contributors"
  7988. }
  7989. ],
  7990. "description": "Allows manipulating MIME messages",
  7991. "homepage": "https://symfony.com",
  7992. "keywords": [
  7993. "mime",
  7994. "mime-type"
  7995. ],
  7996. "support": {
  7997. "source": "https://github.com/symfony/mime/tree/v7.1.1"
  7998. },
  7999. "funding": [
  8000. {
  8001. "url": "https://symfony.com/sponsor",
  8002. "type": "custom"
  8003. },
  8004. {
  8005. "url": "https://github.com/fabpot",
  8006. "type": "github"
  8007. },
  8008. {
  8009. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8010. "type": "tidelift"
  8011. }
  8012. ],
  8013. "time": "2024-06-04T06:40:14+00:00"
  8014. },
  8015. {
  8016. "name": "symfony/polyfill-ctype",
  8017. "version": "v1.29.0",
  8018. "source": {
  8019. "type": "git",
  8020. "url": "https://github.com/symfony/polyfill-ctype.git",
  8021. "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4"
  8022. },
  8023. "dist": {
  8024. "type": "zip",
  8025. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ef4d7e442ca910c4764bce785146269b30cb5fc4",
  8026. "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4",
  8027. "shasum": ""
  8028. },
  8029. "require": {
  8030. "php": ">=7.1"
  8031. },
  8032. "provide": {
  8033. "ext-ctype": "*"
  8034. },
  8035. "suggest": {
  8036. "ext-ctype": "For best performance"
  8037. },
  8038. "type": "library",
  8039. "extra": {
  8040. "thanks": {
  8041. "name": "symfony/polyfill",
  8042. "url": "https://github.com/symfony/polyfill"
  8043. }
  8044. },
  8045. "autoload": {
  8046. "files": [
  8047. "bootstrap.php"
  8048. ],
  8049. "psr-4": {
  8050. "Symfony\\Polyfill\\Ctype\\": ""
  8051. }
  8052. },
  8053. "notification-url": "https://packagist.org/downloads/",
  8054. "license": [
  8055. "MIT"
  8056. ],
  8057. "authors": [
  8058. {
  8059. "name": "Gert de Pagter",
  8060. "email": "BackEndTea@gmail.com"
  8061. },
  8062. {
  8063. "name": "Symfony Community",
  8064. "homepage": "https://symfony.com/contributors"
  8065. }
  8066. ],
  8067. "description": "Symfony polyfill for ctype functions",
  8068. "homepage": "https://symfony.com",
  8069. "keywords": [
  8070. "compatibility",
  8071. "ctype",
  8072. "polyfill",
  8073. "portable"
  8074. ],
  8075. "support": {
  8076. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.29.0"
  8077. },
  8078. "funding": [
  8079. {
  8080. "url": "https://symfony.com/sponsor",
  8081. "type": "custom"
  8082. },
  8083. {
  8084. "url": "https://github.com/fabpot",
  8085. "type": "github"
  8086. },
  8087. {
  8088. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8089. "type": "tidelift"
  8090. }
  8091. ],
  8092. "time": "2024-01-29T20:11:03+00:00"
  8093. },
  8094. {
  8095. "name": "symfony/polyfill-intl-grapheme",
  8096. "version": "v1.29.0",
  8097. "source": {
  8098. "type": "git",
  8099. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  8100. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f"
  8101. },
  8102. "dist": {
  8103. "type": "zip",
  8104. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  8105. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  8106. "shasum": ""
  8107. },
  8108. "require": {
  8109. "php": ">=7.1"
  8110. },
  8111. "suggest": {
  8112. "ext-intl": "For best performance"
  8113. },
  8114. "type": "library",
  8115. "extra": {
  8116. "thanks": {
  8117. "name": "symfony/polyfill",
  8118. "url": "https://github.com/symfony/polyfill"
  8119. }
  8120. },
  8121. "autoload": {
  8122. "files": [
  8123. "bootstrap.php"
  8124. ],
  8125. "psr-4": {
  8126. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  8127. }
  8128. },
  8129. "notification-url": "https://packagist.org/downloads/",
  8130. "license": [
  8131. "MIT"
  8132. ],
  8133. "authors": [
  8134. {
  8135. "name": "Nicolas Grekas",
  8136. "email": "p@tchwork.com"
  8137. },
  8138. {
  8139. "name": "Symfony Community",
  8140. "homepage": "https://symfony.com/contributors"
  8141. }
  8142. ],
  8143. "description": "Symfony polyfill for intl's grapheme_* functions",
  8144. "homepage": "https://symfony.com",
  8145. "keywords": [
  8146. "compatibility",
  8147. "grapheme",
  8148. "intl",
  8149. "polyfill",
  8150. "portable",
  8151. "shim"
  8152. ],
  8153. "support": {
  8154. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.29.0"
  8155. },
  8156. "funding": [
  8157. {
  8158. "url": "https://symfony.com/sponsor",
  8159. "type": "custom"
  8160. },
  8161. {
  8162. "url": "https://github.com/fabpot",
  8163. "type": "github"
  8164. },
  8165. {
  8166. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8167. "type": "tidelift"
  8168. }
  8169. ],
  8170. "time": "2024-01-29T20:11:03+00:00"
  8171. },
  8172. {
  8173. "name": "symfony/polyfill-intl-idn",
  8174. "version": "v1.29.0",
  8175. "source": {
  8176. "type": "git",
  8177. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  8178. "reference": "a287ed7475f85bf6f61890146edbc932c0fff919"
  8179. },
  8180. "dist": {
  8181. "type": "zip",
  8182. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/a287ed7475f85bf6f61890146edbc932c0fff919",
  8183. "reference": "a287ed7475f85bf6f61890146edbc932c0fff919",
  8184. "shasum": ""
  8185. },
  8186. "require": {
  8187. "php": ">=7.1",
  8188. "symfony/polyfill-intl-normalizer": "^1.10",
  8189. "symfony/polyfill-php72": "^1.10"
  8190. },
  8191. "suggest": {
  8192. "ext-intl": "For best performance"
  8193. },
  8194. "type": "library",
  8195. "extra": {
  8196. "thanks": {
  8197. "name": "symfony/polyfill",
  8198. "url": "https://github.com/symfony/polyfill"
  8199. }
  8200. },
  8201. "autoload": {
  8202. "files": [
  8203. "bootstrap.php"
  8204. ],
  8205. "psr-4": {
  8206. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  8207. }
  8208. },
  8209. "notification-url": "https://packagist.org/downloads/",
  8210. "license": [
  8211. "MIT"
  8212. ],
  8213. "authors": [
  8214. {
  8215. "name": "Laurent Bassin",
  8216. "email": "laurent@bassin.info"
  8217. },
  8218. {
  8219. "name": "Trevor Rowbotham",
  8220. "email": "trevor.rowbotham@pm.me"
  8221. },
  8222. {
  8223. "name": "Symfony Community",
  8224. "homepage": "https://symfony.com/contributors"
  8225. }
  8226. ],
  8227. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  8228. "homepage": "https://symfony.com",
  8229. "keywords": [
  8230. "compatibility",
  8231. "idn",
  8232. "intl",
  8233. "polyfill",
  8234. "portable",
  8235. "shim"
  8236. ],
  8237. "support": {
  8238. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.29.0"
  8239. },
  8240. "funding": [
  8241. {
  8242. "url": "https://symfony.com/sponsor",
  8243. "type": "custom"
  8244. },
  8245. {
  8246. "url": "https://github.com/fabpot",
  8247. "type": "github"
  8248. },
  8249. {
  8250. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8251. "type": "tidelift"
  8252. }
  8253. ],
  8254. "time": "2024-01-29T20:11:03+00:00"
  8255. },
  8256. {
  8257. "name": "symfony/polyfill-intl-normalizer",
  8258. "version": "v1.29.0",
  8259. "source": {
  8260. "type": "git",
  8261. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  8262. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d"
  8263. },
  8264. "dist": {
  8265. "type": "zip",
  8266. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/bc45c394692b948b4d383a08d7753968bed9a83d",
  8267. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d",
  8268. "shasum": ""
  8269. },
  8270. "require": {
  8271. "php": ">=7.1"
  8272. },
  8273. "suggest": {
  8274. "ext-intl": "For best performance"
  8275. },
  8276. "type": "library",
  8277. "extra": {
  8278. "thanks": {
  8279. "name": "symfony/polyfill",
  8280. "url": "https://github.com/symfony/polyfill"
  8281. }
  8282. },
  8283. "autoload": {
  8284. "files": [
  8285. "bootstrap.php"
  8286. ],
  8287. "psr-4": {
  8288. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  8289. },
  8290. "classmap": [
  8291. "Resources/stubs"
  8292. ]
  8293. },
  8294. "notification-url": "https://packagist.org/downloads/",
  8295. "license": [
  8296. "MIT"
  8297. ],
  8298. "authors": [
  8299. {
  8300. "name": "Nicolas Grekas",
  8301. "email": "p@tchwork.com"
  8302. },
  8303. {
  8304. "name": "Symfony Community",
  8305. "homepage": "https://symfony.com/contributors"
  8306. }
  8307. ],
  8308. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  8309. "homepage": "https://symfony.com",
  8310. "keywords": [
  8311. "compatibility",
  8312. "intl",
  8313. "normalizer",
  8314. "polyfill",
  8315. "portable",
  8316. "shim"
  8317. ],
  8318. "support": {
  8319. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.29.0"
  8320. },
  8321. "funding": [
  8322. {
  8323. "url": "https://symfony.com/sponsor",
  8324. "type": "custom"
  8325. },
  8326. {
  8327. "url": "https://github.com/fabpot",
  8328. "type": "github"
  8329. },
  8330. {
  8331. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8332. "type": "tidelift"
  8333. }
  8334. ],
  8335. "time": "2024-01-29T20:11:03+00:00"
  8336. },
  8337. {
  8338. "name": "symfony/polyfill-mbstring",
  8339. "version": "v1.29.0",
  8340. "source": {
  8341. "type": "git",
  8342. "url": "https://github.com/symfony/polyfill-mbstring.git",
  8343. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec"
  8344. },
  8345. "dist": {
  8346. "type": "zip",
  8347. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  8348. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  8349. "shasum": ""
  8350. },
  8351. "require": {
  8352. "php": ">=7.1"
  8353. },
  8354. "provide": {
  8355. "ext-mbstring": "*"
  8356. },
  8357. "suggest": {
  8358. "ext-mbstring": "For best performance"
  8359. },
  8360. "type": "library",
  8361. "extra": {
  8362. "thanks": {
  8363. "name": "symfony/polyfill",
  8364. "url": "https://github.com/symfony/polyfill"
  8365. }
  8366. },
  8367. "autoload": {
  8368. "files": [
  8369. "bootstrap.php"
  8370. ],
  8371. "psr-4": {
  8372. "Symfony\\Polyfill\\Mbstring\\": ""
  8373. }
  8374. },
  8375. "notification-url": "https://packagist.org/downloads/",
  8376. "license": [
  8377. "MIT"
  8378. ],
  8379. "authors": [
  8380. {
  8381. "name": "Nicolas Grekas",
  8382. "email": "p@tchwork.com"
  8383. },
  8384. {
  8385. "name": "Symfony Community",
  8386. "homepage": "https://symfony.com/contributors"
  8387. }
  8388. ],
  8389. "description": "Symfony polyfill for the Mbstring extension",
  8390. "homepage": "https://symfony.com",
  8391. "keywords": [
  8392. "compatibility",
  8393. "mbstring",
  8394. "polyfill",
  8395. "portable",
  8396. "shim"
  8397. ],
  8398. "support": {
  8399. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.29.0"
  8400. },
  8401. "funding": [
  8402. {
  8403. "url": "https://symfony.com/sponsor",
  8404. "type": "custom"
  8405. },
  8406. {
  8407. "url": "https://github.com/fabpot",
  8408. "type": "github"
  8409. },
  8410. {
  8411. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8412. "type": "tidelift"
  8413. }
  8414. ],
  8415. "time": "2024-01-29T20:11:03+00:00"
  8416. },
  8417. {
  8418. "name": "symfony/polyfill-php72",
  8419. "version": "v1.29.0",
  8420. "source": {
  8421. "type": "git",
  8422. "url": "https://github.com/symfony/polyfill-php72.git",
  8423. "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25"
  8424. },
  8425. "dist": {
  8426. "type": "zip",
  8427. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/861391a8da9a04cbad2d232ddd9e4893220d6e25",
  8428. "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25",
  8429. "shasum": ""
  8430. },
  8431. "require": {
  8432. "php": ">=7.1"
  8433. },
  8434. "type": "library",
  8435. "extra": {
  8436. "thanks": {
  8437. "name": "symfony/polyfill",
  8438. "url": "https://github.com/symfony/polyfill"
  8439. }
  8440. },
  8441. "autoload": {
  8442. "files": [
  8443. "bootstrap.php"
  8444. ],
  8445. "psr-4": {
  8446. "Symfony\\Polyfill\\Php72\\": ""
  8447. }
  8448. },
  8449. "notification-url": "https://packagist.org/downloads/",
  8450. "license": [
  8451. "MIT"
  8452. ],
  8453. "authors": [
  8454. {
  8455. "name": "Nicolas Grekas",
  8456. "email": "p@tchwork.com"
  8457. },
  8458. {
  8459. "name": "Symfony Community",
  8460. "homepage": "https://symfony.com/contributors"
  8461. }
  8462. ],
  8463. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  8464. "homepage": "https://symfony.com",
  8465. "keywords": [
  8466. "compatibility",
  8467. "polyfill",
  8468. "portable",
  8469. "shim"
  8470. ],
  8471. "support": {
  8472. "source": "https://github.com/symfony/polyfill-php72/tree/v1.29.0"
  8473. },
  8474. "funding": [
  8475. {
  8476. "url": "https://symfony.com/sponsor",
  8477. "type": "custom"
  8478. },
  8479. {
  8480. "url": "https://github.com/fabpot",
  8481. "type": "github"
  8482. },
  8483. {
  8484. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8485. "type": "tidelift"
  8486. }
  8487. ],
  8488. "time": "2024-01-29T20:11:03+00:00"
  8489. },
  8490. {
  8491. "name": "symfony/polyfill-php80",
  8492. "version": "v1.29.0",
  8493. "source": {
  8494. "type": "git",
  8495. "url": "https://github.com/symfony/polyfill-php80.git",
  8496. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b"
  8497. },
  8498. "dist": {
  8499. "type": "zip",
  8500. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  8501. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  8502. "shasum": ""
  8503. },
  8504. "require": {
  8505. "php": ">=7.1"
  8506. },
  8507. "type": "library",
  8508. "extra": {
  8509. "thanks": {
  8510. "name": "symfony/polyfill",
  8511. "url": "https://github.com/symfony/polyfill"
  8512. }
  8513. },
  8514. "autoload": {
  8515. "files": [
  8516. "bootstrap.php"
  8517. ],
  8518. "psr-4": {
  8519. "Symfony\\Polyfill\\Php80\\": ""
  8520. },
  8521. "classmap": [
  8522. "Resources/stubs"
  8523. ]
  8524. },
  8525. "notification-url": "https://packagist.org/downloads/",
  8526. "license": [
  8527. "MIT"
  8528. ],
  8529. "authors": [
  8530. {
  8531. "name": "Ion Bazan",
  8532. "email": "ion.bazan@gmail.com"
  8533. },
  8534. {
  8535. "name": "Nicolas Grekas",
  8536. "email": "p@tchwork.com"
  8537. },
  8538. {
  8539. "name": "Symfony Community",
  8540. "homepage": "https://symfony.com/contributors"
  8541. }
  8542. ],
  8543. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  8544. "homepage": "https://symfony.com",
  8545. "keywords": [
  8546. "compatibility",
  8547. "polyfill",
  8548. "portable",
  8549. "shim"
  8550. ],
  8551. "support": {
  8552. "source": "https://github.com/symfony/polyfill-php80/tree/v1.29.0"
  8553. },
  8554. "funding": [
  8555. {
  8556. "url": "https://symfony.com/sponsor",
  8557. "type": "custom"
  8558. },
  8559. {
  8560. "url": "https://github.com/fabpot",
  8561. "type": "github"
  8562. },
  8563. {
  8564. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8565. "type": "tidelift"
  8566. }
  8567. ],
  8568. "time": "2024-01-29T20:11:03+00:00"
  8569. },
  8570. {
  8571. "name": "symfony/polyfill-php83",
  8572. "version": "v1.29.0",
  8573. "source": {
  8574. "type": "git",
  8575. "url": "https://github.com/symfony/polyfill-php83.git",
  8576. "reference": "86fcae159633351e5fd145d1c47de6c528f8caff"
  8577. },
  8578. "dist": {
  8579. "type": "zip",
  8580. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/86fcae159633351e5fd145d1c47de6c528f8caff",
  8581. "reference": "86fcae159633351e5fd145d1c47de6c528f8caff",
  8582. "shasum": ""
  8583. },
  8584. "require": {
  8585. "php": ">=7.1",
  8586. "symfony/polyfill-php80": "^1.14"
  8587. },
  8588. "type": "library",
  8589. "extra": {
  8590. "thanks": {
  8591. "name": "symfony/polyfill",
  8592. "url": "https://github.com/symfony/polyfill"
  8593. }
  8594. },
  8595. "autoload": {
  8596. "files": [
  8597. "bootstrap.php"
  8598. ],
  8599. "psr-4": {
  8600. "Symfony\\Polyfill\\Php83\\": ""
  8601. },
  8602. "classmap": [
  8603. "Resources/stubs"
  8604. ]
  8605. },
  8606. "notification-url": "https://packagist.org/downloads/",
  8607. "license": [
  8608. "MIT"
  8609. ],
  8610. "authors": [
  8611. {
  8612. "name": "Nicolas Grekas",
  8613. "email": "p@tchwork.com"
  8614. },
  8615. {
  8616. "name": "Symfony Community",
  8617. "homepage": "https://symfony.com/contributors"
  8618. }
  8619. ],
  8620. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  8621. "homepage": "https://symfony.com",
  8622. "keywords": [
  8623. "compatibility",
  8624. "polyfill",
  8625. "portable",
  8626. "shim"
  8627. ],
  8628. "support": {
  8629. "source": "https://github.com/symfony/polyfill-php83/tree/v1.29.0"
  8630. },
  8631. "funding": [
  8632. {
  8633. "url": "https://symfony.com/sponsor",
  8634. "type": "custom"
  8635. },
  8636. {
  8637. "url": "https://github.com/fabpot",
  8638. "type": "github"
  8639. },
  8640. {
  8641. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8642. "type": "tidelift"
  8643. }
  8644. ],
  8645. "time": "2024-01-29T20:11:03+00:00"
  8646. },
  8647. {
  8648. "name": "symfony/polyfill-uuid",
  8649. "version": "v1.29.0",
  8650. "source": {
  8651. "type": "git",
  8652. "url": "https://github.com/symfony/polyfill-uuid.git",
  8653. "reference": "3abdd21b0ceaa3000ee950097bc3cf9efc137853"
  8654. },
  8655. "dist": {
  8656. "type": "zip",
  8657. "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/3abdd21b0ceaa3000ee950097bc3cf9efc137853",
  8658. "reference": "3abdd21b0ceaa3000ee950097bc3cf9efc137853",
  8659. "shasum": ""
  8660. },
  8661. "require": {
  8662. "php": ">=7.1"
  8663. },
  8664. "provide": {
  8665. "ext-uuid": "*"
  8666. },
  8667. "suggest": {
  8668. "ext-uuid": "For best performance"
  8669. },
  8670. "type": "library",
  8671. "extra": {
  8672. "thanks": {
  8673. "name": "symfony/polyfill",
  8674. "url": "https://github.com/symfony/polyfill"
  8675. }
  8676. },
  8677. "autoload": {
  8678. "files": [
  8679. "bootstrap.php"
  8680. ],
  8681. "psr-4": {
  8682. "Symfony\\Polyfill\\Uuid\\": ""
  8683. }
  8684. },
  8685. "notification-url": "https://packagist.org/downloads/",
  8686. "license": [
  8687. "MIT"
  8688. ],
  8689. "authors": [
  8690. {
  8691. "name": "Grégoire Pineau",
  8692. "email": "lyrixx@lyrixx.info"
  8693. },
  8694. {
  8695. "name": "Symfony Community",
  8696. "homepage": "https://symfony.com/contributors"
  8697. }
  8698. ],
  8699. "description": "Symfony polyfill for uuid functions",
  8700. "homepage": "https://symfony.com",
  8701. "keywords": [
  8702. "compatibility",
  8703. "polyfill",
  8704. "portable",
  8705. "uuid"
  8706. ],
  8707. "support": {
  8708. "source": "https://github.com/symfony/polyfill-uuid/tree/v1.29.0"
  8709. },
  8710. "funding": [
  8711. {
  8712. "url": "https://symfony.com/sponsor",
  8713. "type": "custom"
  8714. },
  8715. {
  8716. "url": "https://github.com/fabpot",
  8717. "type": "github"
  8718. },
  8719. {
  8720. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8721. "type": "tidelift"
  8722. }
  8723. ],
  8724. "time": "2024-01-29T20:11:03+00:00"
  8725. },
  8726. {
  8727. "name": "symfony/process",
  8728. "version": "v7.1.1",
  8729. "source": {
  8730. "type": "git",
  8731. "url": "https://github.com/symfony/process.git",
  8732. "reference": "febf90124323a093c7ee06fdb30e765ca3c20028"
  8733. },
  8734. "dist": {
  8735. "type": "zip",
  8736. "url": "https://api.github.com/repos/symfony/process/zipball/febf90124323a093c7ee06fdb30e765ca3c20028",
  8737. "reference": "febf90124323a093c7ee06fdb30e765ca3c20028",
  8738. "shasum": ""
  8739. },
  8740. "require": {
  8741. "php": ">=8.2"
  8742. },
  8743. "type": "library",
  8744. "autoload": {
  8745. "psr-4": {
  8746. "Symfony\\Component\\Process\\": ""
  8747. },
  8748. "exclude-from-classmap": [
  8749. "/Tests/"
  8750. ]
  8751. },
  8752. "notification-url": "https://packagist.org/downloads/",
  8753. "license": [
  8754. "MIT"
  8755. ],
  8756. "authors": [
  8757. {
  8758. "name": "Fabien Potencier",
  8759. "email": "fabien@symfony.com"
  8760. },
  8761. {
  8762. "name": "Symfony Community",
  8763. "homepage": "https://symfony.com/contributors"
  8764. }
  8765. ],
  8766. "description": "Executes commands in sub-processes",
  8767. "homepage": "https://symfony.com",
  8768. "support": {
  8769. "source": "https://github.com/symfony/process/tree/v7.1.1"
  8770. },
  8771. "funding": [
  8772. {
  8773. "url": "https://symfony.com/sponsor",
  8774. "type": "custom"
  8775. },
  8776. {
  8777. "url": "https://github.com/fabpot",
  8778. "type": "github"
  8779. },
  8780. {
  8781. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8782. "type": "tidelift"
  8783. }
  8784. ],
  8785. "time": "2024-05-31T14:57:53+00:00"
  8786. },
  8787. {
  8788. "name": "symfony/routing",
  8789. "version": "v7.1.1",
  8790. "source": {
  8791. "type": "git",
  8792. "url": "https://github.com/symfony/routing.git",
  8793. "reference": "60c31bab5c45af7f13091b87deb708830f3c96c0"
  8794. },
  8795. "dist": {
  8796. "type": "zip",
  8797. "url": "https://api.github.com/repos/symfony/routing/zipball/60c31bab5c45af7f13091b87deb708830f3c96c0",
  8798. "reference": "60c31bab5c45af7f13091b87deb708830f3c96c0",
  8799. "shasum": ""
  8800. },
  8801. "require": {
  8802. "php": ">=8.2",
  8803. "symfony/deprecation-contracts": "^2.5|^3"
  8804. },
  8805. "conflict": {
  8806. "symfony/config": "<6.4",
  8807. "symfony/dependency-injection": "<6.4",
  8808. "symfony/yaml": "<6.4"
  8809. },
  8810. "require-dev": {
  8811. "psr/log": "^1|^2|^3",
  8812. "symfony/config": "^6.4|^7.0",
  8813. "symfony/dependency-injection": "^6.4|^7.0",
  8814. "symfony/expression-language": "^6.4|^7.0",
  8815. "symfony/http-foundation": "^6.4|^7.0",
  8816. "symfony/yaml": "^6.4|^7.0"
  8817. },
  8818. "type": "library",
  8819. "autoload": {
  8820. "psr-4": {
  8821. "Symfony\\Component\\Routing\\": ""
  8822. },
  8823. "exclude-from-classmap": [
  8824. "/Tests/"
  8825. ]
  8826. },
  8827. "notification-url": "https://packagist.org/downloads/",
  8828. "license": [
  8829. "MIT"
  8830. ],
  8831. "authors": [
  8832. {
  8833. "name": "Fabien Potencier",
  8834. "email": "fabien@symfony.com"
  8835. },
  8836. {
  8837. "name": "Symfony Community",
  8838. "homepage": "https://symfony.com/contributors"
  8839. }
  8840. ],
  8841. "description": "Maps an HTTP request to a set of configuration variables",
  8842. "homepage": "https://symfony.com",
  8843. "keywords": [
  8844. "router",
  8845. "routing",
  8846. "uri",
  8847. "url"
  8848. ],
  8849. "support": {
  8850. "source": "https://github.com/symfony/routing/tree/v7.1.1"
  8851. },
  8852. "funding": [
  8853. {
  8854. "url": "https://symfony.com/sponsor",
  8855. "type": "custom"
  8856. },
  8857. {
  8858. "url": "https://github.com/fabpot",
  8859. "type": "github"
  8860. },
  8861. {
  8862. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8863. "type": "tidelift"
  8864. }
  8865. ],
  8866. "time": "2024-05-31T14:57:53+00:00"
  8867. },
  8868. {
  8869. "name": "symfony/service-contracts",
  8870. "version": "v3.5.0",
  8871. "source": {
  8872. "type": "git",
  8873. "url": "https://github.com/symfony/service-contracts.git",
  8874. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
  8875. },
  8876. "dist": {
  8877. "type": "zip",
  8878. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  8879. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  8880. "shasum": ""
  8881. },
  8882. "require": {
  8883. "php": ">=8.1",
  8884. "psr/container": "^1.1|^2.0",
  8885. "symfony/deprecation-contracts": "^2.5|^3"
  8886. },
  8887. "conflict": {
  8888. "ext-psr": "<1.1|>=2"
  8889. },
  8890. "type": "library",
  8891. "extra": {
  8892. "branch-alias": {
  8893. "dev-main": "3.5-dev"
  8894. },
  8895. "thanks": {
  8896. "name": "symfony/contracts",
  8897. "url": "https://github.com/symfony/contracts"
  8898. }
  8899. },
  8900. "autoload": {
  8901. "psr-4": {
  8902. "Symfony\\Contracts\\Service\\": ""
  8903. },
  8904. "exclude-from-classmap": [
  8905. "/Test/"
  8906. ]
  8907. },
  8908. "notification-url": "https://packagist.org/downloads/",
  8909. "license": [
  8910. "MIT"
  8911. ],
  8912. "authors": [
  8913. {
  8914. "name": "Nicolas Grekas",
  8915. "email": "p@tchwork.com"
  8916. },
  8917. {
  8918. "name": "Symfony Community",
  8919. "homepage": "https://symfony.com/contributors"
  8920. }
  8921. ],
  8922. "description": "Generic abstractions related to writing services",
  8923. "homepage": "https://symfony.com",
  8924. "keywords": [
  8925. "abstractions",
  8926. "contracts",
  8927. "decoupling",
  8928. "interfaces",
  8929. "interoperability",
  8930. "standards"
  8931. ],
  8932. "support": {
  8933. "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
  8934. },
  8935. "funding": [
  8936. {
  8937. "url": "https://symfony.com/sponsor",
  8938. "type": "custom"
  8939. },
  8940. {
  8941. "url": "https://github.com/fabpot",
  8942. "type": "github"
  8943. },
  8944. {
  8945. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8946. "type": "tidelift"
  8947. }
  8948. ],
  8949. "time": "2024-04-18T09:32:20+00:00"
  8950. },
  8951. {
  8952. "name": "symfony/string",
  8953. "version": "v7.1.1",
  8954. "source": {
  8955. "type": "git",
  8956. "url": "https://github.com/symfony/string.git",
  8957. "reference": "60bc311c74e0af215101235aa6f471bcbc032df2"
  8958. },
  8959. "dist": {
  8960. "type": "zip",
  8961. "url": "https://api.github.com/repos/symfony/string/zipball/60bc311c74e0af215101235aa6f471bcbc032df2",
  8962. "reference": "60bc311c74e0af215101235aa6f471bcbc032df2",
  8963. "shasum": ""
  8964. },
  8965. "require": {
  8966. "php": ">=8.2",
  8967. "symfony/polyfill-ctype": "~1.8",
  8968. "symfony/polyfill-intl-grapheme": "~1.0",
  8969. "symfony/polyfill-intl-normalizer": "~1.0",
  8970. "symfony/polyfill-mbstring": "~1.0"
  8971. },
  8972. "conflict": {
  8973. "symfony/translation-contracts": "<2.5"
  8974. },
  8975. "require-dev": {
  8976. "symfony/emoji": "^7.1",
  8977. "symfony/error-handler": "^6.4|^7.0",
  8978. "symfony/http-client": "^6.4|^7.0",
  8979. "symfony/intl": "^6.4|^7.0",
  8980. "symfony/translation-contracts": "^2.5|^3.0",
  8981. "symfony/var-exporter": "^6.4|^7.0"
  8982. },
  8983. "type": "library",
  8984. "autoload": {
  8985. "files": [
  8986. "Resources/functions.php"
  8987. ],
  8988. "psr-4": {
  8989. "Symfony\\Component\\String\\": ""
  8990. },
  8991. "exclude-from-classmap": [
  8992. "/Tests/"
  8993. ]
  8994. },
  8995. "notification-url": "https://packagist.org/downloads/",
  8996. "license": [
  8997. "MIT"
  8998. ],
  8999. "authors": [
  9000. {
  9001. "name": "Nicolas Grekas",
  9002. "email": "p@tchwork.com"
  9003. },
  9004. {
  9005. "name": "Symfony Community",
  9006. "homepage": "https://symfony.com/contributors"
  9007. }
  9008. ],
  9009. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  9010. "homepage": "https://symfony.com",
  9011. "keywords": [
  9012. "grapheme",
  9013. "i18n",
  9014. "string",
  9015. "unicode",
  9016. "utf-8",
  9017. "utf8"
  9018. ],
  9019. "support": {
  9020. "source": "https://github.com/symfony/string/tree/v7.1.1"
  9021. },
  9022. "funding": [
  9023. {
  9024. "url": "https://symfony.com/sponsor",
  9025. "type": "custom"
  9026. },
  9027. {
  9028. "url": "https://github.com/fabpot",
  9029. "type": "github"
  9030. },
  9031. {
  9032. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9033. "type": "tidelift"
  9034. }
  9035. ],
  9036. "time": "2024-06-04T06:40:14+00:00"
  9037. },
  9038. {
  9039. "name": "symfony/translation",
  9040. "version": "v7.1.1",
  9041. "source": {
  9042. "type": "git",
  9043. "url": "https://github.com/symfony/translation.git",
  9044. "reference": "cf5ae136e124fc7681b34ce9fac9d5b9ae8ceee3"
  9045. },
  9046. "dist": {
  9047. "type": "zip",
  9048. "url": "https://api.github.com/repos/symfony/translation/zipball/cf5ae136e124fc7681b34ce9fac9d5b9ae8ceee3",
  9049. "reference": "cf5ae136e124fc7681b34ce9fac9d5b9ae8ceee3",
  9050. "shasum": ""
  9051. },
  9052. "require": {
  9053. "php": ">=8.2",
  9054. "symfony/polyfill-mbstring": "~1.0",
  9055. "symfony/translation-contracts": "^2.5|^3.0"
  9056. },
  9057. "conflict": {
  9058. "symfony/config": "<6.4",
  9059. "symfony/console": "<6.4",
  9060. "symfony/dependency-injection": "<6.4",
  9061. "symfony/http-client-contracts": "<2.5",
  9062. "symfony/http-kernel": "<6.4",
  9063. "symfony/service-contracts": "<2.5",
  9064. "symfony/twig-bundle": "<6.4",
  9065. "symfony/yaml": "<6.4"
  9066. },
  9067. "provide": {
  9068. "symfony/translation-implementation": "2.3|3.0"
  9069. },
  9070. "require-dev": {
  9071. "nikic/php-parser": "^4.18|^5.0",
  9072. "psr/log": "^1|^2|^3",
  9073. "symfony/config": "^6.4|^7.0",
  9074. "symfony/console": "^6.4|^7.0",
  9075. "symfony/dependency-injection": "^6.4|^7.0",
  9076. "symfony/finder": "^6.4|^7.0",
  9077. "symfony/http-client-contracts": "^2.5|^3.0",
  9078. "symfony/http-kernel": "^6.4|^7.0",
  9079. "symfony/intl": "^6.4|^7.0",
  9080. "symfony/polyfill-intl-icu": "^1.21",
  9081. "symfony/routing": "^6.4|^7.0",
  9082. "symfony/service-contracts": "^2.5|^3",
  9083. "symfony/yaml": "^6.4|^7.0"
  9084. },
  9085. "type": "library",
  9086. "autoload": {
  9087. "files": [
  9088. "Resources/functions.php"
  9089. ],
  9090. "psr-4": {
  9091. "Symfony\\Component\\Translation\\": ""
  9092. },
  9093. "exclude-from-classmap": [
  9094. "/Tests/"
  9095. ]
  9096. },
  9097. "notification-url": "https://packagist.org/downloads/",
  9098. "license": [
  9099. "MIT"
  9100. ],
  9101. "authors": [
  9102. {
  9103. "name": "Fabien Potencier",
  9104. "email": "fabien@symfony.com"
  9105. },
  9106. {
  9107. "name": "Symfony Community",
  9108. "homepage": "https://symfony.com/contributors"
  9109. }
  9110. ],
  9111. "description": "Provides tools to internationalize your application",
  9112. "homepage": "https://symfony.com",
  9113. "support": {
  9114. "source": "https://github.com/symfony/translation/tree/v7.1.1"
  9115. },
  9116. "funding": [
  9117. {
  9118. "url": "https://symfony.com/sponsor",
  9119. "type": "custom"
  9120. },
  9121. {
  9122. "url": "https://github.com/fabpot",
  9123. "type": "github"
  9124. },
  9125. {
  9126. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9127. "type": "tidelift"
  9128. }
  9129. ],
  9130. "time": "2024-05-31T14:57:53+00:00"
  9131. },
  9132. {
  9133. "name": "symfony/translation-contracts",
  9134. "version": "v3.5.0",
  9135. "source": {
  9136. "type": "git",
  9137. "url": "https://github.com/symfony/translation-contracts.git",
  9138. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a"
  9139. },
  9140. "dist": {
  9141. "type": "zip",
  9142. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  9143. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  9144. "shasum": ""
  9145. },
  9146. "require": {
  9147. "php": ">=8.1"
  9148. },
  9149. "type": "library",
  9150. "extra": {
  9151. "branch-alias": {
  9152. "dev-main": "3.5-dev"
  9153. },
  9154. "thanks": {
  9155. "name": "symfony/contracts",
  9156. "url": "https://github.com/symfony/contracts"
  9157. }
  9158. },
  9159. "autoload": {
  9160. "psr-4": {
  9161. "Symfony\\Contracts\\Translation\\": ""
  9162. },
  9163. "exclude-from-classmap": [
  9164. "/Test/"
  9165. ]
  9166. },
  9167. "notification-url": "https://packagist.org/downloads/",
  9168. "license": [
  9169. "MIT"
  9170. ],
  9171. "authors": [
  9172. {
  9173. "name": "Nicolas Grekas",
  9174. "email": "p@tchwork.com"
  9175. },
  9176. {
  9177. "name": "Symfony Community",
  9178. "homepage": "https://symfony.com/contributors"
  9179. }
  9180. ],
  9181. "description": "Generic abstractions related to translation",
  9182. "homepage": "https://symfony.com",
  9183. "keywords": [
  9184. "abstractions",
  9185. "contracts",
  9186. "decoupling",
  9187. "interfaces",
  9188. "interoperability",
  9189. "standards"
  9190. ],
  9191. "support": {
  9192. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0"
  9193. },
  9194. "funding": [
  9195. {
  9196. "url": "https://symfony.com/sponsor",
  9197. "type": "custom"
  9198. },
  9199. {
  9200. "url": "https://github.com/fabpot",
  9201. "type": "github"
  9202. },
  9203. {
  9204. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9205. "type": "tidelift"
  9206. }
  9207. ],
  9208. "time": "2024-04-18T09:32:20+00:00"
  9209. },
  9210. {
  9211. "name": "symfony/uid",
  9212. "version": "v7.1.1",
  9213. "source": {
  9214. "type": "git",
  9215. "url": "https://github.com/symfony/uid.git",
  9216. "reference": "bb59febeecc81528ff672fad5dab7f06db8c8277"
  9217. },
  9218. "dist": {
  9219. "type": "zip",
  9220. "url": "https://api.github.com/repos/symfony/uid/zipball/bb59febeecc81528ff672fad5dab7f06db8c8277",
  9221. "reference": "bb59febeecc81528ff672fad5dab7f06db8c8277",
  9222. "shasum": ""
  9223. },
  9224. "require": {
  9225. "php": ">=8.2",
  9226. "symfony/polyfill-uuid": "^1.15"
  9227. },
  9228. "require-dev": {
  9229. "symfony/console": "^6.4|^7.0"
  9230. },
  9231. "type": "library",
  9232. "autoload": {
  9233. "psr-4": {
  9234. "Symfony\\Component\\Uid\\": ""
  9235. },
  9236. "exclude-from-classmap": [
  9237. "/Tests/"
  9238. ]
  9239. },
  9240. "notification-url": "https://packagist.org/downloads/",
  9241. "license": [
  9242. "MIT"
  9243. ],
  9244. "authors": [
  9245. {
  9246. "name": "Grégoire Pineau",
  9247. "email": "lyrixx@lyrixx.info"
  9248. },
  9249. {
  9250. "name": "Nicolas Grekas",
  9251. "email": "p@tchwork.com"
  9252. },
  9253. {
  9254. "name": "Symfony Community",
  9255. "homepage": "https://symfony.com/contributors"
  9256. }
  9257. ],
  9258. "description": "Provides an object-oriented API to generate and represent UIDs",
  9259. "homepage": "https://symfony.com",
  9260. "keywords": [
  9261. "UID",
  9262. "ulid",
  9263. "uuid"
  9264. ],
  9265. "support": {
  9266. "source": "https://github.com/symfony/uid/tree/v7.1.1"
  9267. },
  9268. "funding": [
  9269. {
  9270. "url": "https://symfony.com/sponsor",
  9271. "type": "custom"
  9272. },
  9273. {
  9274. "url": "https://github.com/fabpot",
  9275. "type": "github"
  9276. },
  9277. {
  9278. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9279. "type": "tidelift"
  9280. }
  9281. ],
  9282. "time": "2024-05-31T14:57:53+00:00"
  9283. },
  9284. {
  9285. "name": "symfony/var-dumper",
  9286. "version": "v7.1.1",
  9287. "source": {
  9288. "type": "git",
  9289. "url": "https://github.com/symfony/var-dumper.git",
  9290. "reference": "deb2c2b506ff6fdbb340e00b34e9901e1605f293"
  9291. },
  9292. "dist": {
  9293. "type": "zip",
  9294. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/deb2c2b506ff6fdbb340e00b34e9901e1605f293",
  9295. "reference": "deb2c2b506ff6fdbb340e00b34e9901e1605f293",
  9296. "shasum": ""
  9297. },
  9298. "require": {
  9299. "php": ">=8.2",
  9300. "symfony/polyfill-mbstring": "~1.0"
  9301. },
  9302. "conflict": {
  9303. "symfony/console": "<6.4"
  9304. },
  9305. "require-dev": {
  9306. "ext-iconv": "*",
  9307. "symfony/console": "^6.4|^7.0",
  9308. "symfony/http-kernel": "^6.4|^7.0",
  9309. "symfony/process": "^6.4|^7.0",
  9310. "symfony/uid": "^6.4|^7.0",
  9311. "twig/twig": "^3.0.4"
  9312. },
  9313. "bin": [
  9314. "Resources/bin/var-dump-server"
  9315. ],
  9316. "type": "library",
  9317. "autoload": {
  9318. "files": [
  9319. "Resources/functions/dump.php"
  9320. ],
  9321. "psr-4": {
  9322. "Symfony\\Component\\VarDumper\\": ""
  9323. },
  9324. "exclude-from-classmap": [
  9325. "/Tests/"
  9326. ]
  9327. },
  9328. "notification-url": "https://packagist.org/downloads/",
  9329. "license": [
  9330. "MIT"
  9331. ],
  9332. "authors": [
  9333. {
  9334. "name": "Nicolas Grekas",
  9335. "email": "p@tchwork.com"
  9336. },
  9337. {
  9338. "name": "Symfony Community",
  9339. "homepage": "https://symfony.com/contributors"
  9340. }
  9341. ],
  9342. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  9343. "homepage": "https://symfony.com",
  9344. "keywords": [
  9345. "debug",
  9346. "dump"
  9347. ],
  9348. "support": {
  9349. "source": "https://github.com/symfony/var-dumper/tree/v7.1.1"
  9350. },
  9351. "funding": [
  9352. {
  9353. "url": "https://symfony.com/sponsor",
  9354. "type": "custom"
  9355. },
  9356. {
  9357. "url": "https://github.com/fabpot",
  9358. "type": "github"
  9359. },
  9360. {
  9361. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9362. "type": "tidelift"
  9363. }
  9364. ],
  9365. "time": "2024-05-31T14:57:53+00:00"
  9366. },
  9367. {
  9368. "name": "tijsverkoyen/css-to-inline-styles",
  9369. "version": "v2.2.7",
  9370. "source": {
  9371. "type": "git",
  9372. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  9373. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb"
  9374. },
  9375. "dist": {
  9376. "type": "zip",
  9377. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/83ee6f38df0a63106a9e4536e3060458b74ccedb",
  9378. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb",
  9379. "shasum": ""
  9380. },
  9381. "require": {
  9382. "ext-dom": "*",
  9383. "ext-libxml": "*",
  9384. "php": "^5.5 || ^7.0 || ^8.0",
  9385. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0"
  9386. },
  9387. "require-dev": {
  9388. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  9389. },
  9390. "type": "library",
  9391. "extra": {
  9392. "branch-alias": {
  9393. "dev-master": "2.2.x-dev"
  9394. }
  9395. },
  9396. "autoload": {
  9397. "psr-4": {
  9398. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  9399. }
  9400. },
  9401. "notification-url": "https://packagist.org/downloads/",
  9402. "license": [
  9403. "BSD-3-Clause"
  9404. ],
  9405. "authors": [
  9406. {
  9407. "name": "Tijs Verkoyen",
  9408. "email": "css_to_inline_styles@verkoyen.eu",
  9409. "role": "Developer"
  9410. }
  9411. ],
  9412. "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.",
  9413. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  9414. "support": {
  9415. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  9416. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.2.7"
  9417. },
  9418. "time": "2023-12-08T13:03:43+00:00"
  9419. },
  9420. {
  9421. "name": "vlucas/phpdotenv",
  9422. "version": "v5.6.0",
  9423. "source": {
  9424. "type": "git",
  9425. "url": "https://github.com/vlucas/phpdotenv.git",
  9426. "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4"
  9427. },
  9428. "dist": {
  9429. "type": "zip",
  9430. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4",
  9431. "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4",
  9432. "shasum": ""
  9433. },
  9434. "require": {
  9435. "ext-pcre": "*",
  9436. "graham-campbell/result-type": "^1.1.2",
  9437. "php": "^7.2.5 || ^8.0",
  9438. "phpoption/phpoption": "^1.9.2",
  9439. "symfony/polyfill-ctype": "^1.24",
  9440. "symfony/polyfill-mbstring": "^1.24",
  9441. "symfony/polyfill-php80": "^1.24"
  9442. },
  9443. "require-dev": {
  9444. "bamarni/composer-bin-plugin": "^1.8.2",
  9445. "ext-filter": "*",
  9446. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  9447. },
  9448. "suggest": {
  9449. "ext-filter": "Required to use the boolean validator."
  9450. },
  9451. "type": "library",
  9452. "extra": {
  9453. "bamarni-bin": {
  9454. "bin-links": true,
  9455. "forward-command": true
  9456. },
  9457. "branch-alias": {
  9458. "dev-master": "5.6-dev"
  9459. }
  9460. },
  9461. "autoload": {
  9462. "psr-4": {
  9463. "Dotenv\\": "src/"
  9464. }
  9465. },
  9466. "notification-url": "https://packagist.org/downloads/",
  9467. "license": [
  9468. "BSD-3-Clause"
  9469. ],
  9470. "authors": [
  9471. {
  9472. "name": "Graham Campbell",
  9473. "email": "hello@gjcampbell.co.uk",
  9474. "homepage": "https://github.com/GrahamCampbell"
  9475. },
  9476. {
  9477. "name": "Vance Lucas",
  9478. "email": "vance@vancelucas.com",
  9479. "homepage": "https://github.com/vlucas"
  9480. }
  9481. ],
  9482. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  9483. "keywords": [
  9484. "dotenv",
  9485. "env",
  9486. "environment"
  9487. ],
  9488. "support": {
  9489. "issues": "https://github.com/vlucas/phpdotenv/issues",
  9490. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.0"
  9491. },
  9492. "funding": [
  9493. {
  9494. "url": "https://github.com/GrahamCampbell",
  9495. "type": "github"
  9496. },
  9497. {
  9498. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  9499. "type": "tidelift"
  9500. }
  9501. ],
  9502. "time": "2023-11-12T22:43:29+00:00"
  9503. },
  9504. {
  9505. "name": "voku/portable-ascii",
  9506. "version": "2.0.1",
  9507. "source": {
  9508. "type": "git",
  9509. "url": "https://github.com/voku/portable-ascii.git",
  9510. "reference": "b56450eed252f6801410d810c8e1727224ae0743"
  9511. },
  9512. "dist": {
  9513. "type": "zip",
  9514. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b56450eed252f6801410d810c8e1727224ae0743",
  9515. "reference": "b56450eed252f6801410d810c8e1727224ae0743",
  9516. "shasum": ""
  9517. },
  9518. "require": {
  9519. "php": ">=7.0.0"
  9520. },
  9521. "require-dev": {
  9522. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  9523. },
  9524. "suggest": {
  9525. "ext-intl": "Use Intl for transliterator_transliterate() support"
  9526. },
  9527. "type": "library",
  9528. "autoload": {
  9529. "psr-4": {
  9530. "voku\\": "src/voku/"
  9531. }
  9532. },
  9533. "notification-url": "https://packagist.org/downloads/",
  9534. "license": [
  9535. "MIT"
  9536. ],
  9537. "authors": [
  9538. {
  9539. "name": "Lars Moelleken",
  9540. "homepage": "http://www.moelleken.org/"
  9541. }
  9542. ],
  9543. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  9544. "homepage": "https://github.com/voku/portable-ascii",
  9545. "keywords": [
  9546. "ascii",
  9547. "clean",
  9548. "php"
  9549. ],
  9550. "support": {
  9551. "issues": "https://github.com/voku/portable-ascii/issues",
  9552. "source": "https://github.com/voku/portable-ascii/tree/2.0.1"
  9553. },
  9554. "funding": [
  9555. {
  9556. "url": "https://www.paypal.me/moelleken",
  9557. "type": "custom"
  9558. },
  9559. {
  9560. "url": "https://github.com/voku",
  9561. "type": "github"
  9562. },
  9563. {
  9564. "url": "https://opencollective.com/portable-ascii",
  9565. "type": "open_collective"
  9566. },
  9567. {
  9568. "url": "https://www.patreon.com/voku",
  9569. "type": "patreon"
  9570. },
  9571. {
  9572. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  9573. "type": "tidelift"
  9574. }
  9575. ],
  9576. "time": "2022-03-08T17:03:00+00:00"
  9577. },
  9578. {
  9579. "name": "webmozart/assert",
  9580. "version": "1.11.0",
  9581. "source": {
  9582. "type": "git",
  9583. "url": "https://github.com/webmozarts/assert.git",
  9584. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  9585. },
  9586. "dist": {
  9587. "type": "zip",
  9588. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  9589. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  9590. "shasum": ""
  9591. },
  9592. "require": {
  9593. "ext-ctype": "*",
  9594. "php": "^7.2 || ^8.0"
  9595. },
  9596. "conflict": {
  9597. "phpstan/phpstan": "<0.12.20",
  9598. "vimeo/psalm": "<4.6.1 || 4.6.2"
  9599. },
  9600. "require-dev": {
  9601. "phpunit/phpunit": "^8.5.13"
  9602. },
  9603. "type": "library",
  9604. "extra": {
  9605. "branch-alias": {
  9606. "dev-master": "1.10-dev"
  9607. }
  9608. },
  9609. "autoload": {
  9610. "psr-4": {
  9611. "Webmozart\\Assert\\": "src/"
  9612. }
  9613. },
  9614. "notification-url": "https://packagist.org/downloads/",
  9615. "license": [
  9616. "MIT"
  9617. ],
  9618. "authors": [
  9619. {
  9620. "name": "Bernhard Schussek",
  9621. "email": "bschussek@gmail.com"
  9622. }
  9623. ],
  9624. "description": "Assertions to validate method input/output with nice error messages.",
  9625. "keywords": [
  9626. "assert",
  9627. "check",
  9628. "validate"
  9629. ],
  9630. "support": {
  9631. "issues": "https://github.com/webmozarts/assert/issues",
  9632. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  9633. },
  9634. "time": "2022-06-03T18:03:27+00:00"
  9635. }
  9636. ],
  9637. "packages-dev": [
  9638. {
  9639. "name": "fakerphp/faker",
  9640. "version": "v1.23.1",
  9641. "source": {
  9642. "type": "git",
  9643. "url": "https://github.com/FakerPHP/Faker.git",
  9644. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b"
  9645. },
  9646. "dist": {
  9647. "type": "zip",
  9648. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/bfb4fe148adbf78eff521199619b93a52ae3554b",
  9649. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b",
  9650. "shasum": ""
  9651. },
  9652. "require": {
  9653. "php": "^7.4 || ^8.0",
  9654. "psr/container": "^1.0 || ^2.0",
  9655. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  9656. },
  9657. "conflict": {
  9658. "fzaninotto/faker": "*"
  9659. },
  9660. "require-dev": {
  9661. "bamarni/composer-bin-plugin": "^1.4.1",
  9662. "doctrine/persistence": "^1.3 || ^2.0",
  9663. "ext-intl": "*",
  9664. "phpunit/phpunit": "^9.5.26",
  9665. "symfony/phpunit-bridge": "^5.4.16"
  9666. },
  9667. "suggest": {
  9668. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  9669. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  9670. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  9671. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  9672. "ext-mbstring": "Required for multibyte Unicode string functionality."
  9673. },
  9674. "type": "library",
  9675. "autoload": {
  9676. "psr-4": {
  9677. "Faker\\": "src/Faker/"
  9678. }
  9679. },
  9680. "notification-url": "https://packagist.org/downloads/",
  9681. "license": [
  9682. "MIT"
  9683. ],
  9684. "authors": [
  9685. {
  9686. "name": "François Zaninotto"
  9687. }
  9688. ],
  9689. "description": "Faker is a PHP library that generates fake data for you.",
  9690. "keywords": [
  9691. "data",
  9692. "faker",
  9693. "fixtures"
  9694. ],
  9695. "support": {
  9696. "issues": "https://github.com/FakerPHP/Faker/issues",
  9697. "source": "https://github.com/FakerPHP/Faker/tree/v1.23.1"
  9698. },
  9699. "time": "2024-01-02T13:46:09+00:00"
  9700. },
  9701. {
  9702. "name": "filp/whoops",
  9703. "version": "2.15.4",
  9704. "source": {
  9705. "type": "git",
  9706. "url": "https://github.com/filp/whoops.git",
  9707. "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546"
  9708. },
  9709. "dist": {
  9710. "type": "zip",
  9711. "url": "https://api.github.com/repos/filp/whoops/zipball/a139776fa3f5985a50b509f2a02ff0f709d2a546",
  9712. "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546",
  9713. "shasum": ""
  9714. },
  9715. "require": {
  9716. "php": "^5.5.9 || ^7.0 || ^8.0",
  9717. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  9718. },
  9719. "require-dev": {
  9720. "mockery/mockery": "^0.9 || ^1.0",
  9721. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  9722. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  9723. },
  9724. "suggest": {
  9725. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  9726. "whoops/soap": "Formats errors as SOAP responses"
  9727. },
  9728. "type": "library",
  9729. "extra": {
  9730. "branch-alias": {
  9731. "dev-master": "2.7-dev"
  9732. }
  9733. },
  9734. "autoload": {
  9735. "psr-4": {
  9736. "Whoops\\": "src/Whoops/"
  9737. }
  9738. },
  9739. "notification-url": "https://packagist.org/downloads/",
  9740. "license": [
  9741. "MIT"
  9742. ],
  9743. "authors": [
  9744. {
  9745. "name": "Filipe Dobreira",
  9746. "homepage": "https://github.com/filp",
  9747. "role": "Developer"
  9748. }
  9749. ],
  9750. "description": "php error handling for cool kids",
  9751. "homepage": "https://filp.github.io/whoops/",
  9752. "keywords": [
  9753. "error",
  9754. "exception",
  9755. "handling",
  9756. "library",
  9757. "throwable",
  9758. "whoops"
  9759. ],
  9760. "support": {
  9761. "issues": "https://github.com/filp/whoops/issues",
  9762. "source": "https://github.com/filp/whoops/tree/2.15.4"
  9763. },
  9764. "funding": [
  9765. {
  9766. "url": "https://github.com/denis-sokolov",
  9767. "type": "github"
  9768. }
  9769. ],
  9770. "time": "2023-11-03T12:00:00+00:00"
  9771. },
  9772. {
  9773. "name": "hamcrest/hamcrest-php",
  9774. "version": "v2.0.1",
  9775. "source": {
  9776. "type": "git",
  9777. "url": "https://github.com/hamcrest/hamcrest-php.git",
  9778. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  9779. },
  9780. "dist": {
  9781. "type": "zip",
  9782. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  9783. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  9784. "shasum": ""
  9785. },
  9786. "require": {
  9787. "php": "^5.3|^7.0|^8.0"
  9788. },
  9789. "replace": {
  9790. "cordoval/hamcrest-php": "*",
  9791. "davedevelopment/hamcrest-php": "*",
  9792. "kodova/hamcrest-php": "*"
  9793. },
  9794. "require-dev": {
  9795. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  9796. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  9797. },
  9798. "type": "library",
  9799. "extra": {
  9800. "branch-alias": {
  9801. "dev-master": "2.1-dev"
  9802. }
  9803. },
  9804. "autoload": {
  9805. "classmap": [
  9806. "hamcrest"
  9807. ]
  9808. },
  9809. "notification-url": "https://packagist.org/downloads/",
  9810. "license": [
  9811. "BSD-3-Clause"
  9812. ],
  9813. "description": "This is the PHP port of Hamcrest Matchers",
  9814. "keywords": [
  9815. "test"
  9816. ],
  9817. "support": {
  9818. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  9819. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  9820. },
  9821. "time": "2020-07-09T08:09:16+00:00"
  9822. },
  9823. {
  9824. "name": "laravel/pint",
  9825. "version": "v1.16.0",
  9826. "source": {
  9827. "type": "git",
  9828. "url": "https://github.com/laravel/pint.git",
  9829. "reference": "1b3a3dc5bc6a81ff52828ba7277621f1d49d6d98"
  9830. },
  9831. "dist": {
  9832. "type": "zip",
  9833. "url": "https://api.github.com/repos/laravel/pint/zipball/1b3a3dc5bc6a81ff52828ba7277621f1d49d6d98",
  9834. "reference": "1b3a3dc5bc6a81ff52828ba7277621f1d49d6d98",
  9835. "shasum": ""
  9836. },
  9837. "require": {
  9838. "ext-json": "*",
  9839. "ext-mbstring": "*",
  9840. "ext-tokenizer": "*",
  9841. "ext-xml": "*",
  9842. "php": "^8.1.0"
  9843. },
  9844. "require-dev": {
  9845. "friendsofphp/php-cs-fixer": "^3.57.1",
  9846. "illuminate/view": "^10.48.10",
  9847. "larastan/larastan": "^2.9.6",
  9848. "laravel-zero/framework": "^10.4.0",
  9849. "mockery/mockery": "^1.6.12",
  9850. "nunomaduro/termwind": "^1.15.1",
  9851. "pestphp/pest": "^2.34.7"
  9852. },
  9853. "bin": [
  9854. "builds/pint"
  9855. ],
  9856. "type": "project",
  9857. "autoload": {
  9858. "psr-4": {
  9859. "App\\": "app/",
  9860. "Database\\Seeders\\": "database/seeders/",
  9861. "Database\\Factories\\": "database/factories/"
  9862. }
  9863. },
  9864. "notification-url": "https://packagist.org/downloads/",
  9865. "license": [
  9866. "MIT"
  9867. ],
  9868. "authors": [
  9869. {
  9870. "name": "Nuno Maduro",
  9871. "email": "enunomaduro@gmail.com"
  9872. }
  9873. ],
  9874. "description": "An opinionated code formatter for PHP.",
  9875. "homepage": "https://laravel.com",
  9876. "keywords": [
  9877. "format",
  9878. "formatter",
  9879. "lint",
  9880. "linter",
  9881. "php"
  9882. ],
  9883. "support": {
  9884. "issues": "https://github.com/laravel/pint/issues",
  9885. "source": "https://github.com/laravel/pint"
  9886. },
  9887. "time": "2024-05-21T18:08:25+00:00"
  9888. },
  9889. {
  9890. "name": "laravel/sail",
  9891. "version": "v1.29.2",
  9892. "source": {
  9893. "type": "git",
  9894. "url": "https://github.com/laravel/sail.git",
  9895. "reference": "a8e4e749735ba2f091856eafeb3f99db8cd6b621"
  9896. },
  9897. "dist": {
  9898. "type": "zip",
  9899. "url": "https://api.github.com/repos/laravel/sail/zipball/a8e4e749735ba2f091856eafeb3f99db8cd6b621",
  9900. "reference": "a8e4e749735ba2f091856eafeb3f99db8cd6b621",
  9901. "shasum": ""
  9902. },
  9903. "require": {
  9904. "illuminate/console": "^9.52.16|^10.0|^11.0",
  9905. "illuminate/contracts": "^9.52.16|^10.0|^11.0",
  9906. "illuminate/support": "^9.52.16|^10.0|^11.0",
  9907. "php": "^8.0",
  9908. "symfony/console": "^6.0|^7.0",
  9909. "symfony/yaml": "^6.0|^7.0"
  9910. },
  9911. "require-dev": {
  9912. "orchestra/testbench": "^7.0|^8.0|^9.0",
  9913. "phpstan/phpstan": "^1.10"
  9914. },
  9915. "bin": [
  9916. "bin/sail"
  9917. ],
  9918. "type": "library",
  9919. "extra": {
  9920. "laravel": {
  9921. "providers": [
  9922. "Laravel\\Sail\\SailServiceProvider"
  9923. ]
  9924. }
  9925. },
  9926. "autoload": {
  9927. "psr-4": {
  9928. "Laravel\\Sail\\": "src/"
  9929. }
  9930. },
  9931. "notification-url": "https://packagist.org/downloads/",
  9932. "license": [
  9933. "MIT"
  9934. ],
  9935. "authors": [
  9936. {
  9937. "name": "Taylor Otwell",
  9938. "email": "taylor@laravel.com"
  9939. }
  9940. ],
  9941. "description": "Docker files for running a basic Laravel application.",
  9942. "keywords": [
  9943. "docker",
  9944. "laravel"
  9945. ],
  9946. "support": {
  9947. "issues": "https://github.com/laravel/sail/issues",
  9948. "source": "https://github.com/laravel/sail"
  9949. },
  9950. "time": "2024-05-16T21:39:11+00:00"
  9951. },
  9952. {
  9953. "name": "mockery/mockery",
  9954. "version": "1.6.12",
  9955. "source": {
  9956. "type": "git",
  9957. "url": "https://github.com/mockery/mockery.git",
  9958. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  9959. },
  9960. "dist": {
  9961. "type": "zip",
  9962. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  9963. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  9964. "shasum": ""
  9965. },
  9966. "require": {
  9967. "hamcrest/hamcrest-php": "^2.0.1",
  9968. "lib-pcre": ">=7.0",
  9969. "php": ">=7.3"
  9970. },
  9971. "conflict": {
  9972. "phpunit/phpunit": "<8.0"
  9973. },
  9974. "require-dev": {
  9975. "phpunit/phpunit": "^8.5 || ^9.6.17",
  9976. "symplify/easy-coding-standard": "^12.1.14"
  9977. },
  9978. "type": "library",
  9979. "autoload": {
  9980. "files": [
  9981. "library/helpers.php",
  9982. "library/Mockery.php"
  9983. ],
  9984. "psr-4": {
  9985. "Mockery\\": "library/Mockery"
  9986. }
  9987. },
  9988. "notification-url": "https://packagist.org/downloads/",
  9989. "license": [
  9990. "BSD-3-Clause"
  9991. ],
  9992. "authors": [
  9993. {
  9994. "name": "Pádraic Brady",
  9995. "email": "padraic.brady@gmail.com",
  9996. "homepage": "https://github.com/padraic",
  9997. "role": "Author"
  9998. },
  9999. {
  10000. "name": "Dave Marshall",
  10001. "email": "dave.marshall@atstsolutions.co.uk",
  10002. "homepage": "https://davedevelopment.co.uk",
  10003. "role": "Developer"
  10004. },
  10005. {
  10006. "name": "Nathanael Esayeas",
  10007. "email": "nathanael.esayeas@protonmail.com",
  10008. "homepage": "https://github.com/ghostwriter",
  10009. "role": "Lead Developer"
  10010. }
  10011. ],
  10012. "description": "Mockery is a simple yet flexible PHP mock object framework",
  10013. "homepage": "https://github.com/mockery/mockery",
  10014. "keywords": [
  10015. "BDD",
  10016. "TDD",
  10017. "library",
  10018. "mock",
  10019. "mock objects",
  10020. "mockery",
  10021. "stub",
  10022. "test",
  10023. "test double",
  10024. "testing"
  10025. ],
  10026. "support": {
  10027. "docs": "https://docs.mockery.io/",
  10028. "issues": "https://github.com/mockery/mockery/issues",
  10029. "rss": "https://github.com/mockery/mockery/releases.atom",
  10030. "security": "https://github.com/mockery/mockery/security/advisories",
  10031. "source": "https://github.com/mockery/mockery"
  10032. },
  10033. "time": "2024-05-16T03:13:13+00:00"
  10034. },
  10035. {
  10036. "name": "myclabs/deep-copy",
  10037. "version": "1.12.0",
  10038. "source": {
  10039. "type": "git",
  10040. "url": "https://github.com/myclabs/DeepCopy.git",
  10041. "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c"
  10042. },
  10043. "dist": {
  10044. "type": "zip",
  10045. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c",
  10046. "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c",
  10047. "shasum": ""
  10048. },
  10049. "require": {
  10050. "php": "^7.1 || ^8.0"
  10051. },
  10052. "conflict": {
  10053. "doctrine/collections": "<1.6.8",
  10054. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  10055. },
  10056. "require-dev": {
  10057. "doctrine/collections": "^1.6.8",
  10058. "doctrine/common": "^2.13.3 || ^3.2.2",
  10059. "phpspec/prophecy": "^1.10",
  10060. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  10061. },
  10062. "type": "library",
  10063. "autoload": {
  10064. "files": [
  10065. "src/DeepCopy/deep_copy.php"
  10066. ],
  10067. "psr-4": {
  10068. "DeepCopy\\": "src/DeepCopy/"
  10069. }
  10070. },
  10071. "notification-url": "https://packagist.org/downloads/",
  10072. "license": [
  10073. "MIT"
  10074. ],
  10075. "description": "Create deep copies (clones) of your objects",
  10076. "keywords": [
  10077. "clone",
  10078. "copy",
  10079. "duplicate",
  10080. "object",
  10081. "object graph"
  10082. ],
  10083. "support": {
  10084. "issues": "https://github.com/myclabs/DeepCopy/issues",
  10085. "source": "https://github.com/myclabs/DeepCopy/tree/1.12.0"
  10086. },
  10087. "funding": [
  10088. {
  10089. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  10090. "type": "tidelift"
  10091. }
  10092. ],
  10093. "time": "2024-06-12T14:39:25+00:00"
  10094. },
  10095. {
  10096. "name": "nunomaduro/collision",
  10097. "version": "v8.1.1",
  10098. "source": {
  10099. "type": "git",
  10100. "url": "https://github.com/nunomaduro/collision.git",
  10101. "reference": "13e5d538b95a744d85f447a321ce10adb28e9af9"
  10102. },
  10103. "dist": {
  10104. "type": "zip",
  10105. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/13e5d538b95a744d85f447a321ce10adb28e9af9",
  10106. "reference": "13e5d538b95a744d85f447a321ce10adb28e9af9",
  10107. "shasum": ""
  10108. },
  10109. "require": {
  10110. "filp/whoops": "^2.15.4",
  10111. "nunomaduro/termwind": "^2.0.1",
  10112. "php": "^8.2.0",
  10113. "symfony/console": "^7.0.4"
  10114. },
  10115. "conflict": {
  10116. "laravel/framework": "<11.0.0 || >=12.0.0",
  10117. "phpunit/phpunit": "<10.5.1 || >=12.0.0"
  10118. },
  10119. "require-dev": {
  10120. "larastan/larastan": "^2.9.2",
  10121. "laravel/framework": "^11.0.0",
  10122. "laravel/pint": "^1.14.0",
  10123. "laravel/sail": "^1.28.2",
  10124. "laravel/sanctum": "^4.0.0",
  10125. "laravel/tinker": "^2.9.0",
  10126. "orchestra/testbench-core": "^9.0.0",
  10127. "pestphp/pest": "^2.34.1 || ^3.0.0",
  10128. "sebastian/environment": "^6.0.1 || ^7.0.0"
  10129. },
  10130. "type": "library",
  10131. "extra": {
  10132. "laravel": {
  10133. "providers": [
  10134. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  10135. ]
  10136. },
  10137. "branch-alias": {
  10138. "dev-8.x": "8.x-dev"
  10139. }
  10140. },
  10141. "autoload": {
  10142. "files": [
  10143. "./src/Adapters/Phpunit/Autoload.php"
  10144. ],
  10145. "psr-4": {
  10146. "NunoMaduro\\Collision\\": "src/"
  10147. }
  10148. },
  10149. "notification-url": "https://packagist.org/downloads/",
  10150. "license": [
  10151. "MIT"
  10152. ],
  10153. "authors": [
  10154. {
  10155. "name": "Nuno Maduro",
  10156. "email": "enunomaduro@gmail.com"
  10157. }
  10158. ],
  10159. "description": "Cli error handling for console/command-line PHP applications.",
  10160. "keywords": [
  10161. "artisan",
  10162. "cli",
  10163. "command-line",
  10164. "console",
  10165. "error",
  10166. "handling",
  10167. "laravel",
  10168. "laravel-zero",
  10169. "php",
  10170. "symfony"
  10171. ],
  10172. "support": {
  10173. "issues": "https://github.com/nunomaduro/collision/issues",
  10174. "source": "https://github.com/nunomaduro/collision"
  10175. },
  10176. "funding": [
  10177. {
  10178. "url": "https://www.paypal.com/paypalme/enunomaduro",
  10179. "type": "custom"
  10180. },
  10181. {
  10182. "url": "https://github.com/nunomaduro",
  10183. "type": "github"
  10184. },
  10185. {
  10186. "url": "https://www.patreon.com/nunomaduro",
  10187. "type": "patreon"
  10188. }
  10189. ],
  10190. "time": "2024-03-06T16:20:09+00:00"
  10191. },
  10192. {
  10193. "name": "phar-io/manifest",
  10194. "version": "2.0.4",
  10195. "source": {
  10196. "type": "git",
  10197. "url": "https://github.com/phar-io/manifest.git",
  10198. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  10199. },
  10200. "dist": {
  10201. "type": "zip",
  10202. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  10203. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  10204. "shasum": ""
  10205. },
  10206. "require": {
  10207. "ext-dom": "*",
  10208. "ext-libxml": "*",
  10209. "ext-phar": "*",
  10210. "ext-xmlwriter": "*",
  10211. "phar-io/version": "^3.0.1",
  10212. "php": "^7.2 || ^8.0"
  10213. },
  10214. "type": "library",
  10215. "extra": {
  10216. "branch-alias": {
  10217. "dev-master": "2.0.x-dev"
  10218. }
  10219. },
  10220. "autoload": {
  10221. "classmap": [
  10222. "src/"
  10223. ]
  10224. },
  10225. "notification-url": "https://packagist.org/downloads/",
  10226. "license": [
  10227. "BSD-3-Clause"
  10228. ],
  10229. "authors": [
  10230. {
  10231. "name": "Arne Blankerts",
  10232. "email": "arne@blankerts.de",
  10233. "role": "Developer"
  10234. },
  10235. {
  10236. "name": "Sebastian Heuer",
  10237. "email": "sebastian@phpeople.de",
  10238. "role": "Developer"
  10239. },
  10240. {
  10241. "name": "Sebastian Bergmann",
  10242. "email": "sebastian@phpunit.de",
  10243. "role": "Developer"
  10244. }
  10245. ],
  10246. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  10247. "support": {
  10248. "issues": "https://github.com/phar-io/manifest/issues",
  10249. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  10250. },
  10251. "funding": [
  10252. {
  10253. "url": "https://github.com/theseer",
  10254. "type": "github"
  10255. }
  10256. ],
  10257. "time": "2024-03-03T12:33:53+00:00"
  10258. },
  10259. {
  10260. "name": "phar-io/version",
  10261. "version": "3.2.1",
  10262. "source": {
  10263. "type": "git",
  10264. "url": "https://github.com/phar-io/version.git",
  10265. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  10266. },
  10267. "dist": {
  10268. "type": "zip",
  10269. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  10270. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  10271. "shasum": ""
  10272. },
  10273. "require": {
  10274. "php": "^7.2 || ^8.0"
  10275. },
  10276. "type": "library",
  10277. "autoload": {
  10278. "classmap": [
  10279. "src/"
  10280. ]
  10281. },
  10282. "notification-url": "https://packagist.org/downloads/",
  10283. "license": [
  10284. "BSD-3-Clause"
  10285. ],
  10286. "authors": [
  10287. {
  10288. "name": "Arne Blankerts",
  10289. "email": "arne@blankerts.de",
  10290. "role": "Developer"
  10291. },
  10292. {
  10293. "name": "Sebastian Heuer",
  10294. "email": "sebastian@phpeople.de",
  10295. "role": "Developer"
  10296. },
  10297. {
  10298. "name": "Sebastian Bergmann",
  10299. "email": "sebastian@phpunit.de",
  10300. "role": "Developer"
  10301. }
  10302. ],
  10303. "description": "Library for handling version information and constraints",
  10304. "support": {
  10305. "issues": "https://github.com/phar-io/version/issues",
  10306. "source": "https://github.com/phar-io/version/tree/3.2.1"
  10307. },
  10308. "time": "2022-02-21T01:04:05+00:00"
  10309. },
  10310. {
  10311. "name": "phpunit/php-code-coverage",
  10312. "version": "10.1.14",
  10313. "source": {
  10314. "type": "git",
  10315. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  10316. "reference": "e3f51450ebffe8e0efdf7346ae966a656f7d5e5b"
  10317. },
  10318. "dist": {
  10319. "type": "zip",
  10320. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/e3f51450ebffe8e0efdf7346ae966a656f7d5e5b",
  10321. "reference": "e3f51450ebffe8e0efdf7346ae966a656f7d5e5b",
  10322. "shasum": ""
  10323. },
  10324. "require": {
  10325. "ext-dom": "*",
  10326. "ext-libxml": "*",
  10327. "ext-xmlwriter": "*",
  10328. "nikic/php-parser": "^4.18 || ^5.0",
  10329. "php": ">=8.1",
  10330. "phpunit/php-file-iterator": "^4.0",
  10331. "phpunit/php-text-template": "^3.0",
  10332. "sebastian/code-unit-reverse-lookup": "^3.0",
  10333. "sebastian/complexity": "^3.0",
  10334. "sebastian/environment": "^6.0",
  10335. "sebastian/lines-of-code": "^2.0",
  10336. "sebastian/version": "^4.0",
  10337. "theseer/tokenizer": "^1.2.0"
  10338. },
  10339. "require-dev": {
  10340. "phpunit/phpunit": "^10.1"
  10341. },
  10342. "suggest": {
  10343. "ext-pcov": "PHP extension that provides line coverage",
  10344. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  10345. },
  10346. "type": "library",
  10347. "extra": {
  10348. "branch-alias": {
  10349. "dev-main": "10.1-dev"
  10350. }
  10351. },
  10352. "autoload": {
  10353. "classmap": [
  10354. "src/"
  10355. ]
  10356. },
  10357. "notification-url": "https://packagist.org/downloads/",
  10358. "license": [
  10359. "BSD-3-Clause"
  10360. ],
  10361. "authors": [
  10362. {
  10363. "name": "Sebastian Bergmann",
  10364. "email": "sebastian@phpunit.de",
  10365. "role": "lead"
  10366. }
  10367. ],
  10368. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  10369. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  10370. "keywords": [
  10371. "coverage",
  10372. "testing",
  10373. "xunit"
  10374. ],
  10375. "support": {
  10376. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  10377. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  10378. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.14"
  10379. },
  10380. "funding": [
  10381. {
  10382. "url": "https://github.com/sebastianbergmann",
  10383. "type": "github"
  10384. }
  10385. ],
  10386. "time": "2024-03-12T15:33:41+00:00"
  10387. },
  10388. {
  10389. "name": "phpunit/php-file-iterator",
  10390. "version": "4.1.0",
  10391. "source": {
  10392. "type": "git",
  10393. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  10394. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
  10395. },
  10396. "dist": {
  10397. "type": "zip",
  10398. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
  10399. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  10400. "shasum": ""
  10401. },
  10402. "require": {
  10403. "php": ">=8.1"
  10404. },
  10405. "require-dev": {
  10406. "phpunit/phpunit": "^10.0"
  10407. },
  10408. "type": "library",
  10409. "extra": {
  10410. "branch-alias": {
  10411. "dev-main": "4.0-dev"
  10412. }
  10413. },
  10414. "autoload": {
  10415. "classmap": [
  10416. "src/"
  10417. ]
  10418. },
  10419. "notification-url": "https://packagist.org/downloads/",
  10420. "license": [
  10421. "BSD-3-Clause"
  10422. ],
  10423. "authors": [
  10424. {
  10425. "name": "Sebastian Bergmann",
  10426. "email": "sebastian@phpunit.de",
  10427. "role": "lead"
  10428. }
  10429. ],
  10430. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  10431. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  10432. "keywords": [
  10433. "filesystem",
  10434. "iterator"
  10435. ],
  10436. "support": {
  10437. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  10438. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  10439. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
  10440. },
  10441. "funding": [
  10442. {
  10443. "url": "https://github.com/sebastianbergmann",
  10444. "type": "github"
  10445. }
  10446. ],
  10447. "time": "2023-08-31T06:24:48+00:00"
  10448. },
  10449. {
  10450. "name": "phpunit/php-invoker",
  10451. "version": "4.0.0",
  10452. "source": {
  10453. "type": "git",
  10454. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  10455. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  10456. },
  10457. "dist": {
  10458. "type": "zip",
  10459. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  10460. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  10461. "shasum": ""
  10462. },
  10463. "require": {
  10464. "php": ">=8.1"
  10465. },
  10466. "require-dev": {
  10467. "ext-pcntl": "*",
  10468. "phpunit/phpunit": "^10.0"
  10469. },
  10470. "suggest": {
  10471. "ext-pcntl": "*"
  10472. },
  10473. "type": "library",
  10474. "extra": {
  10475. "branch-alias": {
  10476. "dev-main": "4.0-dev"
  10477. }
  10478. },
  10479. "autoload": {
  10480. "classmap": [
  10481. "src/"
  10482. ]
  10483. },
  10484. "notification-url": "https://packagist.org/downloads/",
  10485. "license": [
  10486. "BSD-3-Clause"
  10487. ],
  10488. "authors": [
  10489. {
  10490. "name": "Sebastian Bergmann",
  10491. "email": "sebastian@phpunit.de",
  10492. "role": "lead"
  10493. }
  10494. ],
  10495. "description": "Invoke callables with a timeout",
  10496. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  10497. "keywords": [
  10498. "process"
  10499. ],
  10500. "support": {
  10501. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  10502. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  10503. },
  10504. "funding": [
  10505. {
  10506. "url": "https://github.com/sebastianbergmann",
  10507. "type": "github"
  10508. }
  10509. ],
  10510. "time": "2023-02-03T06:56:09+00:00"
  10511. },
  10512. {
  10513. "name": "phpunit/php-text-template",
  10514. "version": "3.0.1",
  10515. "source": {
  10516. "type": "git",
  10517. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  10518. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
  10519. },
  10520. "dist": {
  10521. "type": "zip",
  10522. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  10523. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  10524. "shasum": ""
  10525. },
  10526. "require": {
  10527. "php": ">=8.1"
  10528. },
  10529. "require-dev": {
  10530. "phpunit/phpunit": "^10.0"
  10531. },
  10532. "type": "library",
  10533. "extra": {
  10534. "branch-alias": {
  10535. "dev-main": "3.0-dev"
  10536. }
  10537. },
  10538. "autoload": {
  10539. "classmap": [
  10540. "src/"
  10541. ]
  10542. },
  10543. "notification-url": "https://packagist.org/downloads/",
  10544. "license": [
  10545. "BSD-3-Clause"
  10546. ],
  10547. "authors": [
  10548. {
  10549. "name": "Sebastian Bergmann",
  10550. "email": "sebastian@phpunit.de",
  10551. "role": "lead"
  10552. }
  10553. ],
  10554. "description": "Simple template engine.",
  10555. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  10556. "keywords": [
  10557. "template"
  10558. ],
  10559. "support": {
  10560. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  10561. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  10562. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
  10563. },
  10564. "funding": [
  10565. {
  10566. "url": "https://github.com/sebastianbergmann",
  10567. "type": "github"
  10568. }
  10569. ],
  10570. "time": "2023-08-31T14:07:24+00:00"
  10571. },
  10572. {
  10573. "name": "phpunit/php-timer",
  10574. "version": "6.0.0",
  10575. "source": {
  10576. "type": "git",
  10577. "url": "https://github.com/sebastianbergmann/php-timer.git",
  10578. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  10579. },
  10580. "dist": {
  10581. "type": "zip",
  10582. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  10583. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  10584. "shasum": ""
  10585. },
  10586. "require": {
  10587. "php": ">=8.1"
  10588. },
  10589. "require-dev": {
  10590. "phpunit/phpunit": "^10.0"
  10591. },
  10592. "type": "library",
  10593. "extra": {
  10594. "branch-alias": {
  10595. "dev-main": "6.0-dev"
  10596. }
  10597. },
  10598. "autoload": {
  10599. "classmap": [
  10600. "src/"
  10601. ]
  10602. },
  10603. "notification-url": "https://packagist.org/downloads/",
  10604. "license": [
  10605. "BSD-3-Clause"
  10606. ],
  10607. "authors": [
  10608. {
  10609. "name": "Sebastian Bergmann",
  10610. "email": "sebastian@phpunit.de",
  10611. "role": "lead"
  10612. }
  10613. ],
  10614. "description": "Utility class for timing",
  10615. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  10616. "keywords": [
  10617. "timer"
  10618. ],
  10619. "support": {
  10620. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  10621. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  10622. },
  10623. "funding": [
  10624. {
  10625. "url": "https://github.com/sebastianbergmann",
  10626. "type": "github"
  10627. }
  10628. ],
  10629. "time": "2023-02-03T06:57:52+00:00"
  10630. },
  10631. {
  10632. "name": "phpunit/phpunit",
  10633. "version": "10.5.21",
  10634. "source": {
  10635. "type": "git",
  10636. "url": "https://github.com/sebastianbergmann/phpunit.git",
  10637. "reference": "ac837816fa52078f7a5e17ed774f256a72a51af6"
  10638. },
  10639. "dist": {
  10640. "type": "zip",
  10641. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/ac837816fa52078f7a5e17ed774f256a72a51af6",
  10642. "reference": "ac837816fa52078f7a5e17ed774f256a72a51af6",
  10643. "shasum": ""
  10644. },
  10645. "require": {
  10646. "ext-dom": "*",
  10647. "ext-json": "*",
  10648. "ext-libxml": "*",
  10649. "ext-mbstring": "*",
  10650. "ext-xml": "*",
  10651. "ext-xmlwriter": "*",
  10652. "myclabs/deep-copy": "^1.10.1",
  10653. "phar-io/manifest": "^2.0.3",
  10654. "phar-io/version": "^3.0.2",
  10655. "php": ">=8.1",
  10656. "phpunit/php-code-coverage": "^10.1.5",
  10657. "phpunit/php-file-iterator": "^4.0",
  10658. "phpunit/php-invoker": "^4.0",
  10659. "phpunit/php-text-template": "^3.0",
  10660. "phpunit/php-timer": "^6.0",
  10661. "sebastian/cli-parser": "^2.0",
  10662. "sebastian/code-unit": "^2.0",
  10663. "sebastian/comparator": "^5.0",
  10664. "sebastian/diff": "^5.0",
  10665. "sebastian/environment": "^6.0",
  10666. "sebastian/exporter": "^5.1",
  10667. "sebastian/global-state": "^6.0.1",
  10668. "sebastian/object-enumerator": "^5.0",
  10669. "sebastian/recursion-context": "^5.0",
  10670. "sebastian/type": "^4.0",
  10671. "sebastian/version": "^4.0"
  10672. },
  10673. "suggest": {
  10674. "ext-soap": "To be able to generate mocks based on WSDL files"
  10675. },
  10676. "bin": [
  10677. "phpunit"
  10678. ],
  10679. "type": "library",
  10680. "extra": {
  10681. "branch-alias": {
  10682. "dev-main": "10.5-dev"
  10683. }
  10684. },
  10685. "autoload": {
  10686. "files": [
  10687. "src/Framework/Assert/Functions.php"
  10688. ],
  10689. "classmap": [
  10690. "src/"
  10691. ]
  10692. },
  10693. "notification-url": "https://packagist.org/downloads/",
  10694. "license": [
  10695. "BSD-3-Clause"
  10696. ],
  10697. "authors": [
  10698. {
  10699. "name": "Sebastian Bergmann",
  10700. "email": "sebastian@phpunit.de",
  10701. "role": "lead"
  10702. }
  10703. ],
  10704. "description": "The PHP Unit Testing framework.",
  10705. "homepage": "https://phpunit.de/",
  10706. "keywords": [
  10707. "phpunit",
  10708. "testing",
  10709. "xunit"
  10710. ],
  10711. "support": {
  10712. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  10713. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  10714. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.21"
  10715. },
  10716. "funding": [
  10717. {
  10718. "url": "https://phpunit.de/sponsors.html",
  10719. "type": "custom"
  10720. },
  10721. {
  10722. "url": "https://github.com/sebastianbergmann",
  10723. "type": "github"
  10724. },
  10725. {
  10726. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  10727. "type": "tidelift"
  10728. }
  10729. ],
  10730. "time": "2024-06-15T09:13:15+00:00"
  10731. },
  10732. {
  10733. "name": "sebastian/cli-parser",
  10734. "version": "2.0.1",
  10735. "source": {
  10736. "type": "git",
  10737. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  10738. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084"
  10739. },
  10740. "dist": {
  10741. "type": "zip",
  10742. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  10743. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  10744. "shasum": ""
  10745. },
  10746. "require": {
  10747. "php": ">=8.1"
  10748. },
  10749. "require-dev": {
  10750. "phpunit/phpunit": "^10.0"
  10751. },
  10752. "type": "library",
  10753. "extra": {
  10754. "branch-alias": {
  10755. "dev-main": "2.0-dev"
  10756. }
  10757. },
  10758. "autoload": {
  10759. "classmap": [
  10760. "src/"
  10761. ]
  10762. },
  10763. "notification-url": "https://packagist.org/downloads/",
  10764. "license": [
  10765. "BSD-3-Clause"
  10766. ],
  10767. "authors": [
  10768. {
  10769. "name": "Sebastian Bergmann",
  10770. "email": "sebastian@phpunit.de",
  10771. "role": "lead"
  10772. }
  10773. ],
  10774. "description": "Library for parsing CLI options",
  10775. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  10776. "support": {
  10777. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  10778. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  10779. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.1"
  10780. },
  10781. "funding": [
  10782. {
  10783. "url": "https://github.com/sebastianbergmann",
  10784. "type": "github"
  10785. }
  10786. ],
  10787. "time": "2024-03-02T07:12:49+00:00"
  10788. },
  10789. {
  10790. "name": "sebastian/code-unit",
  10791. "version": "2.0.0",
  10792. "source": {
  10793. "type": "git",
  10794. "url": "https://github.com/sebastianbergmann/code-unit.git",
  10795. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  10796. },
  10797. "dist": {
  10798. "type": "zip",
  10799. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  10800. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  10801. "shasum": ""
  10802. },
  10803. "require": {
  10804. "php": ">=8.1"
  10805. },
  10806. "require-dev": {
  10807. "phpunit/phpunit": "^10.0"
  10808. },
  10809. "type": "library",
  10810. "extra": {
  10811. "branch-alias": {
  10812. "dev-main": "2.0-dev"
  10813. }
  10814. },
  10815. "autoload": {
  10816. "classmap": [
  10817. "src/"
  10818. ]
  10819. },
  10820. "notification-url": "https://packagist.org/downloads/",
  10821. "license": [
  10822. "BSD-3-Clause"
  10823. ],
  10824. "authors": [
  10825. {
  10826. "name": "Sebastian Bergmann",
  10827. "email": "sebastian@phpunit.de",
  10828. "role": "lead"
  10829. }
  10830. ],
  10831. "description": "Collection of value objects that represent the PHP code units",
  10832. "homepage": "https://github.com/sebastianbergmann/code-unit",
  10833. "support": {
  10834. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  10835. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  10836. },
  10837. "funding": [
  10838. {
  10839. "url": "https://github.com/sebastianbergmann",
  10840. "type": "github"
  10841. }
  10842. ],
  10843. "time": "2023-02-03T06:58:43+00:00"
  10844. },
  10845. {
  10846. "name": "sebastian/code-unit-reverse-lookup",
  10847. "version": "3.0.0",
  10848. "source": {
  10849. "type": "git",
  10850. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  10851. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  10852. },
  10853. "dist": {
  10854. "type": "zip",
  10855. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  10856. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  10857. "shasum": ""
  10858. },
  10859. "require": {
  10860. "php": ">=8.1"
  10861. },
  10862. "require-dev": {
  10863. "phpunit/phpunit": "^10.0"
  10864. },
  10865. "type": "library",
  10866. "extra": {
  10867. "branch-alias": {
  10868. "dev-main": "3.0-dev"
  10869. }
  10870. },
  10871. "autoload": {
  10872. "classmap": [
  10873. "src/"
  10874. ]
  10875. },
  10876. "notification-url": "https://packagist.org/downloads/",
  10877. "license": [
  10878. "BSD-3-Clause"
  10879. ],
  10880. "authors": [
  10881. {
  10882. "name": "Sebastian Bergmann",
  10883. "email": "sebastian@phpunit.de"
  10884. }
  10885. ],
  10886. "description": "Looks up which function or method a line of code belongs to",
  10887. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  10888. "support": {
  10889. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  10890. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  10891. },
  10892. "funding": [
  10893. {
  10894. "url": "https://github.com/sebastianbergmann",
  10895. "type": "github"
  10896. }
  10897. ],
  10898. "time": "2023-02-03T06:59:15+00:00"
  10899. },
  10900. {
  10901. "name": "sebastian/comparator",
  10902. "version": "5.0.1",
  10903. "source": {
  10904. "type": "git",
  10905. "url": "https://github.com/sebastianbergmann/comparator.git",
  10906. "reference": "2db5010a484d53ebf536087a70b4a5423c102372"
  10907. },
  10908. "dist": {
  10909. "type": "zip",
  10910. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2db5010a484d53ebf536087a70b4a5423c102372",
  10911. "reference": "2db5010a484d53ebf536087a70b4a5423c102372",
  10912. "shasum": ""
  10913. },
  10914. "require": {
  10915. "ext-dom": "*",
  10916. "ext-mbstring": "*",
  10917. "php": ">=8.1",
  10918. "sebastian/diff": "^5.0",
  10919. "sebastian/exporter": "^5.0"
  10920. },
  10921. "require-dev": {
  10922. "phpunit/phpunit": "^10.3"
  10923. },
  10924. "type": "library",
  10925. "extra": {
  10926. "branch-alias": {
  10927. "dev-main": "5.0-dev"
  10928. }
  10929. },
  10930. "autoload": {
  10931. "classmap": [
  10932. "src/"
  10933. ]
  10934. },
  10935. "notification-url": "https://packagist.org/downloads/",
  10936. "license": [
  10937. "BSD-3-Clause"
  10938. ],
  10939. "authors": [
  10940. {
  10941. "name": "Sebastian Bergmann",
  10942. "email": "sebastian@phpunit.de"
  10943. },
  10944. {
  10945. "name": "Jeff Welch",
  10946. "email": "whatthejeff@gmail.com"
  10947. },
  10948. {
  10949. "name": "Volker Dusch",
  10950. "email": "github@wallbash.com"
  10951. },
  10952. {
  10953. "name": "Bernhard Schussek",
  10954. "email": "bschussek@2bepublished.at"
  10955. }
  10956. ],
  10957. "description": "Provides the functionality to compare PHP values for equality",
  10958. "homepage": "https://github.com/sebastianbergmann/comparator",
  10959. "keywords": [
  10960. "comparator",
  10961. "compare",
  10962. "equality"
  10963. ],
  10964. "support": {
  10965. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  10966. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  10967. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.1"
  10968. },
  10969. "funding": [
  10970. {
  10971. "url": "https://github.com/sebastianbergmann",
  10972. "type": "github"
  10973. }
  10974. ],
  10975. "time": "2023-08-14T13:18:12+00:00"
  10976. },
  10977. {
  10978. "name": "sebastian/complexity",
  10979. "version": "3.2.0",
  10980. "source": {
  10981. "type": "git",
  10982. "url": "https://github.com/sebastianbergmann/complexity.git",
  10983. "reference": "68ff824baeae169ec9f2137158ee529584553799"
  10984. },
  10985. "dist": {
  10986. "type": "zip",
  10987. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799",
  10988. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  10989. "shasum": ""
  10990. },
  10991. "require": {
  10992. "nikic/php-parser": "^4.18 || ^5.0",
  10993. "php": ">=8.1"
  10994. },
  10995. "require-dev": {
  10996. "phpunit/phpunit": "^10.0"
  10997. },
  10998. "type": "library",
  10999. "extra": {
  11000. "branch-alias": {
  11001. "dev-main": "3.2-dev"
  11002. }
  11003. },
  11004. "autoload": {
  11005. "classmap": [
  11006. "src/"
  11007. ]
  11008. },
  11009. "notification-url": "https://packagist.org/downloads/",
  11010. "license": [
  11011. "BSD-3-Clause"
  11012. ],
  11013. "authors": [
  11014. {
  11015. "name": "Sebastian Bergmann",
  11016. "email": "sebastian@phpunit.de",
  11017. "role": "lead"
  11018. }
  11019. ],
  11020. "description": "Library for calculating the complexity of PHP code units",
  11021. "homepage": "https://github.com/sebastianbergmann/complexity",
  11022. "support": {
  11023. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  11024. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  11025. "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0"
  11026. },
  11027. "funding": [
  11028. {
  11029. "url": "https://github.com/sebastianbergmann",
  11030. "type": "github"
  11031. }
  11032. ],
  11033. "time": "2023-12-21T08:37:17+00:00"
  11034. },
  11035. {
  11036. "name": "sebastian/diff",
  11037. "version": "5.1.1",
  11038. "source": {
  11039. "type": "git",
  11040. "url": "https://github.com/sebastianbergmann/diff.git",
  11041. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e"
  11042. },
  11043. "dist": {
  11044. "type": "zip",
  11045. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e",
  11046. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e",
  11047. "shasum": ""
  11048. },
  11049. "require": {
  11050. "php": ">=8.1"
  11051. },
  11052. "require-dev": {
  11053. "phpunit/phpunit": "^10.0",
  11054. "symfony/process": "^6.4"
  11055. },
  11056. "type": "library",
  11057. "extra": {
  11058. "branch-alias": {
  11059. "dev-main": "5.1-dev"
  11060. }
  11061. },
  11062. "autoload": {
  11063. "classmap": [
  11064. "src/"
  11065. ]
  11066. },
  11067. "notification-url": "https://packagist.org/downloads/",
  11068. "license": [
  11069. "BSD-3-Clause"
  11070. ],
  11071. "authors": [
  11072. {
  11073. "name": "Sebastian Bergmann",
  11074. "email": "sebastian@phpunit.de"
  11075. },
  11076. {
  11077. "name": "Kore Nordmann",
  11078. "email": "mail@kore-nordmann.de"
  11079. }
  11080. ],
  11081. "description": "Diff implementation",
  11082. "homepage": "https://github.com/sebastianbergmann/diff",
  11083. "keywords": [
  11084. "diff",
  11085. "udiff",
  11086. "unidiff",
  11087. "unified diff"
  11088. ],
  11089. "support": {
  11090. "issues": "https://github.com/sebastianbergmann/diff/issues",
  11091. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  11092. "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1"
  11093. },
  11094. "funding": [
  11095. {
  11096. "url": "https://github.com/sebastianbergmann",
  11097. "type": "github"
  11098. }
  11099. ],
  11100. "time": "2024-03-02T07:15:17+00:00"
  11101. },
  11102. {
  11103. "name": "sebastian/environment",
  11104. "version": "6.1.0",
  11105. "source": {
  11106. "type": "git",
  11107. "url": "https://github.com/sebastianbergmann/environment.git",
  11108. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984"
  11109. },
  11110. "dist": {
  11111. "type": "zip",
  11112. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984",
  11113. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984",
  11114. "shasum": ""
  11115. },
  11116. "require": {
  11117. "php": ">=8.1"
  11118. },
  11119. "require-dev": {
  11120. "phpunit/phpunit": "^10.0"
  11121. },
  11122. "suggest": {
  11123. "ext-posix": "*"
  11124. },
  11125. "type": "library",
  11126. "extra": {
  11127. "branch-alias": {
  11128. "dev-main": "6.1-dev"
  11129. }
  11130. },
  11131. "autoload": {
  11132. "classmap": [
  11133. "src/"
  11134. ]
  11135. },
  11136. "notification-url": "https://packagist.org/downloads/",
  11137. "license": [
  11138. "BSD-3-Clause"
  11139. ],
  11140. "authors": [
  11141. {
  11142. "name": "Sebastian Bergmann",
  11143. "email": "sebastian@phpunit.de"
  11144. }
  11145. ],
  11146. "description": "Provides functionality to handle HHVM/PHP environments",
  11147. "homepage": "https://github.com/sebastianbergmann/environment",
  11148. "keywords": [
  11149. "Xdebug",
  11150. "environment",
  11151. "hhvm"
  11152. ],
  11153. "support": {
  11154. "issues": "https://github.com/sebastianbergmann/environment/issues",
  11155. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  11156. "source": "https://github.com/sebastianbergmann/environment/tree/6.1.0"
  11157. },
  11158. "funding": [
  11159. {
  11160. "url": "https://github.com/sebastianbergmann",
  11161. "type": "github"
  11162. }
  11163. ],
  11164. "time": "2024-03-23T08:47:14+00:00"
  11165. },
  11166. {
  11167. "name": "sebastian/exporter",
  11168. "version": "5.1.2",
  11169. "source": {
  11170. "type": "git",
  11171. "url": "https://github.com/sebastianbergmann/exporter.git",
  11172. "reference": "955288482d97c19a372d3f31006ab3f37da47adf"
  11173. },
  11174. "dist": {
  11175. "type": "zip",
  11176. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf",
  11177. "reference": "955288482d97c19a372d3f31006ab3f37da47adf",
  11178. "shasum": ""
  11179. },
  11180. "require": {
  11181. "ext-mbstring": "*",
  11182. "php": ">=8.1",
  11183. "sebastian/recursion-context": "^5.0"
  11184. },
  11185. "require-dev": {
  11186. "phpunit/phpunit": "^10.0"
  11187. },
  11188. "type": "library",
  11189. "extra": {
  11190. "branch-alias": {
  11191. "dev-main": "5.1-dev"
  11192. }
  11193. },
  11194. "autoload": {
  11195. "classmap": [
  11196. "src/"
  11197. ]
  11198. },
  11199. "notification-url": "https://packagist.org/downloads/",
  11200. "license": [
  11201. "BSD-3-Clause"
  11202. ],
  11203. "authors": [
  11204. {
  11205. "name": "Sebastian Bergmann",
  11206. "email": "sebastian@phpunit.de"
  11207. },
  11208. {
  11209. "name": "Jeff Welch",
  11210. "email": "whatthejeff@gmail.com"
  11211. },
  11212. {
  11213. "name": "Volker Dusch",
  11214. "email": "github@wallbash.com"
  11215. },
  11216. {
  11217. "name": "Adam Harvey",
  11218. "email": "aharvey@php.net"
  11219. },
  11220. {
  11221. "name": "Bernhard Schussek",
  11222. "email": "bschussek@gmail.com"
  11223. }
  11224. ],
  11225. "description": "Provides the functionality to export PHP variables for visualization",
  11226. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  11227. "keywords": [
  11228. "export",
  11229. "exporter"
  11230. ],
  11231. "support": {
  11232. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  11233. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  11234. "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.2"
  11235. },
  11236. "funding": [
  11237. {
  11238. "url": "https://github.com/sebastianbergmann",
  11239. "type": "github"
  11240. }
  11241. ],
  11242. "time": "2024-03-02T07:17:12+00:00"
  11243. },
  11244. {
  11245. "name": "sebastian/global-state",
  11246. "version": "6.0.2",
  11247. "source": {
  11248. "type": "git",
  11249. "url": "https://github.com/sebastianbergmann/global-state.git",
  11250. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9"
  11251. },
  11252. "dist": {
  11253. "type": "zip",
  11254. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  11255. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  11256. "shasum": ""
  11257. },
  11258. "require": {
  11259. "php": ">=8.1",
  11260. "sebastian/object-reflector": "^3.0",
  11261. "sebastian/recursion-context": "^5.0"
  11262. },
  11263. "require-dev": {
  11264. "ext-dom": "*",
  11265. "phpunit/phpunit": "^10.0"
  11266. },
  11267. "type": "library",
  11268. "extra": {
  11269. "branch-alias": {
  11270. "dev-main": "6.0-dev"
  11271. }
  11272. },
  11273. "autoload": {
  11274. "classmap": [
  11275. "src/"
  11276. ]
  11277. },
  11278. "notification-url": "https://packagist.org/downloads/",
  11279. "license": [
  11280. "BSD-3-Clause"
  11281. ],
  11282. "authors": [
  11283. {
  11284. "name": "Sebastian Bergmann",
  11285. "email": "sebastian@phpunit.de"
  11286. }
  11287. ],
  11288. "description": "Snapshotting of global state",
  11289. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  11290. "keywords": [
  11291. "global state"
  11292. ],
  11293. "support": {
  11294. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  11295. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  11296. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.2"
  11297. },
  11298. "funding": [
  11299. {
  11300. "url": "https://github.com/sebastianbergmann",
  11301. "type": "github"
  11302. }
  11303. ],
  11304. "time": "2024-03-02T07:19:19+00:00"
  11305. },
  11306. {
  11307. "name": "sebastian/lines-of-code",
  11308. "version": "2.0.2",
  11309. "source": {
  11310. "type": "git",
  11311. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  11312. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0"
  11313. },
  11314. "dist": {
  11315. "type": "zip",
  11316. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0",
  11317. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  11318. "shasum": ""
  11319. },
  11320. "require": {
  11321. "nikic/php-parser": "^4.18 || ^5.0",
  11322. "php": ">=8.1"
  11323. },
  11324. "require-dev": {
  11325. "phpunit/phpunit": "^10.0"
  11326. },
  11327. "type": "library",
  11328. "extra": {
  11329. "branch-alias": {
  11330. "dev-main": "2.0-dev"
  11331. }
  11332. },
  11333. "autoload": {
  11334. "classmap": [
  11335. "src/"
  11336. ]
  11337. },
  11338. "notification-url": "https://packagist.org/downloads/",
  11339. "license": [
  11340. "BSD-3-Clause"
  11341. ],
  11342. "authors": [
  11343. {
  11344. "name": "Sebastian Bergmann",
  11345. "email": "sebastian@phpunit.de",
  11346. "role": "lead"
  11347. }
  11348. ],
  11349. "description": "Library for counting the lines of code in PHP source code",
  11350. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  11351. "support": {
  11352. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  11353. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  11354. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2"
  11355. },
  11356. "funding": [
  11357. {
  11358. "url": "https://github.com/sebastianbergmann",
  11359. "type": "github"
  11360. }
  11361. ],
  11362. "time": "2023-12-21T08:38:20+00:00"
  11363. },
  11364. {
  11365. "name": "sebastian/object-enumerator",
  11366. "version": "5.0.0",
  11367. "source": {
  11368. "type": "git",
  11369. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  11370. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  11371. },
  11372. "dist": {
  11373. "type": "zip",
  11374. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  11375. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  11376. "shasum": ""
  11377. },
  11378. "require": {
  11379. "php": ">=8.1",
  11380. "sebastian/object-reflector": "^3.0",
  11381. "sebastian/recursion-context": "^5.0"
  11382. },
  11383. "require-dev": {
  11384. "phpunit/phpunit": "^10.0"
  11385. },
  11386. "type": "library",
  11387. "extra": {
  11388. "branch-alias": {
  11389. "dev-main": "5.0-dev"
  11390. }
  11391. },
  11392. "autoload": {
  11393. "classmap": [
  11394. "src/"
  11395. ]
  11396. },
  11397. "notification-url": "https://packagist.org/downloads/",
  11398. "license": [
  11399. "BSD-3-Clause"
  11400. ],
  11401. "authors": [
  11402. {
  11403. "name": "Sebastian Bergmann",
  11404. "email": "sebastian@phpunit.de"
  11405. }
  11406. ],
  11407. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  11408. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  11409. "support": {
  11410. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  11411. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  11412. },
  11413. "funding": [
  11414. {
  11415. "url": "https://github.com/sebastianbergmann",
  11416. "type": "github"
  11417. }
  11418. ],
  11419. "time": "2023-02-03T07:08:32+00:00"
  11420. },
  11421. {
  11422. "name": "sebastian/object-reflector",
  11423. "version": "3.0.0",
  11424. "source": {
  11425. "type": "git",
  11426. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  11427. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  11428. },
  11429. "dist": {
  11430. "type": "zip",
  11431. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  11432. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  11433. "shasum": ""
  11434. },
  11435. "require": {
  11436. "php": ">=8.1"
  11437. },
  11438. "require-dev": {
  11439. "phpunit/phpunit": "^10.0"
  11440. },
  11441. "type": "library",
  11442. "extra": {
  11443. "branch-alias": {
  11444. "dev-main": "3.0-dev"
  11445. }
  11446. },
  11447. "autoload": {
  11448. "classmap": [
  11449. "src/"
  11450. ]
  11451. },
  11452. "notification-url": "https://packagist.org/downloads/",
  11453. "license": [
  11454. "BSD-3-Clause"
  11455. ],
  11456. "authors": [
  11457. {
  11458. "name": "Sebastian Bergmann",
  11459. "email": "sebastian@phpunit.de"
  11460. }
  11461. ],
  11462. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  11463. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  11464. "support": {
  11465. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  11466. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  11467. },
  11468. "funding": [
  11469. {
  11470. "url": "https://github.com/sebastianbergmann",
  11471. "type": "github"
  11472. }
  11473. ],
  11474. "time": "2023-02-03T07:06:18+00:00"
  11475. },
  11476. {
  11477. "name": "sebastian/recursion-context",
  11478. "version": "5.0.0",
  11479. "source": {
  11480. "type": "git",
  11481. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  11482. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  11483. },
  11484. "dist": {
  11485. "type": "zip",
  11486. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  11487. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  11488. "shasum": ""
  11489. },
  11490. "require": {
  11491. "php": ">=8.1"
  11492. },
  11493. "require-dev": {
  11494. "phpunit/phpunit": "^10.0"
  11495. },
  11496. "type": "library",
  11497. "extra": {
  11498. "branch-alias": {
  11499. "dev-main": "5.0-dev"
  11500. }
  11501. },
  11502. "autoload": {
  11503. "classmap": [
  11504. "src/"
  11505. ]
  11506. },
  11507. "notification-url": "https://packagist.org/downloads/",
  11508. "license": [
  11509. "BSD-3-Clause"
  11510. ],
  11511. "authors": [
  11512. {
  11513. "name": "Sebastian Bergmann",
  11514. "email": "sebastian@phpunit.de"
  11515. },
  11516. {
  11517. "name": "Jeff Welch",
  11518. "email": "whatthejeff@gmail.com"
  11519. },
  11520. {
  11521. "name": "Adam Harvey",
  11522. "email": "aharvey@php.net"
  11523. }
  11524. ],
  11525. "description": "Provides functionality to recursively process PHP variables",
  11526. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  11527. "support": {
  11528. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  11529. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  11530. },
  11531. "funding": [
  11532. {
  11533. "url": "https://github.com/sebastianbergmann",
  11534. "type": "github"
  11535. }
  11536. ],
  11537. "time": "2023-02-03T07:05:40+00:00"
  11538. },
  11539. {
  11540. "name": "sebastian/type",
  11541. "version": "4.0.0",
  11542. "source": {
  11543. "type": "git",
  11544. "url": "https://github.com/sebastianbergmann/type.git",
  11545. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  11546. },
  11547. "dist": {
  11548. "type": "zip",
  11549. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  11550. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  11551. "shasum": ""
  11552. },
  11553. "require": {
  11554. "php": ">=8.1"
  11555. },
  11556. "require-dev": {
  11557. "phpunit/phpunit": "^10.0"
  11558. },
  11559. "type": "library",
  11560. "extra": {
  11561. "branch-alias": {
  11562. "dev-main": "4.0-dev"
  11563. }
  11564. },
  11565. "autoload": {
  11566. "classmap": [
  11567. "src/"
  11568. ]
  11569. },
  11570. "notification-url": "https://packagist.org/downloads/",
  11571. "license": [
  11572. "BSD-3-Clause"
  11573. ],
  11574. "authors": [
  11575. {
  11576. "name": "Sebastian Bergmann",
  11577. "email": "sebastian@phpunit.de",
  11578. "role": "lead"
  11579. }
  11580. ],
  11581. "description": "Collection of value objects that represent the types of the PHP type system",
  11582. "homepage": "https://github.com/sebastianbergmann/type",
  11583. "support": {
  11584. "issues": "https://github.com/sebastianbergmann/type/issues",
  11585. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  11586. },
  11587. "funding": [
  11588. {
  11589. "url": "https://github.com/sebastianbergmann",
  11590. "type": "github"
  11591. }
  11592. ],
  11593. "time": "2023-02-03T07:10:45+00:00"
  11594. },
  11595. {
  11596. "name": "sebastian/version",
  11597. "version": "4.0.1",
  11598. "source": {
  11599. "type": "git",
  11600. "url": "https://github.com/sebastianbergmann/version.git",
  11601. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  11602. },
  11603. "dist": {
  11604. "type": "zip",
  11605. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  11606. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  11607. "shasum": ""
  11608. },
  11609. "require": {
  11610. "php": ">=8.1"
  11611. },
  11612. "type": "library",
  11613. "extra": {
  11614. "branch-alias": {
  11615. "dev-main": "4.0-dev"
  11616. }
  11617. },
  11618. "autoload": {
  11619. "classmap": [
  11620. "src/"
  11621. ]
  11622. },
  11623. "notification-url": "https://packagist.org/downloads/",
  11624. "license": [
  11625. "BSD-3-Clause"
  11626. ],
  11627. "authors": [
  11628. {
  11629. "name": "Sebastian Bergmann",
  11630. "email": "sebastian@phpunit.de",
  11631. "role": "lead"
  11632. }
  11633. ],
  11634. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  11635. "homepage": "https://github.com/sebastianbergmann/version",
  11636. "support": {
  11637. "issues": "https://github.com/sebastianbergmann/version/issues",
  11638. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  11639. },
  11640. "funding": [
  11641. {
  11642. "url": "https://github.com/sebastianbergmann",
  11643. "type": "github"
  11644. }
  11645. ],
  11646. "time": "2023-02-07T11:34:05+00:00"
  11647. },
  11648. {
  11649. "name": "spatie/backtrace",
  11650. "version": "1.6.1",
  11651. "source": {
  11652. "type": "git",
  11653. "url": "https://github.com/spatie/backtrace.git",
  11654. "reference": "8373b9d51638292e3bfd736a9c19a654111b4a23"
  11655. },
  11656. "dist": {
  11657. "type": "zip",
  11658. "url": "https://api.github.com/repos/spatie/backtrace/zipball/8373b9d51638292e3bfd736a9c19a654111b4a23",
  11659. "reference": "8373b9d51638292e3bfd736a9c19a654111b4a23",
  11660. "shasum": ""
  11661. },
  11662. "require": {
  11663. "php": "^7.3|^8.0"
  11664. },
  11665. "require-dev": {
  11666. "ext-json": "*",
  11667. "laravel/serializable-closure": "^1.3",
  11668. "phpunit/phpunit": "^9.3",
  11669. "spatie/phpunit-snapshot-assertions": "^4.2",
  11670. "symfony/var-dumper": "^5.1"
  11671. },
  11672. "type": "library",
  11673. "autoload": {
  11674. "psr-4": {
  11675. "Spatie\\Backtrace\\": "src"
  11676. }
  11677. },
  11678. "notification-url": "https://packagist.org/downloads/",
  11679. "license": [
  11680. "MIT"
  11681. ],
  11682. "authors": [
  11683. {
  11684. "name": "Freek Van de Herten",
  11685. "email": "freek@spatie.be",
  11686. "homepage": "https://spatie.be",
  11687. "role": "Developer"
  11688. }
  11689. ],
  11690. "description": "A better backtrace",
  11691. "homepage": "https://github.com/spatie/backtrace",
  11692. "keywords": [
  11693. "Backtrace",
  11694. "spatie"
  11695. ],
  11696. "support": {
  11697. "source": "https://github.com/spatie/backtrace/tree/1.6.1"
  11698. },
  11699. "funding": [
  11700. {
  11701. "url": "https://github.com/sponsors/spatie",
  11702. "type": "github"
  11703. },
  11704. {
  11705. "url": "https://spatie.be/open-source/support-us",
  11706. "type": "other"
  11707. }
  11708. ],
  11709. "time": "2024-04-24T13:22:11+00:00"
  11710. },
  11711. {
  11712. "name": "spatie/error-solutions",
  11713. "version": "1.0.0",
  11714. "source": {
  11715. "type": "git",
  11716. "url": "https://github.com/spatie/error-solutions.git",
  11717. "reference": "202108314a6988ede156fba1b3ea80a784c1734a"
  11718. },
  11719. "dist": {
  11720. "type": "zip",
  11721. "url": "https://api.github.com/repos/spatie/error-solutions/zipball/202108314a6988ede156fba1b3ea80a784c1734a",
  11722. "reference": "202108314a6988ede156fba1b3ea80a784c1734a",
  11723. "shasum": ""
  11724. },
  11725. "require": {
  11726. "php": "^8.0"
  11727. },
  11728. "require-dev": {
  11729. "illuminate/broadcasting": "^10.0|^11.0",
  11730. "illuminate/cache": "^10.0|^11.0",
  11731. "illuminate/support": "^10.0|^11.0",
  11732. "livewire/livewire": "^2.11|^3.3.5",
  11733. "openai-php/client": "^0.10.1",
  11734. "orchestra/testbench": "^7.0|8.22.3|^9.0",
  11735. "pestphp/pest": "^2.20",
  11736. "phpstan/phpstan": "^1.11",
  11737. "psr/simple-cache": "^3.0",
  11738. "psr/simple-cache-implementation": "^3.0",
  11739. "spatie/ray": "^1.28",
  11740. "symfony/cache": "^5.4|^6.0|^7.0",
  11741. "symfony/process": "^5.4|^6.0|^7.0",
  11742. "vlucas/phpdotenv": "^5.5"
  11743. },
  11744. "suggest": {
  11745. "openai-php/client": "Require get solutions from OpenAI",
  11746. "simple-cache-implementation": "To cache solutions from OpenAI"
  11747. },
  11748. "type": "library",
  11749. "autoload": {
  11750. "psr-4": {
  11751. "Spatie\\Ignition\\": "legacy/ignition",
  11752. "Spatie\\ErrorSolutions\\": "src",
  11753. "Spatie\\LaravelIgnition\\": "legacy/laravel-ignition"
  11754. }
  11755. },
  11756. "notification-url": "https://packagist.org/downloads/",
  11757. "license": [
  11758. "MIT"
  11759. ],
  11760. "authors": [
  11761. {
  11762. "name": "Ruben Van Assche",
  11763. "email": "ruben@spatie.be",
  11764. "role": "Developer"
  11765. }
  11766. ],
  11767. "description": "This is my package error-solutions",
  11768. "homepage": "https://github.com/spatie/error-solutions",
  11769. "keywords": [
  11770. "error-solutions",
  11771. "spatie"
  11772. ],
  11773. "support": {
  11774. "issues": "https://github.com/spatie/error-solutions/issues",
  11775. "source": "https://github.com/spatie/error-solutions/tree/1.0.0"
  11776. },
  11777. "funding": [
  11778. {
  11779. "url": "https://github.com/Spatie",
  11780. "type": "github"
  11781. }
  11782. ],
  11783. "time": "2024-06-12T14:49:54+00:00"
  11784. },
  11785. {
  11786. "name": "spatie/flare-client-php",
  11787. "version": "1.7.0",
  11788. "source": {
  11789. "type": "git",
  11790. "url": "https://github.com/spatie/flare-client-php.git",
  11791. "reference": "097040ff51e660e0f6fc863684ac4b02c93fa234"
  11792. },
  11793. "dist": {
  11794. "type": "zip",
  11795. "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/097040ff51e660e0f6fc863684ac4b02c93fa234",
  11796. "reference": "097040ff51e660e0f6fc863684ac4b02c93fa234",
  11797. "shasum": ""
  11798. },
  11799. "require": {
  11800. "illuminate/pipeline": "^8.0|^9.0|^10.0|^11.0",
  11801. "php": "^8.0",
  11802. "spatie/backtrace": "^1.6.1",
  11803. "symfony/http-foundation": "^5.2|^6.0|^7.0",
  11804. "symfony/mime": "^5.2|^6.0|^7.0",
  11805. "symfony/process": "^5.2|^6.0|^7.0",
  11806. "symfony/var-dumper": "^5.2|^6.0|^7.0"
  11807. },
  11808. "require-dev": {
  11809. "dms/phpunit-arraysubset-asserts": "^0.5.0",
  11810. "pestphp/pest": "^1.20|^2.0",
  11811. "phpstan/extension-installer": "^1.1",
  11812. "phpstan/phpstan-deprecation-rules": "^1.0",
  11813. "phpstan/phpstan-phpunit": "^1.0",
  11814. "spatie/phpunit-snapshot-assertions": "^4.0|^5.0"
  11815. },
  11816. "type": "library",
  11817. "extra": {
  11818. "branch-alias": {
  11819. "dev-main": "1.3.x-dev"
  11820. }
  11821. },
  11822. "autoload": {
  11823. "files": [
  11824. "src/helpers.php"
  11825. ],
  11826. "psr-4": {
  11827. "Spatie\\FlareClient\\": "src"
  11828. }
  11829. },
  11830. "notification-url": "https://packagist.org/downloads/",
  11831. "license": [
  11832. "MIT"
  11833. ],
  11834. "description": "Send PHP errors to Flare",
  11835. "homepage": "https://github.com/spatie/flare-client-php",
  11836. "keywords": [
  11837. "exception",
  11838. "flare",
  11839. "reporting",
  11840. "spatie"
  11841. ],
  11842. "support": {
  11843. "issues": "https://github.com/spatie/flare-client-php/issues",
  11844. "source": "https://github.com/spatie/flare-client-php/tree/1.7.0"
  11845. },
  11846. "funding": [
  11847. {
  11848. "url": "https://github.com/spatie",
  11849. "type": "github"
  11850. }
  11851. ],
  11852. "time": "2024-06-12T14:39:14+00:00"
  11853. },
  11854. {
  11855. "name": "spatie/ignition",
  11856. "version": "1.15.0",
  11857. "source": {
  11858. "type": "git",
  11859. "url": "https://github.com/spatie/ignition.git",
  11860. "reference": "e3a68e137371e1eb9edc7f78ffa733f3b98991d2"
  11861. },
  11862. "dist": {
  11863. "type": "zip",
  11864. "url": "https://api.github.com/repos/spatie/ignition/zipball/e3a68e137371e1eb9edc7f78ffa733f3b98991d2",
  11865. "reference": "e3a68e137371e1eb9edc7f78ffa733f3b98991d2",
  11866. "shasum": ""
  11867. },
  11868. "require": {
  11869. "ext-json": "*",
  11870. "ext-mbstring": "*",
  11871. "php": "^8.0",
  11872. "spatie/error-solutions": "^1.0",
  11873. "spatie/flare-client-php": "^1.7",
  11874. "symfony/console": "^5.4|^6.0|^7.0",
  11875. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  11876. },
  11877. "require-dev": {
  11878. "illuminate/cache": "^9.52|^10.0|^11.0",
  11879. "mockery/mockery": "^1.4",
  11880. "pestphp/pest": "^1.20|^2.0",
  11881. "phpstan/extension-installer": "^1.1",
  11882. "phpstan/phpstan-deprecation-rules": "^1.0",
  11883. "phpstan/phpstan-phpunit": "^1.0",
  11884. "psr/simple-cache-implementation": "*",
  11885. "symfony/cache": "^5.4|^6.0|^7.0",
  11886. "symfony/process": "^5.4|^6.0|^7.0",
  11887. "vlucas/phpdotenv": "^5.5"
  11888. },
  11889. "suggest": {
  11890. "openai-php/client": "Require get solutions from OpenAI",
  11891. "simple-cache-implementation": "To cache solutions from OpenAI"
  11892. },
  11893. "type": "library",
  11894. "extra": {
  11895. "branch-alias": {
  11896. "dev-main": "1.5.x-dev"
  11897. }
  11898. },
  11899. "autoload": {
  11900. "psr-4": {
  11901. "Spatie\\Ignition\\": "src"
  11902. }
  11903. },
  11904. "notification-url": "https://packagist.org/downloads/",
  11905. "license": [
  11906. "MIT"
  11907. ],
  11908. "authors": [
  11909. {
  11910. "name": "Spatie",
  11911. "email": "info@spatie.be",
  11912. "role": "Developer"
  11913. }
  11914. ],
  11915. "description": "A beautiful error page for PHP applications.",
  11916. "homepage": "https://flareapp.io/ignition",
  11917. "keywords": [
  11918. "error",
  11919. "flare",
  11920. "laravel",
  11921. "page"
  11922. ],
  11923. "support": {
  11924. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  11925. "forum": "https://twitter.com/flareappio",
  11926. "issues": "https://github.com/spatie/ignition/issues",
  11927. "source": "https://github.com/spatie/ignition"
  11928. },
  11929. "funding": [
  11930. {
  11931. "url": "https://github.com/spatie",
  11932. "type": "github"
  11933. }
  11934. ],
  11935. "time": "2024-06-12T14:55:22+00:00"
  11936. },
  11937. {
  11938. "name": "spatie/laravel-ignition",
  11939. "version": "2.8.0",
  11940. "source": {
  11941. "type": "git",
  11942. "url": "https://github.com/spatie/laravel-ignition.git",
  11943. "reference": "3c067b75bfb50574db8f7e2c3978c65eed71126c"
  11944. },
  11945. "dist": {
  11946. "type": "zip",
  11947. "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/3c067b75bfb50574db8f7e2c3978c65eed71126c",
  11948. "reference": "3c067b75bfb50574db8f7e2c3978c65eed71126c",
  11949. "shasum": ""
  11950. },
  11951. "require": {
  11952. "ext-curl": "*",
  11953. "ext-json": "*",
  11954. "ext-mbstring": "*",
  11955. "illuminate/support": "^10.0|^11.0",
  11956. "php": "^8.1",
  11957. "spatie/ignition": "^1.15",
  11958. "symfony/console": "^6.2.3|^7.0",
  11959. "symfony/var-dumper": "^6.2.3|^7.0"
  11960. },
  11961. "require-dev": {
  11962. "livewire/livewire": "^2.11|^3.3.5",
  11963. "mockery/mockery": "^1.5.1",
  11964. "openai-php/client": "^0.8.1",
  11965. "orchestra/testbench": "8.22.3|^9.0",
  11966. "pestphp/pest": "^2.34",
  11967. "phpstan/extension-installer": "^1.3.1",
  11968. "phpstan/phpstan-deprecation-rules": "^1.1.1",
  11969. "phpstan/phpstan-phpunit": "^1.3.16",
  11970. "vlucas/phpdotenv": "^5.5"
  11971. },
  11972. "suggest": {
  11973. "openai-php/client": "Require get solutions from OpenAI",
  11974. "psr/simple-cache-implementation": "Needed to cache solutions from OpenAI"
  11975. },
  11976. "type": "library",
  11977. "extra": {
  11978. "laravel": {
  11979. "providers": [
  11980. "Spatie\\LaravelIgnition\\IgnitionServiceProvider"
  11981. ],
  11982. "aliases": {
  11983. "Flare": "Spatie\\LaravelIgnition\\Facades\\Flare"
  11984. }
  11985. }
  11986. },
  11987. "autoload": {
  11988. "files": [
  11989. "src/helpers.php"
  11990. ],
  11991. "psr-4": {
  11992. "Spatie\\LaravelIgnition\\": "src"
  11993. }
  11994. },
  11995. "notification-url": "https://packagist.org/downloads/",
  11996. "license": [
  11997. "MIT"
  11998. ],
  11999. "authors": [
  12000. {
  12001. "name": "Spatie",
  12002. "email": "info@spatie.be",
  12003. "role": "Developer"
  12004. }
  12005. ],
  12006. "description": "A beautiful error page for Laravel applications.",
  12007. "homepage": "https://flareapp.io/ignition",
  12008. "keywords": [
  12009. "error",
  12010. "flare",
  12011. "laravel",
  12012. "page"
  12013. ],
  12014. "support": {
  12015. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  12016. "forum": "https://twitter.com/flareappio",
  12017. "issues": "https://github.com/spatie/laravel-ignition/issues",
  12018. "source": "https://github.com/spatie/laravel-ignition"
  12019. },
  12020. "funding": [
  12021. {
  12022. "url": "https://github.com/spatie",
  12023. "type": "github"
  12024. }
  12025. ],
  12026. "time": "2024-06-12T15:01:18+00:00"
  12027. },
  12028. {
  12029. "name": "symfony/yaml",
  12030. "version": "v7.1.1",
  12031. "source": {
  12032. "type": "git",
  12033. "url": "https://github.com/symfony/yaml.git",
  12034. "reference": "fa34c77015aa6720469db7003567b9f772492bf2"
  12035. },
  12036. "dist": {
  12037. "type": "zip",
  12038. "url": "https://api.github.com/repos/symfony/yaml/zipball/fa34c77015aa6720469db7003567b9f772492bf2",
  12039. "reference": "fa34c77015aa6720469db7003567b9f772492bf2",
  12040. "shasum": ""
  12041. },
  12042. "require": {
  12043. "php": ">=8.2",
  12044. "symfony/polyfill-ctype": "^1.8"
  12045. },
  12046. "conflict": {
  12047. "symfony/console": "<6.4"
  12048. },
  12049. "require-dev": {
  12050. "symfony/console": "^6.4|^7.0"
  12051. },
  12052. "bin": [
  12053. "Resources/bin/yaml-lint"
  12054. ],
  12055. "type": "library",
  12056. "autoload": {
  12057. "psr-4": {
  12058. "Symfony\\Component\\Yaml\\": ""
  12059. },
  12060. "exclude-from-classmap": [
  12061. "/Tests/"
  12062. ]
  12063. },
  12064. "notification-url": "https://packagist.org/downloads/",
  12065. "license": [
  12066. "MIT"
  12067. ],
  12068. "authors": [
  12069. {
  12070. "name": "Fabien Potencier",
  12071. "email": "fabien@symfony.com"
  12072. },
  12073. {
  12074. "name": "Symfony Community",
  12075. "homepage": "https://symfony.com/contributors"
  12076. }
  12077. ],
  12078. "description": "Loads and dumps YAML files",
  12079. "homepage": "https://symfony.com",
  12080. "support": {
  12081. "source": "https://github.com/symfony/yaml/tree/v7.1.1"
  12082. },
  12083. "funding": [
  12084. {
  12085. "url": "https://symfony.com/sponsor",
  12086. "type": "custom"
  12087. },
  12088. {
  12089. "url": "https://github.com/fabpot",
  12090. "type": "github"
  12091. },
  12092. {
  12093. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12094. "type": "tidelift"
  12095. }
  12096. ],
  12097. "time": "2024-05-31T14:57:53+00:00"
  12098. },
  12099. {
  12100. "name": "theseer/tokenizer",
  12101. "version": "1.2.3",
  12102. "source": {
  12103. "type": "git",
  12104. "url": "https://github.com/theseer/tokenizer.git",
  12105. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  12106. },
  12107. "dist": {
  12108. "type": "zip",
  12109. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  12110. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  12111. "shasum": ""
  12112. },
  12113. "require": {
  12114. "ext-dom": "*",
  12115. "ext-tokenizer": "*",
  12116. "ext-xmlwriter": "*",
  12117. "php": "^7.2 || ^8.0"
  12118. },
  12119. "type": "library",
  12120. "autoload": {
  12121. "classmap": [
  12122. "src/"
  12123. ]
  12124. },
  12125. "notification-url": "https://packagist.org/downloads/",
  12126. "license": [
  12127. "BSD-3-Clause"
  12128. ],
  12129. "authors": [
  12130. {
  12131. "name": "Arne Blankerts",
  12132. "email": "arne@blankerts.de",
  12133. "role": "Developer"
  12134. }
  12135. ],
  12136. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  12137. "support": {
  12138. "issues": "https://github.com/theseer/tokenizer/issues",
  12139. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  12140. },
  12141. "funding": [
  12142. {
  12143. "url": "https://github.com/theseer",
  12144. "type": "github"
  12145. }
  12146. ],
  12147. "time": "2024-03-03T12:36:25+00:00"
  12148. }
  12149. ],
  12150. "aliases": [],
  12151. "minimum-stability": "stable",
  12152. "stability-flags": [],
  12153. "prefer-stable": true,
  12154. "prefer-lowest": false,
  12155. "platform": {
  12156. "php": "^8.2",
  12157. "ext-bcmath": "*",
  12158. "ext-intl": "*"
  12159. },
  12160. "platform-dev": [],
  12161. "plugin-api-version": "2.6.0"
  12162. }