composer.lock 306 KB

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