composer.lock 279 KB

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