composer.lock 307 KB

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