composer.lock 276 KB

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