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 363KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122
  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": "dabf47be9fbc6a33cc67ae9123c6f5d2",
  8. "packages": [
  9. {
  10. "name": "akaunting/laravel-money",
  11. "version": "4.0.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/akaunting/laravel-money.git",
  15. "reference": "df99d0f5d415490ef7e79362c3b694e8cc8af903"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/akaunting/laravel-money/zipball/df99d0f5d415490ef7e79362c3b694e8cc8af903",
  20. "reference": "df99d0f5d415490ef7e79362c3b694e8cc8af903",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "illuminate/contracts": "^9.0|^10.0",
  25. "illuminate/support": "^9.0|^10.0",
  26. "illuminate/validation": "^9.0|^10.0",
  27. "illuminate/view": "^9.0|^10.0",
  28. "php": "^8.0",
  29. "vlucas/phpdotenv": "^5.4.1"
  30. },
  31. "require-dev": {
  32. "orchestra/testbench": "^7.4|^8.0",
  33. "phpunit/phpunit": "^9.5|^10.0",
  34. "vimeo/psalm": "^4.23"
  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/4.0.1"
  75. },
  76. "time": "2023-03-16T14:39:27+00:00"
  77. },
  78. {
  79. "name": "andrewdwallo/filament-companies",
  80. "version": "v2.0.1",
  81. "source": {
  82. "type": "git",
  83. "url": "https://github.com/andrewdwallo/filament-companies.git",
  84. "reference": "294424e0ab6ef76f6ad480fca50a1c39908a7219"
  85. },
  86. "dist": {
  87. "type": "zip",
  88. "url": "https://api.github.com/repos/andrewdwallo/filament-companies/zipball/294424e0ab6ef76f6ad480fca50a1c39908a7219",
  89. "reference": "294424e0ab6ef76f6ad480fca50a1c39908a7219",
  90. "shasum": ""
  91. },
  92. "require": {
  93. "ext-json": "*",
  94. "filament/filament": "^2.16",
  95. "illuminate/console": "^8.6|^9.0|^10.0",
  96. "illuminate/contracts": "^8.6|^9.0|^10.0",
  97. "illuminate/support": "^8.6|^9.0|^10.0",
  98. "laravel/fortify": "^1.15",
  99. "laravel/socialite": "^5.6",
  100. "matomo/device-detector": "^6.1",
  101. "php": "^8.0"
  102. },
  103. "require-dev": {
  104. "laravel/sanctum": "^3.0",
  105. "mockery/mockery": "^1.0",
  106. "orchestra/testbench": "^7.0|^8.0",
  107. "phpunit/phpunit": "^9.3"
  108. },
  109. "type": "library",
  110. "extra": {
  111. "laravel": {
  112. "providers": [
  113. "Wallo\\FilamentCompanies\\FilamentCompaniesServiceProvider"
  114. ]
  115. }
  116. },
  117. "autoload": {
  118. "psr-4": {
  119. "Wallo\\FilamentCompanies\\": "src/"
  120. }
  121. },
  122. "notification-url": "https://packagist.org/downloads/",
  123. "license": [
  124. "MIT"
  125. ],
  126. "authors": [
  127. {
  128. "name": "Andrew Wallo",
  129. "email": "andrewdwallo@gmail.com",
  130. "role": "Developer"
  131. }
  132. ],
  133. "description": "A Laravel Authentication System based on Companies built using Filament",
  134. "homepage": "https://github.com/andrewdwallo/filament-companies",
  135. "keywords": [
  136. "ERP",
  137. "andrewdwallo",
  138. "auth",
  139. "companies",
  140. "filament",
  141. "laravel",
  142. "tailwind",
  143. "wallo"
  144. ],
  145. "support": {
  146. "issues": "https://github.com/andrewdwallo/filament-companies/issues",
  147. "source": "https://github.com/andrewdwallo/filament-companies/tree/v2.0.1"
  148. },
  149. "time": "2023-04-26T04:34:47+00:00"
  150. },
  151. {
  152. "name": "bacon/bacon-qr-code",
  153. "version": "2.0.8",
  154. "source": {
  155. "type": "git",
  156. "url": "https://github.com/Bacon/BaconQrCode.git",
  157. "reference": "8674e51bb65af933a5ffaf1c308a660387c35c22"
  158. },
  159. "dist": {
  160. "type": "zip",
  161. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/8674e51bb65af933a5ffaf1c308a660387c35c22",
  162. "reference": "8674e51bb65af933a5ffaf1c308a660387c35c22",
  163. "shasum": ""
  164. },
  165. "require": {
  166. "dasprid/enum": "^1.0.3",
  167. "ext-iconv": "*",
  168. "php": "^7.1 || ^8.0"
  169. },
  170. "require-dev": {
  171. "phly/keep-a-changelog": "^2.1",
  172. "phpunit/phpunit": "^7 | ^8 | ^9",
  173. "spatie/phpunit-snapshot-assertions": "^4.2.9",
  174. "squizlabs/php_codesniffer": "^3.4"
  175. },
  176. "suggest": {
  177. "ext-imagick": "to generate QR code images"
  178. },
  179. "type": "library",
  180. "autoload": {
  181. "psr-4": {
  182. "BaconQrCode\\": "src/"
  183. }
  184. },
  185. "notification-url": "https://packagist.org/downloads/",
  186. "license": [
  187. "BSD-2-Clause"
  188. ],
  189. "authors": [
  190. {
  191. "name": "Ben Scholzen 'DASPRiD'",
  192. "email": "mail@dasprids.de",
  193. "homepage": "https://dasprids.de/",
  194. "role": "Developer"
  195. }
  196. ],
  197. "description": "BaconQrCode is a QR code generator for PHP.",
  198. "homepage": "https://github.com/Bacon/BaconQrCode",
  199. "support": {
  200. "issues": "https://github.com/Bacon/BaconQrCode/issues",
  201. "source": "https://github.com/Bacon/BaconQrCode/tree/2.0.8"
  202. },
  203. "time": "2022-12-07T17:46:57+00:00"
  204. },
  205. {
  206. "name": "blade-ui-kit/blade-heroicons",
  207. "version": "1.4.0",
  208. "source": {
  209. "type": "git",
  210. "url": "https://github.com/blade-ui-kit/blade-heroicons.git",
  211. "reference": "dea08e8308d9bad9ebff1bc482d5985dbaacc91b"
  212. },
  213. "dist": {
  214. "type": "zip",
  215. "url": "https://api.github.com/repos/blade-ui-kit/blade-heroicons/zipball/dea08e8308d9bad9ebff1bc482d5985dbaacc91b",
  216. "reference": "dea08e8308d9bad9ebff1bc482d5985dbaacc91b",
  217. "shasum": ""
  218. },
  219. "require": {
  220. "blade-ui-kit/blade-icons": "^1.1",
  221. "illuminate/support": "^8.0|^9.0|^10.0",
  222. "php": "^7.4|^8.0"
  223. },
  224. "require-dev": {
  225. "orchestra/testbench": "^6.0|^7.0|^8.0",
  226. "phpunit/phpunit": "^9.0"
  227. },
  228. "type": "library",
  229. "extra": {
  230. "laravel": {
  231. "providers": [
  232. "BladeUI\\Heroicons\\BladeHeroiconsServiceProvider"
  233. ]
  234. }
  235. },
  236. "autoload": {
  237. "psr-4": {
  238. "BladeUI\\Heroicons\\": "src"
  239. }
  240. },
  241. "notification-url": "https://packagist.org/downloads/",
  242. "license": [
  243. "MIT"
  244. ],
  245. "authors": [
  246. {
  247. "name": "Dries Vints",
  248. "homepage": "https://driesvints.com"
  249. }
  250. ],
  251. "description": "A package to easily make use of Heroicons in your Laravel Blade views.",
  252. "homepage": "https://github.com/blade-ui-kit/blade-heroicons",
  253. "keywords": [
  254. "Heroicons",
  255. "blade",
  256. "laravel"
  257. ],
  258. "support": {
  259. "issues": "https://github.com/blade-ui-kit/blade-heroicons/issues",
  260. "source": "https://github.com/blade-ui-kit/blade-heroicons/tree/1.4.0"
  261. },
  262. "funding": [
  263. {
  264. "url": "https://github.com/caneco",
  265. "type": "github"
  266. },
  267. {
  268. "url": "https://github.com/driesvints",
  269. "type": "github"
  270. }
  271. ],
  272. "time": "2023-01-25T17:57:58+00:00"
  273. },
  274. {
  275. "name": "blade-ui-kit/blade-icons",
  276. "version": "1.5.1",
  277. "source": {
  278. "type": "git",
  279. "url": "https://github.com/blade-ui-kit/blade-icons.git",
  280. "reference": "b2a80ff2a26641f64bfee48ad0d2a922ce781228"
  281. },
  282. "dist": {
  283. "type": "zip",
  284. "url": "https://api.github.com/repos/blade-ui-kit/blade-icons/zipball/b2a80ff2a26641f64bfee48ad0d2a922ce781228",
  285. "reference": "b2a80ff2a26641f64bfee48ad0d2a922ce781228",
  286. "shasum": ""
  287. },
  288. "require": {
  289. "illuminate/contracts": "^8.0|^9.0|^10.0",
  290. "illuminate/filesystem": "^8.0|^9.0|^10.0",
  291. "illuminate/support": "^8.0|^9.0|^10.0",
  292. "illuminate/view": "^8.0|^9.0|^10.0",
  293. "php": "^7.4|^8.0",
  294. "symfony/console": "^5.3|^6.0",
  295. "symfony/finder": "^5.3|^6.0"
  296. },
  297. "require-dev": {
  298. "mockery/mockery": "^1.3",
  299. "orchestra/testbench": "^6.0|^7.0|^8.0",
  300. "phpunit/phpunit": "^9.0"
  301. },
  302. "bin": [
  303. "bin/blade-icons-generate"
  304. ],
  305. "type": "library",
  306. "extra": {
  307. "laravel": {
  308. "providers": [
  309. "BladeUI\\Icons\\BladeIconsServiceProvider"
  310. ]
  311. }
  312. },
  313. "autoload": {
  314. "files": [
  315. "src/helpers.php"
  316. ],
  317. "psr-4": {
  318. "BladeUI\\Icons\\": "src"
  319. }
  320. },
  321. "notification-url": "https://packagist.org/downloads/",
  322. "license": [
  323. "MIT"
  324. ],
  325. "authors": [
  326. {
  327. "name": "Dries Vints",
  328. "homepage": "https://driesvints.com"
  329. }
  330. ],
  331. "description": "A package to easily make use of icons in your Laravel Blade views.",
  332. "homepage": "https://github.com/blade-ui-kit/blade-icons",
  333. "keywords": [
  334. "blade",
  335. "icons",
  336. "laravel",
  337. "svg"
  338. ],
  339. "support": {
  340. "issues": "https://github.com/blade-ui-kit/blade-icons/issues",
  341. "source": "https://github.com/blade-ui-kit/blade-icons"
  342. },
  343. "funding": [
  344. {
  345. "url": "https://github.com/caneco",
  346. "type": "github"
  347. },
  348. {
  349. "url": "https://github.com/driesvints",
  350. "type": "github"
  351. }
  352. ],
  353. "time": "2023-02-15T16:30:12+00:00"
  354. },
  355. {
  356. "name": "brick/math",
  357. "version": "0.11.0",
  358. "source": {
  359. "type": "git",
  360. "url": "https://github.com/brick/math.git",
  361. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478"
  362. },
  363. "dist": {
  364. "type": "zip",
  365. "url": "https://api.github.com/repos/brick/math/zipball/0ad82ce168c82ba30d1c01ec86116ab52f589478",
  366. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478",
  367. "shasum": ""
  368. },
  369. "require": {
  370. "php": "^8.0"
  371. },
  372. "require-dev": {
  373. "php-coveralls/php-coveralls": "^2.2",
  374. "phpunit/phpunit": "^9.0",
  375. "vimeo/psalm": "5.0.0"
  376. },
  377. "type": "library",
  378. "autoload": {
  379. "psr-4": {
  380. "Brick\\Math\\": "src/"
  381. }
  382. },
  383. "notification-url": "https://packagist.org/downloads/",
  384. "license": [
  385. "MIT"
  386. ],
  387. "description": "Arbitrary-precision arithmetic library",
  388. "keywords": [
  389. "Arbitrary-precision",
  390. "BigInteger",
  391. "BigRational",
  392. "arithmetic",
  393. "bigdecimal",
  394. "bignum",
  395. "brick",
  396. "math"
  397. ],
  398. "support": {
  399. "issues": "https://github.com/brick/math/issues",
  400. "source": "https://github.com/brick/math/tree/0.11.0"
  401. },
  402. "funding": [
  403. {
  404. "url": "https://github.com/BenMorel",
  405. "type": "github"
  406. }
  407. ],
  408. "time": "2023-01-15T23:15:59+00:00"
  409. },
  410. {
  411. "name": "danharrin/date-format-converter",
  412. "version": "v0.3.0",
  413. "source": {
  414. "type": "git",
  415. "url": "https://github.com/danharrin/date-format-converter.git",
  416. "reference": "42b6ddc52059d4ba228a67c15adaaa0c039e75f2"
  417. },
  418. "dist": {
  419. "type": "zip",
  420. "url": "https://api.github.com/repos/danharrin/date-format-converter/zipball/42b6ddc52059d4ba228a67c15adaaa0c039e75f2",
  421. "reference": "42b6ddc52059d4ba228a67c15adaaa0c039e75f2",
  422. "shasum": ""
  423. },
  424. "require": {
  425. "php": "^7.2|^8.0"
  426. },
  427. "type": "library",
  428. "autoload": {
  429. "files": [
  430. "src/helpers.php",
  431. "src/standards.php"
  432. ],
  433. "psr-4": {
  434. "DanHarrin\\DateFormatConverter\\": "src/"
  435. }
  436. },
  437. "notification-url": "https://packagist.org/downloads/",
  438. "license": [
  439. "MIT"
  440. ],
  441. "authors": [
  442. {
  443. "name": "Dan Harrin",
  444. "email": "dan@danharrin.com"
  445. }
  446. ],
  447. "description": "Convert token-based date formats between standards.",
  448. "homepage": "https://github.com/danharrin/date-format-converter",
  449. "support": {
  450. "issues": "https://github.com/danharrin/date-format-converter/issues",
  451. "source": "https://github.com/danharrin/date-format-converter"
  452. },
  453. "funding": [
  454. {
  455. "url": "https://github.com/danharrin",
  456. "type": "github"
  457. }
  458. ],
  459. "time": "2022-09-29T07:48:20+00:00"
  460. },
  461. {
  462. "name": "danharrin/livewire-rate-limiting",
  463. "version": "v1.1.0",
  464. "source": {
  465. "type": "git",
  466. "url": "https://github.com/danharrin/livewire-rate-limiting.git",
  467. "reference": "a55996683cabf2e93893280d602191243b3b80b8"
  468. },
  469. "dist": {
  470. "type": "zip",
  471. "url": "https://api.github.com/repos/danharrin/livewire-rate-limiting/zipball/a55996683cabf2e93893280d602191243b3b80b8",
  472. "reference": "a55996683cabf2e93893280d602191243b3b80b8",
  473. "shasum": ""
  474. },
  475. "require": {
  476. "illuminate/support": "^9.0|^10.0",
  477. "php": "^8.0"
  478. },
  479. "require-dev": {
  480. "livewire/livewire": "^2.3",
  481. "orchestra/testbench": "^7.0|^8.0",
  482. "phpunit/phpunit": "^9.0|^10.0"
  483. },
  484. "type": "library",
  485. "autoload": {
  486. "psr-4": {
  487. "DanHarrin\\LivewireRateLimiting\\": "src"
  488. }
  489. },
  490. "notification-url": "https://packagist.org/downloads/",
  491. "license": [
  492. "MIT"
  493. ],
  494. "authors": [
  495. {
  496. "name": "Dan Harrin",
  497. "email": "dan@danharrin.com"
  498. }
  499. ],
  500. "description": "Apply rate limiters to Laravel Livewire actions.",
  501. "homepage": "https://github.com/danharrin/livewire-rate-limiting",
  502. "support": {
  503. "issues": "https://github.com/danharrin/livewire-rate-limiting/issues",
  504. "source": "https://github.com/danharrin/livewire-rate-limiting"
  505. },
  506. "funding": [
  507. {
  508. "url": "https://github.com/danharrin",
  509. "type": "github"
  510. }
  511. ],
  512. "time": "2023-03-12T12:17:29+00:00"
  513. },
  514. {
  515. "name": "dasprid/enum",
  516. "version": "1.0.4",
  517. "source": {
  518. "type": "git",
  519. "url": "https://github.com/DASPRiD/Enum.git",
  520. "reference": "8e6b6ea76eabbf19ea2bf5b67b98e1860474012f"
  521. },
  522. "dist": {
  523. "type": "zip",
  524. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/8e6b6ea76eabbf19ea2bf5b67b98e1860474012f",
  525. "reference": "8e6b6ea76eabbf19ea2bf5b67b98e1860474012f",
  526. "shasum": ""
  527. },
  528. "require": {
  529. "php": ">=7.1 <9.0"
  530. },
  531. "require-dev": {
  532. "phpunit/phpunit": "^7 | ^8 | ^9",
  533. "squizlabs/php_codesniffer": "*"
  534. },
  535. "type": "library",
  536. "autoload": {
  537. "psr-4": {
  538. "DASPRiD\\Enum\\": "src/"
  539. }
  540. },
  541. "notification-url": "https://packagist.org/downloads/",
  542. "license": [
  543. "BSD-2-Clause"
  544. ],
  545. "authors": [
  546. {
  547. "name": "Ben Scholzen 'DASPRiD'",
  548. "email": "mail@dasprids.de",
  549. "homepage": "https://dasprids.de/",
  550. "role": "Developer"
  551. }
  552. ],
  553. "description": "PHP 7.1 enum implementation",
  554. "keywords": [
  555. "enum",
  556. "map"
  557. ],
  558. "support": {
  559. "issues": "https://github.com/DASPRiD/Enum/issues",
  560. "source": "https://github.com/DASPRiD/Enum/tree/1.0.4"
  561. },
  562. "time": "2023-03-01T18:44:03+00:00"
  563. },
  564. {
  565. "name": "dflydev/dot-access-data",
  566. "version": "v3.0.2",
  567. "source": {
  568. "type": "git",
  569. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  570. "reference": "f41715465d65213d644d3141a6a93081be5d3549"
  571. },
  572. "dist": {
  573. "type": "zip",
  574. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549",
  575. "reference": "f41715465d65213d644d3141a6a93081be5d3549",
  576. "shasum": ""
  577. },
  578. "require": {
  579. "php": "^7.1 || ^8.0"
  580. },
  581. "require-dev": {
  582. "phpstan/phpstan": "^0.12.42",
  583. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  584. "scrutinizer/ocular": "1.6.0",
  585. "squizlabs/php_codesniffer": "^3.5",
  586. "vimeo/psalm": "^4.0.0"
  587. },
  588. "type": "library",
  589. "extra": {
  590. "branch-alias": {
  591. "dev-main": "3.x-dev"
  592. }
  593. },
  594. "autoload": {
  595. "psr-4": {
  596. "Dflydev\\DotAccessData\\": "src/"
  597. }
  598. },
  599. "notification-url": "https://packagist.org/downloads/",
  600. "license": [
  601. "MIT"
  602. ],
  603. "authors": [
  604. {
  605. "name": "Dragonfly Development Inc.",
  606. "email": "info@dflydev.com",
  607. "homepage": "http://dflydev.com"
  608. },
  609. {
  610. "name": "Beau Simensen",
  611. "email": "beau@dflydev.com",
  612. "homepage": "http://beausimensen.com"
  613. },
  614. {
  615. "name": "Carlos Frutos",
  616. "email": "carlos@kiwing.it",
  617. "homepage": "https://github.com/cfrutos"
  618. },
  619. {
  620. "name": "Colin O'Dell",
  621. "email": "colinodell@gmail.com",
  622. "homepage": "https://www.colinodell.com"
  623. }
  624. ],
  625. "description": "Given a deep data structure, access data by dot notation.",
  626. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  627. "keywords": [
  628. "access",
  629. "data",
  630. "dot",
  631. "notation"
  632. ],
  633. "support": {
  634. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  635. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.2"
  636. },
  637. "time": "2022-10-27T11:44:00+00:00"
  638. },
  639. {
  640. "name": "doctrine/inflector",
  641. "version": "2.0.6",
  642. "source": {
  643. "type": "git",
  644. "url": "https://github.com/doctrine/inflector.git",
  645. "reference": "d9d313a36c872fd6ee06d9a6cbcf713eaa40f024"
  646. },
  647. "dist": {
  648. "type": "zip",
  649. "url": "https://api.github.com/repos/doctrine/inflector/zipball/d9d313a36c872fd6ee06d9a6cbcf713eaa40f024",
  650. "reference": "d9d313a36c872fd6ee06d9a6cbcf713eaa40f024",
  651. "shasum": ""
  652. },
  653. "require": {
  654. "php": "^7.2 || ^8.0"
  655. },
  656. "require-dev": {
  657. "doctrine/coding-standard": "^10",
  658. "phpstan/phpstan": "^1.8",
  659. "phpstan/phpstan-phpunit": "^1.1",
  660. "phpstan/phpstan-strict-rules": "^1.3",
  661. "phpunit/phpunit": "^8.5 || ^9.5",
  662. "vimeo/psalm": "^4.25"
  663. },
  664. "type": "library",
  665. "autoload": {
  666. "psr-4": {
  667. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  668. }
  669. },
  670. "notification-url": "https://packagist.org/downloads/",
  671. "license": [
  672. "MIT"
  673. ],
  674. "authors": [
  675. {
  676. "name": "Guilherme Blanco",
  677. "email": "guilhermeblanco@gmail.com"
  678. },
  679. {
  680. "name": "Roman Borschel",
  681. "email": "roman@code-factory.org"
  682. },
  683. {
  684. "name": "Benjamin Eberlei",
  685. "email": "kontakt@beberlei.de"
  686. },
  687. {
  688. "name": "Jonathan Wage",
  689. "email": "jonwage@gmail.com"
  690. },
  691. {
  692. "name": "Johannes Schmitt",
  693. "email": "schmittjoh@gmail.com"
  694. }
  695. ],
  696. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  697. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  698. "keywords": [
  699. "inflection",
  700. "inflector",
  701. "lowercase",
  702. "manipulation",
  703. "php",
  704. "plural",
  705. "singular",
  706. "strings",
  707. "uppercase",
  708. "words"
  709. ],
  710. "support": {
  711. "issues": "https://github.com/doctrine/inflector/issues",
  712. "source": "https://github.com/doctrine/inflector/tree/2.0.6"
  713. },
  714. "funding": [
  715. {
  716. "url": "https://www.doctrine-project.org/sponsorship.html",
  717. "type": "custom"
  718. },
  719. {
  720. "url": "https://www.patreon.com/phpdoctrine",
  721. "type": "patreon"
  722. },
  723. {
  724. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  725. "type": "tidelift"
  726. }
  727. ],
  728. "time": "2022-10-20T09:10:12+00:00"
  729. },
  730. {
  731. "name": "doctrine/lexer",
  732. "version": "3.0.0",
  733. "source": {
  734. "type": "git",
  735. "url": "https://github.com/doctrine/lexer.git",
  736. "reference": "84a527db05647743d50373e0ec53a152f2cde568"
  737. },
  738. "dist": {
  739. "type": "zip",
  740. "url": "https://api.github.com/repos/doctrine/lexer/zipball/84a527db05647743d50373e0ec53a152f2cde568",
  741. "reference": "84a527db05647743d50373e0ec53a152f2cde568",
  742. "shasum": ""
  743. },
  744. "require": {
  745. "php": "^8.1"
  746. },
  747. "require-dev": {
  748. "doctrine/coding-standard": "^10",
  749. "phpstan/phpstan": "^1.9",
  750. "phpunit/phpunit": "^9.5",
  751. "psalm/plugin-phpunit": "^0.18.3",
  752. "vimeo/psalm": "^5.0"
  753. },
  754. "type": "library",
  755. "autoload": {
  756. "psr-4": {
  757. "Doctrine\\Common\\Lexer\\": "src"
  758. }
  759. },
  760. "notification-url": "https://packagist.org/downloads/",
  761. "license": [
  762. "MIT"
  763. ],
  764. "authors": [
  765. {
  766. "name": "Guilherme Blanco",
  767. "email": "guilhermeblanco@gmail.com"
  768. },
  769. {
  770. "name": "Roman Borschel",
  771. "email": "roman@code-factory.org"
  772. },
  773. {
  774. "name": "Johannes Schmitt",
  775. "email": "schmittjoh@gmail.com"
  776. }
  777. ],
  778. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  779. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  780. "keywords": [
  781. "annotations",
  782. "docblock",
  783. "lexer",
  784. "parser",
  785. "php"
  786. ],
  787. "support": {
  788. "issues": "https://github.com/doctrine/lexer/issues",
  789. "source": "https://github.com/doctrine/lexer/tree/3.0.0"
  790. },
  791. "funding": [
  792. {
  793. "url": "https://www.doctrine-project.org/sponsorship.html",
  794. "type": "custom"
  795. },
  796. {
  797. "url": "https://www.patreon.com/phpdoctrine",
  798. "type": "patreon"
  799. },
  800. {
  801. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  802. "type": "tidelift"
  803. }
  804. ],
  805. "time": "2022-12-15T16:57:16+00:00"
  806. },
  807. {
  808. "name": "dragonmantank/cron-expression",
  809. "version": "v3.3.2",
  810. "source": {
  811. "type": "git",
  812. "url": "https://github.com/dragonmantank/cron-expression.git",
  813. "reference": "782ca5968ab8b954773518e9e49a6f892a34b2a8"
  814. },
  815. "dist": {
  816. "type": "zip",
  817. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/782ca5968ab8b954773518e9e49a6f892a34b2a8",
  818. "reference": "782ca5968ab8b954773518e9e49a6f892a34b2a8",
  819. "shasum": ""
  820. },
  821. "require": {
  822. "php": "^7.2|^8.0",
  823. "webmozart/assert": "^1.0"
  824. },
  825. "replace": {
  826. "mtdowling/cron-expression": "^1.0"
  827. },
  828. "require-dev": {
  829. "phpstan/extension-installer": "^1.0",
  830. "phpstan/phpstan": "^1.0",
  831. "phpstan/phpstan-webmozart-assert": "^1.0",
  832. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  833. },
  834. "type": "library",
  835. "autoload": {
  836. "psr-4": {
  837. "Cron\\": "src/Cron/"
  838. }
  839. },
  840. "notification-url": "https://packagist.org/downloads/",
  841. "license": [
  842. "MIT"
  843. ],
  844. "authors": [
  845. {
  846. "name": "Chris Tankersley",
  847. "email": "chris@ctankersley.com",
  848. "homepage": "https://github.com/dragonmantank"
  849. }
  850. ],
  851. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  852. "keywords": [
  853. "cron",
  854. "schedule"
  855. ],
  856. "support": {
  857. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  858. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.2"
  859. },
  860. "funding": [
  861. {
  862. "url": "https://github.com/dragonmantank",
  863. "type": "github"
  864. }
  865. ],
  866. "time": "2022-09-10T18:51:20+00:00"
  867. },
  868. {
  869. "name": "egulias/email-validator",
  870. "version": "4.0.1",
  871. "source": {
  872. "type": "git",
  873. "url": "https://github.com/egulias/EmailValidator.git",
  874. "reference": "3a85486b709bc384dae8eb78fb2eec649bdb64ff"
  875. },
  876. "dist": {
  877. "type": "zip",
  878. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/3a85486b709bc384dae8eb78fb2eec649bdb64ff",
  879. "reference": "3a85486b709bc384dae8eb78fb2eec649bdb64ff",
  880. "shasum": ""
  881. },
  882. "require": {
  883. "doctrine/lexer": "^2.0 || ^3.0",
  884. "php": ">=8.1",
  885. "symfony/polyfill-intl-idn": "^1.26"
  886. },
  887. "require-dev": {
  888. "phpunit/phpunit": "^9.5.27",
  889. "vimeo/psalm": "^4.30"
  890. },
  891. "suggest": {
  892. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  893. },
  894. "type": "library",
  895. "extra": {
  896. "branch-alias": {
  897. "dev-master": "4.0.x-dev"
  898. }
  899. },
  900. "autoload": {
  901. "psr-4": {
  902. "Egulias\\EmailValidator\\": "src"
  903. }
  904. },
  905. "notification-url": "https://packagist.org/downloads/",
  906. "license": [
  907. "MIT"
  908. ],
  909. "authors": [
  910. {
  911. "name": "Eduardo Gulias Davis"
  912. }
  913. ],
  914. "description": "A library for validating emails against several RFCs",
  915. "homepage": "https://github.com/egulias/EmailValidator",
  916. "keywords": [
  917. "email",
  918. "emailvalidation",
  919. "emailvalidator",
  920. "validation",
  921. "validator"
  922. ],
  923. "support": {
  924. "issues": "https://github.com/egulias/EmailValidator/issues",
  925. "source": "https://github.com/egulias/EmailValidator/tree/4.0.1"
  926. },
  927. "funding": [
  928. {
  929. "url": "https://github.com/egulias",
  930. "type": "github"
  931. }
  932. ],
  933. "time": "2023-01-14T14:17:03+00:00"
  934. },
  935. {
  936. "name": "filament/filament",
  937. "version": "v2.17.36",
  938. "source": {
  939. "type": "git",
  940. "url": "https://github.com/filamentphp/app.git",
  941. "reference": "c62290398a1d6b03351dbab8158115efd936deaa"
  942. },
  943. "dist": {
  944. "type": "zip",
  945. "url": "https://api.github.com/repos/filamentphp/app/zipball/c62290398a1d6b03351dbab8158115efd936deaa",
  946. "reference": "c62290398a1d6b03351dbab8158115efd936deaa",
  947. "shasum": ""
  948. },
  949. "require": {
  950. "danharrin/livewire-rate-limiting": "^0.3|^1.0",
  951. "filament/forms": "self.version",
  952. "filament/notifications": "self.version",
  953. "filament/support": "self.version",
  954. "filament/tables": "self.version",
  955. "illuminate/auth": "^8.6|^9.0|^10.0",
  956. "illuminate/console": "^8.6|^9.0|^10.0",
  957. "illuminate/contracts": "^8.6|^9.0|^10.0",
  958. "illuminate/cookie": "^8.6|^9.0|^10.0",
  959. "illuminate/database": "^8.6|^9.0|^10.0",
  960. "illuminate/http": "^8.6|^9.0|^10.0",
  961. "illuminate/routing": "^8.6|^9.0|^10.0",
  962. "illuminate/session": "^8.6|^9.0|^10.0",
  963. "illuminate/support": "^8.6|^9.0|^10.0",
  964. "illuminate/view": "^8.6|^9.0|^10.0",
  965. "livewire/livewire": "^2.10.7",
  966. "php": "^8.0",
  967. "ryangjchandler/blade-capture-directive": "^0.2|^0.3",
  968. "spatie/laravel-package-tools": "^1.9"
  969. },
  970. "type": "library",
  971. "extra": {
  972. "laravel": {
  973. "providers": [
  974. "Filament\\FilamentServiceProvider"
  975. ]
  976. }
  977. },
  978. "autoload": {
  979. "files": [
  980. "src/helpers.php"
  981. ],
  982. "psr-4": {
  983. "Filament\\": "src"
  984. }
  985. },
  986. "notification-url": "https://packagist.org/downloads/",
  987. "license": [
  988. "MIT"
  989. ],
  990. "description": "Effortlessly build TALL-powered admin panels.",
  991. "homepage": "https://github.com/filamentphp/filament",
  992. "support": {
  993. "issues": "https://github.com/filamentphp/filament/issues",
  994. "source": "https://github.com/filamentphp/filament"
  995. },
  996. "time": "2023-05-05T08:37:23+00:00"
  997. },
  998. {
  999. "name": "filament/forms",
  1000. "version": "v2.17.36",
  1001. "source": {
  1002. "type": "git",
  1003. "url": "https://github.com/filamentphp/forms.git",
  1004. "reference": "b29e2f817ad63913ae1b339910726ede6696de9a"
  1005. },
  1006. "dist": {
  1007. "type": "zip",
  1008. "url": "https://api.github.com/repos/filamentphp/forms/zipball/b29e2f817ad63913ae1b339910726ede6696de9a",
  1009. "reference": "b29e2f817ad63913ae1b339910726ede6696de9a",
  1010. "shasum": ""
  1011. },
  1012. "require": {
  1013. "blade-ui-kit/blade-heroicons": "^1.2",
  1014. "danharrin/date-format-converter": "^0.3",
  1015. "filament/notifications": "self.version",
  1016. "filament/support": "self.version",
  1017. "illuminate/console": "^8.6|^9.0|^10.0",
  1018. "illuminate/contracts": "^8.6|^9.0|^10.0",
  1019. "illuminate/database": "^8.6|^9.0|^10.0",
  1020. "illuminate/filesystem": "^8.6|^9.0|^10.0",
  1021. "illuminate/support": "^8.6|^9.0|^10.0",
  1022. "illuminate/validation": "^8.6|^9.0|^10.0",
  1023. "illuminate/view": "^8.6|^9.0|^10.0",
  1024. "livewire/livewire": "^2.10.7",
  1025. "php": "^8.0",
  1026. "spatie/laravel-package-tools": "^1.9"
  1027. },
  1028. "type": "library",
  1029. "extra": {
  1030. "laravel": {
  1031. "providers": [
  1032. "Filament\\Forms\\FormsServiceProvider"
  1033. ]
  1034. }
  1035. },
  1036. "autoload": {
  1037. "files": [
  1038. "src/helpers.php"
  1039. ],
  1040. "psr-4": {
  1041. "Filament\\Forms\\": "src"
  1042. }
  1043. },
  1044. "notification-url": "https://packagist.org/downloads/",
  1045. "license": [
  1046. "MIT"
  1047. ],
  1048. "description": "Effortlessly build TALL-powered forms.",
  1049. "homepage": "https://github.com/filamentphp/filament",
  1050. "support": {
  1051. "issues": "https://github.com/filamentphp/filament/issues",
  1052. "source": "https://github.com/filamentphp/filament"
  1053. },
  1054. "time": "2023-05-04T23:08:13+00:00"
  1055. },
  1056. {
  1057. "name": "filament/notifications",
  1058. "version": "v2.17.36",
  1059. "source": {
  1060. "type": "git",
  1061. "url": "https://github.com/filamentphp/notifications.git",
  1062. "reference": "0ef9f1f3481a08f357b8e78bcb4bbcd8111a1252"
  1063. },
  1064. "dist": {
  1065. "type": "zip",
  1066. "url": "https://api.github.com/repos/filamentphp/notifications/zipball/0ef9f1f3481a08f357b8e78bcb4bbcd8111a1252",
  1067. "reference": "0ef9f1f3481a08f357b8e78bcb4bbcd8111a1252",
  1068. "shasum": ""
  1069. },
  1070. "require": {
  1071. "blade-ui-kit/blade-heroicons": "^1.2",
  1072. "filament/support": "self.version",
  1073. "illuminate/contracts": "^8.6|^9.0|^10.0",
  1074. "illuminate/filesystem": "^8.6|^9.0|^10.0",
  1075. "illuminate/notifications": "^8.6|^9.0|^10.0",
  1076. "illuminate/support": "^8.6|^9.0|^10.0",
  1077. "livewire/livewire": "^2.10.7",
  1078. "php": "^8.0",
  1079. "spatie/laravel-package-tools": "^1.9"
  1080. },
  1081. "type": "library",
  1082. "extra": {
  1083. "laravel": {
  1084. "providers": [
  1085. "Filament\\Notifications\\NotificationsServiceProvider"
  1086. ]
  1087. }
  1088. },
  1089. "autoload": {
  1090. "files": [
  1091. "src/Testing/Autoload.php"
  1092. ],
  1093. "psr-4": {
  1094. "Filament\\Notifications\\": "src"
  1095. }
  1096. },
  1097. "notification-url": "https://packagist.org/downloads/",
  1098. "license": [
  1099. "MIT"
  1100. ],
  1101. "description": "Effortlessly build TALL-powered notifications.",
  1102. "homepage": "https://github.com/filamentphp/filament",
  1103. "support": {
  1104. "issues": "https://github.com/filamentphp/filament/issues",
  1105. "source": "https://github.com/filamentphp/filament"
  1106. },
  1107. "time": "2023-05-04T23:08:09+00:00"
  1108. },
  1109. {
  1110. "name": "filament/support",
  1111. "version": "v2.17.36",
  1112. "source": {
  1113. "type": "git",
  1114. "url": "https://github.com/filamentphp/support.git",
  1115. "reference": "1a411197122524886c81a74c7044258d64d56308"
  1116. },
  1117. "dist": {
  1118. "type": "zip",
  1119. "url": "https://api.github.com/repos/filamentphp/support/zipball/1a411197122524886c81a74c7044258d64d56308",
  1120. "reference": "1a411197122524886c81a74c7044258d64d56308",
  1121. "shasum": ""
  1122. },
  1123. "require": {
  1124. "illuminate/contracts": "^8.6|^9.0|^10.0",
  1125. "illuminate/support": "^8.6|^9.0|^10.0",
  1126. "illuminate/view": "^8.6|^9.0|^10.0",
  1127. "php": "^8.0",
  1128. "spatie/laravel-package-tools": "^1.9",
  1129. "tgalopin/html-sanitizer": "^1.5"
  1130. },
  1131. "type": "library",
  1132. "extra": {
  1133. "laravel": {
  1134. "providers": [
  1135. "Filament\\Support\\SupportServiceProvider"
  1136. ]
  1137. }
  1138. },
  1139. "autoload": {
  1140. "files": [
  1141. "src/helpers.php"
  1142. ],
  1143. "psr-4": {
  1144. "Filament\\Support\\": "src"
  1145. }
  1146. },
  1147. "notification-url": "https://packagist.org/downloads/",
  1148. "license": [
  1149. "MIT"
  1150. ],
  1151. "description": "Associated helper methods and foundation code for Filament packages.",
  1152. "homepage": "https://github.com/filamentphp/filament",
  1153. "support": {
  1154. "issues": "https://github.com/filamentphp/filament/issues",
  1155. "source": "https://github.com/filamentphp/filament"
  1156. },
  1157. "time": "2023-05-04T23:08:15+00:00"
  1158. },
  1159. {
  1160. "name": "filament/tables",
  1161. "version": "v2.17.36",
  1162. "source": {
  1163. "type": "git",
  1164. "url": "https://github.com/filamentphp/tables.git",
  1165. "reference": "f9862eb6d9af85c98512924e9f0d84d6eb1ff4f5"
  1166. },
  1167. "dist": {
  1168. "type": "zip",
  1169. "url": "https://api.github.com/repos/filamentphp/tables/zipball/f9862eb6d9af85c98512924e9f0d84d6eb1ff4f5",
  1170. "reference": "f9862eb6d9af85c98512924e9f0d84d6eb1ff4f5",
  1171. "shasum": ""
  1172. },
  1173. "require": {
  1174. "akaunting/laravel-money": "^1.2|^2.0|^3.0|^4.0",
  1175. "blade-ui-kit/blade-heroicons": "^1.2",
  1176. "filament/forms": "self.version",
  1177. "filament/notifications": "self.version",
  1178. "filament/support": "self.version",
  1179. "illuminate/console": "^8.6|^9.0|^10.0",
  1180. "illuminate/contracts": "^8.6|^9.0|^10.0",
  1181. "illuminate/database": "^8.6|^9.0|^10.0",
  1182. "illuminate/filesystem": "^8.6|^9.0|^10.0",
  1183. "illuminate/support": "^8.6|^9.0|^10.0",
  1184. "illuminate/view": "^8.6|^9.0|^10.0",
  1185. "livewire/livewire": "^2.10.7",
  1186. "php": "^8.0",
  1187. "spatie/invade": "^1.0",
  1188. "spatie/laravel-package-tools": "^1.9"
  1189. },
  1190. "type": "library",
  1191. "extra": {
  1192. "laravel": {
  1193. "providers": [
  1194. "Filament\\Tables\\TablesServiceProvider"
  1195. ]
  1196. }
  1197. },
  1198. "autoload": {
  1199. "psr-4": {
  1200. "Filament\\Tables\\": "src"
  1201. }
  1202. },
  1203. "notification-url": "https://packagist.org/downloads/",
  1204. "license": [
  1205. "MIT"
  1206. ],
  1207. "description": "Effortlessly build TALL-powered tables.",
  1208. "homepage": "https://github.com/filamentphp/filament",
  1209. "support": {
  1210. "issues": "https://github.com/filamentphp/filament/issues",
  1211. "source": "https://github.com/filamentphp/filament"
  1212. },
  1213. "time": "2023-05-04T23:08:16+00:00"
  1214. },
  1215. {
  1216. "name": "flowframe/laravel-trend",
  1217. "version": "v0.1.5",
  1218. "source": {
  1219. "type": "git",
  1220. "url": "https://github.com/Flowframe/laravel-trend.git",
  1221. "reference": "bc43bf7840ff60aca39e856ad96f5e990fac83d7"
  1222. },
  1223. "dist": {
  1224. "type": "zip",
  1225. "url": "https://api.github.com/repos/Flowframe/laravel-trend/zipball/bc43bf7840ff60aca39e856ad96f5e990fac83d7",
  1226. "reference": "bc43bf7840ff60aca39e856ad96f5e990fac83d7",
  1227. "shasum": ""
  1228. },
  1229. "require": {
  1230. "illuminate/contracts": "^8.37|^9|^10.0",
  1231. "php": "^8.0",
  1232. "spatie/laravel-package-tools": "^1.4.3"
  1233. },
  1234. "require-dev": {
  1235. "nunomaduro/collision": "^5.3|^6.1",
  1236. "orchestra/testbench": "^6.15|^7.0|^8.0",
  1237. "pestphp/pest": "^1.18",
  1238. "pestphp/pest-plugin-laravel": "^1.1",
  1239. "spatie/laravel-ray": "^1.23",
  1240. "vimeo/psalm": "^4.8|^5.6"
  1241. },
  1242. "type": "library",
  1243. "extra": {
  1244. "laravel": {
  1245. "providers": [
  1246. "Flowframe\\Trend\\TrendServiceProvider"
  1247. ],
  1248. "aliases": {
  1249. "Trend": "Flowframe\\Trend\\TrendFacade"
  1250. }
  1251. }
  1252. },
  1253. "autoload": {
  1254. "psr-4": {
  1255. "Flowframe\\Trend\\": "src",
  1256. "Flowframe\\Trend\\Database\\Factories\\": "database/factories"
  1257. }
  1258. },
  1259. "notification-url": "https://packagist.org/downloads/",
  1260. "license": [
  1261. "MIT"
  1262. ],
  1263. "authors": [
  1264. {
  1265. "name": "Lars Klopstra",
  1266. "email": "lars@flowframe.nl",
  1267. "role": "Developer"
  1268. }
  1269. ],
  1270. "description": "Easily generate model trends",
  1271. "homepage": "https://github.com/flowframe/laravel-trend",
  1272. "keywords": [
  1273. "Flowframe",
  1274. "laravel",
  1275. "laravel-trend"
  1276. ],
  1277. "support": {
  1278. "issues": "https://github.com/Flowframe/laravel-trend/issues",
  1279. "source": "https://github.com/Flowframe/laravel-trend/tree/v0.1.5"
  1280. },
  1281. "funding": [
  1282. {
  1283. "url": "https://github.com/larsklopstra",
  1284. "type": "github"
  1285. }
  1286. ],
  1287. "time": "2023-03-22T20:51:43+00:00"
  1288. },
  1289. {
  1290. "name": "fruitcake/php-cors",
  1291. "version": "v1.2.0",
  1292. "source": {
  1293. "type": "git",
  1294. "url": "https://github.com/fruitcake/php-cors.git",
  1295. "reference": "58571acbaa5f9f462c9c77e911700ac66f446d4e"
  1296. },
  1297. "dist": {
  1298. "type": "zip",
  1299. "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/58571acbaa5f9f462c9c77e911700ac66f446d4e",
  1300. "reference": "58571acbaa5f9f462c9c77e911700ac66f446d4e",
  1301. "shasum": ""
  1302. },
  1303. "require": {
  1304. "php": "^7.4|^8.0",
  1305. "symfony/http-foundation": "^4.4|^5.4|^6"
  1306. },
  1307. "require-dev": {
  1308. "phpstan/phpstan": "^1.4",
  1309. "phpunit/phpunit": "^9",
  1310. "squizlabs/php_codesniffer": "^3.5"
  1311. },
  1312. "type": "library",
  1313. "extra": {
  1314. "branch-alias": {
  1315. "dev-main": "1.1-dev"
  1316. }
  1317. },
  1318. "autoload": {
  1319. "psr-4": {
  1320. "Fruitcake\\Cors\\": "src/"
  1321. }
  1322. },
  1323. "notification-url": "https://packagist.org/downloads/",
  1324. "license": [
  1325. "MIT"
  1326. ],
  1327. "authors": [
  1328. {
  1329. "name": "Fruitcake",
  1330. "homepage": "https://fruitcake.nl"
  1331. },
  1332. {
  1333. "name": "Barryvdh",
  1334. "email": "barryvdh@gmail.com"
  1335. }
  1336. ],
  1337. "description": "Cross-origin resource sharing library for the Symfony HttpFoundation",
  1338. "homepage": "https://github.com/fruitcake/php-cors",
  1339. "keywords": [
  1340. "cors",
  1341. "laravel",
  1342. "symfony"
  1343. ],
  1344. "support": {
  1345. "issues": "https://github.com/fruitcake/php-cors/issues",
  1346. "source": "https://github.com/fruitcake/php-cors/tree/v1.2.0"
  1347. },
  1348. "funding": [
  1349. {
  1350. "url": "https://fruitcake.nl",
  1351. "type": "custom"
  1352. },
  1353. {
  1354. "url": "https://github.com/barryvdh",
  1355. "type": "github"
  1356. }
  1357. ],
  1358. "time": "2022-02-20T15:07:15+00:00"
  1359. },
  1360. {
  1361. "name": "graham-campbell/result-type",
  1362. "version": "v1.1.1",
  1363. "source": {
  1364. "type": "git",
  1365. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  1366. "reference": "672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831"
  1367. },
  1368. "dist": {
  1369. "type": "zip",
  1370. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831",
  1371. "reference": "672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831",
  1372. "shasum": ""
  1373. },
  1374. "require": {
  1375. "php": "^7.2.5 || ^8.0",
  1376. "phpoption/phpoption": "^1.9.1"
  1377. },
  1378. "require-dev": {
  1379. "phpunit/phpunit": "^8.5.32 || ^9.6.3 || ^10.0.12"
  1380. },
  1381. "type": "library",
  1382. "autoload": {
  1383. "psr-4": {
  1384. "GrahamCampbell\\ResultType\\": "src/"
  1385. }
  1386. },
  1387. "notification-url": "https://packagist.org/downloads/",
  1388. "license": [
  1389. "MIT"
  1390. ],
  1391. "authors": [
  1392. {
  1393. "name": "Graham Campbell",
  1394. "email": "hello@gjcampbell.co.uk",
  1395. "homepage": "https://github.com/GrahamCampbell"
  1396. }
  1397. ],
  1398. "description": "An Implementation Of The Result Type",
  1399. "keywords": [
  1400. "Graham Campbell",
  1401. "GrahamCampbell",
  1402. "Result Type",
  1403. "Result-Type",
  1404. "result"
  1405. ],
  1406. "support": {
  1407. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  1408. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.1"
  1409. },
  1410. "funding": [
  1411. {
  1412. "url": "https://github.com/GrahamCampbell",
  1413. "type": "github"
  1414. },
  1415. {
  1416. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  1417. "type": "tidelift"
  1418. }
  1419. ],
  1420. "time": "2023-02-25T20:23:15+00:00"
  1421. },
  1422. {
  1423. "name": "guzzlehttp/guzzle",
  1424. "version": "7.5.1",
  1425. "source": {
  1426. "type": "git",
  1427. "url": "https://github.com/guzzle/guzzle.git",
  1428. "reference": "b964ca597e86b752cd994f27293e9fa6b6a95ed9"
  1429. },
  1430. "dist": {
  1431. "type": "zip",
  1432. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/b964ca597e86b752cd994f27293e9fa6b6a95ed9",
  1433. "reference": "b964ca597e86b752cd994f27293e9fa6b6a95ed9",
  1434. "shasum": ""
  1435. },
  1436. "require": {
  1437. "ext-json": "*",
  1438. "guzzlehttp/promises": "^1.5",
  1439. "guzzlehttp/psr7": "^1.9.1 || ^2.4.5",
  1440. "php": "^7.2.5 || ^8.0",
  1441. "psr/http-client": "^1.0",
  1442. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1443. },
  1444. "provide": {
  1445. "psr/http-client-implementation": "1.0"
  1446. },
  1447. "require-dev": {
  1448. "bamarni/composer-bin-plugin": "^1.8.1",
  1449. "ext-curl": "*",
  1450. "php-http/client-integration-tests": "^3.0",
  1451. "phpunit/phpunit": "^8.5.29 || ^9.5.23",
  1452. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1453. },
  1454. "suggest": {
  1455. "ext-curl": "Required for CURL handler support",
  1456. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1457. "psr/log": "Required for using the Log middleware"
  1458. },
  1459. "type": "library",
  1460. "extra": {
  1461. "bamarni-bin": {
  1462. "bin-links": true,
  1463. "forward-command": false
  1464. },
  1465. "branch-alias": {
  1466. "dev-master": "7.5-dev"
  1467. }
  1468. },
  1469. "autoload": {
  1470. "files": [
  1471. "src/functions_include.php"
  1472. ],
  1473. "psr-4": {
  1474. "GuzzleHttp\\": "src/"
  1475. }
  1476. },
  1477. "notification-url": "https://packagist.org/downloads/",
  1478. "license": [
  1479. "MIT"
  1480. ],
  1481. "authors": [
  1482. {
  1483. "name": "Graham Campbell",
  1484. "email": "hello@gjcampbell.co.uk",
  1485. "homepage": "https://github.com/GrahamCampbell"
  1486. },
  1487. {
  1488. "name": "Michael Dowling",
  1489. "email": "mtdowling@gmail.com",
  1490. "homepage": "https://github.com/mtdowling"
  1491. },
  1492. {
  1493. "name": "Jeremy Lindblom",
  1494. "email": "jeremeamia@gmail.com",
  1495. "homepage": "https://github.com/jeremeamia"
  1496. },
  1497. {
  1498. "name": "George Mponos",
  1499. "email": "gmponos@gmail.com",
  1500. "homepage": "https://github.com/gmponos"
  1501. },
  1502. {
  1503. "name": "Tobias Nyholm",
  1504. "email": "tobias.nyholm@gmail.com",
  1505. "homepage": "https://github.com/Nyholm"
  1506. },
  1507. {
  1508. "name": "Márk Sági-Kazár",
  1509. "email": "mark.sagikazar@gmail.com",
  1510. "homepage": "https://github.com/sagikazarmark"
  1511. },
  1512. {
  1513. "name": "Tobias Schultze",
  1514. "email": "webmaster@tubo-world.de",
  1515. "homepage": "https://github.com/Tobion"
  1516. }
  1517. ],
  1518. "description": "Guzzle is a PHP HTTP client library",
  1519. "keywords": [
  1520. "client",
  1521. "curl",
  1522. "framework",
  1523. "http",
  1524. "http client",
  1525. "psr-18",
  1526. "psr-7",
  1527. "rest",
  1528. "web service"
  1529. ],
  1530. "support": {
  1531. "issues": "https://github.com/guzzle/guzzle/issues",
  1532. "source": "https://github.com/guzzle/guzzle/tree/7.5.1"
  1533. },
  1534. "funding": [
  1535. {
  1536. "url": "https://github.com/GrahamCampbell",
  1537. "type": "github"
  1538. },
  1539. {
  1540. "url": "https://github.com/Nyholm",
  1541. "type": "github"
  1542. },
  1543. {
  1544. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1545. "type": "tidelift"
  1546. }
  1547. ],
  1548. "time": "2023-04-17T16:30:08+00:00"
  1549. },
  1550. {
  1551. "name": "guzzlehttp/promises",
  1552. "version": "1.5.2",
  1553. "source": {
  1554. "type": "git",
  1555. "url": "https://github.com/guzzle/promises.git",
  1556. "reference": "b94b2807d85443f9719887892882d0329d1e2598"
  1557. },
  1558. "dist": {
  1559. "type": "zip",
  1560. "url": "https://api.github.com/repos/guzzle/promises/zipball/b94b2807d85443f9719887892882d0329d1e2598",
  1561. "reference": "b94b2807d85443f9719887892882d0329d1e2598",
  1562. "shasum": ""
  1563. },
  1564. "require": {
  1565. "php": ">=5.5"
  1566. },
  1567. "require-dev": {
  1568. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  1569. },
  1570. "type": "library",
  1571. "extra": {
  1572. "branch-alias": {
  1573. "dev-master": "1.5-dev"
  1574. }
  1575. },
  1576. "autoload": {
  1577. "files": [
  1578. "src/functions_include.php"
  1579. ],
  1580. "psr-4": {
  1581. "GuzzleHttp\\Promise\\": "src/"
  1582. }
  1583. },
  1584. "notification-url": "https://packagist.org/downloads/",
  1585. "license": [
  1586. "MIT"
  1587. ],
  1588. "authors": [
  1589. {
  1590. "name": "Graham Campbell",
  1591. "email": "hello@gjcampbell.co.uk",
  1592. "homepage": "https://github.com/GrahamCampbell"
  1593. },
  1594. {
  1595. "name": "Michael Dowling",
  1596. "email": "mtdowling@gmail.com",
  1597. "homepage": "https://github.com/mtdowling"
  1598. },
  1599. {
  1600. "name": "Tobias Nyholm",
  1601. "email": "tobias.nyholm@gmail.com",
  1602. "homepage": "https://github.com/Nyholm"
  1603. },
  1604. {
  1605. "name": "Tobias Schultze",
  1606. "email": "webmaster@tubo-world.de",
  1607. "homepage": "https://github.com/Tobion"
  1608. }
  1609. ],
  1610. "description": "Guzzle promises library",
  1611. "keywords": [
  1612. "promise"
  1613. ],
  1614. "support": {
  1615. "issues": "https://github.com/guzzle/promises/issues",
  1616. "source": "https://github.com/guzzle/promises/tree/1.5.2"
  1617. },
  1618. "funding": [
  1619. {
  1620. "url": "https://github.com/GrahamCampbell",
  1621. "type": "github"
  1622. },
  1623. {
  1624. "url": "https://github.com/Nyholm",
  1625. "type": "github"
  1626. },
  1627. {
  1628. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1629. "type": "tidelift"
  1630. }
  1631. ],
  1632. "time": "2022-08-28T14:55:35+00:00"
  1633. },
  1634. {
  1635. "name": "guzzlehttp/psr7",
  1636. "version": "2.5.0",
  1637. "source": {
  1638. "type": "git",
  1639. "url": "https://github.com/guzzle/psr7.git",
  1640. "reference": "b635f279edd83fc275f822a1188157ffea568ff6"
  1641. },
  1642. "dist": {
  1643. "type": "zip",
  1644. "url": "https://api.github.com/repos/guzzle/psr7/zipball/b635f279edd83fc275f822a1188157ffea568ff6",
  1645. "reference": "b635f279edd83fc275f822a1188157ffea568ff6",
  1646. "shasum": ""
  1647. },
  1648. "require": {
  1649. "php": "^7.2.5 || ^8.0",
  1650. "psr/http-factory": "^1.0",
  1651. "psr/http-message": "^1.1 || ^2.0",
  1652. "ralouphie/getallheaders": "^3.0"
  1653. },
  1654. "provide": {
  1655. "psr/http-factory-implementation": "1.0",
  1656. "psr/http-message-implementation": "1.0"
  1657. },
  1658. "require-dev": {
  1659. "bamarni/composer-bin-plugin": "^1.8.1",
  1660. "http-interop/http-factory-tests": "^0.9",
  1661. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  1662. },
  1663. "suggest": {
  1664. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1665. },
  1666. "type": "library",
  1667. "extra": {
  1668. "bamarni-bin": {
  1669. "bin-links": true,
  1670. "forward-command": false
  1671. }
  1672. },
  1673. "autoload": {
  1674. "psr-4": {
  1675. "GuzzleHttp\\Psr7\\": "src/"
  1676. }
  1677. },
  1678. "notification-url": "https://packagist.org/downloads/",
  1679. "license": [
  1680. "MIT"
  1681. ],
  1682. "authors": [
  1683. {
  1684. "name": "Graham Campbell",
  1685. "email": "hello@gjcampbell.co.uk",
  1686. "homepage": "https://github.com/GrahamCampbell"
  1687. },
  1688. {
  1689. "name": "Michael Dowling",
  1690. "email": "mtdowling@gmail.com",
  1691. "homepage": "https://github.com/mtdowling"
  1692. },
  1693. {
  1694. "name": "George Mponos",
  1695. "email": "gmponos@gmail.com",
  1696. "homepage": "https://github.com/gmponos"
  1697. },
  1698. {
  1699. "name": "Tobias Nyholm",
  1700. "email": "tobias.nyholm@gmail.com",
  1701. "homepage": "https://github.com/Nyholm"
  1702. },
  1703. {
  1704. "name": "Márk Sági-Kazár",
  1705. "email": "mark.sagikazar@gmail.com",
  1706. "homepage": "https://github.com/sagikazarmark"
  1707. },
  1708. {
  1709. "name": "Tobias Schultze",
  1710. "email": "webmaster@tubo-world.de",
  1711. "homepage": "https://github.com/Tobion"
  1712. },
  1713. {
  1714. "name": "Márk Sági-Kazár",
  1715. "email": "mark.sagikazar@gmail.com",
  1716. "homepage": "https://sagikazarmark.hu"
  1717. }
  1718. ],
  1719. "description": "PSR-7 message implementation that also provides common utility methods",
  1720. "keywords": [
  1721. "http",
  1722. "message",
  1723. "psr-7",
  1724. "request",
  1725. "response",
  1726. "stream",
  1727. "uri",
  1728. "url"
  1729. ],
  1730. "support": {
  1731. "issues": "https://github.com/guzzle/psr7/issues",
  1732. "source": "https://github.com/guzzle/psr7/tree/2.5.0"
  1733. },
  1734. "funding": [
  1735. {
  1736. "url": "https://github.com/GrahamCampbell",
  1737. "type": "github"
  1738. },
  1739. {
  1740. "url": "https://github.com/Nyholm",
  1741. "type": "github"
  1742. },
  1743. {
  1744. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1745. "type": "tidelift"
  1746. }
  1747. ],
  1748. "time": "2023-04-17T16:11:26+00:00"
  1749. },
  1750. {
  1751. "name": "guzzlehttp/uri-template",
  1752. "version": "v1.0.1",
  1753. "source": {
  1754. "type": "git",
  1755. "url": "https://github.com/guzzle/uri-template.git",
  1756. "reference": "b945d74a55a25a949158444f09ec0d3c120d69e2"
  1757. },
  1758. "dist": {
  1759. "type": "zip",
  1760. "url": "https://api.github.com/repos/guzzle/uri-template/zipball/b945d74a55a25a949158444f09ec0d3c120d69e2",
  1761. "reference": "b945d74a55a25a949158444f09ec0d3c120d69e2",
  1762. "shasum": ""
  1763. },
  1764. "require": {
  1765. "php": "^7.2.5 || ^8.0",
  1766. "symfony/polyfill-php80": "^1.17"
  1767. },
  1768. "require-dev": {
  1769. "phpunit/phpunit": "^8.5.19 || ^9.5.8",
  1770. "uri-template/tests": "1.0.0"
  1771. },
  1772. "type": "library",
  1773. "extra": {
  1774. "branch-alias": {
  1775. "dev-master": "1.0-dev"
  1776. }
  1777. },
  1778. "autoload": {
  1779. "psr-4": {
  1780. "GuzzleHttp\\UriTemplate\\": "src"
  1781. }
  1782. },
  1783. "notification-url": "https://packagist.org/downloads/",
  1784. "license": [
  1785. "MIT"
  1786. ],
  1787. "authors": [
  1788. {
  1789. "name": "Graham Campbell",
  1790. "email": "hello@gjcampbell.co.uk",
  1791. "homepage": "https://github.com/GrahamCampbell"
  1792. },
  1793. {
  1794. "name": "Michael Dowling",
  1795. "email": "mtdowling@gmail.com",
  1796. "homepage": "https://github.com/mtdowling"
  1797. },
  1798. {
  1799. "name": "George Mponos",
  1800. "email": "gmponos@gmail.com",
  1801. "homepage": "https://github.com/gmponos"
  1802. },
  1803. {
  1804. "name": "Tobias Nyholm",
  1805. "email": "tobias.nyholm@gmail.com",
  1806. "homepage": "https://github.com/Nyholm"
  1807. }
  1808. ],
  1809. "description": "A polyfill class for uri_template of PHP",
  1810. "keywords": [
  1811. "guzzlehttp",
  1812. "uri-template"
  1813. ],
  1814. "support": {
  1815. "issues": "https://github.com/guzzle/uri-template/issues",
  1816. "source": "https://github.com/guzzle/uri-template/tree/v1.0.1"
  1817. },
  1818. "funding": [
  1819. {
  1820. "url": "https://github.com/GrahamCampbell",
  1821. "type": "github"
  1822. },
  1823. {
  1824. "url": "https://github.com/Nyholm",
  1825. "type": "github"
  1826. },
  1827. {
  1828. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
  1829. "type": "tidelift"
  1830. }
  1831. ],
  1832. "time": "2021-10-07T12:57:01+00:00"
  1833. },
  1834. {
  1835. "name": "laravel/fortify",
  1836. "version": "v1.17.1",
  1837. "source": {
  1838. "type": "git",
  1839. "url": "https://github.com/laravel/fortify.git",
  1840. "reference": "76908639d6c58a4996ce8bbacea9ec7f610b2ec6"
  1841. },
  1842. "dist": {
  1843. "type": "zip",
  1844. "url": "https://api.github.com/repos/laravel/fortify/zipball/76908639d6c58a4996ce8bbacea9ec7f610b2ec6",
  1845. "reference": "76908639d6c58a4996ce8bbacea9ec7f610b2ec6",
  1846. "shasum": ""
  1847. },
  1848. "require": {
  1849. "bacon/bacon-qr-code": "^2.0",
  1850. "ext-json": "*",
  1851. "illuminate/support": "^8.82|^9.0|^10.0",
  1852. "php": "^7.3|^8.0",
  1853. "pragmarx/google2fa": "^7.0|^8.0"
  1854. },
  1855. "require-dev": {
  1856. "mockery/mockery": "^1.0",
  1857. "orchestra/testbench": "^6.0|^7.0|^8.0",
  1858. "phpstan/phpstan": "^1.10",
  1859. "phpunit/phpunit": "^9.3"
  1860. },
  1861. "type": "library",
  1862. "extra": {
  1863. "branch-alias": {
  1864. "dev-master": "1.x-dev"
  1865. },
  1866. "laravel": {
  1867. "providers": [
  1868. "Laravel\\Fortify\\FortifyServiceProvider"
  1869. ]
  1870. }
  1871. },
  1872. "autoload": {
  1873. "psr-4": {
  1874. "Laravel\\Fortify\\": "src/"
  1875. }
  1876. },
  1877. "notification-url": "https://packagist.org/downloads/",
  1878. "license": [
  1879. "MIT"
  1880. ],
  1881. "authors": [
  1882. {
  1883. "name": "Taylor Otwell",
  1884. "email": "taylor@laravel.com"
  1885. }
  1886. ],
  1887. "description": "Backend controllers and scaffolding for Laravel authentication.",
  1888. "keywords": [
  1889. "auth",
  1890. "laravel"
  1891. ],
  1892. "support": {
  1893. "issues": "https://github.com/laravel/fortify/issues",
  1894. "source": "https://github.com/laravel/fortify"
  1895. },
  1896. "time": "2023-04-19T15:48:59+00:00"
  1897. },
  1898. {
  1899. "name": "laravel/framework",
  1900. "version": "v10.9.0",
  1901. "source": {
  1902. "type": "git",
  1903. "url": "https://github.com/laravel/framework.git",
  1904. "reference": "35078125f61ef0b125edf524de934f108d4b47fd"
  1905. },
  1906. "dist": {
  1907. "type": "zip",
  1908. "url": "https://api.github.com/repos/laravel/framework/zipball/35078125f61ef0b125edf524de934f108d4b47fd",
  1909. "reference": "35078125f61ef0b125edf524de934f108d4b47fd",
  1910. "shasum": ""
  1911. },
  1912. "require": {
  1913. "brick/math": "^0.9.3|^0.10.2|^0.11",
  1914. "composer-runtime-api": "^2.2",
  1915. "doctrine/inflector": "^2.0.5",
  1916. "dragonmantank/cron-expression": "^3.3.2",
  1917. "egulias/email-validator": "^3.2.1|^4.0",
  1918. "ext-ctype": "*",
  1919. "ext-filter": "*",
  1920. "ext-hash": "*",
  1921. "ext-mbstring": "*",
  1922. "ext-openssl": "*",
  1923. "ext-session": "*",
  1924. "ext-tokenizer": "*",
  1925. "fruitcake/php-cors": "^1.2",
  1926. "guzzlehttp/uri-template": "^1.0",
  1927. "laravel/serializable-closure": "^1.3",
  1928. "league/commonmark": "^2.2.1",
  1929. "league/flysystem": "^3.8.0",
  1930. "monolog/monolog": "^3.0",
  1931. "nesbot/carbon": "^2.62.1",
  1932. "nunomaduro/termwind": "^1.13",
  1933. "php": "^8.1",
  1934. "psr/container": "^1.1.1|^2.0.1",
  1935. "psr/log": "^1.0|^2.0|^3.0",
  1936. "psr/simple-cache": "^1.0|^2.0|^3.0",
  1937. "ramsey/uuid": "^4.7",
  1938. "symfony/console": "^6.2",
  1939. "symfony/error-handler": "^6.2",
  1940. "symfony/finder": "^6.2",
  1941. "symfony/http-foundation": "^6.2",
  1942. "symfony/http-kernel": "^6.2",
  1943. "symfony/mailer": "^6.2",
  1944. "symfony/mime": "^6.2",
  1945. "symfony/process": "^6.2",
  1946. "symfony/routing": "^6.2",
  1947. "symfony/uid": "^6.2",
  1948. "symfony/var-dumper": "^6.2",
  1949. "tijsverkoyen/css-to-inline-styles": "^2.2.5",
  1950. "vlucas/phpdotenv": "^5.4.1",
  1951. "voku/portable-ascii": "^2.0"
  1952. },
  1953. "conflict": {
  1954. "tightenco/collect": "<5.5.33"
  1955. },
  1956. "provide": {
  1957. "psr/container-implementation": "1.1|2.0",
  1958. "psr/simple-cache-implementation": "1.0|2.0|3.0"
  1959. },
  1960. "replace": {
  1961. "illuminate/auth": "self.version",
  1962. "illuminate/broadcasting": "self.version",
  1963. "illuminate/bus": "self.version",
  1964. "illuminate/cache": "self.version",
  1965. "illuminate/collections": "self.version",
  1966. "illuminate/conditionable": "self.version",
  1967. "illuminate/config": "self.version",
  1968. "illuminate/console": "self.version",
  1969. "illuminate/container": "self.version",
  1970. "illuminate/contracts": "self.version",
  1971. "illuminate/cookie": "self.version",
  1972. "illuminate/database": "self.version",
  1973. "illuminate/encryption": "self.version",
  1974. "illuminate/events": "self.version",
  1975. "illuminate/filesystem": "self.version",
  1976. "illuminate/hashing": "self.version",
  1977. "illuminate/http": "self.version",
  1978. "illuminate/log": "self.version",
  1979. "illuminate/macroable": "self.version",
  1980. "illuminate/mail": "self.version",
  1981. "illuminate/notifications": "self.version",
  1982. "illuminate/pagination": "self.version",
  1983. "illuminate/pipeline": "self.version",
  1984. "illuminate/process": "self.version",
  1985. "illuminate/queue": "self.version",
  1986. "illuminate/redis": "self.version",
  1987. "illuminate/routing": "self.version",
  1988. "illuminate/session": "self.version",
  1989. "illuminate/support": "self.version",
  1990. "illuminate/testing": "self.version",
  1991. "illuminate/translation": "self.version",
  1992. "illuminate/validation": "self.version",
  1993. "illuminate/view": "self.version"
  1994. },
  1995. "require-dev": {
  1996. "ably/ably-php": "^1.0",
  1997. "aws/aws-sdk-php": "^3.235.5",
  1998. "doctrine/dbal": "^3.5.1",
  1999. "ext-gmp": "*",
  2000. "fakerphp/faker": "^1.21",
  2001. "guzzlehttp/guzzle": "^7.5",
  2002. "league/flysystem-aws-s3-v3": "^3.0",
  2003. "league/flysystem-ftp": "^3.0",
  2004. "league/flysystem-path-prefixing": "^3.3",
  2005. "league/flysystem-read-only": "^3.3",
  2006. "league/flysystem-sftp-v3": "^3.0",
  2007. "mockery/mockery": "^1.5.1",
  2008. "orchestra/testbench-core": "^8.4",
  2009. "pda/pheanstalk": "^4.0",
  2010. "phpstan/phpdoc-parser": "^1.15",
  2011. "phpstan/phpstan": "^1.4.7",
  2012. "phpunit/phpunit": "^10.0.7",
  2013. "predis/predis": "^2.0.2",
  2014. "symfony/cache": "^6.2",
  2015. "symfony/http-client": "^6.2.4"
  2016. },
  2017. "suggest": {
  2018. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  2019. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.235.5).",
  2020. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  2021. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^3.5.1).",
  2022. "ext-apcu": "Required to use the APC cache driver.",
  2023. "ext-fileinfo": "Required to use the Filesystem class.",
  2024. "ext-ftp": "Required to use the Flysystem FTP driver.",
  2025. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  2026. "ext-memcached": "Required to use the memcache cache driver.",
  2027. "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.",
  2028. "ext-pdo": "Required to use all database features.",
  2029. "ext-posix": "Required to use all features of the queue worker.",
  2030. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  2031. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  2032. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  2033. "guzzlehttp/guzzle": "Required to use the HTTP Client and the ping methods on schedules (^7.5).",
  2034. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  2035. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.0).",
  2036. "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.0).",
  2037. "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.3).",
  2038. "league/flysystem-read-only": "Required to use read-only disks (^3.3)",
  2039. "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.0).",
  2040. "mockery/mockery": "Required to use mocking (^1.5.1).",
  2041. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  2042. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  2043. "phpunit/phpunit": "Required to use assertions and run tests (^9.5.8|^10.0.7).",
  2044. "predis/predis": "Required to use the predis connector (^2.0.2).",
  2045. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  2046. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).",
  2047. "symfony/cache": "Required to PSR-6 cache bridge (^6.2).",
  2048. "symfony/filesystem": "Required to enable support for relative symbolic links (^6.2).",
  2049. "symfony/http-client": "Required to enable support for the Symfony API mail transports (^6.2).",
  2050. "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^6.2).",
  2051. "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^6.2).",
  2052. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0)."
  2053. },
  2054. "type": "library",
  2055. "extra": {
  2056. "branch-alias": {
  2057. "dev-master": "10.x-dev"
  2058. }
  2059. },
  2060. "autoload": {
  2061. "files": [
  2062. "src/Illuminate/Collections/helpers.php",
  2063. "src/Illuminate/Events/functions.php",
  2064. "src/Illuminate/Foundation/helpers.php",
  2065. "src/Illuminate/Support/helpers.php"
  2066. ],
  2067. "psr-4": {
  2068. "Illuminate\\": "src/Illuminate/",
  2069. "Illuminate\\Support\\": [
  2070. "src/Illuminate/Macroable/",
  2071. "src/Illuminate/Collections/",
  2072. "src/Illuminate/Conditionable/"
  2073. ]
  2074. }
  2075. },
  2076. "notification-url": "https://packagist.org/downloads/",
  2077. "license": [
  2078. "MIT"
  2079. ],
  2080. "authors": [
  2081. {
  2082. "name": "Taylor Otwell",
  2083. "email": "taylor@laravel.com"
  2084. }
  2085. ],
  2086. "description": "The Laravel Framework.",
  2087. "homepage": "https://laravel.com",
  2088. "keywords": [
  2089. "framework",
  2090. "laravel"
  2091. ],
  2092. "support": {
  2093. "issues": "https://github.com/laravel/framework/issues",
  2094. "source": "https://github.com/laravel/framework"
  2095. },
  2096. "time": "2023-04-25T13:47:18+00:00"
  2097. },
  2098. {
  2099. "name": "laravel/sanctum",
  2100. "version": "v3.2.5",
  2101. "source": {
  2102. "type": "git",
  2103. "url": "https://github.com/laravel/sanctum.git",
  2104. "reference": "8ebda85d59d3c414863a7f4d816ef8302faad876"
  2105. },
  2106. "dist": {
  2107. "type": "zip",
  2108. "url": "https://api.github.com/repos/laravel/sanctum/zipball/8ebda85d59d3c414863a7f4d816ef8302faad876",
  2109. "reference": "8ebda85d59d3c414863a7f4d816ef8302faad876",
  2110. "shasum": ""
  2111. },
  2112. "require": {
  2113. "ext-json": "*",
  2114. "illuminate/console": "^9.21|^10.0",
  2115. "illuminate/contracts": "^9.21|^10.0",
  2116. "illuminate/database": "^9.21|^10.0",
  2117. "illuminate/support": "^9.21|^10.0",
  2118. "php": "^8.0.2"
  2119. },
  2120. "require-dev": {
  2121. "mockery/mockery": "^1.0",
  2122. "orchestra/testbench": "^7.0|^8.0",
  2123. "phpstan/phpstan": "^1.10",
  2124. "phpunit/phpunit": "^9.3"
  2125. },
  2126. "type": "library",
  2127. "extra": {
  2128. "branch-alias": {
  2129. "dev-master": "3.x-dev"
  2130. },
  2131. "laravel": {
  2132. "providers": [
  2133. "Laravel\\Sanctum\\SanctumServiceProvider"
  2134. ]
  2135. }
  2136. },
  2137. "autoload": {
  2138. "psr-4": {
  2139. "Laravel\\Sanctum\\": "src/"
  2140. }
  2141. },
  2142. "notification-url": "https://packagist.org/downloads/",
  2143. "license": [
  2144. "MIT"
  2145. ],
  2146. "authors": [
  2147. {
  2148. "name": "Taylor Otwell",
  2149. "email": "taylor@laravel.com"
  2150. }
  2151. ],
  2152. "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.",
  2153. "keywords": [
  2154. "auth",
  2155. "laravel",
  2156. "sanctum"
  2157. ],
  2158. "support": {
  2159. "issues": "https://github.com/laravel/sanctum/issues",
  2160. "source": "https://github.com/laravel/sanctum"
  2161. },
  2162. "time": "2023-05-01T19:39:51+00:00"
  2163. },
  2164. {
  2165. "name": "laravel/serializable-closure",
  2166. "version": "v1.3.0",
  2167. "source": {
  2168. "type": "git",
  2169. "url": "https://github.com/laravel/serializable-closure.git",
  2170. "reference": "f23fe9d4e95255dacee1bf3525e0810d1a1b0f37"
  2171. },
  2172. "dist": {
  2173. "type": "zip",
  2174. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/f23fe9d4e95255dacee1bf3525e0810d1a1b0f37",
  2175. "reference": "f23fe9d4e95255dacee1bf3525e0810d1a1b0f37",
  2176. "shasum": ""
  2177. },
  2178. "require": {
  2179. "php": "^7.3|^8.0"
  2180. },
  2181. "require-dev": {
  2182. "nesbot/carbon": "^2.61",
  2183. "pestphp/pest": "^1.21.3",
  2184. "phpstan/phpstan": "^1.8.2",
  2185. "symfony/var-dumper": "^5.4.11"
  2186. },
  2187. "type": "library",
  2188. "extra": {
  2189. "branch-alias": {
  2190. "dev-master": "1.x-dev"
  2191. }
  2192. },
  2193. "autoload": {
  2194. "psr-4": {
  2195. "Laravel\\SerializableClosure\\": "src/"
  2196. }
  2197. },
  2198. "notification-url": "https://packagist.org/downloads/",
  2199. "license": [
  2200. "MIT"
  2201. ],
  2202. "authors": [
  2203. {
  2204. "name": "Taylor Otwell",
  2205. "email": "taylor@laravel.com"
  2206. },
  2207. {
  2208. "name": "Nuno Maduro",
  2209. "email": "nuno@laravel.com"
  2210. }
  2211. ],
  2212. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  2213. "keywords": [
  2214. "closure",
  2215. "laravel",
  2216. "serializable"
  2217. ],
  2218. "support": {
  2219. "issues": "https://github.com/laravel/serializable-closure/issues",
  2220. "source": "https://github.com/laravel/serializable-closure"
  2221. },
  2222. "time": "2023-01-30T18:31:20+00:00"
  2223. },
  2224. {
  2225. "name": "laravel/socialite",
  2226. "version": "v5.6.1",
  2227. "source": {
  2228. "type": "git",
  2229. "url": "https://github.com/laravel/socialite.git",
  2230. "reference": "a14a177f2cc71d8add71e2b19e00800e83bdda09"
  2231. },
  2232. "dist": {
  2233. "type": "zip",
  2234. "url": "https://api.github.com/repos/laravel/socialite/zipball/a14a177f2cc71d8add71e2b19e00800e83bdda09",
  2235. "reference": "a14a177f2cc71d8add71e2b19e00800e83bdda09",
  2236. "shasum": ""
  2237. },
  2238. "require": {
  2239. "ext-json": "*",
  2240. "guzzlehttp/guzzle": "^6.0|^7.0",
  2241. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2242. "illuminate/http": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2243. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2244. "league/oauth1-client": "^1.10.1",
  2245. "php": "^7.2|^8.0"
  2246. },
  2247. "require-dev": {
  2248. "mockery/mockery": "^1.0",
  2249. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0",
  2250. "phpunit/phpunit": "^8.0|^9.3"
  2251. },
  2252. "type": "library",
  2253. "extra": {
  2254. "branch-alias": {
  2255. "dev-master": "5.x-dev"
  2256. },
  2257. "laravel": {
  2258. "providers": [
  2259. "Laravel\\Socialite\\SocialiteServiceProvider"
  2260. ],
  2261. "aliases": {
  2262. "Socialite": "Laravel\\Socialite\\Facades\\Socialite"
  2263. }
  2264. }
  2265. },
  2266. "autoload": {
  2267. "psr-4": {
  2268. "Laravel\\Socialite\\": "src/"
  2269. }
  2270. },
  2271. "notification-url": "https://packagist.org/downloads/",
  2272. "license": [
  2273. "MIT"
  2274. ],
  2275. "authors": [
  2276. {
  2277. "name": "Taylor Otwell",
  2278. "email": "taylor@laravel.com"
  2279. }
  2280. ],
  2281. "description": "Laravel wrapper around OAuth 1 & OAuth 2 libraries.",
  2282. "homepage": "https://laravel.com",
  2283. "keywords": [
  2284. "laravel",
  2285. "oauth"
  2286. ],
  2287. "support": {
  2288. "issues": "https://github.com/laravel/socialite/issues",
  2289. "source": "https://github.com/laravel/socialite"
  2290. },
  2291. "time": "2023-01-20T15:42:35+00:00"
  2292. },
  2293. {
  2294. "name": "laravel/tinker",
  2295. "version": "v2.8.1",
  2296. "source": {
  2297. "type": "git",
  2298. "url": "https://github.com/laravel/tinker.git",
  2299. "reference": "04a2d3bd0d650c0764f70bf49d1ee39393e4eb10"
  2300. },
  2301. "dist": {
  2302. "type": "zip",
  2303. "url": "https://api.github.com/repos/laravel/tinker/zipball/04a2d3bd0d650c0764f70bf49d1ee39393e4eb10",
  2304. "reference": "04a2d3bd0d650c0764f70bf49d1ee39393e4eb10",
  2305. "shasum": ""
  2306. },
  2307. "require": {
  2308. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2309. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2310. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2311. "php": "^7.2.5|^8.0",
  2312. "psy/psysh": "^0.10.4|^0.11.1",
  2313. "symfony/var-dumper": "^4.3.4|^5.0|^6.0"
  2314. },
  2315. "require-dev": {
  2316. "mockery/mockery": "~1.3.3|^1.4.2",
  2317. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2318. },
  2319. "suggest": {
  2320. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0)."
  2321. },
  2322. "type": "library",
  2323. "extra": {
  2324. "branch-alias": {
  2325. "dev-master": "2.x-dev"
  2326. },
  2327. "laravel": {
  2328. "providers": [
  2329. "Laravel\\Tinker\\TinkerServiceProvider"
  2330. ]
  2331. }
  2332. },
  2333. "autoload": {
  2334. "psr-4": {
  2335. "Laravel\\Tinker\\": "src/"
  2336. }
  2337. },
  2338. "notification-url": "https://packagist.org/downloads/",
  2339. "license": [
  2340. "MIT"
  2341. ],
  2342. "authors": [
  2343. {
  2344. "name": "Taylor Otwell",
  2345. "email": "taylor@laravel.com"
  2346. }
  2347. ],
  2348. "description": "Powerful REPL for the Laravel framework.",
  2349. "keywords": [
  2350. "REPL",
  2351. "Tinker",
  2352. "laravel",
  2353. "psysh"
  2354. ],
  2355. "support": {
  2356. "issues": "https://github.com/laravel/tinker/issues",
  2357. "source": "https://github.com/laravel/tinker/tree/v2.8.1"
  2358. },
  2359. "time": "2023-02-15T16:40:09+00:00"
  2360. },
  2361. {
  2362. "name": "league/commonmark",
  2363. "version": "2.4.0",
  2364. "source": {
  2365. "type": "git",
  2366. "url": "https://github.com/thephpleague/commonmark.git",
  2367. "reference": "d44a24690f16b8c1808bf13b1bd54ae4c63ea048"
  2368. },
  2369. "dist": {
  2370. "type": "zip",
  2371. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/d44a24690f16b8c1808bf13b1bd54ae4c63ea048",
  2372. "reference": "d44a24690f16b8c1808bf13b1bd54ae4c63ea048",
  2373. "shasum": ""
  2374. },
  2375. "require": {
  2376. "ext-mbstring": "*",
  2377. "league/config": "^1.1.1",
  2378. "php": "^7.4 || ^8.0",
  2379. "psr/event-dispatcher": "^1.0",
  2380. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  2381. "symfony/polyfill-php80": "^1.16"
  2382. },
  2383. "require-dev": {
  2384. "cebe/markdown": "^1.0",
  2385. "commonmark/cmark": "0.30.0",
  2386. "commonmark/commonmark.js": "0.30.0",
  2387. "composer/package-versions-deprecated": "^1.8",
  2388. "embed/embed": "^4.4",
  2389. "erusev/parsedown": "^1.0",
  2390. "ext-json": "*",
  2391. "github/gfm": "0.29.0",
  2392. "michelf/php-markdown": "^1.4 || ^2.0",
  2393. "nyholm/psr7": "^1.5",
  2394. "phpstan/phpstan": "^1.8.2",
  2395. "phpunit/phpunit": "^9.5.21",
  2396. "scrutinizer/ocular": "^1.8.1",
  2397. "symfony/finder": "^5.3 | ^6.0",
  2398. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0",
  2399. "unleashedtech/php-coding-standard": "^3.1.1",
  2400. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  2401. },
  2402. "suggest": {
  2403. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  2404. },
  2405. "type": "library",
  2406. "extra": {
  2407. "branch-alias": {
  2408. "dev-main": "2.5-dev"
  2409. }
  2410. },
  2411. "autoload": {
  2412. "psr-4": {
  2413. "League\\CommonMark\\": "src"
  2414. }
  2415. },
  2416. "notification-url": "https://packagist.org/downloads/",
  2417. "license": [
  2418. "BSD-3-Clause"
  2419. ],
  2420. "authors": [
  2421. {
  2422. "name": "Colin O'Dell",
  2423. "email": "colinodell@gmail.com",
  2424. "homepage": "https://www.colinodell.com",
  2425. "role": "Lead Developer"
  2426. }
  2427. ],
  2428. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  2429. "homepage": "https://commonmark.thephpleague.com",
  2430. "keywords": [
  2431. "commonmark",
  2432. "flavored",
  2433. "gfm",
  2434. "github",
  2435. "github-flavored",
  2436. "markdown",
  2437. "md",
  2438. "parser"
  2439. ],
  2440. "support": {
  2441. "docs": "https://commonmark.thephpleague.com/",
  2442. "forum": "https://github.com/thephpleague/commonmark/discussions",
  2443. "issues": "https://github.com/thephpleague/commonmark/issues",
  2444. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2445. "source": "https://github.com/thephpleague/commonmark"
  2446. },
  2447. "funding": [
  2448. {
  2449. "url": "https://www.colinodell.com/sponsor",
  2450. "type": "custom"
  2451. },
  2452. {
  2453. "url": "https://www.paypal.me/colinpodell/10.00",
  2454. "type": "custom"
  2455. },
  2456. {
  2457. "url": "https://github.com/colinodell",
  2458. "type": "github"
  2459. },
  2460. {
  2461. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2462. "type": "tidelift"
  2463. }
  2464. ],
  2465. "time": "2023-03-24T15:16:10+00:00"
  2466. },
  2467. {
  2468. "name": "league/config",
  2469. "version": "v1.2.0",
  2470. "source": {
  2471. "type": "git",
  2472. "url": "https://github.com/thephpleague/config.git",
  2473. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  2474. },
  2475. "dist": {
  2476. "type": "zip",
  2477. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2478. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2479. "shasum": ""
  2480. },
  2481. "require": {
  2482. "dflydev/dot-access-data": "^3.0.1",
  2483. "nette/schema": "^1.2",
  2484. "php": "^7.4 || ^8.0"
  2485. },
  2486. "require-dev": {
  2487. "phpstan/phpstan": "^1.8.2",
  2488. "phpunit/phpunit": "^9.5.5",
  2489. "scrutinizer/ocular": "^1.8.1",
  2490. "unleashedtech/php-coding-standard": "^3.1",
  2491. "vimeo/psalm": "^4.7.3"
  2492. },
  2493. "type": "library",
  2494. "extra": {
  2495. "branch-alias": {
  2496. "dev-main": "1.2-dev"
  2497. }
  2498. },
  2499. "autoload": {
  2500. "psr-4": {
  2501. "League\\Config\\": "src"
  2502. }
  2503. },
  2504. "notification-url": "https://packagist.org/downloads/",
  2505. "license": [
  2506. "BSD-3-Clause"
  2507. ],
  2508. "authors": [
  2509. {
  2510. "name": "Colin O'Dell",
  2511. "email": "colinodell@gmail.com",
  2512. "homepage": "https://www.colinodell.com",
  2513. "role": "Lead Developer"
  2514. }
  2515. ],
  2516. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  2517. "homepage": "https://config.thephpleague.com",
  2518. "keywords": [
  2519. "array",
  2520. "config",
  2521. "configuration",
  2522. "dot",
  2523. "dot-access",
  2524. "nested",
  2525. "schema"
  2526. ],
  2527. "support": {
  2528. "docs": "https://config.thephpleague.com/",
  2529. "issues": "https://github.com/thephpleague/config/issues",
  2530. "rss": "https://github.com/thephpleague/config/releases.atom",
  2531. "source": "https://github.com/thephpleague/config"
  2532. },
  2533. "funding": [
  2534. {
  2535. "url": "https://www.colinodell.com/sponsor",
  2536. "type": "custom"
  2537. },
  2538. {
  2539. "url": "https://www.paypal.me/colinpodell/10.00",
  2540. "type": "custom"
  2541. },
  2542. {
  2543. "url": "https://github.com/colinodell",
  2544. "type": "github"
  2545. }
  2546. ],
  2547. "time": "2022-12-11T20:36:23+00:00"
  2548. },
  2549. {
  2550. "name": "league/flysystem",
  2551. "version": "3.15.1",
  2552. "source": {
  2553. "type": "git",
  2554. "url": "https://github.com/thephpleague/flysystem.git",
  2555. "reference": "a141d430414fcb8bf797a18716b09f759a385bed"
  2556. },
  2557. "dist": {
  2558. "type": "zip",
  2559. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/a141d430414fcb8bf797a18716b09f759a385bed",
  2560. "reference": "a141d430414fcb8bf797a18716b09f759a385bed",
  2561. "shasum": ""
  2562. },
  2563. "require": {
  2564. "league/flysystem-local": "^3.0.0",
  2565. "league/mime-type-detection": "^1.0.0",
  2566. "php": "^8.0.2"
  2567. },
  2568. "conflict": {
  2569. "aws/aws-sdk-php": "3.209.31 || 3.210.0",
  2570. "guzzlehttp/guzzle": "<7.0",
  2571. "guzzlehttp/ringphp": "<1.1.1",
  2572. "phpseclib/phpseclib": "3.0.15",
  2573. "symfony/http-client": "<5.2"
  2574. },
  2575. "require-dev": {
  2576. "async-aws/s3": "^1.5",
  2577. "async-aws/simple-s3": "^1.1",
  2578. "aws/aws-sdk-php": "^3.220.0",
  2579. "composer/semver": "^3.0",
  2580. "ext-fileinfo": "*",
  2581. "ext-ftp": "*",
  2582. "ext-zip": "*",
  2583. "friendsofphp/php-cs-fixer": "^3.5",
  2584. "google/cloud-storage": "^1.23",
  2585. "microsoft/azure-storage-blob": "^1.1",
  2586. "phpseclib/phpseclib": "^3.0.14",
  2587. "phpstan/phpstan": "^0.12.26",
  2588. "phpunit/phpunit": "^9.5.11",
  2589. "sabre/dav": "^4.3.1"
  2590. },
  2591. "type": "library",
  2592. "autoload": {
  2593. "psr-4": {
  2594. "League\\Flysystem\\": "src"
  2595. }
  2596. },
  2597. "notification-url": "https://packagist.org/downloads/",
  2598. "license": [
  2599. "MIT"
  2600. ],
  2601. "authors": [
  2602. {
  2603. "name": "Frank de Jonge",
  2604. "email": "info@frankdejonge.nl"
  2605. }
  2606. ],
  2607. "description": "File storage abstraction for PHP",
  2608. "keywords": [
  2609. "WebDAV",
  2610. "aws",
  2611. "cloud",
  2612. "file",
  2613. "files",
  2614. "filesystem",
  2615. "filesystems",
  2616. "ftp",
  2617. "s3",
  2618. "sftp",
  2619. "storage"
  2620. ],
  2621. "support": {
  2622. "issues": "https://github.com/thephpleague/flysystem/issues",
  2623. "source": "https://github.com/thephpleague/flysystem/tree/3.15.1"
  2624. },
  2625. "funding": [
  2626. {
  2627. "url": "https://ecologi.com/frankdejonge",
  2628. "type": "custom"
  2629. },
  2630. {
  2631. "url": "https://github.com/frankdejonge",
  2632. "type": "github"
  2633. }
  2634. ],
  2635. "time": "2023-05-04T09:04:26+00:00"
  2636. },
  2637. {
  2638. "name": "league/flysystem-local",
  2639. "version": "3.15.0",
  2640. "source": {
  2641. "type": "git",
  2642. "url": "https://github.com/thephpleague/flysystem-local.git",
  2643. "reference": "543f64c397fefdf9cfeac443ffb6beff602796b3"
  2644. },
  2645. "dist": {
  2646. "type": "zip",
  2647. "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/543f64c397fefdf9cfeac443ffb6beff602796b3",
  2648. "reference": "543f64c397fefdf9cfeac443ffb6beff602796b3",
  2649. "shasum": ""
  2650. },
  2651. "require": {
  2652. "ext-fileinfo": "*",
  2653. "league/flysystem": "^3.0.0",
  2654. "league/mime-type-detection": "^1.0.0",
  2655. "php": "^8.0.2"
  2656. },
  2657. "type": "library",
  2658. "autoload": {
  2659. "psr-4": {
  2660. "League\\Flysystem\\Local\\": ""
  2661. }
  2662. },
  2663. "notification-url": "https://packagist.org/downloads/",
  2664. "license": [
  2665. "MIT"
  2666. ],
  2667. "authors": [
  2668. {
  2669. "name": "Frank de Jonge",
  2670. "email": "info@frankdejonge.nl"
  2671. }
  2672. ],
  2673. "description": "Local filesystem adapter for Flysystem.",
  2674. "keywords": [
  2675. "Flysystem",
  2676. "file",
  2677. "files",
  2678. "filesystem",
  2679. "local"
  2680. ],
  2681. "support": {
  2682. "issues": "https://github.com/thephpleague/flysystem-local/issues",
  2683. "source": "https://github.com/thephpleague/flysystem-local/tree/3.15.0"
  2684. },
  2685. "funding": [
  2686. {
  2687. "url": "https://ecologi.com/frankdejonge",
  2688. "type": "custom"
  2689. },
  2690. {
  2691. "url": "https://github.com/frankdejonge",
  2692. "type": "github"
  2693. }
  2694. ],
  2695. "time": "2023-05-02T20:02:14+00:00"
  2696. },
  2697. {
  2698. "name": "league/mime-type-detection",
  2699. "version": "1.11.0",
  2700. "source": {
  2701. "type": "git",
  2702. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2703. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd"
  2704. },
  2705. "dist": {
  2706. "type": "zip",
  2707. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  2708. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  2709. "shasum": ""
  2710. },
  2711. "require": {
  2712. "ext-fileinfo": "*",
  2713. "php": "^7.2 || ^8.0"
  2714. },
  2715. "require-dev": {
  2716. "friendsofphp/php-cs-fixer": "^3.2",
  2717. "phpstan/phpstan": "^0.12.68",
  2718. "phpunit/phpunit": "^8.5.8 || ^9.3"
  2719. },
  2720. "type": "library",
  2721. "autoload": {
  2722. "psr-4": {
  2723. "League\\MimeTypeDetection\\": "src"
  2724. }
  2725. },
  2726. "notification-url": "https://packagist.org/downloads/",
  2727. "license": [
  2728. "MIT"
  2729. ],
  2730. "authors": [
  2731. {
  2732. "name": "Frank de Jonge",
  2733. "email": "info@frankdejonge.nl"
  2734. }
  2735. ],
  2736. "description": "Mime-type detection for Flysystem",
  2737. "support": {
  2738. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2739. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.11.0"
  2740. },
  2741. "funding": [
  2742. {
  2743. "url": "https://github.com/frankdejonge",
  2744. "type": "github"
  2745. },
  2746. {
  2747. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2748. "type": "tidelift"
  2749. }
  2750. ],
  2751. "time": "2022-04-17T13:12:02+00:00"
  2752. },
  2753. {
  2754. "name": "league/oauth1-client",
  2755. "version": "v1.10.1",
  2756. "source": {
  2757. "type": "git",
  2758. "url": "https://github.com/thephpleague/oauth1-client.git",
  2759. "reference": "d6365b901b5c287dd41f143033315e2f777e1167"
  2760. },
  2761. "dist": {
  2762. "type": "zip",
  2763. "url": "https://api.github.com/repos/thephpleague/oauth1-client/zipball/d6365b901b5c287dd41f143033315e2f777e1167",
  2764. "reference": "d6365b901b5c287dd41f143033315e2f777e1167",
  2765. "shasum": ""
  2766. },
  2767. "require": {
  2768. "ext-json": "*",
  2769. "ext-openssl": "*",
  2770. "guzzlehttp/guzzle": "^6.0|^7.0",
  2771. "guzzlehttp/psr7": "^1.7|^2.0",
  2772. "php": ">=7.1||>=8.0"
  2773. },
  2774. "require-dev": {
  2775. "ext-simplexml": "*",
  2776. "friendsofphp/php-cs-fixer": "^2.17",
  2777. "mockery/mockery": "^1.3.3",
  2778. "phpstan/phpstan": "^0.12.42",
  2779. "phpunit/phpunit": "^7.5||9.5"
  2780. },
  2781. "suggest": {
  2782. "ext-simplexml": "For decoding XML-based responses."
  2783. },
  2784. "type": "library",
  2785. "extra": {
  2786. "branch-alias": {
  2787. "dev-master": "1.0-dev",
  2788. "dev-develop": "2.0-dev"
  2789. }
  2790. },
  2791. "autoload": {
  2792. "psr-4": {
  2793. "League\\OAuth1\\Client\\": "src/"
  2794. }
  2795. },
  2796. "notification-url": "https://packagist.org/downloads/",
  2797. "license": [
  2798. "MIT"
  2799. ],
  2800. "authors": [
  2801. {
  2802. "name": "Ben Corlett",
  2803. "email": "bencorlett@me.com",
  2804. "homepage": "http://www.webcomm.com.au",
  2805. "role": "Developer"
  2806. }
  2807. ],
  2808. "description": "OAuth 1.0 Client Library",
  2809. "keywords": [
  2810. "Authentication",
  2811. "SSO",
  2812. "authorization",
  2813. "bitbucket",
  2814. "identity",
  2815. "idp",
  2816. "oauth",
  2817. "oauth1",
  2818. "single sign on",
  2819. "trello",
  2820. "tumblr",
  2821. "twitter"
  2822. ],
  2823. "support": {
  2824. "issues": "https://github.com/thephpleague/oauth1-client/issues",
  2825. "source": "https://github.com/thephpleague/oauth1-client/tree/v1.10.1"
  2826. },
  2827. "time": "2022-04-15T14:02:14+00:00"
  2828. },
  2829. {
  2830. "name": "league/uri-parser",
  2831. "version": "1.4.1",
  2832. "source": {
  2833. "type": "git",
  2834. "url": "https://github.com/thephpleague/uri-parser.git",
  2835. "reference": "671548427e4c932352d9b9279fdfa345bf63fa00"
  2836. },
  2837. "dist": {
  2838. "type": "zip",
  2839. "url": "https://api.github.com/repos/thephpleague/uri-parser/zipball/671548427e4c932352d9b9279fdfa345bf63fa00",
  2840. "reference": "671548427e4c932352d9b9279fdfa345bf63fa00",
  2841. "shasum": ""
  2842. },
  2843. "require": {
  2844. "php": ">=7.0.0"
  2845. },
  2846. "require-dev": {
  2847. "friendsofphp/php-cs-fixer": "^2.0",
  2848. "phpstan/phpstan": "^0.9.2",
  2849. "phpstan/phpstan-phpunit": "^0.9.4",
  2850. "phpstan/phpstan-strict-rules": "^0.9.0",
  2851. "phpunit/phpunit": "^6.0"
  2852. },
  2853. "suggest": {
  2854. "ext-intl": "Allow parsing RFC3987 compliant hosts",
  2855. "league/uri-schemes": "Allow validating and normalizing URI parsing results"
  2856. },
  2857. "type": "library",
  2858. "extra": {
  2859. "branch-alias": {
  2860. "dev-master": "1.x-dev"
  2861. }
  2862. },
  2863. "autoload": {
  2864. "files": [
  2865. "src/functions_include.php"
  2866. ],
  2867. "psr-4": {
  2868. "League\\Uri\\": "src"
  2869. }
  2870. },
  2871. "notification-url": "https://packagist.org/downloads/",
  2872. "license": [
  2873. "MIT"
  2874. ],
  2875. "authors": [
  2876. {
  2877. "name": "Ignace Nyamagana Butera",
  2878. "email": "nyamsprod@gmail.com",
  2879. "homepage": "https://nyamsprod.com"
  2880. }
  2881. ],
  2882. "description": "userland URI parser RFC 3986 compliant",
  2883. "homepage": "https://github.com/thephpleague/uri-parser",
  2884. "keywords": [
  2885. "parse_url",
  2886. "parser",
  2887. "rfc3986",
  2888. "rfc3987",
  2889. "uri",
  2890. "url"
  2891. ],
  2892. "support": {
  2893. "issues": "https://github.com/thephpleague/uri-parser/issues",
  2894. "source": "https://github.com/thephpleague/uri-parser/tree/master"
  2895. },
  2896. "abandoned": true,
  2897. "time": "2018-11-22T07:55:51+00:00"
  2898. },
  2899. {
  2900. "name": "leandrocfe/filament-apex-charts",
  2901. "version": "1.0.2",
  2902. "source": {
  2903. "type": "git",
  2904. "url": "https://github.com/leandrocfe/filament-apex-charts.git",
  2905. "reference": "26118c0c3f81465b418ecc630c7e1a63693a7f7b"
  2906. },
  2907. "dist": {
  2908. "type": "zip",
  2909. "url": "https://api.github.com/repos/leandrocfe/filament-apex-charts/zipball/26118c0c3f81465b418ecc630c7e1a63693a7f7b",
  2910. "reference": "26118c0c3f81465b418ecc630c7e1a63693a7f7b",
  2911. "shasum": ""
  2912. },
  2913. "require": {
  2914. "filament/filament": "^2.16",
  2915. "illuminate/contracts": "^9.0|^10.0",
  2916. "livewire/livewire": "^2.11",
  2917. "php": "^8.1",
  2918. "spatie/laravel-package-tools": "^1.13.0"
  2919. },
  2920. "require-dev": {
  2921. "laravel/pint": "^1.0",
  2922. "nunomaduro/collision": "^6.0|^7.0",
  2923. "nunomaduro/larastan": "^2.0.1",
  2924. "orchestra/testbench": "^7.0|^8.0",
  2925. "pestphp/pest": "^1.21",
  2926. "pestphp/pest-plugin-laravel": "^1.1",
  2927. "phpstan/extension-installer": "^1.1",
  2928. "phpstan/phpstan-deprecation-rules": "^1.0",
  2929. "phpstan/phpstan-phpunit": "^1.0",
  2930. "phpunit/phpunit": "^9.5|^10.0"
  2931. },
  2932. "type": "library",
  2933. "extra": {
  2934. "laravel": {
  2935. "providers": [
  2936. "Leandrocfe\\FilamentApexCharts\\FilamentApexChartsServiceProvider"
  2937. ],
  2938. "aliases": {
  2939. "FilamentApexCharts": "Leandrocfe\\FilamentApexCharts\\Facades\\FilamentApexCharts"
  2940. }
  2941. }
  2942. },
  2943. "autoload": {
  2944. "psr-4": {
  2945. "Leandrocfe\\FilamentApexCharts\\": "src"
  2946. }
  2947. },
  2948. "notification-url": "https://packagist.org/downloads/",
  2949. "license": [
  2950. "MIT"
  2951. ],
  2952. "authors": [
  2953. {
  2954. "name": "Leandro Costa Ferreira",
  2955. "email": "leandrocfe@gmail.com",
  2956. "role": "Developer"
  2957. }
  2958. ],
  2959. "description": "Apex Charts integration for Filament PHP.",
  2960. "homepage": "https://github.com/leandrocfe/filament-apex-charts",
  2961. "keywords": [
  2962. "apexcharts",
  2963. "filament-apex-charts",
  2964. "laravel",
  2965. "leandrocfe"
  2966. ],
  2967. "support": {
  2968. "issues": "https://github.com/leandrocfe/filament-apex-charts/issues",
  2969. "source": "https://github.com/leandrocfe/filament-apex-charts/tree/1.0.2"
  2970. },
  2971. "time": "2023-03-14T01:34:14+00:00"
  2972. },
  2973. {
  2974. "name": "livewire/livewire",
  2975. "version": "v2.12.3",
  2976. "source": {
  2977. "type": "git",
  2978. "url": "https://github.com/livewire/livewire.git",
  2979. "reference": "019b1e69d8cd8c7e749eba7a38e4fa69ecbc8f74"
  2980. },
  2981. "dist": {
  2982. "type": "zip",
  2983. "url": "https://api.github.com/repos/livewire/livewire/zipball/019b1e69d8cd8c7e749eba7a38e4fa69ecbc8f74",
  2984. "reference": "019b1e69d8cd8c7e749eba7a38e4fa69ecbc8f74",
  2985. "shasum": ""
  2986. },
  2987. "require": {
  2988. "illuminate/database": "^7.0|^8.0|^9.0|^10.0",
  2989. "illuminate/support": "^7.0|^8.0|^9.0|^10.0",
  2990. "illuminate/validation": "^7.0|^8.0|^9.0|^10.0",
  2991. "league/mime-type-detection": "^1.9",
  2992. "php": "^7.2.5|^8.0",
  2993. "symfony/http-kernel": "^5.0|^6.0"
  2994. },
  2995. "require-dev": {
  2996. "calebporzio/sushi": "^2.1",
  2997. "laravel/framework": "^7.0|^8.0|^9.0|^10.0",
  2998. "mockery/mockery": "^1.3.1",
  2999. "orchestra/testbench": "^5.0|^6.0|^7.0|^8.0",
  3000. "orchestra/testbench-dusk": "^5.2|^6.0|^7.0|^8.0",
  3001. "phpunit/phpunit": "^8.4|^9.0",
  3002. "psy/psysh": "@stable"
  3003. },
  3004. "type": "library",
  3005. "extra": {
  3006. "laravel": {
  3007. "providers": [
  3008. "Livewire\\LivewireServiceProvider"
  3009. ],
  3010. "aliases": {
  3011. "Livewire": "Livewire\\Livewire"
  3012. }
  3013. }
  3014. },
  3015. "autoload": {
  3016. "files": [
  3017. "src/helpers.php"
  3018. ],
  3019. "psr-4": {
  3020. "Livewire\\": "src/"
  3021. }
  3022. },
  3023. "notification-url": "https://packagist.org/downloads/",
  3024. "license": [
  3025. "MIT"
  3026. ],
  3027. "authors": [
  3028. {
  3029. "name": "Caleb Porzio",
  3030. "email": "calebporzio@gmail.com"
  3031. }
  3032. ],
  3033. "description": "A front-end framework for Laravel.",
  3034. "support": {
  3035. "issues": "https://github.com/livewire/livewire/issues",
  3036. "source": "https://github.com/livewire/livewire/tree/v2.12.3"
  3037. },
  3038. "funding": [
  3039. {
  3040. "url": "https://github.com/livewire",
  3041. "type": "github"
  3042. }
  3043. ],
  3044. "time": "2023-03-03T20:12:38+00:00"
  3045. },
  3046. {
  3047. "name": "masterminds/html5",
  3048. "version": "2.8.0",
  3049. "source": {
  3050. "type": "git",
  3051. "url": "https://github.com/Masterminds/html5-php.git",
  3052. "reference": "3c5d5a56d56f48a1ca08a0670f0f80c1dad368f3"
  3053. },
  3054. "dist": {
  3055. "type": "zip",
  3056. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/3c5d5a56d56f48a1ca08a0670f0f80c1dad368f3",
  3057. "reference": "3c5d5a56d56f48a1ca08a0670f0f80c1dad368f3",
  3058. "shasum": ""
  3059. },
  3060. "require": {
  3061. "ext-dom": "*",
  3062. "php": ">=5.3.0"
  3063. },
  3064. "require-dev": {
  3065. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8"
  3066. },
  3067. "type": "library",
  3068. "extra": {
  3069. "branch-alias": {
  3070. "dev-master": "2.7-dev"
  3071. }
  3072. },
  3073. "autoload": {
  3074. "psr-4": {
  3075. "Masterminds\\": "src"
  3076. }
  3077. },
  3078. "notification-url": "https://packagist.org/downloads/",
  3079. "license": [
  3080. "MIT"
  3081. ],
  3082. "authors": [
  3083. {
  3084. "name": "Matt Butcher",
  3085. "email": "technosophos@gmail.com"
  3086. },
  3087. {
  3088. "name": "Matt Farina",
  3089. "email": "matt@mattfarina.com"
  3090. },
  3091. {
  3092. "name": "Asmir Mustafic",
  3093. "email": "goetas@gmail.com"
  3094. }
  3095. ],
  3096. "description": "An HTML5 parser and serializer.",
  3097. "homepage": "http://masterminds.github.io/html5-php",
  3098. "keywords": [
  3099. "HTML5",
  3100. "dom",
  3101. "html",
  3102. "parser",
  3103. "querypath",
  3104. "serializer",
  3105. "xml"
  3106. ],
  3107. "support": {
  3108. "issues": "https://github.com/Masterminds/html5-php/issues",
  3109. "source": "https://github.com/Masterminds/html5-php/tree/2.8.0"
  3110. },
  3111. "time": "2023-04-26T07:27:39+00:00"
  3112. },
  3113. {
  3114. "name": "matomo/device-detector",
  3115. "version": "6.1.2",
  3116. "source": {
  3117. "type": "git",
  3118. "url": "https://github.com/matomo-org/device-detector.git",
  3119. "reference": "7d0760e84f0b41302792a0c764fa52d3dff186f8"
  3120. },
  3121. "dist": {
  3122. "type": "zip",
  3123. "url": "https://api.github.com/repos/matomo-org/device-detector/zipball/7d0760e84f0b41302792a0c764fa52d3dff186f8",
  3124. "reference": "7d0760e84f0b41302792a0c764fa52d3dff186f8",
  3125. "shasum": ""
  3126. },
  3127. "require": {
  3128. "mustangostang/spyc": "*",
  3129. "php": "^7.2|^8.0"
  3130. },
  3131. "replace": {
  3132. "piwik/device-detector": "self.version"
  3133. },
  3134. "require-dev": {
  3135. "matthiasmullie/scrapbook": "^1.4.7",
  3136. "mayflower/mo4-coding-standard": "^v8.0.0",
  3137. "phpstan/phpstan": "^0.12.52",
  3138. "phpunit/phpunit": "^8.5.8",
  3139. "psr/cache": "^1.0.1",
  3140. "psr/simple-cache": "^1.0.1",
  3141. "symfony/yaml": "^5.1.7"
  3142. },
  3143. "suggest": {
  3144. "doctrine/cache": "Can directly be used for caching purpose",
  3145. "ext-yaml": "Necessary for using the Pecl YAML parser"
  3146. },
  3147. "type": "library",
  3148. "autoload": {
  3149. "psr-4": {
  3150. "DeviceDetector\\": ""
  3151. },
  3152. "exclude-from-classmap": [
  3153. "Tests/"
  3154. ]
  3155. },
  3156. "notification-url": "https://packagist.org/downloads/",
  3157. "license": [
  3158. "LGPL-3.0-or-later"
  3159. ],
  3160. "authors": [
  3161. {
  3162. "name": "The Matomo Team",
  3163. "email": "hello@matomo.org",
  3164. "homepage": "https://matomo.org/team/"
  3165. }
  3166. ],
  3167. "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.",
  3168. "homepage": "https://matomo.org",
  3169. "keywords": [
  3170. "devicedetection",
  3171. "parser",
  3172. "useragent"
  3173. ],
  3174. "support": {
  3175. "forum": "https://forum.matomo.org/",
  3176. "issues": "https://github.com/matomo-org/device-detector/issues",
  3177. "source": "https://github.com/matomo-org/matomo",
  3178. "wiki": "https://dev.matomo.org/"
  3179. },
  3180. "time": "2023-05-04T09:30:54+00:00"
  3181. },
  3182. {
  3183. "name": "monolog/monolog",
  3184. "version": "3.3.1",
  3185. "source": {
  3186. "type": "git",
  3187. "url": "https://github.com/Seldaek/monolog.git",
  3188. "reference": "9b5daeaffce5b926cac47923798bba91059e60e2"
  3189. },
  3190. "dist": {
  3191. "type": "zip",
  3192. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/9b5daeaffce5b926cac47923798bba91059e60e2",
  3193. "reference": "9b5daeaffce5b926cac47923798bba91059e60e2",
  3194. "shasum": ""
  3195. },
  3196. "require": {
  3197. "php": ">=8.1",
  3198. "psr/log": "^2.0 || ^3.0"
  3199. },
  3200. "provide": {
  3201. "psr/log-implementation": "3.0.0"
  3202. },
  3203. "require-dev": {
  3204. "aws/aws-sdk-php": "^3.0",
  3205. "doctrine/couchdb": "~1.0@dev",
  3206. "elasticsearch/elasticsearch": "^7 || ^8",
  3207. "ext-json": "*",
  3208. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  3209. "guzzlehttp/guzzle": "^7.4.5",
  3210. "guzzlehttp/psr7": "^2.2",
  3211. "mongodb/mongodb": "^1.8",
  3212. "php-amqplib/php-amqplib": "~2.4 || ^3",
  3213. "phpstan/phpstan": "^1.9",
  3214. "phpstan/phpstan-deprecation-rules": "^1.0",
  3215. "phpstan/phpstan-strict-rules": "^1.4",
  3216. "phpunit/phpunit": "^9.5.26",
  3217. "predis/predis": "^1.1 || ^2",
  3218. "ruflin/elastica": "^7",
  3219. "symfony/mailer": "^5.4 || ^6",
  3220. "symfony/mime": "^5.4 || ^6"
  3221. },
  3222. "suggest": {
  3223. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  3224. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  3225. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  3226. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  3227. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  3228. "ext-mbstring": "Allow to work properly with unicode symbols",
  3229. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  3230. "ext-openssl": "Required to send log messages using SSL",
  3231. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  3232. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  3233. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  3234. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  3235. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  3236. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  3237. },
  3238. "type": "library",
  3239. "extra": {
  3240. "branch-alias": {
  3241. "dev-main": "3.x-dev"
  3242. }
  3243. },
  3244. "autoload": {
  3245. "psr-4": {
  3246. "Monolog\\": "src/Monolog"
  3247. }
  3248. },
  3249. "notification-url": "https://packagist.org/downloads/",
  3250. "license": [
  3251. "MIT"
  3252. ],
  3253. "authors": [
  3254. {
  3255. "name": "Jordi Boggiano",
  3256. "email": "j.boggiano@seld.be",
  3257. "homepage": "https://seld.be"
  3258. }
  3259. ],
  3260. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  3261. "homepage": "https://github.com/Seldaek/monolog",
  3262. "keywords": [
  3263. "log",
  3264. "logging",
  3265. "psr-3"
  3266. ],
  3267. "support": {
  3268. "issues": "https://github.com/Seldaek/monolog/issues",
  3269. "source": "https://github.com/Seldaek/monolog/tree/3.3.1"
  3270. },
  3271. "funding": [
  3272. {
  3273. "url": "https://github.com/Seldaek",
  3274. "type": "github"
  3275. },
  3276. {
  3277. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  3278. "type": "tidelift"
  3279. }
  3280. ],
  3281. "time": "2023-02-06T13:46:10+00:00"
  3282. },
  3283. {
  3284. "name": "mustangostang/spyc",
  3285. "version": "0.6.3",
  3286. "source": {
  3287. "type": "git",
  3288. "url": "git@github.com:mustangostang/spyc.git",
  3289. "reference": "4627c838b16550b666d15aeae1e5289dd5b77da0"
  3290. },
  3291. "dist": {
  3292. "type": "zip",
  3293. "url": "https://api.github.com/repos/mustangostang/spyc/zipball/4627c838b16550b666d15aeae1e5289dd5b77da0",
  3294. "reference": "4627c838b16550b666d15aeae1e5289dd5b77da0",
  3295. "shasum": ""
  3296. },
  3297. "require": {
  3298. "php": ">=5.3.1"
  3299. },
  3300. "require-dev": {
  3301. "phpunit/phpunit": "4.3.*@dev"
  3302. },
  3303. "type": "library",
  3304. "extra": {
  3305. "branch-alias": {
  3306. "dev-master": "0.5.x-dev"
  3307. }
  3308. },
  3309. "autoload": {
  3310. "files": [
  3311. "Spyc.php"
  3312. ]
  3313. },
  3314. "notification-url": "https://packagist.org/downloads/",
  3315. "license": [
  3316. "MIT"
  3317. ],
  3318. "authors": [
  3319. {
  3320. "name": "mustangostang",
  3321. "email": "vlad.andersen@gmail.com"
  3322. }
  3323. ],
  3324. "description": "A simple YAML loader/dumper class for PHP",
  3325. "homepage": "https://github.com/mustangostang/spyc/",
  3326. "keywords": [
  3327. "spyc",
  3328. "yaml",
  3329. "yml"
  3330. ],
  3331. "time": "2019-09-10T13:16:29+00:00"
  3332. },
  3333. {
  3334. "name": "nesbot/carbon",
  3335. "version": "2.66.0",
  3336. "source": {
  3337. "type": "git",
  3338. "url": "https://github.com/briannesbitt/Carbon.git",
  3339. "reference": "496712849902241f04902033b0441b269effe001"
  3340. },
  3341. "dist": {
  3342. "type": "zip",
  3343. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/496712849902241f04902033b0441b269effe001",
  3344. "reference": "496712849902241f04902033b0441b269effe001",
  3345. "shasum": ""
  3346. },
  3347. "require": {
  3348. "ext-json": "*",
  3349. "php": "^7.1.8 || ^8.0",
  3350. "symfony/polyfill-mbstring": "^1.0",
  3351. "symfony/polyfill-php80": "^1.16",
  3352. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  3353. },
  3354. "require-dev": {
  3355. "doctrine/dbal": "^2.0 || ^3.1.4",
  3356. "doctrine/orm": "^2.7",
  3357. "friendsofphp/php-cs-fixer": "^3.0",
  3358. "kylekatarnls/multi-tester": "^2.0",
  3359. "ondrejmirtes/better-reflection": "*",
  3360. "phpmd/phpmd": "^2.9",
  3361. "phpstan/extension-installer": "^1.0",
  3362. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  3363. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  3364. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  3365. "squizlabs/php_codesniffer": "^3.4"
  3366. },
  3367. "bin": [
  3368. "bin/carbon"
  3369. ],
  3370. "type": "library",
  3371. "extra": {
  3372. "branch-alias": {
  3373. "dev-3.x": "3.x-dev",
  3374. "dev-master": "2.x-dev"
  3375. },
  3376. "laravel": {
  3377. "providers": [
  3378. "Carbon\\Laravel\\ServiceProvider"
  3379. ]
  3380. },
  3381. "phpstan": {
  3382. "includes": [
  3383. "extension.neon"
  3384. ]
  3385. }
  3386. },
  3387. "autoload": {
  3388. "psr-4": {
  3389. "Carbon\\": "src/Carbon/"
  3390. }
  3391. },
  3392. "notification-url": "https://packagist.org/downloads/",
  3393. "license": [
  3394. "MIT"
  3395. ],
  3396. "authors": [
  3397. {
  3398. "name": "Brian Nesbitt",
  3399. "email": "brian@nesbot.com",
  3400. "homepage": "https://markido.com"
  3401. },
  3402. {
  3403. "name": "kylekatarnls",
  3404. "homepage": "https://github.com/kylekatarnls"
  3405. }
  3406. ],
  3407. "description": "An API extension for DateTime that supports 281 different languages.",
  3408. "homepage": "https://carbon.nesbot.com",
  3409. "keywords": [
  3410. "date",
  3411. "datetime",
  3412. "time"
  3413. ],
  3414. "support": {
  3415. "docs": "https://carbon.nesbot.com/docs",
  3416. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3417. "source": "https://github.com/briannesbitt/Carbon"
  3418. },
  3419. "funding": [
  3420. {
  3421. "url": "https://github.com/sponsors/kylekatarnls",
  3422. "type": "github"
  3423. },
  3424. {
  3425. "url": "https://opencollective.com/Carbon#sponsor",
  3426. "type": "opencollective"
  3427. },
  3428. {
  3429. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  3430. "type": "tidelift"
  3431. }
  3432. ],
  3433. "time": "2023-01-29T18:53:47+00:00"
  3434. },
  3435. {
  3436. "name": "nette/schema",
  3437. "version": "v1.2.3",
  3438. "source": {
  3439. "type": "git",
  3440. "url": "https://github.com/nette/schema.git",
  3441. "reference": "abbdbb70e0245d5f3bf77874cea1dfb0c930d06f"
  3442. },
  3443. "dist": {
  3444. "type": "zip",
  3445. "url": "https://api.github.com/repos/nette/schema/zipball/abbdbb70e0245d5f3bf77874cea1dfb0c930d06f",
  3446. "reference": "abbdbb70e0245d5f3bf77874cea1dfb0c930d06f",
  3447. "shasum": ""
  3448. },
  3449. "require": {
  3450. "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
  3451. "php": ">=7.1 <8.3"
  3452. },
  3453. "require-dev": {
  3454. "nette/tester": "^2.3 || ^2.4",
  3455. "phpstan/phpstan-nette": "^1.0",
  3456. "tracy/tracy": "^2.7"
  3457. },
  3458. "type": "library",
  3459. "extra": {
  3460. "branch-alias": {
  3461. "dev-master": "1.2-dev"
  3462. }
  3463. },
  3464. "autoload": {
  3465. "classmap": [
  3466. "src/"
  3467. ]
  3468. },
  3469. "notification-url": "https://packagist.org/downloads/",
  3470. "license": [
  3471. "BSD-3-Clause",
  3472. "GPL-2.0-only",
  3473. "GPL-3.0-only"
  3474. ],
  3475. "authors": [
  3476. {
  3477. "name": "David Grudl",
  3478. "homepage": "https://davidgrudl.com"
  3479. },
  3480. {
  3481. "name": "Nette Community",
  3482. "homepage": "https://nette.org/contributors"
  3483. }
  3484. ],
  3485. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  3486. "homepage": "https://nette.org",
  3487. "keywords": [
  3488. "config",
  3489. "nette"
  3490. ],
  3491. "support": {
  3492. "issues": "https://github.com/nette/schema/issues",
  3493. "source": "https://github.com/nette/schema/tree/v1.2.3"
  3494. },
  3495. "time": "2022-10-13T01:24:26+00:00"
  3496. },
  3497. {
  3498. "name": "nette/utils",
  3499. "version": "v4.0.0",
  3500. "source": {
  3501. "type": "git",
  3502. "url": "https://github.com/nette/utils.git",
  3503. "reference": "cacdbf5a91a657ede665c541eda28941d4b09c1e"
  3504. },
  3505. "dist": {
  3506. "type": "zip",
  3507. "url": "https://api.github.com/repos/nette/utils/zipball/cacdbf5a91a657ede665c541eda28941d4b09c1e",
  3508. "reference": "cacdbf5a91a657ede665c541eda28941d4b09c1e",
  3509. "shasum": ""
  3510. },
  3511. "require": {
  3512. "php": ">=8.0 <8.3"
  3513. },
  3514. "conflict": {
  3515. "nette/finder": "<3",
  3516. "nette/schema": "<1.2.2"
  3517. },
  3518. "require-dev": {
  3519. "jetbrains/phpstorm-attributes": "dev-master",
  3520. "nette/tester": "^2.4",
  3521. "phpstan/phpstan": "^1.0",
  3522. "tracy/tracy": "^2.9"
  3523. },
  3524. "suggest": {
  3525. "ext-gd": "to use Image",
  3526. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  3527. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  3528. "ext-json": "to use Nette\\Utils\\Json",
  3529. "ext-mbstring": "to use Strings::lower() etc...",
  3530. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()",
  3531. "ext-xml": "to use Strings::length() etc. when mbstring is not available"
  3532. },
  3533. "type": "library",
  3534. "extra": {
  3535. "branch-alias": {
  3536. "dev-master": "4.0-dev"
  3537. }
  3538. },
  3539. "autoload": {
  3540. "classmap": [
  3541. "src/"
  3542. ]
  3543. },
  3544. "notification-url": "https://packagist.org/downloads/",
  3545. "license": [
  3546. "BSD-3-Clause",
  3547. "GPL-2.0-only",
  3548. "GPL-3.0-only"
  3549. ],
  3550. "authors": [
  3551. {
  3552. "name": "David Grudl",
  3553. "homepage": "https://davidgrudl.com"
  3554. },
  3555. {
  3556. "name": "Nette Community",
  3557. "homepage": "https://nette.org/contributors"
  3558. }
  3559. ],
  3560. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  3561. "homepage": "https://nette.org",
  3562. "keywords": [
  3563. "array",
  3564. "core",
  3565. "datetime",
  3566. "images",
  3567. "json",
  3568. "nette",
  3569. "paginator",
  3570. "password",
  3571. "slugify",
  3572. "string",
  3573. "unicode",
  3574. "utf-8",
  3575. "utility",
  3576. "validation"
  3577. ],
  3578. "support": {
  3579. "issues": "https://github.com/nette/utils/issues",
  3580. "source": "https://github.com/nette/utils/tree/v4.0.0"
  3581. },
  3582. "time": "2023-02-02T10:41:53+00:00"
  3583. },
  3584. {
  3585. "name": "nikic/php-parser",
  3586. "version": "v4.15.4",
  3587. "source": {
  3588. "type": "git",
  3589. "url": "https://github.com/nikic/PHP-Parser.git",
  3590. "reference": "6bb5176bc4af8bcb7d926f88718db9b96a2d4290"
  3591. },
  3592. "dist": {
  3593. "type": "zip",
  3594. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/6bb5176bc4af8bcb7d926f88718db9b96a2d4290",
  3595. "reference": "6bb5176bc4af8bcb7d926f88718db9b96a2d4290",
  3596. "shasum": ""
  3597. },
  3598. "require": {
  3599. "ext-tokenizer": "*",
  3600. "php": ">=7.0"
  3601. },
  3602. "require-dev": {
  3603. "ircmaxell/php-yacc": "^0.0.7",
  3604. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  3605. },
  3606. "bin": [
  3607. "bin/php-parse"
  3608. ],
  3609. "type": "library",
  3610. "extra": {
  3611. "branch-alias": {
  3612. "dev-master": "4.9-dev"
  3613. }
  3614. },
  3615. "autoload": {
  3616. "psr-4": {
  3617. "PhpParser\\": "lib/PhpParser"
  3618. }
  3619. },
  3620. "notification-url": "https://packagist.org/downloads/",
  3621. "license": [
  3622. "BSD-3-Clause"
  3623. ],
  3624. "authors": [
  3625. {
  3626. "name": "Nikita Popov"
  3627. }
  3628. ],
  3629. "description": "A PHP parser written in PHP",
  3630. "keywords": [
  3631. "parser",
  3632. "php"
  3633. ],
  3634. "support": {
  3635. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3636. "source": "https://github.com/nikic/PHP-Parser/tree/v4.15.4"
  3637. },
  3638. "time": "2023-03-05T19:49:14+00:00"
  3639. },
  3640. {
  3641. "name": "nunomaduro/termwind",
  3642. "version": "v1.15.1",
  3643. "source": {
  3644. "type": "git",
  3645. "url": "https://github.com/nunomaduro/termwind.git",
  3646. "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc"
  3647. },
  3648. "dist": {
  3649. "type": "zip",
  3650. "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/8ab0b32c8caa4a2e09700ea32925441385e4a5dc",
  3651. "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc",
  3652. "shasum": ""
  3653. },
  3654. "require": {
  3655. "ext-mbstring": "*",
  3656. "php": "^8.0",
  3657. "symfony/console": "^5.3.0|^6.0.0"
  3658. },
  3659. "require-dev": {
  3660. "ergebnis/phpstan-rules": "^1.0.",
  3661. "illuminate/console": "^8.0|^9.0",
  3662. "illuminate/support": "^8.0|^9.0",
  3663. "laravel/pint": "^1.0.0",
  3664. "pestphp/pest": "^1.21.0",
  3665. "pestphp/pest-plugin-mock": "^1.0",
  3666. "phpstan/phpstan": "^1.4.6",
  3667. "phpstan/phpstan-strict-rules": "^1.1.0",
  3668. "symfony/var-dumper": "^5.2.7|^6.0.0",
  3669. "thecodingmachine/phpstan-strict-rules": "^1.0.0"
  3670. },
  3671. "type": "library",
  3672. "extra": {
  3673. "laravel": {
  3674. "providers": [
  3675. "Termwind\\Laravel\\TermwindServiceProvider"
  3676. ]
  3677. }
  3678. },
  3679. "autoload": {
  3680. "files": [
  3681. "src/Functions.php"
  3682. ],
  3683. "psr-4": {
  3684. "Termwind\\": "src/"
  3685. }
  3686. },
  3687. "notification-url": "https://packagist.org/downloads/",
  3688. "license": [
  3689. "MIT"
  3690. ],
  3691. "authors": [
  3692. {
  3693. "name": "Nuno Maduro",
  3694. "email": "enunomaduro@gmail.com"
  3695. }
  3696. ],
  3697. "description": "Its like Tailwind CSS, but for the console.",
  3698. "keywords": [
  3699. "cli",
  3700. "console",
  3701. "css",
  3702. "package",
  3703. "php",
  3704. "style"
  3705. ],
  3706. "support": {
  3707. "issues": "https://github.com/nunomaduro/termwind/issues",
  3708. "source": "https://github.com/nunomaduro/termwind/tree/v1.15.1"
  3709. },
  3710. "funding": [
  3711. {
  3712. "url": "https://www.paypal.com/paypalme/enunomaduro",
  3713. "type": "custom"
  3714. },
  3715. {
  3716. "url": "https://github.com/nunomaduro",
  3717. "type": "github"
  3718. },
  3719. {
  3720. "url": "https://github.com/xiCO2k",
  3721. "type": "github"
  3722. }
  3723. ],
  3724. "time": "2023-02-08T01:06:31+00:00"
  3725. },
  3726. {
  3727. "name": "paragonie/constant_time_encoding",
  3728. "version": "v2.6.3",
  3729. "source": {
  3730. "type": "git",
  3731. "url": "https://github.com/paragonie/constant_time_encoding.git",
  3732. "reference": "58c3f47f650c94ec05a151692652a868995d2938"
  3733. },
  3734. "dist": {
  3735. "type": "zip",
  3736. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/58c3f47f650c94ec05a151692652a868995d2938",
  3737. "reference": "58c3f47f650c94ec05a151692652a868995d2938",
  3738. "shasum": ""
  3739. },
  3740. "require": {
  3741. "php": "^7|^8"
  3742. },
  3743. "require-dev": {
  3744. "phpunit/phpunit": "^6|^7|^8|^9",
  3745. "vimeo/psalm": "^1|^2|^3|^4"
  3746. },
  3747. "type": "library",
  3748. "autoload": {
  3749. "psr-4": {
  3750. "ParagonIE\\ConstantTime\\": "src/"
  3751. }
  3752. },
  3753. "notification-url": "https://packagist.org/downloads/",
  3754. "license": [
  3755. "MIT"
  3756. ],
  3757. "authors": [
  3758. {
  3759. "name": "Paragon Initiative Enterprises",
  3760. "email": "security@paragonie.com",
  3761. "homepage": "https://paragonie.com",
  3762. "role": "Maintainer"
  3763. },
  3764. {
  3765. "name": "Steve 'Sc00bz' Thomas",
  3766. "email": "steve@tobtu.com",
  3767. "homepage": "https://www.tobtu.com",
  3768. "role": "Original Developer"
  3769. }
  3770. ],
  3771. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  3772. "keywords": [
  3773. "base16",
  3774. "base32",
  3775. "base32_decode",
  3776. "base32_encode",
  3777. "base64",
  3778. "base64_decode",
  3779. "base64_encode",
  3780. "bin2hex",
  3781. "encoding",
  3782. "hex",
  3783. "hex2bin",
  3784. "rfc4648"
  3785. ],
  3786. "support": {
  3787. "email": "info@paragonie.com",
  3788. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  3789. "source": "https://github.com/paragonie/constant_time_encoding"
  3790. },
  3791. "time": "2022-06-14T06:56:20+00:00"
  3792. },
  3793. {
  3794. "name": "phpoption/phpoption",
  3795. "version": "1.9.1",
  3796. "source": {
  3797. "type": "git",
  3798. "url": "https://github.com/schmittjoh/php-option.git",
  3799. "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e"
  3800. },
  3801. "dist": {
  3802. "type": "zip",
  3803. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/dd3a383e599f49777d8b628dadbb90cae435b87e",
  3804. "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e",
  3805. "shasum": ""
  3806. },
  3807. "require": {
  3808. "php": "^7.2.5 || ^8.0"
  3809. },
  3810. "require-dev": {
  3811. "bamarni/composer-bin-plugin": "^1.8.2",
  3812. "phpunit/phpunit": "^8.5.32 || ^9.6.3 || ^10.0.12"
  3813. },
  3814. "type": "library",
  3815. "extra": {
  3816. "bamarni-bin": {
  3817. "bin-links": true,
  3818. "forward-command": true
  3819. },
  3820. "branch-alias": {
  3821. "dev-master": "1.9-dev"
  3822. }
  3823. },
  3824. "autoload": {
  3825. "psr-4": {
  3826. "PhpOption\\": "src/PhpOption/"
  3827. }
  3828. },
  3829. "notification-url": "https://packagist.org/downloads/",
  3830. "license": [
  3831. "Apache-2.0"
  3832. ],
  3833. "authors": [
  3834. {
  3835. "name": "Johannes M. Schmitt",
  3836. "email": "schmittjoh@gmail.com",
  3837. "homepage": "https://github.com/schmittjoh"
  3838. },
  3839. {
  3840. "name": "Graham Campbell",
  3841. "email": "hello@gjcampbell.co.uk",
  3842. "homepage": "https://github.com/GrahamCampbell"
  3843. }
  3844. ],
  3845. "description": "Option Type for PHP",
  3846. "keywords": [
  3847. "language",
  3848. "option",
  3849. "php",
  3850. "type"
  3851. ],
  3852. "support": {
  3853. "issues": "https://github.com/schmittjoh/php-option/issues",
  3854. "source": "https://github.com/schmittjoh/php-option/tree/1.9.1"
  3855. },
  3856. "funding": [
  3857. {
  3858. "url": "https://github.com/GrahamCampbell",
  3859. "type": "github"
  3860. },
  3861. {
  3862. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  3863. "type": "tidelift"
  3864. }
  3865. ],
  3866. "time": "2023-02-25T19:38:58+00:00"
  3867. },
  3868. {
  3869. "name": "pragmarx/google2fa",
  3870. "version": "v8.0.1",
  3871. "source": {
  3872. "type": "git",
  3873. "url": "https://github.com/antonioribeiro/google2fa.git",
  3874. "reference": "80c3d801b31fe165f8fe99ea085e0a37834e1be3"
  3875. },
  3876. "dist": {
  3877. "type": "zip",
  3878. "url": "https://api.github.com/repos/antonioribeiro/google2fa/zipball/80c3d801b31fe165f8fe99ea085e0a37834e1be3",
  3879. "reference": "80c3d801b31fe165f8fe99ea085e0a37834e1be3",
  3880. "shasum": ""
  3881. },
  3882. "require": {
  3883. "paragonie/constant_time_encoding": "^1.0|^2.0",
  3884. "php": "^7.1|^8.0"
  3885. },
  3886. "require-dev": {
  3887. "phpstan/phpstan": "^0.12.18",
  3888. "phpunit/phpunit": "^7.5.15|^8.5|^9.0"
  3889. },
  3890. "type": "library",
  3891. "autoload": {
  3892. "psr-4": {
  3893. "PragmaRX\\Google2FA\\": "src/"
  3894. }
  3895. },
  3896. "notification-url": "https://packagist.org/downloads/",
  3897. "license": [
  3898. "MIT"
  3899. ],
  3900. "authors": [
  3901. {
  3902. "name": "Antonio Carlos Ribeiro",
  3903. "email": "acr@antoniocarlosribeiro.com",
  3904. "role": "Creator & Designer"
  3905. }
  3906. ],
  3907. "description": "A One Time Password Authentication package, compatible with Google Authenticator.",
  3908. "keywords": [
  3909. "2fa",
  3910. "Authentication",
  3911. "Two Factor Authentication",
  3912. "google2fa"
  3913. ],
  3914. "support": {
  3915. "issues": "https://github.com/antonioribeiro/google2fa/issues",
  3916. "source": "https://github.com/antonioribeiro/google2fa/tree/v8.0.1"
  3917. },
  3918. "time": "2022-06-13T21:57:56+00:00"
  3919. },
  3920. {
  3921. "name": "psr/container",
  3922. "version": "2.0.2",
  3923. "source": {
  3924. "type": "git",
  3925. "url": "https://github.com/php-fig/container.git",
  3926. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  3927. },
  3928. "dist": {
  3929. "type": "zip",
  3930. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  3931. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  3932. "shasum": ""
  3933. },
  3934. "require": {
  3935. "php": ">=7.4.0"
  3936. },
  3937. "type": "library",
  3938. "extra": {
  3939. "branch-alias": {
  3940. "dev-master": "2.0.x-dev"
  3941. }
  3942. },
  3943. "autoload": {
  3944. "psr-4": {
  3945. "Psr\\Container\\": "src/"
  3946. }
  3947. },
  3948. "notification-url": "https://packagist.org/downloads/",
  3949. "license": [
  3950. "MIT"
  3951. ],
  3952. "authors": [
  3953. {
  3954. "name": "PHP-FIG",
  3955. "homepage": "https://www.php-fig.org/"
  3956. }
  3957. ],
  3958. "description": "Common Container Interface (PHP FIG PSR-11)",
  3959. "homepage": "https://github.com/php-fig/container",
  3960. "keywords": [
  3961. "PSR-11",
  3962. "container",
  3963. "container-interface",
  3964. "container-interop",
  3965. "psr"
  3966. ],
  3967. "support": {
  3968. "issues": "https://github.com/php-fig/container/issues",
  3969. "source": "https://github.com/php-fig/container/tree/2.0.2"
  3970. },
  3971. "time": "2021-11-05T16:47:00+00:00"
  3972. },
  3973. {
  3974. "name": "psr/event-dispatcher",
  3975. "version": "1.0.0",
  3976. "source": {
  3977. "type": "git",
  3978. "url": "https://github.com/php-fig/event-dispatcher.git",
  3979. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  3980. },
  3981. "dist": {
  3982. "type": "zip",
  3983. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3984. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3985. "shasum": ""
  3986. },
  3987. "require": {
  3988. "php": ">=7.2.0"
  3989. },
  3990. "type": "library",
  3991. "extra": {
  3992. "branch-alias": {
  3993. "dev-master": "1.0.x-dev"
  3994. }
  3995. },
  3996. "autoload": {
  3997. "psr-4": {
  3998. "Psr\\EventDispatcher\\": "src/"
  3999. }
  4000. },
  4001. "notification-url": "https://packagist.org/downloads/",
  4002. "license": [
  4003. "MIT"
  4004. ],
  4005. "authors": [
  4006. {
  4007. "name": "PHP-FIG",
  4008. "homepage": "http://www.php-fig.org/"
  4009. }
  4010. ],
  4011. "description": "Standard interfaces for event handling.",
  4012. "keywords": [
  4013. "events",
  4014. "psr",
  4015. "psr-14"
  4016. ],
  4017. "support": {
  4018. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  4019. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  4020. },
  4021. "time": "2019-01-08T18:20:26+00:00"
  4022. },
  4023. {
  4024. "name": "psr/http-client",
  4025. "version": "1.0.2",
  4026. "source": {
  4027. "type": "git",
  4028. "url": "https://github.com/php-fig/http-client.git",
  4029. "reference": "0955afe48220520692d2d09f7ab7e0f93ffd6a31"
  4030. },
  4031. "dist": {
  4032. "type": "zip",
  4033. "url": "https://api.github.com/repos/php-fig/http-client/zipball/0955afe48220520692d2d09f7ab7e0f93ffd6a31",
  4034. "reference": "0955afe48220520692d2d09f7ab7e0f93ffd6a31",
  4035. "shasum": ""
  4036. },
  4037. "require": {
  4038. "php": "^7.0 || ^8.0",
  4039. "psr/http-message": "^1.0 || ^2.0"
  4040. },
  4041. "type": "library",
  4042. "extra": {
  4043. "branch-alias": {
  4044. "dev-master": "1.0.x-dev"
  4045. }
  4046. },
  4047. "autoload": {
  4048. "psr-4": {
  4049. "Psr\\Http\\Client\\": "src/"
  4050. }
  4051. },
  4052. "notification-url": "https://packagist.org/downloads/",
  4053. "license": [
  4054. "MIT"
  4055. ],
  4056. "authors": [
  4057. {
  4058. "name": "PHP-FIG",
  4059. "homepage": "https://www.php-fig.org/"
  4060. }
  4061. ],
  4062. "description": "Common interface for HTTP clients",
  4063. "homepage": "https://github.com/php-fig/http-client",
  4064. "keywords": [
  4065. "http",
  4066. "http-client",
  4067. "psr",
  4068. "psr-18"
  4069. ],
  4070. "support": {
  4071. "source": "https://github.com/php-fig/http-client/tree/1.0.2"
  4072. },
  4073. "time": "2023-04-10T20:12:12+00:00"
  4074. },
  4075. {
  4076. "name": "psr/http-factory",
  4077. "version": "1.0.2",
  4078. "source": {
  4079. "type": "git",
  4080. "url": "https://github.com/php-fig/http-factory.git",
  4081. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  4082. },
  4083. "dist": {
  4084. "type": "zip",
  4085. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  4086. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  4087. "shasum": ""
  4088. },
  4089. "require": {
  4090. "php": ">=7.0.0",
  4091. "psr/http-message": "^1.0 || ^2.0"
  4092. },
  4093. "type": "library",
  4094. "extra": {
  4095. "branch-alias": {
  4096. "dev-master": "1.0.x-dev"
  4097. }
  4098. },
  4099. "autoload": {
  4100. "psr-4": {
  4101. "Psr\\Http\\Message\\": "src/"
  4102. }
  4103. },
  4104. "notification-url": "https://packagist.org/downloads/",
  4105. "license": [
  4106. "MIT"
  4107. ],
  4108. "authors": [
  4109. {
  4110. "name": "PHP-FIG",
  4111. "homepage": "https://www.php-fig.org/"
  4112. }
  4113. ],
  4114. "description": "Common interfaces for PSR-7 HTTP message factories",
  4115. "keywords": [
  4116. "factory",
  4117. "http",
  4118. "message",
  4119. "psr",
  4120. "psr-17",
  4121. "psr-7",
  4122. "request",
  4123. "response"
  4124. ],
  4125. "support": {
  4126. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  4127. },
  4128. "time": "2023-04-10T20:10:41+00:00"
  4129. },
  4130. {
  4131. "name": "psr/http-message",
  4132. "version": "2.0",
  4133. "source": {
  4134. "type": "git",
  4135. "url": "https://github.com/php-fig/http-message.git",
  4136. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  4137. },
  4138. "dist": {
  4139. "type": "zip",
  4140. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  4141. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  4142. "shasum": ""
  4143. },
  4144. "require": {
  4145. "php": "^7.2 || ^8.0"
  4146. },
  4147. "type": "library",
  4148. "extra": {
  4149. "branch-alias": {
  4150. "dev-master": "2.0.x-dev"
  4151. }
  4152. },
  4153. "autoload": {
  4154. "psr-4": {
  4155. "Psr\\Http\\Message\\": "src/"
  4156. }
  4157. },
  4158. "notification-url": "https://packagist.org/downloads/",
  4159. "license": [
  4160. "MIT"
  4161. ],
  4162. "authors": [
  4163. {
  4164. "name": "PHP-FIG",
  4165. "homepage": "https://www.php-fig.org/"
  4166. }
  4167. ],
  4168. "description": "Common interface for HTTP messages",
  4169. "homepage": "https://github.com/php-fig/http-message",
  4170. "keywords": [
  4171. "http",
  4172. "http-message",
  4173. "psr",
  4174. "psr-7",
  4175. "request",
  4176. "response"
  4177. ],
  4178. "support": {
  4179. "source": "https://github.com/php-fig/http-message/tree/2.0"
  4180. },
  4181. "time": "2023-04-04T09:54:51+00:00"
  4182. },
  4183. {
  4184. "name": "psr/log",
  4185. "version": "3.0.0",
  4186. "source": {
  4187. "type": "git",
  4188. "url": "https://github.com/php-fig/log.git",
  4189. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  4190. },
  4191. "dist": {
  4192. "type": "zip",
  4193. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  4194. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  4195. "shasum": ""
  4196. },
  4197. "require": {
  4198. "php": ">=8.0.0"
  4199. },
  4200. "type": "library",
  4201. "extra": {
  4202. "branch-alias": {
  4203. "dev-master": "3.x-dev"
  4204. }
  4205. },
  4206. "autoload": {
  4207. "psr-4": {
  4208. "Psr\\Log\\": "src"
  4209. }
  4210. },
  4211. "notification-url": "https://packagist.org/downloads/",
  4212. "license": [
  4213. "MIT"
  4214. ],
  4215. "authors": [
  4216. {
  4217. "name": "PHP-FIG",
  4218. "homepage": "https://www.php-fig.org/"
  4219. }
  4220. ],
  4221. "description": "Common interface for logging libraries",
  4222. "homepage": "https://github.com/php-fig/log",
  4223. "keywords": [
  4224. "log",
  4225. "psr",
  4226. "psr-3"
  4227. ],
  4228. "support": {
  4229. "source": "https://github.com/php-fig/log/tree/3.0.0"
  4230. },
  4231. "time": "2021-07-14T16:46:02+00:00"
  4232. },
  4233. {
  4234. "name": "psr/simple-cache",
  4235. "version": "3.0.0",
  4236. "source": {
  4237. "type": "git",
  4238. "url": "https://github.com/php-fig/simple-cache.git",
  4239. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  4240. },
  4241. "dist": {
  4242. "type": "zip",
  4243. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  4244. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  4245. "shasum": ""
  4246. },
  4247. "require": {
  4248. "php": ">=8.0.0"
  4249. },
  4250. "type": "library",
  4251. "extra": {
  4252. "branch-alias": {
  4253. "dev-master": "3.0.x-dev"
  4254. }
  4255. },
  4256. "autoload": {
  4257. "psr-4": {
  4258. "Psr\\SimpleCache\\": "src/"
  4259. }
  4260. },
  4261. "notification-url": "https://packagist.org/downloads/",
  4262. "license": [
  4263. "MIT"
  4264. ],
  4265. "authors": [
  4266. {
  4267. "name": "PHP-FIG",
  4268. "homepage": "https://www.php-fig.org/"
  4269. }
  4270. ],
  4271. "description": "Common interfaces for simple caching",
  4272. "keywords": [
  4273. "cache",
  4274. "caching",
  4275. "psr",
  4276. "psr-16",
  4277. "simple-cache"
  4278. ],
  4279. "support": {
  4280. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  4281. },
  4282. "time": "2021-10-29T13:26:27+00:00"
  4283. },
  4284. {
  4285. "name": "psy/psysh",
  4286. "version": "v0.11.17",
  4287. "source": {
  4288. "type": "git",
  4289. "url": "https://github.com/bobthecow/psysh.git",
  4290. "reference": "3dc5d4018dabd80bceb8fe1e3191ba8460569f0a"
  4291. },
  4292. "dist": {
  4293. "type": "zip",
  4294. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/3dc5d4018dabd80bceb8fe1e3191ba8460569f0a",
  4295. "reference": "3dc5d4018dabd80bceb8fe1e3191ba8460569f0a",
  4296. "shasum": ""
  4297. },
  4298. "require": {
  4299. "ext-json": "*",
  4300. "ext-tokenizer": "*",
  4301. "nikic/php-parser": "^4.0 || ^3.1",
  4302. "php": "^8.0 || ^7.0.8",
  4303. "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
  4304. "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
  4305. },
  4306. "conflict": {
  4307. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  4308. },
  4309. "require-dev": {
  4310. "bamarni/composer-bin-plugin": "^1.2"
  4311. },
  4312. "suggest": {
  4313. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4314. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4315. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  4316. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history."
  4317. },
  4318. "bin": [
  4319. "bin/psysh"
  4320. ],
  4321. "type": "library",
  4322. "extra": {
  4323. "branch-alias": {
  4324. "dev-main": "0.11.x-dev"
  4325. }
  4326. },
  4327. "autoload": {
  4328. "files": [
  4329. "src/functions.php"
  4330. ],
  4331. "psr-4": {
  4332. "Psy\\": "src/"
  4333. }
  4334. },
  4335. "notification-url": "https://packagist.org/downloads/",
  4336. "license": [
  4337. "MIT"
  4338. ],
  4339. "authors": [
  4340. {
  4341. "name": "Justin Hileman",
  4342. "email": "justin@justinhileman.info",
  4343. "homepage": "http://justinhileman.com"
  4344. }
  4345. ],
  4346. "description": "An interactive shell for modern PHP.",
  4347. "homepage": "http://psysh.org",
  4348. "keywords": [
  4349. "REPL",
  4350. "console",
  4351. "interactive",
  4352. "shell"
  4353. ],
  4354. "support": {
  4355. "issues": "https://github.com/bobthecow/psysh/issues",
  4356. "source": "https://github.com/bobthecow/psysh/tree/v0.11.17"
  4357. },
  4358. "time": "2023-05-05T20:02:42+00:00"
  4359. },
  4360. {
  4361. "name": "ralouphie/getallheaders",
  4362. "version": "3.0.3",
  4363. "source": {
  4364. "type": "git",
  4365. "url": "https://github.com/ralouphie/getallheaders.git",
  4366. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4367. },
  4368. "dist": {
  4369. "type": "zip",
  4370. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4371. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4372. "shasum": ""
  4373. },
  4374. "require": {
  4375. "php": ">=5.6"
  4376. },
  4377. "require-dev": {
  4378. "php-coveralls/php-coveralls": "^2.1",
  4379. "phpunit/phpunit": "^5 || ^6.5"
  4380. },
  4381. "type": "library",
  4382. "autoload": {
  4383. "files": [
  4384. "src/getallheaders.php"
  4385. ]
  4386. },
  4387. "notification-url": "https://packagist.org/downloads/",
  4388. "license": [
  4389. "MIT"
  4390. ],
  4391. "authors": [
  4392. {
  4393. "name": "Ralph Khattar",
  4394. "email": "ralph.khattar@gmail.com"
  4395. }
  4396. ],
  4397. "description": "A polyfill for getallheaders.",
  4398. "support": {
  4399. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4400. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4401. },
  4402. "time": "2019-03-08T08:55:37+00:00"
  4403. },
  4404. {
  4405. "name": "ramsey/collection",
  4406. "version": "2.0.0",
  4407. "source": {
  4408. "type": "git",
  4409. "url": "https://github.com/ramsey/collection.git",
  4410. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5"
  4411. },
  4412. "dist": {
  4413. "type": "zip",
  4414. "url": "https://api.github.com/repos/ramsey/collection/zipball/a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  4415. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  4416. "shasum": ""
  4417. },
  4418. "require": {
  4419. "php": "^8.1"
  4420. },
  4421. "require-dev": {
  4422. "captainhook/plugin-composer": "^5.3",
  4423. "ergebnis/composer-normalize": "^2.28.3",
  4424. "fakerphp/faker": "^1.21",
  4425. "hamcrest/hamcrest-php": "^2.0",
  4426. "jangregor/phpstan-prophecy": "^1.0",
  4427. "mockery/mockery": "^1.5",
  4428. "php-parallel-lint/php-console-highlighter": "^1.0",
  4429. "php-parallel-lint/php-parallel-lint": "^1.3",
  4430. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  4431. "phpspec/prophecy-phpunit": "^2.0",
  4432. "phpstan/extension-installer": "^1.2",
  4433. "phpstan/phpstan": "^1.9",
  4434. "phpstan/phpstan-mockery": "^1.1",
  4435. "phpstan/phpstan-phpunit": "^1.3",
  4436. "phpunit/phpunit": "^9.5",
  4437. "psalm/plugin-mockery": "^1.1",
  4438. "psalm/plugin-phpunit": "^0.18.4",
  4439. "ramsey/coding-standard": "^2.0.3",
  4440. "ramsey/conventional-commits": "^1.3",
  4441. "vimeo/psalm": "^5.4"
  4442. },
  4443. "type": "library",
  4444. "extra": {
  4445. "captainhook": {
  4446. "force-install": true
  4447. },
  4448. "ramsey/conventional-commits": {
  4449. "configFile": "conventional-commits.json"
  4450. }
  4451. },
  4452. "autoload": {
  4453. "psr-4": {
  4454. "Ramsey\\Collection\\": "src/"
  4455. }
  4456. },
  4457. "notification-url": "https://packagist.org/downloads/",
  4458. "license": [
  4459. "MIT"
  4460. ],
  4461. "authors": [
  4462. {
  4463. "name": "Ben Ramsey",
  4464. "email": "ben@benramsey.com",
  4465. "homepage": "https://benramsey.com"
  4466. }
  4467. ],
  4468. "description": "A PHP library for representing and manipulating collections.",
  4469. "keywords": [
  4470. "array",
  4471. "collection",
  4472. "hash",
  4473. "map",
  4474. "queue",
  4475. "set"
  4476. ],
  4477. "support": {
  4478. "issues": "https://github.com/ramsey/collection/issues",
  4479. "source": "https://github.com/ramsey/collection/tree/2.0.0"
  4480. },
  4481. "funding": [
  4482. {
  4483. "url": "https://github.com/ramsey",
  4484. "type": "github"
  4485. },
  4486. {
  4487. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4488. "type": "tidelift"
  4489. }
  4490. ],
  4491. "time": "2022-12-31T21:50:55+00:00"
  4492. },
  4493. {
  4494. "name": "ramsey/uuid",
  4495. "version": "4.7.4",
  4496. "source": {
  4497. "type": "git",
  4498. "url": "https://github.com/ramsey/uuid.git",
  4499. "reference": "60a4c63ab724854332900504274f6150ff26d286"
  4500. },
  4501. "dist": {
  4502. "type": "zip",
  4503. "url": "https://api.github.com/repos/ramsey/uuid/zipball/60a4c63ab724854332900504274f6150ff26d286",
  4504. "reference": "60a4c63ab724854332900504274f6150ff26d286",
  4505. "shasum": ""
  4506. },
  4507. "require": {
  4508. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11",
  4509. "ext-json": "*",
  4510. "php": "^8.0",
  4511. "ramsey/collection": "^1.2 || ^2.0"
  4512. },
  4513. "replace": {
  4514. "rhumsaa/uuid": "self.version"
  4515. },
  4516. "require-dev": {
  4517. "captainhook/captainhook": "^5.10",
  4518. "captainhook/plugin-composer": "^5.3",
  4519. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4520. "doctrine/annotations": "^1.8",
  4521. "ergebnis/composer-normalize": "^2.15",
  4522. "mockery/mockery": "^1.3",
  4523. "paragonie/random-lib": "^2",
  4524. "php-mock/php-mock": "^2.2",
  4525. "php-mock/php-mock-mockery": "^1.3",
  4526. "php-parallel-lint/php-parallel-lint": "^1.1",
  4527. "phpbench/phpbench": "^1.0",
  4528. "phpstan/extension-installer": "^1.1",
  4529. "phpstan/phpstan": "^1.8",
  4530. "phpstan/phpstan-mockery": "^1.1",
  4531. "phpstan/phpstan-phpunit": "^1.1",
  4532. "phpunit/phpunit": "^8.5 || ^9",
  4533. "ramsey/composer-repl": "^1.4",
  4534. "slevomat/coding-standard": "^8.4",
  4535. "squizlabs/php_codesniffer": "^3.5",
  4536. "vimeo/psalm": "^4.9"
  4537. },
  4538. "suggest": {
  4539. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4540. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4541. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4542. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4543. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4544. },
  4545. "type": "library",
  4546. "extra": {
  4547. "captainhook": {
  4548. "force-install": true
  4549. }
  4550. },
  4551. "autoload": {
  4552. "files": [
  4553. "src/functions.php"
  4554. ],
  4555. "psr-4": {
  4556. "Ramsey\\Uuid\\": "src/"
  4557. }
  4558. },
  4559. "notification-url": "https://packagist.org/downloads/",
  4560. "license": [
  4561. "MIT"
  4562. ],
  4563. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4564. "keywords": [
  4565. "guid",
  4566. "identifier",
  4567. "uuid"
  4568. ],
  4569. "support": {
  4570. "issues": "https://github.com/ramsey/uuid/issues",
  4571. "source": "https://github.com/ramsey/uuid/tree/4.7.4"
  4572. },
  4573. "funding": [
  4574. {
  4575. "url": "https://github.com/ramsey",
  4576. "type": "github"
  4577. },
  4578. {
  4579. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  4580. "type": "tidelift"
  4581. }
  4582. ],
  4583. "time": "2023-04-15T23:01:58+00:00"
  4584. },
  4585. {
  4586. "name": "ryangjchandler/blade-capture-directive",
  4587. "version": "v0.3.0",
  4588. "source": {
  4589. "type": "git",
  4590. "url": "https://github.com/ryangjchandler/blade-capture-directive.git",
  4591. "reference": "62fd2ecb50b938a46025093bcb64fcaddd531f89"
  4592. },
  4593. "dist": {
  4594. "type": "zip",
  4595. "url": "https://api.github.com/repos/ryangjchandler/blade-capture-directive/zipball/62fd2ecb50b938a46025093bcb64fcaddd531f89",
  4596. "reference": "62fd2ecb50b938a46025093bcb64fcaddd531f89",
  4597. "shasum": ""
  4598. },
  4599. "require": {
  4600. "illuminate/contracts": "^9.0|^10.0",
  4601. "php": "^8.0",
  4602. "spatie/laravel-package-tools": "^1.9.2"
  4603. },
  4604. "require-dev": {
  4605. "nunomaduro/collision": "^6.0|^7.0",
  4606. "nunomaduro/larastan": "^2.0",
  4607. "orchestra/testbench": "^7.22|^8.0",
  4608. "pestphp/pest": "^1.21",
  4609. "pestphp/pest-plugin-laravel": "^1.1",
  4610. "phpstan/extension-installer": "^1.1",
  4611. "phpstan/phpstan-deprecation-rules": "^1.0",
  4612. "phpstan/phpstan-phpunit": "^1.0",
  4613. "phpunit/phpunit": "^9.5",
  4614. "spatie/laravel-ray": "^1.26"
  4615. },
  4616. "type": "library",
  4617. "extra": {
  4618. "laravel": {
  4619. "providers": [
  4620. "RyanChandler\\BladeCaptureDirective\\BladeCaptureDirectiveServiceProvider"
  4621. ],
  4622. "aliases": {
  4623. "BladeCaptureDirective": "RyanChandler\\BladeCaptureDirective\\Facades\\BladeCaptureDirective"
  4624. }
  4625. }
  4626. },
  4627. "autoload": {
  4628. "psr-4": {
  4629. "RyanChandler\\BladeCaptureDirective\\": "src",
  4630. "RyanChandler\\BladeCaptureDirective\\Database\\Factories\\": "database/factories"
  4631. }
  4632. },
  4633. "notification-url": "https://packagist.org/downloads/",
  4634. "license": [
  4635. "MIT"
  4636. ],
  4637. "authors": [
  4638. {
  4639. "name": "Ryan Chandler",
  4640. "email": "support@ryangjchandler.co.uk",
  4641. "role": "Developer"
  4642. }
  4643. ],
  4644. "description": "Create inline partials in your Blade templates with ease.",
  4645. "homepage": "https://github.com/ryangjchandler/blade-capture-directive",
  4646. "keywords": [
  4647. "blade-capture-directive",
  4648. "laravel",
  4649. "ryangjchandler"
  4650. ],
  4651. "support": {
  4652. "issues": "https://github.com/ryangjchandler/blade-capture-directive/issues",
  4653. "source": "https://github.com/ryangjchandler/blade-capture-directive/tree/v0.3.0"
  4654. },
  4655. "funding": [
  4656. {
  4657. "url": "https://github.com/ryangjchandler",
  4658. "type": "github"
  4659. }
  4660. ],
  4661. "time": "2023-02-14T16:54:54+00:00"
  4662. },
  4663. {
  4664. "name": "spatie/invade",
  4665. "version": "1.1.1",
  4666. "source": {
  4667. "type": "git",
  4668. "url": "https://github.com/spatie/invade.git",
  4669. "reference": "d0a9c895a96152549d478a7e3420e19039eef038"
  4670. },
  4671. "dist": {
  4672. "type": "zip",
  4673. "url": "https://api.github.com/repos/spatie/invade/zipball/d0a9c895a96152549d478a7e3420e19039eef038",
  4674. "reference": "d0a9c895a96152549d478a7e3420e19039eef038",
  4675. "shasum": ""
  4676. },
  4677. "require": {
  4678. "php": "^8.0"
  4679. },
  4680. "require-dev": {
  4681. "pestphp/pest": "^1.20",
  4682. "phpstan/phpstan": "^1.4",
  4683. "spatie/ray": "^1.28"
  4684. },
  4685. "type": "library",
  4686. "extra": {
  4687. "phpstan": {
  4688. "includes": [
  4689. "phpstan-extension.neon"
  4690. ]
  4691. }
  4692. },
  4693. "autoload": {
  4694. "files": [
  4695. "src/functions.php"
  4696. ],
  4697. "psr-4": {
  4698. "Spatie\\Invade\\": "src"
  4699. }
  4700. },
  4701. "notification-url": "https://packagist.org/downloads/",
  4702. "license": [
  4703. "MIT"
  4704. ],
  4705. "authors": [
  4706. {
  4707. "name": "Freek Van der Herten",
  4708. "email": "freek@spatie.be",
  4709. "role": "Developer"
  4710. }
  4711. ],
  4712. "description": "A PHP function to work with private properties and methods",
  4713. "homepage": "https://github.com/spatie/invade",
  4714. "keywords": [
  4715. "invade",
  4716. "spatie"
  4717. ],
  4718. "support": {
  4719. "source": "https://github.com/spatie/invade/tree/1.1.1"
  4720. },
  4721. "funding": [
  4722. {
  4723. "url": "https://github.com/spatie",
  4724. "type": "github"
  4725. }
  4726. ],
  4727. "time": "2022-07-05T09:31:00+00:00"
  4728. },
  4729. {
  4730. "name": "spatie/laravel-package-tools",
  4731. "version": "1.15.0",
  4732. "source": {
  4733. "type": "git",
  4734. "url": "https://github.com/spatie/laravel-package-tools.git",
  4735. "reference": "efab1844b8826443135201c4443690f032c3d533"
  4736. },
  4737. "dist": {
  4738. "type": "zip",
  4739. "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/efab1844b8826443135201c4443690f032c3d533",
  4740. "reference": "efab1844b8826443135201c4443690f032c3d533",
  4741. "shasum": ""
  4742. },
  4743. "require": {
  4744. "illuminate/contracts": "^9.28|^10.0",
  4745. "php": "^8.0"
  4746. },
  4747. "require-dev": {
  4748. "mockery/mockery": "^1.5",
  4749. "orchestra/testbench": "^7.7|^8.0",
  4750. "pestphp/pest": "^1.22",
  4751. "phpunit/phpunit": "^9.5.24",
  4752. "spatie/pest-plugin-test-time": "^1.1"
  4753. },
  4754. "type": "library",
  4755. "autoload": {
  4756. "psr-4": {
  4757. "Spatie\\LaravelPackageTools\\": "src"
  4758. }
  4759. },
  4760. "notification-url": "https://packagist.org/downloads/",
  4761. "license": [
  4762. "MIT"
  4763. ],
  4764. "authors": [
  4765. {
  4766. "name": "Freek Van der Herten",
  4767. "email": "freek@spatie.be",
  4768. "role": "Developer"
  4769. }
  4770. ],
  4771. "description": "Tools for creating Laravel packages",
  4772. "homepage": "https://github.com/spatie/laravel-package-tools",
  4773. "keywords": [
  4774. "laravel-package-tools",
  4775. "spatie"
  4776. ],
  4777. "support": {
  4778. "issues": "https://github.com/spatie/laravel-package-tools/issues",
  4779. "source": "https://github.com/spatie/laravel-package-tools/tree/1.15.0"
  4780. },
  4781. "funding": [
  4782. {
  4783. "url": "https://github.com/spatie",
  4784. "type": "github"
  4785. }
  4786. ],
  4787. "time": "2023-04-27T08:09:01+00:00"
  4788. },
  4789. {
  4790. "name": "symfony/console",
  4791. "version": "v6.2.10",
  4792. "source": {
  4793. "type": "git",
  4794. "url": "https://github.com/symfony/console.git",
  4795. "reference": "12288d9f4500f84a4d02254d4aa968b15488476f"
  4796. },
  4797. "dist": {
  4798. "type": "zip",
  4799. "url": "https://api.github.com/repos/symfony/console/zipball/12288d9f4500f84a4d02254d4aa968b15488476f",
  4800. "reference": "12288d9f4500f84a4d02254d4aa968b15488476f",
  4801. "shasum": ""
  4802. },
  4803. "require": {
  4804. "php": ">=8.1",
  4805. "symfony/deprecation-contracts": "^2.1|^3",
  4806. "symfony/polyfill-mbstring": "~1.0",
  4807. "symfony/service-contracts": "^1.1|^2|^3",
  4808. "symfony/string": "^5.4|^6.0"
  4809. },
  4810. "conflict": {
  4811. "symfony/dependency-injection": "<5.4",
  4812. "symfony/dotenv": "<5.4",
  4813. "symfony/event-dispatcher": "<5.4",
  4814. "symfony/lock": "<5.4",
  4815. "symfony/process": "<5.4"
  4816. },
  4817. "provide": {
  4818. "psr/log-implementation": "1.0|2.0|3.0"
  4819. },
  4820. "require-dev": {
  4821. "psr/log": "^1|^2|^3",
  4822. "symfony/config": "^5.4|^6.0",
  4823. "symfony/dependency-injection": "^5.4|^6.0",
  4824. "symfony/event-dispatcher": "^5.4|^6.0",
  4825. "symfony/lock": "^5.4|^6.0",
  4826. "symfony/process": "^5.4|^6.0",
  4827. "symfony/var-dumper": "^5.4|^6.0"
  4828. },
  4829. "suggest": {
  4830. "psr/log": "For using the console logger",
  4831. "symfony/event-dispatcher": "",
  4832. "symfony/lock": "",
  4833. "symfony/process": ""
  4834. },
  4835. "type": "library",
  4836. "autoload": {
  4837. "psr-4": {
  4838. "Symfony\\Component\\Console\\": ""
  4839. },
  4840. "exclude-from-classmap": [
  4841. "/Tests/"
  4842. ]
  4843. },
  4844. "notification-url": "https://packagist.org/downloads/",
  4845. "license": [
  4846. "MIT"
  4847. ],
  4848. "authors": [
  4849. {
  4850. "name": "Fabien Potencier",
  4851. "email": "fabien@symfony.com"
  4852. },
  4853. {
  4854. "name": "Symfony Community",
  4855. "homepage": "https://symfony.com/contributors"
  4856. }
  4857. ],
  4858. "description": "Eases the creation of beautiful and testable command line interfaces",
  4859. "homepage": "https://symfony.com",
  4860. "keywords": [
  4861. "cli",
  4862. "command-line",
  4863. "console",
  4864. "terminal"
  4865. ],
  4866. "support": {
  4867. "source": "https://github.com/symfony/console/tree/v6.2.10"
  4868. },
  4869. "funding": [
  4870. {
  4871. "url": "https://symfony.com/sponsor",
  4872. "type": "custom"
  4873. },
  4874. {
  4875. "url": "https://github.com/fabpot",
  4876. "type": "github"
  4877. },
  4878. {
  4879. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4880. "type": "tidelift"
  4881. }
  4882. ],
  4883. "time": "2023-04-28T13:37:43+00:00"
  4884. },
  4885. {
  4886. "name": "symfony/css-selector",
  4887. "version": "v6.2.7",
  4888. "source": {
  4889. "type": "git",
  4890. "url": "https://github.com/symfony/css-selector.git",
  4891. "reference": "aedf3cb0f5b929ec255d96bbb4909e9932c769e0"
  4892. },
  4893. "dist": {
  4894. "type": "zip",
  4895. "url": "https://api.github.com/repos/symfony/css-selector/zipball/aedf3cb0f5b929ec255d96bbb4909e9932c769e0",
  4896. "reference": "aedf3cb0f5b929ec255d96bbb4909e9932c769e0",
  4897. "shasum": ""
  4898. },
  4899. "require": {
  4900. "php": ">=8.1"
  4901. },
  4902. "type": "library",
  4903. "autoload": {
  4904. "psr-4": {
  4905. "Symfony\\Component\\CssSelector\\": ""
  4906. },
  4907. "exclude-from-classmap": [
  4908. "/Tests/"
  4909. ]
  4910. },
  4911. "notification-url": "https://packagist.org/downloads/",
  4912. "license": [
  4913. "MIT"
  4914. ],
  4915. "authors": [
  4916. {
  4917. "name": "Fabien Potencier",
  4918. "email": "fabien@symfony.com"
  4919. },
  4920. {
  4921. "name": "Jean-François Simon",
  4922. "email": "jeanfrancois.simon@sensiolabs.com"
  4923. },
  4924. {
  4925. "name": "Symfony Community",
  4926. "homepage": "https://symfony.com/contributors"
  4927. }
  4928. ],
  4929. "description": "Converts CSS selectors to XPath expressions",
  4930. "homepage": "https://symfony.com",
  4931. "support": {
  4932. "source": "https://github.com/symfony/css-selector/tree/v6.2.7"
  4933. },
  4934. "funding": [
  4935. {
  4936. "url": "https://symfony.com/sponsor",
  4937. "type": "custom"
  4938. },
  4939. {
  4940. "url": "https://github.com/fabpot",
  4941. "type": "github"
  4942. },
  4943. {
  4944. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4945. "type": "tidelift"
  4946. }
  4947. ],
  4948. "time": "2023-02-14T08:44:56+00:00"
  4949. },
  4950. {
  4951. "name": "symfony/deprecation-contracts",
  4952. "version": "v3.2.1",
  4953. "source": {
  4954. "type": "git",
  4955. "url": "https://github.com/symfony/deprecation-contracts.git",
  4956. "reference": "e2d1534420bd723d0ef5aec58a22c5fe60ce6f5e"
  4957. },
  4958. "dist": {
  4959. "type": "zip",
  4960. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e2d1534420bd723d0ef5aec58a22c5fe60ce6f5e",
  4961. "reference": "e2d1534420bd723d0ef5aec58a22c5fe60ce6f5e",
  4962. "shasum": ""
  4963. },
  4964. "require": {
  4965. "php": ">=8.1"
  4966. },
  4967. "type": "library",
  4968. "extra": {
  4969. "branch-alias": {
  4970. "dev-main": "3.3-dev"
  4971. },
  4972. "thanks": {
  4973. "name": "symfony/contracts",
  4974. "url": "https://github.com/symfony/contracts"
  4975. }
  4976. },
  4977. "autoload": {
  4978. "files": [
  4979. "function.php"
  4980. ]
  4981. },
  4982. "notification-url": "https://packagist.org/downloads/",
  4983. "license": [
  4984. "MIT"
  4985. ],
  4986. "authors": [
  4987. {
  4988. "name": "Nicolas Grekas",
  4989. "email": "p@tchwork.com"
  4990. },
  4991. {
  4992. "name": "Symfony Community",
  4993. "homepage": "https://symfony.com/contributors"
  4994. }
  4995. ],
  4996. "description": "A generic function and convention to trigger deprecation notices",
  4997. "homepage": "https://symfony.com",
  4998. "support": {
  4999. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.2.1"
  5000. },
  5001. "funding": [
  5002. {
  5003. "url": "https://symfony.com/sponsor",
  5004. "type": "custom"
  5005. },
  5006. {
  5007. "url": "https://github.com/fabpot",
  5008. "type": "github"
  5009. },
  5010. {
  5011. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5012. "type": "tidelift"
  5013. }
  5014. ],
  5015. "time": "2023-03-01T10:25:55+00:00"
  5016. },
  5017. {
  5018. "name": "symfony/error-handler",
  5019. "version": "v6.2.10",
  5020. "source": {
  5021. "type": "git",
  5022. "url": "https://github.com/symfony/error-handler.git",
  5023. "reference": "8b7e9f124640cb0611624a9383176c3e5f7d8cfb"
  5024. },
  5025. "dist": {
  5026. "type": "zip",
  5027. "url": "https://api.github.com/repos/symfony/error-handler/zipball/8b7e9f124640cb0611624a9383176c3e5f7d8cfb",
  5028. "reference": "8b7e9f124640cb0611624a9383176c3e5f7d8cfb",
  5029. "shasum": ""
  5030. },
  5031. "require": {
  5032. "php": ">=8.1",
  5033. "psr/log": "^1|^2|^3",
  5034. "symfony/var-dumper": "^5.4|^6.0"
  5035. },
  5036. "require-dev": {
  5037. "symfony/deprecation-contracts": "^2.1|^3",
  5038. "symfony/http-kernel": "^5.4|^6.0",
  5039. "symfony/serializer": "^5.4|^6.0"
  5040. },
  5041. "bin": [
  5042. "Resources/bin/patch-type-declarations"
  5043. ],
  5044. "type": "library",
  5045. "autoload": {
  5046. "psr-4": {
  5047. "Symfony\\Component\\ErrorHandler\\": ""
  5048. },
  5049. "exclude-from-classmap": [
  5050. "/Tests/"
  5051. ]
  5052. },
  5053. "notification-url": "https://packagist.org/downloads/",
  5054. "license": [
  5055. "MIT"
  5056. ],
  5057. "authors": [
  5058. {
  5059. "name": "Fabien Potencier",
  5060. "email": "fabien@symfony.com"
  5061. },
  5062. {
  5063. "name": "Symfony Community",
  5064. "homepage": "https://symfony.com/contributors"
  5065. }
  5066. ],
  5067. "description": "Provides tools to manage errors and ease debugging PHP code",
  5068. "homepage": "https://symfony.com",
  5069. "support": {
  5070. "source": "https://github.com/symfony/error-handler/tree/v6.2.10"
  5071. },
  5072. "funding": [
  5073. {
  5074. "url": "https://symfony.com/sponsor",
  5075. "type": "custom"
  5076. },
  5077. {
  5078. "url": "https://github.com/fabpot",
  5079. "type": "github"
  5080. },
  5081. {
  5082. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5083. "type": "tidelift"
  5084. }
  5085. ],
  5086. "time": "2023-04-18T13:46:08+00:00"
  5087. },
  5088. {
  5089. "name": "symfony/event-dispatcher",
  5090. "version": "v6.2.8",
  5091. "source": {
  5092. "type": "git",
  5093. "url": "https://github.com/symfony/event-dispatcher.git",
  5094. "reference": "04046f35fd7d72f9646e721fc2ecb8f9c67d3339"
  5095. },
  5096. "dist": {
  5097. "type": "zip",
  5098. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/04046f35fd7d72f9646e721fc2ecb8f9c67d3339",
  5099. "reference": "04046f35fd7d72f9646e721fc2ecb8f9c67d3339",
  5100. "shasum": ""
  5101. },
  5102. "require": {
  5103. "php": ">=8.1",
  5104. "symfony/event-dispatcher-contracts": "^2|^3"
  5105. },
  5106. "conflict": {
  5107. "symfony/dependency-injection": "<5.4"
  5108. },
  5109. "provide": {
  5110. "psr/event-dispatcher-implementation": "1.0",
  5111. "symfony/event-dispatcher-implementation": "2.0|3.0"
  5112. },
  5113. "require-dev": {
  5114. "psr/log": "^1|^2|^3",
  5115. "symfony/config": "^5.4|^6.0",
  5116. "symfony/dependency-injection": "^5.4|^6.0",
  5117. "symfony/error-handler": "^5.4|^6.0",
  5118. "symfony/expression-language": "^5.4|^6.0",
  5119. "symfony/http-foundation": "^5.4|^6.0",
  5120. "symfony/service-contracts": "^1.1|^2|^3",
  5121. "symfony/stopwatch": "^5.4|^6.0"
  5122. },
  5123. "suggest": {
  5124. "symfony/dependency-injection": "",
  5125. "symfony/http-kernel": ""
  5126. },
  5127. "type": "library",
  5128. "autoload": {
  5129. "psr-4": {
  5130. "Symfony\\Component\\EventDispatcher\\": ""
  5131. },
  5132. "exclude-from-classmap": [
  5133. "/Tests/"
  5134. ]
  5135. },
  5136. "notification-url": "https://packagist.org/downloads/",
  5137. "license": [
  5138. "MIT"
  5139. ],
  5140. "authors": [
  5141. {
  5142. "name": "Fabien Potencier",
  5143. "email": "fabien@symfony.com"
  5144. },
  5145. {
  5146. "name": "Symfony Community",
  5147. "homepage": "https://symfony.com/contributors"
  5148. }
  5149. ],
  5150. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5151. "homepage": "https://symfony.com",
  5152. "support": {
  5153. "source": "https://github.com/symfony/event-dispatcher/tree/v6.2.8"
  5154. },
  5155. "funding": [
  5156. {
  5157. "url": "https://symfony.com/sponsor",
  5158. "type": "custom"
  5159. },
  5160. {
  5161. "url": "https://github.com/fabpot",
  5162. "type": "github"
  5163. },
  5164. {
  5165. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5166. "type": "tidelift"
  5167. }
  5168. ],
  5169. "time": "2023-03-20T16:06:02+00:00"
  5170. },
  5171. {
  5172. "name": "symfony/event-dispatcher-contracts",
  5173. "version": "v3.2.1",
  5174. "source": {
  5175. "type": "git",
  5176. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5177. "reference": "0ad3b6f1e4e2da5690fefe075cd53a238646d8dd"
  5178. },
  5179. "dist": {
  5180. "type": "zip",
  5181. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/0ad3b6f1e4e2da5690fefe075cd53a238646d8dd",
  5182. "reference": "0ad3b6f1e4e2da5690fefe075cd53a238646d8dd",
  5183. "shasum": ""
  5184. },
  5185. "require": {
  5186. "php": ">=8.1",
  5187. "psr/event-dispatcher": "^1"
  5188. },
  5189. "suggest": {
  5190. "symfony/event-dispatcher-implementation": ""
  5191. },
  5192. "type": "library",
  5193. "extra": {
  5194. "branch-alias": {
  5195. "dev-main": "3.3-dev"
  5196. },
  5197. "thanks": {
  5198. "name": "symfony/contracts",
  5199. "url": "https://github.com/symfony/contracts"
  5200. }
  5201. },
  5202. "autoload": {
  5203. "psr-4": {
  5204. "Symfony\\Contracts\\EventDispatcher\\": ""
  5205. }
  5206. },
  5207. "notification-url": "https://packagist.org/downloads/",
  5208. "license": [
  5209. "MIT"
  5210. ],
  5211. "authors": [
  5212. {
  5213. "name": "Nicolas Grekas",
  5214. "email": "p@tchwork.com"
  5215. },
  5216. {
  5217. "name": "Symfony Community",
  5218. "homepage": "https://symfony.com/contributors"
  5219. }
  5220. ],
  5221. "description": "Generic abstractions related to dispatching event",
  5222. "homepage": "https://symfony.com",
  5223. "keywords": [
  5224. "abstractions",
  5225. "contracts",
  5226. "decoupling",
  5227. "interfaces",
  5228. "interoperability",
  5229. "standards"
  5230. ],
  5231. "support": {
  5232. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.2.1"
  5233. },
  5234. "funding": [
  5235. {
  5236. "url": "https://symfony.com/sponsor",
  5237. "type": "custom"
  5238. },
  5239. {
  5240. "url": "https://github.com/fabpot",
  5241. "type": "github"
  5242. },
  5243. {
  5244. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5245. "type": "tidelift"
  5246. }
  5247. ],
  5248. "time": "2023-03-01T10:32:47+00:00"
  5249. },
  5250. {
  5251. "name": "symfony/finder",
  5252. "version": "v6.2.7",
  5253. "source": {
  5254. "type": "git",
  5255. "url": "https://github.com/symfony/finder.git",
  5256. "reference": "20808dc6631aecafbe67c186af5dcb370be3a0eb"
  5257. },
  5258. "dist": {
  5259. "type": "zip",
  5260. "url": "https://api.github.com/repos/symfony/finder/zipball/20808dc6631aecafbe67c186af5dcb370be3a0eb",
  5261. "reference": "20808dc6631aecafbe67c186af5dcb370be3a0eb",
  5262. "shasum": ""
  5263. },
  5264. "require": {
  5265. "php": ">=8.1"
  5266. },
  5267. "require-dev": {
  5268. "symfony/filesystem": "^6.0"
  5269. },
  5270. "type": "library",
  5271. "autoload": {
  5272. "psr-4": {
  5273. "Symfony\\Component\\Finder\\": ""
  5274. },
  5275. "exclude-from-classmap": [
  5276. "/Tests/"
  5277. ]
  5278. },
  5279. "notification-url": "https://packagist.org/downloads/",
  5280. "license": [
  5281. "MIT"
  5282. ],
  5283. "authors": [
  5284. {
  5285. "name": "Fabien Potencier",
  5286. "email": "fabien@symfony.com"
  5287. },
  5288. {
  5289. "name": "Symfony Community",
  5290. "homepage": "https://symfony.com/contributors"
  5291. }
  5292. ],
  5293. "description": "Finds files and directories via an intuitive fluent interface",
  5294. "homepage": "https://symfony.com",
  5295. "support": {
  5296. "source": "https://github.com/symfony/finder/tree/v6.2.7"
  5297. },
  5298. "funding": [
  5299. {
  5300. "url": "https://symfony.com/sponsor",
  5301. "type": "custom"
  5302. },
  5303. {
  5304. "url": "https://github.com/fabpot",
  5305. "type": "github"
  5306. },
  5307. {
  5308. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5309. "type": "tidelift"
  5310. }
  5311. ],
  5312. "time": "2023-02-16T09:57:23+00:00"
  5313. },
  5314. {
  5315. "name": "symfony/http-foundation",
  5316. "version": "v6.2.10",
  5317. "source": {
  5318. "type": "git",
  5319. "url": "https://github.com/symfony/http-foundation.git",
  5320. "reference": "49adbb92bcb4e3c2943719d2756271e8b9602acc"
  5321. },
  5322. "dist": {
  5323. "type": "zip",
  5324. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/49adbb92bcb4e3c2943719d2756271e8b9602acc",
  5325. "reference": "49adbb92bcb4e3c2943719d2756271e8b9602acc",
  5326. "shasum": ""
  5327. },
  5328. "require": {
  5329. "php": ">=8.1",
  5330. "symfony/deprecation-contracts": "^2.1|^3",
  5331. "symfony/polyfill-mbstring": "~1.1"
  5332. },
  5333. "conflict": {
  5334. "symfony/cache": "<6.2"
  5335. },
  5336. "require-dev": {
  5337. "predis/predis": "~1.0",
  5338. "symfony/cache": "^5.4|^6.0",
  5339. "symfony/dependency-injection": "^5.4|^6.0",
  5340. "symfony/expression-language": "^5.4|^6.0",
  5341. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  5342. "symfony/mime": "^5.4|^6.0",
  5343. "symfony/rate-limiter": "^5.2|^6.0"
  5344. },
  5345. "suggest": {
  5346. "symfony/mime": "To use the file extension guesser"
  5347. },
  5348. "type": "library",
  5349. "autoload": {
  5350. "psr-4": {
  5351. "Symfony\\Component\\HttpFoundation\\": ""
  5352. },
  5353. "exclude-from-classmap": [
  5354. "/Tests/"
  5355. ]
  5356. },
  5357. "notification-url": "https://packagist.org/downloads/",
  5358. "license": [
  5359. "MIT"
  5360. ],
  5361. "authors": [
  5362. {
  5363. "name": "Fabien Potencier",
  5364. "email": "fabien@symfony.com"
  5365. },
  5366. {
  5367. "name": "Symfony Community",
  5368. "homepage": "https://symfony.com/contributors"
  5369. }
  5370. ],
  5371. "description": "Defines an object-oriented layer for the HTTP specification",
  5372. "homepage": "https://symfony.com",
  5373. "support": {
  5374. "source": "https://github.com/symfony/http-foundation/tree/v6.2.10"
  5375. },
  5376. "funding": [
  5377. {
  5378. "url": "https://symfony.com/sponsor",
  5379. "type": "custom"
  5380. },
  5381. {
  5382. "url": "https://github.com/fabpot",
  5383. "type": "github"
  5384. },
  5385. {
  5386. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5387. "type": "tidelift"
  5388. }
  5389. ],
  5390. "time": "2023-04-18T13:46:08+00:00"
  5391. },
  5392. {
  5393. "name": "symfony/http-kernel",
  5394. "version": "v6.2.10",
  5395. "source": {
  5396. "type": "git",
  5397. "url": "https://github.com/symfony/http-kernel.git",
  5398. "reference": "81064a65a5496f17d2b6984f6519406f98864215"
  5399. },
  5400. "dist": {
  5401. "type": "zip",
  5402. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/81064a65a5496f17d2b6984f6519406f98864215",
  5403. "reference": "81064a65a5496f17d2b6984f6519406f98864215",
  5404. "shasum": ""
  5405. },
  5406. "require": {
  5407. "php": ">=8.1",
  5408. "psr/log": "^1|^2|^3",
  5409. "symfony/deprecation-contracts": "^2.1|^3",
  5410. "symfony/error-handler": "^6.1",
  5411. "symfony/event-dispatcher": "^5.4|^6.0",
  5412. "symfony/http-foundation": "^5.4.21|^6.2.7",
  5413. "symfony/polyfill-ctype": "^1.8"
  5414. },
  5415. "conflict": {
  5416. "symfony/browser-kit": "<5.4",
  5417. "symfony/cache": "<5.4",
  5418. "symfony/config": "<6.1",
  5419. "symfony/console": "<5.4",
  5420. "symfony/dependency-injection": "<6.2",
  5421. "symfony/doctrine-bridge": "<5.4",
  5422. "symfony/form": "<5.4",
  5423. "symfony/http-client": "<5.4",
  5424. "symfony/mailer": "<5.4",
  5425. "symfony/messenger": "<5.4",
  5426. "symfony/translation": "<5.4",
  5427. "symfony/twig-bridge": "<5.4",
  5428. "symfony/validator": "<5.4",
  5429. "twig/twig": "<2.13"
  5430. },
  5431. "provide": {
  5432. "psr/log-implementation": "1.0|2.0|3.0"
  5433. },
  5434. "require-dev": {
  5435. "psr/cache": "^1.0|^2.0|^3.0",
  5436. "symfony/browser-kit": "^5.4|^6.0",
  5437. "symfony/config": "^6.1",
  5438. "symfony/console": "^5.4|^6.0",
  5439. "symfony/css-selector": "^5.4|^6.0",
  5440. "symfony/dependency-injection": "^6.2",
  5441. "symfony/dom-crawler": "^5.4|^6.0",
  5442. "symfony/expression-language": "^5.4|^6.0",
  5443. "symfony/finder": "^5.4|^6.0",
  5444. "symfony/http-client-contracts": "^1.1|^2|^3",
  5445. "symfony/process": "^5.4|^6.0",
  5446. "symfony/routing": "^5.4|^6.0",
  5447. "symfony/stopwatch": "^5.4|^6.0",
  5448. "symfony/translation": "^5.4|^6.0",
  5449. "symfony/translation-contracts": "^1.1|^2|^3",
  5450. "symfony/uid": "^5.4|^6.0",
  5451. "twig/twig": "^2.13|^3.0.4"
  5452. },
  5453. "suggest": {
  5454. "symfony/browser-kit": "",
  5455. "symfony/config": "",
  5456. "symfony/console": "",
  5457. "symfony/dependency-injection": ""
  5458. },
  5459. "type": "library",
  5460. "autoload": {
  5461. "psr-4": {
  5462. "Symfony\\Component\\HttpKernel\\": ""
  5463. },
  5464. "exclude-from-classmap": [
  5465. "/Tests/"
  5466. ]
  5467. },
  5468. "notification-url": "https://packagist.org/downloads/",
  5469. "license": [
  5470. "MIT"
  5471. ],
  5472. "authors": [
  5473. {
  5474. "name": "Fabien Potencier",
  5475. "email": "fabien@symfony.com"
  5476. },
  5477. {
  5478. "name": "Symfony Community",
  5479. "homepage": "https://symfony.com/contributors"
  5480. }
  5481. ],
  5482. "description": "Provides a structured process for converting a Request into a Response",
  5483. "homepage": "https://symfony.com",
  5484. "support": {
  5485. "source": "https://github.com/symfony/http-kernel/tree/v6.2.10"
  5486. },
  5487. "funding": [
  5488. {
  5489. "url": "https://symfony.com/sponsor",
  5490. "type": "custom"
  5491. },
  5492. {
  5493. "url": "https://github.com/fabpot",
  5494. "type": "github"
  5495. },
  5496. {
  5497. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5498. "type": "tidelift"
  5499. }
  5500. ],
  5501. "time": "2023-04-28T13:50:28+00:00"
  5502. },
  5503. {
  5504. "name": "symfony/mailer",
  5505. "version": "v6.2.8",
  5506. "source": {
  5507. "type": "git",
  5508. "url": "https://github.com/symfony/mailer.git",
  5509. "reference": "bfcfa015c67e19c6fdb7ca6fe70700af1e740a17"
  5510. },
  5511. "dist": {
  5512. "type": "zip",
  5513. "url": "https://api.github.com/repos/symfony/mailer/zipball/bfcfa015c67e19c6fdb7ca6fe70700af1e740a17",
  5514. "reference": "bfcfa015c67e19c6fdb7ca6fe70700af1e740a17",
  5515. "shasum": ""
  5516. },
  5517. "require": {
  5518. "egulias/email-validator": "^2.1.10|^3|^4",
  5519. "php": ">=8.1",
  5520. "psr/event-dispatcher": "^1",
  5521. "psr/log": "^1|^2|^3",
  5522. "symfony/event-dispatcher": "^5.4|^6.0",
  5523. "symfony/mime": "^6.2",
  5524. "symfony/service-contracts": "^1.1|^2|^3"
  5525. },
  5526. "conflict": {
  5527. "symfony/http-kernel": "<5.4",
  5528. "symfony/messenger": "<6.2",
  5529. "symfony/mime": "<6.2",
  5530. "symfony/twig-bridge": "<6.2.1"
  5531. },
  5532. "require-dev": {
  5533. "symfony/console": "^5.4|^6.0",
  5534. "symfony/http-client": "^5.4|^6.0",
  5535. "symfony/messenger": "^6.2",
  5536. "symfony/twig-bridge": "^6.2"
  5537. },
  5538. "type": "library",
  5539. "autoload": {
  5540. "psr-4": {
  5541. "Symfony\\Component\\Mailer\\": ""
  5542. },
  5543. "exclude-from-classmap": [
  5544. "/Tests/"
  5545. ]
  5546. },
  5547. "notification-url": "https://packagist.org/downloads/",
  5548. "license": [
  5549. "MIT"
  5550. ],
  5551. "authors": [
  5552. {
  5553. "name": "Fabien Potencier",
  5554. "email": "fabien@symfony.com"
  5555. },
  5556. {
  5557. "name": "Symfony Community",
  5558. "homepage": "https://symfony.com/contributors"
  5559. }
  5560. ],
  5561. "description": "Helps sending emails",
  5562. "homepage": "https://symfony.com",
  5563. "support": {
  5564. "source": "https://github.com/symfony/mailer/tree/v6.2.8"
  5565. },
  5566. "funding": [
  5567. {
  5568. "url": "https://symfony.com/sponsor",
  5569. "type": "custom"
  5570. },
  5571. {
  5572. "url": "https://github.com/fabpot",
  5573. "type": "github"
  5574. },
  5575. {
  5576. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5577. "type": "tidelift"
  5578. }
  5579. ],
  5580. "time": "2023-03-14T15:00:05+00:00"
  5581. },
  5582. {
  5583. "name": "symfony/mime",
  5584. "version": "v6.2.10",
  5585. "source": {
  5586. "type": "git",
  5587. "url": "https://github.com/symfony/mime.git",
  5588. "reference": "b6c137fc53a9f7c4c951cd3f362b3734c7a97723"
  5589. },
  5590. "dist": {
  5591. "type": "zip",
  5592. "url": "https://api.github.com/repos/symfony/mime/zipball/b6c137fc53a9f7c4c951cd3f362b3734c7a97723",
  5593. "reference": "b6c137fc53a9f7c4c951cd3f362b3734c7a97723",
  5594. "shasum": ""
  5595. },
  5596. "require": {
  5597. "php": ">=8.1",
  5598. "symfony/polyfill-intl-idn": "^1.10",
  5599. "symfony/polyfill-mbstring": "^1.0"
  5600. },
  5601. "conflict": {
  5602. "egulias/email-validator": "~3.0.0",
  5603. "phpdocumentor/reflection-docblock": "<3.2.2",
  5604. "phpdocumentor/type-resolver": "<1.4.0",
  5605. "symfony/mailer": "<5.4",
  5606. "symfony/serializer": "<6.2"
  5607. },
  5608. "require-dev": {
  5609. "egulias/email-validator": "^2.1.10|^3.1|^4",
  5610. "league/html-to-markdown": "^5.0",
  5611. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5612. "symfony/dependency-injection": "^5.4|^6.0",
  5613. "symfony/property-access": "^5.4|^6.0",
  5614. "symfony/property-info": "^5.4|^6.0",
  5615. "symfony/serializer": "^6.2"
  5616. },
  5617. "type": "library",
  5618. "autoload": {
  5619. "psr-4": {
  5620. "Symfony\\Component\\Mime\\": ""
  5621. },
  5622. "exclude-from-classmap": [
  5623. "/Tests/"
  5624. ]
  5625. },
  5626. "notification-url": "https://packagist.org/downloads/",
  5627. "license": [
  5628. "MIT"
  5629. ],
  5630. "authors": [
  5631. {
  5632. "name": "Fabien Potencier",
  5633. "email": "fabien@symfony.com"
  5634. },
  5635. {
  5636. "name": "Symfony Community",
  5637. "homepage": "https://symfony.com/contributors"
  5638. }
  5639. ],
  5640. "description": "Allows manipulating MIME messages",
  5641. "homepage": "https://symfony.com",
  5642. "keywords": [
  5643. "mime",
  5644. "mime-type"
  5645. ],
  5646. "support": {
  5647. "source": "https://github.com/symfony/mime/tree/v6.2.10"
  5648. },
  5649. "funding": [
  5650. {
  5651. "url": "https://symfony.com/sponsor",
  5652. "type": "custom"
  5653. },
  5654. {
  5655. "url": "https://github.com/fabpot",
  5656. "type": "github"
  5657. },
  5658. {
  5659. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5660. "type": "tidelift"
  5661. }
  5662. ],
  5663. "time": "2023-04-19T09:54:16+00:00"
  5664. },
  5665. {
  5666. "name": "symfony/polyfill-ctype",
  5667. "version": "v1.27.0",
  5668. "source": {
  5669. "type": "git",
  5670. "url": "https://github.com/symfony/polyfill-ctype.git",
  5671. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a"
  5672. },
  5673. "dist": {
  5674. "type": "zip",
  5675. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a",
  5676. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a",
  5677. "shasum": ""
  5678. },
  5679. "require": {
  5680. "php": ">=7.1"
  5681. },
  5682. "provide": {
  5683. "ext-ctype": "*"
  5684. },
  5685. "suggest": {
  5686. "ext-ctype": "For best performance"
  5687. },
  5688. "type": "library",
  5689. "extra": {
  5690. "branch-alias": {
  5691. "dev-main": "1.27-dev"
  5692. },
  5693. "thanks": {
  5694. "name": "symfony/polyfill",
  5695. "url": "https://github.com/symfony/polyfill"
  5696. }
  5697. },
  5698. "autoload": {
  5699. "files": [
  5700. "bootstrap.php"
  5701. ],
  5702. "psr-4": {
  5703. "Symfony\\Polyfill\\Ctype\\": ""
  5704. }
  5705. },
  5706. "notification-url": "https://packagist.org/downloads/",
  5707. "license": [
  5708. "MIT"
  5709. ],
  5710. "authors": [
  5711. {
  5712. "name": "Gert de Pagter",
  5713. "email": "BackEndTea@gmail.com"
  5714. },
  5715. {
  5716. "name": "Symfony Community",
  5717. "homepage": "https://symfony.com/contributors"
  5718. }
  5719. ],
  5720. "description": "Symfony polyfill for ctype functions",
  5721. "homepage": "https://symfony.com",
  5722. "keywords": [
  5723. "compatibility",
  5724. "ctype",
  5725. "polyfill",
  5726. "portable"
  5727. ],
  5728. "support": {
  5729. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0"
  5730. },
  5731. "funding": [
  5732. {
  5733. "url": "https://symfony.com/sponsor",
  5734. "type": "custom"
  5735. },
  5736. {
  5737. "url": "https://github.com/fabpot",
  5738. "type": "github"
  5739. },
  5740. {
  5741. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5742. "type": "tidelift"
  5743. }
  5744. ],
  5745. "time": "2022-11-03T14:55:06+00:00"
  5746. },
  5747. {
  5748. "name": "symfony/polyfill-intl-grapheme",
  5749. "version": "v1.27.0",
  5750. "source": {
  5751. "type": "git",
  5752. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5753. "reference": "511a08c03c1960e08a883f4cffcacd219b758354"
  5754. },
  5755. "dist": {
  5756. "type": "zip",
  5757. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/511a08c03c1960e08a883f4cffcacd219b758354",
  5758. "reference": "511a08c03c1960e08a883f4cffcacd219b758354",
  5759. "shasum": ""
  5760. },
  5761. "require": {
  5762. "php": ">=7.1"
  5763. },
  5764. "suggest": {
  5765. "ext-intl": "For best performance"
  5766. },
  5767. "type": "library",
  5768. "extra": {
  5769. "branch-alias": {
  5770. "dev-main": "1.27-dev"
  5771. },
  5772. "thanks": {
  5773. "name": "symfony/polyfill",
  5774. "url": "https://github.com/symfony/polyfill"
  5775. }
  5776. },
  5777. "autoload": {
  5778. "files": [
  5779. "bootstrap.php"
  5780. ],
  5781. "psr-4": {
  5782. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5783. }
  5784. },
  5785. "notification-url": "https://packagist.org/downloads/",
  5786. "license": [
  5787. "MIT"
  5788. ],
  5789. "authors": [
  5790. {
  5791. "name": "Nicolas Grekas",
  5792. "email": "p@tchwork.com"
  5793. },
  5794. {
  5795. "name": "Symfony Community",
  5796. "homepage": "https://symfony.com/contributors"
  5797. }
  5798. ],
  5799. "description": "Symfony polyfill for intl's grapheme_* functions",
  5800. "homepage": "https://symfony.com",
  5801. "keywords": [
  5802. "compatibility",
  5803. "grapheme",
  5804. "intl",
  5805. "polyfill",
  5806. "portable",
  5807. "shim"
  5808. ],
  5809. "support": {
  5810. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.27.0"
  5811. },
  5812. "funding": [
  5813. {
  5814. "url": "https://symfony.com/sponsor",
  5815. "type": "custom"
  5816. },
  5817. {
  5818. "url": "https://github.com/fabpot",
  5819. "type": "github"
  5820. },
  5821. {
  5822. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5823. "type": "tidelift"
  5824. }
  5825. ],
  5826. "time": "2022-11-03T14:55:06+00:00"
  5827. },
  5828. {
  5829. "name": "symfony/polyfill-intl-idn",
  5830. "version": "v1.27.0",
  5831. "source": {
  5832. "type": "git",
  5833. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5834. "reference": "639084e360537a19f9ee352433b84ce831f3d2da"
  5835. },
  5836. "dist": {
  5837. "type": "zip",
  5838. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da",
  5839. "reference": "639084e360537a19f9ee352433b84ce831f3d2da",
  5840. "shasum": ""
  5841. },
  5842. "require": {
  5843. "php": ">=7.1",
  5844. "symfony/polyfill-intl-normalizer": "^1.10",
  5845. "symfony/polyfill-php72": "^1.10"
  5846. },
  5847. "suggest": {
  5848. "ext-intl": "For best performance"
  5849. },
  5850. "type": "library",
  5851. "extra": {
  5852. "branch-alias": {
  5853. "dev-main": "1.27-dev"
  5854. },
  5855. "thanks": {
  5856. "name": "symfony/polyfill",
  5857. "url": "https://github.com/symfony/polyfill"
  5858. }
  5859. },
  5860. "autoload": {
  5861. "files": [
  5862. "bootstrap.php"
  5863. ],
  5864. "psr-4": {
  5865. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5866. }
  5867. },
  5868. "notification-url": "https://packagist.org/downloads/",
  5869. "license": [
  5870. "MIT"
  5871. ],
  5872. "authors": [
  5873. {
  5874. "name": "Laurent Bassin",
  5875. "email": "laurent@bassin.info"
  5876. },
  5877. {
  5878. "name": "Trevor Rowbotham",
  5879. "email": "trevor.rowbotham@pm.me"
  5880. },
  5881. {
  5882. "name": "Symfony Community",
  5883. "homepage": "https://symfony.com/contributors"
  5884. }
  5885. ],
  5886. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5887. "homepage": "https://symfony.com",
  5888. "keywords": [
  5889. "compatibility",
  5890. "idn",
  5891. "intl",
  5892. "polyfill",
  5893. "portable",
  5894. "shim"
  5895. ],
  5896. "support": {
  5897. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0"
  5898. },
  5899. "funding": [
  5900. {
  5901. "url": "https://symfony.com/sponsor",
  5902. "type": "custom"
  5903. },
  5904. {
  5905. "url": "https://github.com/fabpot",
  5906. "type": "github"
  5907. },
  5908. {
  5909. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5910. "type": "tidelift"
  5911. }
  5912. ],
  5913. "time": "2022-11-03T14:55:06+00:00"
  5914. },
  5915. {
  5916. "name": "symfony/polyfill-intl-normalizer",
  5917. "version": "v1.27.0",
  5918. "source": {
  5919. "type": "git",
  5920. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5921. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6"
  5922. },
  5923. "dist": {
  5924. "type": "zip",
  5925. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  5926. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  5927. "shasum": ""
  5928. },
  5929. "require": {
  5930. "php": ">=7.1"
  5931. },
  5932. "suggest": {
  5933. "ext-intl": "For best performance"
  5934. },
  5935. "type": "library",
  5936. "extra": {
  5937. "branch-alias": {
  5938. "dev-main": "1.27-dev"
  5939. },
  5940. "thanks": {
  5941. "name": "symfony/polyfill",
  5942. "url": "https://github.com/symfony/polyfill"
  5943. }
  5944. },
  5945. "autoload": {
  5946. "files": [
  5947. "bootstrap.php"
  5948. ],
  5949. "psr-4": {
  5950. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5951. },
  5952. "classmap": [
  5953. "Resources/stubs"
  5954. ]
  5955. },
  5956. "notification-url": "https://packagist.org/downloads/",
  5957. "license": [
  5958. "MIT"
  5959. ],
  5960. "authors": [
  5961. {
  5962. "name": "Nicolas Grekas",
  5963. "email": "p@tchwork.com"
  5964. },
  5965. {
  5966. "name": "Symfony Community",
  5967. "homepage": "https://symfony.com/contributors"
  5968. }
  5969. ],
  5970. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5971. "homepage": "https://symfony.com",
  5972. "keywords": [
  5973. "compatibility",
  5974. "intl",
  5975. "normalizer",
  5976. "polyfill",
  5977. "portable",
  5978. "shim"
  5979. ],
  5980. "support": {
  5981. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0"
  5982. },
  5983. "funding": [
  5984. {
  5985. "url": "https://symfony.com/sponsor",
  5986. "type": "custom"
  5987. },
  5988. {
  5989. "url": "https://github.com/fabpot",
  5990. "type": "github"
  5991. },
  5992. {
  5993. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5994. "type": "tidelift"
  5995. }
  5996. ],
  5997. "time": "2022-11-03T14:55:06+00:00"
  5998. },
  5999. {
  6000. "name": "symfony/polyfill-mbstring",
  6001. "version": "v1.27.0",
  6002. "source": {
  6003. "type": "git",
  6004. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6005. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
  6006. },
  6007. "dist": {
  6008. "type": "zip",
  6009. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  6010. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  6011. "shasum": ""
  6012. },
  6013. "require": {
  6014. "php": ">=7.1"
  6015. },
  6016. "provide": {
  6017. "ext-mbstring": "*"
  6018. },
  6019. "suggest": {
  6020. "ext-mbstring": "For best performance"
  6021. },
  6022. "type": "library",
  6023. "extra": {
  6024. "branch-alias": {
  6025. "dev-main": "1.27-dev"
  6026. },
  6027. "thanks": {
  6028. "name": "symfony/polyfill",
  6029. "url": "https://github.com/symfony/polyfill"
  6030. }
  6031. },
  6032. "autoload": {
  6033. "files": [
  6034. "bootstrap.php"
  6035. ],
  6036. "psr-4": {
  6037. "Symfony\\Polyfill\\Mbstring\\": ""
  6038. }
  6039. },
  6040. "notification-url": "https://packagist.org/downloads/",
  6041. "license": [
  6042. "MIT"
  6043. ],
  6044. "authors": [
  6045. {
  6046. "name": "Nicolas Grekas",
  6047. "email": "p@tchwork.com"
  6048. },
  6049. {
  6050. "name": "Symfony Community",
  6051. "homepage": "https://symfony.com/contributors"
  6052. }
  6053. ],
  6054. "description": "Symfony polyfill for the Mbstring extension",
  6055. "homepage": "https://symfony.com",
  6056. "keywords": [
  6057. "compatibility",
  6058. "mbstring",
  6059. "polyfill",
  6060. "portable",
  6061. "shim"
  6062. ],
  6063. "support": {
  6064. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
  6065. },
  6066. "funding": [
  6067. {
  6068. "url": "https://symfony.com/sponsor",
  6069. "type": "custom"
  6070. },
  6071. {
  6072. "url": "https://github.com/fabpot",
  6073. "type": "github"
  6074. },
  6075. {
  6076. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6077. "type": "tidelift"
  6078. }
  6079. ],
  6080. "time": "2022-11-03T14:55:06+00:00"
  6081. },
  6082. {
  6083. "name": "symfony/polyfill-php72",
  6084. "version": "v1.27.0",
  6085. "source": {
  6086. "type": "git",
  6087. "url": "https://github.com/symfony/polyfill-php72.git",
  6088. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97"
  6089. },
  6090. "dist": {
  6091. "type": "zip",
  6092. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/869329b1e9894268a8a61dabb69153029b7a8c97",
  6093. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97",
  6094. "shasum": ""
  6095. },
  6096. "require": {
  6097. "php": ">=7.1"
  6098. },
  6099. "type": "library",
  6100. "extra": {
  6101. "branch-alias": {
  6102. "dev-main": "1.27-dev"
  6103. },
  6104. "thanks": {
  6105. "name": "symfony/polyfill",
  6106. "url": "https://github.com/symfony/polyfill"
  6107. }
  6108. },
  6109. "autoload": {
  6110. "files": [
  6111. "bootstrap.php"
  6112. ],
  6113. "psr-4": {
  6114. "Symfony\\Polyfill\\Php72\\": ""
  6115. }
  6116. },
  6117. "notification-url": "https://packagist.org/downloads/",
  6118. "license": [
  6119. "MIT"
  6120. ],
  6121. "authors": [
  6122. {
  6123. "name": "Nicolas Grekas",
  6124. "email": "p@tchwork.com"
  6125. },
  6126. {
  6127. "name": "Symfony Community",
  6128. "homepage": "https://symfony.com/contributors"
  6129. }
  6130. ],
  6131. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  6132. "homepage": "https://symfony.com",
  6133. "keywords": [
  6134. "compatibility",
  6135. "polyfill",
  6136. "portable",
  6137. "shim"
  6138. ],
  6139. "support": {
  6140. "source": "https://github.com/symfony/polyfill-php72/tree/v1.27.0"
  6141. },
  6142. "funding": [
  6143. {
  6144. "url": "https://symfony.com/sponsor",
  6145. "type": "custom"
  6146. },
  6147. {
  6148. "url": "https://github.com/fabpot",
  6149. "type": "github"
  6150. },
  6151. {
  6152. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6153. "type": "tidelift"
  6154. }
  6155. ],
  6156. "time": "2022-11-03T14:55:06+00:00"
  6157. },
  6158. {
  6159. "name": "symfony/polyfill-php80",
  6160. "version": "v1.27.0",
  6161. "source": {
  6162. "type": "git",
  6163. "url": "https://github.com/symfony/polyfill-php80.git",
  6164. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936"
  6165. },
  6166. "dist": {
  6167. "type": "zip",
  6168. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  6169. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  6170. "shasum": ""
  6171. },
  6172. "require": {
  6173. "php": ">=7.1"
  6174. },
  6175. "type": "library",
  6176. "extra": {
  6177. "branch-alias": {
  6178. "dev-main": "1.27-dev"
  6179. },
  6180. "thanks": {
  6181. "name": "symfony/polyfill",
  6182. "url": "https://github.com/symfony/polyfill"
  6183. }
  6184. },
  6185. "autoload": {
  6186. "files": [
  6187. "bootstrap.php"
  6188. ],
  6189. "psr-4": {
  6190. "Symfony\\Polyfill\\Php80\\": ""
  6191. },
  6192. "classmap": [
  6193. "Resources/stubs"
  6194. ]
  6195. },
  6196. "notification-url": "https://packagist.org/downloads/",
  6197. "license": [
  6198. "MIT"
  6199. ],
  6200. "authors": [
  6201. {
  6202. "name": "Ion Bazan",
  6203. "email": "ion.bazan@gmail.com"
  6204. },
  6205. {
  6206. "name": "Nicolas Grekas",
  6207. "email": "p@tchwork.com"
  6208. },
  6209. {
  6210. "name": "Symfony Community",
  6211. "homepage": "https://symfony.com/contributors"
  6212. }
  6213. ],
  6214. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6215. "homepage": "https://symfony.com",
  6216. "keywords": [
  6217. "compatibility",
  6218. "polyfill",
  6219. "portable",
  6220. "shim"
  6221. ],
  6222. "support": {
  6223. "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0"
  6224. },
  6225. "funding": [
  6226. {
  6227. "url": "https://symfony.com/sponsor",
  6228. "type": "custom"
  6229. },
  6230. {
  6231. "url": "https://github.com/fabpot",
  6232. "type": "github"
  6233. },
  6234. {
  6235. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6236. "type": "tidelift"
  6237. }
  6238. ],
  6239. "time": "2022-11-03T14:55:06+00:00"
  6240. },
  6241. {
  6242. "name": "symfony/polyfill-uuid",
  6243. "version": "v1.27.0",
  6244. "source": {
  6245. "type": "git",
  6246. "url": "https://github.com/symfony/polyfill-uuid.git",
  6247. "reference": "f3cf1a645c2734236ed1e2e671e273eeb3586166"
  6248. },
  6249. "dist": {
  6250. "type": "zip",
  6251. "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/f3cf1a645c2734236ed1e2e671e273eeb3586166",
  6252. "reference": "f3cf1a645c2734236ed1e2e671e273eeb3586166",
  6253. "shasum": ""
  6254. },
  6255. "require": {
  6256. "php": ">=7.1"
  6257. },
  6258. "provide": {
  6259. "ext-uuid": "*"
  6260. },
  6261. "suggest": {
  6262. "ext-uuid": "For best performance"
  6263. },
  6264. "type": "library",
  6265. "extra": {
  6266. "branch-alias": {
  6267. "dev-main": "1.27-dev"
  6268. },
  6269. "thanks": {
  6270. "name": "symfony/polyfill",
  6271. "url": "https://github.com/symfony/polyfill"
  6272. }
  6273. },
  6274. "autoload": {
  6275. "files": [
  6276. "bootstrap.php"
  6277. ],
  6278. "psr-4": {
  6279. "Symfony\\Polyfill\\Uuid\\": ""
  6280. }
  6281. },
  6282. "notification-url": "https://packagist.org/downloads/",
  6283. "license": [
  6284. "MIT"
  6285. ],
  6286. "authors": [
  6287. {
  6288. "name": "Grégoire Pineau",
  6289. "email": "lyrixx@lyrixx.info"
  6290. },
  6291. {
  6292. "name": "Symfony Community",
  6293. "homepage": "https://symfony.com/contributors"
  6294. }
  6295. ],
  6296. "description": "Symfony polyfill for uuid functions",
  6297. "homepage": "https://symfony.com",
  6298. "keywords": [
  6299. "compatibility",
  6300. "polyfill",
  6301. "portable",
  6302. "uuid"
  6303. ],
  6304. "support": {
  6305. "source": "https://github.com/symfony/polyfill-uuid/tree/v1.27.0"
  6306. },
  6307. "funding": [
  6308. {
  6309. "url": "https://symfony.com/sponsor",
  6310. "type": "custom"
  6311. },
  6312. {
  6313. "url": "https://github.com/fabpot",
  6314. "type": "github"
  6315. },
  6316. {
  6317. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6318. "type": "tidelift"
  6319. }
  6320. ],
  6321. "time": "2022-11-03T14:55:06+00:00"
  6322. },
  6323. {
  6324. "name": "symfony/process",
  6325. "version": "v6.2.10",
  6326. "source": {
  6327. "type": "git",
  6328. "url": "https://github.com/symfony/process.git",
  6329. "reference": "b34cdbc9c5e75d45a3703e63a48ad07aafa8bf2e"
  6330. },
  6331. "dist": {
  6332. "type": "zip",
  6333. "url": "https://api.github.com/repos/symfony/process/zipball/b34cdbc9c5e75d45a3703e63a48ad07aafa8bf2e",
  6334. "reference": "b34cdbc9c5e75d45a3703e63a48ad07aafa8bf2e",
  6335. "shasum": ""
  6336. },
  6337. "require": {
  6338. "php": ">=8.1"
  6339. },
  6340. "type": "library",
  6341. "autoload": {
  6342. "psr-4": {
  6343. "Symfony\\Component\\Process\\": ""
  6344. },
  6345. "exclude-from-classmap": [
  6346. "/Tests/"
  6347. ]
  6348. },
  6349. "notification-url": "https://packagist.org/downloads/",
  6350. "license": [
  6351. "MIT"
  6352. ],
  6353. "authors": [
  6354. {
  6355. "name": "Fabien Potencier",
  6356. "email": "fabien@symfony.com"
  6357. },
  6358. {
  6359. "name": "Symfony Community",
  6360. "homepage": "https://symfony.com/contributors"
  6361. }
  6362. ],
  6363. "description": "Executes commands in sub-processes",
  6364. "homepage": "https://symfony.com",
  6365. "support": {
  6366. "source": "https://github.com/symfony/process/tree/v6.2.10"
  6367. },
  6368. "funding": [
  6369. {
  6370. "url": "https://symfony.com/sponsor",
  6371. "type": "custom"
  6372. },
  6373. {
  6374. "url": "https://github.com/fabpot",
  6375. "type": "github"
  6376. },
  6377. {
  6378. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6379. "type": "tidelift"
  6380. }
  6381. ],
  6382. "time": "2023-04-18T13:56:57+00:00"
  6383. },
  6384. {
  6385. "name": "symfony/routing",
  6386. "version": "v6.2.8",
  6387. "source": {
  6388. "type": "git",
  6389. "url": "https://github.com/symfony/routing.git",
  6390. "reference": "69062e2823f03b82265d73a966999660f0e1e404"
  6391. },
  6392. "dist": {
  6393. "type": "zip",
  6394. "url": "https://api.github.com/repos/symfony/routing/zipball/69062e2823f03b82265d73a966999660f0e1e404",
  6395. "reference": "69062e2823f03b82265d73a966999660f0e1e404",
  6396. "shasum": ""
  6397. },
  6398. "require": {
  6399. "php": ">=8.1"
  6400. },
  6401. "conflict": {
  6402. "doctrine/annotations": "<1.12",
  6403. "symfony/config": "<6.2",
  6404. "symfony/dependency-injection": "<5.4",
  6405. "symfony/yaml": "<5.4"
  6406. },
  6407. "require-dev": {
  6408. "doctrine/annotations": "^1.12|^2",
  6409. "psr/log": "^1|^2|^3",
  6410. "symfony/config": "^6.2",
  6411. "symfony/dependency-injection": "^5.4|^6.0",
  6412. "symfony/expression-language": "^5.4|^6.0",
  6413. "symfony/http-foundation": "^5.4|^6.0",
  6414. "symfony/yaml": "^5.4|^6.0"
  6415. },
  6416. "suggest": {
  6417. "symfony/config": "For using the all-in-one router or any loader",
  6418. "symfony/expression-language": "For using expression matching",
  6419. "symfony/http-foundation": "For using a Symfony Request object",
  6420. "symfony/yaml": "For using the YAML loader"
  6421. },
  6422. "type": "library",
  6423. "autoload": {
  6424. "psr-4": {
  6425. "Symfony\\Component\\Routing\\": ""
  6426. },
  6427. "exclude-from-classmap": [
  6428. "/Tests/"
  6429. ]
  6430. },
  6431. "notification-url": "https://packagist.org/downloads/",
  6432. "license": [
  6433. "MIT"
  6434. ],
  6435. "authors": [
  6436. {
  6437. "name": "Fabien Potencier",
  6438. "email": "fabien@symfony.com"
  6439. },
  6440. {
  6441. "name": "Symfony Community",
  6442. "homepage": "https://symfony.com/contributors"
  6443. }
  6444. ],
  6445. "description": "Maps an HTTP request to a set of configuration variables",
  6446. "homepage": "https://symfony.com",
  6447. "keywords": [
  6448. "router",
  6449. "routing",
  6450. "uri",
  6451. "url"
  6452. ],
  6453. "support": {
  6454. "source": "https://github.com/symfony/routing/tree/v6.2.8"
  6455. },
  6456. "funding": [
  6457. {
  6458. "url": "https://symfony.com/sponsor",
  6459. "type": "custom"
  6460. },
  6461. {
  6462. "url": "https://github.com/fabpot",
  6463. "type": "github"
  6464. },
  6465. {
  6466. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6467. "type": "tidelift"
  6468. }
  6469. ],
  6470. "time": "2023-03-14T15:00:05+00:00"
  6471. },
  6472. {
  6473. "name": "symfony/service-contracts",
  6474. "version": "v3.2.1",
  6475. "source": {
  6476. "type": "git",
  6477. "url": "https://github.com/symfony/service-contracts.git",
  6478. "reference": "a8c9cedf55f314f3a186041d19537303766df09a"
  6479. },
  6480. "dist": {
  6481. "type": "zip",
  6482. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/a8c9cedf55f314f3a186041d19537303766df09a",
  6483. "reference": "a8c9cedf55f314f3a186041d19537303766df09a",
  6484. "shasum": ""
  6485. },
  6486. "require": {
  6487. "php": ">=8.1",
  6488. "psr/container": "^2.0"
  6489. },
  6490. "conflict": {
  6491. "ext-psr": "<1.1|>=2"
  6492. },
  6493. "suggest": {
  6494. "symfony/service-implementation": ""
  6495. },
  6496. "type": "library",
  6497. "extra": {
  6498. "branch-alias": {
  6499. "dev-main": "3.3-dev"
  6500. },
  6501. "thanks": {
  6502. "name": "symfony/contracts",
  6503. "url": "https://github.com/symfony/contracts"
  6504. }
  6505. },
  6506. "autoload": {
  6507. "psr-4": {
  6508. "Symfony\\Contracts\\Service\\": ""
  6509. },
  6510. "exclude-from-classmap": [
  6511. "/Test/"
  6512. ]
  6513. },
  6514. "notification-url": "https://packagist.org/downloads/",
  6515. "license": [
  6516. "MIT"
  6517. ],
  6518. "authors": [
  6519. {
  6520. "name": "Nicolas Grekas",
  6521. "email": "p@tchwork.com"
  6522. },
  6523. {
  6524. "name": "Symfony Community",
  6525. "homepage": "https://symfony.com/contributors"
  6526. }
  6527. ],
  6528. "description": "Generic abstractions related to writing services",
  6529. "homepage": "https://symfony.com",
  6530. "keywords": [
  6531. "abstractions",
  6532. "contracts",
  6533. "decoupling",
  6534. "interfaces",
  6535. "interoperability",
  6536. "standards"
  6537. ],
  6538. "support": {
  6539. "source": "https://github.com/symfony/service-contracts/tree/v3.2.1"
  6540. },
  6541. "funding": [
  6542. {
  6543. "url": "https://symfony.com/sponsor",
  6544. "type": "custom"
  6545. },
  6546. {
  6547. "url": "https://github.com/fabpot",
  6548. "type": "github"
  6549. },
  6550. {
  6551. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6552. "type": "tidelift"
  6553. }
  6554. ],
  6555. "time": "2023-03-01T10:32:47+00:00"
  6556. },
  6557. {
  6558. "name": "symfony/string",
  6559. "version": "v6.2.8",
  6560. "source": {
  6561. "type": "git",
  6562. "url": "https://github.com/symfony/string.git",
  6563. "reference": "193e83bbd6617d6b2151c37fff10fa7168ebddef"
  6564. },
  6565. "dist": {
  6566. "type": "zip",
  6567. "url": "https://api.github.com/repos/symfony/string/zipball/193e83bbd6617d6b2151c37fff10fa7168ebddef",
  6568. "reference": "193e83bbd6617d6b2151c37fff10fa7168ebddef",
  6569. "shasum": ""
  6570. },
  6571. "require": {
  6572. "php": ">=8.1",
  6573. "symfony/polyfill-ctype": "~1.8",
  6574. "symfony/polyfill-intl-grapheme": "~1.0",
  6575. "symfony/polyfill-intl-normalizer": "~1.0",
  6576. "symfony/polyfill-mbstring": "~1.0"
  6577. },
  6578. "conflict": {
  6579. "symfony/translation-contracts": "<2.0"
  6580. },
  6581. "require-dev": {
  6582. "symfony/error-handler": "^5.4|^6.0",
  6583. "symfony/http-client": "^5.4|^6.0",
  6584. "symfony/intl": "^6.2",
  6585. "symfony/translation-contracts": "^2.0|^3.0",
  6586. "symfony/var-exporter": "^5.4|^6.0"
  6587. },
  6588. "type": "library",
  6589. "autoload": {
  6590. "files": [
  6591. "Resources/functions.php"
  6592. ],
  6593. "psr-4": {
  6594. "Symfony\\Component\\String\\": ""
  6595. },
  6596. "exclude-from-classmap": [
  6597. "/Tests/"
  6598. ]
  6599. },
  6600. "notification-url": "https://packagist.org/downloads/",
  6601. "license": [
  6602. "MIT"
  6603. ],
  6604. "authors": [
  6605. {
  6606. "name": "Nicolas Grekas",
  6607. "email": "p@tchwork.com"
  6608. },
  6609. {
  6610. "name": "Symfony Community",
  6611. "homepage": "https://symfony.com/contributors"
  6612. }
  6613. ],
  6614. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  6615. "homepage": "https://symfony.com",
  6616. "keywords": [
  6617. "grapheme",
  6618. "i18n",
  6619. "string",
  6620. "unicode",
  6621. "utf-8",
  6622. "utf8"
  6623. ],
  6624. "support": {
  6625. "source": "https://github.com/symfony/string/tree/v6.2.8"
  6626. },
  6627. "funding": [
  6628. {
  6629. "url": "https://symfony.com/sponsor",
  6630. "type": "custom"
  6631. },
  6632. {
  6633. "url": "https://github.com/fabpot",
  6634. "type": "github"
  6635. },
  6636. {
  6637. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6638. "type": "tidelift"
  6639. }
  6640. ],
  6641. "time": "2023-03-20T16:06:02+00:00"
  6642. },
  6643. {
  6644. "name": "symfony/translation",
  6645. "version": "v6.2.8",
  6646. "source": {
  6647. "type": "git",
  6648. "url": "https://github.com/symfony/translation.git",
  6649. "reference": "817535dbb1721df8b3a8f2489dc7e50bcd6209b5"
  6650. },
  6651. "dist": {
  6652. "type": "zip",
  6653. "url": "https://api.github.com/repos/symfony/translation/zipball/817535dbb1721df8b3a8f2489dc7e50bcd6209b5",
  6654. "reference": "817535dbb1721df8b3a8f2489dc7e50bcd6209b5",
  6655. "shasum": ""
  6656. },
  6657. "require": {
  6658. "php": ">=8.1",
  6659. "symfony/polyfill-mbstring": "~1.0",
  6660. "symfony/translation-contracts": "^2.3|^3.0"
  6661. },
  6662. "conflict": {
  6663. "symfony/config": "<5.4",
  6664. "symfony/console": "<5.4",
  6665. "symfony/dependency-injection": "<5.4",
  6666. "symfony/http-kernel": "<5.4",
  6667. "symfony/twig-bundle": "<5.4",
  6668. "symfony/yaml": "<5.4"
  6669. },
  6670. "provide": {
  6671. "symfony/translation-implementation": "2.3|3.0"
  6672. },
  6673. "require-dev": {
  6674. "nikic/php-parser": "^4.13",
  6675. "psr/log": "^1|^2|^3",
  6676. "symfony/config": "^5.4|^6.0",
  6677. "symfony/console": "^5.4|^6.0",
  6678. "symfony/dependency-injection": "^5.4|^6.0",
  6679. "symfony/finder": "^5.4|^6.0",
  6680. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  6681. "symfony/http-kernel": "^5.4|^6.0",
  6682. "symfony/intl": "^5.4|^6.0",
  6683. "symfony/polyfill-intl-icu": "^1.21",
  6684. "symfony/routing": "^5.4|^6.0",
  6685. "symfony/service-contracts": "^1.1.2|^2|^3",
  6686. "symfony/yaml": "^5.4|^6.0"
  6687. },
  6688. "suggest": {
  6689. "nikic/php-parser": "To use PhpAstExtractor",
  6690. "psr/log-implementation": "To use logging capability in translator",
  6691. "symfony/config": "",
  6692. "symfony/yaml": ""
  6693. },
  6694. "type": "library",
  6695. "autoload": {
  6696. "files": [
  6697. "Resources/functions.php"
  6698. ],
  6699. "psr-4": {
  6700. "Symfony\\Component\\Translation\\": ""
  6701. },
  6702. "exclude-from-classmap": [
  6703. "/Tests/"
  6704. ]
  6705. },
  6706. "notification-url": "https://packagist.org/downloads/",
  6707. "license": [
  6708. "MIT"
  6709. ],
  6710. "authors": [
  6711. {
  6712. "name": "Fabien Potencier",
  6713. "email": "fabien@symfony.com"
  6714. },
  6715. {
  6716. "name": "Symfony Community",
  6717. "homepage": "https://symfony.com/contributors"
  6718. }
  6719. ],
  6720. "description": "Provides tools to internationalize your application",
  6721. "homepage": "https://symfony.com",
  6722. "support": {
  6723. "source": "https://github.com/symfony/translation/tree/v6.2.8"
  6724. },
  6725. "funding": [
  6726. {
  6727. "url": "https://symfony.com/sponsor",
  6728. "type": "custom"
  6729. },
  6730. {
  6731. "url": "https://github.com/fabpot",
  6732. "type": "github"
  6733. },
  6734. {
  6735. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6736. "type": "tidelift"
  6737. }
  6738. ],
  6739. "time": "2023-03-31T09:14:44+00:00"
  6740. },
  6741. {
  6742. "name": "symfony/translation-contracts",
  6743. "version": "v3.2.1",
  6744. "source": {
  6745. "type": "git",
  6746. "url": "https://github.com/symfony/translation-contracts.git",
  6747. "reference": "dfec258b9dd17a6b24420d464c43bffe347441c8"
  6748. },
  6749. "dist": {
  6750. "type": "zip",
  6751. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/dfec258b9dd17a6b24420d464c43bffe347441c8",
  6752. "reference": "dfec258b9dd17a6b24420d464c43bffe347441c8",
  6753. "shasum": ""
  6754. },
  6755. "require": {
  6756. "php": ">=8.1"
  6757. },
  6758. "suggest": {
  6759. "symfony/translation-implementation": ""
  6760. },
  6761. "type": "library",
  6762. "extra": {
  6763. "branch-alias": {
  6764. "dev-main": "3.3-dev"
  6765. },
  6766. "thanks": {
  6767. "name": "symfony/contracts",
  6768. "url": "https://github.com/symfony/contracts"
  6769. }
  6770. },
  6771. "autoload": {
  6772. "psr-4": {
  6773. "Symfony\\Contracts\\Translation\\": ""
  6774. },
  6775. "exclude-from-classmap": [
  6776. "/Test/"
  6777. ]
  6778. },
  6779. "notification-url": "https://packagist.org/downloads/",
  6780. "license": [
  6781. "MIT"
  6782. ],
  6783. "authors": [
  6784. {
  6785. "name": "Nicolas Grekas",
  6786. "email": "p@tchwork.com"
  6787. },
  6788. {
  6789. "name": "Symfony Community",
  6790. "homepage": "https://symfony.com/contributors"
  6791. }
  6792. ],
  6793. "description": "Generic abstractions related to translation",
  6794. "homepage": "https://symfony.com",
  6795. "keywords": [
  6796. "abstractions",
  6797. "contracts",
  6798. "decoupling",
  6799. "interfaces",
  6800. "interoperability",
  6801. "standards"
  6802. ],
  6803. "support": {
  6804. "source": "https://github.com/symfony/translation-contracts/tree/v3.2.1"
  6805. },
  6806. "funding": [
  6807. {
  6808. "url": "https://symfony.com/sponsor",
  6809. "type": "custom"
  6810. },
  6811. {
  6812. "url": "https://github.com/fabpot",
  6813. "type": "github"
  6814. },
  6815. {
  6816. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6817. "type": "tidelift"
  6818. }
  6819. ],
  6820. "time": "2023-03-01T10:32:47+00:00"
  6821. },
  6822. {
  6823. "name": "symfony/uid",
  6824. "version": "v6.2.7",
  6825. "source": {
  6826. "type": "git",
  6827. "url": "https://github.com/symfony/uid.git",
  6828. "reference": "d30c72a63897cfa043e1de4d4dd2ffa9ecefcdc0"
  6829. },
  6830. "dist": {
  6831. "type": "zip",
  6832. "url": "https://api.github.com/repos/symfony/uid/zipball/d30c72a63897cfa043e1de4d4dd2ffa9ecefcdc0",
  6833. "reference": "d30c72a63897cfa043e1de4d4dd2ffa9ecefcdc0",
  6834. "shasum": ""
  6835. },
  6836. "require": {
  6837. "php": ">=8.1",
  6838. "symfony/polyfill-uuid": "^1.15"
  6839. },
  6840. "require-dev": {
  6841. "symfony/console": "^5.4|^6.0"
  6842. },
  6843. "type": "library",
  6844. "autoload": {
  6845. "psr-4": {
  6846. "Symfony\\Component\\Uid\\": ""
  6847. },
  6848. "exclude-from-classmap": [
  6849. "/Tests/"
  6850. ]
  6851. },
  6852. "notification-url": "https://packagist.org/downloads/",
  6853. "license": [
  6854. "MIT"
  6855. ],
  6856. "authors": [
  6857. {
  6858. "name": "Grégoire Pineau",
  6859. "email": "lyrixx@lyrixx.info"
  6860. },
  6861. {
  6862. "name": "Nicolas Grekas",
  6863. "email": "p@tchwork.com"
  6864. },
  6865. {
  6866. "name": "Symfony Community",
  6867. "homepage": "https://symfony.com/contributors"
  6868. }
  6869. ],
  6870. "description": "Provides an object-oriented API to generate and represent UIDs",
  6871. "homepage": "https://symfony.com",
  6872. "keywords": [
  6873. "UID",
  6874. "ulid",
  6875. "uuid"
  6876. ],
  6877. "support": {
  6878. "source": "https://github.com/symfony/uid/tree/v6.2.7"
  6879. },
  6880. "funding": [
  6881. {
  6882. "url": "https://symfony.com/sponsor",
  6883. "type": "custom"
  6884. },
  6885. {
  6886. "url": "https://github.com/fabpot",
  6887. "type": "github"
  6888. },
  6889. {
  6890. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6891. "type": "tidelift"
  6892. }
  6893. ],
  6894. "time": "2023-02-14T08:44:56+00:00"
  6895. },
  6896. {
  6897. "name": "symfony/var-dumper",
  6898. "version": "v6.2.10",
  6899. "source": {
  6900. "type": "git",
  6901. "url": "https://github.com/symfony/var-dumper.git",
  6902. "reference": "41a750a23412ca76fdbbf5096943b4134272c1ab"
  6903. },
  6904. "dist": {
  6905. "type": "zip",
  6906. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/41a750a23412ca76fdbbf5096943b4134272c1ab",
  6907. "reference": "41a750a23412ca76fdbbf5096943b4134272c1ab",
  6908. "shasum": ""
  6909. },
  6910. "require": {
  6911. "php": ">=8.1",
  6912. "symfony/polyfill-mbstring": "~1.0"
  6913. },
  6914. "conflict": {
  6915. "phpunit/phpunit": "<5.4.3",
  6916. "symfony/console": "<5.4"
  6917. },
  6918. "require-dev": {
  6919. "ext-iconv": "*",
  6920. "symfony/console": "^5.4|^6.0",
  6921. "symfony/process": "^5.4|^6.0",
  6922. "symfony/uid": "^5.4|^6.0",
  6923. "twig/twig": "^2.13|^3.0.4"
  6924. },
  6925. "suggest": {
  6926. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  6927. "ext-intl": "To show region name in time zone dump",
  6928. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  6929. },
  6930. "bin": [
  6931. "Resources/bin/var-dump-server"
  6932. ],
  6933. "type": "library",
  6934. "autoload": {
  6935. "files": [
  6936. "Resources/functions/dump.php"
  6937. ],
  6938. "psr-4": {
  6939. "Symfony\\Component\\VarDumper\\": ""
  6940. },
  6941. "exclude-from-classmap": [
  6942. "/Tests/"
  6943. ]
  6944. },
  6945. "notification-url": "https://packagist.org/downloads/",
  6946. "license": [
  6947. "MIT"
  6948. ],
  6949. "authors": [
  6950. {
  6951. "name": "Nicolas Grekas",
  6952. "email": "p@tchwork.com"
  6953. },
  6954. {
  6955. "name": "Symfony Community",
  6956. "homepage": "https://symfony.com/contributors"
  6957. }
  6958. ],
  6959. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  6960. "homepage": "https://symfony.com",
  6961. "keywords": [
  6962. "debug",
  6963. "dump"
  6964. ],
  6965. "support": {
  6966. "source": "https://github.com/symfony/var-dumper/tree/v6.2.10"
  6967. },
  6968. "funding": [
  6969. {
  6970. "url": "https://symfony.com/sponsor",
  6971. "type": "custom"
  6972. },
  6973. {
  6974. "url": "https://github.com/fabpot",
  6975. "type": "github"
  6976. },
  6977. {
  6978. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6979. "type": "tidelift"
  6980. }
  6981. ],
  6982. "time": "2023-04-18T13:46:08+00:00"
  6983. },
  6984. {
  6985. "name": "tgalopin/html-sanitizer",
  6986. "version": "1.5.0",
  6987. "source": {
  6988. "type": "git",
  6989. "url": "https://github.com/tgalopin/html-sanitizer.git",
  6990. "reference": "5d02dcb6f2ea4f505731eac440798caa1b3b0913"
  6991. },
  6992. "dist": {
  6993. "type": "zip",
  6994. "url": "https://api.github.com/repos/tgalopin/html-sanitizer/zipball/5d02dcb6f2ea4f505731eac440798caa1b3b0913",
  6995. "reference": "5d02dcb6f2ea4f505731eac440798caa1b3b0913",
  6996. "shasum": ""
  6997. },
  6998. "require": {
  6999. "ext-dom": "*",
  7000. "league/uri-parser": "^1.4.1",
  7001. "masterminds/html5": "^2.4",
  7002. "php": ">=7.1",
  7003. "psr/log": "^1.0|^2.0|^3.0"
  7004. },
  7005. "require-dev": {
  7006. "phpunit/phpunit": "^7.4",
  7007. "symfony/var-dumper": "^4.1"
  7008. },
  7009. "type": "library",
  7010. "autoload": {
  7011. "psr-4": {
  7012. "HtmlSanitizer\\": "src"
  7013. }
  7014. },
  7015. "notification-url": "https://packagist.org/downloads/",
  7016. "license": [
  7017. "MIT"
  7018. ],
  7019. "authors": [
  7020. {
  7021. "name": "Titouan Galopin",
  7022. "email": "galopintitouan@gmail.com"
  7023. }
  7024. ],
  7025. "description": "Sanitize untrustworthy HTML user input",
  7026. "support": {
  7027. "issues": "https://github.com/tgalopin/html-sanitizer/issues",
  7028. "source": "https://github.com/tgalopin/html-sanitizer/tree/1.5.0"
  7029. },
  7030. "abandoned": "symfony/html-sanitizer",
  7031. "time": "2021-09-14T08:27:50+00:00"
  7032. },
  7033. {
  7034. "name": "tijsverkoyen/css-to-inline-styles",
  7035. "version": "2.2.6",
  7036. "source": {
  7037. "type": "git",
  7038. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7039. "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c"
  7040. },
  7041. "dist": {
  7042. "type": "zip",
  7043. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/c42125b83a4fa63b187fdf29f9c93cb7733da30c",
  7044. "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c",
  7045. "shasum": ""
  7046. },
  7047. "require": {
  7048. "ext-dom": "*",
  7049. "ext-libxml": "*",
  7050. "php": "^5.5 || ^7.0 || ^8.0",
  7051. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  7052. },
  7053. "require-dev": {
  7054. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  7055. },
  7056. "type": "library",
  7057. "extra": {
  7058. "branch-alias": {
  7059. "dev-master": "2.2.x-dev"
  7060. }
  7061. },
  7062. "autoload": {
  7063. "psr-4": {
  7064. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  7065. }
  7066. },
  7067. "notification-url": "https://packagist.org/downloads/",
  7068. "license": [
  7069. "BSD-3-Clause"
  7070. ],
  7071. "authors": [
  7072. {
  7073. "name": "Tijs Verkoyen",
  7074. "email": "css_to_inline_styles@verkoyen.eu",
  7075. "role": "Developer"
  7076. }
  7077. ],
  7078. "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.",
  7079. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  7080. "support": {
  7081. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  7082. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.6"
  7083. },
  7084. "time": "2023-01-03T09:29:04+00:00"
  7085. },
  7086. {
  7087. "name": "vlucas/phpdotenv",
  7088. "version": "v5.5.0",
  7089. "source": {
  7090. "type": "git",
  7091. "url": "https://github.com/vlucas/phpdotenv.git",
  7092. "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7"
  7093. },
  7094. "dist": {
  7095. "type": "zip",
  7096. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
  7097. "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
  7098. "shasum": ""
  7099. },
  7100. "require": {
  7101. "ext-pcre": "*",
  7102. "graham-campbell/result-type": "^1.0.2",
  7103. "php": "^7.1.3 || ^8.0",
  7104. "phpoption/phpoption": "^1.8",
  7105. "symfony/polyfill-ctype": "^1.23",
  7106. "symfony/polyfill-mbstring": "^1.23.1",
  7107. "symfony/polyfill-php80": "^1.23.1"
  7108. },
  7109. "require-dev": {
  7110. "bamarni/composer-bin-plugin": "^1.4.1",
  7111. "ext-filter": "*",
  7112. "phpunit/phpunit": "^7.5.20 || ^8.5.30 || ^9.5.25"
  7113. },
  7114. "suggest": {
  7115. "ext-filter": "Required to use the boolean validator."
  7116. },
  7117. "type": "library",
  7118. "extra": {
  7119. "bamarni-bin": {
  7120. "bin-links": true,
  7121. "forward-command": true
  7122. },
  7123. "branch-alias": {
  7124. "dev-master": "5.5-dev"
  7125. }
  7126. },
  7127. "autoload": {
  7128. "psr-4": {
  7129. "Dotenv\\": "src/"
  7130. }
  7131. },
  7132. "notification-url": "https://packagist.org/downloads/",
  7133. "license": [
  7134. "BSD-3-Clause"
  7135. ],
  7136. "authors": [
  7137. {
  7138. "name": "Graham Campbell",
  7139. "email": "hello@gjcampbell.co.uk",
  7140. "homepage": "https://github.com/GrahamCampbell"
  7141. },
  7142. {
  7143. "name": "Vance Lucas",
  7144. "email": "vance@vancelucas.com",
  7145. "homepage": "https://github.com/vlucas"
  7146. }
  7147. ],
  7148. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7149. "keywords": [
  7150. "dotenv",
  7151. "env",
  7152. "environment"
  7153. ],
  7154. "support": {
  7155. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7156. "source": "https://github.com/vlucas/phpdotenv/tree/v5.5.0"
  7157. },
  7158. "funding": [
  7159. {
  7160. "url": "https://github.com/GrahamCampbell",
  7161. "type": "github"
  7162. },
  7163. {
  7164. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7165. "type": "tidelift"
  7166. }
  7167. ],
  7168. "time": "2022-10-16T01:01:54+00:00"
  7169. },
  7170. {
  7171. "name": "voku/portable-ascii",
  7172. "version": "2.0.1",
  7173. "source": {
  7174. "type": "git",
  7175. "url": "https://github.com/voku/portable-ascii.git",
  7176. "reference": "b56450eed252f6801410d810c8e1727224ae0743"
  7177. },
  7178. "dist": {
  7179. "type": "zip",
  7180. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b56450eed252f6801410d810c8e1727224ae0743",
  7181. "reference": "b56450eed252f6801410d810c8e1727224ae0743",
  7182. "shasum": ""
  7183. },
  7184. "require": {
  7185. "php": ">=7.0.0"
  7186. },
  7187. "require-dev": {
  7188. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  7189. },
  7190. "suggest": {
  7191. "ext-intl": "Use Intl for transliterator_transliterate() support"
  7192. },
  7193. "type": "library",
  7194. "autoload": {
  7195. "psr-4": {
  7196. "voku\\": "src/voku/"
  7197. }
  7198. },
  7199. "notification-url": "https://packagist.org/downloads/",
  7200. "license": [
  7201. "MIT"
  7202. ],
  7203. "authors": [
  7204. {
  7205. "name": "Lars Moelleken",
  7206. "homepage": "http://www.moelleken.org/"
  7207. }
  7208. ],
  7209. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  7210. "homepage": "https://github.com/voku/portable-ascii",
  7211. "keywords": [
  7212. "ascii",
  7213. "clean",
  7214. "php"
  7215. ],
  7216. "support": {
  7217. "issues": "https://github.com/voku/portable-ascii/issues",
  7218. "source": "https://github.com/voku/portable-ascii/tree/2.0.1"
  7219. },
  7220. "funding": [
  7221. {
  7222. "url": "https://www.paypal.me/moelleken",
  7223. "type": "custom"
  7224. },
  7225. {
  7226. "url": "https://github.com/voku",
  7227. "type": "github"
  7228. },
  7229. {
  7230. "url": "https://opencollective.com/portable-ascii",
  7231. "type": "open_collective"
  7232. },
  7233. {
  7234. "url": "https://www.patreon.com/voku",
  7235. "type": "patreon"
  7236. },
  7237. {
  7238. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  7239. "type": "tidelift"
  7240. }
  7241. ],
  7242. "time": "2022-03-08T17:03:00+00:00"
  7243. },
  7244. {
  7245. "name": "webmozart/assert",
  7246. "version": "1.11.0",
  7247. "source": {
  7248. "type": "git",
  7249. "url": "https://github.com/webmozarts/assert.git",
  7250. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  7251. },
  7252. "dist": {
  7253. "type": "zip",
  7254. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  7255. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  7256. "shasum": ""
  7257. },
  7258. "require": {
  7259. "ext-ctype": "*",
  7260. "php": "^7.2 || ^8.0"
  7261. },
  7262. "conflict": {
  7263. "phpstan/phpstan": "<0.12.20",
  7264. "vimeo/psalm": "<4.6.1 || 4.6.2"
  7265. },
  7266. "require-dev": {
  7267. "phpunit/phpunit": "^8.5.13"
  7268. },
  7269. "type": "library",
  7270. "extra": {
  7271. "branch-alias": {
  7272. "dev-master": "1.10-dev"
  7273. }
  7274. },
  7275. "autoload": {
  7276. "psr-4": {
  7277. "Webmozart\\Assert\\": "src/"
  7278. }
  7279. },
  7280. "notification-url": "https://packagist.org/downloads/",
  7281. "license": [
  7282. "MIT"
  7283. ],
  7284. "authors": [
  7285. {
  7286. "name": "Bernhard Schussek",
  7287. "email": "bschussek@gmail.com"
  7288. }
  7289. ],
  7290. "description": "Assertions to validate method input/output with nice error messages.",
  7291. "keywords": [
  7292. "assert",
  7293. "check",
  7294. "validate"
  7295. ],
  7296. "support": {
  7297. "issues": "https://github.com/webmozarts/assert/issues",
  7298. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  7299. },
  7300. "time": "2022-06-03T18:03:27+00:00"
  7301. }
  7302. ],
  7303. "packages-dev": [
  7304. {
  7305. "name": "doctrine/cache",
  7306. "version": "2.2.0",
  7307. "source": {
  7308. "type": "git",
  7309. "url": "https://github.com/doctrine/cache.git",
  7310. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb"
  7311. },
  7312. "dist": {
  7313. "type": "zip",
  7314. "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb",
  7315. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb",
  7316. "shasum": ""
  7317. },
  7318. "require": {
  7319. "php": "~7.1 || ^8.0"
  7320. },
  7321. "conflict": {
  7322. "doctrine/common": ">2.2,<2.4"
  7323. },
  7324. "require-dev": {
  7325. "cache/integration-tests": "dev-master",
  7326. "doctrine/coding-standard": "^9",
  7327. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  7328. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  7329. "symfony/cache": "^4.4 || ^5.4 || ^6",
  7330. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  7331. },
  7332. "type": "library",
  7333. "autoload": {
  7334. "psr-4": {
  7335. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  7336. }
  7337. },
  7338. "notification-url": "https://packagist.org/downloads/",
  7339. "license": [
  7340. "MIT"
  7341. ],
  7342. "authors": [
  7343. {
  7344. "name": "Guilherme Blanco",
  7345. "email": "guilhermeblanco@gmail.com"
  7346. },
  7347. {
  7348. "name": "Roman Borschel",
  7349. "email": "roman@code-factory.org"
  7350. },
  7351. {
  7352. "name": "Benjamin Eberlei",
  7353. "email": "kontakt@beberlei.de"
  7354. },
  7355. {
  7356. "name": "Jonathan Wage",
  7357. "email": "jonwage@gmail.com"
  7358. },
  7359. {
  7360. "name": "Johannes Schmitt",
  7361. "email": "schmittjoh@gmail.com"
  7362. }
  7363. ],
  7364. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  7365. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  7366. "keywords": [
  7367. "abstraction",
  7368. "apcu",
  7369. "cache",
  7370. "caching",
  7371. "couchdb",
  7372. "memcached",
  7373. "php",
  7374. "redis",
  7375. "xcache"
  7376. ],
  7377. "support": {
  7378. "issues": "https://github.com/doctrine/cache/issues",
  7379. "source": "https://github.com/doctrine/cache/tree/2.2.0"
  7380. },
  7381. "funding": [
  7382. {
  7383. "url": "https://www.doctrine-project.org/sponsorship.html",
  7384. "type": "custom"
  7385. },
  7386. {
  7387. "url": "https://www.patreon.com/phpdoctrine",
  7388. "type": "patreon"
  7389. },
  7390. {
  7391. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  7392. "type": "tidelift"
  7393. }
  7394. ],
  7395. "time": "2022-05-20T20:07:39+00:00"
  7396. },
  7397. {
  7398. "name": "doctrine/dbal",
  7399. "version": "3.6.2",
  7400. "source": {
  7401. "type": "git",
  7402. "url": "https://github.com/doctrine/dbal.git",
  7403. "reference": "b4bd1cfbd2b916951696d82e57d054394d84864c"
  7404. },
  7405. "dist": {
  7406. "type": "zip",
  7407. "url": "https://api.github.com/repos/doctrine/dbal/zipball/b4bd1cfbd2b916951696d82e57d054394d84864c",
  7408. "reference": "b4bd1cfbd2b916951696d82e57d054394d84864c",
  7409. "shasum": ""
  7410. },
  7411. "require": {
  7412. "composer-runtime-api": "^2",
  7413. "doctrine/cache": "^1.11|^2.0",
  7414. "doctrine/deprecations": "^0.5.3|^1",
  7415. "doctrine/event-manager": "^1|^2",
  7416. "php": "^7.4 || ^8.0",
  7417. "psr/cache": "^1|^2|^3",
  7418. "psr/log": "^1|^2|^3"
  7419. },
  7420. "require-dev": {
  7421. "doctrine/coding-standard": "11.1.0",
  7422. "fig/log-test": "^1",
  7423. "jetbrains/phpstorm-stubs": "2022.3",
  7424. "phpstan/phpstan": "1.10.9",
  7425. "phpstan/phpstan-strict-rules": "^1.5",
  7426. "phpunit/phpunit": "9.6.6",
  7427. "psalm/plugin-phpunit": "0.18.4",
  7428. "squizlabs/php_codesniffer": "3.7.2",
  7429. "symfony/cache": "^5.4|^6.0",
  7430. "symfony/console": "^4.4|^5.4|^6.0",
  7431. "vimeo/psalm": "4.30.0"
  7432. },
  7433. "suggest": {
  7434. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  7435. },
  7436. "bin": [
  7437. "bin/doctrine-dbal"
  7438. ],
  7439. "type": "library",
  7440. "autoload": {
  7441. "psr-4": {
  7442. "Doctrine\\DBAL\\": "src"
  7443. }
  7444. },
  7445. "notification-url": "https://packagist.org/downloads/",
  7446. "license": [
  7447. "MIT"
  7448. ],
  7449. "authors": [
  7450. {
  7451. "name": "Guilherme Blanco",
  7452. "email": "guilhermeblanco@gmail.com"
  7453. },
  7454. {
  7455. "name": "Roman Borschel",
  7456. "email": "roman@code-factory.org"
  7457. },
  7458. {
  7459. "name": "Benjamin Eberlei",
  7460. "email": "kontakt@beberlei.de"
  7461. },
  7462. {
  7463. "name": "Jonathan Wage",
  7464. "email": "jonwage@gmail.com"
  7465. }
  7466. ],
  7467. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  7468. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  7469. "keywords": [
  7470. "abstraction",
  7471. "database",
  7472. "db2",
  7473. "dbal",
  7474. "mariadb",
  7475. "mssql",
  7476. "mysql",
  7477. "oci8",
  7478. "oracle",
  7479. "pdo",
  7480. "pgsql",
  7481. "postgresql",
  7482. "queryobject",
  7483. "sasql",
  7484. "sql",
  7485. "sqlite",
  7486. "sqlserver",
  7487. "sqlsrv"
  7488. ],
  7489. "support": {
  7490. "issues": "https://github.com/doctrine/dbal/issues",
  7491. "source": "https://github.com/doctrine/dbal/tree/3.6.2"
  7492. },
  7493. "funding": [
  7494. {
  7495. "url": "https://www.doctrine-project.org/sponsorship.html",
  7496. "type": "custom"
  7497. },
  7498. {
  7499. "url": "https://www.patreon.com/phpdoctrine",
  7500. "type": "patreon"
  7501. },
  7502. {
  7503. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  7504. "type": "tidelift"
  7505. }
  7506. ],
  7507. "time": "2023-04-14T07:25:38+00:00"
  7508. },
  7509. {
  7510. "name": "doctrine/deprecations",
  7511. "version": "v1.0.0",
  7512. "source": {
  7513. "type": "git",
  7514. "url": "https://github.com/doctrine/deprecations.git",
  7515. "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de"
  7516. },
  7517. "dist": {
  7518. "type": "zip",
  7519. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de",
  7520. "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de",
  7521. "shasum": ""
  7522. },
  7523. "require": {
  7524. "php": "^7.1|^8.0"
  7525. },
  7526. "require-dev": {
  7527. "doctrine/coding-standard": "^9",
  7528. "phpunit/phpunit": "^7.5|^8.5|^9.5",
  7529. "psr/log": "^1|^2|^3"
  7530. },
  7531. "suggest": {
  7532. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  7533. },
  7534. "type": "library",
  7535. "autoload": {
  7536. "psr-4": {
  7537. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  7538. }
  7539. },
  7540. "notification-url": "https://packagist.org/downloads/",
  7541. "license": [
  7542. "MIT"
  7543. ],
  7544. "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.",
  7545. "homepage": "https://www.doctrine-project.org/",
  7546. "support": {
  7547. "issues": "https://github.com/doctrine/deprecations/issues",
  7548. "source": "https://github.com/doctrine/deprecations/tree/v1.0.0"
  7549. },
  7550. "time": "2022-05-02T15:47:09+00:00"
  7551. },
  7552. {
  7553. "name": "doctrine/event-manager",
  7554. "version": "2.0.0",
  7555. "source": {
  7556. "type": "git",
  7557. "url": "https://github.com/doctrine/event-manager.git",
  7558. "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32"
  7559. },
  7560. "dist": {
  7561. "type": "zip",
  7562. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/750671534e0241a7c50ea5b43f67e23eb5c96f32",
  7563. "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32",
  7564. "shasum": ""
  7565. },
  7566. "require": {
  7567. "php": "^8.1"
  7568. },
  7569. "conflict": {
  7570. "doctrine/common": "<2.9"
  7571. },
  7572. "require-dev": {
  7573. "doctrine/coding-standard": "^10",
  7574. "phpstan/phpstan": "^1.8.8",
  7575. "phpunit/phpunit": "^9.5",
  7576. "vimeo/psalm": "^4.28"
  7577. },
  7578. "type": "library",
  7579. "autoload": {
  7580. "psr-4": {
  7581. "Doctrine\\Common\\": "src"
  7582. }
  7583. },
  7584. "notification-url": "https://packagist.org/downloads/",
  7585. "license": [
  7586. "MIT"
  7587. ],
  7588. "authors": [
  7589. {
  7590. "name": "Guilherme Blanco",
  7591. "email": "guilhermeblanco@gmail.com"
  7592. },
  7593. {
  7594. "name": "Roman Borschel",
  7595. "email": "roman@code-factory.org"
  7596. },
  7597. {
  7598. "name": "Benjamin Eberlei",
  7599. "email": "kontakt@beberlei.de"
  7600. },
  7601. {
  7602. "name": "Jonathan Wage",
  7603. "email": "jonwage@gmail.com"
  7604. },
  7605. {
  7606. "name": "Johannes Schmitt",
  7607. "email": "schmittjoh@gmail.com"
  7608. },
  7609. {
  7610. "name": "Marco Pivetta",
  7611. "email": "ocramius@gmail.com"
  7612. }
  7613. ],
  7614. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  7615. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  7616. "keywords": [
  7617. "event",
  7618. "event dispatcher",
  7619. "event manager",
  7620. "event system",
  7621. "events"
  7622. ],
  7623. "support": {
  7624. "issues": "https://github.com/doctrine/event-manager/issues",
  7625. "source": "https://github.com/doctrine/event-manager/tree/2.0.0"
  7626. },
  7627. "funding": [
  7628. {
  7629. "url": "https://www.doctrine-project.org/sponsorship.html",
  7630. "type": "custom"
  7631. },
  7632. {
  7633. "url": "https://www.patreon.com/phpdoctrine",
  7634. "type": "patreon"
  7635. },
  7636. {
  7637. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  7638. "type": "tidelift"
  7639. }
  7640. ],
  7641. "time": "2022-10-12T20:59:15+00:00"
  7642. },
  7643. {
  7644. "name": "fakerphp/faker",
  7645. "version": "v1.21.0",
  7646. "source": {
  7647. "type": "git",
  7648. "url": "https://github.com/FakerPHP/Faker.git",
  7649. "reference": "92efad6a967f0b79c499705c69b662f738cc9e4d"
  7650. },
  7651. "dist": {
  7652. "type": "zip",
  7653. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/92efad6a967f0b79c499705c69b662f738cc9e4d",
  7654. "reference": "92efad6a967f0b79c499705c69b662f738cc9e4d",
  7655. "shasum": ""
  7656. },
  7657. "require": {
  7658. "php": "^7.4 || ^8.0",
  7659. "psr/container": "^1.0 || ^2.0",
  7660. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  7661. },
  7662. "conflict": {
  7663. "fzaninotto/faker": "*"
  7664. },
  7665. "require-dev": {
  7666. "bamarni/composer-bin-plugin": "^1.4.1",
  7667. "doctrine/persistence": "^1.3 || ^2.0",
  7668. "ext-intl": "*",
  7669. "phpunit/phpunit": "^9.5.26",
  7670. "symfony/phpunit-bridge": "^5.4.16"
  7671. },
  7672. "suggest": {
  7673. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  7674. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  7675. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  7676. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  7677. "ext-mbstring": "Required for multibyte Unicode string functionality."
  7678. },
  7679. "type": "library",
  7680. "extra": {
  7681. "branch-alias": {
  7682. "dev-main": "v1.21-dev"
  7683. }
  7684. },
  7685. "autoload": {
  7686. "psr-4": {
  7687. "Faker\\": "src/Faker/"
  7688. }
  7689. },
  7690. "notification-url": "https://packagist.org/downloads/",
  7691. "license": [
  7692. "MIT"
  7693. ],
  7694. "authors": [
  7695. {
  7696. "name": "François Zaninotto"
  7697. }
  7698. ],
  7699. "description": "Faker is a PHP library that generates fake data for you.",
  7700. "keywords": [
  7701. "data",
  7702. "faker",
  7703. "fixtures"
  7704. ],
  7705. "support": {
  7706. "issues": "https://github.com/FakerPHP/Faker/issues",
  7707. "source": "https://github.com/FakerPHP/Faker/tree/v1.21.0"
  7708. },
  7709. "time": "2022-12-13T13:54:32+00:00"
  7710. },
  7711. {
  7712. "name": "filp/whoops",
  7713. "version": "2.15.2",
  7714. "source": {
  7715. "type": "git",
  7716. "url": "https://github.com/filp/whoops.git",
  7717. "reference": "aac9304c5ed61bf7b1b7a6064bf9806ab842ce73"
  7718. },
  7719. "dist": {
  7720. "type": "zip",
  7721. "url": "https://api.github.com/repos/filp/whoops/zipball/aac9304c5ed61bf7b1b7a6064bf9806ab842ce73",
  7722. "reference": "aac9304c5ed61bf7b1b7a6064bf9806ab842ce73",
  7723. "shasum": ""
  7724. },
  7725. "require": {
  7726. "php": "^5.5.9 || ^7.0 || ^8.0",
  7727. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  7728. },
  7729. "require-dev": {
  7730. "mockery/mockery": "^0.9 || ^1.0",
  7731. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  7732. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  7733. },
  7734. "suggest": {
  7735. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  7736. "whoops/soap": "Formats errors as SOAP responses"
  7737. },
  7738. "type": "library",
  7739. "extra": {
  7740. "branch-alias": {
  7741. "dev-master": "2.7-dev"
  7742. }
  7743. },
  7744. "autoload": {
  7745. "psr-4": {
  7746. "Whoops\\": "src/Whoops/"
  7747. }
  7748. },
  7749. "notification-url": "https://packagist.org/downloads/",
  7750. "license": [
  7751. "MIT"
  7752. ],
  7753. "authors": [
  7754. {
  7755. "name": "Filipe Dobreira",
  7756. "homepage": "https://github.com/filp",
  7757. "role": "Developer"
  7758. }
  7759. ],
  7760. "description": "php error handling for cool kids",
  7761. "homepage": "https://filp.github.io/whoops/",
  7762. "keywords": [
  7763. "error",
  7764. "exception",
  7765. "handling",
  7766. "library",
  7767. "throwable",
  7768. "whoops"
  7769. ],
  7770. "support": {
  7771. "issues": "https://github.com/filp/whoops/issues",
  7772. "source": "https://github.com/filp/whoops/tree/2.15.2"
  7773. },
  7774. "funding": [
  7775. {
  7776. "url": "https://github.com/denis-sokolov",
  7777. "type": "github"
  7778. }
  7779. ],
  7780. "time": "2023-04-12T12:00:00+00:00"
  7781. },
  7782. {
  7783. "name": "hamcrest/hamcrest-php",
  7784. "version": "v2.0.1",
  7785. "source": {
  7786. "type": "git",
  7787. "url": "https://github.com/hamcrest/hamcrest-php.git",
  7788. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  7789. },
  7790. "dist": {
  7791. "type": "zip",
  7792. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7793. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7794. "shasum": ""
  7795. },
  7796. "require": {
  7797. "php": "^5.3|^7.0|^8.0"
  7798. },
  7799. "replace": {
  7800. "cordoval/hamcrest-php": "*",
  7801. "davedevelopment/hamcrest-php": "*",
  7802. "kodova/hamcrest-php": "*"
  7803. },
  7804. "require-dev": {
  7805. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  7806. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  7807. },
  7808. "type": "library",
  7809. "extra": {
  7810. "branch-alias": {
  7811. "dev-master": "2.1-dev"
  7812. }
  7813. },
  7814. "autoload": {
  7815. "classmap": [
  7816. "hamcrest"
  7817. ]
  7818. },
  7819. "notification-url": "https://packagist.org/downloads/",
  7820. "license": [
  7821. "BSD-3-Clause"
  7822. ],
  7823. "description": "This is the PHP port of Hamcrest Matchers",
  7824. "keywords": [
  7825. "test"
  7826. ],
  7827. "support": {
  7828. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  7829. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  7830. },
  7831. "time": "2020-07-09T08:09:16+00:00"
  7832. },
  7833. {
  7834. "name": "laravel/pint",
  7835. "version": "v1.10.0",
  7836. "source": {
  7837. "type": "git",
  7838. "url": "https://github.com/laravel/pint.git",
  7839. "reference": "c7a01fa9bdd79819e7a2f1ba63ac1b02e6692dbc"
  7840. },
  7841. "dist": {
  7842. "type": "zip",
  7843. "url": "https://api.github.com/repos/laravel/pint/zipball/c7a01fa9bdd79819e7a2f1ba63ac1b02e6692dbc",
  7844. "reference": "c7a01fa9bdd79819e7a2f1ba63ac1b02e6692dbc",
  7845. "shasum": ""
  7846. },
  7847. "require": {
  7848. "ext-json": "*",
  7849. "ext-mbstring": "*",
  7850. "ext-tokenizer": "*",
  7851. "ext-xml": "*",
  7852. "php": "^8.1.0"
  7853. },
  7854. "require-dev": {
  7855. "friendsofphp/php-cs-fixer": "^3.16.0",
  7856. "illuminate/view": "^10.5.1",
  7857. "laravel-zero/framework": "^10.0.2",
  7858. "mockery/mockery": "^1.5.1",
  7859. "nunomaduro/larastan": "^2.5.1",
  7860. "nunomaduro/termwind": "^1.15.1",
  7861. "pestphp/pest": "^2.4.0"
  7862. },
  7863. "bin": [
  7864. "builds/pint"
  7865. ],
  7866. "type": "project",
  7867. "autoload": {
  7868. "psr-4": {
  7869. "App\\": "app/",
  7870. "Database\\Seeders\\": "database/seeders/",
  7871. "Database\\Factories\\": "database/factories/"
  7872. }
  7873. },
  7874. "notification-url": "https://packagist.org/downloads/",
  7875. "license": [
  7876. "MIT"
  7877. ],
  7878. "authors": [
  7879. {
  7880. "name": "Nuno Maduro",
  7881. "email": "enunomaduro@gmail.com"
  7882. }
  7883. ],
  7884. "description": "An opinionated code formatter for PHP.",
  7885. "homepage": "https://laravel.com",
  7886. "keywords": [
  7887. "format",
  7888. "formatter",
  7889. "lint",
  7890. "linter",
  7891. "php"
  7892. ],
  7893. "support": {
  7894. "issues": "https://github.com/laravel/pint/issues",
  7895. "source": "https://github.com/laravel/pint"
  7896. },
  7897. "time": "2023-04-25T14:52:30+00:00"
  7898. },
  7899. {
  7900. "name": "laravel/sail",
  7901. "version": "v1.21.5",
  7902. "source": {
  7903. "type": "git",
  7904. "url": "https://github.com/laravel/sail.git",
  7905. "reference": "27af207bb1c53faddcba34c7528b3e969f6a646d"
  7906. },
  7907. "dist": {
  7908. "type": "zip",
  7909. "url": "https://api.github.com/repos/laravel/sail/zipball/27af207bb1c53faddcba34c7528b3e969f6a646d",
  7910. "reference": "27af207bb1c53faddcba34c7528b3e969f6a646d",
  7911. "shasum": ""
  7912. },
  7913. "require": {
  7914. "illuminate/console": "^8.0|^9.0|^10.0",
  7915. "illuminate/contracts": "^8.0|^9.0|^10.0",
  7916. "illuminate/support": "^8.0|^9.0|^10.0",
  7917. "php": "^7.3|^8.0",
  7918. "symfony/yaml": "^6.0"
  7919. },
  7920. "require-dev": {
  7921. "orchestra/testbench": "^6.0|^7.0|^8.0",
  7922. "phpstan/phpstan": "^1.10"
  7923. },
  7924. "bin": [
  7925. "bin/sail"
  7926. ],
  7927. "type": "library",
  7928. "extra": {
  7929. "branch-alias": {
  7930. "dev-master": "1.x-dev"
  7931. },
  7932. "laravel": {
  7933. "providers": [
  7934. "Laravel\\Sail\\SailServiceProvider"
  7935. ]
  7936. }
  7937. },
  7938. "autoload": {
  7939. "psr-4": {
  7940. "Laravel\\Sail\\": "src/"
  7941. }
  7942. },
  7943. "notification-url": "https://packagist.org/downloads/",
  7944. "license": [
  7945. "MIT"
  7946. ],
  7947. "authors": [
  7948. {
  7949. "name": "Taylor Otwell",
  7950. "email": "taylor@laravel.com"
  7951. }
  7952. ],
  7953. "description": "Docker files for running a basic Laravel application.",
  7954. "keywords": [
  7955. "docker",
  7956. "laravel"
  7957. ],
  7958. "support": {
  7959. "issues": "https://github.com/laravel/sail/issues",
  7960. "source": "https://github.com/laravel/sail"
  7961. },
  7962. "time": "2023-04-24T13:29:38+00:00"
  7963. },
  7964. {
  7965. "name": "mockery/mockery",
  7966. "version": "1.5.1",
  7967. "source": {
  7968. "type": "git",
  7969. "url": "https://github.com/mockery/mockery.git",
  7970. "reference": "e92dcc83d5a51851baf5f5591d32cb2b16e3684e"
  7971. },
  7972. "dist": {
  7973. "type": "zip",
  7974. "url": "https://api.github.com/repos/mockery/mockery/zipball/e92dcc83d5a51851baf5f5591d32cb2b16e3684e",
  7975. "reference": "e92dcc83d5a51851baf5f5591d32cb2b16e3684e",
  7976. "shasum": ""
  7977. },
  7978. "require": {
  7979. "hamcrest/hamcrest-php": "^2.0.1",
  7980. "lib-pcre": ">=7.0",
  7981. "php": "^7.3 || ^8.0"
  7982. },
  7983. "conflict": {
  7984. "phpunit/phpunit": "<8.0"
  7985. },
  7986. "require-dev": {
  7987. "phpunit/phpunit": "^8.5 || ^9.3"
  7988. },
  7989. "type": "library",
  7990. "extra": {
  7991. "branch-alias": {
  7992. "dev-master": "1.4.x-dev"
  7993. }
  7994. },
  7995. "autoload": {
  7996. "psr-0": {
  7997. "Mockery": "library/"
  7998. }
  7999. },
  8000. "notification-url": "https://packagist.org/downloads/",
  8001. "license": [
  8002. "BSD-3-Clause"
  8003. ],
  8004. "authors": [
  8005. {
  8006. "name": "Pádraic Brady",
  8007. "email": "padraic.brady@gmail.com",
  8008. "homepage": "http://blog.astrumfutura.com"
  8009. },
  8010. {
  8011. "name": "Dave Marshall",
  8012. "email": "dave.marshall@atstsolutions.co.uk",
  8013. "homepage": "http://davedevelopment.co.uk"
  8014. }
  8015. ],
  8016. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8017. "homepage": "https://github.com/mockery/mockery",
  8018. "keywords": [
  8019. "BDD",
  8020. "TDD",
  8021. "library",
  8022. "mock",
  8023. "mock objects",
  8024. "mockery",
  8025. "stub",
  8026. "test",
  8027. "test double",
  8028. "testing"
  8029. ],
  8030. "support": {
  8031. "issues": "https://github.com/mockery/mockery/issues",
  8032. "source": "https://github.com/mockery/mockery/tree/1.5.1"
  8033. },
  8034. "time": "2022-09-07T15:32:08+00:00"
  8035. },
  8036. {
  8037. "name": "myclabs/deep-copy",
  8038. "version": "1.11.1",
  8039. "source": {
  8040. "type": "git",
  8041. "url": "https://github.com/myclabs/DeepCopy.git",
  8042. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  8043. },
  8044. "dist": {
  8045. "type": "zip",
  8046. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  8047. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  8048. "shasum": ""
  8049. },
  8050. "require": {
  8051. "php": "^7.1 || ^8.0"
  8052. },
  8053. "conflict": {
  8054. "doctrine/collections": "<1.6.8",
  8055. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  8056. },
  8057. "require-dev": {
  8058. "doctrine/collections": "^1.6.8",
  8059. "doctrine/common": "^2.13.3 || ^3.2.2",
  8060. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8061. },
  8062. "type": "library",
  8063. "autoload": {
  8064. "files": [
  8065. "src/DeepCopy/deep_copy.php"
  8066. ],
  8067. "psr-4": {
  8068. "DeepCopy\\": "src/DeepCopy/"
  8069. }
  8070. },
  8071. "notification-url": "https://packagist.org/downloads/",
  8072. "license": [
  8073. "MIT"
  8074. ],
  8075. "description": "Create deep copies (clones) of your objects",
  8076. "keywords": [
  8077. "clone",
  8078. "copy",
  8079. "duplicate",
  8080. "object",
  8081. "object graph"
  8082. ],
  8083. "support": {
  8084. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8085. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  8086. },
  8087. "funding": [
  8088. {
  8089. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8090. "type": "tidelift"
  8091. }
  8092. ],
  8093. "time": "2023-03-08T13:26:56+00:00"
  8094. },
  8095. {
  8096. "name": "nunomaduro/collision",
  8097. "version": "v7.5.2",
  8098. "source": {
  8099. "type": "git",
  8100. "url": "https://github.com/nunomaduro/collision.git",
  8101. "reference": "76b3cabda0aabda455fc3b9db6c3615f5a87c7ff"
  8102. },
  8103. "dist": {
  8104. "type": "zip",
  8105. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/76b3cabda0aabda455fc3b9db6c3615f5a87c7ff",
  8106. "reference": "76b3cabda0aabda455fc3b9db6c3615f5a87c7ff",
  8107. "shasum": ""
  8108. },
  8109. "require": {
  8110. "filp/whoops": "^2.15.2",
  8111. "nunomaduro/termwind": "^1.15.1",
  8112. "php": "^8.1.0",
  8113. "symfony/console": "^6.2.8"
  8114. },
  8115. "conflict": {
  8116. "phpunit/phpunit": "<10.1.2"
  8117. },
  8118. "require-dev": {
  8119. "brianium/paratest": "^7.1.3",
  8120. "laravel/framework": "^10.8.0",
  8121. "laravel/pint": "^1.9.0",
  8122. "laravel/sail": "^1.21.4",
  8123. "laravel/sanctum": "^3.2.1",
  8124. "laravel/tinker": "^2.8.1",
  8125. "nunomaduro/larastan": "^2.6.0",
  8126. "orchestra/testbench-core": "^8.5.0",
  8127. "pestphp/pest": "^2.5.2",
  8128. "phpunit/phpunit": "^10.1.1",
  8129. "sebastian/environment": "^6.0.1",
  8130. "spatie/laravel-ignition": "^2.1.0"
  8131. },
  8132. "type": "library",
  8133. "extra": {
  8134. "laravel": {
  8135. "providers": [
  8136. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  8137. ]
  8138. }
  8139. },
  8140. "autoload": {
  8141. "files": [
  8142. "./src/Adapters/Phpunit/Autoload.php"
  8143. ],
  8144. "psr-4": {
  8145. "NunoMaduro\\Collision\\": "src/"
  8146. }
  8147. },
  8148. "notification-url": "https://packagist.org/downloads/",
  8149. "license": [
  8150. "MIT"
  8151. ],
  8152. "authors": [
  8153. {
  8154. "name": "Nuno Maduro",
  8155. "email": "enunomaduro@gmail.com"
  8156. }
  8157. ],
  8158. "description": "Cli error handling for console/command-line PHP applications.",
  8159. "keywords": [
  8160. "artisan",
  8161. "cli",
  8162. "command-line",
  8163. "console",
  8164. "error",
  8165. "handling",
  8166. "laravel",
  8167. "laravel-zero",
  8168. "php",
  8169. "symfony"
  8170. ],
  8171. "support": {
  8172. "issues": "https://github.com/nunomaduro/collision/issues",
  8173. "source": "https://github.com/nunomaduro/collision"
  8174. },
  8175. "funding": [
  8176. {
  8177. "url": "https://www.paypal.com/paypalme/enunomaduro",
  8178. "type": "custom"
  8179. },
  8180. {
  8181. "url": "https://github.com/nunomaduro",
  8182. "type": "github"
  8183. },
  8184. {
  8185. "url": "https://www.patreon.com/nunomaduro",
  8186. "type": "patreon"
  8187. }
  8188. ],
  8189. "time": "2023-04-22T22:12:40+00:00"
  8190. },
  8191. {
  8192. "name": "phar-io/manifest",
  8193. "version": "2.0.3",
  8194. "source": {
  8195. "type": "git",
  8196. "url": "https://github.com/phar-io/manifest.git",
  8197. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  8198. },
  8199. "dist": {
  8200. "type": "zip",
  8201. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  8202. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  8203. "shasum": ""
  8204. },
  8205. "require": {
  8206. "ext-dom": "*",
  8207. "ext-phar": "*",
  8208. "ext-xmlwriter": "*",
  8209. "phar-io/version": "^3.0.1",
  8210. "php": "^7.2 || ^8.0"
  8211. },
  8212. "type": "library",
  8213. "extra": {
  8214. "branch-alias": {
  8215. "dev-master": "2.0.x-dev"
  8216. }
  8217. },
  8218. "autoload": {
  8219. "classmap": [
  8220. "src/"
  8221. ]
  8222. },
  8223. "notification-url": "https://packagist.org/downloads/",
  8224. "license": [
  8225. "BSD-3-Clause"
  8226. ],
  8227. "authors": [
  8228. {
  8229. "name": "Arne Blankerts",
  8230. "email": "arne@blankerts.de",
  8231. "role": "Developer"
  8232. },
  8233. {
  8234. "name": "Sebastian Heuer",
  8235. "email": "sebastian@phpeople.de",
  8236. "role": "Developer"
  8237. },
  8238. {
  8239. "name": "Sebastian Bergmann",
  8240. "email": "sebastian@phpunit.de",
  8241. "role": "Developer"
  8242. }
  8243. ],
  8244. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8245. "support": {
  8246. "issues": "https://github.com/phar-io/manifest/issues",
  8247. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  8248. },
  8249. "time": "2021-07-20T11:28:43+00:00"
  8250. },
  8251. {
  8252. "name": "phar-io/version",
  8253. "version": "3.2.1",
  8254. "source": {
  8255. "type": "git",
  8256. "url": "https://github.com/phar-io/version.git",
  8257. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8258. },
  8259. "dist": {
  8260. "type": "zip",
  8261. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8262. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8263. "shasum": ""
  8264. },
  8265. "require": {
  8266. "php": "^7.2 || ^8.0"
  8267. },
  8268. "type": "library",
  8269. "autoload": {
  8270. "classmap": [
  8271. "src/"
  8272. ]
  8273. },
  8274. "notification-url": "https://packagist.org/downloads/",
  8275. "license": [
  8276. "BSD-3-Clause"
  8277. ],
  8278. "authors": [
  8279. {
  8280. "name": "Arne Blankerts",
  8281. "email": "arne@blankerts.de",
  8282. "role": "Developer"
  8283. },
  8284. {
  8285. "name": "Sebastian Heuer",
  8286. "email": "sebastian@phpeople.de",
  8287. "role": "Developer"
  8288. },
  8289. {
  8290. "name": "Sebastian Bergmann",
  8291. "email": "sebastian@phpunit.de",
  8292. "role": "Developer"
  8293. }
  8294. ],
  8295. "description": "Library for handling version information and constraints",
  8296. "support": {
  8297. "issues": "https://github.com/phar-io/version/issues",
  8298. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8299. },
  8300. "time": "2022-02-21T01:04:05+00:00"
  8301. },
  8302. {
  8303. "name": "phpunit/php-code-coverage",
  8304. "version": "10.1.1",
  8305. "source": {
  8306. "type": "git",
  8307. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8308. "reference": "884a0da7f9f46f28b2cb69134217fd810b793974"
  8309. },
  8310. "dist": {
  8311. "type": "zip",
  8312. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/884a0da7f9f46f28b2cb69134217fd810b793974",
  8313. "reference": "884a0da7f9f46f28b2cb69134217fd810b793974",
  8314. "shasum": ""
  8315. },
  8316. "require": {
  8317. "ext-dom": "*",
  8318. "ext-libxml": "*",
  8319. "ext-xmlwriter": "*",
  8320. "nikic/php-parser": "^4.15",
  8321. "php": ">=8.1",
  8322. "phpunit/php-file-iterator": "^4.0",
  8323. "phpunit/php-text-template": "^3.0",
  8324. "sebastian/code-unit-reverse-lookup": "^3.0",
  8325. "sebastian/complexity": "^3.0",
  8326. "sebastian/environment": "^6.0",
  8327. "sebastian/lines-of-code": "^2.0",
  8328. "sebastian/version": "^4.0",
  8329. "theseer/tokenizer": "^1.2.0"
  8330. },
  8331. "require-dev": {
  8332. "phpunit/phpunit": "^10.1"
  8333. },
  8334. "suggest": {
  8335. "ext-pcov": "PHP extension that provides line coverage",
  8336. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8337. },
  8338. "type": "library",
  8339. "extra": {
  8340. "branch-alias": {
  8341. "dev-main": "10.1-dev"
  8342. }
  8343. },
  8344. "autoload": {
  8345. "classmap": [
  8346. "src/"
  8347. ]
  8348. },
  8349. "notification-url": "https://packagist.org/downloads/",
  8350. "license": [
  8351. "BSD-3-Clause"
  8352. ],
  8353. "authors": [
  8354. {
  8355. "name": "Sebastian Bergmann",
  8356. "email": "sebastian@phpunit.de",
  8357. "role": "lead"
  8358. }
  8359. ],
  8360. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8361. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8362. "keywords": [
  8363. "coverage",
  8364. "testing",
  8365. "xunit"
  8366. ],
  8367. "support": {
  8368. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8369. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  8370. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.1"
  8371. },
  8372. "funding": [
  8373. {
  8374. "url": "https://github.com/sebastianbergmann",
  8375. "type": "github"
  8376. }
  8377. ],
  8378. "time": "2023-04-17T12:15:40+00:00"
  8379. },
  8380. {
  8381. "name": "phpunit/php-file-iterator",
  8382. "version": "4.0.1",
  8383. "source": {
  8384. "type": "git",
  8385. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8386. "reference": "fd9329ab3368f59fe1fe808a189c51086bd4b6bd"
  8387. },
  8388. "dist": {
  8389. "type": "zip",
  8390. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/fd9329ab3368f59fe1fe808a189c51086bd4b6bd",
  8391. "reference": "fd9329ab3368f59fe1fe808a189c51086bd4b6bd",
  8392. "shasum": ""
  8393. },
  8394. "require": {
  8395. "php": ">=8.1"
  8396. },
  8397. "require-dev": {
  8398. "phpunit/phpunit": "^10.0"
  8399. },
  8400. "type": "library",
  8401. "extra": {
  8402. "branch-alias": {
  8403. "dev-main": "4.0-dev"
  8404. }
  8405. },
  8406. "autoload": {
  8407. "classmap": [
  8408. "src/"
  8409. ]
  8410. },
  8411. "notification-url": "https://packagist.org/downloads/",
  8412. "license": [
  8413. "BSD-3-Clause"
  8414. ],
  8415. "authors": [
  8416. {
  8417. "name": "Sebastian Bergmann",
  8418. "email": "sebastian@phpunit.de",
  8419. "role": "lead"
  8420. }
  8421. ],
  8422. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8423. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8424. "keywords": [
  8425. "filesystem",
  8426. "iterator"
  8427. ],
  8428. "support": {
  8429. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8430. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.0.1"
  8431. },
  8432. "funding": [
  8433. {
  8434. "url": "https://github.com/sebastianbergmann",
  8435. "type": "github"
  8436. }
  8437. ],
  8438. "time": "2023-02-10T16:53:14+00:00"
  8439. },
  8440. {
  8441. "name": "phpunit/php-invoker",
  8442. "version": "4.0.0",
  8443. "source": {
  8444. "type": "git",
  8445. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  8446. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  8447. },
  8448. "dist": {
  8449. "type": "zip",
  8450. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  8451. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  8452. "shasum": ""
  8453. },
  8454. "require": {
  8455. "php": ">=8.1"
  8456. },
  8457. "require-dev": {
  8458. "ext-pcntl": "*",
  8459. "phpunit/phpunit": "^10.0"
  8460. },
  8461. "suggest": {
  8462. "ext-pcntl": "*"
  8463. },
  8464. "type": "library",
  8465. "extra": {
  8466. "branch-alias": {
  8467. "dev-main": "4.0-dev"
  8468. }
  8469. },
  8470. "autoload": {
  8471. "classmap": [
  8472. "src/"
  8473. ]
  8474. },
  8475. "notification-url": "https://packagist.org/downloads/",
  8476. "license": [
  8477. "BSD-3-Clause"
  8478. ],
  8479. "authors": [
  8480. {
  8481. "name": "Sebastian Bergmann",
  8482. "email": "sebastian@phpunit.de",
  8483. "role": "lead"
  8484. }
  8485. ],
  8486. "description": "Invoke callables with a timeout",
  8487. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  8488. "keywords": [
  8489. "process"
  8490. ],
  8491. "support": {
  8492. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  8493. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  8494. },
  8495. "funding": [
  8496. {
  8497. "url": "https://github.com/sebastianbergmann",
  8498. "type": "github"
  8499. }
  8500. ],
  8501. "time": "2023-02-03T06:56:09+00:00"
  8502. },
  8503. {
  8504. "name": "phpunit/php-text-template",
  8505. "version": "3.0.0",
  8506. "source": {
  8507. "type": "git",
  8508. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8509. "reference": "9f3d3709577a527025f55bcf0f7ab8052c8bb37d"
  8510. },
  8511. "dist": {
  8512. "type": "zip",
  8513. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/9f3d3709577a527025f55bcf0f7ab8052c8bb37d",
  8514. "reference": "9f3d3709577a527025f55bcf0f7ab8052c8bb37d",
  8515. "shasum": ""
  8516. },
  8517. "require": {
  8518. "php": ">=8.1"
  8519. },
  8520. "require-dev": {
  8521. "phpunit/phpunit": "^10.0"
  8522. },
  8523. "type": "library",
  8524. "extra": {
  8525. "branch-alias": {
  8526. "dev-main": "3.0-dev"
  8527. }
  8528. },
  8529. "autoload": {
  8530. "classmap": [
  8531. "src/"
  8532. ]
  8533. },
  8534. "notification-url": "https://packagist.org/downloads/",
  8535. "license": [
  8536. "BSD-3-Clause"
  8537. ],
  8538. "authors": [
  8539. {
  8540. "name": "Sebastian Bergmann",
  8541. "email": "sebastian@phpunit.de",
  8542. "role": "lead"
  8543. }
  8544. ],
  8545. "description": "Simple template engine.",
  8546. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8547. "keywords": [
  8548. "template"
  8549. ],
  8550. "support": {
  8551. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8552. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.0"
  8553. },
  8554. "funding": [
  8555. {
  8556. "url": "https://github.com/sebastianbergmann",
  8557. "type": "github"
  8558. }
  8559. ],
  8560. "time": "2023-02-03T06:56:46+00:00"
  8561. },
  8562. {
  8563. "name": "phpunit/php-timer",
  8564. "version": "6.0.0",
  8565. "source": {
  8566. "type": "git",
  8567. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8568. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  8569. },
  8570. "dist": {
  8571. "type": "zip",
  8572. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  8573. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  8574. "shasum": ""
  8575. },
  8576. "require": {
  8577. "php": ">=8.1"
  8578. },
  8579. "require-dev": {
  8580. "phpunit/phpunit": "^10.0"
  8581. },
  8582. "type": "library",
  8583. "extra": {
  8584. "branch-alias": {
  8585. "dev-main": "6.0-dev"
  8586. }
  8587. },
  8588. "autoload": {
  8589. "classmap": [
  8590. "src/"
  8591. ]
  8592. },
  8593. "notification-url": "https://packagist.org/downloads/",
  8594. "license": [
  8595. "BSD-3-Clause"
  8596. ],
  8597. "authors": [
  8598. {
  8599. "name": "Sebastian Bergmann",
  8600. "email": "sebastian@phpunit.de",
  8601. "role": "lead"
  8602. }
  8603. ],
  8604. "description": "Utility class for timing",
  8605. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8606. "keywords": [
  8607. "timer"
  8608. ],
  8609. "support": {
  8610. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  8611. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  8612. },
  8613. "funding": [
  8614. {
  8615. "url": "https://github.com/sebastianbergmann",
  8616. "type": "github"
  8617. }
  8618. ],
  8619. "time": "2023-02-03T06:57:52+00:00"
  8620. },
  8621. {
  8622. "name": "phpunit/phpunit",
  8623. "version": "10.1.2",
  8624. "source": {
  8625. "type": "git",
  8626. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8627. "reference": "6f0cd95be71add539f8fd2be25b2a4a29789000b"
  8628. },
  8629. "dist": {
  8630. "type": "zip",
  8631. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/6f0cd95be71add539f8fd2be25b2a4a29789000b",
  8632. "reference": "6f0cd95be71add539f8fd2be25b2a4a29789000b",
  8633. "shasum": ""
  8634. },
  8635. "require": {
  8636. "ext-dom": "*",
  8637. "ext-json": "*",
  8638. "ext-libxml": "*",
  8639. "ext-mbstring": "*",
  8640. "ext-xml": "*",
  8641. "ext-xmlwriter": "*",
  8642. "myclabs/deep-copy": "^1.10.1",
  8643. "phar-io/manifest": "^2.0.3",
  8644. "phar-io/version": "^3.0.2",
  8645. "php": ">=8.1",
  8646. "phpunit/php-code-coverage": "^10.1.1",
  8647. "phpunit/php-file-iterator": "^4.0",
  8648. "phpunit/php-invoker": "^4.0",
  8649. "phpunit/php-text-template": "^3.0",
  8650. "phpunit/php-timer": "^6.0",
  8651. "sebastian/cli-parser": "^2.0",
  8652. "sebastian/code-unit": "^2.0",
  8653. "sebastian/comparator": "^5.0",
  8654. "sebastian/diff": "^5.0",
  8655. "sebastian/environment": "^6.0",
  8656. "sebastian/exporter": "^5.0",
  8657. "sebastian/global-state": "^6.0",
  8658. "sebastian/object-enumerator": "^5.0",
  8659. "sebastian/recursion-context": "^5.0",
  8660. "sebastian/type": "^4.0",
  8661. "sebastian/version": "^4.0"
  8662. },
  8663. "suggest": {
  8664. "ext-soap": "To be able to generate mocks based on WSDL files"
  8665. },
  8666. "bin": [
  8667. "phpunit"
  8668. ],
  8669. "type": "library",
  8670. "extra": {
  8671. "branch-alias": {
  8672. "dev-main": "10.1-dev"
  8673. }
  8674. },
  8675. "autoload": {
  8676. "files": [
  8677. "src/Framework/Assert/Functions.php"
  8678. ],
  8679. "classmap": [
  8680. "src/"
  8681. ]
  8682. },
  8683. "notification-url": "https://packagist.org/downloads/",
  8684. "license": [
  8685. "BSD-3-Clause"
  8686. ],
  8687. "authors": [
  8688. {
  8689. "name": "Sebastian Bergmann",
  8690. "email": "sebastian@phpunit.de",
  8691. "role": "lead"
  8692. }
  8693. ],
  8694. "description": "The PHP Unit Testing framework.",
  8695. "homepage": "https://phpunit.de/",
  8696. "keywords": [
  8697. "phpunit",
  8698. "testing",
  8699. "xunit"
  8700. ],
  8701. "support": {
  8702. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  8703. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  8704. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.1.2"
  8705. },
  8706. "funding": [
  8707. {
  8708. "url": "https://phpunit.de/sponsors.html",
  8709. "type": "custom"
  8710. },
  8711. {
  8712. "url": "https://github.com/sebastianbergmann",
  8713. "type": "github"
  8714. },
  8715. {
  8716. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  8717. "type": "tidelift"
  8718. }
  8719. ],
  8720. "time": "2023-04-22T07:38:19+00:00"
  8721. },
  8722. {
  8723. "name": "psr/cache",
  8724. "version": "3.0.0",
  8725. "source": {
  8726. "type": "git",
  8727. "url": "https://github.com/php-fig/cache.git",
  8728. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  8729. },
  8730. "dist": {
  8731. "type": "zip",
  8732. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  8733. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  8734. "shasum": ""
  8735. },
  8736. "require": {
  8737. "php": ">=8.0.0"
  8738. },
  8739. "type": "library",
  8740. "extra": {
  8741. "branch-alias": {
  8742. "dev-master": "1.0.x-dev"
  8743. }
  8744. },
  8745. "autoload": {
  8746. "psr-4": {
  8747. "Psr\\Cache\\": "src/"
  8748. }
  8749. },
  8750. "notification-url": "https://packagist.org/downloads/",
  8751. "license": [
  8752. "MIT"
  8753. ],
  8754. "authors": [
  8755. {
  8756. "name": "PHP-FIG",
  8757. "homepage": "https://www.php-fig.org/"
  8758. }
  8759. ],
  8760. "description": "Common interface for caching libraries",
  8761. "keywords": [
  8762. "cache",
  8763. "psr",
  8764. "psr-6"
  8765. ],
  8766. "support": {
  8767. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  8768. },
  8769. "time": "2021-02-03T23:26:27+00:00"
  8770. },
  8771. {
  8772. "name": "sebastian/cli-parser",
  8773. "version": "2.0.0",
  8774. "source": {
  8775. "type": "git",
  8776. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  8777. "reference": "efdc130dbbbb8ef0b545a994fd811725c5282cae"
  8778. },
  8779. "dist": {
  8780. "type": "zip",
  8781. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/efdc130dbbbb8ef0b545a994fd811725c5282cae",
  8782. "reference": "efdc130dbbbb8ef0b545a994fd811725c5282cae",
  8783. "shasum": ""
  8784. },
  8785. "require": {
  8786. "php": ">=8.1"
  8787. },
  8788. "require-dev": {
  8789. "phpunit/phpunit": "^10.0"
  8790. },
  8791. "type": "library",
  8792. "extra": {
  8793. "branch-alias": {
  8794. "dev-main": "2.0-dev"
  8795. }
  8796. },
  8797. "autoload": {
  8798. "classmap": [
  8799. "src/"
  8800. ]
  8801. },
  8802. "notification-url": "https://packagist.org/downloads/",
  8803. "license": [
  8804. "BSD-3-Clause"
  8805. ],
  8806. "authors": [
  8807. {
  8808. "name": "Sebastian Bergmann",
  8809. "email": "sebastian@phpunit.de",
  8810. "role": "lead"
  8811. }
  8812. ],
  8813. "description": "Library for parsing CLI options",
  8814. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  8815. "support": {
  8816. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  8817. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.0"
  8818. },
  8819. "funding": [
  8820. {
  8821. "url": "https://github.com/sebastianbergmann",
  8822. "type": "github"
  8823. }
  8824. ],
  8825. "time": "2023-02-03T06:58:15+00:00"
  8826. },
  8827. {
  8828. "name": "sebastian/code-unit",
  8829. "version": "2.0.0",
  8830. "source": {
  8831. "type": "git",
  8832. "url": "https://github.com/sebastianbergmann/code-unit.git",
  8833. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  8834. },
  8835. "dist": {
  8836. "type": "zip",
  8837. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  8838. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  8839. "shasum": ""
  8840. },
  8841. "require": {
  8842. "php": ">=8.1"
  8843. },
  8844. "require-dev": {
  8845. "phpunit/phpunit": "^10.0"
  8846. },
  8847. "type": "library",
  8848. "extra": {
  8849. "branch-alias": {
  8850. "dev-main": "2.0-dev"
  8851. }
  8852. },
  8853. "autoload": {
  8854. "classmap": [
  8855. "src/"
  8856. ]
  8857. },
  8858. "notification-url": "https://packagist.org/downloads/",
  8859. "license": [
  8860. "BSD-3-Clause"
  8861. ],
  8862. "authors": [
  8863. {
  8864. "name": "Sebastian Bergmann",
  8865. "email": "sebastian@phpunit.de",
  8866. "role": "lead"
  8867. }
  8868. ],
  8869. "description": "Collection of value objects that represent the PHP code units",
  8870. "homepage": "https://github.com/sebastianbergmann/code-unit",
  8871. "support": {
  8872. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  8873. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  8874. },
  8875. "funding": [
  8876. {
  8877. "url": "https://github.com/sebastianbergmann",
  8878. "type": "github"
  8879. }
  8880. ],
  8881. "time": "2023-02-03T06:58:43+00:00"
  8882. },
  8883. {
  8884. "name": "sebastian/code-unit-reverse-lookup",
  8885. "version": "3.0.0",
  8886. "source": {
  8887. "type": "git",
  8888. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  8889. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  8890. },
  8891. "dist": {
  8892. "type": "zip",
  8893. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  8894. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  8895. "shasum": ""
  8896. },
  8897. "require": {
  8898. "php": ">=8.1"
  8899. },
  8900. "require-dev": {
  8901. "phpunit/phpunit": "^10.0"
  8902. },
  8903. "type": "library",
  8904. "extra": {
  8905. "branch-alias": {
  8906. "dev-main": "3.0-dev"
  8907. }
  8908. },
  8909. "autoload": {
  8910. "classmap": [
  8911. "src/"
  8912. ]
  8913. },
  8914. "notification-url": "https://packagist.org/downloads/",
  8915. "license": [
  8916. "BSD-3-Clause"
  8917. ],
  8918. "authors": [
  8919. {
  8920. "name": "Sebastian Bergmann",
  8921. "email": "sebastian@phpunit.de"
  8922. }
  8923. ],
  8924. "description": "Looks up which function or method a line of code belongs to",
  8925. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  8926. "support": {
  8927. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  8928. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  8929. },
  8930. "funding": [
  8931. {
  8932. "url": "https://github.com/sebastianbergmann",
  8933. "type": "github"
  8934. }
  8935. ],
  8936. "time": "2023-02-03T06:59:15+00:00"
  8937. },
  8938. {
  8939. "name": "sebastian/comparator",
  8940. "version": "5.0.0",
  8941. "source": {
  8942. "type": "git",
  8943. "url": "https://github.com/sebastianbergmann/comparator.git",
  8944. "reference": "72f01e6586e0caf6af81297897bd112eb7e9627c"
  8945. },
  8946. "dist": {
  8947. "type": "zip",
  8948. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/72f01e6586e0caf6af81297897bd112eb7e9627c",
  8949. "reference": "72f01e6586e0caf6af81297897bd112eb7e9627c",
  8950. "shasum": ""
  8951. },
  8952. "require": {
  8953. "ext-dom": "*",
  8954. "ext-mbstring": "*",
  8955. "php": ">=8.1",
  8956. "sebastian/diff": "^5.0",
  8957. "sebastian/exporter": "^5.0"
  8958. },
  8959. "require-dev": {
  8960. "phpunit/phpunit": "^10.0"
  8961. },
  8962. "type": "library",
  8963. "extra": {
  8964. "branch-alias": {
  8965. "dev-main": "5.0-dev"
  8966. }
  8967. },
  8968. "autoload": {
  8969. "classmap": [
  8970. "src/"
  8971. ]
  8972. },
  8973. "notification-url": "https://packagist.org/downloads/",
  8974. "license": [
  8975. "BSD-3-Clause"
  8976. ],
  8977. "authors": [
  8978. {
  8979. "name": "Sebastian Bergmann",
  8980. "email": "sebastian@phpunit.de"
  8981. },
  8982. {
  8983. "name": "Jeff Welch",
  8984. "email": "whatthejeff@gmail.com"
  8985. },
  8986. {
  8987. "name": "Volker Dusch",
  8988. "email": "github@wallbash.com"
  8989. },
  8990. {
  8991. "name": "Bernhard Schussek",
  8992. "email": "bschussek@2bepublished.at"
  8993. }
  8994. ],
  8995. "description": "Provides the functionality to compare PHP values for equality",
  8996. "homepage": "https://github.com/sebastianbergmann/comparator",
  8997. "keywords": [
  8998. "comparator",
  8999. "compare",
  9000. "equality"
  9001. ],
  9002. "support": {
  9003. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9004. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.0"
  9005. },
  9006. "funding": [
  9007. {
  9008. "url": "https://github.com/sebastianbergmann",
  9009. "type": "github"
  9010. }
  9011. ],
  9012. "time": "2023-02-03T07:07:16+00:00"
  9013. },
  9014. {
  9015. "name": "sebastian/complexity",
  9016. "version": "3.0.0",
  9017. "source": {
  9018. "type": "git",
  9019. "url": "https://github.com/sebastianbergmann/complexity.git",
  9020. "reference": "e67d240970c9dc7ea7b2123a6d520e334dd61dc6"
  9021. },
  9022. "dist": {
  9023. "type": "zip",
  9024. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/e67d240970c9dc7ea7b2123a6d520e334dd61dc6",
  9025. "reference": "e67d240970c9dc7ea7b2123a6d520e334dd61dc6",
  9026. "shasum": ""
  9027. },
  9028. "require": {
  9029. "nikic/php-parser": "^4.10",
  9030. "php": ">=8.1"
  9031. },
  9032. "require-dev": {
  9033. "phpunit/phpunit": "^10.0"
  9034. },
  9035. "type": "library",
  9036. "extra": {
  9037. "branch-alias": {
  9038. "dev-main": "3.0-dev"
  9039. }
  9040. },
  9041. "autoload": {
  9042. "classmap": [
  9043. "src/"
  9044. ]
  9045. },
  9046. "notification-url": "https://packagist.org/downloads/",
  9047. "license": [
  9048. "BSD-3-Clause"
  9049. ],
  9050. "authors": [
  9051. {
  9052. "name": "Sebastian Bergmann",
  9053. "email": "sebastian@phpunit.de",
  9054. "role": "lead"
  9055. }
  9056. ],
  9057. "description": "Library for calculating the complexity of PHP code units",
  9058. "homepage": "https://github.com/sebastianbergmann/complexity",
  9059. "support": {
  9060. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9061. "source": "https://github.com/sebastianbergmann/complexity/tree/3.0.0"
  9062. },
  9063. "funding": [
  9064. {
  9065. "url": "https://github.com/sebastianbergmann",
  9066. "type": "github"
  9067. }
  9068. ],
  9069. "time": "2023-02-03T06:59:47+00:00"
  9070. },
  9071. {
  9072. "name": "sebastian/diff",
  9073. "version": "5.0.3",
  9074. "source": {
  9075. "type": "git",
  9076. "url": "https://github.com/sebastianbergmann/diff.git",
  9077. "reference": "912dc2fbe3e3c1e7873313cc801b100b6c68c87b"
  9078. },
  9079. "dist": {
  9080. "type": "zip",
  9081. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/912dc2fbe3e3c1e7873313cc801b100b6c68c87b",
  9082. "reference": "912dc2fbe3e3c1e7873313cc801b100b6c68c87b",
  9083. "shasum": ""
  9084. },
  9085. "require": {
  9086. "php": ">=8.1"
  9087. },
  9088. "require-dev": {
  9089. "phpunit/phpunit": "^10.0",
  9090. "symfony/process": "^4.2 || ^5"
  9091. },
  9092. "type": "library",
  9093. "extra": {
  9094. "branch-alias": {
  9095. "dev-main": "5.0-dev"
  9096. }
  9097. },
  9098. "autoload": {
  9099. "classmap": [
  9100. "src/"
  9101. ]
  9102. },
  9103. "notification-url": "https://packagist.org/downloads/",
  9104. "license": [
  9105. "BSD-3-Clause"
  9106. ],
  9107. "authors": [
  9108. {
  9109. "name": "Sebastian Bergmann",
  9110. "email": "sebastian@phpunit.de"
  9111. },
  9112. {
  9113. "name": "Kore Nordmann",
  9114. "email": "mail@kore-nordmann.de"
  9115. }
  9116. ],
  9117. "description": "Diff implementation",
  9118. "homepage": "https://github.com/sebastianbergmann/diff",
  9119. "keywords": [
  9120. "diff",
  9121. "udiff",
  9122. "unidiff",
  9123. "unified diff"
  9124. ],
  9125. "support": {
  9126. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9127. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  9128. "source": "https://github.com/sebastianbergmann/diff/tree/5.0.3"
  9129. },
  9130. "funding": [
  9131. {
  9132. "url": "https://github.com/sebastianbergmann",
  9133. "type": "github"
  9134. }
  9135. ],
  9136. "time": "2023-05-01T07:48:21+00:00"
  9137. },
  9138. {
  9139. "name": "sebastian/environment",
  9140. "version": "6.0.1",
  9141. "source": {
  9142. "type": "git",
  9143. "url": "https://github.com/sebastianbergmann/environment.git",
  9144. "reference": "43c751b41d74f96cbbd4e07b7aec9675651e2951"
  9145. },
  9146. "dist": {
  9147. "type": "zip",
  9148. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/43c751b41d74f96cbbd4e07b7aec9675651e2951",
  9149. "reference": "43c751b41d74f96cbbd4e07b7aec9675651e2951",
  9150. "shasum": ""
  9151. },
  9152. "require": {
  9153. "php": ">=8.1"
  9154. },
  9155. "require-dev": {
  9156. "phpunit/phpunit": "^10.0"
  9157. },
  9158. "suggest": {
  9159. "ext-posix": "*"
  9160. },
  9161. "type": "library",
  9162. "extra": {
  9163. "branch-alias": {
  9164. "dev-main": "6.0-dev"
  9165. }
  9166. },
  9167. "autoload": {
  9168. "classmap": [
  9169. "src/"
  9170. ]
  9171. },
  9172. "notification-url": "https://packagist.org/downloads/",
  9173. "license": [
  9174. "BSD-3-Clause"
  9175. ],
  9176. "authors": [
  9177. {
  9178. "name": "Sebastian Bergmann",
  9179. "email": "sebastian@phpunit.de"
  9180. }
  9181. ],
  9182. "description": "Provides functionality to handle HHVM/PHP environments",
  9183. "homepage": "https://github.com/sebastianbergmann/environment",
  9184. "keywords": [
  9185. "Xdebug",
  9186. "environment",
  9187. "hhvm"
  9188. ],
  9189. "support": {
  9190. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9191. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  9192. "source": "https://github.com/sebastianbergmann/environment/tree/6.0.1"
  9193. },
  9194. "funding": [
  9195. {
  9196. "url": "https://github.com/sebastianbergmann",
  9197. "type": "github"
  9198. }
  9199. ],
  9200. "time": "2023-04-11T05:39:26+00:00"
  9201. },
  9202. {
  9203. "name": "sebastian/exporter",
  9204. "version": "5.0.0",
  9205. "source": {
  9206. "type": "git",
  9207. "url": "https://github.com/sebastianbergmann/exporter.git",
  9208. "reference": "f3ec4bf931c0b31e5b413f5b4fc970a7d03338c0"
  9209. },
  9210. "dist": {
  9211. "type": "zip",
  9212. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/f3ec4bf931c0b31e5b413f5b4fc970a7d03338c0",
  9213. "reference": "f3ec4bf931c0b31e5b413f5b4fc970a7d03338c0",
  9214. "shasum": ""
  9215. },
  9216. "require": {
  9217. "ext-mbstring": "*",
  9218. "php": ">=8.1",
  9219. "sebastian/recursion-context": "^5.0"
  9220. },
  9221. "require-dev": {
  9222. "phpunit/phpunit": "^10.0"
  9223. },
  9224. "type": "library",
  9225. "extra": {
  9226. "branch-alias": {
  9227. "dev-main": "5.0-dev"
  9228. }
  9229. },
  9230. "autoload": {
  9231. "classmap": [
  9232. "src/"
  9233. ]
  9234. },
  9235. "notification-url": "https://packagist.org/downloads/",
  9236. "license": [
  9237. "BSD-3-Clause"
  9238. ],
  9239. "authors": [
  9240. {
  9241. "name": "Sebastian Bergmann",
  9242. "email": "sebastian@phpunit.de"
  9243. },
  9244. {
  9245. "name": "Jeff Welch",
  9246. "email": "whatthejeff@gmail.com"
  9247. },
  9248. {
  9249. "name": "Volker Dusch",
  9250. "email": "github@wallbash.com"
  9251. },
  9252. {
  9253. "name": "Adam Harvey",
  9254. "email": "aharvey@php.net"
  9255. },
  9256. {
  9257. "name": "Bernhard Schussek",
  9258. "email": "bschussek@gmail.com"
  9259. }
  9260. ],
  9261. "description": "Provides the functionality to export PHP variables for visualization",
  9262. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  9263. "keywords": [
  9264. "export",
  9265. "exporter"
  9266. ],
  9267. "support": {
  9268. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9269. "source": "https://github.com/sebastianbergmann/exporter/tree/5.0.0"
  9270. },
  9271. "funding": [
  9272. {
  9273. "url": "https://github.com/sebastianbergmann",
  9274. "type": "github"
  9275. }
  9276. ],
  9277. "time": "2023-02-03T07:06:49+00:00"
  9278. },
  9279. {
  9280. "name": "sebastian/global-state",
  9281. "version": "6.0.0",
  9282. "source": {
  9283. "type": "git",
  9284. "url": "https://github.com/sebastianbergmann/global-state.git",
  9285. "reference": "aab257c712de87b90194febd52e4d184551c2d44"
  9286. },
  9287. "dist": {
  9288. "type": "zip",
  9289. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/aab257c712de87b90194febd52e4d184551c2d44",
  9290. "reference": "aab257c712de87b90194febd52e4d184551c2d44",
  9291. "shasum": ""
  9292. },
  9293. "require": {
  9294. "php": ">=8.1",
  9295. "sebastian/object-reflector": "^3.0",
  9296. "sebastian/recursion-context": "^5.0"
  9297. },
  9298. "require-dev": {
  9299. "ext-dom": "*",
  9300. "phpunit/phpunit": "^10.0"
  9301. },
  9302. "type": "library",
  9303. "extra": {
  9304. "branch-alias": {
  9305. "dev-main": "6.0-dev"
  9306. }
  9307. },
  9308. "autoload": {
  9309. "classmap": [
  9310. "src/"
  9311. ]
  9312. },
  9313. "notification-url": "https://packagist.org/downloads/",
  9314. "license": [
  9315. "BSD-3-Clause"
  9316. ],
  9317. "authors": [
  9318. {
  9319. "name": "Sebastian Bergmann",
  9320. "email": "sebastian@phpunit.de"
  9321. }
  9322. ],
  9323. "description": "Snapshotting of global state",
  9324. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  9325. "keywords": [
  9326. "global state"
  9327. ],
  9328. "support": {
  9329. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9330. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.0"
  9331. },
  9332. "funding": [
  9333. {
  9334. "url": "https://github.com/sebastianbergmann",
  9335. "type": "github"
  9336. }
  9337. ],
  9338. "time": "2023-02-03T07:07:38+00:00"
  9339. },
  9340. {
  9341. "name": "sebastian/lines-of-code",
  9342. "version": "2.0.0",
  9343. "source": {
  9344. "type": "git",
  9345. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  9346. "reference": "17c4d940ecafb3d15d2cf916f4108f664e28b130"
  9347. },
  9348. "dist": {
  9349. "type": "zip",
  9350. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/17c4d940ecafb3d15d2cf916f4108f664e28b130",
  9351. "reference": "17c4d940ecafb3d15d2cf916f4108f664e28b130",
  9352. "shasum": ""
  9353. },
  9354. "require": {
  9355. "nikic/php-parser": "^4.10",
  9356. "php": ">=8.1"
  9357. },
  9358. "require-dev": {
  9359. "phpunit/phpunit": "^10.0"
  9360. },
  9361. "type": "library",
  9362. "extra": {
  9363. "branch-alias": {
  9364. "dev-main": "2.0-dev"
  9365. }
  9366. },
  9367. "autoload": {
  9368. "classmap": [
  9369. "src/"
  9370. ]
  9371. },
  9372. "notification-url": "https://packagist.org/downloads/",
  9373. "license": [
  9374. "BSD-3-Clause"
  9375. ],
  9376. "authors": [
  9377. {
  9378. "name": "Sebastian Bergmann",
  9379. "email": "sebastian@phpunit.de",
  9380. "role": "lead"
  9381. }
  9382. ],
  9383. "description": "Library for counting the lines of code in PHP source code",
  9384. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  9385. "support": {
  9386. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  9387. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.0"
  9388. },
  9389. "funding": [
  9390. {
  9391. "url": "https://github.com/sebastianbergmann",
  9392. "type": "github"
  9393. }
  9394. ],
  9395. "time": "2023-02-03T07:08:02+00:00"
  9396. },
  9397. {
  9398. "name": "sebastian/object-enumerator",
  9399. "version": "5.0.0",
  9400. "source": {
  9401. "type": "git",
  9402. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9403. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  9404. },
  9405. "dist": {
  9406. "type": "zip",
  9407. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  9408. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  9409. "shasum": ""
  9410. },
  9411. "require": {
  9412. "php": ">=8.1",
  9413. "sebastian/object-reflector": "^3.0",
  9414. "sebastian/recursion-context": "^5.0"
  9415. },
  9416. "require-dev": {
  9417. "phpunit/phpunit": "^10.0"
  9418. },
  9419. "type": "library",
  9420. "extra": {
  9421. "branch-alias": {
  9422. "dev-main": "5.0-dev"
  9423. }
  9424. },
  9425. "autoload": {
  9426. "classmap": [
  9427. "src/"
  9428. ]
  9429. },
  9430. "notification-url": "https://packagist.org/downloads/",
  9431. "license": [
  9432. "BSD-3-Clause"
  9433. ],
  9434. "authors": [
  9435. {
  9436. "name": "Sebastian Bergmann",
  9437. "email": "sebastian@phpunit.de"
  9438. }
  9439. ],
  9440. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9441. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9442. "support": {
  9443. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9444. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  9445. },
  9446. "funding": [
  9447. {
  9448. "url": "https://github.com/sebastianbergmann",
  9449. "type": "github"
  9450. }
  9451. ],
  9452. "time": "2023-02-03T07:08:32+00:00"
  9453. },
  9454. {
  9455. "name": "sebastian/object-reflector",
  9456. "version": "3.0.0",
  9457. "source": {
  9458. "type": "git",
  9459. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9460. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  9461. },
  9462. "dist": {
  9463. "type": "zip",
  9464. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  9465. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  9466. "shasum": ""
  9467. },
  9468. "require": {
  9469. "php": ">=8.1"
  9470. },
  9471. "require-dev": {
  9472. "phpunit/phpunit": "^10.0"
  9473. },
  9474. "type": "library",
  9475. "extra": {
  9476. "branch-alias": {
  9477. "dev-main": "3.0-dev"
  9478. }
  9479. },
  9480. "autoload": {
  9481. "classmap": [
  9482. "src/"
  9483. ]
  9484. },
  9485. "notification-url": "https://packagist.org/downloads/",
  9486. "license": [
  9487. "BSD-3-Clause"
  9488. ],
  9489. "authors": [
  9490. {
  9491. "name": "Sebastian Bergmann",
  9492. "email": "sebastian@phpunit.de"
  9493. }
  9494. ],
  9495. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9496. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9497. "support": {
  9498. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9499. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  9500. },
  9501. "funding": [
  9502. {
  9503. "url": "https://github.com/sebastianbergmann",
  9504. "type": "github"
  9505. }
  9506. ],
  9507. "time": "2023-02-03T07:06:18+00:00"
  9508. },
  9509. {
  9510. "name": "sebastian/recursion-context",
  9511. "version": "5.0.0",
  9512. "source": {
  9513. "type": "git",
  9514. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9515. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  9516. },
  9517. "dist": {
  9518. "type": "zip",
  9519. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  9520. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  9521. "shasum": ""
  9522. },
  9523. "require": {
  9524. "php": ">=8.1"
  9525. },
  9526. "require-dev": {
  9527. "phpunit/phpunit": "^10.0"
  9528. },
  9529. "type": "library",
  9530. "extra": {
  9531. "branch-alias": {
  9532. "dev-main": "5.0-dev"
  9533. }
  9534. },
  9535. "autoload": {
  9536. "classmap": [
  9537. "src/"
  9538. ]
  9539. },
  9540. "notification-url": "https://packagist.org/downloads/",
  9541. "license": [
  9542. "BSD-3-Clause"
  9543. ],
  9544. "authors": [
  9545. {
  9546. "name": "Sebastian Bergmann",
  9547. "email": "sebastian@phpunit.de"
  9548. },
  9549. {
  9550. "name": "Jeff Welch",
  9551. "email": "whatthejeff@gmail.com"
  9552. },
  9553. {
  9554. "name": "Adam Harvey",
  9555. "email": "aharvey@php.net"
  9556. }
  9557. ],
  9558. "description": "Provides functionality to recursively process PHP variables",
  9559. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  9560. "support": {
  9561. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  9562. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  9563. },
  9564. "funding": [
  9565. {
  9566. "url": "https://github.com/sebastianbergmann",
  9567. "type": "github"
  9568. }
  9569. ],
  9570. "time": "2023-02-03T07:05:40+00:00"
  9571. },
  9572. {
  9573. "name": "sebastian/type",
  9574. "version": "4.0.0",
  9575. "source": {
  9576. "type": "git",
  9577. "url": "https://github.com/sebastianbergmann/type.git",
  9578. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  9579. },
  9580. "dist": {
  9581. "type": "zip",
  9582. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  9583. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  9584. "shasum": ""
  9585. },
  9586. "require": {
  9587. "php": ">=8.1"
  9588. },
  9589. "require-dev": {
  9590. "phpunit/phpunit": "^10.0"
  9591. },
  9592. "type": "library",
  9593. "extra": {
  9594. "branch-alias": {
  9595. "dev-main": "4.0-dev"
  9596. }
  9597. },
  9598. "autoload": {
  9599. "classmap": [
  9600. "src/"
  9601. ]
  9602. },
  9603. "notification-url": "https://packagist.org/downloads/",
  9604. "license": [
  9605. "BSD-3-Clause"
  9606. ],
  9607. "authors": [
  9608. {
  9609. "name": "Sebastian Bergmann",
  9610. "email": "sebastian@phpunit.de",
  9611. "role": "lead"
  9612. }
  9613. ],
  9614. "description": "Collection of value objects that represent the types of the PHP type system",
  9615. "homepage": "https://github.com/sebastianbergmann/type",
  9616. "support": {
  9617. "issues": "https://github.com/sebastianbergmann/type/issues",
  9618. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  9619. },
  9620. "funding": [
  9621. {
  9622. "url": "https://github.com/sebastianbergmann",
  9623. "type": "github"
  9624. }
  9625. ],
  9626. "time": "2023-02-03T07:10:45+00:00"
  9627. },
  9628. {
  9629. "name": "sebastian/version",
  9630. "version": "4.0.1",
  9631. "source": {
  9632. "type": "git",
  9633. "url": "https://github.com/sebastianbergmann/version.git",
  9634. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  9635. },
  9636. "dist": {
  9637. "type": "zip",
  9638. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  9639. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  9640. "shasum": ""
  9641. },
  9642. "require": {
  9643. "php": ">=8.1"
  9644. },
  9645. "type": "library",
  9646. "extra": {
  9647. "branch-alias": {
  9648. "dev-main": "4.0-dev"
  9649. }
  9650. },
  9651. "autoload": {
  9652. "classmap": [
  9653. "src/"
  9654. ]
  9655. },
  9656. "notification-url": "https://packagist.org/downloads/",
  9657. "license": [
  9658. "BSD-3-Clause"
  9659. ],
  9660. "authors": [
  9661. {
  9662. "name": "Sebastian Bergmann",
  9663. "email": "sebastian@phpunit.de",
  9664. "role": "lead"
  9665. }
  9666. ],
  9667. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  9668. "homepage": "https://github.com/sebastianbergmann/version",
  9669. "support": {
  9670. "issues": "https://github.com/sebastianbergmann/version/issues",
  9671. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  9672. },
  9673. "funding": [
  9674. {
  9675. "url": "https://github.com/sebastianbergmann",
  9676. "type": "github"
  9677. }
  9678. ],
  9679. "time": "2023-02-07T11:34:05+00:00"
  9680. },
  9681. {
  9682. "name": "spatie/backtrace",
  9683. "version": "1.4.0",
  9684. "source": {
  9685. "type": "git",
  9686. "url": "https://github.com/spatie/backtrace.git",
  9687. "reference": "ec4dd16476b802dbdc6b4467f84032837e316b8c"
  9688. },
  9689. "dist": {
  9690. "type": "zip",
  9691. "url": "https://api.github.com/repos/spatie/backtrace/zipball/ec4dd16476b802dbdc6b4467f84032837e316b8c",
  9692. "reference": "ec4dd16476b802dbdc6b4467f84032837e316b8c",
  9693. "shasum": ""
  9694. },
  9695. "require": {
  9696. "php": "^7.3|^8.0"
  9697. },
  9698. "require-dev": {
  9699. "ext-json": "*",
  9700. "phpunit/phpunit": "^9.3",
  9701. "spatie/phpunit-snapshot-assertions": "^4.2",
  9702. "symfony/var-dumper": "^5.1"
  9703. },
  9704. "type": "library",
  9705. "autoload": {
  9706. "psr-4": {
  9707. "Spatie\\Backtrace\\": "src"
  9708. }
  9709. },
  9710. "notification-url": "https://packagist.org/downloads/",
  9711. "license": [
  9712. "MIT"
  9713. ],
  9714. "authors": [
  9715. {
  9716. "name": "Freek Van de Herten",
  9717. "email": "freek@spatie.be",
  9718. "homepage": "https://spatie.be",
  9719. "role": "Developer"
  9720. }
  9721. ],
  9722. "description": "A better backtrace",
  9723. "homepage": "https://github.com/spatie/backtrace",
  9724. "keywords": [
  9725. "Backtrace",
  9726. "spatie"
  9727. ],
  9728. "support": {
  9729. "source": "https://github.com/spatie/backtrace/tree/1.4.0"
  9730. },
  9731. "funding": [
  9732. {
  9733. "url": "https://github.com/sponsors/spatie",
  9734. "type": "github"
  9735. },
  9736. {
  9737. "url": "https://spatie.be/open-source/support-us",
  9738. "type": "other"
  9739. }
  9740. ],
  9741. "time": "2023-03-04T08:57:24+00:00"
  9742. },
  9743. {
  9744. "name": "spatie/flare-client-php",
  9745. "version": "1.3.6",
  9746. "source": {
  9747. "type": "git",
  9748. "url": "https://github.com/spatie/flare-client-php.git",
  9749. "reference": "530ac81255af79f114344286e4275f8869c671e2"
  9750. },
  9751. "dist": {
  9752. "type": "zip",
  9753. "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/530ac81255af79f114344286e4275f8869c671e2",
  9754. "reference": "530ac81255af79f114344286e4275f8869c671e2",
  9755. "shasum": ""
  9756. },
  9757. "require": {
  9758. "illuminate/pipeline": "^8.0|^9.0|^10.0",
  9759. "php": "^8.0",
  9760. "spatie/backtrace": "^1.2",
  9761. "symfony/http-foundation": "^5.0|^6.0",
  9762. "symfony/mime": "^5.2|^6.0",
  9763. "symfony/process": "^5.2|^6.0",
  9764. "symfony/var-dumper": "^5.2|^6.0"
  9765. },
  9766. "require-dev": {
  9767. "dms/phpunit-arraysubset-asserts": "^0.3.0",
  9768. "pestphp/pest": "^1.20",
  9769. "phpstan/extension-installer": "^1.1",
  9770. "phpstan/phpstan-deprecation-rules": "^1.0",
  9771. "phpstan/phpstan-phpunit": "^1.0",
  9772. "spatie/phpunit-snapshot-assertions": "^4.0"
  9773. },
  9774. "type": "library",
  9775. "extra": {
  9776. "branch-alias": {
  9777. "dev-main": "1.1.x-dev"
  9778. }
  9779. },
  9780. "autoload": {
  9781. "files": [
  9782. "src/helpers.php"
  9783. ],
  9784. "psr-4": {
  9785. "Spatie\\FlareClient\\": "src"
  9786. }
  9787. },
  9788. "notification-url": "https://packagist.org/downloads/",
  9789. "license": [
  9790. "MIT"
  9791. ],
  9792. "description": "Send PHP errors to Flare",
  9793. "homepage": "https://github.com/spatie/flare-client-php",
  9794. "keywords": [
  9795. "exception",
  9796. "flare",
  9797. "reporting",
  9798. "spatie"
  9799. ],
  9800. "support": {
  9801. "issues": "https://github.com/spatie/flare-client-php/issues",
  9802. "source": "https://github.com/spatie/flare-client-php/tree/1.3.6"
  9803. },
  9804. "funding": [
  9805. {
  9806. "url": "https://github.com/spatie",
  9807. "type": "github"
  9808. }
  9809. ],
  9810. "time": "2023-04-12T07:57:12+00:00"
  9811. },
  9812. {
  9813. "name": "spatie/ignition",
  9814. "version": "1.7.0",
  9815. "source": {
  9816. "type": "git",
  9817. "url": "https://github.com/spatie/ignition.git",
  9818. "reference": "f747d83c6d7cb6229b462f3ddbb3a82dc0db0f78"
  9819. },
  9820. "dist": {
  9821. "type": "zip",
  9822. "url": "https://api.github.com/repos/spatie/ignition/zipball/f747d83c6d7cb6229b462f3ddbb3a82dc0db0f78",
  9823. "reference": "f747d83c6d7cb6229b462f3ddbb3a82dc0db0f78",
  9824. "shasum": ""
  9825. },
  9826. "require": {
  9827. "ext-json": "*",
  9828. "ext-mbstring": "*",
  9829. "php": "^8.0",
  9830. "spatie/backtrace": "^1.4",
  9831. "spatie/flare-client-php": "^1.1",
  9832. "symfony/console": "^5.4|^6.0",
  9833. "symfony/var-dumper": "^5.4|^6.0"
  9834. },
  9835. "require-dev": {
  9836. "illuminate/cache": "^9.52",
  9837. "mockery/mockery": "^1.4",
  9838. "pestphp/pest": "^1.20",
  9839. "phpstan/extension-installer": "^1.1",
  9840. "phpstan/phpstan-deprecation-rules": "^1.0",
  9841. "phpstan/phpstan-phpunit": "^1.0",
  9842. "psr/simple-cache-implementation": "*",
  9843. "symfony/cache": "^6.2",
  9844. "symfony/process": "^5.4|^6.0",
  9845. "vlucas/phpdotenv": "^5.5"
  9846. },
  9847. "suggest": {
  9848. "openai-php/client": "Require get solutions from OpenAI",
  9849. "simple-cache-implementation": "To cache solutions from OpenAI"
  9850. },
  9851. "type": "library",
  9852. "extra": {
  9853. "branch-alias": {
  9854. "dev-main": "1.5.x-dev"
  9855. }
  9856. },
  9857. "autoload": {
  9858. "psr-4": {
  9859. "Spatie\\Ignition\\": "src"
  9860. }
  9861. },
  9862. "notification-url": "https://packagist.org/downloads/",
  9863. "license": [
  9864. "MIT"
  9865. ],
  9866. "authors": [
  9867. {
  9868. "name": "Spatie",
  9869. "email": "info@spatie.be",
  9870. "role": "Developer"
  9871. }
  9872. ],
  9873. "description": "A beautiful error page for PHP applications.",
  9874. "homepage": "https://flareapp.io/ignition",
  9875. "keywords": [
  9876. "error",
  9877. "flare",
  9878. "laravel",
  9879. "page"
  9880. ],
  9881. "support": {
  9882. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  9883. "forum": "https://twitter.com/flareappio",
  9884. "issues": "https://github.com/spatie/ignition/issues",
  9885. "source": "https://github.com/spatie/ignition"
  9886. },
  9887. "funding": [
  9888. {
  9889. "url": "https://github.com/spatie",
  9890. "type": "github"
  9891. }
  9892. ],
  9893. "time": "2023-05-04T13:20:26+00:00"
  9894. },
  9895. {
  9896. "name": "spatie/laravel-ignition",
  9897. "version": "2.1.1",
  9898. "source": {
  9899. "type": "git",
  9900. "url": "https://github.com/spatie/laravel-ignition.git",
  9901. "reference": "802c7e27754456e45134f1a9d29ab7df4b6cb9e4"
  9902. },
  9903. "dist": {
  9904. "type": "zip",
  9905. "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/802c7e27754456e45134f1a9d29ab7df4b6cb9e4",
  9906. "reference": "802c7e27754456e45134f1a9d29ab7df4b6cb9e4",
  9907. "shasum": ""
  9908. },
  9909. "require": {
  9910. "ext-curl": "*",
  9911. "ext-json": "*",
  9912. "ext-mbstring": "*",
  9913. "illuminate/support": "^10.0",
  9914. "php": "^8.1",
  9915. "spatie/flare-client-php": "^1.3.5",
  9916. "spatie/ignition": "^1.5.0",
  9917. "symfony/console": "^6.2.3",
  9918. "symfony/var-dumper": "^6.2.3"
  9919. },
  9920. "require-dev": {
  9921. "livewire/livewire": "^2.11",
  9922. "mockery/mockery": "^1.5.1",
  9923. "openai-php/client": "^0.3.4",
  9924. "orchestra/testbench": "^8.0",
  9925. "pestphp/pest": "^1.22.3",
  9926. "phpstan/extension-installer": "^1.2",
  9927. "phpstan/phpstan-deprecation-rules": "^1.1.1",
  9928. "phpstan/phpstan-phpunit": "^1.3.3",
  9929. "vlucas/phpdotenv": "^5.5"
  9930. },
  9931. "suggest": {
  9932. "openai-php/client": "Require get solutions from OpenAI",
  9933. "psr/simple-cache-implementation": "Needed to cache solutions from OpenAI"
  9934. },
  9935. "type": "library",
  9936. "extra": {
  9937. "laravel": {
  9938. "providers": [
  9939. "Spatie\\LaravelIgnition\\IgnitionServiceProvider"
  9940. ],
  9941. "aliases": {
  9942. "Flare": "Spatie\\LaravelIgnition\\Facades\\Flare"
  9943. }
  9944. }
  9945. },
  9946. "autoload": {
  9947. "files": [
  9948. "src/helpers.php"
  9949. ],
  9950. "psr-4": {
  9951. "Spatie\\LaravelIgnition\\": "src"
  9952. }
  9953. },
  9954. "notification-url": "https://packagist.org/downloads/",
  9955. "license": [
  9956. "MIT"
  9957. ],
  9958. "authors": [
  9959. {
  9960. "name": "Spatie",
  9961. "email": "info@spatie.be",
  9962. "role": "Developer"
  9963. }
  9964. ],
  9965. "description": "A beautiful error page for Laravel applications.",
  9966. "homepage": "https://flareapp.io/ignition",
  9967. "keywords": [
  9968. "error",
  9969. "flare",
  9970. "laravel",
  9971. "page"
  9972. ],
  9973. "support": {
  9974. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  9975. "forum": "https://twitter.com/flareappio",
  9976. "issues": "https://github.com/spatie/laravel-ignition/issues",
  9977. "source": "https://github.com/spatie/laravel-ignition"
  9978. },
  9979. "funding": [
  9980. {
  9981. "url": "https://github.com/spatie",
  9982. "type": "github"
  9983. }
  9984. ],
  9985. "time": "2023-05-04T13:54:49+00:00"
  9986. },
  9987. {
  9988. "name": "symfony/yaml",
  9989. "version": "v6.2.10",
  9990. "source": {
  9991. "type": "git",
  9992. "url": "https://github.com/symfony/yaml.git",
  9993. "reference": "61916f3861b1e9705b18cfde723921a71dd1559d"
  9994. },
  9995. "dist": {
  9996. "type": "zip",
  9997. "url": "https://api.github.com/repos/symfony/yaml/zipball/61916f3861b1e9705b18cfde723921a71dd1559d",
  9998. "reference": "61916f3861b1e9705b18cfde723921a71dd1559d",
  9999. "shasum": ""
  10000. },
  10001. "require": {
  10002. "php": ">=8.1",
  10003. "symfony/polyfill-ctype": "^1.8"
  10004. },
  10005. "conflict": {
  10006. "symfony/console": "<5.4"
  10007. },
  10008. "require-dev": {
  10009. "symfony/console": "^5.4|^6.0"
  10010. },
  10011. "suggest": {
  10012. "symfony/console": "For validating YAML files using the lint command"
  10013. },
  10014. "bin": [
  10015. "Resources/bin/yaml-lint"
  10016. ],
  10017. "type": "library",
  10018. "autoload": {
  10019. "psr-4": {
  10020. "Symfony\\Component\\Yaml\\": ""
  10021. },
  10022. "exclude-from-classmap": [
  10023. "/Tests/"
  10024. ]
  10025. },
  10026. "notification-url": "https://packagist.org/downloads/",
  10027. "license": [
  10028. "MIT"
  10029. ],
  10030. "authors": [
  10031. {
  10032. "name": "Fabien Potencier",
  10033. "email": "fabien@symfony.com"
  10034. },
  10035. {
  10036. "name": "Symfony Community",
  10037. "homepage": "https://symfony.com/contributors"
  10038. }
  10039. ],
  10040. "description": "Loads and dumps YAML files",
  10041. "homepage": "https://symfony.com",
  10042. "support": {
  10043. "source": "https://github.com/symfony/yaml/tree/v6.2.10"
  10044. },
  10045. "funding": [
  10046. {
  10047. "url": "https://symfony.com/sponsor",
  10048. "type": "custom"
  10049. },
  10050. {
  10051. "url": "https://github.com/fabpot",
  10052. "type": "github"
  10053. },
  10054. {
  10055. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10056. "type": "tidelift"
  10057. }
  10058. ],
  10059. "time": "2023-04-28T13:25:36+00:00"
  10060. },
  10061. {
  10062. "name": "theseer/tokenizer",
  10063. "version": "1.2.1",
  10064. "source": {
  10065. "type": "git",
  10066. "url": "https://github.com/theseer/tokenizer.git",
  10067. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  10068. },
  10069. "dist": {
  10070. "type": "zip",
  10071. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  10072. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  10073. "shasum": ""
  10074. },
  10075. "require": {
  10076. "ext-dom": "*",
  10077. "ext-tokenizer": "*",
  10078. "ext-xmlwriter": "*",
  10079. "php": "^7.2 || ^8.0"
  10080. },
  10081. "type": "library",
  10082. "autoload": {
  10083. "classmap": [
  10084. "src/"
  10085. ]
  10086. },
  10087. "notification-url": "https://packagist.org/downloads/",
  10088. "license": [
  10089. "BSD-3-Clause"
  10090. ],
  10091. "authors": [
  10092. {
  10093. "name": "Arne Blankerts",
  10094. "email": "arne@blankerts.de",
  10095. "role": "Developer"
  10096. }
  10097. ],
  10098. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10099. "support": {
  10100. "issues": "https://github.com/theseer/tokenizer/issues",
  10101. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  10102. },
  10103. "funding": [
  10104. {
  10105. "url": "https://github.com/theseer",
  10106. "type": "github"
  10107. }
  10108. ],
  10109. "time": "2021-07-28T10:34:58+00:00"
  10110. }
  10111. ],
  10112. "aliases": [],
  10113. "minimum-stability": "stable",
  10114. "stability-flags": [],
  10115. "prefer-stable": true,
  10116. "prefer-lowest": false,
  10117. "platform": {
  10118. "php": "^8.1"
  10119. },
  10120. "platform-dev": [],
  10121. "plugin-api-version": "2.3.0"
  10122. }