composer.lock 396 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076
  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": "646788842a2f7faaefab3ab4df6a385e",
  8. "packages": [
  9. {
  10. "name": "aws/aws-crt-php",
  11. "version": "v1.2.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/awslabs/aws-crt-php.git",
  15. "reference": "1926277fc71d253dfa820271ac5987bdb193ccf5"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/awslabs/aws-crt-php/zipball/1926277fc71d253dfa820271ac5987bdb193ccf5",
  20. "reference": "1926277fc71d253dfa820271ac5987bdb193ccf5",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": ">=5.5"
  25. },
  26. "require-dev": {
  27. "phpunit/phpunit": "^4.8.35||^5.6.3||^9.5",
  28. "yoast/phpunit-polyfills": "^1.0"
  29. },
  30. "suggest": {
  31. "ext-awscrt": "Make sure you install awscrt native extension to use any of the functionality."
  32. },
  33. "type": "library",
  34. "autoload": {
  35. "classmap": [
  36. "src/"
  37. ]
  38. },
  39. "notification-url": "https://packagist.org/downloads/",
  40. "license": [
  41. "Apache-2.0"
  42. ],
  43. "authors": [
  44. {
  45. "name": "AWS SDK Common Runtime Team",
  46. "email": "aws-sdk-common-runtime@amazon.com"
  47. }
  48. ],
  49. "description": "AWS Common Runtime for PHP",
  50. "homepage": "https://github.com/awslabs/aws-crt-php",
  51. "keywords": [
  52. "amazon",
  53. "aws",
  54. "crt",
  55. "sdk"
  56. ],
  57. "support": {
  58. "issues": "https://github.com/awslabs/aws-crt-php/issues",
  59. "source": "https://github.com/awslabs/aws-crt-php/tree/v1.2.1"
  60. },
  61. "time": "2023-03-24T20:22:19+00:00"
  62. },
  63. {
  64. "name": "aws/aws-sdk-php",
  65. "version": "3.262.3",
  66. "source": {
  67. "type": "git",
  68. "url": "https://github.com/aws/aws-sdk-php.git",
  69. "reference": "f5c8142d43846194bbb3bb40b18e7f6df2788409"
  70. },
  71. "dist": {
  72. "type": "zip",
  73. "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/f5c8142d43846194bbb3bb40b18e7f6df2788409",
  74. "reference": "f5c8142d43846194bbb3bb40b18e7f6df2788409",
  75. "shasum": ""
  76. },
  77. "require": {
  78. "aws/aws-crt-php": "^1.0.4",
  79. "ext-json": "*",
  80. "ext-pcre": "*",
  81. "ext-simplexml": "*",
  82. "guzzlehttp/guzzle": "^6.5.8 || ^7.4.5",
  83. "guzzlehttp/promises": "^1.4.0",
  84. "guzzlehttp/psr7": "^1.8.5 || ^2.3",
  85. "mtdowling/jmespath.php": "^2.6",
  86. "php": ">=5.5"
  87. },
  88. "require-dev": {
  89. "andrewsville/php-token-reflection": "^1.4",
  90. "aws/aws-php-sns-message-validator": "~1.0",
  91. "behat/behat": "~3.0",
  92. "composer/composer": "^1.10.22",
  93. "dms/phpunit-arraysubset-asserts": "^0.4.0",
  94. "doctrine/cache": "~1.4",
  95. "ext-dom": "*",
  96. "ext-openssl": "*",
  97. "ext-pcntl": "*",
  98. "ext-sockets": "*",
  99. "nette/neon": "^2.3",
  100. "paragonie/random_compat": ">= 2",
  101. "phpunit/phpunit": "^4.8.35 || ^5.6.3 || ^9.5",
  102. "psr/cache": "^1.0",
  103. "psr/simple-cache": "^1.0",
  104. "sebastian/comparator": "^1.2.3 || ^4.0",
  105. "yoast/phpunit-polyfills": "^1.0"
  106. },
  107. "suggest": {
  108. "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications",
  109. "doctrine/cache": "To use the DoctrineCacheAdapter",
  110. "ext-curl": "To send requests using cURL",
  111. "ext-openssl": "Allows working with CloudFront private distributions and verifying received SNS messages",
  112. "ext-sockets": "To use client-side monitoring"
  113. },
  114. "type": "library",
  115. "extra": {
  116. "branch-alias": {
  117. "dev-master": "3.0-dev"
  118. }
  119. },
  120. "autoload": {
  121. "files": [
  122. "src/functions.php"
  123. ],
  124. "psr-4": {
  125. "Aws\\": "src/"
  126. }
  127. },
  128. "notification-url": "https://packagist.org/downloads/",
  129. "license": [
  130. "Apache-2.0"
  131. ],
  132. "authors": [
  133. {
  134. "name": "Amazon Web Services",
  135. "homepage": "http://aws.amazon.com"
  136. }
  137. ],
  138. "description": "AWS SDK for PHP - Use Amazon Web Services in your PHP project",
  139. "homepage": "http://aws.amazon.com/sdkforphp",
  140. "keywords": [
  141. "amazon",
  142. "aws",
  143. "cloud",
  144. "dynamodb",
  145. "ec2",
  146. "glacier",
  147. "s3",
  148. "sdk"
  149. ],
  150. "support": {
  151. "forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80",
  152. "issues": "https://github.com/aws/aws-sdk-php/issues",
  153. "source": "https://github.com/aws/aws-sdk-php/tree/3.262.3"
  154. },
  155. "time": "2023-03-28T18:18:50+00:00"
  156. },
  157. {
  158. "name": "barryvdh/laravel-dompdf",
  159. "version": "v2.0.1",
  160. "source": {
  161. "type": "git",
  162. "url": "https://github.com/barryvdh/laravel-dompdf.git",
  163. "reference": "9843d2be423670fb434f4c978b3c0f4dd92c87a6"
  164. },
  165. "dist": {
  166. "type": "zip",
  167. "url": "https://api.github.com/repos/barryvdh/laravel-dompdf/zipball/9843d2be423670fb434f4c978b3c0f4dd92c87a6",
  168. "reference": "9843d2be423670fb434f4c978b3c0f4dd92c87a6",
  169. "shasum": ""
  170. },
  171. "require": {
  172. "dompdf/dompdf": "^2.0.1",
  173. "illuminate/support": "^6|^7|^8|^9|^10",
  174. "php": "^7.2 || ^8.0"
  175. },
  176. "require-dev": {
  177. "nunomaduro/larastan": "^1|^2",
  178. "orchestra/testbench": "^4|^5|^6|^7|^8",
  179. "phpro/grumphp": "^1",
  180. "squizlabs/php_codesniffer": "^3.5"
  181. },
  182. "type": "library",
  183. "extra": {
  184. "branch-alias": {
  185. "dev-master": "2.0-dev"
  186. },
  187. "laravel": {
  188. "providers": [
  189. "Barryvdh\\DomPDF\\ServiceProvider"
  190. ],
  191. "aliases": {
  192. "Pdf": "Barryvdh\\DomPDF\\Facade\\Pdf",
  193. "PDF": "Barryvdh\\DomPDF\\Facade\\Pdf"
  194. }
  195. }
  196. },
  197. "autoload": {
  198. "psr-4": {
  199. "Barryvdh\\DomPDF\\": "src"
  200. }
  201. },
  202. "notification-url": "https://packagist.org/downloads/",
  203. "license": [
  204. "MIT"
  205. ],
  206. "authors": [
  207. {
  208. "name": "Barry vd. Heuvel",
  209. "email": "barryvdh@gmail.com"
  210. }
  211. ],
  212. "description": "A DOMPDF Wrapper for Laravel",
  213. "keywords": [
  214. "dompdf",
  215. "laravel",
  216. "pdf"
  217. ],
  218. "support": {
  219. "issues": "https://github.com/barryvdh/laravel-dompdf/issues",
  220. "source": "https://github.com/barryvdh/laravel-dompdf/tree/v2.0.1"
  221. },
  222. "funding": [
  223. {
  224. "url": "https://fruitcake.nl",
  225. "type": "custom"
  226. },
  227. {
  228. "url": "https://github.com/barryvdh",
  229. "type": "github"
  230. }
  231. ],
  232. "time": "2023-01-12T15:12:49+00:00"
  233. },
  234. {
  235. "name": "biscolab/laravel-recaptcha",
  236. "version": "v5.4.0",
  237. "source": {
  238. "type": "git",
  239. "url": "https://github.com/biscolab/laravel-recaptcha.git",
  240. "reference": "1bab726402d5376553a439b88a0faa07e84488fd"
  241. },
  242. "dist": {
  243. "type": "zip",
  244. "url": "https://api.github.com/repos/biscolab/laravel-recaptcha/zipball/1bab726402d5376553a439b88a0faa07e84488fd",
  245. "reference": "1bab726402d5376553a439b88a0faa07e84488fd",
  246. "shasum": ""
  247. },
  248. "require": {
  249. "illuminate/routing": "^7.0|^8.0|^9.0",
  250. "illuminate/support": "^7.0|^8.0|^9.0",
  251. "php": "^7.3|^8.0"
  252. },
  253. "require-dev": {
  254. "orchestra/testbench": "5.*|6.*|^7.0",
  255. "phpunit/phpunit": "^9.1"
  256. },
  257. "suggest": {
  258. "biscolab/laravel-authlog": "It allows to handle logged-in users and force log-out if needed"
  259. },
  260. "type": "library",
  261. "extra": {
  262. "laravel": {
  263. "providers": [
  264. "Biscolab\\ReCaptcha\\ReCaptchaServiceProvider"
  265. ],
  266. "aliases": {
  267. "ReCaptcha": "Biscolab\\ReCaptcha\\Facades\\ReCaptcha"
  268. }
  269. }
  270. },
  271. "autoload": {
  272. "files": [
  273. "src/helpers.php"
  274. ],
  275. "psr-4": {
  276. "Biscolab\\ReCaptcha\\": "src/"
  277. }
  278. },
  279. "notification-url": "https://packagist.org/downloads/",
  280. "license": [
  281. "MIT"
  282. ],
  283. "authors": [
  284. {
  285. "name": "Roberto Belotti",
  286. "email": "roby.belotti@gmail.com",
  287. "homepage": "https://biscolab.com",
  288. "role": "Developer"
  289. }
  290. ],
  291. "description": "Simple and painless Google reCAPTCHA package for Laravel framework",
  292. "homepage": "https://biscolab.com/laravel-recaptcha",
  293. "keywords": [
  294. "captcha",
  295. "laravel",
  296. "recaptcha",
  297. "validation"
  298. ],
  299. "support": {
  300. "issues": "https://github.com/biscolab/laravel-recaptcha/issues",
  301. "source": "https://github.com/biscolab/laravel-recaptcha/tree/v5.4.0"
  302. },
  303. "time": "2022-05-07T12:52:46+00:00"
  304. },
  305. {
  306. "name": "brick/math",
  307. "version": "0.11.0",
  308. "source": {
  309. "type": "git",
  310. "url": "https://github.com/brick/math.git",
  311. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478"
  312. },
  313. "dist": {
  314. "type": "zip",
  315. "url": "https://api.github.com/repos/brick/math/zipball/0ad82ce168c82ba30d1c01ec86116ab52f589478",
  316. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478",
  317. "shasum": ""
  318. },
  319. "require": {
  320. "php": "^8.0"
  321. },
  322. "require-dev": {
  323. "php-coveralls/php-coveralls": "^2.2",
  324. "phpunit/phpunit": "^9.0",
  325. "vimeo/psalm": "5.0.0"
  326. },
  327. "type": "library",
  328. "autoload": {
  329. "psr-4": {
  330. "Brick\\Math\\": "src/"
  331. }
  332. },
  333. "notification-url": "https://packagist.org/downloads/",
  334. "license": [
  335. "MIT"
  336. ],
  337. "description": "Arbitrary-precision arithmetic library",
  338. "keywords": [
  339. "Arbitrary-precision",
  340. "BigInteger",
  341. "BigRational",
  342. "arithmetic",
  343. "bigdecimal",
  344. "bignum",
  345. "brick",
  346. "math"
  347. ],
  348. "support": {
  349. "issues": "https://github.com/brick/math/issues",
  350. "source": "https://github.com/brick/math/tree/0.11.0"
  351. },
  352. "funding": [
  353. {
  354. "url": "https://github.com/BenMorel",
  355. "type": "github"
  356. }
  357. ],
  358. "time": "2023-01-15T23:15:59+00:00"
  359. },
  360. {
  361. "name": "dflydev/dot-access-data",
  362. "version": "v3.0.2",
  363. "source": {
  364. "type": "git",
  365. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  366. "reference": "f41715465d65213d644d3141a6a93081be5d3549"
  367. },
  368. "dist": {
  369. "type": "zip",
  370. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549",
  371. "reference": "f41715465d65213d644d3141a6a93081be5d3549",
  372. "shasum": ""
  373. },
  374. "require": {
  375. "php": "^7.1 || ^8.0"
  376. },
  377. "require-dev": {
  378. "phpstan/phpstan": "^0.12.42",
  379. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  380. "scrutinizer/ocular": "1.6.0",
  381. "squizlabs/php_codesniffer": "^3.5",
  382. "vimeo/psalm": "^4.0.0"
  383. },
  384. "type": "library",
  385. "extra": {
  386. "branch-alias": {
  387. "dev-main": "3.x-dev"
  388. }
  389. },
  390. "autoload": {
  391. "psr-4": {
  392. "Dflydev\\DotAccessData\\": "src/"
  393. }
  394. },
  395. "notification-url": "https://packagist.org/downloads/",
  396. "license": [
  397. "MIT"
  398. ],
  399. "authors": [
  400. {
  401. "name": "Dragonfly Development Inc.",
  402. "email": "info@dflydev.com",
  403. "homepage": "http://dflydev.com"
  404. },
  405. {
  406. "name": "Beau Simensen",
  407. "email": "beau@dflydev.com",
  408. "homepage": "http://beausimensen.com"
  409. },
  410. {
  411. "name": "Carlos Frutos",
  412. "email": "carlos@kiwing.it",
  413. "homepage": "https://github.com/cfrutos"
  414. },
  415. {
  416. "name": "Colin O'Dell",
  417. "email": "colinodell@gmail.com",
  418. "homepage": "https://www.colinodell.com"
  419. }
  420. ],
  421. "description": "Given a deep data structure, access data by dot notation.",
  422. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  423. "keywords": [
  424. "access",
  425. "data",
  426. "dot",
  427. "notation"
  428. ],
  429. "support": {
  430. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  431. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.2"
  432. },
  433. "time": "2022-10-27T11:44:00+00:00"
  434. },
  435. {
  436. "name": "doctrine/cache",
  437. "version": "2.2.0",
  438. "source": {
  439. "type": "git",
  440. "url": "https://github.com/doctrine/cache.git",
  441. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb"
  442. },
  443. "dist": {
  444. "type": "zip",
  445. "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb",
  446. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb",
  447. "shasum": ""
  448. },
  449. "require": {
  450. "php": "~7.1 || ^8.0"
  451. },
  452. "conflict": {
  453. "doctrine/common": ">2.2,<2.4"
  454. },
  455. "require-dev": {
  456. "cache/integration-tests": "dev-master",
  457. "doctrine/coding-standard": "^9",
  458. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  459. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  460. "symfony/cache": "^4.4 || ^5.4 || ^6",
  461. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  462. },
  463. "type": "library",
  464. "autoload": {
  465. "psr-4": {
  466. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  467. }
  468. },
  469. "notification-url": "https://packagist.org/downloads/",
  470. "license": [
  471. "MIT"
  472. ],
  473. "authors": [
  474. {
  475. "name": "Guilherme Blanco",
  476. "email": "guilhermeblanco@gmail.com"
  477. },
  478. {
  479. "name": "Roman Borschel",
  480. "email": "roman@code-factory.org"
  481. },
  482. {
  483. "name": "Benjamin Eberlei",
  484. "email": "kontakt@beberlei.de"
  485. },
  486. {
  487. "name": "Jonathan Wage",
  488. "email": "jonwage@gmail.com"
  489. },
  490. {
  491. "name": "Johannes Schmitt",
  492. "email": "schmittjoh@gmail.com"
  493. }
  494. ],
  495. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  496. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  497. "keywords": [
  498. "abstraction",
  499. "apcu",
  500. "cache",
  501. "caching",
  502. "couchdb",
  503. "memcached",
  504. "php",
  505. "redis",
  506. "xcache"
  507. ],
  508. "support": {
  509. "issues": "https://github.com/doctrine/cache/issues",
  510. "source": "https://github.com/doctrine/cache/tree/2.2.0"
  511. },
  512. "funding": [
  513. {
  514. "url": "https://www.doctrine-project.org/sponsorship.html",
  515. "type": "custom"
  516. },
  517. {
  518. "url": "https://www.patreon.com/phpdoctrine",
  519. "type": "patreon"
  520. },
  521. {
  522. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  523. "type": "tidelift"
  524. }
  525. ],
  526. "time": "2022-05-20T20:07:39+00:00"
  527. },
  528. {
  529. "name": "doctrine/dbal",
  530. "version": "3.6.1",
  531. "source": {
  532. "type": "git",
  533. "url": "https://github.com/doctrine/dbal.git",
  534. "reference": "57815c7bbcda3cd18871d253c1dd8cbe56f8526e"
  535. },
  536. "dist": {
  537. "type": "zip",
  538. "url": "https://api.github.com/repos/doctrine/dbal/zipball/57815c7bbcda3cd18871d253c1dd8cbe56f8526e",
  539. "reference": "57815c7bbcda3cd18871d253c1dd8cbe56f8526e",
  540. "shasum": ""
  541. },
  542. "require": {
  543. "composer-runtime-api": "^2",
  544. "doctrine/cache": "^1.11|^2.0",
  545. "doctrine/deprecations": "^0.5.3|^1",
  546. "doctrine/event-manager": "^1|^2",
  547. "php": "^7.4 || ^8.0",
  548. "psr/cache": "^1|^2|^3",
  549. "psr/log": "^1|^2|^3"
  550. },
  551. "require-dev": {
  552. "doctrine/coding-standard": "11.1.0",
  553. "fig/log-test": "^1",
  554. "jetbrains/phpstorm-stubs": "2022.3",
  555. "phpstan/phpstan": "1.10.3",
  556. "phpstan/phpstan-strict-rules": "^1.5",
  557. "phpunit/phpunit": "9.6.4",
  558. "psalm/plugin-phpunit": "0.18.4",
  559. "squizlabs/php_codesniffer": "3.7.2",
  560. "symfony/cache": "^5.4|^6.0",
  561. "symfony/console": "^4.4|^5.4|^6.0",
  562. "vimeo/psalm": "4.30.0"
  563. },
  564. "suggest": {
  565. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  566. },
  567. "bin": [
  568. "bin/doctrine-dbal"
  569. ],
  570. "type": "library",
  571. "autoload": {
  572. "psr-4": {
  573. "Doctrine\\DBAL\\": "src"
  574. }
  575. },
  576. "notification-url": "https://packagist.org/downloads/",
  577. "license": [
  578. "MIT"
  579. ],
  580. "authors": [
  581. {
  582. "name": "Guilherme Blanco",
  583. "email": "guilhermeblanco@gmail.com"
  584. },
  585. {
  586. "name": "Roman Borschel",
  587. "email": "roman@code-factory.org"
  588. },
  589. {
  590. "name": "Benjamin Eberlei",
  591. "email": "kontakt@beberlei.de"
  592. },
  593. {
  594. "name": "Jonathan Wage",
  595. "email": "jonwage@gmail.com"
  596. }
  597. ],
  598. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  599. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  600. "keywords": [
  601. "abstraction",
  602. "database",
  603. "db2",
  604. "dbal",
  605. "mariadb",
  606. "mssql",
  607. "mysql",
  608. "oci8",
  609. "oracle",
  610. "pdo",
  611. "pgsql",
  612. "postgresql",
  613. "queryobject",
  614. "sasql",
  615. "sql",
  616. "sqlite",
  617. "sqlserver",
  618. "sqlsrv"
  619. ],
  620. "support": {
  621. "issues": "https://github.com/doctrine/dbal/issues",
  622. "source": "https://github.com/doctrine/dbal/tree/3.6.1"
  623. },
  624. "funding": [
  625. {
  626. "url": "https://www.doctrine-project.org/sponsorship.html",
  627. "type": "custom"
  628. },
  629. {
  630. "url": "https://www.patreon.com/phpdoctrine",
  631. "type": "patreon"
  632. },
  633. {
  634. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  635. "type": "tidelift"
  636. }
  637. ],
  638. "time": "2023-03-02T19:26:24+00:00"
  639. },
  640. {
  641. "name": "doctrine/deprecations",
  642. "version": "v1.0.0",
  643. "source": {
  644. "type": "git",
  645. "url": "https://github.com/doctrine/deprecations.git",
  646. "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de"
  647. },
  648. "dist": {
  649. "type": "zip",
  650. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de",
  651. "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de",
  652. "shasum": ""
  653. },
  654. "require": {
  655. "php": "^7.1|^8.0"
  656. },
  657. "require-dev": {
  658. "doctrine/coding-standard": "^9",
  659. "phpunit/phpunit": "^7.5|^8.5|^9.5",
  660. "psr/log": "^1|^2|^3"
  661. },
  662. "suggest": {
  663. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  664. },
  665. "type": "library",
  666. "autoload": {
  667. "psr-4": {
  668. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  669. }
  670. },
  671. "notification-url": "https://packagist.org/downloads/",
  672. "license": [
  673. "MIT"
  674. ],
  675. "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.",
  676. "homepage": "https://www.doctrine-project.org/",
  677. "support": {
  678. "issues": "https://github.com/doctrine/deprecations/issues",
  679. "source": "https://github.com/doctrine/deprecations/tree/v1.0.0"
  680. },
  681. "time": "2022-05-02T15:47:09+00:00"
  682. },
  683. {
  684. "name": "doctrine/event-manager",
  685. "version": "2.0.0",
  686. "source": {
  687. "type": "git",
  688. "url": "https://github.com/doctrine/event-manager.git",
  689. "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32"
  690. },
  691. "dist": {
  692. "type": "zip",
  693. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/750671534e0241a7c50ea5b43f67e23eb5c96f32",
  694. "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32",
  695. "shasum": ""
  696. },
  697. "require": {
  698. "php": "^8.1"
  699. },
  700. "conflict": {
  701. "doctrine/common": "<2.9"
  702. },
  703. "require-dev": {
  704. "doctrine/coding-standard": "^10",
  705. "phpstan/phpstan": "^1.8.8",
  706. "phpunit/phpunit": "^9.5",
  707. "vimeo/psalm": "^4.28"
  708. },
  709. "type": "library",
  710. "autoload": {
  711. "psr-4": {
  712. "Doctrine\\Common\\": "src"
  713. }
  714. },
  715. "notification-url": "https://packagist.org/downloads/",
  716. "license": [
  717. "MIT"
  718. ],
  719. "authors": [
  720. {
  721. "name": "Guilherme Blanco",
  722. "email": "guilhermeblanco@gmail.com"
  723. },
  724. {
  725. "name": "Roman Borschel",
  726. "email": "roman@code-factory.org"
  727. },
  728. {
  729. "name": "Benjamin Eberlei",
  730. "email": "kontakt@beberlei.de"
  731. },
  732. {
  733. "name": "Jonathan Wage",
  734. "email": "jonwage@gmail.com"
  735. },
  736. {
  737. "name": "Johannes Schmitt",
  738. "email": "schmittjoh@gmail.com"
  739. },
  740. {
  741. "name": "Marco Pivetta",
  742. "email": "ocramius@gmail.com"
  743. }
  744. ],
  745. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  746. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  747. "keywords": [
  748. "event",
  749. "event dispatcher",
  750. "event manager",
  751. "event system",
  752. "events"
  753. ],
  754. "support": {
  755. "issues": "https://github.com/doctrine/event-manager/issues",
  756. "source": "https://github.com/doctrine/event-manager/tree/2.0.0"
  757. },
  758. "funding": [
  759. {
  760. "url": "https://www.doctrine-project.org/sponsorship.html",
  761. "type": "custom"
  762. },
  763. {
  764. "url": "https://www.patreon.com/phpdoctrine",
  765. "type": "patreon"
  766. },
  767. {
  768. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  769. "type": "tidelift"
  770. }
  771. ],
  772. "time": "2022-10-12T20:59:15+00:00"
  773. },
  774. {
  775. "name": "doctrine/inflector",
  776. "version": "2.0.6",
  777. "source": {
  778. "type": "git",
  779. "url": "https://github.com/doctrine/inflector.git",
  780. "reference": "d9d313a36c872fd6ee06d9a6cbcf713eaa40f024"
  781. },
  782. "dist": {
  783. "type": "zip",
  784. "url": "https://api.github.com/repos/doctrine/inflector/zipball/d9d313a36c872fd6ee06d9a6cbcf713eaa40f024",
  785. "reference": "d9d313a36c872fd6ee06d9a6cbcf713eaa40f024",
  786. "shasum": ""
  787. },
  788. "require": {
  789. "php": "^7.2 || ^8.0"
  790. },
  791. "require-dev": {
  792. "doctrine/coding-standard": "^10",
  793. "phpstan/phpstan": "^1.8",
  794. "phpstan/phpstan-phpunit": "^1.1",
  795. "phpstan/phpstan-strict-rules": "^1.3",
  796. "phpunit/phpunit": "^8.5 || ^9.5",
  797. "vimeo/psalm": "^4.25"
  798. },
  799. "type": "library",
  800. "autoload": {
  801. "psr-4": {
  802. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  803. }
  804. },
  805. "notification-url": "https://packagist.org/downloads/",
  806. "license": [
  807. "MIT"
  808. ],
  809. "authors": [
  810. {
  811. "name": "Guilherme Blanco",
  812. "email": "guilhermeblanco@gmail.com"
  813. },
  814. {
  815. "name": "Roman Borschel",
  816. "email": "roman@code-factory.org"
  817. },
  818. {
  819. "name": "Benjamin Eberlei",
  820. "email": "kontakt@beberlei.de"
  821. },
  822. {
  823. "name": "Jonathan Wage",
  824. "email": "jonwage@gmail.com"
  825. },
  826. {
  827. "name": "Johannes Schmitt",
  828. "email": "schmittjoh@gmail.com"
  829. }
  830. ],
  831. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  832. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  833. "keywords": [
  834. "inflection",
  835. "inflector",
  836. "lowercase",
  837. "manipulation",
  838. "php",
  839. "plural",
  840. "singular",
  841. "strings",
  842. "uppercase",
  843. "words"
  844. ],
  845. "support": {
  846. "issues": "https://github.com/doctrine/inflector/issues",
  847. "source": "https://github.com/doctrine/inflector/tree/2.0.6"
  848. },
  849. "funding": [
  850. {
  851. "url": "https://www.doctrine-project.org/sponsorship.html",
  852. "type": "custom"
  853. },
  854. {
  855. "url": "https://www.patreon.com/phpdoctrine",
  856. "type": "patreon"
  857. },
  858. {
  859. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  860. "type": "tidelift"
  861. }
  862. ],
  863. "time": "2022-10-20T09:10:12+00:00"
  864. },
  865. {
  866. "name": "doctrine/lexer",
  867. "version": "3.0.0",
  868. "source": {
  869. "type": "git",
  870. "url": "https://github.com/doctrine/lexer.git",
  871. "reference": "84a527db05647743d50373e0ec53a152f2cde568"
  872. },
  873. "dist": {
  874. "type": "zip",
  875. "url": "https://api.github.com/repos/doctrine/lexer/zipball/84a527db05647743d50373e0ec53a152f2cde568",
  876. "reference": "84a527db05647743d50373e0ec53a152f2cde568",
  877. "shasum": ""
  878. },
  879. "require": {
  880. "php": "^8.1"
  881. },
  882. "require-dev": {
  883. "doctrine/coding-standard": "^10",
  884. "phpstan/phpstan": "^1.9",
  885. "phpunit/phpunit": "^9.5",
  886. "psalm/plugin-phpunit": "^0.18.3",
  887. "vimeo/psalm": "^5.0"
  888. },
  889. "type": "library",
  890. "autoload": {
  891. "psr-4": {
  892. "Doctrine\\Common\\Lexer\\": "src"
  893. }
  894. },
  895. "notification-url": "https://packagist.org/downloads/",
  896. "license": [
  897. "MIT"
  898. ],
  899. "authors": [
  900. {
  901. "name": "Guilherme Blanco",
  902. "email": "guilhermeblanco@gmail.com"
  903. },
  904. {
  905. "name": "Roman Borschel",
  906. "email": "roman@code-factory.org"
  907. },
  908. {
  909. "name": "Johannes Schmitt",
  910. "email": "schmittjoh@gmail.com"
  911. }
  912. ],
  913. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  914. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  915. "keywords": [
  916. "annotations",
  917. "docblock",
  918. "lexer",
  919. "parser",
  920. "php"
  921. ],
  922. "support": {
  923. "issues": "https://github.com/doctrine/lexer/issues",
  924. "source": "https://github.com/doctrine/lexer/tree/3.0.0"
  925. },
  926. "funding": [
  927. {
  928. "url": "https://www.doctrine-project.org/sponsorship.html",
  929. "type": "custom"
  930. },
  931. {
  932. "url": "https://www.patreon.com/phpdoctrine",
  933. "type": "patreon"
  934. },
  935. {
  936. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  937. "type": "tidelift"
  938. }
  939. ],
  940. "time": "2022-12-15T16:57:16+00:00"
  941. },
  942. {
  943. "name": "dompdf/dompdf",
  944. "version": "v2.0.3",
  945. "source": {
  946. "type": "git",
  947. "url": "https://github.com/dompdf/dompdf.git",
  948. "reference": "e8d2d5e37e8b0b30f0732a011295ab80680d7e85"
  949. },
  950. "dist": {
  951. "type": "zip",
  952. "url": "https://api.github.com/repos/dompdf/dompdf/zipball/e8d2d5e37e8b0b30f0732a011295ab80680d7e85",
  953. "reference": "e8d2d5e37e8b0b30f0732a011295ab80680d7e85",
  954. "shasum": ""
  955. },
  956. "require": {
  957. "ext-dom": "*",
  958. "ext-mbstring": "*",
  959. "masterminds/html5": "^2.0",
  960. "phenx/php-font-lib": ">=0.5.4 <1.0.0",
  961. "phenx/php-svg-lib": ">=0.3.3 <1.0.0",
  962. "php": "^7.1 || ^8.0"
  963. },
  964. "require-dev": {
  965. "ext-json": "*",
  966. "ext-zip": "*",
  967. "mockery/mockery": "^1.3",
  968. "phpunit/phpunit": "^7.5 || ^8 || ^9",
  969. "squizlabs/php_codesniffer": "^3.5"
  970. },
  971. "suggest": {
  972. "ext-gd": "Needed to process images",
  973. "ext-gmagick": "Improves image processing performance",
  974. "ext-imagick": "Improves image processing performance",
  975. "ext-zlib": "Needed for pdf stream compression"
  976. },
  977. "type": "library",
  978. "autoload": {
  979. "psr-4": {
  980. "Dompdf\\": "src/"
  981. },
  982. "classmap": [
  983. "lib/"
  984. ]
  985. },
  986. "notification-url": "https://packagist.org/downloads/",
  987. "license": [
  988. "LGPL-2.1"
  989. ],
  990. "authors": [
  991. {
  992. "name": "The Dompdf Community",
  993. "homepage": "https://github.com/dompdf/dompdf/blob/master/AUTHORS.md"
  994. }
  995. ],
  996. "description": "DOMPDF is a CSS 2.1 compliant HTML to PDF converter",
  997. "homepage": "https://github.com/dompdf/dompdf",
  998. "support": {
  999. "issues": "https://github.com/dompdf/dompdf/issues",
  1000. "source": "https://github.com/dompdf/dompdf/tree/v2.0.3"
  1001. },
  1002. "time": "2023-02-07T12:51:48+00:00"
  1003. },
  1004. {
  1005. "name": "dragonmantank/cron-expression",
  1006. "version": "v3.3.2",
  1007. "source": {
  1008. "type": "git",
  1009. "url": "https://github.com/dragonmantank/cron-expression.git",
  1010. "reference": "782ca5968ab8b954773518e9e49a6f892a34b2a8"
  1011. },
  1012. "dist": {
  1013. "type": "zip",
  1014. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/782ca5968ab8b954773518e9e49a6f892a34b2a8",
  1015. "reference": "782ca5968ab8b954773518e9e49a6f892a34b2a8",
  1016. "shasum": ""
  1017. },
  1018. "require": {
  1019. "php": "^7.2|^8.0",
  1020. "webmozart/assert": "^1.0"
  1021. },
  1022. "replace": {
  1023. "mtdowling/cron-expression": "^1.0"
  1024. },
  1025. "require-dev": {
  1026. "phpstan/extension-installer": "^1.0",
  1027. "phpstan/phpstan": "^1.0",
  1028. "phpstan/phpstan-webmozart-assert": "^1.0",
  1029. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  1030. },
  1031. "type": "library",
  1032. "autoload": {
  1033. "psr-4": {
  1034. "Cron\\": "src/Cron/"
  1035. }
  1036. },
  1037. "notification-url": "https://packagist.org/downloads/",
  1038. "license": [
  1039. "MIT"
  1040. ],
  1041. "authors": [
  1042. {
  1043. "name": "Chris Tankersley",
  1044. "email": "chris@ctankersley.com",
  1045. "homepage": "https://github.com/dragonmantank"
  1046. }
  1047. ],
  1048. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1049. "keywords": [
  1050. "cron",
  1051. "schedule"
  1052. ],
  1053. "support": {
  1054. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  1055. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.2"
  1056. },
  1057. "funding": [
  1058. {
  1059. "url": "https://github.com/dragonmantank",
  1060. "type": "github"
  1061. }
  1062. ],
  1063. "time": "2022-09-10T18:51:20+00:00"
  1064. },
  1065. {
  1066. "name": "egulias/email-validator",
  1067. "version": "4.0.1",
  1068. "source": {
  1069. "type": "git",
  1070. "url": "https://github.com/egulias/EmailValidator.git",
  1071. "reference": "3a85486b709bc384dae8eb78fb2eec649bdb64ff"
  1072. },
  1073. "dist": {
  1074. "type": "zip",
  1075. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/3a85486b709bc384dae8eb78fb2eec649bdb64ff",
  1076. "reference": "3a85486b709bc384dae8eb78fb2eec649bdb64ff",
  1077. "shasum": ""
  1078. },
  1079. "require": {
  1080. "doctrine/lexer": "^2.0 || ^3.0",
  1081. "php": ">=8.1",
  1082. "symfony/polyfill-intl-idn": "^1.26"
  1083. },
  1084. "require-dev": {
  1085. "phpunit/phpunit": "^9.5.27",
  1086. "vimeo/psalm": "^4.30"
  1087. },
  1088. "suggest": {
  1089. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1090. },
  1091. "type": "library",
  1092. "extra": {
  1093. "branch-alias": {
  1094. "dev-master": "4.0.x-dev"
  1095. }
  1096. },
  1097. "autoload": {
  1098. "psr-4": {
  1099. "Egulias\\EmailValidator\\": "src"
  1100. }
  1101. },
  1102. "notification-url": "https://packagist.org/downloads/",
  1103. "license": [
  1104. "MIT"
  1105. ],
  1106. "authors": [
  1107. {
  1108. "name": "Eduardo Gulias Davis"
  1109. }
  1110. ],
  1111. "description": "A library for validating emails against several RFCs",
  1112. "homepage": "https://github.com/egulias/EmailValidator",
  1113. "keywords": [
  1114. "email",
  1115. "emailvalidation",
  1116. "emailvalidator",
  1117. "validation",
  1118. "validator"
  1119. ],
  1120. "support": {
  1121. "issues": "https://github.com/egulias/EmailValidator/issues",
  1122. "source": "https://github.com/egulias/EmailValidator/tree/4.0.1"
  1123. },
  1124. "funding": [
  1125. {
  1126. "url": "https://github.com/egulias",
  1127. "type": "github"
  1128. }
  1129. ],
  1130. "time": "2023-01-14T14:17:03+00:00"
  1131. },
  1132. {
  1133. "name": "facade/ignition-contracts",
  1134. "version": "1.0.2",
  1135. "source": {
  1136. "type": "git",
  1137. "url": "https://github.com/facade/ignition-contracts.git",
  1138. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  1139. },
  1140. "dist": {
  1141. "type": "zip",
  1142. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  1143. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  1144. "shasum": ""
  1145. },
  1146. "require": {
  1147. "php": "^7.3|^8.0"
  1148. },
  1149. "require-dev": {
  1150. "friendsofphp/php-cs-fixer": "^v2.15.8",
  1151. "phpunit/phpunit": "^9.3.11",
  1152. "vimeo/psalm": "^3.17.1"
  1153. },
  1154. "type": "library",
  1155. "autoload": {
  1156. "psr-4": {
  1157. "Facade\\IgnitionContracts\\": "src"
  1158. }
  1159. },
  1160. "notification-url": "https://packagist.org/downloads/",
  1161. "license": [
  1162. "MIT"
  1163. ],
  1164. "authors": [
  1165. {
  1166. "name": "Freek Van der Herten",
  1167. "email": "freek@spatie.be",
  1168. "homepage": "https://flareapp.io",
  1169. "role": "Developer"
  1170. }
  1171. ],
  1172. "description": "Solution contracts for Ignition",
  1173. "homepage": "https://github.com/facade/ignition-contracts",
  1174. "keywords": [
  1175. "contracts",
  1176. "flare",
  1177. "ignition"
  1178. ],
  1179. "support": {
  1180. "issues": "https://github.com/facade/ignition-contracts/issues",
  1181. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  1182. },
  1183. "time": "2020-10-16T08:27:54+00:00"
  1184. },
  1185. {
  1186. "name": "fruitcake/php-cors",
  1187. "version": "v1.2.0",
  1188. "source": {
  1189. "type": "git",
  1190. "url": "https://github.com/fruitcake/php-cors.git",
  1191. "reference": "58571acbaa5f9f462c9c77e911700ac66f446d4e"
  1192. },
  1193. "dist": {
  1194. "type": "zip",
  1195. "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/58571acbaa5f9f462c9c77e911700ac66f446d4e",
  1196. "reference": "58571acbaa5f9f462c9c77e911700ac66f446d4e",
  1197. "shasum": ""
  1198. },
  1199. "require": {
  1200. "php": "^7.4|^8.0",
  1201. "symfony/http-foundation": "^4.4|^5.4|^6"
  1202. },
  1203. "require-dev": {
  1204. "phpstan/phpstan": "^1.4",
  1205. "phpunit/phpunit": "^9",
  1206. "squizlabs/php_codesniffer": "^3.5"
  1207. },
  1208. "type": "library",
  1209. "extra": {
  1210. "branch-alias": {
  1211. "dev-main": "1.1-dev"
  1212. }
  1213. },
  1214. "autoload": {
  1215. "psr-4": {
  1216. "Fruitcake\\Cors\\": "src/"
  1217. }
  1218. },
  1219. "notification-url": "https://packagist.org/downloads/",
  1220. "license": [
  1221. "MIT"
  1222. ],
  1223. "authors": [
  1224. {
  1225. "name": "Fruitcake",
  1226. "homepage": "https://fruitcake.nl"
  1227. },
  1228. {
  1229. "name": "Barryvdh",
  1230. "email": "barryvdh@gmail.com"
  1231. }
  1232. ],
  1233. "description": "Cross-origin resource sharing library for the Symfony HttpFoundation",
  1234. "homepage": "https://github.com/fruitcake/php-cors",
  1235. "keywords": [
  1236. "cors",
  1237. "laravel",
  1238. "symfony"
  1239. ],
  1240. "support": {
  1241. "issues": "https://github.com/fruitcake/php-cors/issues",
  1242. "source": "https://github.com/fruitcake/php-cors/tree/v1.2.0"
  1243. },
  1244. "funding": [
  1245. {
  1246. "url": "https://fruitcake.nl",
  1247. "type": "custom"
  1248. },
  1249. {
  1250. "url": "https://github.com/barryvdh",
  1251. "type": "github"
  1252. }
  1253. ],
  1254. "time": "2022-02-20T15:07:15+00:00"
  1255. },
  1256. {
  1257. "name": "graham-campbell/result-type",
  1258. "version": "v1.1.1",
  1259. "source": {
  1260. "type": "git",
  1261. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  1262. "reference": "672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831"
  1263. },
  1264. "dist": {
  1265. "type": "zip",
  1266. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831",
  1267. "reference": "672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831",
  1268. "shasum": ""
  1269. },
  1270. "require": {
  1271. "php": "^7.2.5 || ^8.0",
  1272. "phpoption/phpoption": "^1.9.1"
  1273. },
  1274. "require-dev": {
  1275. "phpunit/phpunit": "^8.5.32 || ^9.6.3 || ^10.0.12"
  1276. },
  1277. "type": "library",
  1278. "autoload": {
  1279. "psr-4": {
  1280. "GrahamCampbell\\ResultType\\": "src/"
  1281. }
  1282. },
  1283. "notification-url": "https://packagist.org/downloads/",
  1284. "license": [
  1285. "MIT"
  1286. ],
  1287. "authors": [
  1288. {
  1289. "name": "Graham Campbell",
  1290. "email": "hello@gjcampbell.co.uk",
  1291. "homepage": "https://github.com/GrahamCampbell"
  1292. }
  1293. ],
  1294. "description": "An Implementation Of The Result Type",
  1295. "keywords": [
  1296. "Graham Campbell",
  1297. "GrahamCampbell",
  1298. "Result Type",
  1299. "Result-Type",
  1300. "result"
  1301. ],
  1302. "support": {
  1303. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  1304. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.1"
  1305. },
  1306. "funding": [
  1307. {
  1308. "url": "https://github.com/GrahamCampbell",
  1309. "type": "github"
  1310. },
  1311. {
  1312. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  1313. "type": "tidelift"
  1314. }
  1315. ],
  1316. "time": "2023-02-25T20:23:15+00:00"
  1317. },
  1318. {
  1319. "name": "guzzlehttp/guzzle",
  1320. "version": "7.5.0",
  1321. "source": {
  1322. "type": "git",
  1323. "url": "https://github.com/guzzle/guzzle.git",
  1324. "reference": "b50a2a1251152e43f6a37f0fa053e730a67d25ba"
  1325. },
  1326. "dist": {
  1327. "type": "zip",
  1328. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/b50a2a1251152e43f6a37f0fa053e730a67d25ba",
  1329. "reference": "b50a2a1251152e43f6a37f0fa053e730a67d25ba",
  1330. "shasum": ""
  1331. },
  1332. "require": {
  1333. "ext-json": "*",
  1334. "guzzlehttp/promises": "^1.5",
  1335. "guzzlehttp/psr7": "^1.9 || ^2.4",
  1336. "php": "^7.2.5 || ^8.0",
  1337. "psr/http-client": "^1.0",
  1338. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1339. },
  1340. "provide": {
  1341. "psr/http-client-implementation": "1.0"
  1342. },
  1343. "require-dev": {
  1344. "bamarni/composer-bin-plugin": "^1.8.1",
  1345. "ext-curl": "*",
  1346. "php-http/client-integration-tests": "^3.0",
  1347. "phpunit/phpunit": "^8.5.29 || ^9.5.23",
  1348. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1349. },
  1350. "suggest": {
  1351. "ext-curl": "Required for CURL handler support",
  1352. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1353. "psr/log": "Required for using the Log middleware"
  1354. },
  1355. "type": "library",
  1356. "extra": {
  1357. "bamarni-bin": {
  1358. "bin-links": true,
  1359. "forward-command": false
  1360. },
  1361. "branch-alias": {
  1362. "dev-master": "7.5-dev"
  1363. }
  1364. },
  1365. "autoload": {
  1366. "files": [
  1367. "src/functions_include.php"
  1368. ],
  1369. "psr-4": {
  1370. "GuzzleHttp\\": "src/"
  1371. }
  1372. },
  1373. "notification-url": "https://packagist.org/downloads/",
  1374. "license": [
  1375. "MIT"
  1376. ],
  1377. "authors": [
  1378. {
  1379. "name": "Graham Campbell",
  1380. "email": "hello@gjcampbell.co.uk",
  1381. "homepage": "https://github.com/GrahamCampbell"
  1382. },
  1383. {
  1384. "name": "Michael Dowling",
  1385. "email": "mtdowling@gmail.com",
  1386. "homepage": "https://github.com/mtdowling"
  1387. },
  1388. {
  1389. "name": "Jeremy Lindblom",
  1390. "email": "jeremeamia@gmail.com",
  1391. "homepage": "https://github.com/jeremeamia"
  1392. },
  1393. {
  1394. "name": "George Mponos",
  1395. "email": "gmponos@gmail.com",
  1396. "homepage": "https://github.com/gmponos"
  1397. },
  1398. {
  1399. "name": "Tobias Nyholm",
  1400. "email": "tobias.nyholm@gmail.com",
  1401. "homepage": "https://github.com/Nyholm"
  1402. },
  1403. {
  1404. "name": "Márk Sági-Kazár",
  1405. "email": "mark.sagikazar@gmail.com",
  1406. "homepage": "https://github.com/sagikazarmark"
  1407. },
  1408. {
  1409. "name": "Tobias Schultze",
  1410. "email": "webmaster@tubo-world.de",
  1411. "homepage": "https://github.com/Tobion"
  1412. }
  1413. ],
  1414. "description": "Guzzle is a PHP HTTP client library",
  1415. "keywords": [
  1416. "client",
  1417. "curl",
  1418. "framework",
  1419. "http",
  1420. "http client",
  1421. "psr-18",
  1422. "psr-7",
  1423. "rest",
  1424. "web service"
  1425. ],
  1426. "support": {
  1427. "issues": "https://github.com/guzzle/guzzle/issues",
  1428. "source": "https://github.com/guzzle/guzzle/tree/7.5.0"
  1429. },
  1430. "funding": [
  1431. {
  1432. "url": "https://github.com/GrahamCampbell",
  1433. "type": "github"
  1434. },
  1435. {
  1436. "url": "https://github.com/Nyholm",
  1437. "type": "github"
  1438. },
  1439. {
  1440. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1441. "type": "tidelift"
  1442. }
  1443. ],
  1444. "time": "2022-08-28T15:39:27+00:00"
  1445. },
  1446. {
  1447. "name": "guzzlehttp/promises",
  1448. "version": "1.5.2",
  1449. "source": {
  1450. "type": "git",
  1451. "url": "https://github.com/guzzle/promises.git",
  1452. "reference": "b94b2807d85443f9719887892882d0329d1e2598"
  1453. },
  1454. "dist": {
  1455. "type": "zip",
  1456. "url": "https://api.github.com/repos/guzzle/promises/zipball/b94b2807d85443f9719887892882d0329d1e2598",
  1457. "reference": "b94b2807d85443f9719887892882d0329d1e2598",
  1458. "shasum": ""
  1459. },
  1460. "require": {
  1461. "php": ">=5.5"
  1462. },
  1463. "require-dev": {
  1464. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  1465. },
  1466. "type": "library",
  1467. "extra": {
  1468. "branch-alias": {
  1469. "dev-master": "1.5-dev"
  1470. }
  1471. },
  1472. "autoload": {
  1473. "files": [
  1474. "src/functions_include.php"
  1475. ],
  1476. "psr-4": {
  1477. "GuzzleHttp\\Promise\\": "src/"
  1478. }
  1479. },
  1480. "notification-url": "https://packagist.org/downloads/",
  1481. "license": [
  1482. "MIT"
  1483. ],
  1484. "authors": [
  1485. {
  1486. "name": "Graham Campbell",
  1487. "email": "hello@gjcampbell.co.uk",
  1488. "homepage": "https://github.com/GrahamCampbell"
  1489. },
  1490. {
  1491. "name": "Michael Dowling",
  1492. "email": "mtdowling@gmail.com",
  1493. "homepage": "https://github.com/mtdowling"
  1494. },
  1495. {
  1496. "name": "Tobias Nyholm",
  1497. "email": "tobias.nyholm@gmail.com",
  1498. "homepage": "https://github.com/Nyholm"
  1499. },
  1500. {
  1501. "name": "Tobias Schultze",
  1502. "email": "webmaster@tubo-world.de",
  1503. "homepage": "https://github.com/Tobion"
  1504. }
  1505. ],
  1506. "description": "Guzzle promises library",
  1507. "keywords": [
  1508. "promise"
  1509. ],
  1510. "support": {
  1511. "issues": "https://github.com/guzzle/promises/issues",
  1512. "source": "https://github.com/guzzle/promises/tree/1.5.2"
  1513. },
  1514. "funding": [
  1515. {
  1516. "url": "https://github.com/GrahamCampbell",
  1517. "type": "github"
  1518. },
  1519. {
  1520. "url": "https://github.com/Nyholm",
  1521. "type": "github"
  1522. },
  1523. {
  1524. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1525. "type": "tidelift"
  1526. }
  1527. ],
  1528. "time": "2022-08-28T14:55:35+00:00"
  1529. },
  1530. {
  1531. "name": "guzzlehttp/psr7",
  1532. "version": "2.4.4",
  1533. "source": {
  1534. "type": "git",
  1535. "url": "https://github.com/guzzle/psr7.git",
  1536. "reference": "3cf1b6d4f0c820a2cf8bcaec39fc698f3443b5cf"
  1537. },
  1538. "dist": {
  1539. "type": "zip",
  1540. "url": "https://api.github.com/repos/guzzle/psr7/zipball/3cf1b6d4f0c820a2cf8bcaec39fc698f3443b5cf",
  1541. "reference": "3cf1b6d4f0c820a2cf8bcaec39fc698f3443b5cf",
  1542. "shasum": ""
  1543. },
  1544. "require": {
  1545. "php": "^7.2.5 || ^8.0",
  1546. "psr/http-factory": "^1.0",
  1547. "psr/http-message": "^1.0",
  1548. "ralouphie/getallheaders": "^3.0"
  1549. },
  1550. "provide": {
  1551. "psr/http-factory-implementation": "1.0",
  1552. "psr/http-message-implementation": "1.0"
  1553. },
  1554. "require-dev": {
  1555. "bamarni/composer-bin-plugin": "^1.8.1",
  1556. "http-interop/http-factory-tests": "^0.9",
  1557. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  1558. },
  1559. "suggest": {
  1560. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1561. },
  1562. "type": "library",
  1563. "extra": {
  1564. "bamarni-bin": {
  1565. "bin-links": true,
  1566. "forward-command": false
  1567. },
  1568. "branch-alias": {
  1569. "dev-master": "2.4-dev"
  1570. }
  1571. },
  1572. "autoload": {
  1573. "psr-4": {
  1574. "GuzzleHttp\\Psr7\\": "src/"
  1575. }
  1576. },
  1577. "notification-url": "https://packagist.org/downloads/",
  1578. "license": [
  1579. "MIT"
  1580. ],
  1581. "authors": [
  1582. {
  1583. "name": "Graham Campbell",
  1584. "email": "hello@gjcampbell.co.uk",
  1585. "homepage": "https://github.com/GrahamCampbell"
  1586. },
  1587. {
  1588. "name": "Michael Dowling",
  1589. "email": "mtdowling@gmail.com",
  1590. "homepage": "https://github.com/mtdowling"
  1591. },
  1592. {
  1593. "name": "George Mponos",
  1594. "email": "gmponos@gmail.com",
  1595. "homepage": "https://github.com/gmponos"
  1596. },
  1597. {
  1598. "name": "Tobias Nyholm",
  1599. "email": "tobias.nyholm@gmail.com",
  1600. "homepage": "https://github.com/Nyholm"
  1601. },
  1602. {
  1603. "name": "Márk Sági-Kazár",
  1604. "email": "mark.sagikazar@gmail.com",
  1605. "homepage": "https://github.com/sagikazarmark"
  1606. },
  1607. {
  1608. "name": "Tobias Schultze",
  1609. "email": "webmaster@tubo-world.de",
  1610. "homepage": "https://github.com/Tobion"
  1611. },
  1612. {
  1613. "name": "Márk Sági-Kazár",
  1614. "email": "mark.sagikazar@gmail.com",
  1615. "homepage": "https://sagikazarmark.hu"
  1616. }
  1617. ],
  1618. "description": "PSR-7 message implementation that also provides common utility methods",
  1619. "keywords": [
  1620. "http",
  1621. "message",
  1622. "psr-7",
  1623. "request",
  1624. "response",
  1625. "stream",
  1626. "uri",
  1627. "url"
  1628. ],
  1629. "support": {
  1630. "issues": "https://github.com/guzzle/psr7/issues",
  1631. "source": "https://github.com/guzzle/psr7/tree/2.4.4"
  1632. },
  1633. "funding": [
  1634. {
  1635. "url": "https://github.com/GrahamCampbell",
  1636. "type": "github"
  1637. },
  1638. {
  1639. "url": "https://github.com/Nyholm",
  1640. "type": "github"
  1641. },
  1642. {
  1643. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1644. "type": "tidelift"
  1645. }
  1646. ],
  1647. "time": "2023-03-09T13:19:02+00:00"
  1648. },
  1649. {
  1650. "name": "guzzlehttp/uri-template",
  1651. "version": "v1.0.1",
  1652. "source": {
  1653. "type": "git",
  1654. "url": "https://github.com/guzzle/uri-template.git",
  1655. "reference": "b945d74a55a25a949158444f09ec0d3c120d69e2"
  1656. },
  1657. "dist": {
  1658. "type": "zip",
  1659. "url": "https://api.github.com/repos/guzzle/uri-template/zipball/b945d74a55a25a949158444f09ec0d3c120d69e2",
  1660. "reference": "b945d74a55a25a949158444f09ec0d3c120d69e2",
  1661. "shasum": ""
  1662. },
  1663. "require": {
  1664. "php": "^7.2.5 || ^8.0",
  1665. "symfony/polyfill-php80": "^1.17"
  1666. },
  1667. "require-dev": {
  1668. "phpunit/phpunit": "^8.5.19 || ^9.5.8",
  1669. "uri-template/tests": "1.0.0"
  1670. },
  1671. "type": "library",
  1672. "extra": {
  1673. "branch-alias": {
  1674. "dev-master": "1.0-dev"
  1675. }
  1676. },
  1677. "autoload": {
  1678. "psr-4": {
  1679. "GuzzleHttp\\UriTemplate\\": "src"
  1680. }
  1681. },
  1682. "notification-url": "https://packagist.org/downloads/",
  1683. "license": [
  1684. "MIT"
  1685. ],
  1686. "authors": [
  1687. {
  1688. "name": "Graham Campbell",
  1689. "email": "hello@gjcampbell.co.uk",
  1690. "homepage": "https://github.com/GrahamCampbell"
  1691. },
  1692. {
  1693. "name": "Michael Dowling",
  1694. "email": "mtdowling@gmail.com",
  1695. "homepage": "https://github.com/mtdowling"
  1696. },
  1697. {
  1698. "name": "George Mponos",
  1699. "email": "gmponos@gmail.com",
  1700. "homepage": "https://github.com/gmponos"
  1701. },
  1702. {
  1703. "name": "Tobias Nyholm",
  1704. "email": "tobias.nyholm@gmail.com",
  1705. "homepage": "https://github.com/Nyholm"
  1706. }
  1707. ],
  1708. "description": "A polyfill class for uri_template of PHP",
  1709. "keywords": [
  1710. "guzzlehttp",
  1711. "uri-template"
  1712. ],
  1713. "support": {
  1714. "issues": "https://github.com/guzzle/uri-template/issues",
  1715. "source": "https://github.com/guzzle/uri-template/tree/v1.0.1"
  1716. },
  1717. "funding": [
  1718. {
  1719. "url": "https://github.com/GrahamCampbell",
  1720. "type": "github"
  1721. },
  1722. {
  1723. "url": "https://github.com/Nyholm",
  1724. "type": "github"
  1725. },
  1726. {
  1727. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
  1728. "type": "tidelift"
  1729. }
  1730. ],
  1731. "time": "2021-10-07T12:57:01+00:00"
  1732. },
  1733. {
  1734. "name": "hidehalo/nanoid-php",
  1735. "version": "1.1.12",
  1736. "source": {
  1737. "type": "git",
  1738. "url": "https://github.com/hidehalo/nanoid-php.git",
  1739. "reference": "3229400d7e69b127a9e4f8fdad2e498e64cdaae4"
  1740. },
  1741. "dist": {
  1742. "type": "zip",
  1743. "url": "https://api.github.com/repos/hidehalo/nanoid-php/zipball/3229400d7e69b127a9e4f8fdad2e498e64cdaae4",
  1744. "reference": "3229400d7e69b127a9e4f8fdad2e498e64cdaae4",
  1745. "shasum": ""
  1746. },
  1747. "require": {
  1748. "paragonie/random_compat": ">=2.0",
  1749. "php": "~5.6|~7.0|~8.0"
  1750. },
  1751. "require-dev": {
  1752. "phpunit/phpunit": ">=5.6",
  1753. "squizlabs/php_codesniffer": "^2.3"
  1754. },
  1755. "type": "library",
  1756. "extra": {
  1757. "branch-alias": {
  1758. "dev-master": "1.0-dev"
  1759. }
  1760. },
  1761. "autoload": {
  1762. "psr-4": {
  1763. "Hidehalo\\Nanoid\\": "src"
  1764. }
  1765. },
  1766. "notification-url": "https://packagist.org/downloads/",
  1767. "license": [
  1768. "MIT"
  1769. ],
  1770. "authors": [
  1771. {
  1772. "name": "hidehalo",
  1773. "email": "tianchen_cc@yeah.net",
  1774. "homepage": "https://github.com/hidehalo",
  1775. "role": "Owner"
  1776. }
  1777. ],
  1778. "description": "A copy of nanoid in PHP",
  1779. "homepage": "https://github.com/hidehalo/nanoid-php",
  1780. "keywords": [
  1781. "hidehalo",
  1782. "nanoid-php"
  1783. ],
  1784. "support": {
  1785. "issues": "https://github.com/hidehalo/nanoid-php/issues",
  1786. "source": "https://github.com/hidehalo/nanoid-php/tree/1.1.12"
  1787. },
  1788. "time": "2021-12-30T07:27:43+00:00"
  1789. },
  1790. {
  1791. "name": "kkomelin/laravel-translatable-string-exporter",
  1792. "version": "1.21.0",
  1793. "source": {
  1794. "type": "git",
  1795. "url": "https://github.com/kkomelin/laravel-translatable-string-exporter.git",
  1796. "reference": "51e6575223c345be359f5387ecaaf6bb7fc1de3d"
  1797. },
  1798. "dist": {
  1799. "type": "zip",
  1800. "url": "https://api.github.com/repos/kkomelin/laravel-translatable-string-exporter/zipball/51e6575223c345be359f5387ecaaf6bb7fc1de3d",
  1801. "reference": "51e6575223c345be359f5387ecaaf6bb7fc1de3d",
  1802. "shasum": ""
  1803. },
  1804. "require": {
  1805. "ext-json": "*",
  1806. "illuminate/support": "^8|^9|^10.0",
  1807. "illuminate/translation": "^8|^9|^10.0",
  1808. "php": "^8.0",
  1809. "symfony/finder": "^5|^6"
  1810. },
  1811. "require-dev": {
  1812. "nunomaduro/larastan": "^1.0|^2.0",
  1813. "orchestra/testbench": "^6.0|^7.0|^8.0",
  1814. "phpunit/phpunit": "^9.0"
  1815. },
  1816. "type": "library",
  1817. "extra": {
  1818. "laravel": {
  1819. "providers": [
  1820. "KKomelin\\TranslatableStringExporter\\Providers\\ExporterServiceProvider"
  1821. ]
  1822. }
  1823. },
  1824. "autoload": {
  1825. "psr-4": {
  1826. "KKomelin\\TranslatableStringExporter\\": "src/"
  1827. }
  1828. },
  1829. "notification-url": "https://packagist.org/downloads/",
  1830. "license": [
  1831. "MIT"
  1832. ],
  1833. "authors": [
  1834. {
  1835. "name": "Konstantin Komelin",
  1836. "email": "konstantin.komelin@gmail.com"
  1837. }
  1838. ],
  1839. "description": "Translatable String Exporter for Laravel",
  1840. "keywords": [
  1841. "export",
  1842. "exporter",
  1843. "json",
  1844. "laravel",
  1845. "localization",
  1846. "translation",
  1847. "translations"
  1848. ],
  1849. "support": {
  1850. "issues": "https://github.com/kkomelin/laravel-translatable-string-exporter/issues",
  1851. "source": "https://github.com/kkomelin/laravel-translatable-string-exporter/tree/1.21.0"
  1852. },
  1853. "time": "2023-03-14T04:18:49+00:00"
  1854. },
  1855. {
  1856. "name": "laminas/laminas-stdlib",
  1857. "version": "3.17.0",
  1858. "source": {
  1859. "type": "git",
  1860. "url": "https://github.com/laminas/laminas-stdlib.git",
  1861. "reference": "dd35c868075bad80b6718959740913e178eb4274"
  1862. },
  1863. "dist": {
  1864. "type": "zip",
  1865. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/dd35c868075bad80b6718959740913e178eb4274",
  1866. "reference": "dd35c868075bad80b6718959740913e178eb4274",
  1867. "shasum": ""
  1868. },
  1869. "require": {
  1870. "php": "~8.1.0 || ~8.2.0"
  1871. },
  1872. "conflict": {
  1873. "zendframework/zend-stdlib": "*"
  1874. },
  1875. "require-dev": {
  1876. "laminas/laminas-coding-standard": "^2.5",
  1877. "phpbench/phpbench": "^1.2.9",
  1878. "phpunit/phpunit": "^10.0.16",
  1879. "psalm/plugin-phpunit": "^0.18.4",
  1880. "vimeo/psalm": "^5.8"
  1881. },
  1882. "type": "library",
  1883. "autoload": {
  1884. "psr-4": {
  1885. "Laminas\\Stdlib\\": "src/"
  1886. }
  1887. },
  1888. "notification-url": "https://packagist.org/downloads/",
  1889. "license": [
  1890. "BSD-3-Clause"
  1891. ],
  1892. "description": "SPL extensions, array utilities, error handlers, and more",
  1893. "homepage": "https://laminas.dev",
  1894. "keywords": [
  1895. "laminas",
  1896. "stdlib"
  1897. ],
  1898. "support": {
  1899. "chat": "https://laminas.dev/chat",
  1900. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  1901. "forum": "https://discourse.laminas.dev",
  1902. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  1903. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  1904. "source": "https://github.com/laminas/laminas-stdlib"
  1905. },
  1906. "funding": [
  1907. {
  1908. "url": "https://funding.communitybridge.org/projects/laminas-project",
  1909. "type": "community_bridge"
  1910. }
  1911. ],
  1912. "time": "2023-03-20T13:51:37+00:00"
  1913. },
  1914. {
  1915. "name": "laravel/framework",
  1916. "version": "v9.52.5",
  1917. "source": {
  1918. "type": "git",
  1919. "url": "https://github.com/laravel/framework.git",
  1920. "reference": "e14d28c0f9403630d13f308bb43f3d3cb73d6d67"
  1921. },
  1922. "dist": {
  1923. "type": "zip",
  1924. "url": "https://api.github.com/repos/laravel/framework/zipball/e14d28c0f9403630d13f308bb43f3d3cb73d6d67",
  1925. "reference": "e14d28c0f9403630d13f308bb43f3d3cb73d6d67",
  1926. "shasum": ""
  1927. },
  1928. "require": {
  1929. "brick/math": "^0.9.3|^0.10.2|^0.11",
  1930. "doctrine/inflector": "^2.0.5",
  1931. "dragonmantank/cron-expression": "^3.3.2",
  1932. "egulias/email-validator": "^3.2.1|^4.0",
  1933. "ext-ctype": "*",
  1934. "ext-filter": "*",
  1935. "ext-hash": "*",
  1936. "ext-mbstring": "*",
  1937. "ext-openssl": "*",
  1938. "ext-session": "*",
  1939. "ext-tokenizer": "*",
  1940. "fruitcake/php-cors": "^1.2",
  1941. "guzzlehttp/uri-template": "^1.0",
  1942. "laravel/serializable-closure": "^1.2.2",
  1943. "league/commonmark": "^2.2.1",
  1944. "league/flysystem": "^3.8.0",
  1945. "monolog/monolog": "^2.0",
  1946. "nesbot/carbon": "^2.62.1",
  1947. "nunomaduro/termwind": "^1.13",
  1948. "php": "^8.0.2",
  1949. "psr/container": "^1.1.1|^2.0.1",
  1950. "psr/log": "^1.0|^2.0|^3.0",
  1951. "psr/simple-cache": "^1.0|^2.0|^3.0",
  1952. "ramsey/uuid": "^4.7",
  1953. "symfony/console": "^6.0.9",
  1954. "symfony/error-handler": "^6.0",
  1955. "symfony/finder": "^6.0",
  1956. "symfony/http-foundation": "^6.0",
  1957. "symfony/http-kernel": "^6.0",
  1958. "symfony/mailer": "^6.0",
  1959. "symfony/mime": "^6.0",
  1960. "symfony/process": "^6.0",
  1961. "symfony/routing": "^6.0",
  1962. "symfony/uid": "^6.0",
  1963. "symfony/var-dumper": "^6.0",
  1964. "tijsverkoyen/css-to-inline-styles": "^2.2.5",
  1965. "vlucas/phpdotenv": "^5.4.1",
  1966. "voku/portable-ascii": "^2.0"
  1967. },
  1968. "conflict": {
  1969. "tightenco/collect": "<5.5.33"
  1970. },
  1971. "provide": {
  1972. "psr/container-implementation": "1.1|2.0",
  1973. "psr/simple-cache-implementation": "1.0|2.0|3.0"
  1974. },
  1975. "replace": {
  1976. "illuminate/auth": "self.version",
  1977. "illuminate/broadcasting": "self.version",
  1978. "illuminate/bus": "self.version",
  1979. "illuminate/cache": "self.version",
  1980. "illuminate/collections": "self.version",
  1981. "illuminate/conditionable": "self.version",
  1982. "illuminate/config": "self.version",
  1983. "illuminate/console": "self.version",
  1984. "illuminate/container": "self.version",
  1985. "illuminate/contracts": "self.version",
  1986. "illuminate/cookie": "self.version",
  1987. "illuminate/database": "self.version",
  1988. "illuminate/encryption": "self.version",
  1989. "illuminate/events": "self.version",
  1990. "illuminate/filesystem": "self.version",
  1991. "illuminate/hashing": "self.version",
  1992. "illuminate/http": "self.version",
  1993. "illuminate/log": "self.version",
  1994. "illuminate/macroable": "self.version",
  1995. "illuminate/mail": "self.version",
  1996. "illuminate/notifications": "self.version",
  1997. "illuminate/pagination": "self.version",
  1998. "illuminate/pipeline": "self.version",
  1999. "illuminate/queue": "self.version",
  2000. "illuminate/redis": "self.version",
  2001. "illuminate/routing": "self.version",
  2002. "illuminate/session": "self.version",
  2003. "illuminate/support": "self.version",
  2004. "illuminate/testing": "self.version",
  2005. "illuminate/translation": "self.version",
  2006. "illuminate/validation": "self.version",
  2007. "illuminate/view": "self.version"
  2008. },
  2009. "require-dev": {
  2010. "ably/ably-php": "^1.0",
  2011. "aws/aws-sdk-php": "^3.235.5",
  2012. "doctrine/dbal": "^2.13.3|^3.1.4",
  2013. "ext-gmp": "*",
  2014. "fakerphp/faker": "^1.21",
  2015. "guzzlehttp/guzzle": "^7.5",
  2016. "league/flysystem-aws-s3-v3": "^3.0",
  2017. "league/flysystem-ftp": "^3.0",
  2018. "league/flysystem-path-prefixing": "^3.3",
  2019. "league/flysystem-read-only": "^3.3",
  2020. "league/flysystem-sftp-v3": "^3.0",
  2021. "mockery/mockery": "^1.5.1",
  2022. "orchestra/testbench-core": "^7.16",
  2023. "pda/pheanstalk": "^4.0",
  2024. "phpstan/phpdoc-parser": "^1.15",
  2025. "phpstan/phpstan": "^1.4.7",
  2026. "phpunit/phpunit": "^9.5.8",
  2027. "predis/predis": "^1.1.9|^2.0.2",
  2028. "symfony/cache": "^6.0",
  2029. "symfony/http-client": "^6.0"
  2030. },
  2031. "suggest": {
  2032. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  2033. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.235.5).",
  2034. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  2035. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).",
  2036. "ext-apcu": "Required to use the APC cache driver.",
  2037. "ext-fileinfo": "Required to use the Filesystem class.",
  2038. "ext-ftp": "Required to use the Flysystem FTP driver.",
  2039. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  2040. "ext-memcached": "Required to use the memcache cache driver.",
  2041. "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.",
  2042. "ext-pdo": "Required to use all database features.",
  2043. "ext-posix": "Required to use all features of the queue worker.",
  2044. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  2045. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  2046. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  2047. "guzzlehttp/guzzle": "Required to use the HTTP Client and the ping methods on schedules (^7.5).",
  2048. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  2049. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.0).",
  2050. "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.0).",
  2051. "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.3).",
  2052. "league/flysystem-read-only": "Required to use read-only disks (^3.3)",
  2053. "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.0).",
  2054. "mockery/mockery": "Required to use mocking (^1.5.1).",
  2055. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  2056. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  2057. "phpunit/phpunit": "Required to use assertions and run tests (^9.5.8).",
  2058. "predis/predis": "Required to use the predis connector (^1.1.9|^2.0.2).",
  2059. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  2060. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).",
  2061. "symfony/cache": "Required to PSR-6 cache bridge (^6.0).",
  2062. "symfony/filesystem": "Required to enable support for relative symbolic links (^6.0).",
  2063. "symfony/http-client": "Required to enable support for the Symfony API mail transports (^6.0).",
  2064. "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^6.0).",
  2065. "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^6.0).",
  2066. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0)."
  2067. },
  2068. "type": "library",
  2069. "extra": {
  2070. "branch-alias": {
  2071. "dev-master": "9.x-dev"
  2072. }
  2073. },
  2074. "autoload": {
  2075. "files": [
  2076. "src/Illuminate/Collections/helpers.php",
  2077. "src/Illuminate/Events/functions.php",
  2078. "src/Illuminate/Foundation/helpers.php",
  2079. "src/Illuminate/Support/helpers.php"
  2080. ],
  2081. "psr-4": {
  2082. "Illuminate\\": "src/Illuminate/",
  2083. "Illuminate\\Support\\": [
  2084. "src/Illuminate/Macroable/",
  2085. "src/Illuminate/Collections/",
  2086. "src/Illuminate/Conditionable/"
  2087. ]
  2088. }
  2089. },
  2090. "notification-url": "https://packagist.org/downloads/",
  2091. "license": [
  2092. "MIT"
  2093. ],
  2094. "authors": [
  2095. {
  2096. "name": "Taylor Otwell",
  2097. "email": "taylor@laravel.com"
  2098. }
  2099. ],
  2100. "description": "The Laravel Framework.",
  2101. "homepage": "https://laravel.com",
  2102. "keywords": [
  2103. "framework",
  2104. "laravel"
  2105. ],
  2106. "support": {
  2107. "issues": "https://github.com/laravel/framework/issues",
  2108. "source": "https://github.com/laravel/framework"
  2109. },
  2110. "time": "2023-03-28T18:03:54+00:00"
  2111. },
  2112. {
  2113. "name": "laravel/serializable-closure",
  2114. "version": "v1.3.0",
  2115. "source": {
  2116. "type": "git",
  2117. "url": "https://github.com/laravel/serializable-closure.git",
  2118. "reference": "f23fe9d4e95255dacee1bf3525e0810d1a1b0f37"
  2119. },
  2120. "dist": {
  2121. "type": "zip",
  2122. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/f23fe9d4e95255dacee1bf3525e0810d1a1b0f37",
  2123. "reference": "f23fe9d4e95255dacee1bf3525e0810d1a1b0f37",
  2124. "shasum": ""
  2125. },
  2126. "require": {
  2127. "php": "^7.3|^8.0"
  2128. },
  2129. "require-dev": {
  2130. "nesbot/carbon": "^2.61",
  2131. "pestphp/pest": "^1.21.3",
  2132. "phpstan/phpstan": "^1.8.2",
  2133. "symfony/var-dumper": "^5.4.11"
  2134. },
  2135. "type": "library",
  2136. "extra": {
  2137. "branch-alias": {
  2138. "dev-master": "1.x-dev"
  2139. }
  2140. },
  2141. "autoload": {
  2142. "psr-4": {
  2143. "Laravel\\SerializableClosure\\": "src/"
  2144. }
  2145. },
  2146. "notification-url": "https://packagist.org/downloads/",
  2147. "license": [
  2148. "MIT"
  2149. ],
  2150. "authors": [
  2151. {
  2152. "name": "Taylor Otwell",
  2153. "email": "taylor@laravel.com"
  2154. },
  2155. {
  2156. "name": "Nuno Maduro",
  2157. "email": "nuno@laravel.com"
  2158. }
  2159. ],
  2160. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  2161. "keywords": [
  2162. "closure",
  2163. "laravel",
  2164. "serializable"
  2165. ],
  2166. "support": {
  2167. "issues": "https://github.com/laravel/serializable-closure/issues",
  2168. "source": "https://github.com/laravel/serializable-closure"
  2169. },
  2170. "time": "2023-01-30T18:31:20+00:00"
  2171. },
  2172. {
  2173. "name": "laravel/socialite",
  2174. "version": "v5.6.1",
  2175. "source": {
  2176. "type": "git",
  2177. "url": "https://github.com/laravel/socialite.git",
  2178. "reference": "a14a177f2cc71d8add71e2b19e00800e83bdda09"
  2179. },
  2180. "dist": {
  2181. "type": "zip",
  2182. "url": "https://api.github.com/repos/laravel/socialite/zipball/a14a177f2cc71d8add71e2b19e00800e83bdda09",
  2183. "reference": "a14a177f2cc71d8add71e2b19e00800e83bdda09",
  2184. "shasum": ""
  2185. },
  2186. "require": {
  2187. "ext-json": "*",
  2188. "guzzlehttp/guzzle": "^6.0|^7.0",
  2189. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2190. "illuminate/http": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2191. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2192. "league/oauth1-client": "^1.10.1",
  2193. "php": "^7.2|^8.0"
  2194. },
  2195. "require-dev": {
  2196. "mockery/mockery": "^1.0",
  2197. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0",
  2198. "phpunit/phpunit": "^8.0|^9.3"
  2199. },
  2200. "type": "library",
  2201. "extra": {
  2202. "branch-alias": {
  2203. "dev-master": "5.x-dev"
  2204. },
  2205. "laravel": {
  2206. "providers": [
  2207. "Laravel\\Socialite\\SocialiteServiceProvider"
  2208. ],
  2209. "aliases": {
  2210. "Socialite": "Laravel\\Socialite\\Facades\\Socialite"
  2211. }
  2212. }
  2213. },
  2214. "autoload": {
  2215. "psr-4": {
  2216. "Laravel\\Socialite\\": "src/"
  2217. }
  2218. },
  2219. "notification-url": "https://packagist.org/downloads/",
  2220. "license": [
  2221. "MIT"
  2222. ],
  2223. "authors": [
  2224. {
  2225. "name": "Taylor Otwell",
  2226. "email": "taylor@laravel.com"
  2227. }
  2228. ],
  2229. "description": "Laravel wrapper around OAuth 1 & OAuth 2 libraries.",
  2230. "homepage": "https://laravel.com",
  2231. "keywords": [
  2232. "laravel",
  2233. "oauth"
  2234. ],
  2235. "support": {
  2236. "issues": "https://github.com/laravel/socialite/issues",
  2237. "source": "https://github.com/laravel/socialite"
  2238. },
  2239. "time": "2023-01-20T15:42:35+00:00"
  2240. },
  2241. {
  2242. "name": "laravel/tinker",
  2243. "version": "v2.8.1",
  2244. "source": {
  2245. "type": "git",
  2246. "url": "https://github.com/laravel/tinker.git",
  2247. "reference": "04a2d3bd0d650c0764f70bf49d1ee39393e4eb10"
  2248. },
  2249. "dist": {
  2250. "type": "zip",
  2251. "url": "https://api.github.com/repos/laravel/tinker/zipball/04a2d3bd0d650c0764f70bf49d1ee39393e4eb10",
  2252. "reference": "04a2d3bd0d650c0764f70bf49d1ee39393e4eb10",
  2253. "shasum": ""
  2254. },
  2255. "require": {
  2256. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2257. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2258. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2259. "php": "^7.2.5|^8.0",
  2260. "psy/psysh": "^0.10.4|^0.11.1",
  2261. "symfony/var-dumper": "^4.3.4|^5.0|^6.0"
  2262. },
  2263. "require-dev": {
  2264. "mockery/mockery": "~1.3.3|^1.4.2",
  2265. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2266. },
  2267. "suggest": {
  2268. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0)."
  2269. },
  2270. "type": "library",
  2271. "extra": {
  2272. "branch-alias": {
  2273. "dev-master": "2.x-dev"
  2274. },
  2275. "laravel": {
  2276. "providers": [
  2277. "Laravel\\Tinker\\TinkerServiceProvider"
  2278. ]
  2279. }
  2280. },
  2281. "autoload": {
  2282. "psr-4": {
  2283. "Laravel\\Tinker\\": "src/"
  2284. }
  2285. },
  2286. "notification-url": "https://packagist.org/downloads/",
  2287. "license": [
  2288. "MIT"
  2289. ],
  2290. "authors": [
  2291. {
  2292. "name": "Taylor Otwell",
  2293. "email": "taylor@laravel.com"
  2294. }
  2295. ],
  2296. "description": "Powerful REPL for the Laravel framework.",
  2297. "keywords": [
  2298. "REPL",
  2299. "Tinker",
  2300. "laravel",
  2301. "psysh"
  2302. ],
  2303. "support": {
  2304. "issues": "https://github.com/laravel/tinker/issues",
  2305. "source": "https://github.com/laravel/tinker/tree/v2.8.1"
  2306. },
  2307. "time": "2023-02-15T16:40:09+00:00"
  2308. },
  2309. {
  2310. "name": "laravel/ui",
  2311. "version": "v3.4.6",
  2312. "source": {
  2313. "type": "git",
  2314. "url": "https://github.com/laravel/ui.git",
  2315. "reference": "65ec5c03f7fee2c8ecae785795b829a15be48c2c"
  2316. },
  2317. "dist": {
  2318. "type": "zip",
  2319. "url": "https://api.github.com/repos/laravel/ui/zipball/65ec5c03f7fee2c8ecae785795b829a15be48c2c",
  2320. "reference": "65ec5c03f7fee2c8ecae785795b829a15be48c2c",
  2321. "shasum": ""
  2322. },
  2323. "require": {
  2324. "illuminate/console": "^8.42|^9.0",
  2325. "illuminate/filesystem": "^8.42|^9.0",
  2326. "illuminate/support": "^8.82|^9.0",
  2327. "illuminate/validation": "^8.42|^9.0",
  2328. "php": "^7.3|^8.0"
  2329. },
  2330. "require-dev": {
  2331. "orchestra/testbench": "^6.23|^7.0"
  2332. },
  2333. "type": "library",
  2334. "extra": {
  2335. "branch-alias": {
  2336. "dev-master": "3.x-dev"
  2337. },
  2338. "laravel": {
  2339. "providers": [
  2340. "Laravel\\Ui\\UiServiceProvider"
  2341. ]
  2342. }
  2343. },
  2344. "autoload": {
  2345. "psr-4": {
  2346. "Laravel\\Ui\\": "src/",
  2347. "Illuminate\\Foundation\\Auth\\": "auth-backend/"
  2348. }
  2349. },
  2350. "notification-url": "https://packagist.org/downloads/",
  2351. "license": [
  2352. "MIT"
  2353. ],
  2354. "authors": [
  2355. {
  2356. "name": "Taylor Otwell",
  2357. "email": "taylor@laravel.com"
  2358. }
  2359. ],
  2360. "description": "Laravel UI utilities and presets.",
  2361. "keywords": [
  2362. "laravel",
  2363. "ui"
  2364. ],
  2365. "support": {
  2366. "source": "https://github.com/laravel/ui/tree/v3.4.6"
  2367. },
  2368. "time": "2022-05-20T13:38:08+00:00"
  2369. },
  2370. {
  2371. "name": "laraveldaily/laravel-invoices",
  2372. "version": "3.1.0",
  2373. "source": {
  2374. "type": "git",
  2375. "url": "https://github.com/LaravelDaily/laravel-invoices.git",
  2376. "reference": "7f3f2fd2042ad7ca228b506059a1e8535de46e05"
  2377. },
  2378. "dist": {
  2379. "type": "zip",
  2380. "url": "https://api.github.com/repos/LaravelDaily/laravel-invoices/zipball/7f3f2fd2042ad7ca228b506059a1e8535de46e05",
  2381. "reference": "7f3f2fd2042ad7ca228b506059a1e8535de46e05",
  2382. "shasum": ""
  2383. },
  2384. "require": {
  2385. "barryvdh/laravel-dompdf": "^v2.0",
  2386. "illuminate/http": "^5.5|^6|^7|^8|^9|^10",
  2387. "illuminate/support": "^5.5|^6|^7|^8|^9|^10",
  2388. "php": "^7.3|^8.0",
  2389. "symfony/http-foundation": "^4.0|^5.0|^6.0"
  2390. },
  2391. "require-dev": {
  2392. "phpunit/phpunit": "^9.3",
  2393. "symfony/var-dumper": "^5.0"
  2394. },
  2395. "type": "library",
  2396. "extra": {
  2397. "laravel": {
  2398. "providers": [
  2399. "LaravelDaily\\Invoices\\InvoiceServiceProvider"
  2400. ],
  2401. "aliases": {
  2402. "Invoice": "LaravelDaily\\Invoices\\Facades\\Invoice"
  2403. }
  2404. }
  2405. },
  2406. "autoload": {
  2407. "psr-4": {
  2408. "LaravelDaily\\Invoices\\": "src"
  2409. }
  2410. },
  2411. "notification-url": "https://packagist.org/downloads/",
  2412. "license": [
  2413. "GPL-3.0-only"
  2414. ],
  2415. "authors": [
  2416. {
  2417. "name": "David Lun",
  2418. "email": "mysticcode@gmail.com",
  2419. "homepage": "https://davidlun.com",
  2420. "role": "Developer"
  2421. }
  2422. ],
  2423. "description": "Missing invoices for Laravel",
  2424. "homepage": "https://github.com/LaravelDaily/laravel-invoices",
  2425. "keywords": [
  2426. "invoice",
  2427. "invoices",
  2428. "laravel",
  2429. "pdf"
  2430. ],
  2431. "support": {
  2432. "issues": "https://github.com/LaravelDaily/laravel-invoices/issues",
  2433. "source": "https://github.com/LaravelDaily/laravel-invoices/tree/3.1.0"
  2434. },
  2435. "time": "2023-02-15T12:35:38+00:00"
  2436. },
  2437. {
  2438. "name": "league/commonmark",
  2439. "version": "2.4.0",
  2440. "source": {
  2441. "type": "git",
  2442. "url": "https://github.com/thephpleague/commonmark.git",
  2443. "reference": "d44a24690f16b8c1808bf13b1bd54ae4c63ea048"
  2444. },
  2445. "dist": {
  2446. "type": "zip",
  2447. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/d44a24690f16b8c1808bf13b1bd54ae4c63ea048",
  2448. "reference": "d44a24690f16b8c1808bf13b1bd54ae4c63ea048",
  2449. "shasum": ""
  2450. },
  2451. "require": {
  2452. "ext-mbstring": "*",
  2453. "league/config": "^1.1.1",
  2454. "php": "^7.4 || ^8.0",
  2455. "psr/event-dispatcher": "^1.0",
  2456. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  2457. "symfony/polyfill-php80": "^1.16"
  2458. },
  2459. "require-dev": {
  2460. "cebe/markdown": "^1.0",
  2461. "commonmark/cmark": "0.30.0",
  2462. "commonmark/commonmark.js": "0.30.0",
  2463. "composer/package-versions-deprecated": "^1.8",
  2464. "embed/embed": "^4.4",
  2465. "erusev/parsedown": "^1.0",
  2466. "ext-json": "*",
  2467. "github/gfm": "0.29.0",
  2468. "michelf/php-markdown": "^1.4 || ^2.0",
  2469. "nyholm/psr7": "^1.5",
  2470. "phpstan/phpstan": "^1.8.2",
  2471. "phpunit/phpunit": "^9.5.21",
  2472. "scrutinizer/ocular": "^1.8.1",
  2473. "symfony/finder": "^5.3 | ^6.0",
  2474. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0",
  2475. "unleashedtech/php-coding-standard": "^3.1.1",
  2476. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  2477. },
  2478. "suggest": {
  2479. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  2480. },
  2481. "type": "library",
  2482. "extra": {
  2483. "branch-alias": {
  2484. "dev-main": "2.5-dev"
  2485. }
  2486. },
  2487. "autoload": {
  2488. "psr-4": {
  2489. "League\\CommonMark\\": "src"
  2490. }
  2491. },
  2492. "notification-url": "https://packagist.org/downloads/",
  2493. "license": [
  2494. "BSD-3-Clause"
  2495. ],
  2496. "authors": [
  2497. {
  2498. "name": "Colin O'Dell",
  2499. "email": "colinodell@gmail.com",
  2500. "homepage": "https://www.colinodell.com",
  2501. "role": "Lead Developer"
  2502. }
  2503. ],
  2504. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  2505. "homepage": "https://commonmark.thephpleague.com",
  2506. "keywords": [
  2507. "commonmark",
  2508. "flavored",
  2509. "gfm",
  2510. "github",
  2511. "github-flavored",
  2512. "markdown",
  2513. "md",
  2514. "parser"
  2515. ],
  2516. "support": {
  2517. "docs": "https://commonmark.thephpleague.com/",
  2518. "forum": "https://github.com/thephpleague/commonmark/discussions",
  2519. "issues": "https://github.com/thephpleague/commonmark/issues",
  2520. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2521. "source": "https://github.com/thephpleague/commonmark"
  2522. },
  2523. "funding": [
  2524. {
  2525. "url": "https://www.colinodell.com/sponsor",
  2526. "type": "custom"
  2527. },
  2528. {
  2529. "url": "https://www.paypal.me/colinpodell/10.00",
  2530. "type": "custom"
  2531. },
  2532. {
  2533. "url": "https://github.com/colinodell",
  2534. "type": "github"
  2535. },
  2536. {
  2537. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2538. "type": "tidelift"
  2539. }
  2540. ],
  2541. "time": "2023-03-24T15:16:10+00:00"
  2542. },
  2543. {
  2544. "name": "league/config",
  2545. "version": "v1.2.0",
  2546. "source": {
  2547. "type": "git",
  2548. "url": "https://github.com/thephpleague/config.git",
  2549. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  2550. },
  2551. "dist": {
  2552. "type": "zip",
  2553. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2554. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2555. "shasum": ""
  2556. },
  2557. "require": {
  2558. "dflydev/dot-access-data": "^3.0.1",
  2559. "nette/schema": "^1.2",
  2560. "php": "^7.4 || ^8.0"
  2561. },
  2562. "require-dev": {
  2563. "phpstan/phpstan": "^1.8.2",
  2564. "phpunit/phpunit": "^9.5.5",
  2565. "scrutinizer/ocular": "^1.8.1",
  2566. "unleashedtech/php-coding-standard": "^3.1",
  2567. "vimeo/psalm": "^4.7.3"
  2568. },
  2569. "type": "library",
  2570. "extra": {
  2571. "branch-alias": {
  2572. "dev-main": "1.2-dev"
  2573. }
  2574. },
  2575. "autoload": {
  2576. "psr-4": {
  2577. "League\\Config\\": "src"
  2578. }
  2579. },
  2580. "notification-url": "https://packagist.org/downloads/",
  2581. "license": [
  2582. "BSD-3-Clause"
  2583. ],
  2584. "authors": [
  2585. {
  2586. "name": "Colin O'Dell",
  2587. "email": "colinodell@gmail.com",
  2588. "homepage": "https://www.colinodell.com",
  2589. "role": "Lead Developer"
  2590. }
  2591. ],
  2592. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  2593. "homepage": "https://config.thephpleague.com",
  2594. "keywords": [
  2595. "array",
  2596. "config",
  2597. "configuration",
  2598. "dot",
  2599. "dot-access",
  2600. "nested",
  2601. "schema"
  2602. ],
  2603. "support": {
  2604. "docs": "https://config.thephpleague.com/",
  2605. "issues": "https://github.com/thephpleague/config/issues",
  2606. "rss": "https://github.com/thephpleague/config/releases.atom",
  2607. "source": "https://github.com/thephpleague/config"
  2608. },
  2609. "funding": [
  2610. {
  2611. "url": "https://www.colinodell.com/sponsor",
  2612. "type": "custom"
  2613. },
  2614. {
  2615. "url": "https://www.paypal.me/colinpodell/10.00",
  2616. "type": "custom"
  2617. },
  2618. {
  2619. "url": "https://github.com/colinodell",
  2620. "type": "github"
  2621. }
  2622. ],
  2623. "time": "2022-12-11T20:36:23+00:00"
  2624. },
  2625. {
  2626. "name": "league/flysystem",
  2627. "version": "3.12.3",
  2628. "source": {
  2629. "type": "git",
  2630. "url": "https://github.com/thephpleague/flysystem.git",
  2631. "reference": "81e87e74dd5213795c7846d65089712d2dda90ce"
  2632. },
  2633. "dist": {
  2634. "type": "zip",
  2635. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/81e87e74dd5213795c7846d65089712d2dda90ce",
  2636. "reference": "81e87e74dd5213795c7846d65089712d2dda90ce",
  2637. "shasum": ""
  2638. },
  2639. "require": {
  2640. "league/mime-type-detection": "^1.0.0",
  2641. "php": "^8.0.2"
  2642. },
  2643. "conflict": {
  2644. "aws/aws-sdk-php": "3.209.31 || 3.210.0",
  2645. "guzzlehttp/guzzle": "<7.0",
  2646. "guzzlehttp/ringphp": "<1.1.1",
  2647. "phpseclib/phpseclib": "3.0.15",
  2648. "symfony/http-client": "<5.2"
  2649. },
  2650. "require-dev": {
  2651. "async-aws/s3": "^1.5",
  2652. "async-aws/simple-s3": "^1.1",
  2653. "aws/aws-sdk-php": "^3.220.0",
  2654. "composer/semver": "^3.0",
  2655. "ext-fileinfo": "*",
  2656. "ext-ftp": "*",
  2657. "ext-zip": "*",
  2658. "friendsofphp/php-cs-fixer": "^3.5",
  2659. "google/cloud-storage": "^1.23",
  2660. "microsoft/azure-storage-blob": "^1.1",
  2661. "phpseclib/phpseclib": "^3.0.14",
  2662. "phpstan/phpstan": "^0.12.26",
  2663. "phpunit/phpunit": "^9.5.11",
  2664. "sabre/dav": "^4.3.1"
  2665. },
  2666. "type": "library",
  2667. "autoload": {
  2668. "psr-4": {
  2669. "League\\Flysystem\\": "src"
  2670. }
  2671. },
  2672. "notification-url": "https://packagist.org/downloads/",
  2673. "license": [
  2674. "MIT"
  2675. ],
  2676. "authors": [
  2677. {
  2678. "name": "Frank de Jonge",
  2679. "email": "info@frankdejonge.nl"
  2680. }
  2681. ],
  2682. "description": "File storage abstraction for PHP",
  2683. "keywords": [
  2684. "WebDAV",
  2685. "aws",
  2686. "cloud",
  2687. "file",
  2688. "files",
  2689. "filesystem",
  2690. "filesystems",
  2691. "ftp",
  2692. "s3",
  2693. "sftp",
  2694. "storage"
  2695. ],
  2696. "support": {
  2697. "issues": "https://github.com/thephpleague/flysystem/issues",
  2698. "source": "https://github.com/thephpleague/flysystem/tree/3.12.3"
  2699. },
  2700. "funding": [
  2701. {
  2702. "url": "https://ecologi.com/frankdejonge",
  2703. "type": "custom"
  2704. },
  2705. {
  2706. "url": "https://github.com/frankdejonge",
  2707. "type": "github"
  2708. },
  2709. {
  2710. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2711. "type": "tidelift"
  2712. }
  2713. ],
  2714. "time": "2023-02-18T15:32:41+00:00"
  2715. },
  2716. {
  2717. "name": "league/flysystem-aws-s3-v3",
  2718. "version": "3.12.2",
  2719. "source": {
  2720. "type": "git",
  2721. "url": "https://github.com/thephpleague/flysystem-aws-s3-v3.git",
  2722. "reference": "645e14e4a80bd2da8b01e57388e7296a695a80c2"
  2723. },
  2724. "dist": {
  2725. "type": "zip",
  2726. "url": "https://api.github.com/repos/thephpleague/flysystem-aws-s3-v3/zipball/645e14e4a80bd2da8b01e57388e7296a695a80c2",
  2727. "reference": "645e14e4a80bd2da8b01e57388e7296a695a80c2",
  2728. "shasum": ""
  2729. },
  2730. "require": {
  2731. "aws/aws-sdk-php": "^3.220.0",
  2732. "league/flysystem": "^3.10.0",
  2733. "league/mime-type-detection": "^1.0.0",
  2734. "php": "^8.0.2"
  2735. },
  2736. "conflict": {
  2737. "guzzlehttp/guzzle": "<7.0",
  2738. "guzzlehttp/ringphp": "<1.1.1"
  2739. },
  2740. "type": "library",
  2741. "autoload": {
  2742. "psr-4": {
  2743. "League\\Flysystem\\AwsS3V3\\": ""
  2744. }
  2745. },
  2746. "notification-url": "https://packagist.org/downloads/",
  2747. "license": [
  2748. "MIT"
  2749. ],
  2750. "authors": [
  2751. {
  2752. "name": "Frank de Jonge",
  2753. "email": "info@frankdejonge.nl"
  2754. }
  2755. ],
  2756. "description": "AWS S3 filesystem adapter for Flysystem.",
  2757. "keywords": [
  2758. "Flysystem",
  2759. "aws",
  2760. "file",
  2761. "files",
  2762. "filesystem",
  2763. "s3",
  2764. "storage"
  2765. ],
  2766. "support": {
  2767. "issues": "https://github.com/thephpleague/flysystem-aws-s3-v3/issues",
  2768. "source": "https://github.com/thephpleague/flysystem-aws-s3-v3/tree/3.12.2"
  2769. },
  2770. "funding": [
  2771. {
  2772. "url": "https://ecologi.com/frankdejonge",
  2773. "type": "custom"
  2774. },
  2775. {
  2776. "url": "https://github.com/frankdejonge",
  2777. "type": "github"
  2778. },
  2779. {
  2780. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2781. "type": "tidelift"
  2782. }
  2783. ],
  2784. "time": "2023-01-17T14:15:08+00:00"
  2785. },
  2786. {
  2787. "name": "league/mime-type-detection",
  2788. "version": "1.11.0",
  2789. "source": {
  2790. "type": "git",
  2791. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2792. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd"
  2793. },
  2794. "dist": {
  2795. "type": "zip",
  2796. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  2797. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  2798. "shasum": ""
  2799. },
  2800. "require": {
  2801. "ext-fileinfo": "*",
  2802. "php": "^7.2 || ^8.0"
  2803. },
  2804. "require-dev": {
  2805. "friendsofphp/php-cs-fixer": "^3.2",
  2806. "phpstan/phpstan": "^0.12.68",
  2807. "phpunit/phpunit": "^8.5.8 || ^9.3"
  2808. },
  2809. "type": "library",
  2810. "autoload": {
  2811. "psr-4": {
  2812. "League\\MimeTypeDetection\\": "src"
  2813. }
  2814. },
  2815. "notification-url": "https://packagist.org/downloads/",
  2816. "license": [
  2817. "MIT"
  2818. ],
  2819. "authors": [
  2820. {
  2821. "name": "Frank de Jonge",
  2822. "email": "info@frankdejonge.nl"
  2823. }
  2824. ],
  2825. "description": "Mime-type detection for Flysystem",
  2826. "support": {
  2827. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2828. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.11.0"
  2829. },
  2830. "funding": [
  2831. {
  2832. "url": "https://github.com/frankdejonge",
  2833. "type": "github"
  2834. },
  2835. {
  2836. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2837. "type": "tidelift"
  2838. }
  2839. ],
  2840. "time": "2022-04-17T13:12:02+00:00"
  2841. },
  2842. {
  2843. "name": "league/oauth1-client",
  2844. "version": "v1.10.1",
  2845. "source": {
  2846. "type": "git",
  2847. "url": "https://github.com/thephpleague/oauth1-client.git",
  2848. "reference": "d6365b901b5c287dd41f143033315e2f777e1167"
  2849. },
  2850. "dist": {
  2851. "type": "zip",
  2852. "url": "https://api.github.com/repos/thephpleague/oauth1-client/zipball/d6365b901b5c287dd41f143033315e2f777e1167",
  2853. "reference": "d6365b901b5c287dd41f143033315e2f777e1167",
  2854. "shasum": ""
  2855. },
  2856. "require": {
  2857. "ext-json": "*",
  2858. "ext-openssl": "*",
  2859. "guzzlehttp/guzzle": "^6.0|^7.0",
  2860. "guzzlehttp/psr7": "^1.7|^2.0",
  2861. "php": ">=7.1||>=8.0"
  2862. },
  2863. "require-dev": {
  2864. "ext-simplexml": "*",
  2865. "friendsofphp/php-cs-fixer": "^2.17",
  2866. "mockery/mockery": "^1.3.3",
  2867. "phpstan/phpstan": "^0.12.42",
  2868. "phpunit/phpunit": "^7.5||9.5"
  2869. },
  2870. "suggest": {
  2871. "ext-simplexml": "For decoding XML-based responses."
  2872. },
  2873. "type": "library",
  2874. "extra": {
  2875. "branch-alias": {
  2876. "dev-master": "1.0-dev",
  2877. "dev-develop": "2.0-dev"
  2878. }
  2879. },
  2880. "autoload": {
  2881. "psr-4": {
  2882. "League\\OAuth1\\Client\\": "src/"
  2883. }
  2884. },
  2885. "notification-url": "https://packagist.org/downloads/",
  2886. "license": [
  2887. "MIT"
  2888. ],
  2889. "authors": [
  2890. {
  2891. "name": "Ben Corlett",
  2892. "email": "bencorlett@me.com",
  2893. "homepage": "http://www.webcomm.com.au",
  2894. "role": "Developer"
  2895. }
  2896. ],
  2897. "description": "OAuth 1.0 Client Library",
  2898. "keywords": [
  2899. "Authentication",
  2900. "SSO",
  2901. "authorization",
  2902. "bitbucket",
  2903. "identity",
  2904. "idp",
  2905. "oauth",
  2906. "oauth1",
  2907. "single sign on",
  2908. "trello",
  2909. "tumblr",
  2910. "twitter"
  2911. ],
  2912. "support": {
  2913. "issues": "https://github.com/thephpleague/oauth1-client/issues",
  2914. "source": "https://github.com/thephpleague/oauth1-client/tree/v1.10.1"
  2915. },
  2916. "time": "2022-04-15T14:02:14+00:00"
  2917. },
  2918. {
  2919. "name": "masterminds/html5",
  2920. "version": "2.7.6",
  2921. "source": {
  2922. "type": "git",
  2923. "url": "https://github.com/Masterminds/html5-php.git",
  2924. "reference": "897eb517a343a2281f11bc5556d6548db7d93947"
  2925. },
  2926. "dist": {
  2927. "type": "zip",
  2928. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/897eb517a343a2281f11bc5556d6548db7d93947",
  2929. "reference": "897eb517a343a2281f11bc5556d6548db7d93947",
  2930. "shasum": ""
  2931. },
  2932. "require": {
  2933. "ext-ctype": "*",
  2934. "ext-dom": "*",
  2935. "ext-libxml": "*",
  2936. "php": ">=5.3.0"
  2937. },
  2938. "require-dev": {
  2939. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7"
  2940. },
  2941. "type": "library",
  2942. "extra": {
  2943. "branch-alias": {
  2944. "dev-master": "2.7-dev"
  2945. }
  2946. },
  2947. "autoload": {
  2948. "psr-4": {
  2949. "Masterminds\\": "src"
  2950. }
  2951. },
  2952. "notification-url": "https://packagist.org/downloads/",
  2953. "license": [
  2954. "MIT"
  2955. ],
  2956. "authors": [
  2957. {
  2958. "name": "Matt Butcher",
  2959. "email": "technosophos@gmail.com"
  2960. },
  2961. {
  2962. "name": "Matt Farina",
  2963. "email": "matt@mattfarina.com"
  2964. },
  2965. {
  2966. "name": "Asmir Mustafic",
  2967. "email": "goetas@gmail.com"
  2968. }
  2969. ],
  2970. "description": "An HTML5 parser and serializer.",
  2971. "homepage": "http://masterminds.github.io/html5-php",
  2972. "keywords": [
  2973. "HTML5",
  2974. "dom",
  2975. "html",
  2976. "parser",
  2977. "querypath",
  2978. "serializer",
  2979. "xml"
  2980. ],
  2981. "support": {
  2982. "issues": "https://github.com/Masterminds/html5-php/issues",
  2983. "source": "https://github.com/Masterminds/html5-php/tree/2.7.6"
  2984. },
  2985. "time": "2022-08-18T16:18:26+00:00"
  2986. },
  2987. {
  2988. "name": "monolog/monolog",
  2989. "version": "2.9.1",
  2990. "source": {
  2991. "type": "git",
  2992. "url": "https://github.com/Seldaek/monolog.git",
  2993. "reference": "f259e2b15fb95494c83f52d3caad003bbf5ffaa1"
  2994. },
  2995. "dist": {
  2996. "type": "zip",
  2997. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f259e2b15fb95494c83f52d3caad003bbf5ffaa1",
  2998. "reference": "f259e2b15fb95494c83f52d3caad003bbf5ffaa1",
  2999. "shasum": ""
  3000. },
  3001. "require": {
  3002. "php": ">=7.2",
  3003. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  3004. },
  3005. "provide": {
  3006. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  3007. },
  3008. "require-dev": {
  3009. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  3010. "doctrine/couchdb": "~1.0@dev",
  3011. "elasticsearch/elasticsearch": "^7 || ^8",
  3012. "ext-json": "*",
  3013. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  3014. "guzzlehttp/guzzle": "^7.4",
  3015. "guzzlehttp/psr7": "^2.2",
  3016. "mongodb/mongodb": "^1.8",
  3017. "php-amqplib/php-amqplib": "~2.4 || ^3",
  3018. "phpspec/prophecy": "^1.15",
  3019. "phpstan/phpstan": "^0.12.91",
  3020. "phpunit/phpunit": "^8.5.14",
  3021. "predis/predis": "^1.1 || ^2.0",
  3022. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  3023. "ruflin/elastica": "^7",
  3024. "swiftmailer/swiftmailer": "^5.3|^6.0",
  3025. "symfony/mailer": "^5.4 || ^6",
  3026. "symfony/mime": "^5.4 || ^6"
  3027. },
  3028. "suggest": {
  3029. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  3030. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  3031. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  3032. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  3033. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  3034. "ext-mbstring": "Allow to work properly with unicode symbols",
  3035. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  3036. "ext-openssl": "Required to send log messages using SSL",
  3037. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  3038. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  3039. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  3040. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  3041. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  3042. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  3043. },
  3044. "type": "library",
  3045. "extra": {
  3046. "branch-alias": {
  3047. "dev-main": "2.x-dev"
  3048. }
  3049. },
  3050. "autoload": {
  3051. "psr-4": {
  3052. "Monolog\\": "src/Monolog"
  3053. }
  3054. },
  3055. "notification-url": "https://packagist.org/downloads/",
  3056. "license": [
  3057. "MIT"
  3058. ],
  3059. "authors": [
  3060. {
  3061. "name": "Jordi Boggiano",
  3062. "email": "j.boggiano@seld.be",
  3063. "homepage": "https://seld.be"
  3064. }
  3065. ],
  3066. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  3067. "homepage": "https://github.com/Seldaek/monolog",
  3068. "keywords": [
  3069. "log",
  3070. "logging",
  3071. "psr-3"
  3072. ],
  3073. "support": {
  3074. "issues": "https://github.com/Seldaek/monolog/issues",
  3075. "source": "https://github.com/Seldaek/monolog/tree/2.9.1"
  3076. },
  3077. "funding": [
  3078. {
  3079. "url": "https://github.com/Seldaek",
  3080. "type": "github"
  3081. },
  3082. {
  3083. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  3084. "type": "tidelift"
  3085. }
  3086. ],
  3087. "time": "2023-02-06T13:44:46+00:00"
  3088. },
  3089. {
  3090. "name": "mtdowling/jmespath.php",
  3091. "version": "2.6.1",
  3092. "source": {
  3093. "type": "git",
  3094. "url": "https://github.com/jmespath/jmespath.php.git",
  3095. "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb"
  3096. },
  3097. "dist": {
  3098. "type": "zip",
  3099. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
  3100. "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
  3101. "shasum": ""
  3102. },
  3103. "require": {
  3104. "php": "^5.4 || ^7.0 || ^8.0",
  3105. "symfony/polyfill-mbstring": "^1.17"
  3106. },
  3107. "require-dev": {
  3108. "composer/xdebug-handler": "^1.4 || ^2.0",
  3109. "phpunit/phpunit": "^4.8.36 || ^7.5.15"
  3110. },
  3111. "bin": [
  3112. "bin/jp.php"
  3113. ],
  3114. "type": "library",
  3115. "extra": {
  3116. "branch-alias": {
  3117. "dev-master": "2.6-dev"
  3118. }
  3119. },
  3120. "autoload": {
  3121. "files": [
  3122. "src/JmesPath.php"
  3123. ],
  3124. "psr-4": {
  3125. "JmesPath\\": "src/"
  3126. }
  3127. },
  3128. "notification-url": "https://packagist.org/downloads/",
  3129. "license": [
  3130. "MIT"
  3131. ],
  3132. "authors": [
  3133. {
  3134. "name": "Michael Dowling",
  3135. "email": "mtdowling@gmail.com",
  3136. "homepage": "https://github.com/mtdowling"
  3137. }
  3138. ],
  3139. "description": "Declaratively specify how to extract elements from a JSON document",
  3140. "keywords": [
  3141. "json",
  3142. "jsonpath"
  3143. ],
  3144. "support": {
  3145. "issues": "https://github.com/jmespath/jmespath.php/issues",
  3146. "source": "https://github.com/jmespath/jmespath.php/tree/2.6.1"
  3147. },
  3148. "time": "2021-06-14T00:11:39+00:00"
  3149. },
  3150. {
  3151. "name": "nesbot/carbon",
  3152. "version": "2.66.0",
  3153. "source": {
  3154. "type": "git",
  3155. "url": "https://github.com/briannesbitt/Carbon.git",
  3156. "reference": "496712849902241f04902033b0441b269effe001"
  3157. },
  3158. "dist": {
  3159. "type": "zip",
  3160. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/496712849902241f04902033b0441b269effe001",
  3161. "reference": "496712849902241f04902033b0441b269effe001",
  3162. "shasum": ""
  3163. },
  3164. "require": {
  3165. "ext-json": "*",
  3166. "php": "^7.1.8 || ^8.0",
  3167. "symfony/polyfill-mbstring": "^1.0",
  3168. "symfony/polyfill-php80": "^1.16",
  3169. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  3170. },
  3171. "require-dev": {
  3172. "doctrine/dbal": "^2.0 || ^3.1.4",
  3173. "doctrine/orm": "^2.7",
  3174. "friendsofphp/php-cs-fixer": "^3.0",
  3175. "kylekatarnls/multi-tester": "^2.0",
  3176. "ondrejmirtes/better-reflection": "*",
  3177. "phpmd/phpmd": "^2.9",
  3178. "phpstan/extension-installer": "^1.0",
  3179. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  3180. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  3181. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  3182. "squizlabs/php_codesniffer": "^3.4"
  3183. },
  3184. "bin": [
  3185. "bin/carbon"
  3186. ],
  3187. "type": "library",
  3188. "extra": {
  3189. "branch-alias": {
  3190. "dev-3.x": "3.x-dev",
  3191. "dev-master": "2.x-dev"
  3192. },
  3193. "laravel": {
  3194. "providers": [
  3195. "Carbon\\Laravel\\ServiceProvider"
  3196. ]
  3197. },
  3198. "phpstan": {
  3199. "includes": [
  3200. "extension.neon"
  3201. ]
  3202. }
  3203. },
  3204. "autoload": {
  3205. "psr-4": {
  3206. "Carbon\\": "src/Carbon/"
  3207. }
  3208. },
  3209. "notification-url": "https://packagist.org/downloads/",
  3210. "license": [
  3211. "MIT"
  3212. ],
  3213. "authors": [
  3214. {
  3215. "name": "Brian Nesbitt",
  3216. "email": "brian@nesbot.com",
  3217. "homepage": "https://markido.com"
  3218. },
  3219. {
  3220. "name": "kylekatarnls",
  3221. "homepage": "https://github.com/kylekatarnls"
  3222. }
  3223. ],
  3224. "description": "An API extension for DateTime that supports 281 different languages.",
  3225. "homepage": "https://carbon.nesbot.com",
  3226. "keywords": [
  3227. "date",
  3228. "datetime",
  3229. "time"
  3230. ],
  3231. "support": {
  3232. "docs": "https://carbon.nesbot.com/docs",
  3233. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3234. "source": "https://github.com/briannesbitt/Carbon"
  3235. },
  3236. "funding": [
  3237. {
  3238. "url": "https://github.com/sponsors/kylekatarnls",
  3239. "type": "github"
  3240. },
  3241. {
  3242. "url": "https://opencollective.com/Carbon#sponsor",
  3243. "type": "opencollective"
  3244. },
  3245. {
  3246. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  3247. "type": "tidelift"
  3248. }
  3249. ],
  3250. "time": "2023-01-29T18:53:47+00:00"
  3251. },
  3252. {
  3253. "name": "nette/schema",
  3254. "version": "v1.2.3",
  3255. "source": {
  3256. "type": "git",
  3257. "url": "https://github.com/nette/schema.git",
  3258. "reference": "abbdbb70e0245d5f3bf77874cea1dfb0c930d06f"
  3259. },
  3260. "dist": {
  3261. "type": "zip",
  3262. "url": "https://api.github.com/repos/nette/schema/zipball/abbdbb70e0245d5f3bf77874cea1dfb0c930d06f",
  3263. "reference": "abbdbb70e0245d5f3bf77874cea1dfb0c930d06f",
  3264. "shasum": ""
  3265. },
  3266. "require": {
  3267. "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
  3268. "php": ">=7.1 <8.3"
  3269. },
  3270. "require-dev": {
  3271. "nette/tester": "^2.3 || ^2.4",
  3272. "phpstan/phpstan-nette": "^1.0",
  3273. "tracy/tracy": "^2.7"
  3274. },
  3275. "type": "library",
  3276. "extra": {
  3277. "branch-alias": {
  3278. "dev-master": "1.2-dev"
  3279. }
  3280. },
  3281. "autoload": {
  3282. "classmap": [
  3283. "src/"
  3284. ]
  3285. },
  3286. "notification-url": "https://packagist.org/downloads/",
  3287. "license": [
  3288. "BSD-3-Clause",
  3289. "GPL-2.0-only",
  3290. "GPL-3.0-only"
  3291. ],
  3292. "authors": [
  3293. {
  3294. "name": "David Grudl",
  3295. "homepage": "https://davidgrudl.com"
  3296. },
  3297. {
  3298. "name": "Nette Community",
  3299. "homepage": "https://nette.org/contributors"
  3300. }
  3301. ],
  3302. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  3303. "homepage": "https://nette.org",
  3304. "keywords": [
  3305. "config",
  3306. "nette"
  3307. ],
  3308. "support": {
  3309. "issues": "https://github.com/nette/schema/issues",
  3310. "source": "https://github.com/nette/schema/tree/v1.2.3"
  3311. },
  3312. "time": "2022-10-13T01:24:26+00:00"
  3313. },
  3314. {
  3315. "name": "nette/utils",
  3316. "version": "v4.0.0",
  3317. "source": {
  3318. "type": "git",
  3319. "url": "https://github.com/nette/utils.git",
  3320. "reference": "cacdbf5a91a657ede665c541eda28941d4b09c1e"
  3321. },
  3322. "dist": {
  3323. "type": "zip",
  3324. "url": "https://api.github.com/repos/nette/utils/zipball/cacdbf5a91a657ede665c541eda28941d4b09c1e",
  3325. "reference": "cacdbf5a91a657ede665c541eda28941d4b09c1e",
  3326. "shasum": ""
  3327. },
  3328. "require": {
  3329. "php": ">=8.0 <8.3"
  3330. },
  3331. "conflict": {
  3332. "nette/finder": "<3",
  3333. "nette/schema": "<1.2.2"
  3334. },
  3335. "require-dev": {
  3336. "jetbrains/phpstorm-attributes": "dev-master",
  3337. "nette/tester": "^2.4",
  3338. "phpstan/phpstan": "^1.0",
  3339. "tracy/tracy": "^2.9"
  3340. },
  3341. "suggest": {
  3342. "ext-gd": "to use Image",
  3343. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  3344. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  3345. "ext-json": "to use Nette\\Utils\\Json",
  3346. "ext-mbstring": "to use Strings::lower() etc...",
  3347. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()",
  3348. "ext-xml": "to use Strings::length() etc. when mbstring is not available"
  3349. },
  3350. "type": "library",
  3351. "extra": {
  3352. "branch-alias": {
  3353. "dev-master": "4.0-dev"
  3354. }
  3355. },
  3356. "autoload": {
  3357. "classmap": [
  3358. "src/"
  3359. ]
  3360. },
  3361. "notification-url": "https://packagist.org/downloads/",
  3362. "license": [
  3363. "BSD-3-Clause",
  3364. "GPL-2.0-only",
  3365. "GPL-3.0-only"
  3366. ],
  3367. "authors": [
  3368. {
  3369. "name": "David Grudl",
  3370. "homepage": "https://davidgrudl.com"
  3371. },
  3372. {
  3373. "name": "Nette Community",
  3374. "homepage": "https://nette.org/contributors"
  3375. }
  3376. ],
  3377. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  3378. "homepage": "https://nette.org",
  3379. "keywords": [
  3380. "array",
  3381. "core",
  3382. "datetime",
  3383. "images",
  3384. "json",
  3385. "nette",
  3386. "paginator",
  3387. "password",
  3388. "slugify",
  3389. "string",
  3390. "unicode",
  3391. "utf-8",
  3392. "utility",
  3393. "validation"
  3394. ],
  3395. "support": {
  3396. "issues": "https://github.com/nette/utils/issues",
  3397. "source": "https://github.com/nette/utils/tree/v4.0.0"
  3398. },
  3399. "time": "2023-02-02T10:41:53+00:00"
  3400. },
  3401. {
  3402. "name": "nikic/php-parser",
  3403. "version": "v4.15.4",
  3404. "source": {
  3405. "type": "git",
  3406. "url": "https://github.com/nikic/PHP-Parser.git",
  3407. "reference": "6bb5176bc4af8bcb7d926f88718db9b96a2d4290"
  3408. },
  3409. "dist": {
  3410. "type": "zip",
  3411. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/6bb5176bc4af8bcb7d926f88718db9b96a2d4290",
  3412. "reference": "6bb5176bc4af8bcb7d926f88718db9b96a2d4290",
  3413. "shasum": ""
  3414. },
  3415. "require": {
  3416. "ext-tokenizer": "*",
  3417. "php": ">=7.0"
  3418. },
  3419. "require-dev": {
  3420. "ircmaxell/php-yacc": "^0.0.7",
  3421. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  3422. },
  3423. "bin": [
  3424. "bin/php-parse"
  3425. ],
  3426. "type": "library",
  3427. "extra": {
  3428. "branch-alias": {
  3429. "dev-master": "4.9-dev"
  3430. }
  3431. },
  3432. "autoload": {
  3433. "psr-4": {
  3434. "PhpParser\\": "lib/PhpParser"
  3435. }
  3436. },
  3437. "notification-url": "https://packagist.org/downloads/",
  3438. "license": [
  3439. "BSD-3-Clause"
  3440. ],
  3441. "authors": [
  3442. {
  3443. "name": "Nikita Popov"
  3444. }
  3445. ],
  3446. "description": "A PHP parser written in PHP",
  3447. "keywords": [
  3448. "parser",
  3449. "php"
  3450. ],
  3451. "support": {
  3452. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3453. "source": "https://github.com/nikic/PHP-Parser/tree/v4.15.4"
  3454. },
  3455. "time": "2023-03-05T19:49:14+00:00"
  3456. },
  3457. {
  3458. "name": "nunomaduro/termwind",
  3459. "version": "v1.15.1",
  3460. "source": {
  3461. "type": "git",
  3462. "url": "https://github.com/nunomaduro/termwind.git",
  3463. "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc"
  3464. },
  3465. "dist": {
  3466. "type": "zip",
  3467. "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/8ab0b32c8caa4a2e09700ea32925441385e4a5dc",
  3468. "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc",
  3469. "shasum": ""
  3470. },
  3471. "require": {
  3472. "ext-mbstring": "*",
  3473. "php": "^8.0",
  3474. "symfony/console": "^5.3.0|^6.0.0"
  3475. },
  3476. "require-dev": {
  3477. "ergebnis/phpstan-rules": "^1.0.",
  3478. "illuminate/console": "^8.0|^9.0",
  3479. "illuminate/support": "^8.0|^9.0",
  3480. "laravel/pint": "^1.0.0",
  3481. "pestphp/pest": "^1.21.0",
  3482. "pestphp/pest-plugin-mock": "^1.0",
  3483. "phpstan/phpstan": "^1.4.6",
  3484. "phpstan/phpstan-strict-rules": "^1.1.0",
  3485. "symfony/var-dumper": "^5.2.7|^6.0.0",
  3486. "thecodingmachine/phpstan-strict-rules": "^1.0.0"
  3487. },
  3488. "type": "library",
  3489. "extra": {
  3490. "laravel": {
  3491. "providers": [
  3492. "Termwind\\Laravel\\TermwindServiceProvider"
  3493. ]
  3494. }
  3495. },
  3496. "autoload": {
  3497. "files": [
  3498. "src/Functions.php"
  3499. ],
  3500. "psr-4": {
  3501. "Termwind\\": "src/"
  3502. }
  3503. },
  3504. "notification-url": "https://packagist.org/downloads/",
  3505. "license": [
  3506. "MIT"
  3507. ],
  3508. "authors": [
  3509. {
  3510. "name": "Nuno Maduro",
  3511. "email": "enunomaduro@gmail.com"
  3512. }
  3513. ],
  3514. "description": "Its like Tailwind CSS, but for the console.",
  3515. "keywords": [
  3516. "cli",
  3517. "console",
  3518. "css",
  3519. "package",
  3520. "php",
  3521. "style"
  3522. ],
  3523. "support": {
  3524. "issues": "https://github.com/nunomaduro/termwind/issues",
  3525. "source": "https://github.com/nunomaduro/termwind/tree/v1.15.1"
  3526. },
  3527. "funding": [
  3528. {
  3529. "url": "https://www.paypal.com/paypalme/enunomaduro",
  3530. "type": "custom"
  3531. },
  3532. {
  3533. "url": "https://github.com/nunomaduro",
  3534. "type": "github"
  3535. },
  3536. {
  3537. "url": "https://github.com/xiCO2k",
  3538. "type": "github"
  3539. }
  3540. ],
  3541. "time": "2023-02-08T01:06:31+00:00"
  3542. },
  3543. {
  3544. "name": "paragonie/random_compat",
  3545. "version": "v9.99.100",
  3546. "source": {
  3547. "type": "git",
  3548. "url": "https://github.com/paragonie/random_compat.git",
  3549. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  3550. },
  3551. "dist": {
  3552. "type": "zip",
  3553. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  3554. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  3555. "shasum": ""
  3556. },
  3557. "require": {
  3558. "php": ">= 7"
  3559. },
  3560. "require-dev": {
  3561. "phpunit/phpunit": "4.*|5.*",
  3562. "vimeo/psalm": "^1"
  3563. },
  3564. "suggest": {
  3565. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  3566. },
  3567. "type": "library",
  3568. "notification-url": "https://packagist.org/downloads/",
  3569. "license": [
  3570. "MIT"
  3571. ],
  3572. "authors": [
  3573. {
  3574. "name": "Paragon Initiative Enterprises",
  3575. "email": "security@paragonie.com",
  3576. "homepage": "https://paragonie.com"
  3577. }
  3578. ],
  3579. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  3580. "keywords": [
  3581. "csprng",
  3582. "polyfill",
  3583. "pseudorandom",
  3584. "random"
  3585. ],
  3586. "support": {
  3587. "email": "info@paragonie.com",
  3588. "issues": "https://github.com/paragonie/random_compat/issues",
  3589. "source": "https://github.com/paragonie/random_compat"
  3590. },
  3591. "time": "2020-10-15T08:29:30+00:00"
  3592. },
  3593. {
  3594. "name": "paypal/paypal-checkout-sdk",
  3595. "version": "1.0.2",
  3596. "source": {
  3597. "type": "git",
  3598. "url": "https://github.com/paypal/Checkout-PHP-SDK.git",
  3599. "reference": "19992ce7051ff9e47e643f28abb8cc1b3e5f1812"
  3600. },
  3601. "dist": {
  3602. "type": "zip",
  3603. "url": "https://api.github.com/repos/paypal/Checkout-PHP-SDK/zipball/19992ce7051ff9e47e643f28abb8cc1b3e5f1812",
  3604. "reference": "19992ce7051ff9e47e643f28abb8cc1b3e5f1812",
  3605. "shasum": ""
  3606. },
  3607. "require": {
  3608. "paypal/paypalhttp": "1.0.1"
  3609. },
  3610. "require-dev": {
  3611. "phpunit/phpunit": "^5.7"
  3612. },
  3613. "type": "library",
  3614. "autoload": {
  3615. "psr-4": {
  3616. "Sample\\": "samples/",
  3617. "PayPalCheckoutSdk\\": "lib/PayPalCheckoutSdk"
  3618. }
  3619. },
  3620. "notification-url": "https://packagist.org/downloads/",
  3621. "license": [
  3622. "https://github.com/paypal/Checkout-PHP-SDK/blob/master/LICENSE"
  3623. ],
  3624. "authors": [
  3625. {
  3626. "name": "PayPal",
  3627. "homepage": "https://github.com/paypal/Checkout-PHP-SDK/contributors"
  3628. }
  3629. ],
  3630. "description": "PayPal's PHP SDK for Checkout REST APIs",
  3631. "homepage": "http://github.com/paypal/Checkout-PHP-SDK/",
  3632. "keywords": [
  3633. "checkout",
  3634. "orders",
  3635. "payments",
  3636. "paypal",
  3637. "rest",
  3638. "sdk"
  3639. ],
  3640. "support": {
  3641. "source": "https://github.com/paypal/Checkout-PHP-SDK/tree/1.0.2"
  3642. },
  3643. "abandoned": true,
  3644. "time": "2021-09-21T20:57:38+00:00"
  3645. },
  3646. {
  3647. "name": "paypal/paypalhttp",
  3648. "version": "1.0.1",
  3649. "source": {
  3650. "type": "git",
  3651. "url": "https://github.com/paypal/paypalhttp_php.git",
  3652. "reference": "7b09c89c80828e842c79230e7f156b61fbb68d25"
  3653. },
  3654. "dist": {
  3655. "type": "zip",
  3656. "url": "https://api.github.com/repos/paypal/paypalhttp_php/zipball/7b09c89c80828e842c79230e7f156b61fbb68d25",
  3657. "reference": "7b09c89c80828e842c79230e7f156b61fbb68d25",
  3658. "shasum": ""
  3659. },
  3660. "require": {
  3661. "ext-curl": "*"
  3662. },
  3663. "require-dev": {
  3664. "phpunit/phpunit": "^5.7",
  3665. "wiremock-php/wiremock-php": "1.43.2"
  3666. },
  3667. "type": "library",
  3668. "autoload": {
  3669. "psr-4": {
  3670. "PayPalHttp\\": "lib/PayPalHttp"
  3671. }
  3672. },
  3673. "notification-url": "https://packagist.org/downloads/",
  3674. "license": [
  3675. "MIT"
  3676. ],
  3677. "authors": [
  3678. {
  3679. "name": "PayPal",
  3680. "homepage": "https://github.com/paypal/paypalhttp_php/contributors"
  3681. }
  3682. ],
  3683. "support": {
  3684. "issues": "https://github.com/paypal/paypalhttp_php/issues",
  3685. "source": "https://github.com/paypal/paypalhttp_php/tree/1.0.1"
  3686. },
  3687. "time": "2021-09-14T21:35:26+00:00"
  3688. },
  3689. {
  3690. "name": "paypal/rest-api-sdk-php",
  3691. "version": "1.14.0",
  3692. "source": {
  3693. "type": "git",
  3694. "url": "https://github.com/paypal/PayPal-PHP-SDK.git",
  3695. "reference": "72e2f2466975bf128a31e02b15110180f059fc04"
  3696. },
  3697. "dist": {
  3698. "type": "zip",
  3699. "url": "https://api.github.com/repos/paypal/PayPal-PHP-SDK/zipball/72e2f2466975bf128a31e02b15110180f059fc04",
  3700. "reference": "72e2f2466975bf128a31e02b15110180f059fc04",
  3701. "shasum": ""
  3702. },
  3703. "require": {
  3704. "ext-curl": "*",
  3705. "ext-json": "*",
  3706. "php": ">=5.3.0",
  3707. "psr/log": "^1.0.0"
  3708. },
  3709. "require-dev": {
  3710. "phpunit/phpunit": "^4.8.35"
  3711. },
  3712. "type": "library",
  3713. "autoload": {
  3714. "psr-0": {
  3715. "PayPal": "lib/"
  3716. }
  3717. },
  3718. "notification-url": "https://packagist.org/downloads/",
  3719. "license": [
  3720. "Apache-2.0"
  3721. ],
  3722. "authors": [
  3723. {
  3724. "name": "PayPal",
  3725. "homepage": "https://github.com/paypal/rest-api-sdk-php/contributors"
  3726. }
  3727. ],
  3728. "description": "PayPal's PHP SDK for REST APIs",
  3729. "homepage": "http://paypal.github.io/PayPal-PHP-SDK/",
  3730. "keywords": [
  3731. "payments",
  3732. "paypal",
  3733. "rest",
  3734. "sdk"
  3735. ],
  3736. "support": {
  3737. "issues": "https://github.com/paypal/PayPal-PHP-SDK/issues",
  3738. "source": "https://github.com/paypal/PayPal-PHP-SDK/tree/master"
  3739. },
  3740. "abandoned": true,
  3741. "time": "2019-01-04T20:04:25+00:00"
  3742. },
  3743. {
  3744. "name": "phenx/php-font-lib",
  3745. "version": "0.5.4",
  3746. "source": {
  3747. "type": "git",
  3748. "url": "https://github.com/dompdf/php-font-lib.git",
  3749. "reference": "dd448ad1ce34c63d09baccd05415e361300c35b4"
  3750. },
  3751. "dist": {
  3752. "type": "zip",
  3753. "url": "https://api.github.com/repos/dompdf/php-font-lib/zipball/dd448ad1ce34c63d09baccd05415e361300c35b4",
  3754. "reference": "dd448ad1ce34c63d09baccd05415e361300c35b4",
  3755. "shasum": ""
  3756. },
  3757. "require": {
  3758. "ext-mbstring": "*"
  3759. },
  3760. "require-dev": {
  3761. "symfony/phpunit-bridge": "^3 || ^4 || ^5"
  3762. },
  3763. "type": "library",
  3764. "autoload": {
  3765. "psr-4": {
  3766. "FontLib\\": "src/FontLib"
  3767. }
  3768. },
  3769. "notification-url": "https://packagist.org/downloads/",
  3770. "license": [
  3771. "LGPL-3.0"
  3772. ],
  3773. "authors": [
  3774. {
  3775. "name": "Fabien Ménager",
  3776. "email": "fabien.menager@gmail.com"
  3777. }
  3778. ],
  3779. "description": "A library to read, parse, export and make subsets of different types of font files.",
  3780. "homepage": "https://github.com/PhenX/php-font-lib",
  3781. "support": {
  3782. "issues": "https://github.com/dompdf/php-font-lib/issues",
  3783. "source": "https://github.com/dompdf/php-font-lib/tree/0.5.4"
  3784. },
  3785. "time": "2021-12-17T19:44:54+00:00"
  3786. },
  3787. {
  3788. "name": "phenx/php-svg-lib",
  3789. "version": "0.5.0",
  3790. "source": {
  3791. "type": "git",
  3792. "url": "https://github.com/dompdf/php-svg-lib.git",
  3793. "reference": "76876c6cf3080bcb6f249d7d59705108166a6685"
  3794. },
  3795. "dist": {
  3796. "type": "zip",
  3797. "url": "https://api.github.com/repos/dompdf/php-svg-lib/zipball/76876c6cf3080bcb6f249d7d59705108166a6685",
  3798. "reference": "76876c6cf3080bcb6f249d7d59705108166a6685",
  3799. "shasum": ""
  3800. },
  3801. "require": {
  3802. "ext-mbstring": "*",
  3803. "php": "^7.1 || ^8.0",
  3804. "sabberworm/php-css-parser": "^8.4"
  3805. },
  3806. "require-dev": {
  3807. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5"
  3808. },
  3809. "type": "library",
  3810. "autoload": {
  3811. "psr-4": {
  3812. "Svg\\": "src/Svg"
  3813. }
  3814. },
  3815. "notification-url": "https://packagist.org/downloads/",
  3816. "license": [
  3817. "LGPL-3.0"
  3818. ],
  3819. "authors": [
  3820. {
  3821. "name": "Fabien Ménager",
  3822. "email": "fabien.menager@gmail.com"
  3823. }
  3824. ],
  3825. "description": "A library to read, parse and export to PDF SVG files.",
  3826. "homepage": "https://github.com/PhenX/php-svg-lib",
  3827. "support": {
  3828. "issues": "https://github.com/dompdf/php-svg-lib/issues",
  3829. "source": "https://github.com/dompdf/php-svg-lib/tree/0.5.0"
  3830. },
  3831. "time": "2022-09-06T12:16:56+00:00"
  3832. },
  3833. {
  3834. "name": "phpdocumentor/reflection-common",
  3835. "version": "2.2.0",
  3836. "source": {
  3837. "type": "git",
  3838. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  3839. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  3840. },
  3841. "dist": {
  3842. "type": "zip",
  3843. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  3844. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  3845. "shasum": ""
  3846. },
  3847. "require": {
  3848. "php": "^7.2 || ^8.0"
  3849. },
  3850. "type": "library",
  3851. "extra": {
  3852. "branch-alias": {
  3853. "dev-2.x": "2.x-dev"
  3854. }
  3855. },
  3856. "autoload": {
  3857. "psr-4": {
  3858. "phpDocumentor\\Reflection\\": "src/"
  3859. }
  3860. },
  3861. "notification-url": "https://packagist.org/downloads/",
  3862. "license": [
  3863. "MIT"
  3864. ],
  3865. "authors": [
  3866. {
  3867. "name": "Jaap van Otterdijk",
  3868. "email": "opensource@ijaap.nl"
  3869. }
  3870. ],
  3871. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  3872. "homepage": "http://www.phpdoc.org",
  3873. "keywords": [
  3874. "FQSEN",
  3875. "phpDocumentor",
  3876. "phpdoc",
  3877. "reflection",
  3878. "static analysis"
  3879. ],
  3880. "support": {
  3881. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  3882. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  3883. },
  3884. "time": "2020-06-27T09:03:43+00:00"
  3885. },
  3886. {
  3887. "name": "phpdocumentor/type-resolver",
  3888. "version": "1.7.1",
  3889. "source": {
  3890. "type": "git",
  3891. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  3892. "reference": "dfc078e8af9c99210337325ff5aa152872c98714"
  3893. },
  3894. "dist": {
  3895. "type": "zip",
  3896. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/dfc078e8af9c99210337325ff5aa152872c98714",
  3897. "reference": "dfc078e8af9c99210337325ff5aa152872c98714",
  3898. "shasum": ""
  3899. },
  3900. "require": {
  3901. "doctrine/deprecations": "^1.0",
  3902. "php": "^7.4 || ^8.0",
  3903. "phpdocumentor/reflection-common": "^2.0",
  3904. "phpstan/phpdoc-parser": "^1.13"
  3905. },
  3906. "require-dev": {
  3907. "ext-tokenizer": "*",
  3908. "phpbench/phpbench": "^1.2",
  3909. "phpstan/extension-installer": "^1.1",
  3910. "phpstan/phpstan": "^1.8",
  3911. "phpstan/phpstan-phpunit": "^1.1",
  3912. "phpunit/phpunit": "^9.5",
  3913. "rector/rector": "^0.13.9",
  3914. "vimeo/psalm": "^4.25"
  3915. },
  3916. "type": "library",
  3917. "extra": {
  3918. "branch-alias": {
  3919. "dev-1.x": "1.x-dev"
  3920. }
  3921. },
  3922. "autoload": {
  3923. "psr-4": {
  3924. "phpDocumentor\\Reflection\\": "src"
  3925. }
  3926. },
  3927. "notification-url": "https://packagist.org/downloads/",
  3928. "license": [
  3929. "MIT"
  3930. ],
  3931. "authors": [
  3932. {
  3933. "name": "Mike van Riel",
  3934. "email": "me@mikevanriel.com"
  3935. }
  3936. ],
  3937. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  3938. "support": {
  3939. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  3940. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.7.1"
  3941. },
  3942. "time": "2023-03-27T19:02:04+00:00"
  3943. },
  3944. {
  3945. "name": "phpoption/phpoption",
  3946. "version": "1.9.1",
  3947. "source": {
  3948. "type": "git",
  3949. "url": "https://github.com/schmittjoh/php-option.git",
  3950. "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e"
  3951. },
  3952. "dist": {
  3953. "type": "zip",
  3954. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/dd3a383e599f49777d8b628dadbb90cae435b87e",
  3955. "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e",
  3956. "shasum": ""
  3957. },
  3958. "require": {
  3959. "php": "^7.2.5 || ^8.0"
  3960. },
  3961. "require-dev": {
  3962. "bamarni/composer-bin-plugin": "^1.8.2",
  3963. "phpunit/phpunit": "^8.5.32 || ^9.6.3 || ^10.0.12"
  3964. },
  3965. "type": "library",
  3966. "extra": {
  3967. "bamarni-bin": {
  3968. "bin-links": true,
  3969. "forward-command": true
  3970. },
  3971. "branch-alias": {
  3972. "dev-master": "1.9-dev"
  3973. }
  3974. },
  3975. "autoload": {
  3976. "psr-4": {
  3977. "PhpOption\\": "src/PhpOption/"
  3978. }
  3979. },
  3980. "notification-url": "https://packagist.org/downloads/",
  3981. "license": [
  3982. "Apache-2.0"
  3983. ],
  3984. "authors": [
  3985. {
  3986. "name": "Johannes M. Schmitt",
  3987. "email": "schmittjoh@gmail.com",
  3988. "homepage": "https://github.com/schmittjoh"
  3989. },
  3990. {
  3991. "name": "Graham Campbell",
  3992. "email": "hello@gjcampbell.co.uk",
  3993. "homepage": "https://github.com/GrahamCampbell"
  3994. }
  3995. ],
  3996. "description": "Option Type for PHP",
  3997. "keywords": [
  3998. "language",
  3999. "option",
  4000. "php",
  4001. "type"
  4002. ],
  4003. "support": {
  4004. "issues": "https://github.com/schmittjoh/php-option/issues",
  4005. "source": "https://github.com/schmittjoh/php-option/tree/1.9.1"
  4006. },
  4007. "funding": [
  4008. {
  4009. "url": "https://github.com/GrahamCampbell",
  4010. "type": "github"
  4011. },
  4012. {
  4013. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  4014. "type": "tidelift"
  4015. }
  4016. ],
  4017. "time": "2023-02-25T19:38:58+00:00"
  4018. },
  4019. {
  4020. "name": "phpstan/phpdoc-parser",
  4021. "version": "1.16.1",
  4022. "source": {
  4023. "type": "git",
  4024. "url": "https://github.com/phpstan/phpdoc-parser.git",
  4025. "reference": "e27e92d939e2e3636f0a1f0afaba59692c0bf571"
  4026. },
  4027. "dist": {
  4028. "type": "zip",
  4029. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/e27e92d939e2e3636f0a1f0afaba59692c0bf571",
  4030. "reference": "e27e92d939e2e3636f0a1f0afaba59692c0bf571",
  4031. "shasum": ""
  4032. },
  4033. "require": {
  4034. "php": "^7.2 || ^8.0"
  4035. },
  4036. "require-dev": {
  4037. "php-parallel-lint/php-parallel-lint": "^1.2",
  4038. "phpstan/extension-installer": "^1.0",
  4039. "phpstan/phpstan": "^1.5",
  4040. "phpstan/phpstan-phpunit": "^1.1",
  4041. "phpstan/phpstan-strict-rules": "^1.0",
  4042. "phpunit/phpunit": "^9.5",
  4043. "symfony/process": "^5.2"
  4044. },
  4045. "type": "library",
  4046. "autoload": {
  4047. "psr-4": {
  4048. "PHPStan\\PhpDocParser\\": [
  4049. "src/"
  4050. ]
  4051. }
  4052. },
  4053. "notification-url": "https://packagist.org/downloads/",
  4054. "license": [
  4055. "MIT"
  4056. ],
  4057. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  4058. "support": {
  4059. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  4060. "source": "https://github.com/phpstan/phpdoc-parser/tree/1.16.1"
  4061. },
  4062. "time": "2023-02-07T18:11:17+00:00"
  4063. },
  4064. {
  4065. "name": "predis/predis",
  4066. "version": "v2.1.2",
  4067. "source": {
  4068. "type": "git",
  4069. "url": "https://github.com/predis/predis.git",
  4070. "reference": "a77a43913a74f9331f637bb12867eb8e274814e5"
  4071. },
  4072. "dist": {
  4073. "type": "zip",
  4074. "url": "https://api.github.com/repos/predis/predis/zipball/a77a43913a74f9331f637bb12867eb8e274814e5",
  4075. "reference": "a77a43913a74f9331f637bb12867eb8e274814e5",
  4076. "shasum": ""
  4077. },
  4078. "require": {
  4079. "php": "^7.2 || ^8.0"
  4080. },
  4081. "require-dev": {
  4082. "friendsofphp/php-cs-fixer": "^3.3",
  4083. "phpstan/phpstan": "^1.9",
  4084. "phpunit/phpunit": "^8.0 || ~9.4.4"
  4085. },
  4086. "type": "library",
  4087. "autoload": {
  4088. "psr-4": {
  4089. "Predis\\": "src/"
  4090. }
  4091. },
  4092. "notification-url": "https://packagist.org/downloads/",
  4093. "license": [
  4094. "MIT"
  4095. ],
  4096. "authors": [
  4097. {
  4098. "name": "Till Krüss",
  4099. "homepage": "https://till.im",
  4100. "role": "Maintainer"
  4101. }
  4102. ],
  4103. "description": "A flexible and feature-complete Redis client for PHP.",
  4104. "homepage": "http://github.com/predis/predis",
  4105. "keywords": [
  4106. "nosql",
  4107. "predis",
  4108. "redis"
  4109. ],
  4110. "support": {
  4111. "issues": "https://github.com/predis/predis/issues",
  4112. "source": "https://github.com/predis/predis/tree/v2.1.2"
  4113. },
  4114. "funding": [
  4115. {
  4116. "url": "https://github.com/sponsors/tillkruss",
  4117. "type": "github"
  4118. }
  4119. ],
  4120. "time": "2023-03-02T18:32:04+00:00"
  4121. },
  4122. {
  4123. "name": "psr/cache",
  4124. "version": "3.0.0",
  4125. "source": {
  4126. "type": "git",
  4127. "url": "https://github.com/php-fig/cache.git",
  4128. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  4129. },
  4130. "dist": {
  4131. "type": "zip",
  4132. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  4133. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  4134. "shasum": ""
  4135. },
  4136. "require": {
  4137. "php": ">=8.0.0"
  4138. },
  4139. "type": "library",
  4140. "extra": {
  4141. "branch-alias": {
  4142. "dev-master": "1.0.x-dev"
  4143. }
  4144. },
  4145. "autoload": {
  4146. "psr-4": {
  4147. "Psr\\Cache\\": "src/"
  4148. }
  4149. },
  4150. "notification-url": "https://packagist.org/downloads/",
  4151. "license": [
  4152. "MIT"
  4153. ],
  4154. "authors": [
  4155. {
  4156. "name": "PHP-FIG",
  4157. "homepage": "https://www.php-fig.org/"
  4158. }
  4159. ],
  4160. "description": "Common interface for caching libraries",
  4161. "keywords": [
  4162. "cache",
  4163. "psr",
  4164. "psr-6"
  4165. ],
  4166. "support": {
  4167. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  4168. },
  4169. "time": "2021-02-03T23:26:27+00:00"
  4170. },
  4171. {
  4172. "name": "psr/container",
  4173. "version": "2.0.2",
  4174. "source": {
  4175. "type": "git",
  4176. "url": "https://github.com/php-fig/container.git",
  4177. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  4178. },
  4179. "dist": {
  4180. "type": "zip",
  4181. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  4182. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  4183. "shasum": ""
  4184. },
  4185. "require": {
  4186. "php": ">=7.4.0"
  4187. },
  4188. "type": "library",
  4189. "extra": {
  4190. "branch-alias": {
  4191. "dev-master": "2.0.x-dev"
  4192. }
  4193. },
  4194. "autoload": {
  4195. "psr-4": {
  4196. "Psr\\Container\\": "src/"
  4197. }
  4198. },
  4199. "notification-url": "https://packagist.org/downloads/",
  4200. "license": [
  4201. "MIT"
  4202. ],
  4203. "authors": [
  4204. {
  4205. "name": "PHP-FIG",
  4206. "homepage": "https://www.php-fig.org/"
  4207. }
  4208. ],
  4209. "description": "Common Container Interface (PHP FIG PSR-11)",
  4210. "homepage": "https://github.com/php-fig/container",
  4211. "keywords": [
  4212. "PSR-11",
  4213. "container",
  4214. "container-interface",
  4215. "container-interop",
  4216. "psr"
  4217. ],
  4218. "support": {
  4219. "issues": "https://github.com/php-fig/container/issues",
  4220. "source": "https://github.com/php-fig/container/tree/2.0.2"
  4221. },
  4222. "time": "2021-11-05T16:47:00+00:00"
  4223. },
  4224. {
  4225. "name": "psr/event-dispatcher",
  4226. "version": "1.0.0",
  4227. "source": {
  4228. "type": "git",
  4229. "url": "https://github.com/php-fig/event-dispatcher.git",
  4230. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  4231. },
  4232. "dist": {
  4233. "type": "zip",
  4234. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4235. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4236. "shasum": ""
  4237. },
  4238. "require": {
  4239. "php": ">=7.2.0"
  4240. },
  4241. "type": "library",
  4242. "extra": {
  4243. "branch-alias": {
  4244. "dev-master": "1.0.x-dev"
  4245. }
  4246. },
  4247. "autoload": {
  4248. "psr-4": {
  4249. "Psr\\EventDispatcher\\": "src/"
  4250. }
  4251. },
  4252. "notification-url": "https://packagist.org/downloads/",
  4253. "license": [
  4254. "MIT"
  4255. ],
  4256. "authors": [
  4257. {
  4258. "name": "PHP-FIG",
  4259. "homepage": "http://www.php-fig.org/"
  4260. }
  4261. ],
  4262. "description": "Standard interfaces for event handling.",
  4263. "keywords": [
  4264. "events",
  4265. "psr",
  4266. "psr-14"
  4267. ],
  4268. "support": {
  4269. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  4270. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  4271. },
  4272. "time": "2019-01-08T18:20:26+00:00"
  4273. },
  4274. {
  4275. "name": "psr/http-client",
  4276. "version": "1.0.1",
  4277. "source": {
  4278. "type": "git",
  4279. "url": "https://github.com/php-fig/http-client.git",
  4280. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  4281. },
  4282. "dist": {
  4283. "type": "zip",
  4284. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  4285. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  4286. "shasum": ""
  4287. },
  4288. "require": {
  4289. "php": "^7.0 || ^8.0",
  4290. "psr/http-message": "^1.0"
  4291. },
  4292. "type": "library",
  4293. "extra": {
  4294. "branch-alias": {
  4295. "dev-master": "1.0.x-dev"
  4296. }
  4297. },
  4298. "autoload": {
  4299. "psr-4": {
  4300. "Psr\\Http\\Client\\": "src/"
  4301. }
  4302. },
  4303. "notification-url": "https://packagist.org/downloads/",
  4304. "license": [
  4305. "MIT"
  4306. ],
  4307. "authors": [
  4308. {
  4309. "name": "PHP-FIG",
  4310. "homepage": "http://www.php-fig.org/"
  4311. }
  4312. ],
  4313. "description": "Common interface for HTTP clients",
  4314. "homepage": "https://github.com/php-fig/http-client",
  4315. "keywords": [
  4316. "http",
  4317. "http-client",
  4318. "psr",
  4319. "psr-18"
  4320. ],
  4321. "support": {
  4322. "source": "https://github.com/php-fig/http-client/tree/master"
  4323. },
  4324. "time": "2020-06-29T06:28:15+00:00"
  4325. },
  4326. {
  4327. "name": "psr/http-factory",
  4328. "version": "1.0.1",
  4329. "source": {
  4330. "type": "git",
  4331. "url": "https://github.com/php-fig/http-factory.git",
  4332. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  4333. },
  4334. "dist": {
  4335. "type": "zip",
  4336. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  4337. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  4338. "shasum": ""
  4339. },
  4340. "require": {
  4341. "php": ">=7.0.0",
  4342. "psr/http-message": "^1.0"
  4343. },
  4344. "type": "library",
  4345. "extra": {
  4346. "branch-alias": {
  4347. "dev-master": "1.0.x-dev"
  4348. }
  4349. },
  4350. "autoload": {
  4351. "psr-4": {
  4352. "Psr\\Http\\Message\\": "src/"
  4353. }
  4354. },
  4355. "notification-url": "https://packagist.org/downloads/",
  4356. "license": [
  4357. "MIT"
  4358. ],
  4359. "authors": [
  4360. {
  4361. "name": "PHP-FIG",
  4362. "homepage": "http://www.php-fig.org/"
  4363. }
  4364. ],
  4365. "description": "Common interfaces for PSR-7 HTTP message factories",
  4366. "keywords": [
  4367. "factory",
  4368. "http",
  4369. "message",
  4370. "psr",
  4371. "psr-17",
  4372. "psr-7",
  4373. "request",
  4374. "response"
  4375. ],
  4376. "support": {
  4377. "source": "https://github.com/php-fig/http-factory/tree/master"
  4378. },
  4379. "time": "2019-04-30T12:38:16+00:00"
  4380. },
  4381. {
  4382. "name": "psr/http-message",
  4383. "version": "1.0.1",
  4384. "source": {
  4385. "type": "git",
  4386. "url": "https://github.com/php-fig/http-message.git",
  4387. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  4388. },
  4389. "dist": {
  4390. "type": "zip",
  4391. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  4392. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  4393. "shasum": ""
  4394. },
  4395. "require": {
  4396. "php": ">=5.3.0"
  4397. },
  4398. "type": "library",
  4399. "extra": {
  4400. "branch-alias": {
  4401. "dev-master": "1.0.x-dev"
  4402. }
  4403. },
  4404. "autoload": {
  4405. "psr-4": {
  4406. "Psr\\Http\\Message\\": "src/"
  4407. }
  4408. },
  4409. "notification-url": "https://packagist.org/downloads/",
  4410. "license": [
  4411. "MIT"
  4412. ],
  4413. "authors": [
  4414. {
  4415. "name": "PHP-FIG",
  4416. "homepage": "http://www.php-fig.org/"
  4417. }
  4418. ],
  4419. "description": "Common interface for HTTP messages",
  4420. "homepage": "https://github.com/php-fig/http-message",
  4421. "keywords": [
  4422. "http",
  4423. "http-message",
  4424. "psr",
  4425. "psr-7",
  4426. "request",
  4427. "response"
  4428. ],
  4429. "support": {
  4430. "source": "https://github.com/php-fig/http-message/tree/master"
  4431. },
  4432. "time": "2016-08-06T14:39:51+00:00"
  4433. },
  4434. {
  4435. "name": "psr/log",
  4436. "version": "1.1.4",
  4437. "source": {
  4438. "type": "git",
  4439. "url": "https://github.com/php-fig/log.git",
  4440. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  4441. },
  4442. "dist": {
  4443. "type": "zip",
  4444. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  4445. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  4446. "shasum": ""
  4447. },
  4448. "require": {
  4449. "php": ">=5.3.0"
  4450. },
  4451. "type": "library",
  4452. "extra": {
  4453. "branch-alias": {
  4454. "dev-master": "1.1.x-dev"
  4455. }
  4456. },
  4457. "autoload": {
  4458. "psr-4": {
  4459. "Psr\\Log\\": "Psr/Log/"
  4460. }
  4461. },
  4462. "notification-url": "https://packagist.org/downloads/",
  4463. "license": [
  4464. "MIT"
  4465. ],
  4466. "authors": [
  4467. {
  4468. "name": "PHP-FIG",
  4469. "homepage": "https://www.php-fig.org/"
  4470. }
  4471. ],
  4472. "description": "Common interface for logging libraries",
  4473. "homepage": "https://github.com/php-fig/log",
  4474. "keywords": [
  4475. "log",
  4476. "psr",
  4477. "psr-3"
  4478. ],
  4479. "support": {
  4480. "source": "https://github.com/php-fig/log/tree/1.1.4"
  4481. },
  4482. "time": "2021-05-03T11:20:27+00:00"
  4483. },
  4484. {
  4485. "name": "psr/simple-cache",
  4486. "version": "3.0.0",
  4487. "source": {
  4488. "type": "git",
  4489. "url": "https://github.com/php-fig/simple-cache.git",
  4490. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  4491. },
  4492. "dist": {
  4493. "type": "zip",
  4494. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  4495. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  4496. "shasum": ""
  4497. },
  4498. "require": {
  4499. "php": ">=8.0.0"
  4500. },
  4501. "type": "library",
  4502. "extra": {
  4503. "branch-alias": {
  4504. "dev-master": "3.0.x-dev"
  4505. }
  4506. },
  4507. "autoload": {
  4508. "psr-4": {
  4509. "Psr\\SimpleCache\\": "src/"
  4510. }
  4511. },
  4512. "notification-url": "https://packagist.org/downloads/",
  4513. "license": [
  4514. "MIT"
  4515. ],
  4516. "authors": [
  4517. {
  4518. "name": "PHP-FIG",
  4519. "homepage": "https://www.php-fig.org/"
  4520. }
  4521. ],
  4522. "description": "Common interfaces for simple caching",
  4523. "keywords": [
  4524. "cache",
  4525. "caching",
  4526. "psr",
  4527. "psr-16",
  4528. "simple-cache"
  4529. ],
  4530. "support": {
  4531. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  4532. },
  4533. "time": "2021-10-29T13:26:27+00:00"
  4534. },
  4535. {
  4536. "name": "psy/psysh",
  4537. "version": "v0.11.14",
  4538. "source": {
  4539. "type": "git",
  4540. "url": "https://github.com/bobthecow/psysh.git",
  4541. "reference": "8c2e264def7a8263a68ef6f0b55ce90b77d41e17"
  4542. },
  4543. "dist": {
  4544. "type": "zip",
  4545. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/8c2e264def7a8263a68ef6f0b55ce90b77d41e17",
  4546. "reference": "8c2e264def7a8263a68ef6f0b55ce90b77d41e17",
  4547. "shasum": ""
  4548. },
  4549. "require": {
  4550. "ext-json": "*",
  4551. "ext-tokenizer": "*",
  4552. "nikic/php-parser": "^4.0 || ^3.1",
  4553. "php": "^8.0 || ^7.0.8",
  4554. "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
  4555. "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
  4556. },
  4557. "conflict": {
  4558. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  4559. },
  4560. "require-dev": {
  4561. "bamarni/composer-bin-plugin": "^1.2"
  4562. },
  4563. "suggest": {
  4564. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4565. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4566. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  4567. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history."
  4568. },
  4569. "bin": [
  4570. "bin/psysh"
  4571. ],
  4572. "type": "library",
  4573. "extra": {
  4574. "branch-alias": {
  4575. "dev-main": "0.11.x-dev"
  4576. }
  4577. },
  4578. "autoload": {
  4579. "files": [
  4580. "src/functions.php"
  4581. ],
  4582. "psr-4": {
  4583. "Psy\\": "src/"
  4584. }
  4585. },
  4586. "notification-url": "https://packagist.org/downloads/",
  4587. "license": [
  4588. "MIT"
  4589. ],
  4590. "authors": [
  4591. {
  4592. "name": "Justin Hileman",
  4593. "email": "justin@justinhileman.info",
  4594. "homepage": "http://justinhileman.com"
  4595. }
  4596. ],
  4597. "description": "An interactive shell for modern PHP.",
  4598. "homepage": "http://psysh.org",
  4599. "keywords": [
  4600. "REPL",
  4601. "console",
  4602. "interactive",
  4603. "shell"
  4604. ],
  4605. "support": {
  4606. "issues": "https://github.com/bobthecow/psysh/issues",
  4607. "source": "https://github.com/bobthecow/psysh/tree/v0.11.14"
  4608. },
  4609. "time": "2023-03-28T03:41:01+00:00"
  4610. },
  4611. {
  4612. "name": "qirolab/laravel-themer",
  4613. "version": "2.1.0",
  4614. "source": {
  4615. "type": "git",
  4616. "url": "https://github.com/qirolab/laravel-themer.git",
  4617. "reference": "f643b371411e063fb0d42bffb1586df6ec70972b"
  4618. },
  4619. "dist": {
  4620. "type": "zip",
  4621. "url": "https://api.github.com/repos/qirolab/laravel-themer/zipball/f643b371411e063fb0d42bffb1586df6ec70972b",
  4622. "reference": "f643b371411e063fb0d42bffb1586df6ec70972b",
  4623. "shasum": ""
  4624. },
  4625. "require": {
  4626. "facade/ignition-contracts": "^1.0",
  4627. "illuminate/support": "^9.19|^10.0",
  4628. "php": ">=7.1.0"
  4629. },
  4630. "require-dev": {
  4631. "orchestra/testbench": "^7.0|^8.0",
  4632. "phpunit/phpunit": "^8.3|^9.0",
  4633. "vimeo/psalm": "^4.0"
  4634. },
  4635. "type": "library",
  4636. "extra": {
  4637. "laravel": {
  4638. "providers": [
  4639. "Qirolab\\Theme\\ThemeServiceProvider"
  4640. ]
  4641. }
  4642. },
  4643. "autoload": {
  4644. "psr-4": {
  4645. "Qirolab\\Theme\\": "src",
  4646. "Qirolab\\Theme\\Database\\Factories\\": "database/factories"
  4647. }
  4648. },
  4649. "notification-url": "https://packagist.org/downloads/",
  4650. "license": [
  4651. "MIT"
  4652. ],
  4653. "authors": [
  4654. {
  4655. "name": "Harish Kumar",
  4656. "email": "harish@qirolab.com",
  4657. "homepage": "https://qirolab.com",
  4658. "role": "Developer"
  4659. }
  4660. ],
  4661. "description": "A Laravel theme manager, that will help you organize and maintain your themes inside Laravel projects.",
  4662. "homepage": "https://qirolab.com",
  4663. "keywords": [
  4664. "laravel",
  4665. "laravel-theme",
  4666. "qirolab",
  4667. "theme"
  4668. ],
  4669. "support": {
  4670. "issues": "https://github.com/qirolab/laravel-themer/issues",
  4671. "source": "https://github.com/qirolab/laravel-themer/tree/2.1.0"
  4672. },
  4673. "funding": [
  4674. {
  4675. "url": "https://www.buymeacoffee.com/qirolab",
  4676. "type": "other"
  4677. }
  4678. ],
  4679. "time": "2023-02-14T12:31:27+00:00"
  4680. },
  4681. {
  4682. "name": "ralouphie/getallheaders",
  4683. "version": "3.0.3",
  4684. "source": {
  4685. "type": "git",
  4686. "url": "https://github.com/ralouphie/getallheaders.git",
  4687. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4688. },
  4689. "dist": {
  4690. "type": "zip",
  4691. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4692. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4693. "shasum": ""
  4694. },
  4695. "require": {
  4696. "php": ">=5.6"
  4697. },
  4698. "require-dev": {
  4699. "php-coveralls/php-coveralls": "^2.1",
  4700. "phpunit/phpunit": "^5 || ^6.5"
  4701. },
  4702. "type": "library",
  4703. "autoload": {
  4704. "files": [
  4705. "src/getallheaders.php"
  4706. ]
  4707. },
  4708. "notification-url": "https://packagist.org/downloads/",
  4709. "license": [
  4710. "MIT"
  4711. ],
  4712. "authors": [
  4713. {
  4714. "name": "Ralph Khattar",
  4715. "email": "ralph.khattar@gmail.com"
  4716. }
  4717. ],
  4718. "description": "A polyfill for getallheaders.",
  4719. "support": {
  4720. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4721. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4722. },
  4723. "time": "2019-03-08T08:55:37+00:00"
  4724. },
  4725. {
  4726. "name": "ramsey/collection",
  4727. "version": "2.0.0",
  4728. "source": {
  4729. "type": "git",
  4730. "url": "https://github.com/ramsey/collection.git",
  4731. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5"
  4732. },
  4733. "dist": {
  4734. "type": "zip",
  4735. "url": "https://api.github.com/repos/ramsey/collection/zipball/a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  4736. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  4737. "shasum": ""
  4738. },
  4739. "require": {
  4740. "php": "^8.1"
  4741. },
  4742. "require-dev": {
  4743. "captainhook/plugin-composer": "^5.3",
  4744. "ergebnis/composer-normalize": "^2.28.3",
  4745. "fakerphp/faker": "^1.21",
  4746. "hamcrest/hamcrest-php": "^2.0",
  4747. "jangregor/phpstan-prophecy": "^1.0",
  4748. "mockery/mockery": "^1.5",
  4749. "php-parallel-lint/php-console-highlighter": "^1.0",
  4750. "php-parallel-lint/php-parallel-lint": "^1.3",
  4751. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  4752. "phpspec/prophecy-phpunit": "^2.0",
  4753. "phpstan/extension-installer": "^1.2",
  4754. "phpstan/phpstan": "^1.9",
  4755. "phpstan/phpstan-mockery": "^1.1",
  4756. "phpstan/phpstan-phpunit": "^1.3",
  4757. "phpunit/phpunit": "^9.5",
  4758. "psalm/plugin-mockery": "^1.1",
  4759. "psalm/plugin-phpunit": "^0.18.4",
  4760. "ramsey/coding-standard": "^2.0.3",
  4761. "ramsey/conventional-commits": "^1.3",
  4762. "vimeo/psalm": "^5.4"
  4763. },
  4764. "type": "library",
  4765. "extra": {
  4766. "captainhook": {
  4767. "force-install": true
  4768. },
  4769. "ramsey/conventional-commits": {
  4770. "configFile": "conventional-commits.json"
  4771. }
  4772. },
  4773. "autoload": {
  4774. "psr-4": {
  4775. "Ramsey\\Collection\\": "src/"
  4776. }
  4777. },
  4778. "notification-url": "https://packagist.org/downloads/",
  4779. "license": [
  4780. "MIT"
  4781. ],
  4782. "authors": [
  4783. {
  4784. "name": "Ben Ramsey",
  4785. "email": "ben@benramsey.com",
  4786. "homepage": "https://benramsey.com"
  4787. }
  4788. ],
  4789. "description": "A PHP library for representing and manipulating collections.",
  4790. "keywords": [
  4791. "array",
  4792. "collection",
  4793. "hash",
  4794. "map",
  4795. "queue",
  4796. "set"
  4797. ],
  4798. "support": {
  4799. "issues": "https://github.com/ramsey/collection/issues",
  4800. "source": "https://github.com/ramsey/collection/tree/2.0.0"
  4801. },
  4802. "funding": [
  4803. {
  4804. "url": "https://github.com/ramsey",
  4805. "type": "github"
  4806. },
  4807. {
  4808. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4809. "type": "tidelift"
  4810. }
  4811. ],
  4812. "time": "2022-12-31T21:50:55+00:00"
  4813. },
  4814. {
  4815. "name": "ramsey/uuid",
  4816. "version": "4.x-dev",
  4817. "source": {
  4818. "type": "git",
  4819. "url": "https://github.com/ramsey/uuid.git",
  4820. "reference": "8e955307d32dc9b6992440ff81321d3cb09db75a"
  4821. },
  4822. "dist": {
  4823. "type": "zip",
  4824. "url": "https://api.github.com/repos/ramsey/uuid/zipball/8e955307d32dc9b6992440ff81321d3cb09db75a",
  4825. "reference": "8e955307d32dc9b6992440ff81321d3cb09db75a",
  4826. "shasum": ""
  4827. },
  4828. "require": {
  4829. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11",
  4830. "ext-json": "*",
  4831. "php": "^8.0",
  4832. "ramsey/collection": "^1.2 || ^2.0"
  4833. },
  4834. "replace": {
  4835. "rhumsaa/uuid": "self.version"
  4836. },
  4837. "require-dev": {
  4838. "captainhook/captainhook": "^5.10",
  4839. "captainhook/plugin-composer": "^5.3",
  4840. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4841. "doctrine/annotations": "^1.8",
  4842. "ergebnis/composer-normalize": "^2.15",
  4843. "mockery/mockery": "^1.3",
  4844. "paragonie/random-lib": "^2",
  4845. "php-mock/php-mock": "^2.2",
  4846. "php-mock/php-mock-mockery": "^1.3",
  4847. "php-parallel-lint/php-parallel-lint": "^1.1",
  4848. "phpbench/phpbench": "^1.0",
  4849. "phpstan/extension-installer": "^1.1",
  4850. "phpstan/phpstan": "^1.8",
  4851. "phpstan/phpstan-mockery": "^1.1",
  4852. "phpstan/phpstan-phpunit": "^1.1",
  4853. "phpunit/phpunit": "^8.5 || ^9",
  4854. "ramsey/composer-repl": "^1.4",
  4855. "slevomat/coding-standard": "^8.4",
  4856. "squizlabs/php_codesniffer": "^3.5",
  4857. "vimeo/psalm": "^4.9"
  4858. },
  4859. "suggest": {
  4860. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4861. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4862. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4863. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4864. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4865. },
  4866. "default-branch": true,
  4867. "type": "library",
  4868. "extra": {
  4869. "captainhook": {
  4870. "force-install": true
  4871. }
  4872. },
  4873. "autoload": {
  4874. "files": [
  4875. "src/functions.php"
  4876. ],
  4877. "psr-4": {
  4878. "Ramsey\\Uuid\\": "src/"
  4879. }
  4880. },
  4881. "notification-url": "https://packagist.org/downloads/",
  4882. "license": [
  4883. "MIT"
  4884. ],
  4885. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4886. "keywords": [
  4887. "guid",
  4888. "identifier",
  4889. "uuid"
  4890. ],
  4891. "support": {
  4892. "issues": "https://github.com/ramsey/uuid/issues",
  4893. "source": "https://github.com/ramsey/uuid/tree/4.x"
  4894. },
  4895. "funding": [
  4896. {
  4897. "url": "https://github.com/ramsey",
  4898. "type": "github"
  4899. },
  4900. {
  4901. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  4902. "type": "tidelift"
  4903. }
  4904. ],
  4905. "time": "2023-03-27T22:05:11+00:00"
  4906. },
  4907. {
  4908. "name": "sabberworm/php-css-parser",
  4909. "version": "8.4.0",
  4910. "source": {
  4911. "type": "git",
  4912. "url": "https://github.com/sabberworm/PHP-CSS-Parser.git",
  4913. "reference": "e41d2140031d533348b2192a83f02d8dd8a71d30"
  4914. },
  4915. "dist": {
  4916. "type": "zip",
  4917. "url": "https://api.github.com/repos/sabberworm/PHP-CSS-Parser/zipball/e41d2140031d533348b2192a83f02d8dd8a71d30",
  4918. "reference": "e41d2140031d533348b2192a83f02d8dd8a71d30",
  4919. "shasum": ""
  4920. },
  4921. "require": {
  4922. "ext-iconv": "*",
  4923. "php": ">=5.6.20"
  4924. },
  4925. "require-dev": {
  4926. "codacy/coverage": "^1.4",
  4927. "phpunit/phpunit": "^4.8.36"
  4928. },
  4929. "suggest": {
  4930. "ext-mbstring": "for parsing UTF-8 CSS"
  4931. },
  4932. "type": "library",
  4933. "autoload": {
  4934. "psr-4": {
  4935. "Sabberworm\\CSS\\": "src/"
  4936. }
  4937. },
  4938. "notification-url": "https://packagist.org/downloads/",
  4939. "license": [
  4940. "MIT"
  4941. ],
  4942. "authors": [
  4943. {
  4944. "name": "Raphael Schweikert"
  4945. }
  4946. ],
  4947. "description": "Parser for CSS Files written in PHP",
  4948. "homepage": "https://www.sabberworm.com/blog/2010/6/10/php-css-parser",
  4949. "keywords": [
  4950. "css",
  4951. "parser",
  4952. "stylesheet"
  4953. ],
  4954. "support": {
  4955. "issues": "https://github.com/sabberworm/PHP-CSS-Parser/issues",
  4956. "source": "https://github.com/sabberworm/PHP-CSS-Parser/tree/8.4.0"
  4957. },
  4958. "time": "2021-12-11T13:40:54+00:00"
  4959. },
  4960. {
  4961. "name": "socialiteproviders/discord",
  4962. "version": "4.1.2",
  4963. "source": {
  4964. "type": "git",
  4965. "url": "https://github.com/SocialiteProviders/Discord.git",
  4966. "reference": "11f6a8ded5b1948723886f2e5413b91139fcce6b"
  4967. },
  4968. "dist": {
  4969. "type": "zip",
  4970. "url": "https://api.github.com/repos/SocialiteProviders/Discord/zipball/11f6a8ded5b1948723886f2e5413b91139fcce6b",
  4971. "reference": "11f6a8ded5b1948723886f2e5413b91139fcce6b",
  4972. "shasum": ""
  4973. },
  4974. "require": {
  4975. "ext-json": "*",
  4976. "php": "^7.4 || ^8.0",
  4977. "socialiteproviders/manager": "~4.0"
  4978. },
  4979. "type": "library",
  4980. "autoload": {
  4981. "psr-4": {
  4982. "SocialiteProviders\\Discord\\": ""
  4983. }
  4984. },
  4985. "notification-url": "https://packagist.org/downloads/",
  4986. "license": [
  4987. "MIT"
  4988. ],
  4989. "authors": [
  4990. {
  4991. "name": "Christopher Eklund",
  4992. "email": "eklundchristopher@gmail.com"
  4993. }
  4994. ],
  4995. "description": "Discord OAuth2 Provider for Laravel Socialite",
  4996. "keywords": [
  4997. "discord",
  4998. "laravel",
  4999. "oauth",
  5000. "provider",
  5001. "socialite"
  5002. ],
  5003. "support": {
  5004. "docs": "https://socialiteproviders.com/discord",
  5005. "issues": "https://github.com/socialiteproviders/providers/issues",
  5006. "source": "https://github.com/socialiteproviders/providers"
  5007. },
  5008. "time": "2023-02-01T08:54:49+00:00"
  5009. },
  5010. {
  5011. "name": "socialiteproviders/manager",
  5012. "version": "v4.3.0",
  5013. "source": {
  5014. "type": "git",
  5015. "url": "https://github.com/SocialiteProviders/Manager.git",
  5016. "reference": "47402cbc5b7ef445317e799bf12fd5a12062206c"
  5017. },
  5018. "dist": {
  5019. "type": "zip",
  5020. "url": "https://api.github.com/repos/SocialiteProviders/Manager/zipball/47402cbc5b7ef445317e799bf12fd5a12062206c",
  5021. "reference": "47402cbc5b7ef445317e799bf12fd5a12062206c",
  5022. "shasum": ""
  5023. },
  5024. "require": {
  5025. "illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0",
  5026. "laravel/socialite": "~5.0",
  5027. "php": "^7.4 || ^8.0"
  5028. },
  5029. "require-dev": {
  5030. "mockery/mockery": "^1.2",
  5031. "phpunit/phpunit": "^6.0 || ^9.0"
  5032. },
  5033. "type": "library",
  5034. "extra": {
  5035. "laravel": {
  5036. "providers": [
  5037. "SocialiteProviders\\Manager\\ServiceProvider"
  5038. ]
  5039. }
  5040. },
  5041. "autoload": {
  5042. "psr-4": {
  5043. "SocialiteProviders\\Manager\\": "src/"
  5044. }
  5045. },
  5046. "notification-url": "https://packagist.org/downloads/",
  5047. "license": [
  5048. "MIT"
  5049. ],
  5050. "authors": [
  5051. {
  5052. "name": "Andy Wendt",
  5053. "email": "andy@awendt.com"
  5054. },
  5055. {
  5056. "name": "Anton Komarev",
  5057. "email": "a.komarev@cybercog.su"
  5058. },
  5059. {
  5060. "name": "Miguel Piedrafita",
  5061. "email": "soy@miguelpiedrafita.com"
  5062. },
  5063. {
  5064. "name": "atymic",
  5065. "email": "atymicq@gmail.com",
  5066. "homepage": "https://atymic.dev"
  5067. }
  5068. ],
  5069. "description": "Easily add new or override built-in providers in Laravel Socialite.",
  5070. "homepage": "https://socialiteproviders.com",
  5071. "keywords": [
  5072. "laravel",
  5073. "manager",
  5074. "oauth",
  5075. "providers",
  5076. "socialite"
  5077. ],
  5078. "support": {
  5079. "issues": "https://github.com/socialiteproviders/manager/issues",
  5080. "source": "https://github.com/socialiteproviders/manager"
  5081. },
  5082. "time": "2023-01-26T23:11:27+00:00"
  5083. },
  5084. {
  5085. "name": "spatie/laravel-activitylog",
  5086. "version": "4.7.3",
  5087. "source": {
  5088. "type": "git",
  5089. "url": "https://github.com/spatie/laravel-activitylog.git",
  5090. "reference": "ec65a478a909b8df1b4f0c3c45de2592ca7639e5"
  5091. },
  5092. "dist": {
  5093. "type": "zip",
  5094. "url": "https://api.github.com/repos/spatie/laravel-activitylog/zipball/ec65a478a909b8df1b4f0c3c45de2592ca7639e5",
  5095. "reference": "ec65a478a909b8df1b4f0c3c45de2592ca7639e5",
  5096. "shasum": ""
  5097. },
  5098. "require": {
  5099. "illuminate/config": "^8.0 || ^9.0 || ^10.0",
  5100. "illuminate/database": "^8.69 || ^9.27 || ^10.0",
  5101. "illuminate/support": "^8.0 || ^9.0 || ^10.0",
  5102. "php": "^8.0",
  5103. "spatie/laravel-package-tools": "^1.6.3"
  5104. },
  5105. "require-dev": {
  5106. "ext-json": "*",
  5107. "orchestra/testbench": "^6.23 || ^7.0 || ^8.0",
  5108. "pestphp/pest": "^1.20"
  5109. },
  5110. "type": "library",
  5111. "extra": {
  5112. "laravel": {
  5113. "providers": [
  5114. "Spatie\\Activitylog\\ActivitylogServiceProvider"
  5115. ]
  5116. }
  5117. },
  5118. "autoload": {
  5119. "files": [
  5120. "src/helpers.php"
  5121. ],
  5122. "psr-4": {
  5123. "Spatie\\Activitylog\\": "src"
  5124. }
  5125. },
  5126. "notification-url": "https://packagist.org/downloads/",
  5127. "license": [
  5128. "MIT"
  5129. ],
  5130. "authors": [
  5131. {
  5132. "name": "Freek Van der Herten",
  5133. "email": "freek@spatie.be",
  5134. "homepage": "https://spatie.be",
  5135. "role": "Developer"
  5136. },
  5137. {
  5138. "name": "Sebastian De Deyne",
  5139. "email": "sebastian@spatie.be",
  5140. "homepage": "https://spatie.be",
  5141. "role": "Developer"
  5142. },
  5143. {
  5144. "name": "Tom Witkowski",
  5145. "email": "dev.gummibeer@gmail.com",
  5146. "homepage": "https://gummibeer.de",
  5147. "role": "Developer"
  5148. }
  5149. ],
  5150. "description": "A very simple activity logger to monitor the users of your website or application",
  5151. "homepage": "https://github.com/spatie/activitylog",
  5152. "keywords": [
  5153. "activity",
  5154. "laravel",
  5155. "log",
  5156. "spatie",
  5157. "user"
  5158. ],
  5159. "support": {
  5160. "issues": "https://github.com/spatie/laravel-activitylog/issues",
  5161. "source": "https://github.com/spatie/laravel-activitylog/tree/4.7.3"
  5162. },
  5163. "funding": [
  5164. {
  5165. "url": "https://spatie.be/open-source/support-us",
  5166. "type": "custom"
  5167. },
  5168. {
  5169. "url": "https://github.com/spatie",
  5170. "type": "github"
  5171. }
  5172. ],
  5173. "time": "2023-01-25T17:04:51+00:00"
  5174. },
  5175. {
  5176. "name": "spatie/laravel-package-tools",
  5177. "version": "1.14.2",
  5178. "source": {
  5179. "type": "git",
  5180. "url": "https://github.com/spatie/laravel-package-tools.git",
  5181. "reference": "bab62023a4745a61170ad5424184533685e73c2d"
  5182. },
  5183. "dist": {
  5184. "type": "zip",
  5185. "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/bab62023a4745a61170ad5424184533685e73c2d",
  5186. "reference": "bab62023a4745a61170ad5424184533685e73c2d",
  5187. "shasum": ""
  5188. },
  5189. "require": {
  5190. "illuminate/contracts": "^9.28|^10.0",
  5191. "php": "^8.0"
  5192. },
  5193. "require-dev": {
  5194. "mockery/mockery": "^1.5",
  5195. "orchestra/testbench": "^7.7|^8.0",
  5196. "pestphp/pest": "^1.22",
  5197. "phpunit/phpunit": "^9.5.24",
  5198. "spatie/pest-plugin-test-time": "^1.1"
  5199. },
  5200. "type": "library",
  5201. "autoload": {
  5202. "psr-4": {
  5203. "Spatie\\LaravelPackageTools\\": "src"
  5204. }
  5205. },
  5206. "notification-url": "https://packagist.org/downloads/",
  5207. "license": [
  5208. "MIT"
  5209. ],
  5210. "authors": [
  5211. {
  5212. "name": "Freek Van der Herten",
  5213. "email": "freek@spatie.be",
  5214. "role": "Developer"
  5215. }
  5216. ],
  5217. "description": "Tools for creating Laravel packages",
  5218. "homepage": "https://github.com/spatie/laravel-package-tools",
  5219. "keywords": [
  5220. "laravel-package-tools",
  5221. "spatie"
  5222. ],
  5223. "support": {
  5224. "issues": "https://github.com/spatie/laravel-package-tools/issues",
  5225. "source": "https://github.com/spatie/laravel-package-tools/tree/1.14.2"
  5226. },
  5227. "funding": [
  5228. {
  5229. "url": "https://github.com/spatie",
  5230. "type": "github"
  5231. }
  5232. ],
  5233. "time": "2023-03-14T16:41:21+00:00"
  5234. },
  5235. {
  5236. "name": "spatie/laravel-query-builder",
  5237. "version": "5.2.0",
  5238. "source": {
  5239. "type": "git",
  5240. "url": "https://github.com/spatie/laravel-query-builder.git",
  5241. "reference": "7b3911f61dcaa27804b80f30b73a468a9539e850"
  5242. },
  5243. "dist": {
  5244. "type": "zip",
  5245. "url": "https://api.github.com/repos/spatie/laravel-query-builder/zipball/7b3911f61dcaa27804b80f30b73a468a9539e850",
  5246. "reference": "7b3911f61dcaa27804b80f30b73a468a9539e850",
  5247. "shasum": ""
  5248. },
  5249. "require": {
  5250. "illuminate/database": "^9.0|^10.0",
  5251. "illuminate/http": "^9.0|^10.0",
  5252. "illuminate/support": "^9.0|^10.0",
  5253. "php": "^8.0",
  5254. "spatie/laravel-package-tools": "^1.11"
  5255. },
  5256. "require-dev": {
  5257. "ext-json": "*",
  5258. "mockery/mockery": "^1.4",
  5259. "orchestra/testbench": "^7.0|^8.0",
  5260. "pestphp/pest": "^1.20",
  5261. "spatie/laravel-ray": "^1.28"
  5262. },
  5263. "type": "library",
  5264. "extra": {
  5265. "laravel": {
  5266. "providers": [
  5267. "Spatie\\QueryBuilder\\QueryBuilderServiceProvider"
  5268. ]
  5269. }
  5270. },
  5271. "autoload": {
  5272. "psr-4": {
  5273. "Spatie\\QueryBuilder\\": "src",
  5274. "Spatie\\QueryBuilder\\Database\\Factories\\": "database/factories"
  5275. }
  5276. },
  5277. "notification-url": "https://packagist.org/downloads/",
  5278. "license": [
  5279. "MIT"
  5280. ],
  5281. "authors": [
  5282. {
  5283. "name": "Alex Vanderbist",
  5284. "email": "alex@spatie.be",
  5285. "homepage": "https://spatie.be",
  5286. "role": "Developer"
  5287. }
  5288. ],
  5289. "description": "Easily build Eloquent queries from API requests",
  5290. "homepage": "https://github.com/spatie/laravel-query-builder",
  5291. "keywords": [
  5292. "laravel-query-builder",
  5293. "spatie"
  5294. ],
  5295. "support": {
  5296. "issues": "https://github.com/spatie/laravel-query-builder/issues",
  5297. "source": "https://github.com/spatie/laravel-query-builder"
  5298. },
  5299. "funding": [
  5300. {
  5301. "url": "https://spatie.be/open-source/support-us",
  5302. "type": "custom"
  5303. }
  5304. ],
  5305. "time": "2023-02-24T15:48:30+00:00"
  5306. },
  5307. {
  5308. "name": "spatie/laravel-settings",
  5309. "version": "2.8.2",
  5310. "source": {
  5311. "type": "git",
  5312. "url": "https://github.com/spatie/laravel-settings.git",
  5313. "reference": "48140731312d73ad000921e23d53b8e1fe5247cf"
  5314. },
  5315. "dist": {
  5316. "type": "zip",
  5317. "url": "https://api.github.com/repos/spatie/laravel-settings/zipball/48140731312d73ad000921e23d53b8e1fe5247cf",
  5318. "reference": "48140731312d73ad000921e23d53b8e1fe5247cf",
  5319. "shasum": ""
  5320. },
  5321. "require": {
  5322. "doctrine/dbal": "^2.13|^3.2",
  5323. "ext-json": "*",
  5324. "illuminate/database": "^8.73|^9.0|^10.0",
  5325. "php": "^7.4|^8.0",
  5326. "phpdocumentor/type-resolver": "^1.5",
  5327. "spatie/temporary-directory": "^1.3|^2.0"
  5328. },
  5329. "require-dev": {
  5330. "ext-redis": "*",
  5331. "mockery/mockery": "^1.4",
  5332. "nunomaduro/larastan": "^2.0",
  5333. "orchestra/testbench": "^6.23|^7.0|^8.0",
  5334. "pestphp/pest": "^1.21",
  5335. "pestphp/pest-plugin-laravel": "^1.2",
  5336. "phpstan/extension-installer": "^1.1",
  5337. "phpstan/phpstan-deprecation-rules": "^1.0",
  5338. "phpstan/phpstan-phpunit": "^1.0",
  5339. "phpunit/phpunit": "^9.5",
  5340. "spatie/laravel-data": "^1.0.0|^2.0.0",
  5341. "spatie/pest-plugin-snapshots": "^1.1",
  5342. "spatie/phpunit-snapshot-assertions": "^4.2",
  5343. "spatie/ray": "^1.36"
  5344. },
  5345. "suggest": {
  5346. "spatie/data-transfer-object": "Allows for DTO casting to settings. (deprecated)"
  5347. },
  5348. "type": "library",
  5349. "extra": {
  5350. "laravel": {
  5351. "providers": [
  5352. "Spatie\\LaravelSettings\\LaravelSettingsServiceProvider"
  5353. ]
  5354. }
  5355. },
  5356. "autoload": {
  5357. "psr-4": {
  5358. "Spatie\\LaravelSettings\\": "src"
  5359. }
  5360. },
  5361. "notification-url": "https://packagist.org/downloads/",
  5362. "license": [
  5363. "MIT"
  5364. ],
  5365. "authors": [
  5366. {
  5367. "name": "Ruben Van Assche",
  5368. "email": "ruben@spatie.be",
  5369. "homepage": "https://spatie.be",
  5370. "role": "Developer"
  5371. }
  5372. ],
  5373. "description": "Store your application settings",
  5374. "homepage": "https://github.com/spatie/laravel-settings",
  5375. "keywords": [
  5376. "laravel-settings",
  5377. "spatie"
  5378. ],
  5379. "support": {
  5380. "issues": "https://github.com/spatie/laravel-settings/issues",
  5381. "source": "https://github.com/spatie/laravel-settings/tree/2.8.2"
  5382. },
  5383. "funding": [
  5384. {
  5385. "url": "https://spatie.be/open-source/support-us",
  5386. "type": "custom"
  5387. },
  5388. {
  5389. "url": "https://github.com/spatie",
  5390. "type": "github"
  5391. }
  5392. ],
  5393. "time": "2023-03-10T09:30:34+00:00"
  5394. },
  5395. {
  5396. "name": "spatie/laravel-validation-rules",
  5397. "version": "3.2.2",
  5398. "source": {
  5399. "type": "git",
  5400. "url": "https://github.com/spatie/laravel-validation-rules.git",
  5401. "reference": "3cbef3441cb274cd3c12409586f18c3a44d46d0a"
  5402. },
  5403. "dist": {
  5404. "type": "zip",
  5405. "url": "https://api.github.com/repos/spatie/laravel-validation-rules/zipball/3cbef3441cb274cd3c12409586f18c3a44d46d0a",
  5406. "reference": "3cbef3441cb274cd3c12409586f18c3a44d46d0a",
  5407. "shasum": ""
  5408. },
  5409. "require": {
  5410. "illuminate/support": "^8.0|^9.0|^10.0",
  5411. "php": "^8.0"
  5412. },
  5413. "require-dev": {
  5414. "laravel/pint": "^1.3",
  5415. "league/iso3166": "^3.0",
  5416. "myclabs/php-enum": "^1.6",
  5417. "orchestra/testbench": "^6.23|^7.0|^8.0",
  5418. "phpunit/phpunit": "^9.4",
  5419. "spatie/enum": "^2.2|^3.0"
  5420. },
  5421. "suggest": {
  5422. "league/iso3166": "Needed for the CountryCode rule and Currency rule"
  5423. },
  5424. "type": "library",
  5425. "extra": {
  5426. "laravel": {
  5427. "providers": [
  5428. "Spatie\\ValidationRules\\ValidationRulesServiceProvider"
  5429. ]
  5430. }
  5431. },
  5432. "autoload": {
  5433. "psr-4": {
  5434. "Spatie\\ValidationRules\\": "src",
  5435. "Spatie\\ValidationRules\\Database\\Factories\\": "database/factories"
  5436. }
  5437. },
  5438. "notification-url": "https://packagist.org/downloads/",
  5439. "license": [
  5440. "MIT"
  5441. ],
  5442. "authors": [
  5443. {
  5444. "name": "Freek Van der Herten",
  5445. "email": "freek@spatie.be",
  5446. "homepage": "https://spatie.be",
  5447. "role": "Developer"
  5448. }
  5449. ],
  5450. "description": "A set of useful Laravel validation rules",
  5451. "homepage": "https://github.com/spatie/laravel-validation-rules",
  5452. "keywords": [
  5453. "laravel-validation-rules",
  5454. "spatie"
  5455. ],
  5456. "support": {
  5457. "issues": "https://github.com/spatie/laravel-validation-rules/issues",
  5458. "source": "https://github.com/spatie/laravel-validation-rules/tree/3.2.2"
  5459. },
  5460. "funding": [
  5461. {
  5462. "url": "https://github.com/spatie",
  5463. "type": "github"
  5464. }
  5465. ],
  5466. "time": "2023-01-25T16:22:06+00:00"
  5467. },
  5468. {
  5469. "name": "spatie/temporary-directory",
  5470. "version": "2.1.1",
  5471. "source": {
  5472. "type": "git",
  5473. "url": "https://github.com/spatie/temporary-directory.git",
  5474. "reference": "e2818d871783d520b319c2d38dc37c10ecdcde20"
  5475. },
  5476. "dist": {
  5477. "type": "zip",
  5478. "url": "https://api.github.com/repos/spatie/temporary-directory/zipball/e2818d871783d520b319c2d38dc37c10ecdcde20",
  5479. "reference": "e2818d871783d520b319c2d38dc37c10ecdcde20",
  5480. "shasum": ""
  5481. },
  5482. "require": {
  5483. "php": "^8.0"
  5484. },
  5485. "require-dev": {
  5486. "phpunit/phpunit": "^9.5"
  5487. },
  5488. "type": "library",
  5489. "autoload": {
  5490. "psr-4": {
  5491. "Spatie\\TemporaryDirectory\\": "src"
  5492. }
  5493. },
  5494. "notification-url": "https://packagist.org/downloads/",
  5495. "license": [
  5496. "MIT"
  5497. ],
  5498. "authors": [
  5499. {
  5500. "name": "Alex Vanderbist",
  5501. "email": "alex@spatie.be",
  5502. "homepage": "https://spatie.be",
  5503. "role": "Developer"
  5504. }
  5505. ],
  5506. "description": "Easily create, use and destroy temporary directories",
  5507. "homepage": "https://github.com/spatie/temporary-directory",
  5508. "keywords": [
  5509. "php",
  5510. "spatie",
  5511. "temporary-directory"
  5512. ],
  5513. "support": {
  5514. "issues": "https://github.com/spatie/temporary-directory/issues",
  5515. "source": "https://github.com/spatie/temporary-directory/tree/2.1.1"
  5516. },
  5517. "funding": [
  5518. {
  5519. "url": "https://spatie.be/open-source/support-us",
  5520. "type": "custom"
  5521. },
  5522. {
  5523. "url": "https://github.com/spatie",
  5524. "type": "github"
  5525. }
  5526. ],
  5527. "time": "2022-08-23T07:15:15+00:00"
  5528. },
  5529. {
  5530. "name": "stripe/stripe-php",
  5531. "version": "v7.128.0",
  5532. "source": {
  5533. "type": "git",
  5534. "url": "https://github.com/stripe/stripe-php.git",
  5535. "reference": "c704949c49b72985c76cc61063aa26fefbd2724e"
  5536. },
  5537. "dist": {
  5538. "type": "zip",
  5539. "url": "https://api.github.com/repos/stripe/stripe-php/zipball/c704949c49b72985c76cc61063aa26fefbd2724e",
  5540. "reference": "c704949c49b72985c76cc61063aa26fefbd2724e",
  5541. "shasum": ""
  5542. },
  5543. "require": {
  5544. "ext-curl": "*",
  5545. "ext-json": "*",
  5546. "ext-mbstring": "*",
  5547. "php": ">=5.6.0"
  5548. },
  5549. "require-dev": {
  5550. "friendsofphp/php-cs-fixer": "3.5.0",
  5551. "phpstan/phpstan": "^1.2",
  5552. "phpunit/phpunit": "^5.7 || ^9.0",
  5553. "squizlabs/php_codesniffer": "^3.3"
  5554. },
  5555. "type": "library",
  5556. "extra": {
  5557. "branch-alias": {
  5558. "dev-master": "2.0-dev"
  5559. }
  5560. },
  5561. "autoload": {
  5562. "psr-4": {
  5563. "Stripe\\": "lib/"
  5564. }
  5565. },
  5566. "notification-url": "https://packagist.org/downloads/",
  5567. "license": [
  5568. "MIT"
  5569. ],
  5570. "authors": [
  5571. {
  5572. "name": "Stripe and contributors",
  5573. "homepage": "https://github.com/stripe/stripe-php/contributors"
  5574. }
  5575. ],
  5576. "description": "Stripe PHP Library",
  5577. "homepage": "https://stripe.com/",
  5578. "keywords": [
  5579. "api",
  5580. "payment processing",
  5581. "stripe"
  5582. ],
  5583. "support": {
  5584. "issues": "https://github.com/stripe/stripe-php/issues",
  5585. "source": "https://github.com/stripe/stripe-php/tree/v7.128.0"
  5586. },
  5587. "time": "2022-05-05T17:18:02+00:00"
  5588. },
  5589. {
  5590. "name": "symfony/console",
  5591. "version": "v6.2.7",
  5592. "source": {
  5593. "type": "git",
  5594. "url": "https://github.com/symfony/console.git",
  5595. "reference": "cbad09eb8925b6ad4fb721c7a179344dc4a19d45"
  5596. },
  5597. "dist": {
  5598. "type": "zip",
  5599. "url": "https://api.github.com/repos/symfony/console/zipball/cbad09eb8925b6ad4fb721c7a179344dc4a19d45",
  5600. "reference": "cbad09eb8925b6ad4fb721c7a179344dc4a19d45",
  5601. "shasum": ""
  5602. },
  5603. "require": {
  5604. "php": ">=8.1",
  5605. "symfony/deprecation-contracts": "^2.1|^3",
  5606. "symfony/polyfill-mbstring": "~1.0",
  5607. "symfony/service-contracts": "^1.1|^2|^3",
  5608. "symfony/string": "^5.4|^6.0"
  5609. },
  5610. "conflict": {
  5611. "symfony/dependency-injection": "<5.4",
  5612. "symfony/dotenv": "<5.4",
  5613. "symfony/event-dispatcher": "<5.4",
  5614. "symfony/lock": "<5.4",
  5615. "symfony/process": "<5.4"
  5616. },
  5617. "provide": {
  5618. "psr/log-implementation": "1.0|2.0|3.0"
  5619. },
  5620. "require-dev": {
  5621. "psr/log": "^1|^2|^3",
  5622. "symfony/config": "^5.4|^6.0",
  5623. "symfony/dependency-injection": "^5.4|^6.0",
  5624. "symfony/event-dispatcher": "^5.4|^6.0",
  5625. "symfony/lock": "^5.4|^6.0",
  5626. "symfony/process": "^5.4|^6.0",
  5627. "symfony/var-dumper": "^5.4|^6.0"
  5628. },
  5629. "suggest": {
  5630. "psr/log": "For using the console logger",
  5631. "symfony/event-dispatcher": "",
  5632. "symfony/lock": "",
  5633. "symfony/process": ""
  5634. },
  5635. "type": "library",
  5636. "autoload": {
  5637. "psr-4": {
  5638. "Symfony\\Component\\Console\\": ""
  5639. },
  5640. "exclude-from-classmap": [
  5641. "/Tests/"
  5642. ]
  5643. },
  5644. "notification-url": "https://packagist.org/downloads/",
  5645. "license": [
  5646. "MIT"
  5647. ],
  5648. "authors": [
  5649. {
  5650. "name": "Fabien Potencier",
  5651. "email": "fabien@symfony.com"
  5652. },
  5653. {
  5654. "name": "Symfony Community",
  5655. "homepage": "https://symfony.com/contributors"
  5656. }
  5657. ],
  5658. "description": "Eases the creation of beautiful and testable command line interfaces",
  5659. "homepage": "https://symfony.com",
  5660. "keywords": [
  5661. "cli",
  5662. "command line",
  5663. "console",
  5664. "terminal"
  5665. ],
  5666. "support": {
  5667. "source": "https://github.com/symfony/console/tree/v6.2.7"
  5668. },
  5669. "funding": [
  5670. {
  5671. "url": "https://symfony.com/sponsor",
  5672. "type": "custom"
  5673. },
  5674. {
  5675. "url": "https://github.com/fabpot",
  5676. "type": "github"
  5677. },
  5678. {
  5679. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5680. "type": "tidelift"
  5681. }
  5682. ],
  5683. "time": "2023-02-25T17:00:03+00:00"
  5684. },
  5685. {
  5686. "name": "symfony/css-selector",
  5687. "version": "v6.2.7",
  5688. "source": {
  5689. "type": "git",
  5690. "url": "https://github.com/symfony/css-selector.git",
  5691. "reference": "aedf3cb0f5b929ec255d96bbb4909e9932c769e0"
  5692. },
  5693. "dist": {
  5694. "type": "zip",
  5695. "url": "https://api.github.com/repos/symfony/css-selector/zipball/aedf3cb0f5b929ec255d96bbb4909e9932c769e0",
  5696. "reference": "aedf3cb0f5b929ec255d96bbb4909e9932c769e0",
  5697. "shasum": ""
  5698. },
  5699. "require": {
  5700. "php": ">=8.1"
  5701. },
  5702. "type": "library",
  5703. "autoload": {
  5704. "psr-4": {
  5705. "Symfony\\Component\\CssSelector\\": ""
  5706. },
  5707. "exclude-from-classmap": [
  5708. "/Tests/"
  5709. ]
  5710. },
  5711. "notification-url": "https://packagist.org/downloads/",
  5712. "license": [
  5713. "MIT"
  5714. ],
  5715. "authors": [
  5716. {
  5717. "name": "Fabien Potencier",
  5718. "email": "fabien@symfony.com"
  5719. },
  5720. {
  5721. "name": "Jean-François Simon",
  5722. "email": "jeanfrancois.simon@sensiolabs.com"
  5723. },
  5724. {
  5725. "name": "Symfony Community",
  5726. "homepage": "https://symfony.com/contributors"
  5727. }
  5728. ],
  5729. "description": "Converts CSS selectors to XPath expressions",
  5730. "homepage": "https://symfony.com",
  5731. "support": {
  5732. "source": "https://github.com/symfony/css-selector/tree/v6.2.7"
  5733. },
  5734. "funding": [
  5735. {
  5736. "url": "https://symfony.com/sponsor",
  5737. "type": "custom"
  5738. },
  5739. {
  5740. "url": "https://github.com/fabpot",
  5741. "type": "github"
  5742. },
  5743. {
  5744. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5745. "type": "tidelift"
  5746. }
  5747. ],
  5748. "time": "2023-02-14T08:44:56+00:00"
  5749. },
  5750. {
  5751. "name": "symfony/deprecation-contracts",
  5752. "version": "v3.2.1",
  5753. "source": {
  5754. "type": "git",
  5755. "url": "https://github.com/symfony/deprecation-contracts.git",
  5756. "reference": "e2d1534420bd723d0ef5aec58a22c5fe60ce6f5e"
  5757. },
  5758. "dist": {
  5759. "type": "zip",
  5760. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e2d1534420bd723d0ef5aec58a22c5fe60ce6f5e",
  5761. "reference": "e2d1534420bd723d0ef5aec58a22c5fe60ce6f5e",
  5762. "shasum": ""
  5763. },
  5764. "require": {
  5765. "php": ">=8.1"
  5766. },
  5767. "type": "library",
  5768. "extra": {
  5769. "branch-alias": {
  5770. "dev-main": "3.3-dev"
  5771. },
  5772. "thanks": {
  5773. "name": "symfony/contracts",
  5774. "url": "https://github.com/symfony/contracts"
  5775. }
  5776. },
  5777. "autoload": {
  5778. "files": [
  5779. "function.php"
  5780. ]
  5781. },
  5782. "notification-url": "https://packagist.org/downloads/",
  5783. "license": [
  5784. "MIT"
  5785. ],
  5786. "authors": [
  5787. {
  5788. "name": "Nicolas Grekas",
  5789. "email": "p@tchwork.com"
  5790. },
  5791. {
  5792. "name": "Symfony Community",
  5793. "homepage": "https://symfony.com/contributors"
  5794. }
  5795. ],
  5796. "description": "A generic function and convention to trigger deprecation notices",
  5797. "homepage": "https://symfony.com",
  5798. "support": {
  5799. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.2.1"
  5800. },
  5801. "funding": [
  5802. {
  5803. "url": "https://symfony.com/sponsor",
  5804. "type": "custom"
  5805. },
  5806. {
  5807. "url": "https://github.com/fabpot",
  5808. "type": "github"
  5809. },
  5810. {
  5811. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5812. "type": "tidelift"
  5813. }
  5814. ],
  5815. "time": "2023-03-01T10:25:55+00:00"
  5816. },
  5817. {
  5818. "name": "symfony/error-handler",
  5819. "version": "v6.2.7",
  5820. "source": {
  5821. "type": "git",
  5822. "url": "https://github.com/symfony/error-handler.git",
  5823. "reference": "61e90f94eb014054000bc902257d2763fac09166"
  5824. },
  5825. "dist": {
  5826. "type": "zip",
  5827. "url": "https://api.github.com/repos/symfony/error-handler/zipball/61e90f94eb014054000bc902257d2763fac09166",
  5828. "reference": "61e90f94eb014054000bc902257d2763fac09166",
  5829. "shasum": ""
  5830. },
  5831. "require": {
  5832. "php": ">=8.1",
  5833. "psr/log": "^1|^2|^3",
  5834. "symfony/var-dumper": "^5.4|^6.0"
  5835. },
  5836. "require-dev": {
  5837. "symfony/deprecation-contracts": "^2.1|^3",
  5838. "symfony/http-kernel": "^5.4|^6.0",
  5839. "symfony/serializer": "^5.4|^6.0"
  5840. },
  5841. "bin": [
  5842. "Resources/bin/patch-type-declarations"
  5843. ],
  5844. "type": "library",
  5845. "autoload": {
  5846. "psr-4": {
  5847. "Symfony\\Component\\ErrorHandler\\": ""
  5848. },
  5849. "exclude-from-classmap": [
  5850. "/Tests/"
  5851. ]
  5852. },
  5853. "notification-url": "https://packagist.org/downloads/",
  5854. "license": [
  5855. "MIT"
  5856. ],
  5857. "authors": [
  5858. {
  5859. "name": "Fabien Potencier",
  5860. "email": "fabien@symfony.com"
  5861. },
  5862. {
  5863. "name": "Symfony Community",
  5864. "homepage": "https://symfony.com/contributors"
  5865. }
  5866. ],
  5867. "description": "Provides tools to manage errors and ease debugging PHP code",
  5868. "homepage": "https://symfony.com",
  5869. "support": {
  5870. "source": "https://github.com/symfony/error-handler/tree/v6.2.7"
  5871. },
  5872. "funding": [
  5873. {
  5874. "url": "https://symfony.com/sponsor",
  5875. "type": "custom"
  5876. },
  5877. {
  5878. "url": "https://github.com/fabpot",
  5879. "type": "github"
  5880. },
  5881. {
  5882. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5883. "type": "tidelift"
  5884. }
  5885. ],
  5886. "time": "2023-02-14T08:44:56+00:00"
  5887. },
  5888. {
  5889. "name": "symfony/event-dispatcher",
  5890. "version": "v6.2.7",
  5891. "source": {
  5892. "type": "git",
  5893. "url": "https://github.com/symfony/event-dispatcher.git",
  5894. "reference": "404b307de426c1c488e5afad64403e5f145e82a5"
  5895. },
  5896. "dist": {
  5897. "type": "zip",
  5898. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/404b307de426c1c488e5afad64403e5f145e82a5",
  5899. "reference": "404b307de426c1c488e5afad64403e5f145e82a5",
  5900. "shasum": ""
  5901. },
  5902. "require": {
  5903. "php": ">=8.1",
  5904. "symfony/event-dispatcher-contracts": "^2|^3"
  5905. },
  5906. "conflict": {
  5907. "symfony/dependency-injection": "<5.4"
  5908. },
  5909. "provide": {
  5910. "psr/event-dispatcher-implementation": "1.0",
  5911. "symfony/event-dispatcher-implementation": "2.0|3.0"
  5912. },
  5913. "require-dev": {
  5914. "psr/log": "^1|^2|^3",
  5915. "symfony/config": "^5.4|^6.0",
  5916. "symfony/dependency-injection": "^5.4|^6.0",
  5917. "symfony/error-handler": "^5.4|^6.0",
  5918. "symfony/expression-language": "^5.4|^6.0",
  5919. "symfony/http-foundation": "^5.4|^6.0",
  5920. "symfony/service-contracts": "^1.1|^2|^3",
  5921. "symfony/stopwatch": "^5.4|^6.0"
  5922. },
  5923. "suggest": {
  5924. "symfony/dependency-injection": "",
  5925. "symfony/http-kernel": ""
  5926. },
  5927. "type": "library",
  5928. "autoload": {
  5929. "psr-4": {
  5930. "Symfony\\Component\\EventDispatcher\\": ""
  5931. },
  5932. "exclude-from-classmap": [
  5933. "/Tests/"
  5934. ]
  5935. },
  5936. "notification-url": "https://packagist.org/downloads/",
  5937. "license": [
  5938. "MIT"
  5939. ],
  5940. "authors": [
  5941. {
  5942. "name": "Fabien Potencier",
  5943. "email": "fabien@symfony.com"
  5944. },
  5945. {
  5946. "name": "Symfony Community",
  5947. "homepage": "https://symfony.com/contributors"
  5948. }
  5949. ],
  5950. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5951. "homepage": "https://symfony.com",
  5952. "support": {
  5953. "source": "https://github.com/symfony/event-dispatcher/tree/v6.2.7"
  5954. },
  5955. "funding": [
  5956. {
  5957. "url": "https://symfony.com/sponsor",
  5958. "type": "custom"
  5959. },
  5960. {
  5961. "url": "https://github.com/fabpot",
  5962. "type": "github"
  5963. },
  5964. {
  5965. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5966. "type": "tidelift"
  5967. }
  5968. ],
  5969. "time": "2023-02-14T08:44:56+00:00"
  5970. },
  5971. {
  5972. "name": "symfony/event-dispatcher-contracts",
  5973. "version": "v3.2.1",
  5974. "source": {
  5975. "type": "git",
  5976. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5977. "reference": "0ad3b6f1e4e2da5690fefe075cd53a238646d8dd"
  5978. },
  5979. "dist": {
  5980. "type": "zip",
  5981. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/0ad3b6f1e4e2da5690fefe075cd53a238646d8dd",
  5982. "reference": "0ad3b6f1e4e2da5690fefe075cd53a238646d8dd",
  5983. "shasum": ""
  5984. },
  5985. "require": {
  5986. "php": ">=8.1",
  5987. "psr/event-dispatcher": "^1"
  5988. },
  5989. "suggest": {
  5990. "symfony/event-dispatcher-implementation": ""
  5991. },
  5992. "type": "library",
  5993. "extra": {
  5994. "branch-alias": {
  5995. "dev-main": "3.3-dev"
  5996. },
  5997. "thanks": {
  5998. "name": "symfony/contracts",
  5999. "url": "https://github.com/symfony/contracts"
  6000. }
  6001. },
  6002. "autoload": {
  6003. "psr-4": {
  6004. "Symfony\\Contracts\\EventDispatcher\\": ""
  6005. }
  6006. },
  6007. "notification-url": "https://packagist.org/downloads/",
  6008. "license": [
  6009. "MIT"
  6010. ],
  6011. "authors": [
  6012. {
  6013. "name": "Nicolas Grekas",
  6014. "email": "p@tchwork.com"
  6015. },
  6016. {
  6017. "name": "Symfony Community",
  6018. "homepage": "https://symfony.com/contributors"
  6019. }
  6020. ],
  6021. "description": "Generic abstractions related to dispatching event",
  6022. "homepage": "https://symfony.com",
  6023. "keywords": [
  6024. "abstractions",
  6025. "contracts",
  6026. "decoupling",
  6027. "interfaces",
  6028. "interoperability",
  6029. "standards"
  6030. ],
  6031. "support": {
  6032. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.2.1"
  6033. },
  6034. "funding": [
  6035. {
  6036. "url": "https://symfony.com/sponsor",
  6037. "type": "custom"
  6038. },
  6039. {
  6040. "url": "https://github.com/fabpot",
  6041. "type": "github"
  6042. },
  6043. {
  6044. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6045. "type": "tidelift"
  6046. }
  6047. ],
  6048. "time": "2023-03-01T10:32:47+00:00"
  6049. },
  6050. {
  6051. "name": "symfony/finder",
  6052. "version": "v6.2.7",
  6053. "source": {
  6054. "type": "git",
  6055. "url": "https://github.com/symfony/finder.git",
  6056. "reference": "20808dc6631aecafbe67c186af5dcb370be3a0eb"
  6057. },
  6058. "dist": {
  6059. "type": "zip",
  6060. "url": "https://api.github.com/repos/symfony/finder/zipball/20808dc6631aecafbe67c186af5dcb370be3a0eb",
  6061. "reference": "20808dc6631aecafbe67c186af5dcb370be3a0eb",
  6062. "shasum": ""
  6063. },
  6064. "require": {
  6065. "php": ">=8.1"
  6066. },
  6067. "require-dev": {
  6068. "symfony/filesystem": "^6.0"
  6069. },
  6070. "type": "library",
  6071. "autoload": {
  6072. "psr-4": {
  6073. "Symfony\\Component\\Finder\\": ""
  6074. },
  6075. "exclude-from-classmap": [
  6076. "/Tests/"
  6077. ]
  6078. },
  6079. "notification-url": "https://packagist.org/downloads/",
  6080. "license": [
  6081. "MIT"
  6082. ],
  6083. "authors": [
  6084. {
  6085. "name": "Fabien Potencier",
  6086. "email": "fabien@symfony.com"
  6087. },
  6088. {
  6089. "name": "Symfony Community",
  6090. "homepage": "https://symfony.com/contributors"
  6091. }
  6092. ],
  6093. "description": "Finds files and directories via an intuitive fluent interface",
  6094. "homepage": "https://symfony.com",
  6095. "support": {
  6096. "source": "https://github.com/symfony/finder/tree/v6.2.7"
  6097. },
  6098. "funding": [
  6099. {
  6100. "url": "https://symfony.com/sponsor",
  6101. "type": "custom"
  6102. },
  6103. {
  6104. "url": "https://github.com/fabpot",
  6105. "type": "github"
  6106. },
  6107. {
  6108. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6109. "type": "tidelift"
  6110. }
  6111. ],
  6112. "time": "2023-02-16T09:57:23+00:00"
  6113. },
  6114. {
  6115. "name": "symfony/http-client",
  6116. "version": "v6.2.7",
  6117. "source": {
  6118. "type": "git",
  6119. "url": "https://github.com/symfony/http-client.git",
  6120. "reference": "0a5be6cbc570ae23b51b49d67341f378629d78e4"
  6121. },
  6122. "dist": {
  6123. "type": "zip",
  6124. "url": "https://api.github.com/repos/symfony/http-client/zipball/0a5be6cbc570ae23b51b49d67341f378629d78e4",
  6125. "reference": "0a5be6cbc570ae23b51b49d67341f378629d78e4",
  6126. "shasum": ""
  6127. },
  6128. "require": {
  6129. "php": ">=8.1",
  6130. "psr/log": "^1|^2|^3",
  6131. "symfony/deprecation-contracts": "^2.1|^3",
  6132. "symfony/http-client-contracts": "^3",
  6133. "symfony/service-contracts": "^1.0|^2|^3"
  6134. },
  6135. "provide": {
  6136. "php-http/async-client-implementation": "*",
  6137. "php-http/client-implementation": "*",
  6138. "psr/http-client-implementation": "1.0",
  6139. "symfony/http-client-implementation": "3.0"
  6140. },
  6141. "require-dev": {
  6142. "amphp/amp": "^2.5",
  6143. "amphp/http-client": "^4.2.1",
  6144. "amphp/http-tunnel": "^1.0",
  6145. "amphp/socket": "^1.1",
  6146. "guzzlehttp/promises": "^1.4",
  6147. "nyholm/psr7": "^1.0",
  6148. "php-http/httplug": "^1.0|^2.0",
  6149. "psr/http-client": "^1.0",
  6150. "symfony/dependency-injection": "^5.4|^6.0",
  6151. "symfony/http-kernel": "^5.4|^6.0",
  6152. "symfony/process": "^5.4|^6.0",
  6153. "symfony/stopwatch": "^5.4|^6.0"
  6154. },
  6155. "type": "library",
  6156. "autoload": {
  6157. "psr-4": {
  6158. "Symfony\\Component\\HttpClient\\": ""
  6159. },
  6160. "exclude-from-classmap": [
  6161. "/Tests/"
  6162. ]
  6163. },
  6164. "notification-url": "https://packagist.org/downloads/",
  6165. "license": [
  6166. "MIT"
  6167. ],
  6168. "authors": [
  6169. {
  6170. "name": "Nicolas Grekas",
  6171. "email": "p@tchwork.com"
  6172. },
  6173. {
  6174. "name": "Symfony Community",
  6175. "homepage": "https://symfony.com/contributors"
  6176. }
  6177. ],
  6178. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  6179. "homepage": "https://symfony.com",
  6180. "support": {
  6181. "source": "https://github.com/symfony/http-client/tree/v6.2.7"
  6182. },
  6183. "funding": [
  6184. {
  6185. "url": "https://symfony.com/sponsor",
  6186. "type": "custom"
  6187. },
  6188. {
  6189. "url": "https://github.com/fabpot",
  6190. "type": "github"
  6191. },
  6192. {
  6193. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6194. "type": "tidelift"
  6195. }
  6196. ],
  6197. "time": "2023-02-21T10:54:55+00:00"
  6198. },
  6199. {
  6200. "name": "symfony/http-client-contracts",
  6201. "version": "v3.2.1",
  6202. "source": {
  6203. "type": "git",
  6204. "url": "https://github.com/symfony/http-client-contracts.git",
  6205. "reference": "df2ecd6cb70e73c1080e6478aea85f5f4da2c48b"
  6206. },
  6207. "dist": {
  6208. "type": "zip",
  6209. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/df2ecd6cb70e73c1080e6478aea85f5f4da2c48b",
  6210. "reference": "df2ecd6cb70e73c1080e6478aea85f5f4da2c48b",
  6211. "shasum": ""
  6212. },
  6213. "require": {
  6214. "php": ">=8.1"
  6215. },
  6216. "suggest": {
  6217. "symfony/http-client-implementation": ""
  6218. },
  6219. "type": "library",
  6220. "extra": {
  6221. "branch-alias": {
  6222. "dev-main": "3.3-dev"
  6223. },
  6224. "thanks": {
  6225. "name": "symfony/contracts",
  6226. "url": "https://github.com/symfony/contracts"
  6227. }
  6228. },
  6229. "autoload": {
  6230. "psr-4": {
  6231. "Symfony\\Contracts\\HttpClient\\": ""
  6232. },
  6233. "exclude-from-classmap": [
  6234. "/Test/"
  6235. ]
  6236. },
  6237. "notification-url": "https://packagist.org/downloads/",
  6238. "license": [
  6239. "MIT"
  6240. ],
  6241. "authors": [
  6242. {
  6243. "name": "Nicolas Grekas",
  6244. "email": "p@tchwork.com"
  6245. },
  6246. {
  6247. "name": "Symfony Community",
  6248. "homepage": "https://symfony.com/contributors"
  6249. }
  6250. ],
  6251. "description": "Generic abstractions related to HTTP clients",
  6252. "homepage": "https://symfony.com",
  6253. "keywords": [
  6254. "abstractions",
  6255. "contracts",
  6256. "decoupling",
  6257. "interfaces",
  6258. "interoperability",
  6259. "standards"
  6260. ],
  6261. "support": {
  6262. "source": "https://github.com/symfony/http-client-contracts/tree/v3.2.1"
  6263. },
  6264. "funding": [
  6265. {
  6266. "url": "https://symfony.com/sponsor",
  6267. "type": "custom"
  6268. },
  6269. {
  6270. "url": "https://github.com/fabpot",
  6271. "type": "github"
  6272. },
  6273. {
  6274. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6275. "type": "tidelift"
  6276. }
  6277. ],
  6278. "time": "2023-03-01T10:32:47+00:00"
  6279. },
  6280. {
  6281. "name": "symfony/http-foundation",
  6282. "version": "v6.2.7",
  6283. "source": {
  6284. "type": "git",
  6285. "url": "https://github.com/symfony/http-foundation.git",
  6286. "reference": "5fc3038d4a594223f9ea42e4e985548f3fcc9a3b"
  6287. },
  6288. "dist": {
  6289. "type": "zip",
  6290. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/5fc3038d4a594223f9ea42e4e985548f3fcc9a3b",
  6291. "reference": "5fc3038d4a594223f9ea42e4e985548f3fcc9a3b",
  6292. "shasum": ""
  6293. },
  6294. "require": {
  6295. "php": ">=8.1",
  6296. "symfony/deprecation-contracts": "^2.1|^3",
  6297. "symfony/polyfill-mbstring": "~1.1"
  6298. },
  6299. "conflict": {
  6300. "symfony/cache": "<6.2"
  6301. },
  6302. "require-dev": {
  6303. "predis/predis": "~1.0",
  6304. "symfony/cache": "^5.4|^6.0",
  6305. "symfony/dependency-injection": "^5.4|^6.0",
  6306. "symfony/expression-language": "^5.4|^6.0",
  6307. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  6308. "symfony/mime": "^5.4|^6.0",
  6309. "symfony/rate-limiter": "^5.2|^6.0"
  6310. },
  6311. "suggest": {
  6312. "symfony/mime": "To use the file extension guesser"
  6313. },
  6314. "type": "library",
  6315. "autoload": {
  6316. "psr-4": {
  6317. "Symfony\\Component\\HttpFoundation\\": ""
  6318. },
  6319. "exclude-from-classmap": [
  6320. "/Tests/"
  6321. ]
  6322. },
  6323. "notification-url": "https://packagist.org/downloads/",
  6324. "license": [
  6325. "MIT"
  6326. ],
  6327. "authors": [
  6328. {
  6329. "name": "Fabien Potencier",
  6330. "email": "fabien@symfony.com"
  6331. },
  6332. {
  6333. "name": "Symfony Community",
  6334. "homepage": "https://symfony.com/contributors"
  6335. }
  6336. ],
  6337. "description": "Defines an object-oriented layer for the HTTP specification",
  6338. "homepage": "https://symfony.com",
  6339. "support": {
  6340. "source": "https://github.com/symfony/http-foundation/tree/v6.2.7"
  6341. },
  6342. "funding": [
  6343. {
  6344. "url": "https://symfony.com/sponsor",
  6345. "type": "custom"
  6346. },
  6347. {
  6348. "url": "https://github.com/fabpot",
  6349. "type": "github"
  6350. },
  6351. {
  6352. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6353. "type": "tidelift"
  6354. }
  6355. ],
  6356. "time": "2023-02-21T10:54:55+00:00"
  6357. },
  6358. {
  6359. "name": "symfony/http-kernel",
  6360. "version": "v6.2.7",
  6361. "source": {
  6362. "type": "git",
  6363. "url": "https://github.com/symfony/http-kernel.git",
  6364. "reference": "ca0680ad1e2d678536cc20e0ae33f9e4e5d2becd"
  6365. },
  6366. "dist": {
  6367. "type": "zip",
  6368. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/ca0680ad1e2d678536cc20e0ae33f9e4e5d2becd",
  6369. "reference": "ca0680ad1e2d678536cc20e0ae33f9e4e5d2becd",
  6370. "shasum": ""
  6371. },
  6372. "require": {
  6373. "php": ">=8.1",
  6374. "psr/log": "^1|^2|^3",
  6375. "symfony/deprecation-contracts": "^2.1|^3",
  6376. "symfony/error-handler": "^6.1",
  6377. "symfony/event-dispatcher": "^5.4|^6.0",
  6378. "symfony/http-foundation": "^5.4.21|^6.2.7",
  6379. "symfony/polyfill-ctype": "^1.8"
  6380. },
  6381. "conflict": {
  6382. "symfony/browser-kit": "<5.4",
  6383. "symfony/cache": "<5.4",
  6384. "symfony/config": "<6.1",
  6385. "symfony/console": "<5.4",
  6386. "symfony/dependency-injection": "<6.2",
  6387. "symfony/doctrine-bridge": "<5.4",
  6388. "symfony/form": "<5.4",
  6389. "symfony/http-client": "<5.4",
  6390. "symfony/mailer": "<5.4",
  6391. "symfony/messenger": "<5.4",
  6392. "symfony/translation": "<5.4",
  6393. "symfony/twig-bridge": "<5.4",
  6394. "symfony/validator": "<5.4",
  6395. "twig/twig": "<2.13"
  6396. },
  6397. "provide": {
  6398. "psr/log-implementation": "1.0|2.0|3.0"
  6399. },
  6400. "require-dev": {
  6401. "psr/cache": "^1.0|^2.0|^3.0",
  6402. "symfony/browser-kit": "^5.4|^6.0",
  6403. "symfony/config": "^6.1",
  6404. "symfony/console": "^5.4|^6.0",
  6405. "symfony/css-selector": "^5.4|^6.0",
  6406. "symfony/dependency-injection": "^6.2",
  6407. "symfony/dom-crawler": "^5.4|^6.0",
  6408. "symfony/expression-language": "^5.4|^6.0",
  6409. "symfony/finder": "^5.4|^6.0",
  6410. "symfony/http-client-contracts": "^1.1|^2|^3",
  6411. "symfony/process": "^5.4|^6.0",
  6412. "symfony/routing": "^5.4|^6.0",
  6413. "symfony/stopwatch": "^5.4|^6.0",
  6414. "symfony/translation": "^5.4|^6.0",
  6415. "symfony/translation-contracts": "^1.1|^2|^3",
  6416. "symfony/uid": "^5.4|^6.0",
  6417. "twig/twig": "^2.13|^3.0.4"
  6418. },
  6419. "suggest": {
  6420. "symfony/browser-kit": "",
  6421. "symfony/config": "",
  6422. "symfony/console": "",
  6423. "symfony/dependency-injection": ""
  6424. },
  6425. "type": "library",
  6426. "autoload": {
  6427. "psr-4": {
  6428. "Symfony\\Component\\HttpKernel\\": ""
  6429. },
  6430. "exclude-from-classmap": [
  6431. "/Tests/"
  6432. ]
  6433. },
  6434. "notification-url": "https://packagist.org/downloads/",
  6435. "license": [
  6436. "MIT"
  6437. ],
  6438. "authors": [
  6439. {
  6440. "name": "Fabien Potencier",
  6441. "email": "fabien@symfony.com"
  6442. },
  6443. {
  6444. "name": "Symfony Community",
  6445. "homepage": "https://symfony.com/contributors"
  6446. }
  6447. ],
  6448. "description": "Provides a structured process for converting a Request into a Response",
  6449. "homepage": "https://symfony.com",
  6450. "support": {
  6451. "source": "https://github.com/symfony/http-kernel/tree/v6.2.7"
  6452. },
  6453. "funding": [
  6454. {
  6455. "url": "https://symfony.com/sponsor",
  6456. "type": "custom"
  6457. },
  6458. {
  6459. "url": "https://github.com/fabpot",
  6460. "type": "github"
  6461. },
  6462. {
  6463. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6464. "type": "tidelift"
  6465. }
  6466. ],
  6467. "time": "2023-02-28T13:26:41+00:00"
  6468. },
  6469. {
  6470. "name": "symfony/intl",
  6471. "version": "v6.2.7",
  6472. "source": {
  6473. "type": "git",
  6474. "url": "https://github.com/symfony/intl.git",
  6475. "reference": "e7346ea6d88ae22e1b5d489b7a60135e72527cec"
  6476. },
  6477. "dist": {
  6478. "type": "zip",
  6479. "url": "https://api.github.com/repos/symfony/intl/zipball/e7346ea6d88ae22e1b5d489b7a60135e72527cec",
  6480. "reference": "e7346ea6d88ae22e1b5d489b7a60135e72527cec",
  6481. "shasum": ""
  6482. },
  6483. "require": {
  6484. "php": ">=8.1"
  6485. },
  6486. "require-dev": {
  6487. "symfony/filesystem": "^5.4|^6.0",
  6488. "symfony/finder": "^5.4|^6.0"
  6489. },
  6490. "type": "library",
  6491. "autoload": {
  6492. "psr-4": {
  6493. "Symfony\\Component\\Intl\\": ""
  6494. },
  6495. "exclude-from-classmap": [
  6496. "/Tests/"
  6497. ]
  6498. },
  6499. "notification-url": "https://packagist.org/downloads/",
  6500. "license": [
  6501. "MIT"
  6502. ],
  6503. "authors": [
  6504. {
  6505. "name": "Bernhard Schussek",
  6506. "email": "bschussek@gmail.com"
  6507. },
  6508. {
  6509. "name": "Eriksen Costa",
  6510. "email": "eriksen.costa@infranology.com.br"
  6511. },
  6512. {
  6513. "name": "Igor Wiedler",
  6514. "email": "igor@wiedler.ch"
  6515. },
  6516. {
  6517. "name": "Symfony Community",
  6518. "homepage": "https://symfony.com/contributors"
  6519. }
  6520. ],
  6521. "description": "Provides a PHP replacement layer for the C intl extension that includes additional data from the ICU library",
  6522. "homepage": "https://symfony.com",
  6523. "keywords": [
  6524. "i18n",
  6525. "icu",
  6526. "internationalization",
  6527. "intl",
  6528. "l10n",
  6529. "localization"
  6530. ],
  6531. "support": {
  6532. "source": "https://github.com/symfony/intl/tree/v6.2.7"
  6533. },
  6534. "funding": [
  6535. {
  6536. "url": "https://symfony.com/sponsor",
  6537. "type": "custom"
  6538. },
  6539. {
  6540. "url": "https://github.com/fabpot",
  6541. "type": "github"
  6542. },
  6543. {
  6544. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6545. "type": "tidelift"
  6546. }
  6547. ],
  6548. "time": "2023-02-21T10:54:55+00:00"
  6549. },
  6550. {
  6551. "name": "symfony/mailer",
  6552. "version": "v6.2.7",
  6553. "source": {
  6554. "type": "git",
  6555. "url": "https://github.com/symfony/mailer.git",
  6556. "reference": "e4f84c633b72ec70efc50b8016871c3bc43e691e"
  6557. },
  6558. "dist": {
  6559. "type": "zip",
  6560. "url": "https://api.github.com/repos/symfony/mailer/zipball/e4f84c633b72ec70efc50b8016871c3bc43e691e",
  6561. "reference": "e4f84c633b72ec70efc50b8016871c3bc43e691e",
  6562. "shasum": ""
  6563. },
  6564. "require": {
  6565. "egulias/email-validator": "^2.1.10|^3|^4",
  6566. "php": ">=8.1",
  6567. "psr/event-dispatcher": "^1",
  6568. "psr/log": "^1|^2|^3",
  6569. "symfony/event-dispatcher": "^5.4|^6.0",
  6570. "symfony/mime": "^6.2",
  6571. "symfony/service-contracts": "^1.1|^2|^3"
  6572. },
  6573. "conflict": {
  6574. "symfony/http-kernel": "<5.4",
  6575. "symfony/messenger": "<6.2",
  6576. "symfony/mime": "<6.2",
  6577. "symfony/twig-bridge": "<6.2.1"
  6578. },
  6579. "require-dev": {
  6580. "symfony/console": "^5.4|^6.0",
  6581. "symfony/http-client": "^5.4|^6.0",
  6582. "symfony/messenger": "^6.2",
  6583. "symfony/twig-bridge": "^6.2"
  6584. },
  6585. "type": "library",
  6586. "autoload": {
  6587. "psr-4": {
  6588. "Symfony\\Component\\Mailer\\": ""
  6589. },
  6590. "exclude-from-classmap": [
  6591. "/Tests/"
  6592. ]
  6593. },
  6594. "notification-url": "https://packagist.org/downloads/",
  6595. "license": [
  6596. "MIT"
  6597. ],
  6598. "authors": [
  6599. {
  6600. "name": "Fabien Potencier",
  6601. "email": "fabien@symfony.com"
  6602. },
  6603. {
  6604. "name": "Symfony Community",
  6605. "homepage": "https://symfony.com/contributors"
  6606. }
  6607. ],
  6608. "description": "Helps sending emails",
  6609. "homepage": "https://symfony.com",
  6610. "support": {
  6611. "source": "https://github.com/symfony/mailer/tree/v6.2.7"
  6612. },
  6613. "funding": [
  6614. {
  6615. "url": "https://symfony.com/sponsor",
  6616. "type": "custom"
  6617. },
  6618. {
  6619. "url": "https://github.com/fabpot",
  6620. "type": "github"
  6621. },
  6622. {
  6623. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6624. "type": "tidelift"
  6625. }
  6626. ],
  6627. "time": "2023-02-21T10:35:38+00:00"
  6628. },
  6629. {
  6630. "name": "symfony/mailgun-mailer",
  6631. "version": "v6.2.7",
  6632. "source": {
  6633. "type": "git",
  6634. "url": "https://github.com/symfony/mailgun-mailer.git",
  6635. "reference": "9e27b8ec2f6ee7575c6229a61be1578a5a4b21ee"
  6636. },
  6637. "dist": {
  6638. "type": "zip",
  6639. "url": "https://api.github.com/repos/symfony/mailgun-mailer/zipball/9e27b8ec2f6ee7575c6229a61be1578a5a4b21ee",
  6640. "reference": "9e27b8ec2f6ee7575c6229a61be1578a5a4b21ee",
  6641. "shasum": ""
  6642. },
  6643. "require": {
  6644. "php": ">=8.1",
  6645. "symfony/mailer": "^5.4.21|^6.2.7"
  6646. },
  6647. "require-dev": {
  6648. "symfony/http-client": "^5.4|^6.0"
  6649. },
  6650. "type": "symfony-mailer-bridge",
  6651. "autoload": {
  6652. "psr-4": {
  6653. "Symfony\\Component\\Mailer\\Bridge\\Mailgun\\": ""
  6654. },
  6655. "exclude-from-classmap": [
  6656. "/Tests/"
  6657. ]
  6658. },
  6659. "notification-url": "https://packagist.org/downloads/",
  6660. "license": [
  6661. "MIT"
  6662. ],
  6663. "authors": [
  6664. {
  6665. "name": "Fabien Potencier",
  6666. "email": "fabien@symfony.com"
  6667. },
  6668. {
  6669. "name": "Symfony Community",
  6670. "homepage": "https://symfony.com/contributors"
  6671. }
  6672. ],
  6673. "description": "Symfony Mailgun Mailer Bridge",
  6674. "homepage": "https://symfony.com",
  6675. "support": {
  6676. "source": "https://github.com/symfony/mailgun-mailer/tree/v6.2.7"
  6677. },
  6678. "funding": [
  6679. {
  6680. "url": "https://symfony.com/sponsor",
  6681. "type": "custom"
  6682. },
  6683. {
  6684. "url": "https://github.com/fabpot",
  6685. "type": "github"
  6686. },
  6687. {
  6688. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6689. "type": "tidelift"
  6690. }
  6691. ],
  6692. "time": "2023-02-21T10:35:38+00:00"
  6693. },
  6694. {
  6695. "name": "symfony/mime",
  6696. "version": "v6.2.7",
  6697. "source": {
  6698. "type": "git",
  6699. "url": "https://github.com/symfony/mime.git",
  6700. "reference": "62e341f80699badb0ad70b31149c8df89a2d778e"
  6701. },
  6702. "dist": {
  6703. "type": "zip",
  6704. "url": "https://api.github.com/repos/symfony/mime/zipball/62e341f80699badb0ad70b31149c8df89a2d778e",
  6705. "reference": "62e341f80699badb0ad70b31149c8df89a2d778e",
  6706. "shasum": ""
  6707. },
  6708. "require": {
  6709. "php": ">=8.1",
  6710. "symfony/polyfill-intl-idn": "^1.10",
  6711. "symfony/polyfill-mbstring": "^1.0"
  6712. },
  6713. "conflict": {
  6714. "egulias/email-validator": "~3.0.0",
  6715. "phpdocumentor/reflection-docblock": "<3.2.2",
  6716. "phpdocumentor/type-resolver": "<1.4.0",
  6717. "symfony/mailer": "<5.4",
  6718. "symfony/serializer": "<6.2"
  6719. },
  6720. "require-dev": {
  6721. "egulias/email-validator": "^2.1.10|^3.1|^4",
  6722. "league/html-to-markdown": "^5.0",
  6723. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6724. "symfony/dependency-injection": "^5.4|^6.0",
  6725. "symfony/property-access": "^5.4|^6.0",
  6726. "symfony/property-info": "^5.4|^6.0",
  6727. "symfony/serializer": "^6.2"
  6728. },
  6729. "type": "library",
  6730. "autoload": {
  6731. "psr-4": {
  6732. "Symfony\\Component\\Mime\\": ""
  6733. },
  6734. "exclude-from-classmap": [
  6735. "/Tests/"
  6736. ]
  6737. },
  6738. "notification-url": "https://packagist.org/downloads/",
  6739. "license": [
  6740. "MIT"
  6741. ],
  6742. "authors": [
  6743. {
  6744. "name": "Fabien Potencier",
  6745. "email": "fabien@symfony.com"
  6746. },
  6747. {
  6748. "name": "Symfony Community",
  6749. "homepage": "https://symfony.com/contributors"
  6750. }
  6751. ],
  6752. "description": "Allows manipulating MIME messages",
  6753. "homepage": "https://symfony.com",
  6754. "keywords": [
  6755. "mime",
  6756. "mime-type"
  6757. ],
  6758. "support": {
  6759. "source": "https://github.com/symfony/mime/tree/v6.2.7"
  6760. },
  6761. "funding": [
  6762. {
  6763. "url": "https://symfony.com/sponsor",
  6764. "type": "custom"
  6765. },
  6766. {
  6767. "url": "https://github.com/fabpot",
  6768. "type": "github"
  6769. },
  6770. {
  6771. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6772. "type": "tidelift"
  6773. }
  6774. ],
  6775. "time": "2023-02-24T10:42:00+00:00"
  6776. },
  6777. {
  6778. "name": "symfony/polyfill-ctype",
  6779. "version": "v1.27.0",
  6780. "source": {
  6781. "type": "git",
  6782. "url": "https://github.com/symfony/polyfill-ctype.git",
  6783. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a"
  6784. },
  6785. "dist": {
  6786. "type": "zip",
  6787. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a",
  6788. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a",
  6789. "shasum": ""
  6790. },
  6791. "require": {
  6792. "php": ">=7.1"
  6793. },
  6794. "provide": {
  6795. "ext-ctype": "*"
  6796. },
  6797. "suggest": {
  6798. "ext-ctype": "For best performance"
  6799. },
  6800. "type": "library",
  6801. "extra": {
  6802. "branch-alias": {
  6803. "dev-main": "1.27-dev"
  6804. },
  6805. "thanks": {
  6806. "name": "symfony/polyfill",
  6807. "url": "https://github.com/symfony/polyfill"
  6808. }
  6809. },
  6810. "autoload": {
  6811. "files": [
  6812. "bootstrap.php"
  6813. ],
  6814. "psr-4": {
  6815. "Symfony\\Polyfill\\Ctype\\": ""
  6816. }
  6817. },
  6818. "notification-url": "https://packagist.org/downloads/",
  6819. "license": [
  6820. "MIT"
  6821. ],
  6822. "authors": [
  6823. {
  6824. "name": "Gert de Pagter",
  6825. "email": "BackEndTea@gmail.com"
  6826. },
  6827. {
  6828. "name": "Symfony Community",
  6829. "homepage": "https://symfony.com/contributors"
  6830. }
  6831. ],
  6832. "description": "Symfony polyfill for ctype functions",
  6833. "homepage": "https://symfony.com",
  6834. "keywords": [
  6835. "compatibility",
  6836. "ctype",
  6837. "polyfill",
  6838. "portable"
  6839. ],
  6840. "support": {
  6841. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0"
  6842. },
  6843. "funding": [
  6844. {
  6845. "url": "https://symfony.com/sponsor",
  6846. "type": "custom"
  6847. },
  6848. {
  6849. "url": "https://github.com/fabpot",
  6850. "type": "github"
  6851. },
  6852. {
  6853. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6854. "type": "tidelift"
  6855. }
  6856. ],
  6857. "time": "2022-11-03T14:55:06+00:00"
  6858. },
  6859. {
  6860. "name": "symfony/polyfill-intl-grapheme",
  6861. "version": "v1.27.0",
  6862. "source": {
  6863. "type": "git",
  6864. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6865. "reference": "511a08c03c1960e08a883f4cffcacd219b758354"
  6866. },
  6867. "dist": {
  6868. "type": "zip",
  6869. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/511a08c03c1960e08a883f4cffcacd219b758354",
  6870. "reference": "511a08c03c1960e08a883f4cffcacd219b758354",
  6871. "shasum": ""
  6872. },
  6873. "require": {
  6874. "php": ">=7.1"
  6875. },
  6876. "suggest": {
  6877. "ext-intl": "For best performance"
  6878. },
  6879. "type": "library",
  6880. "extra": {
  6881. "branch-alias": {
  6882. "dev-main": "1.27-dev"
  6883. },
  6884. "thanks": {
  6885. "name": "symfony/polyfill",
  6886. "url": "https://github.com/symfony/polyfill"
  6887. }
  6888. },
  6889. "autoload": {
  6890. "files": [
  6891. "bootstrap.php"
  6892. ],
  6893. "psr-4": {
  6894. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6895. }
  6896. },
  6897. "notification-url": "https://packagist.org/downloads/",
  6898. "license": [
  6899. "MIT"
  6900. ],
  6901. "authors": [
  6902. {
  6903. "name": "Nicolas Grekas",
  6904. "email": "p@tchwork.com"
  6905. },
  6906. {
  6907. "name": "Symfony Community",
  6908. "homepage": "https://symfony.com/contributors"
  6909. }
  6910. ],
  6911. "description": "Symfony polyfill for intl's grapheme_* functions",
  6912. "homepage": "https://symfony.com",
  6913. "keywords": [
  6914. "compatibility",
  6915. "grapheme",
  6916. "intl",
  6917. "polyfill",
  6918. "portable",
  6919. "shim"
  6920. ],
  6921. "support": {
  6922. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.27.0"
  6923. },
  6924. "funding": [
  6925. {
  6926. "url": "https://symfony.com/sponsor",
  6927. "type": "custom"
  6928. },
  6929. {
  6930. "url": "https://github.com/fabpot",
  6931. "type": "github"
  6932. },
  6933. {
  6934. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6935. "type": "tidelift"
  6936. }
  6937. ],
  6938. "time": "2022-11-03T14:55:06+00:00"
  6939. },
  6940. {
  6941. "name": "symfony/polyfill-intl-idn",
  6942. "version": "v1.27.0",
  6943. "source": {
  6944. "type": "git",
  6945. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6946. "reference": "639084e360537a19f9ee352433b84ce831f3d2da"
  6947. },
  6948. "dist": {
  6949. "type": "zip",
  6950. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da",
  6951. "reference": "639084e360537a19f9ee352433b84ce831f3d2da",
  6952. "shasum": ""
  6953. },
  6954. "require": {
  6955. "php": ">=7.1",
  6956. "symfony/polyfill-intl-normalizer": "^1.10",
  6957. "symfony/polyfill-php72": "^1.10"
  6958. },
  6959. "suggest": {
  6960. "ext-intl": "For best performance"
  6961. },
  6962. "type": "library",
  6963. "extra": {
  6964. "branch-alias": {
  6965. "dev-main": "1.27-dev"
  6966. },
  6967. "thanks": {
  6968. "name": "symfony/polyfill",
  6969. "url": "https://github.com/symfony/polyfill"
  6970. }
  6971. },
  6972. "autoload": {
  6973. "files": [
  6974. "bootstrap.php"
  6975. ],
  6976. "psr-4": {
  6977. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6978. }
  6979. },
  6980. "notification-url": "https://packagist.org/downloads/",
  6981. "license": [
  6982. "MIT"
  6983. ],
  6984. "authors": [
  6985. {
  6986. "name": "Laurent Bassin",
  6987. "email": "laurent@bassin.info"
  6988. },
  6989. {
  6990. "name": "Trevor Rowbotham",
  6991. "email": "trevor.rowbotham@pm.me"
  6992. },
  6993. {
  6994. "name": "Symfony Community",
  6995. "homepage": "https://symfony.com/contributors"
  6996. }
  6997. ],
  6998. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6999. "homepage": "https://symfony.com",
  7000. "keywords": [
  7001. "compatibility",
  7002. "idn",
  7003. "intl",
  7004. "polyfill",
  7005. "portable",
  7006. "shim"
  7007. ],
  7008. "support": {
  7009. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0"
  7010. },
  7011. "funding": [
  7012. {
  7013. "url": "https://symfony.com/sponsor",
  7014. "type": "custom"
  7015. },
  7016. {
  7017. "url": "https://github.com/fabpot",
  7018. "type": "github"
  7019. },
  7020. {
  7021. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7022. "type": "tidelift"
  7023. }
  7024. ],
  7025. "time": "2022-11-03T14:55:06+00:00"
  7026. },
  7027. {
  7028. "name": "symfony/polyfill-intl-normalizer",
  7029. "version": "v1.27.0",
  7030. "source": {
  7031. "type": "git",
  7032. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  7033. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6"
  7034. },
  7035. "dist": {
  7036. "type": "zip",
  7037. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  7038. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  7039. "shasum": ""
  7040. },
  7041. "require": {
  7042. "php": ">=7.1"
  7043. },
  7044. "suggest": {
  7045. "ext-intl": "For best performance"
  7046. },
  7047. "type": "library",
  7048. "extra": {
  7049. "branch-alias": {
  7050. "dev-main": "1.27-dev"
  7051. },
  7052. "thanks": {
  7053. "name": "symfony/polyfill",
  7054. "url": "https://github.com/symfony/polyfill"
  7055. }
  7056. },
  7057. "autoload": {
  7058. "files": [
  7059. "bootstrap.php"
  7060. ],
  7061. "psr-4": {
  7062. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  7063. },
  7064. "classmap": [
  7065. "Resources/stubs"
  7066. ]
  7067. },
  7068. "notification-url": "https://packagist.org/downloads/",
  7069. "license": [
  7070. "MIT"
  7071. ],
  7072. "authors": [
  7073. {
  7074. "name": "Nicolas Grekas",
  7075. "email": "p@tchwork.com"
  7076. },
  7077. {
  7078. "name": "Symfony Community",
  7079. "homepage": "https://symfony.com/contributors"
  7080. }
  7081. ],
  7082. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  7083. "homepage": "https://symfony.com",
  7084. "keywords": [
  7085. "compatibility",
  7086. "intl",
  7087. "normalizer",
  7088. "polyfill",
  7089. "portable",
  7090. "shim"
  7091. ],
  7092. "support": {
  7093. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0"
  7094. },
  7095. "funding": [
  7096. {
  7097. "url": "https://symfony.com/sponsor",
  7098. "type": "custom"
  7099. },
  7100. {
  7101. "url": "https://github.com/fabpot",
  7102. "type": "github"
  7103. },
  7104. {
  7105. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7106. "type": "tidelift"
  7107. }
  7108. ],
  7109. "time": "2022-11-03T14:55:06+00:00"
  7110. },
  7111. {
  7112. "name": "symfony/polyfill-mbstring",
  7113. "version": "v1.27.0",
  7114. "source": {
  7115. "type": "git",
  7116. "url": "https://github.com/symfony/polyfill-mbstring.git",
  7117. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
  7118. },
  7119. "dist": {
  7120. "type": "zip",
  7121. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  7122. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  7123. "shasum": ""
  7124. },
  7125. "require": {
  7126. "php": ">=7.1"
  7127. },
  7128. "provide": {
  7129. "ext-mbstring": "*"
  7130. },
  7131. "suggest": {
  7132. "ext-mbstring": "For best performance"
  7133. },
  7134. "type": "library",
  7135. "extra": {
  7136. "branch-alias": {
  7137. "dev-main": "1.27-dev"
  7138. },
  7139. "thanks": {
  7140. "name": "symfony/polyfill",
  7141. "url": "https://github.com/symfony/polyfill"
  7142. }
  7143. },
  7144. "autoload": {
  7145. "files": [
  7146. "bootstrap.php"
  7147. ],
  7148. "psr-4": {
  7149. "Symfony\\Polyfill\\Mbstring\\": ""
  7150. }
  7151. },
  7152. "notification-url": "https://packagist.org/downloads/",
  7153. "license": [
  7154. "MIT"
  7155. ],
  7156. "authors": [
  7157. {
  7158. "name": "Nicolas Grekas",
  7159. "email": "p@tchwork.com"
  7160. },
  7161. {
  7162. "name": "Symfony Community",
  7163. "homepage": "https://symfony.com/contributors"
  7164. }
  7165. ],
  7166. "description": "Symfony polyfill for the Mbstring extension",
  7167. "homepage": "https://symfony.com",
  7168. "keywords": [
  7169. "compatibility",
  7170. "mbstring",
  7171. "polyfill",
  7172. "portable",
  7173. "shim"
  7174. ],
  7175. "support": {
  7176. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
  7177. },
  7178. "funding": [
  7179. {
  7180. "url": "https://symfony.com/sponsor",
  7181. "type": "custom"
  7182. },
  7183. {
  7184. "url": "https://github.com/fabpot",
  7185. "type": "github"
  7186. },
  7187. {
  7188. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7189. "type": "tidelift"
  7190. }
  7191. ],
  7192. "time": "2022-11-03T14:55:06+00:00"
  7193. },
  7194. {
  7195. "name": "symfony/polyfill-php72",
  7196. "version": "v1.27.0",
  7197. "source": {
  7198. "type": "git",
  7199. "url": "https://github.com/symfony/polyfill-php72.git",
  7200. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97"
  7201. },
  7202. "dist": {
  7203. "type": "zip",
  7204. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/869329b1e9894268a8a61dabb69153029b7a8c97",
  7205. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97",
  7206. "shasum": ""
  7207. },
  7208. "require": {
  7209. "php": ">=7.1"
  7210. },
  7211. "type": "library",
  7212. "extra": {
  7213. "branch-alias": {
  7214. "dev-main": "1.27-dev"
  7215. },
  7216. "thanks": {
  7217. "name": "symfony/polyfill",
  7218. "url": "https://github.com/symfony/polyfill"
  7219. }
  7220. },
  7221. "autoload": {
  7222. "files": [
  7223. "bootstrap.php"
  7224. ],
  7225. "psr-4": {
  7226. "Symfony\\Polyfill\\Php72\\": ""
  7227. }
  7228. },
  7229. "notification-url": "https://packagist.org/downloads/",
  7230. "license": [
  7231. "MIT"
  7232. ],
  7233. "authors": [
  7234. {
  7235. "name": "Nicolas Grekas",
  7236. "email": "p@tchwork.com"
  7237. },
  7238. {
  7239. "name": "Symfony Community",
  7240. "homepage": "https://symfony.com/contributors"
  7241. }
  7242. ],
  7243. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  7244. "homepage": "https://symfony.com",
  7245. "keywords": [
  7246. "compatibility",
  7247. "polyfill",
  7248. "portable",
  7249. "shim"
  7250. ],
  7251. "support": {
  7252. "source": "https://github.com/symfony/polyfill-php72/tree/v1.27.0"
  7253. },
  7254. "funding": [
  7255. {
  7256. "url": "https://symfony.com/sponsor",
  7257. "type": "custom"
  7258. },
  7259. {
  7260. "url": "https://github.com/fabpot",
  7261. "type": "github"
  7262. },
  7263. {
  7264. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7265. "type": "tidelift"
  7266. }
  7267. ],
  7268. "time": "2022-11-03T14:55:06+00:00"
  7269. },
  7270. {
  7271. "name": "symfony/polyfill-php80",
  7272. "version": "v1.27.0",
  7273. "source": {
  7274. "type": "git",
  7275. "url": "https://github.com/symfony/polyfill-php80.git",
  7276. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936"
  7277. },
  7278. "dist": {
  7279. "type": "zip",
  7280. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  7281. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  7282. "shasum": ""
  7283. },
  7284. "require": {
  7285. "php": ">=7.1"
  7286. },
  7287. "type": "library",
  7288. "extra": {
  7289. "branch-alias": {
  7290. "dev-main": "1.27-dev"
  7291. },
  7292. "thanks": {
  7293. "name": "symfony/polyfill",
  7294. "url": "https://github.com/symfony/polyfill"
  7295. }
  7296. },
  7297. "autoload": {
  7298. "files": [
  7299. "bootstrap.php"
  7300. ],
  7301. "psr-4": {
  7302. "Symfony\\Polyfill\\Php80\\": ""
  7303. },
  7304. "classmap": [
  7305. "Resources/stubs"
  7306. ]
  7307. },
  7308. "notification-url": "https://packagist.org/downloads/",
  7309. "license": [
  7310. "MIT"
  7311. ],
  7312. "authors": [
  7313. {
  7314. "name": "Ion Bazan",
  7315. "email": "ion.bazan@gmail.com"
  7316. },
  7317. {
  7318. "name": "Nicolas Grekas",
  7319. "email": "p@tchwork.com"
  7320. },
  7321. {
  7322. "name": "Symfony Community",
  7323. "homepage": "https://symfony.com/contributors"
  7324. }
  7325. ],
  7326. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  7327. "homepage": "https://symfony.com",
  7328. "keywords": [
  7329. "compatibility",
  7330. "polyfill",
  7331. "portable",
  7332. "shim"
  7333. ],
  7334. "support": {
  7335. "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0"
  7336. },
  7337. "funding": [
  7338. {
  7339. "url": "https://symfony.com/sponsor",
  7340. "type": "custom"
  7341. },
  7342. {
  7343. "url": "https://github.com/fabpot",
  7344. "type": "github"
  7345. },
  7346. {
  7347. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7348. "type": "tidelift"
  7349. }
  7350. ],
  7351. "time": "2022-11-03T14:55:06+00:00"
  7352. },
  7353. {
  7354. "name": "symfony/polyfill-uuid",
  7355. "version": "v1.27.0",
  7356. "source": {
  7357. "type": "git",
  7358. "url": "https://github.com/symfony/polyfill-uuid.git",
  7359. "reference": "f3cf1a645c2734236ed1e2e671e273eeb3586166"
  7360. },
  7361. "dist": {
  7362. "type": "zip",
  7363. "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/f3cf1a645c2734236ed1e2e671e273eeb3586166",
  7364. "reference": "f3cf1a645c2734236ed1e2e671e273eeb3586166",
  7365. "shasum": ""
  7366. },
  7367. "require": {
  7368. "php": ">=7.1"
  7369. },
  7370. "provide": {
  7371. "ext-uuid": "*"
  7372. },
  7373. "suggest": {
  7374. "ext-uuid": "For best performance"
  7375. },
  7376. "type": "library",
  7377. "extra": {
  7378. "branch-alias": {
  7379. "dev-main": "1.27-dev"
  7380. },
  7381. "thanks": {
  7382. "name": "symfony/polyfill",
  7383. "url": "https://github.com/symfony/polyfill"
  7384. }
  7385. },
  7386. "autoload": {
  7387. "files": [
  7388. "bootstrap.php"
  7389. ],
  7390. "psr-4": {
  7391. "Symfony\\Polyfill\\Uuid\\": ""
  7392. }
  7393. },
  7394. "notification-url": "https://packagist.org/downloads/",
  7395. "license": [
  7396. "MIT"
  7397. ],
  7398. "authors": [
  7399. {
  7400. "name": "Grégoire Pineau",
  7401. "email": "lyrixx@lyrixx.info"
  7402. },
  7403. {
  7404. "name": "Symfony Community",
  7405. "homepage": "https://symfony.com/contributors"
  7406. }
  7407. ],
  7408. "description": "Symfony polyfill for uuid functions",
  7409. "homepage": "https://symfony.com",
  7410. "keywords": [
  7411. "compatibility",
  7412. "polyfill",
  7413. "portable",
  7414. "uuid"
  7415. ],
  7416. "support": {
  7417. "source": "https://github.com/symfony/polyfill-uuid/tree/v1.27.0"
  7418. },
  7419. "funding": [
  7420. {
  7421. "url": "https://symfony.com/sponsor",
  7422. "type": "custom"
  7423. },
  7424. {
  7425. "url": "https://github.com/fabpot",
  7426. "type": "github"
  7427. },
  7428. {
  7429. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7430. "type": "tidelift"
  7431. }
  7432. ],
  7433. "time": "2022-11-03T14:55:06+00:00"
  7434. },
  7435. {
  7436. "name": "symfony/process",
  7437. "version": "v6.2.7",
  7438. "source": {
  7439. "type": "git",
  7440. "url": "https://github.com/symfony/process.git",
  7441. "reference": "680e8a2ea6b3f87aecc07a6a65a203ae573d1902"
  7442. },
  7443. "dist": {
  7444. "type": "zip",
  7445. "url": "https://api.github.com/repos/symfony/process/zipball/680e8a2ea6b3f87aecc07a6a65a203ae573d1902",
  7446. "reference": "680e8a2ea6b3f87aecc07a6a65a203ae573d1902",
  7447. "shasum": ""
  7448. },
  7449. "require": {
  7450. "php": ">=8.1"
  7451. },
  7452. "type": "library",
  7453. "autoload": {
  7454. "psr-4": {
  7455. "Symfony\\Component\\Process\\": ""
  7456. },
  7457. "exclude-from-classmap": [
  7458. "/Tests/"
  7459. ]
  7460. },
  7461. "notification-url": "https://packagist.org/downloads/",
  7462. "license": [
  7463. "MIT"
  7464. ],
  7465. "authors": [
  7466. {
  7467. "name": "Fabien Potencier",
  7468. "email": "fabien@symfony.com"
  7469. },
  7470. {
  7471. "name": "Symfony Community",
  7472. "homepage": "https://symfony.com/contributors"
  7473. }
  7474. ],
  7475. "description": "Executes commands in sub-processes",
  7476. "homepage": "https://symfony.com",
  7477. "support": {
  7478. "source": "https://github.com/symfony/process/tree/v6.2.7"
  7479. },
  7480. "funding": [
  7481. {
  7482. "url": "https://symfony.com/sponsor",
  7483. "type": "custom"
  7484. },
  7485. {
  7486. "url": "https://github.com/fabpot",
  7487. "type": "github"
  7488. },
  7489. {
  7490. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7491. "type": "tidelift"
  7492. }
  7493. ],
  7494. "time": "2023-02-24T10:42:00+00:00"
  7495. },
  7496. {
  7497. "name": "symfony/routing",
  7498. "version": "v6.2.7",
  7499. "source": {
  7500. "type": "git",
  7501. "url": "https://github.com/symfony/routing.git",
  7502. "reference": "fa643fa4c56de161f8bc8c0492a76a60140b50e4"
  7503. },
  7504. "dist": {
  7505. "type": "zip",
  7506. "url": "https://api.github.com/repos/symfony/routing/zipball/fa643fa4c56de161f8bc8c0492a76a60140b50e4",
  7507. "reference": "fa643fa4c56de161f8bc8c0492a76a60140b50e4",
  7508. "shasum": ""
  7509. },
  7510. "require": {
  7511. "php": ">=8.1"
  7512. },
  7513. "conflict": {
  7514. "doctrine/annotations": "<1.12",
  7515. "symfony/config": "<6.2",
  7516. "symfony/dependency-injection": "<5.4",
  7517. "symfony/yaml": "<5.4"
  7518. },
  7519. "require-dev": {
  7520. "doctrine/annotations": "^1.12|^2",
  7521. "psr/log": "^1|^2|^3",
  7522. "symfony/config": "^6.2",
  7523. "symfony/dependency-injection": "^5.4|^6.0",
  7524. "symfony/expression-language": "^5.4|^6.0",
  7525. "symfony/http-foundation": "^5.4|^6.0",
  7526. "symfony/yaml": "^5.4|^6.0"
  7527. },
  7528. "suggest": {
  7529. "symfony/config": "For using the all-in-one router or any loader",
  7530. "symfony/expression-language": "For using expression matching",
  7531. "symfony/http-foundation": "For using a Symfony Request object",
  7532. "symfony/yaml": "For using the YAML loader"
  7533. },
  7534. "type": "library",
  7535. "autoload": {
  7536. "psr-4": {
  7537. "Symfony\\Component\\Routing\\": ""
  7538. },
  7539. "exclude-from-classmap": [
  7540. "/Tests/"
  7541. ]
  7542. },
  7543. "notification-url": "https://packagist.org/downloads/",
  7544. "license": [
  7545. "MIT"
  7546. ],
  7547. "authors": [
  7548. {
  7549. "name": "Fabien Potencier",
  7550. "email": "fabien@symfony.com"
  7551. },
  7552. {
  7553. "name": "Symfony Community",
  7554. "homepage": "https://symfony.com/contributors"
  7555. }
  7556. ],
  7557. "description": "Maps an HTTP request to a set of configuration variables",
  7558. "homepage": "https://symfony.com",
  7559. "keywords": [
  7560. "router",
  7561. "routing",
  7562. "uri",
  7563. "url"
  7564. ],
  7565. "support": {
  7566. "source": "https://github.com/symfony/routing/tree/v6.2.7"
  7567. },
  7568. "funding": [
  7569. {
  7570. "url": "https://symfony.com/sponsor",
  7571. "type": "custom"
  7572. },
  7573. {
  7574. "url": "https://github.com/fabpot",
  7575. "type": "github"
  7576. },
  7577. {
  7578. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7579. "type": "tidelift"
  7580. }
  7581. ],
  7582. "time": "2023-02-14T08:53:37+00:00"
  7583. },
  7584. {
  7585. "name": "symfony/service-contracts",
  7586. "version": "v3.2.1",
  7587. "source": {
  7588. "type": "git",
  7589. "url": "https://github.com/symfony/service-contracts.git",
  7590. "reference": "a8c9cedf55f314f3a186041d19537303766df09a"
  7591. },
  7592. "dist": {
  7593. "type": "zip",
  7594. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/a8c9cedf55f314f3a186041d19537303766df09a",
  7595. "reference": "a8c9cedf55f314f3a186041d19537303766df09a",
  7596. "shasum": ""
  7597. },
  7598. "require": {
  7599. "php": ">=8.1",
  7600. "psr/container": "^2.0"
  7601. },
  7602. "conflict": {
  7603. "ext-psr": "<1.1|>=2"
  7604. },
  7605. "suggest": {
  7606. "symfony/service-implementation": ""
  7607. },
  7608. "type": "library",
  7609. "extra": {
  7610. "branch-alias": {
  7611. "dev-main": "3.3-dev"
  7612. },
  7613. "thanks": {
  7614. "name": "symfony/contracts",
  7615. "url": "https://github.com/symfony/contracts"
  7616. }
  7617. },
  7618. "autoload": {
  7619. "psr-4": {
  7620. "Symfony\\Contracts\\Service\\": ""
  7621. },
  7622. "exclude-from-classmap": [
  7623. "/Test/"
  7624. ]
  7625. },
  7626. "notification-url": "https://packagist.org/downloads/",
  7627. "license": [
  7628. "MIT"
  7629. ],
  7630. "authors": [
  7631. {
  7632. "name": "Nicolas Grekas",
  7633. "email": "p@tchwork.com"
  7634. },
  7635. {
  7636. "name": "Symfony Community",
  7637. "homepage": "https://symfony.com/contributors"
  7638. }
  7639. ],
  7640. "description": "Generic abstractions related to writing services",
  7641. "homepage": "https://symfony.com",
  7642. "keywords": [
  7643. "abstractions",
  7644. "contracts",
  7645. "decoupling",
  7646. "interfaces",
  7647. "interoperability",
  7648. "standards"
  7649. ],
  7650. "support": {
  7651. "source": "https://github.com/symfony/service-contracts/tree/v3.2.1"
  7652. },
  7653. "funding": [
  7654. {
  7655. "url": "https://symfony.com/sponsor",
  7656. "type": "custom"
  7657. },
  7658. {
  7659. "url": "https://github.com/fabpot",
  7660. "type": "github"
  7661. },
  7662. {
  7663. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7664. "type": "tidelift"
  7665. }
  7666. ],
  7667. "time": "2023-03-01T10:32:47+00:00"
  7668. },
  7669. {
  7670. "name": "symfony/string",
  7671. "version": "v6.2.7",
  7672. "source": {
  7673. "type": "git",
  7674. "url": "https://github.com/symfony/string.git",
  7675. "reference": "67b8c1eec78296b85dc1c7d9743830160218993d"
  7676. },
  7677. "dist": {
  7678. "type": "zip",
  7679. "url": "https://api.github.com/repos/symfony/string/zipball/67b8c1eec78296b85dc1c7d9743830160218993d",
  7680. "reference": "67b8c1eec78296b85dc1c7d9743830160218993d",
  7681. "shasum": ""
  7682. },
  7683. "require": {
  7684. "php": ">=8.1",
  7685. "symfony/polyfill-ctype": "~1.8",
  7686. "symfony/polyfill-intl-grapheme": "~1.0",
  7687. "symfony/polyfill-intl-normalizer": "~1.0",
  7688. "symfony/polyfill-mbstring": "~1.0"
  7689. },
  7690. "conflict": {
  7691. "symfony/translation-contracts": "<2.0"
  7692. },
  7693. "require-dev": {
  7694. "symfony/error-handler": "^5.4|^6.0",
  7695. "symfony/http-client": "^5.4|^6.0",
  7696. "symfony/intl": "^6.2",
  7697. "symfony/translation-contracts": "^2.0|^3.0",
  7698. "symfony/var-exporter": "^5.4|^6.0"
  7699. },
  7700. "type": "library",
  7701. "autoload": {
  7702. "files": [
  7703. "Resources/functions.php"
  7704. ],
  7705. "psr-4": {
  7706. "Symfony\\Component\\String\\": ""
  7707. },
  7708. "exclude-from-classmap": [
  7709. "/Tests/"
  7710. ]
  7711. },
  7712. "notification-url": "https://packagist.org/downloads/",
  7713. "license": [
  7714. "MIT"
  7715. ],
  7716. "authors": [
  7717. {
  7718. "name": "Nicolas Grekas",
  7719. "email": "p@tchwork.com"
  7720. },
  7721. {
  7722. "name": "Symfony Community",
  7723. "homepage": "https://symfony.com/contributors"
  7724. }
  7725. ],
  7726. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7727. "homepage": "https://symfony.com",
  7728. "keywords": [
  7729. "grapheme",
  7730. "i18n",
  7731. "string",
  7732. "unicode",
  7733. "utf-8",
  7734. "utf8"
  7735. ],
  7736. "support": {
  7737. "source": "https://github.com/symfony/string/tree/v6.2.7"
  7738. },
  7739. "funding": [
  7740. {
  7741. "url": "https://symfony.com/sponsor",
  7742. "type": "custom"
  7743. },
  7744. {
  7745. "url": "https://github.com/fabpot",
  7746. "type": "github"
  7747. },
  7748. {
  7749. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7750. "type": "tidelift"
  7751. }
  7752. ],
  7753. "time": "2023-02-24T10:42:00+00:00"
  7754. },
  7755. {
  7756. "name": "symfony/translation",
  7757. "version": "v6.2.7",
  7758. "source": {
  7759. "type": "git",
  7760. "url": "https://github.com/symfony/translation.git",
  7761. "reference": "90db1c6138c90527917671cd9ffa9e8b359e3a73"
  7762. },
  7763. "dist": {
  7764. "type": "zip",
  7765. "url": "https://api.github.com/repos/symfony/translation/zipball/90db1c6138c90527917671cd9ffa9e8b359e3a73",
  7766. "reference": "90db1c6138c90527917671cd9ffa9e8b359e3a73",
  7767. "shasum": ""
  7768. },
  7769. "require": {
  7770. "php": ">=8.1",
  7771. "symfony/polyfill-mbstring": "~1.0",
  7772. "symfony/translation-contracts": "^2.3|^3.0"
  7773. },
  7774. "conflict": {
  7775. "symfony/config": "<5.4",
  7776. "symfony/console": "<5.4",
  7777. "symfony/dependency-injection": "<5.4",
  7778. "symfony/http-kernel": "<5.4",
  7779. "symfony/twig-bundle": "<5.4",
  7780. "symfony/yaml": "<5.4"
  7781. },
  7782. "provide": {
  7783. "symfony/translation-implementation": "2.3|3.0"
  7784. },
  7785. "require-dev": {
  7786. "nikic/php-parser": "^4.13",
  7787. "psr/log": "^1|^2|^3",
  7788. "symfony/config": "^5.4|^6.0",
  7789. "symfony/console": "^5.4|^6.0",
  7790. "symfony/dependency-injection": "^5.4|^6.0",
  7791. "symfony/finder": "^5.4|^6.0",
  7792. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  7793. "symfony/http-kernel": "^5.4|^6.0",
  7794. "symfony/intl": "^5.4|^6.0",
  7795. "symfony/polyfill-intl-icu": "^1.21",
  7796. "symfony/routing": "^5.4|^6.0",
  7797. "symfony/service-contracts": "^1.1.2|^2|^3",
  7798. "symfony/yaml": "^5.4|^6.0"
  7799. },
  7800. "suggest": {
  7801. "nikic/php-parser": "To use PhpAstExtractor",
  7802. "psr/log-implementation": "To use logging capability in translator",
  7803. "symfony/config": "",
  7804. "symfony/yaml": ""
  7805. },
  7806. "type": "library",
  7807. "autoload": {
  7808. "files": [
  7809. "Resources/functions.php"
  7810. ],
  7811. "psr-4": {
  7812. "Symfony\\Component\\Translation\\": ""
  7813. },
  7814. "exclude-from-classmap": [
  7815. "/Tests/"
  7816. ]
  7817. },
  7818. "notification-url": "https://packagist.org/downloads/",
  7819. "license": [
  7820. "MIT"
  7821. ],
  7822. "authors": [
  7823. {
  7824. "name": "Fabien Potencier",
  7825. "email": "fabien@symfony.com"
  7826. },
  7827. {
  7828. "name": "Symfony Community",
  7829. "homepage": "https://symfony.com/contributors"
  7830. }
  7831. ],
  7832. "description": "Provides tools to internationalize your application",
  7833. "homepage": "https://symfony.com",
  7834. "support": {
  7835. "source": "https://github.com/symfony/translation/tree/v6.2.7"
  7836. },
  7837. "funding": [
  7838. {
  7839. "url": "https://symfony.com/sponsor",
  7840. "type": "custom"
  7841. },
  7842. {
  7843. "url": "https://github.com/fabpot",
  7844. "type": "github"
  7845. },
  7846. {
  7847. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7848. "type": "tidelift"
  7849. }
  7850. ],
  7851. "time": "2023-02-24T10:42:00+00:00"
  7852. },
  7853. {
  7854. "name": "symfony/translation-contracts",
  7855. "version": "v3.2.1",
  7856. "source": {
  7857. "type": "git",
  7858. "url": "https://github.com/symfony/translation-contracts.git",
  7859. "reference": "dfec258b9dd17a6b24420d464c43bffe347441c8"
  7860. },
  7861. "dist": {
  7862. "type": "zip",
  7863. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/dfec258b9dd17a6b24420d464c43bffe347441c8",
  7864. "reference": "dfec258b9dd17a6b24420d464c43bffe347441c8",
  7865. "shasum": ""
  7866. },
  7867. "require": {
  7868. "php": ">=8.1"
  7869. },
  7870. "suggest": {
  7871. "symfony/translation-implementation": ""
  7872. },
  7873. "type": "library",
  7874. "extra": {
  7875. "branch-alias": {
  7876. "dev-main": "3.3-dev"
  7877. },
  7878. "thanks": {
  7879. "name": "symfony/contracts",
  7880. "url": "https://github.com/symfony/contracts"
  7881. }
  7882. },
  7883. "autoload": {
  7884. "psr-4": {
  7885. "Symfony\\Contracts\\Translation\\": ""
  7886. },
  7887. "exclude-from-classmap": [
  7888. "/Test/"
  7889. ]
  7890. },
  7891. "notification-url": "https://packagist.org/downloads/",
  7892. "license": [
  7893. "MIT"
  7894. ],
  7895. "authors": [
  7896. {
  7897. "name": "Nicolas Grekas",
  7898. "email": "p@tchwork.com"
  7899. },
  7900. {
  7901. "name": "Symfony Community",
  7902. "homepage": "https://symfony.com/contributors"
  7903. }
  7904. ],
  7905. "description": "Generic abstractions related to translation",
  7906. "homepage": "https://symfony.com",
  7907. "keywords": [
  7908. "abstractions",
  7909. "contracts",
  7910. "decoupling",
  7911. "interfaces",
  7912. "interoperability",
  7913. "standards"
  7914. ],
  7915. "support": {
  7916. "source": "https://github.com/symfony/translation-contracts/tree/v3.2.1"
  7917. },
  7918. "funding": [
  7919. {
  7920. "url": "https://symfony.com/sponsor",
  7921. "type": "custom"
  7922. },
  7923. {
  7924. "url": "https://github.com/fabpot",
  7925. "type": "github"
  7926. },
  7927. {
  7928. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7929. "type": "tidelift"
  7930. }
  7931. ],
  7932. "time": "2023-03-01T10:32:47+00:00"
  7933. },
  7934. {
  7935. "name": "symfony/uid",
  7936. "version": "v6.2.7",
  7937. "source": {
  7938. "type": "git",
  7939. "url": "https://github.com/symfony/uid.git",
  7940. "reference": "d30c72a63897cfa043e1de4d4dd2ffa9ecefcdc0"
  7941. },
  7942. "dist": {
  7943. "type": "zip",
  7944. "url": "https://api.github.com/repos/symfony/uid/zipball/d30c72a63897cfa043e1de4d4dd2ffa9ecefcdc0",
  7945. "reference": "d30c72a63897cfa043e1de4d4dd2ffa9ecefcdc0",
  7946. "shasum": ""
  7947. },
  7948. "require": {
  7949. "php": ">=8.1",
  7950. "symfony/polyfill-uuid": "^1.15"
  7951. },
  7952. "require-dev": {
  7953. "symfony/console": "^5.4|^6.0"
  7954. },
  7955. "type": "library",
  7956. "autoload": {
  7957. "psr-4": {
  7958. "Symfony\\Component\\Uid\\": ""
  7959. },
  7960. "exclude-from-classmap": [
  7961. "/Tests/"
  7962. ]
  7963. },
  7964. "notification-url": "https://packagist.org/downloads/",
  7965. "license": [
  7966. "MIT"
  7967. ],
  7968. "authors": [
  7969. {
  7970. "name": "Grégoire Pineau",
  7971. "email": "lyrixx@lyrixx.info"
  7972. },
  7973. {
  7974. "name": "Nicolas Grekas",
  7975. "email": "p@tchwork.com"
  7976. },
  7977. {
  7978. "name": "Symfony Community",
  7979. "homepage": "https://symfony.com/contributors"
  7980. }
  7981. ],
  7982. "description": "Provides an object-oriented API to generate and represent UIDs",
  7983. "homepage": "https://symfony.com",
  7984. "keywords": [
  7985. "UID",
  7986. "ulid",
  7987. "uuid"
  7988. ],
  7989. "support": {
  7990. "source": "https://github.com/symfony/uid/tree/v6.2.7"
  7991. },
  7992. "funding": [
  7993. {
  7994. "url": "https://symfony.com/sponsor",
  7995. "type": "custom"
  7996. },
  7997. {
  7998. "url": "https://github.com/fabpot",
  7999. "type": "github"
  8000. },
  8001. {
  8002. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8003. "type": "tidelift"
  8004. }
  8005. ],
  8006. "time": "2023-02-14T08:44:56+00:00"
  8007. },
  8008. {
  8009. "name": "symfony/var-dumper",
  8010. "version": "v6.2.7",
  8011. "source": {
  8012. "type": "git",
  8013. "url": "https://github.com/symfony/var-dumper.git",
  8014. "reference": "cf8d4ca1ddc1e3cc242375deb8fc23e54f5e2a1e"
  8015. },
  8016. "dist": {
  8017. "type": "zip",
  8018. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/cf8d4ca1ddc1e3cc242375deb8fc23e54f5e2a1e",
  8019. "reference": "cf8d4ca1ddc1e3cc242375deb8fc23e54f5e2a1e",
  8020. "shasum": ""
  8021. },
  8022. "require": {
  8023. "php": ">=8.1",
  8024. "symfony/polyfill-mbstring": "~1.0"
  8025. },
  8026. "conflict": {
  8027. "phpunit/phpunit": "<5.4.3",
  8028. "symfony/console": "<5.4"
  8029. },
  8030. "require-dev": {
  8031. "ext-iconv": "*",
  8032. "symfony/console": "^5.4|^6.0",
  8033. "symfony/process": "^5.4|^6.0",
  8034. "symfony/uid": "^5.4|^6.0",
  8035. "twig/twig": "^2.13|^3.0.4"
  8036. },
  8037. "suggest": {
  8038. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  8039. "ext-intl": "To show region name in time zone dump",
  8040. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  8041. },
  8042. "bin": [
  8043. "Resources/bin/var-dump-server"
  8044. ],
  8045. "type": "library",
  8046. "autoload": {
  8047. "files": [
  8048. "Resources/functions/dump.php"
  8049. ],
  8050. "psr-4": {
  8051. "Symfony\\Component\\VarDumper\\": ""
  8052. },
  8053. "exclude-from-classmap": [
  8054. "/Tests/"
  8055. ]
  8056. },
  8057. "notification-url": "https://packagist.org/downloads/",
  8058. "license": [
  8059. "MIT"
  8060. ],
  8061. "authors": [
  8062. {
  8063. "name": "Nicolas Grekas",
  8064. "email": "p@tchwork.com"
  8065. },
  8066. {
  8067. "name": "Symfony Community",
  8068. "homepage": "https://symfony.com/contributors"
  8069. }
  8070. ],
  8071. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  8072. "homepage": "https://symfony.com",
  8073. "keywords": [
  8074. "debug",
  8075. "dump"
  8076. ],
  8077. "support": {
  8078. "source": "https://github.com/symfony/var-dumper/tree/v6.2.7"
  8079. },
  8080. "funding": [
  8081. {
  8082. "url": "https://symfony.com/sponsor",
  8083. "type": "custom"
  8084. },
  8085. {
  8086. "url": "https://github.com/fabpot",
  8087. "type": "github"
  8088. },
  8089. {
  8090. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8091. "type": "tidelift"
  8092. }
  8093. ],
  8094. "time": "2023-02-24T10:42:00+00:00"
  8095. },
  8096. {
  8097. "name": "tijsverkoyen/css-to-inline-styles",
  8098. "version": "2.2.6",
  8099. "source": {
  8100. "type": "git",
  8101. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  8102. "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c"
  8103. },
  8104. "dist": {
  8105. "type": "zip",
  8106. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/c42125b83a4fa63b187fdf29f9c93cb7733da30c",
  8107. "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c",
  8108. "shasum": ""
  8109. },
  8110. "require": {
  8111. "ext-dom": "*",
  8112. "ext-libxml": "*",
  8113. "php": "^5.5 || ^7.0 || ^8.0",
  8114. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  8115. },
  8116. "require-dev": {
  8117. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  8118. },
  8119. "type": "library",
  8120. "extra": {
  8121. "branch-alias": {
  8122. "dev-master": "2.2.x-dev"
  8123. }
  8124. },
  8125. "autoload": {
  8126. "psr-4": {
  8127. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  8128. }
  8129. },
  8130. "notification-url": "https://packagist.org/downloads/",
  8131. "license": [
  8132. "BSD-3-Clause"
  8133. ],
  8134. "authors": [
  8135. {
  8136. "name": "Tijs Verkoyen",
  8137. "email": "css_to_inline_styles@verkoyen.eu",
  8138. "role": "Developer"
  8139. }
  8140. ],
  8141. "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.",
  8142. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  8143. "support": {
  8144. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  8145. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.6"
  8146. },
  8147. "time": "2023-01-03T09:29:04+00:00"
  8148. },
  8149. {
  8150. "name": "vlucas/phpdotenv",
  8151. "version": "v5.5.0",
  8152. "source": {
  8153. "type": "git",
  8154. "url": "https://github.com/vlucas/phpdotenv.git",
  8155. "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7"
  8156. },
  8157. "dist": {
  8158. "type": "zip",
  8159. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
  8160. "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
  8161. "shasum": ""
  8162. },
  8163. "require": {
  8164. "ext-pcre": "*",
  8165. "graham-campbell/result-type": "^1.0.2",
  8166. "php": "^7.1.3 || ^8.0",
  8167. "phpoption/phpoption": "^1.8",
  8168. "symfony/polyfill-ctype": "^1.23",
  8169. "symfony/polyfill-mbstring": "^1.23.1",
  8170. "symfony/polyfill-php80": "^1.23.1"
  8171. },
  8172. "require-dev": {
  8173. "bamarni/composer-bin-plugin": "^1.4.1",
  8174. "ext-filter": "*",
  8175. "phpunit/phpunit": "^7.5.20 || ^8.5.30 || ^9.5.25"
  8176. },
  8177. "suggest": {
  8178. "ext-filter": "Required to use the boolean validator."
  8179. },
  8180. "type": "library",
  8181. "extra": {
  8182. "bamarni-bin": {
  8183. "bin-links": true,
  8184. "forward-command": true
  8185. },
  8186. "branch-alias": {
  8187. "dev-master": "5.5-dev"
  8188. }
  8189. },
  8190. "autoload": {
  8191. "psr-4": {
  8192. "Dotenv\\": "src/"
  8193. }
  8194. },
  8195. "notification-url": "https://packagist.org/downloads/",
  8196. "license": [
  8197. "BSD-3-Clause"
  8198. ],
  8199. "authors": [
  8200. {
  8201. "name": "Graham Campbell",
  8202. "email": "hello@gjcampbell.co.uk",
  8203. "homepage": "https://github.com/GrahamCampbell"
  8204. },
  8205. {
  8206. "name": "Vance Lucas",
  8207. "email": "vance@vancelucas.com",
  8208. "homepage": "https://github.com/vlucas"
  8209. }
  8210. ],
  8211. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  8212. "keywords": [
  8213. "dotenv",
  8214. "env",
  8215. "environment"
  8216. ],
  8217. "support": {
  8218. "issues": "https://github.com/vlucas/phpdotenv/issues",
  8219. "source": "https://github.com/vlucas/phpdotenv/tree/v5.5.0"
  8220. },
  8221. "funding": [
  8222. {
  8223. "url": "https://github.com/GrahamCampbell",
  8224. "type": "github"
  8225. },
  8226. {
  8227. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  8228. "type": "tidelift"
  8229. }
  8230. ],
  8231. "time": "2022-10-16T01:01:54+00:00"
  8232. },
  8233. {
  8234. "name": "voku/portable-ascii",
  8235. "version": "2.0.1",
  8236. "source": {
  8237. "type": "git",
  8238. "url": "https://github.com/voku/portable-ascii.git",
  8239. "reference": "b56450eed252f6801410d810c8e1727224ae0743"
  8240. },
  8241. "dist": {
  8242. "type": "zip",
  8243. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b56450eed252f6801410d810c8e1727224ae0743",
  8244. "reference": "b56450eed252f6801410d810c8e1727224ae0743",
  8245. "shasum": ""
  8246. },
  8247. "require": {
  8248. "php": ">=7.0.0"
  8249. },
  8250. "require-dev": {
  8251. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  8252. },
  8253. "suggest": {
  8254. "ext-intl": "Use Intl for transliterator_transliterate() support"
  8255. },
  8256. "type": "library",
  8257. "autoload": {
  8258. "psr-4": {
  8259. "voku\\": "src/voku/"
  8260. }
  8261. },
  8262. "notification-url": "https://packagist.org/downloads/",
  8263. "license": [
  8264. "MIT"
  8265. ],
  8266. "authors": [
  8267. {
  8268. "name": "Lars Moelleken",
  8269. "homepage": "http://www.moelleken.org/"
  8270. }
  8271. ],
  8272. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  8273. "homepage": "https://github.com/voku/portable-ascii",
  8274. "keywords": [
  8275. "ascii",
  8276. "clean",
  8277. "php"
  8278. ],
  8279. "support": {
  8280. "issues": "https://github.com/voku/portable-ascii/issues",
  8281. "source": "https://github.com/voku/portable-ascii/tree/2.0.1"
  8282. },
  8283. "funding": [
  8284. {
  8285. "url": "https://www.paypal.me/moelleken",
  8286. "type": "custom"
  8287. },
  8288. {
  8289. "url": "https://github.com/voku",
  8290. "type": "github"
  8291. },
  8292. {
  8293. "url": "https://opencollective.com/portable-ascii",
  8294. "type": "open_collective"
  8295. },
  8296. {
  8297. "url": "https://www.patreon.com/voku",
  8298. "type": "patreon"
  8299. },
  8300. {
  8301. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  8302. "type": "tidelift"
  8303. }
  8304. ],
  8305. "time": "2022-03-08T17:03:00+00:00"
  8306. },
  8307. {
  8308. "name": "webmozart/assert",
  8309. "version": "1.11.0",
  8310. "source": {
  8311. "type": "git",
  8312. "url": "https://github.com/webmozarts/assert.git",
  8313. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  8314. },
  8315. "dist": {
  8316. "type": "zip",
  8317. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8318. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8319. "shasum": ""
  8320. },
  8321. "require": {
  8322. "ext-ctype": "*",
  8323. "php": "^7.2 || ^8.0"
  8324. },
  8325. "conflict": {
  8326. "phpstan/phpstan": "<0.12.20",
  8327. "vimeo/psalm": "<4.6.1 || 4.6.2"
  8328. },
  8329. "require-dev": {
  8330. "phpunit/phpunit": "^8.5.13"
  8331. },
  8332. "type": "library",
  8333. "extra": {
  8334. "branch-alias": {
  8335. "dev-master": "1.10-dev"
  8336. }
  8337. },
  8338. "autoload": {
  8339. "psr-4": {
  8340. "Webmozart\\Assert\\": "src/"
  8341. }
  8342. },
  8343. "notification-url": "https://packagist.org/downloads/",
  8344. "license": [
  8345. "MIT"
  8346. ],
  8347. "authors": [
  8348. {
  8349. "name": "Bernhard Schussek",
  8350. "email": "bschussek@gmail.com"
  8351. }
  8352. ],
  8353. "description": "Assertions to validate method input/output with nice error messages.",
  8354. "keywords": [
  8355. "assert",
  8356. "check",
  8357. "validate"
  8358. ],
  8359. "support": {
  8360. "issues": "https://github.com/webmozarts/assert/issues",
  8361. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  8362. },
  8363. "time": "2022-06-03T18:03:27+00:00"
  8364. },
  8365. {
  8366. "name": "yajra/laravel-datatables-oracle",
  8367. "version": "v9.21.2",
  8368. "source": {
  8369. "type": "git",
  8370. "url": "https://github.com/yajra/laravel-datatables.git",
  8371. "reference": "a7fd01f06282923e9c63fa27fe6b391e21dc321a"
  8372. },
  8373. "dist": {
  8374. "type": "zip",
  8375. "url": "https://api.github.com/repos/yajra/laravel-datatables/zipball/a7fd01f06282923e9c63fa27fe6b391e21dc321a",
  8376. "reference": "a7fd01f06282923e9c63fa27fe6b391e21dc321a",
  8377. "shasum": ""
  8378. },
  8379. "require": {
  8380. "illuminate/database": "5.8.*|^6|^7|^8|^9",
  8381. "illuminate/filesystem": "5.8.*|^6|^7|^8|^9",
  8382. "illuminate/http": "5.8.*|^6|^7|^8|^9",
  8383. "illuminate/support": "5.8.*|^6|^7|^8|^9",
  8384. "illuminate/view": "5.8.*|^6|^7|^8|^9",
  8385. "php": "^7.1.3|^8"
  8386. },
  8387. "require-dev": {
  8388. "orchestra/testbench": "^3.8|^4.0|^5.0|^6.0|^7.0"
  8389. },
  8390. "suggest": {
  8391. "yajra/laravel-datatables-buttons": "Plugin for server-side exporting of dataTables.",
  8392. "yajra/laravel-datatables-editor": "Plugin to use DataTables Editor (requires a license).",
  8393. "yajra/laravel-datatables-fractal": "Plugin for server-side response using Fractal.",
  8394. "yajra/laravel-datatables-html": "Plugin for server-side HTML builder of dataTables."
  8395. },
  8396. "type": "library",
  8397. "extra": {
  8398. "branch-alias": {
  8399. "dev-master": "9.0-dev"
  8400. },
  8401. "laravel": {
  8402. "providers": [
  8403. "Yajra\\DataTables\\DataTablesServiceProvider"
  8404. ],
  8405. "aliases": {
  8406. "DataTables": "Yajra\\DataTables\\Facades\\DataTables"
  8407. }
  8408. }
  8409. },
  8410. "autoload": {
  8411. "files": [
  8412. "src/helper.php"
  8413. ],
  8414. "psr-4": {
  8415. "Yajra\\DataTables\\": "src/"
  8416. }
  8417. },
  8418. "notification-url": "https://packagist.org/downloads/",
  8419. "license": [
  8420. "MIT"
  8421. ],
  8422. "authors": [
  8423. {
  8424. "name": "Arjay Angeles",
  8425. "email": "aqangeles@gmail.com"
  8426. }
  8427. ],
  8428. "description": "jQuery DataTables API for Laravel 5|6|7|8|9",
  8429. "keywords": [
  8430. "datatables",
  8431. "jquery",
  8432. "laravel"
  8433. ],
  8434. "support": {
  8435. "issues": "https://github.com/yajra/laravel-datatables/issues",
  8436. "source": "https://github.com/yajra/laravel-datatables/tree/v9.21.2"
  8437. },
  8438. "funding": [
  8439. {
  8440. "url": "https://www.paypal.me/yajra",
  8441. "type": "custom"
  8442. },
  8443. {
  8444. "url": "https://www.patreon.com/yajra",
  8445. "type": "patreon"
  8446. }
  8447. ],
  8448. "time": "2022-07-12T04:48:03+00:00"
  8449. }
  8450. ],
  8451. "packages-dev": [
  8452. {
  8453. "name": "barryvdh/laravel-debugbar",
  8454. "version": "v3.8.1",
  8455. "source": {
  8456. "type": "git",
  8457. "url": "https://github.com/barryvdh/laravel-debugbar.git",
  8458. "reference": "aff3235fecb4104203b1e62c32239c56530eee32"
  8459. },
  8460. "dist": {
  8461. "type": "zip",
  8462. "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/aff3235fecb4104203b1e62c32239c56530eee32",
  8463. "reference": "aff3235fecb4104203b1e62c32239c56530eee32",
  8464. "shasum": ""
  8465. },
  8466. "require": {
  8467. "illuminate/routing": "^9|^10",
  8468. "illuminate/session": "^9|^10",
  8469. "illuminate/support": "^9|^10",
  8470. "maximebf/debugbar": "^1.18.2",
  8471. "php": "^8.0",
  8472. "symfony/finder": "^6"
  8473. },
  8474. "require-dev": {
  8475. "mockery/mockery": "^1.3.3",
  8476. "orchestra/testbench-dusk": "^5|^6|^7|^8",
  8477. "phpunit/phpunit": "^8.5.30|^9.0",
  8478. "squizlabs/php_codesniffer": "^3.5"
  8479. },
  8480. "type": "library",
  8481. "extra": {
  8482. "branch-alias": {
  8483. "dev-master": "3.8-dev"
  8484. },
  8485. "laravel": {
  8486. "providers": [
  8487. "Barryvdh\\Debugbar\\ServiceProvider"
  8488. ],
  8489. "aliases": {
  8490. "Debugbar": "Barryvdh\\Debugbar\\Facades\\Debugbar"
  8491. }
  8492. }
  8493. },
  8494. "autoload": {
  8495. "files": [
  8496. "src/helpers.php"
  8497. ],
  8498. "psr-4": {
  8499. "Barryvdh\\Debugbar\\": "src/"
  8500. }
  8501. },
  8502. "notification-url": "https://packagist.org/downloads/",
  8503. "license": [
  8504. "MIT"
  8505. ],
  8506. "authors": [
  8507. {
  8508. "name": "Barry vd. Heuvel",
  8509. "email": "barryvdh@gmail.com"
  8510. }
  8511. ],
  8512. "description": "PHP Debugbar integration for Laravel",
  8513. "keywords": [
  8514. "debug",
  8515. "debugbar",
  8516. "laravel",
  8517. "profiler",
  8518. "webprofiler"
  8519. ],
  8520. "support": {
  8521. "issues": "https://github.com/barryvdh/laravel-debugbar/issues",
  8522. "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.8.1"
  8523. },
  8524. "funding": [
  8525. {
  8526. "url": "https://fruitcake.nl",
  8527. "type": "custom"
  8528. },
  8529. {
  8530. "url": "https://github.com/barryvdh",
  8531. "type": "github"
  8532. }
  8533. ],
  8534. "time": "2023-02-21T14:21:02+00:00"
  8535. },
  8536. {
  8537. "name": "doctrine/instantiator",
  8538. "version": "2.0.0",
  8539. "source": {
  8540. "type": "git",
  8541. "url": "https://github.com/doctrine/instantiator.git",
  8542. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0"
  8543. },
  8544. "dist": {
  8545. "type": "zip",
  8546. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  8547. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  8548. "shasum": ""
  8549. },
  8550. "require": {
  8551. "php": "^8.1"
  8552. },
  8553. "require-dev": {
  8554. "doctrine/coding-standard": "^11",
  8555. "ext-pdo": "*",
  8556. "ext-phar": "*",
  8557. "phpbench/phpbench": "^1.2",
  8558. "phpstan/phpstan": "^1.9.4",
  8559. "phpstan/phpstan-phpunit": "^1.3",
  8560. "phpunit/phpunit": "^9.5.27",
  8561. "vimeo/psalm": "^5.4"
  8562. },
  8563. "type": "library",
  8564. "autoload": {
  8565. "psr-4": {
  8566. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  8567. }
  8568. },
  8569. "notification-url": "https://packagist.org/downloads/",
  8570. "license": [
  8571. "MIT"
  8572. ],
  8573. "authors": [
  8574. {
  8575. "name": "Marco Pivetta",
  8576. "email": "ocramius@gmail.com",
  8577. "homepage": "https://ocramius.github.io/"
  8578. }
  8579. ],
  8580. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8581. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  8582. "keywords": [
  8583. "constructor",
  8584. "instantiate"
  8585. ],
  8586. "support": {
  8587. "issues": "https://github.com/doctrine/instantiator/issues",
  8588. "source": "https://github.com/doctrine/instantiator/tree/2.0.0"
  8589. },
  8590. "funding": [
  8591. {
  8592. "url": "https://www.doctrine-project.org/sponsorship.html",
  8593. "type": "custom"
  8594. },
  8595. {
  8596. "url": "https://www.patreon.com/phpdoctrine",
  8597. "type": "patreon"
  8598. },
  8599. {
  8600. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  8601. "type": "tidelift"
  8602. }
  8603. ],
  8604. "time": "2022-12-30T00:23:10+00:00"
  8605. },
  8606. {
  8607. "name": "fakerphp/faker",
  8608. "version": "v1.21.0",
  8609. "source": {
  8610. "type": "git",
  8611. "url": "https://github.com/FakerPHP/Faker.git",
  8612. "reference": "92efad6a967f0b79c499705c69b662f738cc9e4d"
  8613. },
  8614. "dist": {
  8615. "type": "zip",
  8616. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/92efad6a967f0b79c499705c69b662f738cc9e4d",
  8617. "reference": "92efad6a967f0b79c499705c69b662f738cc9e4d",
  8618. "shasum": ""
  8619. },
  8620. "require": {
  8621. "php": "^7.4 || ^8.0",
  8622. "psr/container": "^1.0 || ^2.0",
  8623. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  8624. },
  8625. "conflict": {
  8626. "fzaninotto/faker": "*"
  8627. },
  8628. "require-dev": {
  8629. "bamarni/composer-bin-plugin": "^1.4.1",
  8630. "doctrine/persistence": "^1.3 || ^2.0",
  8631. "ext-intl": "*",
  8632. "phpunit/phpunit": "^9.5.26",
  8633. "symfony/phpunit-bridge": "^5.4.16"
  8634. },
  8635. "suggest": {
  8636. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  8637. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  8638. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  8639. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  8640. "ext-mbstring": "Required for multibyte Unicode string functionality."
  8641. },
  8642. "type": "library",
  8643. "extra": {
  8644. "branch-alias": {
  8645. "dev-main": "v1.21-dev"
  8646. }
  8647. },
  8648. "autoload": {
  8649. "psr-4": {
  8650. "Faker\\": "src/Faker/"
  8651. }
  8652. },
  8653. "notification-url": "https://packagist.org/downloads/",
  8654. "license": [
  8655. "MIT"
  8656. ],
  8657. "authors": [
  8658. {
  8659. "name": "François Zaninotto"
  8660. }
  8661. ],
  8662. "description": "Faker is a PHP library that generates fake data for you.",
  8663. "keywords": [
  8664. "data",
  8665. "faker",
  8666. "fixtures"
  8667. ],
  8668. "support": {
  8669. "issues": "https://github.com/FakerPHP/Faker/issues",
  8670. "source": "https://github.com/FakerPHP/Faker/tree/v1.21.0"
  8671. },
  8672. "time": "2022-12-13T13:54:32+00:00"
  8673. },
  8674. {
  8675. "name": "filp/whoops",
  8676. "version": "2.15.1",
  8677. "source": {
  8678. "type": "git",
  8679. "url": "https://github.com/filp/whoops.git",
  8680. "reference": "e864ac957acd66e1565f25efda61e37791a5db0b"
  8681. },
  8682. "dist": {
  8683. "type": "zip",
  8684. "url": "https://api.github.com/repos/filp/whoops/zipball/e864ac957acd66e1565f25efda61e37791a5db0b",
  8685. "reference": "e864ac957acd66e1565f25efda61e37791a5db0b",
  8686. "shasum": ""
  8687. },
  8688. "require": {
  8689. "php": "^5.5.9 || ^7.0 || ^8.0",
  8690. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  8691. },
  8692. "require-dev": {
  8693. "mockery/mockery": "^0.9 || ^1.0",
  8694. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  8695. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  8696. },
  8697. "suggest": {
  8698. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  8699. "whoops/soap": "Formats errors as SOAP responses"
  8700. },
  8701. "type": "library",
  8702. "extra": {
  8703. "branch-alias": {
  8704. "dev-master": "2.7-dev"
  8705. }
  8706. },
  8707. "autoload": {
  8708. "psr-4": {
  8709. "Whoops\\": "src/Whoops/"
  8710. }
  8711. },
  8712. "notification-url": "https://packagist.org/downloads/",
  8713. "license": [
  8714. "MIT"
  8715. ],
  8716. "authors": [
  8717. {
  8718. "name": "Filipe Dobreira",
  8719. "homepage": "https://github.com/filp",
  8720. "role": "Developer"
  8721. }
  8722. ],
  8723. "description": "php error handling for cool kids",
  8724. "homepage": "https://filp.github.io/whoops/",
  8725. "keywords": [
  8726. "error",
  8727. "exception",
  8728. "handling",
  8729. "library",
  8730. "throwable",
  8731. "whoops"
  8732. ],
  8733. "support": {
  8734. "issues": "https://github.com/filp/whoops/issues",
  8735. "source": "https://github.com/filp/whoops/tree/2.15.1"
  8736. },
  8737. "funding": [
  8738. {
  8739. "url": "https://github.com/denis-sokolov",
  8740. "type": "github"
  8741. }
  8742. ],
  8743. "time": "2023-03-06T18:09:13+00:00"
  8744. },
  8745. {
  8746. "name": "hamcrest/hamcrest-php",
  8747. "version": "v2.0.1",
  8748. "source": {
  8749. "type": "git",
  8750. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8751. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8752. },
  8753. "dist": {
  8754. "type": "zip",
  8755. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8756. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8757. "shasum": ""
  8758. },
  8759. "require": {
  8760. "php": "^5.3|^7.0|^8.0"
  8761. },
  8762. "replace": {
  8763. "cordoval/hamcrest-php": "*",
  8764. "davedevelopment/hamcrest-php": "*",
  8765. "kodova/hamcrest-php": "*"
  8766. },
  8767. "require-dev": {
  8768. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8769. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8770. },
  8771. "type": "library",
  8772. "extra": {
  8773. "branch-alias": {
  8774. "dev-master": "2.1-dev"
  8775. }
  8776. },
  8777. "autoload": {
  8778. "classmap": [
  8779. "hamcrest"
  8780. ]
  8781. },
  8782. "notification-url": "https://packagist.org/downloads/",
  8783. "license": [
  8784. "BSD-3-Clause"
  8785. ],
  8786. "description": "This is the PHP port of Hamcrest Matchers",
  8787. "keywords": [
  8788. "test"
  8789. ],
  8790. "support": {
  8791. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8792. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8793. },
  8794. "time": "2020-07-09T08:09:16+00:00"
  8795. },
  8796. {
  8797. "name": "laravel/sail",
  8798. "version": "v1.21.3",
  8799. "source": {
  8800. "type": "git",
  8801. "url": "https://github.com/laravel/sail.git",
  8802. "reference": "3042ff8cf403817c340d5a7762b2d32900239f46"
  8803. },
  8804. "dist": {
  8805. "type": "zip",
  8806. "url": "https://api.github.com/repos/laravel/sail/zipball/3042ff8cf403817c340d5a7762b2d32900239f46",
  8807. "reference": "3042ff8cf403817c340d5a7762b2d32900239f46",
  8808. "shasum": ""
  8809. },
  8810. "require": {
  8811. "illuminate/console": "^8.0|^9.0|^10.0",
  8812. "illuminate/contracts": "^8.0|^9.0|^10.0",
  8813. "illuminate/support": "^8.0|^9.0|^10.0",
  8814. "php": "^7.3|^8.0",
  8815. "symfony/yaml": "^6.0"
  8816. },
  8817. "require-dev": {
  8818. "orchestra/testbench": "^6.0|^7.0|^8.0",
  8819. "phpstan/phpstan": "^1.10"
  8820. },
  8821. "bin": [
  8822. "bin/sail"
  8823. ],
  8824. "type": "library",
  8825. "extra": {
  8826. "branch-alias": {
  8827. "dev-master": "1.x-dev"
  8828. },
  8829. "laravel": {
  8830. "providers": [
  8831. "Laravel\\Sail\\SailServiceProvider"
  8832. ]
  8833. }
  8834. },
  8835. "autoload": {
  8836. "psr-4": {
  8837. "Laravel\\Sail\\": "src/"
  8838. }
  8839. },
  8840. "notification-url": "https://packagist.org/downloads/",
  8841. "license": [
  8842. "MIT"
  8843. ],
  8844. "authors": [
  8845. {
  8846. "name": "Taylor Otwell",
  8847. "email": "taylor@laravel.com"
  8848. }
  8849. ],
  8850. "description": "Docker files for running a basic Laravel application.",
  8851. "keywords": [
  8852. "docker",
  8853. "laravel"
  8854. ],
  8855. "support": {
  8856. "issues": "https://github.com/laravel/sail/issues",
  8857. "source": "https://github.com/laravel/sail"
  8858. },
  8859. "time": "2023-03-13T01:22:10+00:00"
  8860. },
  8861. {
  8862. "name": "maximebf/debugbar",
  8863. "version": "v1.18.2",
  8864. "source": {
  8865. "type": "git",
  8866. "url": "https://github.com/maximebf/php-debugbar.git",
  8867. "reference": "17dcf3f6ed112bb85a37cf13538fd8de49f5c274"
  8868. },
  8869. "dist": {
  8870. "type": "zip",
  8871. "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/17dcf3f6ed112bb85a37cf13538fd8de49f5c274",
  8872. "reference": "17dcf3f6ed112bb85a37cf13538fd8de49f5c274",
  8873. "shasum": ""
  8874. },
  8875. "require": {
  8876. "php": "^7.1|^8",
  8877. "psr/log": "^1|^2|^3",
  8878. "symfony/var-dumper": "^4|^5|^6"
  8879. },
  8880. "require-dev": {
  8881. "phpunit/phpunit": ">=7.5.20 <10.0",
  8882. "twig/twig": "^1.38|^2.7|^3.0"
  8883. },
  8884. "suggest": {
  8885. "kriswallsmith/assetic": "The best way to manage assets",
  8886. "monolog/monolog": "Log using Monolog",
  8887. "predis/predis": "Redis storage"
  8888. },
  8889. "type": "library",
  8890. "extra": {
  8891. "branch-alias": {
  8892. "dev-master": "1.18-dev"
  8893. }
  8894. },
  8895. "autoload": {
  8896. "psr-4": {
  8897. "DebugBar\\": "src/DebugBar/"
  8898. }
  8899. },
  8900. "notification-url": "https://packagist.org/downloads/",
  8901. "license": [
  8902. "MIT"
  8903. ],
  8904. "authors": [
  8905. {
  8906. "name": "Maxime Bouroumeau-Fuseau",
  8907. "email": "maxime.bouroumeau@gmail.com",
  8908. "homepage": "http://maximebf.com"
  8909. },
  8910. {
  8911. "name": "Barry vd. Heuvel",
  8912. "email": "barryvdh@gmail.com"
  8913. }
  8914. ],
  8915. "description": "Debug bar in the browser for php application",
  8916. "homepage": "https://github.com/maximebf/php-debugbar",
  8917. "keywords": [
  8918. "debug",
  8919. "debugbar"
  8920. ],
  8921. "support": {
  8922. "issues": "https://github.com/maximebf/php-debugbar/issues",
  8923. "source": "https://github.com/maximebf/php-debugbar/tree/v1.18.2"
  8924. },
  8925. "time": "2023-02-04T15:27:00+00:00"
  8926. },
  8927. {
  8928. "name": "mockery/mockery",
  8929. "version": "1.5.1",
  8930. "source": {
  8931. "type": "git",
  8932. "url": "https://github.com/mockery/mockery.git",
  8933. "reference": "e92dcc83d5a51851baf5f5591d32cb2b16e3684e"
  8934. },
  8935. "dist": {
  8936. "type": "zip",
  8937. "url": "https://api.github.com/repos/mockery/mockery/zipball/e92dcc83d5a51851baf5f5591d32cb2b16e3684e",
  8938. "reference": "e92dcc83d5a51851baf5f5591d32cb2b16e3684e",
  8939. "shasum": ""
  8940. },
  8941. "require": {
  8942. "hamcrest/hamcrest-php": "^2.0.1",
  8943. "lib-pcre": ">=7.0",
  8944. "php": "^7.3 || ^8.0"
  8945. },
  8946. "conflict": {
  8947. "phpunit/phpunit": "<8.0"
  8948. },
  8949. "require-dev": {
  8950. "phpunit/phpunit": "^8.5 || ^9.3"
  8951. },
  8952. "type": "library",
  8953. "extra": {
  8954. "branch-alias": {
  8955. "dev-master": "1.4.x-dev"
  8956. }
  8957. },
  8958. "autoload": {
  8959. "psr-0": {
  8960. "Mockery": "library/"
  8961. }
  8962. },
  8963. "notification-url": "https://packagist.org/downloads/",
  8964. "license": [
  8965. "BSD-3-Clause"
  8966. ],
  8967. "authors": [
  8968. {
  8969. "name": "Pádraic Brady",
  8970. "email": "padraic.brady@gmail.com",
  8971. "homepage": "http://blog.astrumfutura.com"
  8972. },
  8973. {
  8974. "name": "Dave Marshall",
  8975. "email": "dave.marshall@atstsolutions.co.uk",
  8976. "homepage": "http://davedevelopment.co.uk"
  8977. }
  8978. ],
  8979. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8980. "homepage": "https://github.com/mockery/mockery",
  8981. "keywords": [
  8982. "BDD",
  8983. "TDD",
  8984. "library",
  8985. "mock",
  8986. "mock objects",
  8987. "mockery",
  8988. "stub",
  8989. "test",
  8990. "test double",
  8991. "testing"
  8992. ],
  8993. "support": {
  8994. "issues": "https://github.com/mockery/mockery/issues",
  8995. "source": "https://github.com/mockery/mockery/tree/1.5.1"
  8996. },
  8997. "time": "2022-09-07T15:32:08+00:00"
  8998. },
  8999. {
  9000. "name": "myclabs/deep-copy",
  9001. "version": "1.11.1",
  9002. "source": {
  9003. "type": "git",
  9004. "url": "https://github.com/myclabs/DeepCopy.git",
  9005. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  9006. },
  9007. "dist": {
  9008. "type": "zip",
  9009. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  9010. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  9011. "shasum": ""
  9012. },
  9013. "require": {
  9014. "php": "^7.1 || ^8.0"
  9015. },
  9016. "conflict": {
  9017. "doctrine/collections": "<1.6.8",
  9018. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  9019. },
  9020. "require-dev": {
  9021. "doctrine/collections": "^1.6.8",
  9022. "doctrine/common": "^2.13.3 || ^3.2.2",
  9023. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  9024. },
  9025. "type": "library",
  9026. "autoload": {
  9027. "files": [
  9028. "src/DeepCopy/deep_copy.php"
  9029. ],
  9030. "psr-4": {
  9031. "DeepCopy\\": "src/DeepCopy/"
  9032. }
  9033. },
  9034. "notification-url": "https://packagist.org/downloads/",
  9035. "license": [
  9036. "MIT"
  9037. ],
  9038. "description": "Create deep copies (clones) of your objects",
  9039. "keywords": [
  9040. "clone",
  9041. "copy",
  9042. "duplicate",
  9043. "object",
  9044. "object graph"
  9045. ],
  9046. "support": {
  9047. "issues": "https://github.com/myclabs/DeepCopy/issues",
  9048. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  9049. },
  9050. "funding": [
  9051. {
  9052. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  9053. "type": "tidelift"
  9054. }
  9055. ],
  9056. "time": "2023-03-08T13:26:56+00:00"
  9057. },
  9058. {
  9059. "name": "nunomaduro/collision",
  9060. "version": "v6.4.0",
  9061. "source": {
  9062. "type": "git",
  9063. "url": "https://github.com/nunomaduro/collision.git",
  9064. "reference": "f05978827b9343cba381ca05b8c7deee346b6015"
  9065. },
  9066. "dist": {
  9067. "type": "zip",
  9068. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/f05978827b9343cba381ca05b8c7deee346b6015",
  9069. "reference": "f05978827b9343cba381ca05b8c7deee346b6015",
  9070. "shasum": ""
  9071. },
  9072. "require": {
  9073. "filp/whoops": "^2.14.5",
  9074. "php": "^8.0.0",
  9075. "symfony/console": "^6.0.2"
  9076. },
  9077. "require-dev": {
  9078. "brianium/paratest": "^6.4.1",
  9079. "laravel/framework": "^9.26.1",
  9080. "laravel/pint": "^1.1.1",
  9081. "nunomaduro/larastan": "^1.0.3",
  9082. "nunomaduro/mock-final-classes": "^1.1.0",
  9083. "orchestra/testbench": "^7.7",
  9084. "phpunit/phpunit": "^9.5.23",
  9085. "spatie/ignition": "^1.4.1"
  9086. },
  9087. "type": "library",
  9088. "extra": {
  9089. "branch-alias": {
  9090. "dev-develop": "6.x-dev"
  9091. },
  9092. "laravel": {
  9093. "providers": [
  9094. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  9095. ]
  9096. }
  9097. },
  9098. "autoload": {
  9099. "psr-4": {
  9100. "NunoMaduro\\Collision\\": "src/"
  9101. }
  9102. },
  9103. "notification-url": "https://packagist.org/downloads/",
  9104. "license": [
  9105. "MIT"
  9106. ],
  9107. "authors": [
  9108. {
  9109. "name": "Nuno Maduro",
  9110. "email": "enunomaduro@gmail.com"
  9111. }
  9112. ],
  9113. "description": "Cli error handling for console/command-line PHP applications.",
  9114. "keywords": [
  9115. "artisan",
  9116. "cli",
  9117. "command-line",
  9118. "console",
  9119. "error",
  9120. "handling",
  9121. "laravel",
  9122. "laravel-zero",
  9123. "php",
  9124. "symfony"
  9125. ],
  9126. "support": {
  9127. "issues": "https://github.com/nunomaduro/collision/issues",
  9128. "source": "https://github.com/nunomaduro/collision"
  9129. },
  9130. "funding": [
  9131. {
  9132. "url": "https://www.paypal.com/paypalme/enunomaduro",
  9133. "type": "custom"
  9134. },
  9135. {
  9136. "url": "https://github.com/nunomaduro",
  9137. "type": "github"
  9138. },
  9139. {
  9140. "url": "https://www.patreon.com/nunomaduro",
  9141. "type": "patreon"
  9142. }
  9143. ],
  9144. "time": "2023-01-03T12:54:54+00:00"
  9145. },
  9146. {
  9147. "name": "phar-io/manifest",
  9148. "version": "2.0.3",
  9149. "source": {
  9150. "type": "git",
  9151. "url": "https://github.com/phar-io/manifest.git",
  9152. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  9153. },
  9154. "dist": {
  9155. "type": "zip",
  9156. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  9157. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  9158. "shasum": ""
  9159. },
  9160. "require": {
  9161. "ext-dom": "*",
  9162. "ext-phar": "*",
  9163. "ext-xmlwriter": "*",
  9164. "phar-io/version": "^3.0.1",
  9165. "php": "^7.2 || ^8.0"
  9166. },
  9167. "type": "library",
  9168. "extra": {
  9169. "branch-alias": {
  9170. "dev-master": "2.0.x-dev"
  9171. }
  9172. },
  9173. "autoload": {
  9174. "classmap": [
  9175. "src/"
  9176. ]
  9177. },
  9178. "notification-url": "https://packagist.org/downloads/",
  9179. "license": [
  9180. "BSD-3-Clause"
  9181. ],
  9182. "authors": [
  9183. {
  9184. "name": "Arne Blankerts",
  9185. "email": "arne@blankerts.de",
  9186. "role": "Developer"
  9187. },
  9188. {
  9189. "name": "Sebastian Heuer",
  9190. "email": "sebastian@phpeople.de",
  9191. "role": "Developer"
  9192. },
  9193. {
  9194. "name": "Sebastian Bergmann",
  9195. "email": "sebastian@phpunit.de",
  9196. "role": "Developer"
  9197. }
  9198. ],
  9199. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9200. "support": {
  9201. "issues": "https://github.com/phar-io/manifest/issues",
  9202. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  9203. },
  9204. "time": "2021-07-20T11:28:43+00:00"
  9205. },
  9206. {
  9207. "name": "phar-io/version",
  9208. "version": "3.2.1",
  9209. "source": {
  9210. "type": "git",
  9211. "url": "https://github.com/phar-io/version.git",
  9212. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  9213. },
  9214. "dist": {
  9215. "type": "zip",
  9216. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9217. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9218. "shasum": ""
  9219. },
  9220. "require": {
  9221. "php": "^7.2 || ^8.0"
  9222. },
  9223. "type": "library",
  9224. "autoload": {
  9225. "classmap": [
  9226. "src/"
  9227. ]
  9228. },
  9229. "notification-url": "https://packagist.org/downloads/",
  9230. "license": [
  9231. "BSD-3-Clause"
  9232. ],
  9233. "authors": [
  9234. {
  9235. "name": "Arne Blankerts",
  9236. "email": "arne@blankerts.de",
  9237. "role": "Developer"
  9238. },
  9239. {
  9240. "name": "Sebastian Heuer",
  9241. "email": "sebastian@phpeople.de",
  9242. "role": "Developer"
  9243. },
  9244. {
  9245. "name": "Sebastian Bergmann",
  9246. "email": "sebastian@phpunit.de",
  9247. "role": "Developer"
  9248. }
  9249. ],
  9250. "description": "Library for handling version information and constraints",
  9251. "support": {
  9252. "issues": "https://github.com/phar-io/version/issues",
  9253. "source": "https://github.com/phar-io/version/tree/3.2.1"
  9254. },
  9255. "time": "2022-02-21T01:04:05+00:00"
  9256. },
  9257. {
  9258. "name": "phpunit/php-code-coverage",
  9259. "version": "9.2.26",
  9260. "source": {
  9261. "type": "git",
  9262. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9263. "reference": "443bc6912c9bd5b409254a40f4b0f4ced7c80ea1"
  9264. },
  9265. "dist": {
  9266. "type": "zip",
  9267. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/443bc6912c9bd5b409254a40f4b0f4ced7c80ea1",
  9268. "reference": "443bc6912c9bd5b409254a40f4b0f4ced7c80ea1",
  9269. "shasum": ""
  9270. },
  9271. "require": {
  9272. "ext-dom": "*",
  9273. "ext-libxml": "*",
  9274. "ext-xmlwriter": "*",
  9275. "nikic/php-parser": "^4.15",
  9276. "php": ">=7.3",
  9277. "phpunit/php-file-iterator": "^3.0.3",
  9278. "phpunit/php-text-template": "^2.0.2",
  9279. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  9280. "sebastian/complexity": "^2.0",
  9281. "sebastian/environment": "^5.1.2",
  9282. "sebastian/lines-of-code": "^1.0.3",
  9283. "sebastian/version": "^3.0.1",
  9284. "theseer/tokenizer": "^1.2.0"
  9285. },
  9286. "require-dev": {
  9287. "phpunit/phpunit": "^9.3"
  9288. },
  9289. "suggest": {
  9290. "ext-pcov": "PHP extension that provides line coverage",
  9291. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9292. },
  9293. "type": "library",
  9294. "extra": {
  9295. "branch-alias": {
  9296. "dev-master": "9.2-dev"
  9297. }
  9298. },
  9299. "autoload": {
  9300. "classmap": [
  9301. "src/"
  9302. ]
  9303. },
  9304. "notification-url": "https://packagist.org/downloads/",
  9305. "license": [
  9306. "BSD-3-Clause"
  9307. ],
  9308. "authors": [
  9309. {
  9310. "name": "Sebastian Bergmann",
  9311. "email": "sebastian@phpunit.de",
  9312. "role": "lead"
  9313. }
  9314. ],
  9315. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9316. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9317. "keywords": [
  9318. "coverage",
  9319. "testing",
  9320. "xunit"
  9321. ],
  9322. "support": {
  9323. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9324. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.26"
  9325. },
  9326. "funding": [
  9327. {
  9328. "url": "https://github.com/sebastianbergmann",
  9329. "type": "github"
  9330. }
  9331. ],
  9332. "time": "2023-03-06T12:58:08+00:00"
  9333. },
  9334. {
  9335. "name": "phpunit/php-file-iterator",
  9336. "version": "3.0.6",
  9337. "source": {
  9338. "type": "git",
  9339. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9340. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  9341. },
  9342. "dist": {
  9343. "type": "zip",
  9344. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9345. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9346. "shasum": ""
  9347. },
  9348. "require": {
  9349. "php": ">=7.3"
  9350. },
  9351. "require-dev": {
  9352. "phpunit/phpunit": "^9.3"
  9353. },
  9354. "type": "library",
  9355. "extra": {
  9356. "branch-alias": {
  9357. "dev-master": "3.0-dev"
  9358. }
  9359. },
  9360. "autoload": {
  9361. "classmap": [
  9362. "src/"
  9363. ]
  9364. },
  9365. "notification-url": "https://packagist.org/downloads/",
  9366. "license": [
  9367. "BSD-3-Clause"
  9368. ],
  9369. "authors": [
  9370. {
  9371. "name": "Sebastian Bergmann",
  9372. "email": "sebastian@phpunit.de",
  9373. "role": "lead"
  9374. }
  9375. ],
  9376. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9377. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9378. "keywords": [
  9379. "filesystem",
  9380. "iterator"
  9381. ],
  9382. "support": {
  9383. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9384. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  9385. },
  9386. "funding": [
  9387. {
  9388. "url": "https://github.com/sebastianbergmann",
  9389. "type": "github"
  9390. }
  9391. ],
  9392. "time": "2021-12-02T12:48:52+00:00"
  9393. },
  9394. {
  9395. "name": "phpunit/php-invoker",
  9396. "version": "3.1.1",
  9397. "source": {
  9398. "type": "git",
  9399. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9400. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  9401. },
  9402. "dist": {
  9403. "type": "zip",
  9404. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9405. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9406. "shasum": ""
  9407. },
  9408. "require": {
  9409. "php": ">=7.3"
  9410. },
  9411. "require-dev": {
  9412. "ext-pcntl": "*",
  9413. "phpunit/phpunit": "^9.3"
  9414. },
  9415. "suggest": {
  9416. "ext-pcntl": "*"
  9417. },
  9418. "type": "library",
  9419. "extra": {
  9420. "branch-alias": {
  9421. "dev-master": "3.1-dev"
  9422. }
  9423. },
  9424. "autoload": {
  9425. "classmap": [
  9426. "src/"
  9427. ]
  9428. },
  9429. "notification-url": "https://packagist.org/downloads/",
  9430. "license": [
  9431. "BSD-3-Clause"
  9432. ],
  9433. "authors": [
  9434. {
  9435. "name": "Sebastian Bergmann",
  9436. "email": "sebastian@phpunit.de",
  9437. "role": "lead"
  9438. }
  9439. ],
  9440. "description": "Invoke callables with a timeout",
  9441. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9442. "keywords": [
  9443. "process"
  9444. ],
  9445. "support": {
  9446. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9447. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  9448. },
  9449. "funding": [
  9450. {
  9451. "url": "https://github.com/sebastianbergmann",
  9452. "type": "github"
  9453. }
  9454. ],
  9455. "time": "2020-09-28T05:58:55+00:00"
  9456. },
  9457. {
  9458. "name": "phpunit/php-text-template",
  9459. "version": "2.0.4",
  9460. "source": {
  9461. "type": "git",
  9462. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9463. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  9464. },
  9465. "dist": {
  9466. "type": "zip",
  9467. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9468. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9469. "shasum": ""
  9470. },
  9471. "require": {
  9472. "php": ">=7.3"
  9473. },
  9474. "require-dev": {
  9475. "phpunit/phpunit": "^9.3"
  9476. },
  9477. "type": "library",
  9478. "extra": {
  9479. "branch-alias": {
  9480. "dev-master": "2.0-dev"
  9481. }
  9482. },
  9483. "autoload": {
  9484. "classmap": [
  9485. "src/"
  9486. ]
  9487. },
  9488. "notification-url": "https://packagist.org/downloads/",
  9489. "license": [
  9490. "BSD-3-Clause"
  9491. ],
  9492. "authors": [
  9493. {
  9494. "name": "Sebastian Bergmann",
  9495. "email": "sebastian@phpunit.de",
  9496. "role": "lead"
  9497. }
  9498. ],
  9499. "description": "Simple template engine.",
  9500. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9501. "keywords": [
  9502. "template"
  9503. ],
  9504. "support": {
  9505. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9506. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  9507. },
  9508. "funding": [
  9509. {
  9510. "url": "https://github.com/sebastianbergmann",
  9511. "type": "github"
  9512. }
  9513. ],
  9514. "time": "2020-10-26T05:33:50+00:00"
  9515. },
  9516. {
  9517. "name": "phpunit/php-timer",
  9518. "version": "5.0.3",
  9519. "source": {
  9520. "type": "git",
  9521. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9522. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  9523. },
  9524. "dist": {
  9525. "type": "zip",
  9526. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9527. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9528. "shasum": ""
  9529. },
  9530. "require": {
  9531. "php": ">=7.3"
  9532. },
  9533. "require-dev": {
  9534. "phpunit/phpunit": "^9.3"
  9535. },
  9536. "type": "library",
  9537. "extra": {
  9538. "branch-alias": {
  9539. "dev-master": "5.0-dev"
  9540. }
  9541. },
  9542. "autoload": {
  9543. "classmap": [
  9544. "src/"
  9545. ]
  9546. },
  9547. "notification-url": "https://packagist.org/downloads/",
  9548. "license": [
  9549. "BSD-3-Clause"
  9550. ],
  9551. "authors": [
  9552. {
  9553. "name": "Sebastian Bergmann",
  9554. "email": "sebastian@phpunit.de",
  9555. "role": "lead"
  9556. }
  9557. ],
  9558. "description": "Utility class for timing",
  9559. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9560. "keywords": [
  9561. "timer"
  9562. ],
  9563. "support": {
  9564. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9565. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  9566. },
  9567. "funding": [
  9568. {
  9569. "url": "https://github.com/sebastianbergmann",
  9570. "type": "github"
  9571. }
  9572. ],
  9573. "time": "2020-10-26T13:16:10+00:00"
  9574. },
  9575. {
  9576. "name": "phpunit/phpunit",
  9577. "version": "9.6.6",
  9578. "source": {
  9579. "type": "git",
  9580. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9581. "reference": "b65d59a059d3004a040c16a82e07bbdf6cfdd115"
  9582. },
  9583. "dist": {
  9584. "type": "zip",
  9585. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/b65d59a059d3004a040c16a82e07bbdf6cfdd115",
  9586. "reference": "b65d59a059d3004a040c16a82e07bbdf6cfdd115",
  9587. "shasum": ""
  9588. },
  9589. "require": {
  9590. "doctrine/instantiator": "^1.3.1 || ^2",
  9591. "ext-dom": "*",
  9592. "ext-json": "*",
  9593. "ext-libxml": "*",
  9594. "ext-mbstring": "*",
  9595. "ext-xml": "*",
  9596. "ext-xmlwriter": "*",
  9597. "myclabs/deep-copy": "^1.10.1",
  9598. "phar-io/manifest": "^2.0.3",
  9599. "phar-io/version": "^3.0.2",
  9600. "php": ">=7.3",
  9601. "phpunit/php-code-coverage": "^9.2.13",
  9602. "phpunit/php-file-iterator": "^3.0.5",
  9603. "phpunit/php-invoker": "^3.1.1",
  9604. "phpunit/php-text-template": "^2.0.3",
  9605. "phpunit/php-timer": "^5.0.2",
  9606. "sebastian/cli-parser": "^1.0.1",
  9607. "sebastian/code-unit": "^1.0.6",
  9608. "sebastian/comparator": "^4.0.8",
  9609. "sebastian/diff": "^4.0.3",
  9610. "sebastian/environment": "^5.1.3",
  9611. "sebastian/exporter": "^4.0.5",
  9612. "sebastian/global-state": "^5.0.1",
  9613. "sebastian/object-enumerator": "^4.0.3",
  9614. "sebastian/resource-operations": "^3.0.3",
  9615. "sebastian/type": "^3.2",
  9616. "sebastian/version": "^3.0.2"
  9617. },
  9618. "suggest": {
  9619. "ext-soap": "To be able to generate mocks based on WSDL files",
  9620. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9621. },
  9622. "bin": [
  9623. "phpunit"
  9624. ],
  9625. "type": "library",
  9626. "extra": {
  9627. "branch-alias": {
  9628. "dev-master": "9.6-dev"
  9629. }
  9630. },
  9631. "autoload": {
  9632. "files": [
  9633. "src/Framework/Assert/Functions.php"
  9634. ],
  9635. "classmap": [
  9636. "src/"
  9637. ]
  9638. },
  9639. "notification-url": "https://packagist.org/downloads/",
  9640. "license": [
  9641. "BSD-3-Clause"
  9642. ],
  9643. "authors": [
  9644. {
  9645. "name": "Sebastian Bergmann",
  9646. "email": "sebastian@phpunit.de",
  9647. "role": "lead"
  9648. }
  9649. ],
  9650. "description": "The PHP Unit Testing framework.",
  9651. "homepage": "https://phpunit.de/",
  9652. "keywords": [
  9653. "phpunit",
  9654. "testing",
  9655. "xunit"
  9656. ],
  9657. "support": {
  9658. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9659. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9660. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.6"
  9661. },
  9662. "funding": [
  9663. {
  9664. "url": "https://phpunit.de/sponsors.html",
  9665. "type": "custom"
  9666. },
  9667. {
  9668. "url": "https://github.com/sebastianbergmann",
  9669. "type": "github"
  9670. },
  9671. {
  9672. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9673. "type": "tidelift"
  9674. }
  9675. ],
  9676. "time": "2023-03-27T11:43:46+00:00"
  9677. },
  9678. {
  9679. "name": "sebastian/cli-parser",
  9680. "version": "1.0.1",
  9681. "source": {
  9682. "type": "git",
  9683. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9684. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  9685. },
  9686. "dist": {
  9687. "type": "zip",
  9688. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  9689. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  9690. "shasum": ""
  9691. },
  9692. "require": {
  9693. "php": ">=7.3"
  9694. },
  9695. "require-dev": {
  9696. "phpunit/phpunit": "^9.3"
  9697. },
  9698. "type": "library",
  9699. "extra": {
  9700. "branch-alias": {
  9701. "dev-master": "1.0-dev"
  9702. }
  9703. },
  9704. "autoload": {
  9705. "classmap": [
  9706. "src/"
  9707. ]
  9708. },
  9709. "notification-url": "https://packagist.org/downloads/",
  9710. "license": [
  9711. "BSD-3-Clause"
  9712. ],
  9713. "authors": [
  9714. {
  9715. "name": "Sebastian Bergmann",
  9716. "email": "sebastian@phpunit.de",
  9717. "role": "lead"
  9718. }
  9719. ],
  9720. "description": "Library for parsing CLI options",
  9721. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9722. "support": {
  9723. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9724. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  9725. },
  9726. "funding": [
  9727. {
  9728. "url": "https://github.com/sebastianbergmann",
  9729. "type": "github"
  9730. }
  9731. ],
  9732. "time": "2020-09-28T06:08:49+00:00"
  9733. },
  9734. {
  9735. "name": "sebastian/code-unit",
  9736. "version": "1.0.8",
  9737. "source": {
  9738. "type": "git",
  9739. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9740. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  9741. },
  9742. "dist": {
  9743. "type": "zip",
  9744. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9745. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9746. "shasum": ""
  9747. },
  9748. "require": {
  9749. "php": ">=7.3"
  9750. },
  9751. "require-dev": {
  9752. "phpunit/phpunit": "^9.3"
  9753. },
  9754. "type": "library",
  9755. "extra": {
  9756. "branch-alias": {
  9757. "dev-master": "1.0-dev"
  9758. }
  9759. },
  9760. "autoload": {
  9761. "classmap": [
  9762. "src/"
  9763. ]
  9764. },
  9765. "notification-url": "https://packagist.org/downloads/",
  9766. "license": [
  9767. "BSD-3-Clause"
  9768. ],
  9769. "authors": [
  9770. {
  9771. "name": "Sebastian Bergmann",
  9772. "email": "sebastian@phpunit.de",
  9773. "role": "lead"
  9774. }
  9775. ],
  9776. "description": "Collection of value objects that represent the PHP code units",
  9777. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9778. "support": {
  9779. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9780. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  9781. },
  9782. "funding": [
  9783. {
  9784. "url": "https://github.com/sebastianbergmann",
  9785. "type": "github"
  9786. }
  9787. ],
  9788. "time": "2020-10-26T13:08:54+00:00"
  9789. },
  9790. {
  9791. "name": "sebastian/code-unit-reverse-lookup",
  9792. "version": "2.0.3",
  9793. "source": {
  9794. "type": "git",
  9795. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9796. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  9797. },
  9798. "dist": {
  9799. "type": "zip",
  9800. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9801. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9802. "shasum": ""
  9803. },
  9804. "require": {
  9805. "php": ">=7.3"
  9806. },
  9807. "require-dev": {
  9808. "phpunit/phpunit": "^9.3"
  9809. },
  9810. "type": "library",
  9811. "extra": {
  9812. "branch-alias": {
  9813. "dev-master": "2.0-dev"
  9814. }
  9815. },
  9816. "autoload": {
  9817. "classmap": [
  9818. "src/"
  9819. ]
  9820. },
  9821. "notification-url": "https://packagist.org/downloads/",
  9822. "license": [
  9823. "BSD-3-Clause"
  9824. ],
  9825. "authors": [
  9826. {
  9827. "name": "Sebastian Bergmann",
  9828. "email": "sebastian@phpunit.de"
  9829. }
  9830. ],
  9831. "description": "Looks up which function or method a line of code belongs to",
  9832. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9833. "support": {
  9834. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9835. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  9836. },
  9837. "funding": [
  9838. {
  9839. "url": "https://github.com/sebastianbergmann",
  9840. "type": "github"
  9841. }
  9842. ],
  9843. "time": "2020-09-28T05:30:19+00:00"
  9844. },
  9845. {
  9846. "name": "sebastian/comparator",
  9847. "version": "4.0.8",
  9848. "source": {
  9849. "type": "git",
  9850. "url": "https://github.com/sebastianbergmann/comparator.git",
  9851. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  9852. },
  9853. "dist": {
  9854. "type": "zip",
  9855. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  9856. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  9857. "shasum": ""
  9858. },
  9859. "require": {
  9860. "php": ">=7.3",
  9861. "sebastian/diff": "^4.0",
  9862. "sebastian/exporter": "^4.0"
  9863. },
  9864. "require-dev": {
  9865. "phpunit/phpunit": "^9.3"
  9866. },
  9867. "type": "library",
  9868. "extra": {
  9869. "branch-alias": {
  9870. "dev-master": "4.0-dev"
  9871. }
  9872. },
  9873. "autoload": {
  9874. "classmap": [
  9875. "src/"
  9876. ]
  9877. },
  9878. "notification-url": "https://packagist.org/downloads/",
  9879. "license": [
  9880. "BSD-3-Clause"
  9881. ],
  9882. "authors": [
  9883. {
  9884. "name": "Sebastian Bergmann",
  9885. "email": "sebastian@phpunit.de"
  9886. },
  9887. {
  9888. "name": "Jeff Welch",
  9889. "email": "whatthejeff@gmail.com"
  9890. },
  9891. {
  9892. "name": "Volker Dusch",
  9893. "email": "github@wallbash.com"
  9894. },
  9895. {
  9896. "name": "Bernhard Schussek",
  9897. "email": "bschussek@2bepublished.at"
  9898. }
  9899. ],
  9900. "description": "Provides the functionality to compare PHP values for equality",
  9901. "homepage": "https://github.com/sebastianbergmann/comparator",
  9902. "keywords": [
  9903. "comparator",
  9904. "compare",
  9905. "equality"
  9906. ],
  9907. "support": {
  9908. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9909. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  9910. },
  9911. "funding": [
  9912. {
  9913. "url": "https://github.com/sebastianbergmann",
  9914. "type": "github"
  9915. }
  9916. ],
  9917. "time": "2022-09-14T12:41:17+00:00"
  9918. },
  9919. {
  9920. "name": "sebastian/complexity",
  9921. "version": "2.0.2",
  9922. "source": {
  9923. "type": "git",
  9924. "url": "https://github.com/sebastianbergmann/complexity.git",
  9925. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  9926. },
  9927. "dist": {
  9928. "type": "zip",
  9929. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  9930. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  9931. "shasum": ""
  9932. },
  9933. "require": {
  9934. "nikic/php-parser": "^4.7",
  9935. "php": ">=7.3"
  9936. },
  9937. "require-dev": {
  9938. "phpunit/phpunit": "^9.3"
  9939. },
  9940. "type": "library",
  9941. "extra": {
  9942. "branch-alias": {
  9943. "dev-master": "2.0-dev"
  9944. }
  9945. },
  9946. "autoload": {
  9947. "classmap": [
  9948. "src/"
  9949. ]
  9950. },
  9951. "notification-url": "https://packagist.org/downloads/",
  9952. "license": [
  9953. "BSD-3-Clause"
  9954. ],
  9955. "authors": [
  9956. {
  9957. "name": "Sebastian Bergmann",
  9958. "email": "sebastian@phpunit.de",
  9959. "role": "lead"
  9960. }
  9961. ],
  9962. "description": "Library for calculating the complexity of PHP code units",
  9963. "homepage": "https://github.com/sebastianbergmann/complexity",
  9964. "support": {
  9965. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9966. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  9967. },
  9968. "funding": [
  9969. {
  9970. "url": "https://github.com/sebastianbergmann",
  9971. "type": "github"
  9972. }
  9973. ],
  9974. "time": "2020-10-26T15:52:27+00:00"
  9975. },
  9976. {
  9977. "name": "sebastian/diff",
  9978. "version": "4.0.4",
  9979. "source": {
  9980. "type": "git",
  9981. "url": "https://github.com/sebastianbergmann/diff.git",
  9982. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  9983. },
  9984. "dist": {
  9985. "type": "zip",
  9986. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  9987. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  9988. "shasum": ""
  9989. },
  9990. "require": {
  9991. "php": ">=7.3"
  9992. },
  9993. "require-dev": {
  9994. "phpunit/phpunit": "^9.3",
  9995. "symfony/process": "^4.2 || ^5"
  9996. },
  9997. "type": "library",
  9998. "extra": {
  9999. "branch-alias": {
  10000. "dev-master": "4.0-dev"
  10001. }
  10002. },
  10003. "autoload": {
  10004. "classmap": [
  10005. "src/"
  10006. ]
  10007. },
  10008. "notification-url": "https://packagist.org/downloads/",
  10009. "license": [
  10010. "BSD-3-Clause"
  10011. ],
  10012. "authors": [
  10013. {
  10014. "name": "Sebastian Bergmann",
  10015. "email": "sebastian@phpunit.de"
  10016. },
  10017. {
  10018. "name": "Kore Nordmann",
  10019. "email": "mail@kore-nordmann.de"
  10020. }
  10021. ],
  10022. "description": "Diff implementation",
  10023. "homepage": "https://github.com/sebastianbergmann/diff",
  10024. "keywords": [
  10025. "diff",
  10026. "udiff",
  10027. "unidiff",
  10028. "unified diff"
  10029. ],
  10030. "support": {
  10031. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10032. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  10033. },
  10034. "funding": [
  10035. {
  10036. "url": "https://github.com/sebastianbergmann",
  10037. "type": "github"
  10038. }
  10039. ],
  10040. "time": "2020-10-26T13:10:38+00:00"
  10041. },
  10042. {
  10043. "name": "sebastian/environment",
  10044. "version": "5.1.5",
  10045. "source": {
  10046. "type": "git",
  10047. "url": "https://github.com/sebastianbergmann/environment.git",
  10048. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  10049. },
  10050. "dist": {
  10051. "type": "zip",
  10052. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  10053. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  10054. "shasum": ""
  10055. },
  10056. "require": {
  10057. "php": ">=7.3"
  10058. },
  10059. "require-dev": {
  10060. "phpunit/phpunit": "^9.3"
  10061. },
  10062. "suggest": {
  10063. "ext-posix": "*"
  10064. },
  10065. "type": "library",
  10066. "extra": {
  10067. "branch-alias": {
  10068. "dev-master": "5.1-dev"
  10069. }
  10070. },
  10071. "autoload": {
  10072. "classmap": [
  10073. "src/"
  10074. ]
  10075. },
  10076. "notification-url": "https://packagist.org/downloads/",
  10077. "license": [
  10078. "BSD-3-Clause"
  10079. ],
  10080. "authors": [
  10081. {
  10082. "name": "Sebastian Bergmann",
  10083. "email": "sebastian@phpunit.de"
  10084. }
  10085. ],
  10086. "description": "Provides functionality to handle HHVM/PHP environments",
  10087. "homepage": "http://www.github.com/sebastianbergmann/environment",
  10088. "keywords": [
  10089. "Xdebug",
  10090. "environment",
  10091. "hhvm"
  10092. ],
  10093. "support": {
  10094. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10095. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  10096. },
  10097. "funding": [
  10098. {
  10099. "url": "https://github.com/sebastianbergmann",
  10100. "type": "github"
  10101. }
  10102. ],
  10103. "time": "2023-02-03T06:03:51+00:00"
  10104. },
  10105. {
  10106. "name": "sebastian/exporter",
  10107. "version": "4.0.5",
  10108. "source": {
  10109. "type": "git",
  10110. "url": "https://github.com/sebastianbergmann/exporter.git",
  10111. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d"
  10112. },
  10113. "dist": {
  10114. "type": "zip",
  10115. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  10116. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  10117. "shasum": ""
  10118. },
  10119. "require": {
  10120. "php": ">=7.3",
  10121. "sebastian/recursion-context": "^4.0"
  10122. },
  10123. "require-dev": {
  10124. "ext-mbstring": "*",
  10125. "phpunit/phpunit": "^9.3"
  10126. },
  10127. "type": "library",
  10128. "extra": {
  10129. "branch-alias": {
  10130. "dev-master": "4.0-dev"
  10131. }
  10132. },
  10133. "autoload": {
  10134. "classmap": [
  10135. "src/"
  10136. ]
  10137. },
  10138. "notification-url": "https://packagist.org/downloads/",
  10139. "license": [
  10140. "BSD-3-Clause"
  10141. ],
  10142. "authors": [
  10143. {
  10144. "name": "Sebastian Bergmann",
  10145. "email": "sebastian@phpunit.de"
  10146. },
  10147. {
  10148. "name": "Jeff Welch",
  10149. "email": "whatthejeff@gmail.com"
  10150. },
  10151. {
  10152. "name": "Volker Dusch",
  10153. "email": "github@wallbash.com"
  10154. },
  10155. {
  10156. "name": "Adam Harvey",
  10157. "email": "aharvey@php.net"
  10158. },
  10159. {
  10160. "name": "Bernhard Schussek",
  10161. "email": "bschussek@gmail.com"
  10162. }
  10163. ],
  10164. "description": "Provides the functionality to export PHP variables for visualization",
  10165. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10166. "keywords": [
  10167. "export",
  10168. "exporter"
  10169. ],
  10170. "support": {
  10171. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10172. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5"
  10173. },
  10174. "funding": [
  10175. {
  10176. "url": "https://github.com/sebastianbergmann",
  10177. "type": "github"
  10178. }
  10179. ],
  10180. "time": "2022-09-14T06:03:37+00:00"
  10181. },
  10182. {
  10183. "name": "sebastian/global-state",
  10184. "version": "5.0.5",
  10185. "source": {
  10186. "type": "git",
  10187. "url": "https://github.com/sebastianbergmann/global-state.git",
  10188. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2"
  10189. },
  10190. "dist": {
  10191. "type": "zip",
  10192. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  10193. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  10194. "shasum": ""
  10195. },
  10196. "require": {
  10197. "php": ">=7.3",
  10198. "sebastian/object-reflector": "^2.0",
  10199. "sebastian/recursion-context": "^4.0"
  10200. },
  10201. "require-dev": {
  10202. "ext-dom": "*",
  10203. "phpunit/phpunit": "^9.3"
  10204. },
  10205. "suggest": {
  10206. "ext-uopz": "*"
  10207. },
  10208. "type": "library",
  10209. "extra": {
  10210. "branch-alias": {
  10211. "dev-master": "5.0-dev"
  10212. }
  10213. },
  10214. "autoload": {
  10215. "classmap": [
  10216. "src/"
  10217. ]
  10218. },
  10219. "notification-url": "https://packagist.org/downloads/",
  10220. "license": [
  10221. "BSD-3-Clause"
  10222. ],
  10223. "authors": [
  10224. {
  10225. "name": "Sebastian Bergmann",
  10226. "email": "sebastian@phpunit.de"
  10227. }
  10228. ],
  10229. "description": "Snapshotting of global state",
  10230. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  10231. "keywords": [
  10232. "global state"
  10233. ],
  10234. "support": {
  10235. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10236. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5"
  10237. },
  10238. "funding": [
  10239. {
  10240. "url": "https://github.com/sebastianbergmann",
  10241. "type": "github"
  10242. }
  10243. ],
  10244. "time": "2022-02-14T08:28:10+00:00"
  10245. },
  10246. {
  10247. "name": "sebastian/lines-of-code",
  10248. "version": "1.0.3",
  10249. "source": {
  10250. "type": "git",
  10251. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10252. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  10253. },
  10254. "dist": {
  10255. "type": "zip",
  10256. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  10257. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  10258. "shasum": ""
  10259. },
  10260. "require": {
  10261. "nikic/php-parser": "^4.6",
  10262. "php": ">=7.3"
  10263. },
  10264. "require-dev": {
  10265. "phpunit/phpunit": "^9.3"
  10266. },
  10267. "type": "library",
  10268. "extra": {
  10269. "branch-alias": {
  10270. "dev-master": "1.0-dev"
  10271. }
  10272. },
  10273. "autoload": {
  10274. "classmap": [
  10275. "src/"
  10276. ]
  10277. },
  10278. "notification-url": "https://packagist.org/downloads/",
  10279. "license": [
  10280. "BSD-3-Clause"
  10281. ],
  10282. "authors": [
  10283. {
  10284. "name": "Sebastian Bergmann",
  10285. "email": "sebastian@phpunit.de",
  10286. "role": "lead"
  10287. }
  10288. ],
  10289. "description": "Library for counting the lines of code in PHP source code",
  10290. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10291. "support": {
  10292. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10293. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  10294. },
  10295. "funding": [
  10296. {
  10297. "url": "https://github.com/sebastianbergmann",
  10298. "type": "github"
  10299. }
  10300. ],
  10301. "time": "2020-11-28T06:42:11+00:00"
  10302. },
  10303. {
  10304. "name": "sebastian/object-enumerator",
  10305. "version": "4.0.4",
  10306. "source": {
  10307. "type": "git",
  10308. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10309. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  10310. },
  10311. "dist": {
  10312. "type": "zip",
  10313. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  10314. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  10315. "shasum": ""
  10316. },
  10317. "require": {
  10318. "php": ">=7.3",
  10319. "sebastian/object-reflector": "^2.0",
  10320. "sebastian/recursion-context": "^4.0"
  10321. },
  10322. "require-dev": {
  10323. "phpunit/phpunit": "^9.3"
  10324. },
  10325. "type": "library",
  10326. "extra": {
  10327. "branch-alias": {
  10328. "dev-master": "4.0-dev"
  10329. }
  10330. },
  10331. "autoload": {
  10332. "classmap": [
  10333. "src/"
  10334. ]
  10335. },
  10336. "notification-url": "https://packagist.org/downloads/",
  10337. "license": [
  10338. "BSD-3-Clause"
  10339. ],
  10340. "authors": [
  10341. {
  10342. "name": "Sebastian Bergmann",
  10343. "email": "sebastian@phpunit.de"
  10344. }
  10345. ],
  10346. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10347. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10348. "support": {
  10349. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10350. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  10351. },
  10352. "funding": [
  10353. {
  10354. "url": "https://github.com/sebastianbergmann",
  10355. "type": "github"
  10356. }
  10357. ],
  10358. "time": "2020-10-26T13:12:34+00:00"
  10359. },
  10360. {
  10361. "name": "sebastian/object-reflector",
  10362. "version": "2.0.4",
  10363. "source": {
  10364. "type": "git",
  10365. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10366. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  10367. },
  10368. "dist": {
  10369. "type": "zip",
  10370. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10371. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10372. "shasum": ""
  10373. },
  10374. "require": {
  10375. "php": ">=7.3"
  10376. },
  10377. "require-dev": {
  10378. "phpunit/phpunit": "^9.3"
  10379. },
  10380. "type": "library",
  10381. "extra": {
  10382. "branch-alias": {
  10383. "dev-master": "2.0-dev"
  10384. }
  10385. },
  10386. "autoload": {
  10387. "classmap": [
  10388. "src/"
  10389. ]
  10390. },
  10391. "notification-url": "https://packagist.org/downloads/",
  10392. "license": [
  10393. "BSD-3-Clause"
  10394. ],
  10395. "authors": [
  10396. {
  10397. "name": "Sebastian Bergmann",
  10398. "email": "sebastian@phpunit.de"
  10399. }
  10400. ],
  10401. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10402. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10403. "support": {
  10404. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10405. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  10406. },
  10407. "funding": [
  10408. {
  10409. "url": "https://github.com/sebastianbergmann",
  10410. "type": "github"
  10411. }
  10412. ],
  10413. "time": "2020-10-26T13:14:26+00:00"
  10414. },
  10415. {
  10416. "name": "sebastian/recursion-context",
  10417. "version": "4.0.5",
  10418. "source": {
  10419. "type": "git",
  10420. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10421. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  10422. },
  10423. "dist": {
  10424. "type": "zip",
  10425. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10426. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10427. "shasum": ""
  10428. },
  10429. "require": {
  10430. "php": ">=7.3"
  10431. },
  10432. "require-dev": {
  10433. "phpunit/phpunit": "^9.3"
  10434. },
  10435. "type": "library",
  10436. "extra": {
  10437. "branch-alias": {
  10438. "dev-master": "4.0-dev"
  10439. }
  10440. },
  10441. "autoload": {
  10442. "classmap": [
  10443. "src/"
  10444. ]
  10445. },
  10446. "notification-url": "https://packagist.org/downloads/",
  10447. "license": [
  10448. "BSD-3-Clause"
  10449. ],
  10450. "authors": [
  10451. {
  10452. "name": "Sebastian Bergmann",
  10453. "email": "sebastian@phpunit.de"
  10454. },
  10455. {
  10456. "name": "Jeff Welch",
  10457. "email": "whatthejeff@gmail.com"
  10458. },
  10459. {
  10460. "name": "Adam Harvey",
  10461. "email": "aharvey@php.net"
  10462. }
  10463. ],
  10464. "description": "Provides functionality to recursively process PHP variables",
  10465. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10466. "support": {
  10467. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10468. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  10469. },
  10470. "funding": [
  10471. {
  10472. "url": "https://github.com/sebastianbergmann",
  10473. "type": "github"
  10474. }
  10475. ],
  10476. "time": "2023-02-03T06:07:39+00:00"
  10477. },
  10478. {
  10479. "name": "sebastian/resource-operations",
  10480. "version": "3.0.3",
  10481. "source": {
  10482. "type": "git",
  10483. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  10484. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  10485. },
  10486. "dist": {
  10487. "type": "zip",
  10488. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  10489. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  10490. "shasum": ""
  10491. },
  10492. "require": {
  10493. "php": ">=7.3"
  10494. },
  10495. "require-dev": {
  10496. "phpunit/phpunit": "^9.0"
  10497. },
  10498. "type": "library",
  10499. "extra": {
  10500. "branch-alias": {
  10501. "dev-master": "3.0-dev"
  10502. }
  10503. },
  10504. "autoload": {
  10505. "classmap": [
  10506. "src/"
  10507. ]
  10508. },
  10509. "notification-url": "https://packagist.org/downloads/",
  10510. "license": [
  10511. "BSD-3-Clause"
  10512. ],
  10513. "authors": [
  10514. {
  10515. "name": "Sebastian Bergmann",
  10516. "email": "sebastian@phpunit.de"
  10517. }
  10518. ],
  10519. "description": "Provides a list of PHP built-in functions that operate on resources",
  10520. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  10521. "support": {
  10522. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  10523. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  10524. },
  10525. "funding": [
  10526. {
  10527. "url": "https://github.com/sebastianbergmann",
  10528. "type": "github"
  10529. }
  10530. ],
  10531. "time": "2020-09-28T06:45:17+00:00"
  10532. },
  10533. {
  10534. "name": "sebastian/type",
  10535. "version": "3.2.1",
  10536. "source": {
  10537. "type": "git",
  10538. "url": "https://github.com/sebastianbergmann/type.git",
  10539. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  10540. },
  10541. "dist": {
  10542. "type": "zip",
  10543. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10544. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10545. "shasum": ""
  10546. },
  10547. "require": {
  10548. "php": ">=7.3"
  10549. },
  10550. "require-dev": {
  10551. "phpunit/phpunit": "^9.5"
  10552. },
  10553. "type": "library",
  10554. "extra": {
  10555. "branch-alias": {
  10556. "dev-master": "3.2-dev"
  10557. }
  10558. },
  10559. "autoload": {
  10560. "classmap": [
  10561. "src/"
  10562. ]
  10563. },
  10564. "notification-url": "https://packagist.org/downloads/",
  10565. "license": [
  10566. "BSD-3-Clause"
  10567. ],
  10568. "authors": [
  10569. {
  10570. "name": "Sebastian Bergmann",
  10571. "email": "sebastian@phpunit.de",
  10572. "role": "lead"
  10573. }
  10574. ],
  10575. "description": "Collection of value objects that represent the types of the PHP type system",
  10576. "homepage": "https://github.com/sebastianbergmann/type",
  10577. "support": {
  10578. "issues": "https://github.com/sebastianbergmann/type/issues",
  10579. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  10580. },
  10581. "funding": [
  10582. {
  10583. "url": "https://github.com/sebastianbergmann",
  10584. "type": "github"
  10585. }
  10586. ],
  10587. "time": "2023-02-03T06:13:03+00:00"
  10588. },
  10589. {
  10590. "name": "sebastian/version",
  10591. "version": "3.0.2",
  10592. "source": {
  10593. "type": "git",
  10594. "url": "https://github.com/sebastianbergmann/version.git",
  10595. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  10596. },
  10597. "dist": {
  10598. "type": "zip",
  10599. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  10600. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  10601. "shasum": ""
  10602. },
  10603. "require": {
  10604. "php": ">=7.3"
  10605. },
  10606. "type": "library",
  10607. "extra": {
  10608. "branch-alias": {
  10609. "dev-master": "3.0-dev"
  10610. }
  10611. },
  10612. "autoload": {
  10613. "classmap": [
  10614. "src/"
  10615. ]
  10616. },
  10617. "notification-url": "https://packagist.org/downloads/",
  10618. "license": [
  10619. "BSD-3-Clause"
  10620. ],
  10621. "authors": [
  10622. {
  10623. "name": "Sebastian Bergmann",
  10624. "email": "sebastian@phpunit.de",
  10625. "role": "lead"
  10626. }
  10627. ],
  10628. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10629. "homepage": "https://github.com/sebastianbergmann/version",
  10630. "support": {
  10631. "issues": "https://github.com/sebastianbergmann/version/issues",
  10632. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  10633. },
  10634. "funding": [
  10635. {
  10636. "url": "https://github.com/sebastianbergmann",
  10637. "type": "github"
  10638. }
  10639. ],
  10640. "time": "2020-09-28T06:39:44+00:00"
  10641. },
  10642. {
  10643. "name": "spatie/backtrace",
  10644. "version": "1.4.0",
  10645. "source": {
  10646. "type": "git",
  10647. "url": "https://github.com/spatie/backtrace.git",
  10648. "reference": "ec4dd16476b802dbdc6b4467f84032837e316b8c"
  10649. },
  10650. "dist": {
  10651. "type": "zip",
  10652. "url": "https://api.github.com/repos/spatie/backtrace/zipball/ec4dd16476b802dbdc6b4467f84032837e316b8c",
  10653. "reference": "ec4dd16476b802dbdc6b4467f84032837e316b8c",
  10654. "shasum": ""
  10655. },
  10656. "require": {
  10657. "php": "^7.3|^8.0"
  10658. },
  10659. "require-dev": {
  10660. "ext-json": "*",
  10661. "phpunit/phpunit": "^9.3",
  10662. "spatie/phpunit-snapshot-assertions": "^4.2",
  10663. "symfony/var-dumper": "^5.1"
  10664. },
  10665. "type": "library",
  10666. "autoload": {
  10667. "psr-4": {
  10668. "Spatie\\Backtrace\\": "src"
  10669. }
  10670. },
  10671. "notification-url": "https://packagist.org/downloads/",
  10672. "license": [
  10673. "MIT"
  10674. ],
  10675. "authors": [
  10676. {
  10677. "name": "Freek Van de Herten",
  10678. "email": "freek@spatie.be",
  10679. "homepage": "https://spatie.be",
  10680. "role": "Developer"
  10681. }
  10682. ],
  10683. "description": "A better backtrace",
  10684. "homepage": "https://github.com/spatie/backtrace",
  10685. "keywords": [
  10686. "Backtrace",
  10687. "spatie"
  10688. ],
  10689. "support": {
  10690. "source": "https://github.com/spatie/backtrace/tree/1.4.0"
  10691. },
  10692. "funding": [
  10693. {
  10694. "url": "https://github.com/sponsors/spatie",
  10695. "type": "github"
  10696. },
  10697. {
  10698. "url": "https://spatie.be/open-source/support-us",
  10699. "type": "other"
  10700. }
  10701. ],
  10702. "time": "2023-03-04T08:57:24+00:00"
  10703. },
  10704. {
  10705. "name": "spatie/flare-client-php",
  10706. "version": "1.3.5",
  10707. "source": {
  10708. "type": "git",
  10709. "url": "https://github.com/spatie/flare-client-php.git",
  10710. "reference": "3e5dd5ac4928f3d2d036bd02de5eb83fd0ef1f42"
  10711. },
  10712. "dist": {
  10713. "type": "zip",
  10714. "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/3e5dd5ac4928f3d2d036bd02de5eb83fd0ef1f42",
  10715. "reference": "3e5dd5ac4928f3d2d036bd02de5eb83fd0ef1f42",
  10716. "shasum": ""
  10717. },
  10718. "require": {
  10719. "illuminate/pipeline": "^8.0|^9.0|^10.0",
  10720. "php": "^8.0",
  10721. "spatie/backtrace": "^1.2",
  10722. "symfony/http-foundation": "^5.0|^6.0",
  10723. "symfony/mime": "^5.2|^6.0",
  10724. "symfony/process": "^5.2|^6.0",
  10725. "symfony/var-dumper": "^5.2|^6.0"
  10726. },
  10727. "require-dev": {
  10728. "dms/phpunit-arraysubset-asserts": "^0.3.0",
  10729. "pestphp/pest": "^1.20",
  10730. "phpstan/extension-installer": "^1.1",
  10731. "phpstan/phpstan-deprecation-rules": "^1.0",
  10732. "phpstan/phpstan-phpunit": "^1.0",
  10733. "spatie/phpunit-snapshot-assertions": "^4.0"
  10734. },
  10735. "type": "library",
  10736. "extra": {
  10737. "branch-alias": {
  10738. "dev-main": "1.1.x-dev"
  10739. }
  10740. },
  10741. "autoload": {
  10742. "files": [
  10743. "src/helpers.php"
  10744. ],
  10745. "psr-4": {
  10746. "Spatie\\FlareClient\\": "src"
  10747. }
  10748. },
  10749. "notification-url": "https://packagist.org/downloads/",
  10750. "license": [
  10751. "MIT"
  10752. ],
  10753. "description": "Send PHP errors to Flare",
  10754. "homepage": "https://github.com/spatie/flare-client-php",
  10755. "keywords": [
  10756. "exception",
  10757. "flare",
  10758. "reporting",
  10759. "spatie"
  10760. ],
  10761. "support": {
  10762. "issues": "https://github.com/spatie/flare-client-php/issues",
  10763. "source": "https://github.com/spatie/flare-client-php/tree/1.3.5"
  10764. },
  10765. "funding": [
  10766. {
  10767. "url": "https://github.com/spatie",
  10768. "type": "github"
  10769. }
  10770. ],
  10771. "time": "2023-01-23T15:58:46+00:00"
  10772. },
  10773. {
  10774. "name": "spatie/ignition",
  10775. "version": "1.4.5",
  10776. "source": {
  10777. "type": "git",
  10778. "url": "https://github.com/spatie/ignition.git",
  10779. "reference": "cc09114b7057bd217b676f047544b33f5b6247e6"
  10780. },
  10781. "dist": {
  10782. "type": "zip",
  10783. "url": "https://api.github.com/repos/spatie/ignition/zipball/cc09114b7057bd217b676f047544b33f5b6247e6",
  10784. "reference": "cc09114b7057bd217b676f047544b33f5b6247e6",
  10785. "shasum": ""
  10786. },
  10787. "require": {
  10788. "ext-json": "*",
  10789. "ext-mbstring": "*",
  10790. "php": "^8.0",
  10791. "spatie/flare-client-php": "^1.1",
  10792. "symfony/console": "^5.4|^6.0",
  10793. "symfony/var-dumper": "^5.4|^6.0"
  10794. },
  10795. "require-dev": {
  10796. "mockery/mockery": "^1.4",
  10797. "pestphp/pest": "^1.20",
  10798. "phpstan/extension-installer": "^1.1",
  10799. "phpstan/phpstan-deprecation-rules": "^1.0",
  10800. "phpstan/phpstan-phpunit": "^1.0",
  10801. "symfony/process": "^5.4|^6.0"
  10802. },
  10803. "type": "library",
  10804. "extra": {
  10805. "branch-alias": {
  10806. "dev-main": "1.4.x-dev"
  10807. }
  10808. },
  10809. "autoload": {
  10810. "psr-4": {
  10811. "Spatie\\Ignition\\": "src"
  10812. }
  10813. },
  10814. "notification-url": "https://packagist.org/downloads/",
  10815. "license": [
  10816. "MIT"
  10817. ],
  10818. "authors": [
  10819. {
  10820. "name": "Spatie",
  10821. "email": "info@spatie.be",
  10822. "role": "Developer"
  10823. }
  10824. ],
  10825. "description": "A beautiful error page for PHP applications.",
  10826. "homepage": "https://flareapp.io/ignition",
  10827. "keywords": [
  10828. "error",
  10829. "flare",
  10830. "laravel",
  10831. "page"
  10832. ],
  10833. "support": {
  10834. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  10835. "forum": "https://twitter.com/flareappio",
  10836. "issues": "https://github.com/spatie/ignition/issues",
  10837. "source": "https://github.com/spatie/ignition"
  10838. },
  10839. "funding": [
  10840. {
  10841. "url": "https://github.com/spatie",
  10842. "type": "github"
  10843. }
  10844. ],
  10845. "time": "2023-02-28T16:49:47+00:00"
  10846. },
  10847. {
  10848. "name": "spatie/laravel-ignition",
  10849. "version": "1.6.4",
  10850. "source": {
  10851. "type": "git",
  10852. "url": "https://github.com/spatie/laravel-ignition.git",
  10853. "reference": "1a2b4bd3d48c72526c0ba417687e5c56b5cf49bc"
  10854. },
  10855. "dist": {
  10856. "type": "zip",
  10857. "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/1a2b4bd3d48c72526c0ba417687e5c56b5cf49bc",
  10858. "reference": "1a2b4bd3d48c72526c0ba417687e5c56b5cf49bc",
  10859. "shasum": ""
  10860. },
  10861. "require": {
  10862. "ext-curl": "*",
  10863. "ext-json": "*",
  10864. "ext-mbstring": "*",
  10865. "illuminate/support": "^8.77|^9.27",
  10866. "monolog/monolog": "^2.3",
  10867. "php": "^8.0",
  10868. "spatie/flare-client-php": "^1.0.1",
  10869. "spatie/ignition": "^1.4.1",
  10870. "symfony/console": "^5.0|^6.0",
  10871. "symfony/var-dumper": "^5.0|^6.0"
  10872. },
  10873. "require-dev": {
  10874. "filp/whoops": "^2.14",
  10875. "livewire/livewire": "^2.8|dev-develop",
  10876. "mockery/mockery": "^1.4",
  10877. "nunomaduro/larastan": "^1.0",
  10878. "orchestra/testbench": "^6.23|^7.0",
  10879. "pestphp/pest": "^1.20",
  10880. "phpstan/extension-installer": "^1.1",
  10881. "phpstan/phpstan-deprecation-rules": "^1.0",
  10882. "phpstan/phpstan-phpunit": "^1.0",
  10883. "spatie/laravel-ray": "^1.27"
  10884. },
  10885. "type": "library",
  10886. "extra": {
  10887. "laravel": {
  10888. "providers": [
  10889. "Spatie\\LaravelIgnition\\IgnitionServiceProvider"
  10890. ],
  10891. "aliases": {
  10892. "Flare": "Spatie\\LaravelIgnition\\Facades\\Flare"
  10893. }
  10894. }
  10895. },
  10896. "autoload": {
  10897. "files": [
  10898. "src/helpers.php"
  10899. ],
  10900. "psr-4": {
  10901. "Spatie\\LaravelIgnition\\": "src"
  10902. }
  10903. },
  10904. "notification-url": "https://packagist.org/downloads/",
  10905. "license": [
  10906. "MIT"
  10907. ],
  10908. "authors": [
  10909. {
  10910. "name": "Spatie",
  10911. "email": "info@spatie.be",
  10912. "role": "Developer"
  10913. }
  10914. ],
  10915. "description": "A beautiful error page for Laravel applications.",
  10916. "homepage": "https://flareapp.io/ignition",
  10917. "keywords": [
  10918. "error",
  10919. "flare",
  10920. "laravel",
  10921. "page"
  10922. ],
  10923. "support": {
  10924. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  10925. "forum": "https://twitter.com/flareappio",
  10926. "issues": "https://github.com/spatie/laravel-ignition/issues",
  10927. "source": "https://github.com/spatie/laravel-ignition"
  10928. },
  10929. "funding": [
  10930. {
  10931. "url": "https://github.com/spatie",
  10932. "type": "github"
  10933. }
  10934. ],
  10935. "time": "2023-01-03T19:28:04+00:00"
  10936. },
  10937. {
  10938. "name": "symfony/yaml",
  10939. "version": "v6.2.7",
  10940. "source": {
  10941. "type": "git",
  10942. "url": "https://github.com/symfony/yaml.git",
  10943. "reference": "e8e6a1d59e050525f27a1f530aa9703423cb7f57"
  10944. },
  10945. "dist": {
  10946. "type": "zip",
  10947. "url": "https://api.github.com/repos/symfony/yaml/zipball/e8e6a1d59e050525f27a1f530aa9703423cb7f57",
  10948. "reference": "e8e6a1d59e050525f27a1f530aa9703423cb7f57",
  10949. "shasum": ""
  10950. },
  10951. "require": {
  10952. "php": ">=8.1",
  10953. "symfony/polyfill-ctype": "^1.8"
  10954. },
  10955. "conflict": {
  10956. "symfony/console": "<5.4"
  10957. },
  10958. "require-dev": {
  10959. "symfony/console": "^5.4|^6.0"
  10960. },
  10961. "suggest": {
  10962. "symfony/console": "For validating YAML files using the lint command"
  10963. },
  10964. "bin": [
  10965. "Resources/bin/yaml-lint"
  10966. ],
  10967. "type": "library",
  10968. "autoload": {
  10969. "psr-4": {
  10970. "Symfony\\Component\\Yaml\\": ""
  10971. },
  10972. "exclude-from-classmap": [
  10973. "/Tests/"
  10974. ]
  10975. },
  10976. "notification-url": "https://packagist.org/downloads/",
  10977. "license": [
  10978. "MIT"
  10979. ],
  10980. "authors": [
  10981. {
  10982. "name": "Fabien Potencier",
  10983. "email": "fabien@symfony.com"
  10984. },
  10985. {
  10986. "name": "Symfony Community",
  10987. "homepage": "https://symfony.com/contributors"
  10988. }
  10989. ],
  10990. "description": "Loads and dumps YAML files",
  10991. "homepage": "https://symfony.com",
  10992. "support": {
  10993. "source": "https://github.com/symfony/yaml/tree/v6.2.7"
  10994. },
  10995. "funding": [
  10996. {
  10997. "url": "https://symfony.com/sponsor",
  10998. "type": "custom"
  10999. },
  11000. {
  11001. "url": "https://github.com/fabpot",
  11002. "type": "github"
  11003. },
  11004. {
  11005. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11006. "type": "tidelift"
  11007. }
  11008. ],
  11009. "time": "2023-02-16T09:57:23+00:00"
  11010. },
  11011. {
  11012. "name": "theseer/tokenizer",
  11013. "version": "1.2.1",
  11014. "source": {
  11015. "type": "git",
  11016. "url": "https://github.com/theseer/tokenizer.git",
  11017. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  11018. },
  11019. "dist": {
  11020. "type": "zip",
  11021. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  11022. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  11023. "shasum": ""
  11024. },
  11025. "require": {
  11026. "ext-dom": "*",
  11027. "ext-tokenizer": "*",
  11028. "ext-xmlwriter": "*",
  11029. "php": "^7.2 || ^8.0"
  11030. },
  11031. "type": "library",
  11032. "autoload": {
  11033. "classmap": [
  11034. "src/"
  11035. ]
  11036. },
  11037. "notification-url": "https://packagist.org/downloads/",
  11038. "license": [
  11039. "BSD-3-Clause"
  11040. ],
  11041. "authors": [
  11042. {
  11043. "name": "Arne Blankerts",
  11044. "email": "arne@blankerts.de",
  11045. "role": "Developer"
  11046. }
  11047. ],
  11048. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11049. "support": {
  11050. "issues": "https://github.com/theseer/tokenizer/issues",
  11051. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  11052. },
  11053. "funding": [
  11054. {
  11055. "url": "https://github.com/theseer",
  11056. "type": "github"
  11057. }
  11058. ],
  11059. "time": "2021-07-28T10:34:58+00:00"
  11060. }
  11061. ],
  11062. "aliases": [],
  11063. "minimum-stability": "dev",
  11064. "stability-flags": [],
  11065. "prefer-stable": true,
  11066. "prefer-lowest": false,
  11067. "platform": {
  11068. "php": "^8.1",
  11069. "ext-intl": "*"
  11070. },
  11071. "platform-dev": [],
  11072. "platform-overrides": {
  11073. "php": "8.1"
  11074. },
  11075. "plugin-api-version": "2.3.0"
  11076. }