composer.lock 279 KB

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