composer.lock 298 KB

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