composer.lock 301 KB

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