composer.lock 305 KB

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