composer.lock 309 KB

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