composer.lock 262 KB

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