composer.lock 294 KB

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