composer.lock 260 KB

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