composer.lock 343 KB

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