composer.lock 421 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778
  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": "0e7fb2dbb9264d385f8aa2f9c2725596",
  8. "packages": [
  9. {
  10. "name": "asm89/stack-cors",
  11. "version": "v2.0.3",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/asm89/stack-cors.git",
  15. "reference": "9cb795bf30988e8c96dd3c40623c48a877bc6714"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/9cb795bf30988e8c96dd3c40623c48a877bc6714",
  20. "reference": "9cb795bf30988e8c96dd3c40623c48a877bc6714",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^7.0|^8.0",
  25. "symfony/http-foundation": "~2.7|~3.0|~4.0|~5.0",
  26. "symfony/http-kernel": "~2.7|~3.0|~4.0|~5.0"
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "^6|^7|^8|^9",
  30. "squizlabs/php_codesniffer": "^3.5"
  31. },
  32. "type": "library",
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "2.0-dev"
  36. }
  37. },
  38. "autoload": {
  39. "psr-4": {
  40. "Asm89\\Stack\\": "src/"
  41. }
  42. },
  43. "notification-url": "https://packagist.org/downloads/",
  44. "license": [
  45. "MIT"
  46. ],
  47. "authors": [
  48. {
  49. "name": "Alexander",
  50. "email": "[email protected]"
  51. }
  52. ],
  53. "description": "Cross-origin resource sharing library and stack middleware",
  54. "homepage": "https://github.com/asm89/stack-cors",
  55. "keywords": [
  56. "cors",
  57. "stack"
  58. ],
  59. "support": {
  60. "issues": "https://github.com/asm89/stack-cors/issues",
  61. "source": "https://github.com/asm89/stack-cors/tree/v2.0.3"
  62. },
  63. "time": "2021-03-11T06:42:03+00:00"
  64. },
  65. {
  66. "name": "brick/math",
  67. "version": "0.9.2",
  68. "source": {
  69. "type": "git",
  70. "url": "https://github.com/brick/math.git",
  71. "reference": "dff976c2f3487d42c1db75a3b180e2b9f0e72ce0"
  72. },
  73. "dist": {
  74. "type": "zip",
  75. "url": "https://api.github.com/repos/brick/math/zipball/dff976c2f3487d42c1db75a3b180e2b9f0e72ce0",
  76. "reference": "dff976c2f3487d42c1db75a3b180e2b9f0e72ce0",
  77. "shasum": ""
  78. },
  79. "require": {
  80. "ext-json": "*",
  81. "php": "^7.1 || ^8.0"
  82. },
  83. "require-dev": {
  84. "php-coveralls/php-coveralls": "^2.2",
  85. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.0",
  86. "vimeo/psalm": "4.3.2"
  87. },
  88. "type": "library",
  89. "autoload": {
  90. "psr-4": {
  91. "Brick\\Math\\": "src/"
  92. }
  93. },
  94. "notification-url": "https://packagist.org/downloads/",
  95. "license": [
  96. "MIT"
  97. ],
  98. "description": "Arbitrary-precision arithmetic library",
  99. "keywords": [
  100. "Arbitrary-precision",
  101. "BigInteger",
  102. "BigRational",
  103. "arithmetic",
  104. "bigdecimal",
  105. "bignum",
  106. "brick",
  107. "math"
  108. ],
  109. "support": {
  110. "issues": "https://github.com/brick/math/issues",
  111. "source": "https://github.com/brick/math/tree/0.9.2"
  112. },
  113. "funding": [
  114. {
  115. "url": "https://tidelift.com/funding/github/packagist/brick/math",
  116. "type": "tidelift"
  117. }
  118. ],
  119. "time": "2021-01-20T22:51:39+00:00"
  120. },
  121. {
  122. "name": "composer/ca-bundle",
  123. "version": "1.2.9",
  124. "source": {
  125. "type": "git",
  126. "url": "https://github.com/composer/ca-bundle.git",
  127. "reference": "78a0e288fdcebf92aa2318a8d3656168da6ac1a5"
  128. },
  129. "dist": {
  130. "type": "zip",
  131. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/78a0e288fdcebf92aa2318a8d3656168da6ac1a5",
  132. "reference": "78a0e288fdcebf92aa2318a8d3656168da6ac1a5",
  133. "shasum": ""
  134. },
  135. "require": {
  136. "ext-openssl": "*",
  137. "ext-pcre": "*",
  138. "php": "^5.3.2 || ^7.0 || ^8.0"
  139. },
  140. "require-dev": {
  141. "phpstan/phpstan": "^0.12.55",
  142. "psr/log": "^1.0",
  143. "symfony/phpunit-bridge": "^4.2 || ^5",
  144. "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0"
  145. },
  146. "type": "library",
  147. "extra": {
  148. "branch-alias": {
  149. "dev-main": "1.x-dev"
  150. }
  151. },
  152. "autoload": {
  153. "psr-4": {
  154. "Composer\\CaBundle\\": "src"
  155. }
  156. },
  157. "notification-url": "https://packagist.org/downloads/",
  158. "license": [
  159. "MIT"
  160. ],
  161. "authors": [
  162. {
  163. "name": "Jordi Boggiano",
  164. "email": "[email protected]",
  165. "homepage": "http://seld.be"
  166. }
  167. ],
  168. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  169. "keywords": [
  170. "cabundle",
  171. "cacert",
  172. "certificate",
  173. "ssl",
  174. "tls"
  175. ],
  176. "support": {
  177. "irc": "irc://irc.freenode.org/composer",
  178. "issues": "https://github.com/composer/ca-bundle/issues",
  179. "source": "https://github.com/composer/ca-bundle/tree/1.2.9"
  180. },
  181. "funding": [
  182. {
  183. "url": "https://packagist.com",
  184. "type": "custom"
  185. },
  186. {
  187. "url": "https://github.com/composer",
  188. "type": "github"
  189. },
  190. {
  191. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  192. "type": "tidelift"
  193. }
  194. ],
  195. "time": "2021-01-12T12:10:35+00:00"
  196. },
  197. {
  198. "name": "dnoegel/php-xdg-base-dir",
  199. "version": "v0.1.1",
  200. "source": {
  201. "type": "git",
  202. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  203. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd"
  204. },
  205. "dist": {
  206. "type": "zip",
  207. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  208. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  209. "shasum": ""
  210. },
  211. "require": {
  212. "php": ">=5.3.2"
  213. },
  214. "require-dev": {
  215. "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
  216. },
  217. "type": "library",
  218. "autoload": {
  219. "psr-4": {
  220. "XdgBaseDir\\": "src/"
  221. }
  222. },
  223. "notification-url": "https://packagist.org/downloads/",
  224. "license": [
  225. "MIT"
  226. ],
  227. "description": "implementation of xdg base directory specification for php",
  228. "support": {
  229. "issues": "https://github.com/dnoegel/php-xdg-base-dir/issues",
  230. "source": "https://github.com/dnoegel/php-xdg-base-dir/tree/v0.1.1"
  231. },
  232. "time": "2019-12-04T15:06:13+00:00"
  233. },
  234. {
  235. "name": "doctrine/cache",
  236. "version": "1.10.2",
  237. "source": {
  238. "type": "git",
  239. "url": "https://github.com/doctrine/cache.git",
  240. "reference": "13e3381b25847283a91948d04640543941309727"
  241. },
  242. "dist": {
  243. "type": "zip",
  244. "url": "https://api.github.com/repos/doctrine/cache/zipball/13e3381b25847283a91948d04640543941309727",
  245. "reference": "13e3381b25847283a91948d04640543941309727",
  246. "shasum": ""
  247. },
  248. "require": {
  249. "php": "~7.1 || ^8.0"
  250. },
  251. "conflict": {
  252. "doctrine/common": ">2.2,<2.4"
  253. },
  254. "require-dev": {
  255. "alcaeus/mongo-php-adapter": "^1.1",
  256. "doctrine/coding-standard": "^6.0",
  257. "mongodb/mongodb": "^1.1",
  258. "phpunit/phpunit": "^7.0",
  259. "predis/predis": "~1.0"
  260. },
  261. "suggest": {
  262. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  263. },
  264. "type": "library",
  265. "extra": {
  266. "branch-alias": {
  267. "dev-master": "1.9.x-dev"
  268. }
  269. },
  270. "autoload": {
  271. "psr-4": {
  272. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  273. }
  274. },
  275. "notification-url": "https://packagist.org/downloads/",
  276. "license": [
  277. "MIT"
  278. ],
  279. "authors": [
  280. {
  281. "name": "Guilherme Blanco",
  282. "email": "[email protected]"
  283. },
  284. {
  285. "name": "Roman Borschel",
  286. "email": "[email protected]"
  287. },
  288. {
  289. "name": "Benjamin Eberlei",
  290. "email": "[email protected]"
  291. },
  292. {
  293. "name": "Jonathan Wage",
  294. "email": "[email protected]"
  295. },
  296. {
  297. "name": "Johannes Schmitt",
  298. "email": "[email protected]"
  299. }
  300. ],
  301. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  302. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  303. "keywords": [
  304. "abstraction",
  305. "apcu",
  306. "cache",
  307. "caching",
  308. "couchdb",
  309. "memcached",
  310. "php",
  311. "redis",
  312. "xcache"
  313. ],
  314. "support": {
  315. "issues": "https://github.com/doctrine/cache/issues",
  316. "source": "https://github.com/doctrine/cache/tree/1.10.x"
  317. },
  318. "funding": [
  319. {
  320. "url": "https://www.doctrine-project.org/sponsorship.html",
  321. "type": "custom"
  322. },
  323. {
  324. "url": "https://www.patreon.com/phpdoctrine",
  325. "type": "patreon"
  326. },
  327. {
  328. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  329. "type": "tidelift"
  330. }
  331. ],
  332. "time": "2020-07-07T18:54:01+00:00"
  333. },
  334. {
  335. "name": "doctrine/dbal",
  336. "version": "2.12.1",
  337. "source": {
  338. "type": "git",
  339. "url": "https://github.com/doctrine/dbal.git",
  340. "reference": "adce7a954a1c2f14f85e94aed90c8489af204086"
  341. },
  342. "dist": {
  343. "type": "zip",
  344. "url": "https://api.github.com/repos/doctrine/dbal/zipball/adce7a954a1c2f14f85e94aed90c8489af204086",
  345. "reference": "adce7a954a1c2f14f85e94aed90c8489af204086",
  346. "shasum": ""
  347. },
  348. "require": {
  349. "doctrine/cache": "^1.0",
  350. "doctrine/event-manager": "^1.0",
  351. "ext-pdo": "*",
  352. "php": "^7.3 || ^8"
  353. },
  354. "require-dev": {
  355. "doctrine/coding-standard": "^8.1",
  356. "jetbrains/phpstorm-stubs": "^2019.1",
  357. "phpstan/phpstan": "^0.12.40",
  358. "phpunit/phpunit": "^9.4",
  359. "psalm/plugin-phpunit": "^0.10.0",
  360. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
  361. "vimeo/psalm": "^3.17.2"
  362. },
  363. "suggest": {
  364. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  365. },
  366. "bin": [
  367. "bin/doctrine-dbal"
  368. ],
  369. "type": "library",
  370. "extra": {
  371. "branch-alias": {
  372. "dev-master": "4.0.x-dev"
  373. }
  374. },
  375. "autoload": {
  376. "psr-4": {
  377. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  378. }
  379. },
  380. "notification-url": "https://packagist.org/downloads/",
  381. "license": [
  382. "MIT"
  383. ],
  384. "authors": [
  385. {
  386. "name": "Guilherme Blanco",
  387. "email": "[email protected]"
  388. },
  389. {
  390. "name": "Roman Borschel",
  391. "email": "[email protected]"
  392. },
  393. {
  394. "name": "Benjamin Eberlei",
  395. "email": "[email protected]"
  396. },
  397. {
  398. "name": "Jonathan Wage",
  399. "email": "[email protected]"
  400. }
  401. ],
  402. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  403. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  404. "keywords": [
  405. "abstraction",
  406. "database",
  407. "db2",
  408. "dbal",
  409. "mariadb",
  410. "mssql",
  411. "mysql",
  412. "oci8",
  413. "oracle",
  414. "pdo",
  415. "pgsql",
  416. "postgresql",
  417. "queryobject",
  418. "sasql",
  419. "sql",
  420. "sqlanywhere",
  421. "sqlite",
  422. "sqlserver",
  423. "sqlsrv"
  424. ],
  425. "support": {
  426. "issues": "https://github.com/doctrine/dbal/issues",
  427. "source": "https://github.com/doctrine/dbal/tree/2.12.1"
  428. },
  429. "funding": [
  430. {
  431. "url": "https://www.doctrine-project.org/sponsorship.html",
  432. "type": "custom"
  433. },
  434. {
  435. "url": "https://www.patreon.com/phpdoctrine",
  436. "type": "patreon"
  437. },
  438. {
  439. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  440. "type": "tidelift"
  441. }
  442. ],
  443. "time": "2020-11-14T20:26:58+00:00"
  444. },
  445. {
  446. "name": "doctrine/event-manager",
  447. "version": "1.1.1",
  448. "source": {
  449. "type": "git",
  450. "url": "https://github.com/doctrine/event-manager.git",
  451. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  452. },
  453. "dist": {
  454. "type": "zip",
  455. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  456. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  457. "shasum": ""
  458. },
  459. "require": {
  460. "php": "^7.1 || ^8.0"
  461. },
  462. "conflict": {
  463. "doctrine/common": "<2.9@dev"
  464. },
  465. "require-dev": {
  466. "doctrine/coding-standard": "^6.0",
  467. "phpunit/phpunit": "^7.0"
  468. },
  469. "type": "library",
  470. "extra": {
  471. "branch-alias": {
  472. "dev-master": "1.0.x-dev"
  473. }
  474. },
  475. "autoload": {
  476. "psr-4": {
  477. "Doctrine\\Common\\": "lib/Doctrine/Common"
  478. }
  479. },
  480. "notification-url": "https://packagist.org/downloads/",
  481. "license": [
  482. "MIT"
  483. ],
  484. "authors": [
  485. {
  486. "name": "Guilherme Blanco",
  487. "email": "[email protected]"
  488. },
  489. {
  490. "name": "Roman Borschel",
  491. "email": "[email protected]"
  492. },
  493. {
  494. "name": "Benjamin Eberlei",
  495. "email": "[email protected]"
  496. },
  497. {
  498. "name": "Jonathan Wage",
  499. "email": "[email protected]"
  500. },
  501. {
  502. "name": "Johannes Schmitt",
  503. "email": "[email protected]"
  504. },
  505. {
  506. "name": "Marco Pivetta",
  507. "email": "[email protected]"
  508. }
  509. ],
  510. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  511. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  512. "keywords": [
  513. "event",
  514. "event dispatcher",
  515. "event manager",
  516. "event system",
  517. "events"
  518. ],
  519. "support": {
  520. "issues": "https://github.com/doctrine/event-manager/issues",
  521. "source": "https://github.com/doctrine/event-manager/tree/1.1.x"
  522. },
  523. "funding": [
  524. {
  525. "url": "https://www.doctrine-project.org/sponsorship.html",
  526. "type": "custom"
  527. },
  528. {
  529. "url": "https://www.patreon.com/phpdoctrine",
  530. "type": "patreon"
  531. },
  532. {
  533. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  534. "type": "tidelift"
  535. }
  536. ],
  537. "time": "2020-05-29T18:28:51+00:00"
  538. },
  539. {
  540. "name": "doctrine/inflector",
  541. "version": "2.0.3",
  542. "source": {
  543. "type": "git",
  544. "url": "https://github.com/doctrine/inflector.git",
  545. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210"
  546. },
  547. "dist": {
  548. "type": "zip",
  549. "url": "https://api.github.com/repos/doctrine/inflector/zipball/9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  550. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  551. "shasum": ""
  552. },
  553. "require": {
  554. "php": "^7.2 || ^8.0"
  555. },
  556. "require-dev": {
  557. "doctrine/coding-standard": "^7.0",
  558. "phpstan/phpstan": "^0.11",
  559. "phpstan/phpstan-phpunit": "^0.11",
  560. "phpstan/phpstan-strict-rules": "^0.11",
  561. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  562. },
  563. "type": "library",
  564. "extra": {
  565. "branch-alias": {
  566. "dev-master": "2.0.x-dev"
  567. }
  568. },
  569. "autoload": {
  570. "psr-4": {
  571. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  572. }
  573. },
  574. "notification-url": "https://packagist.org/downloads/",
  575. "license": [
  576. "MIT"
  577. ],
  578. "authors": [
  579. {
  580. "name": "Guilherme Blanco",
  581. "email": "[email protected]"
  582. },
  583. {
  584. "name": "Roman Borschel",
  585. "email": "[email protected]"
  586. },
  587. {
  588. "name": "Benjamin Eberlei",
  589. "email": "[email protected]"
  590. },
  591. {
  592. "name": "Jonathan Wage",
  593. "email": "[email protected]"
  594. },
  595. {
  596. "name": "Johannes Schmitt",
  597. "email": "[email protected]"
  598. }
  599. ],
  600. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  601. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  602. "keywords": [
  603. "inflection",
  604. "inflector",
  605. "lowercase",
  606. "manipulation",
  607. "php",
  608. "plural",
  609. "singular",
  610. "strings",
  611. "uppercase",
  612. "words"
  613. ],
  614. "support": {
  615. "issues": "https://github.com/doctrine/inflector/issues",
  616. "source": "https://github.com/doctrine/inflector/tree/2.0.x"
  617. },
  618. "funding": [
  619. {
  620. "url": "https://www.doctrine-project.org/sponsorship.html",
  621. "type": "custom"
  622. },
  623. {
  624. "url": "https://www.patreon.com/phpdoctrine",
  625. "type": "patreon"
  626. },
  627. {
  628. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  629. "type": "tidelift"
  630. }
  631. ],
  632. "time": "2020-05-29T15:13:26+00:00"
  633. },
  634. {
  635. "name": "doctrine/lexer",
  636. "version": "1.2.1",
  637. "source": {
  638. "type": "git",
  639. "url": "https://github.com/doctrine/lexer.git",
  640. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  641. },
  642. "dist": {
  643. "type": "zip",
  644. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  645. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  646. "shasum": ""
  647. },
  648. "require": {
  649. "php": "^7.2 || ^8.0"
  650. },
  651. "require-dev": {
  652. "doctrine/coding-standard": "^6.0",
  653. "phpstan/phpstan": "^0.11.8",
  654. "phpunit/phpunit": "^8.2"
  655. },
  656. "type": "library",
  657. "extra": {
  658. "branch-alias": {
  659. "dev-master": "1.2.x-dev"
  660. }
  661. },
  662. "autoload": {
  663. "psr-4": {
  664. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  665. }
  666. },
  667. "notification-url": "https://packagist.org/downloads/",
  668. "license": [
  669. "MIT"
  670. ],
  671. "authors": [
  672. {
  673. "name": "Guilherme Blanco",
  674. "email": "[email protected]"
  675. },
  676. {
  677. "name": "Roman Borschel",
  678. "email": "[email protected]"
  679. },
  680. {
  681. "name": "Johannes Schmitt",
  682. "email": "[email protected]"
  683. }
  684. ],
  685. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  686. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  687. "keywords": [
  688. "annotations",
  689. "docblock",
  690. "lexer",
  691. "parser",
  692. "php"
  693. ],
  694. "support": {
  695. "issues": "https://github.com/doctrine/lexer/issues",
  696. "source": "https://github.com/doctrine/lexer/tree/1.2.1"
  697. },
  698. "funding": [
  699. {
  700. "url": "https://www.doctrine-project.org/sponsorship.html",
  701. "type": "custom"
  702. },
  703. {
  704. "url": "https://www.patreon.com/phpdoctrine",
  705. "type": "patreon"
  706. },
  707. {
  708. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  709. "type": "tidelift"
  710. }
  711. ],
  712. "time": "2020-05-25T17:44:05+00:00"
  713. },
  714. {
  715. "name": "dragonmantank/cron-expression",
  716. "version": "v2.3.1",
  717. "source": {
  718. "type": "git",
  719. "url": "https://github.com/dragonmantank/cron-expression.git",
  720. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2"
  721. },
  722. "dist": {
  723. "type": "zip",
  724. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/65b2d8ee1f10915efb3b55597da3404f096acba2",
  725. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2",
  726. "shasum": ""
  727. },
  728. "require": {
  729. "php": "^7.0|^8.0"
  730. },
  731. "require-dev": {
  732. "phpunit/phpunit": "^6.4|^7.0|^8.0|^9.0"
  733. },
  734. "type": "library",
  735. "extra": {
  736. "branch-alias": {
  737. "dev-master": "2.3-dev"
  738. }
  739. },
  740. "autoload": {
  741. "psr-4": {
  742. "Cron\\": "src/Cron/"
  743. }
  744. },
  745. "notification-url": "https://packagist.org/downloads/",
  746. "license": [
  747. "MIT"
  748. ],
  749. "authors": [
  750. {
  751. "name": "Michael Dowling",
  752. "email": "[email protected]",
  753. "homepage": "https://github.com/mtdowling"
  754. },
  755. {
  756. "name": "Chris Tankersley",
  757. "email": "[email protected]",
  758. "homepage": "https://github.com/dragonmantank"
  759. }
  760. ],
  761. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  762. "keywords": [
  763. "cron",
  764. "schedule"
  765. ],
  766. "support": {
  767. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  768. "source": "https://github.com/dragonmantank/cron-expression/tree/v2.3.1"
  769. },
  770. "funding": [
  771. {
  772. "url": "https://github.com/dragonmantank",
  773. "type": "github"
  774. }
  775. ],
  776. "time": "2020-10-13T00:52:37+00:00"
  777. },
  778. {
  779. "name": "egulias/email-validator",
  780. "version": "2.1.25",
  781. "source": {
  782. "type": "git",
  783. "url": "https://github.com/egulias/EmailValidator.git",
  784. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  785. },
  786. "dist": {
  787. "type": "zip",
  788. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  789. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  790. "shasum": ""
  791. },
  792. "require": {
  793. "doctrine/lexer": "^1.0.1",
  794. "php": ">=5.5",
  795. "symfony/polyfill-intl-idn": "^1.10"
  796. },
  797. "require-dev": {
  798. "dominicsayers/isemail": "^3.0.7",
  799. "phpunit/phpunit": "^4.8.36|^7.5.15",
  800. "satooshi/php-coveralls": "^1.0.1"
  801. },
  802. "suggest": {
  803. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  804. },
  805. "type": "library",
  806. "extra": {
  807. "branch-alias": {
  808. "dev-master": "2.1.x-dev"
  809. }
  810. },
  811. "autoload": {
  812. "psr-4": {
  813. "Egulias\\EmailValidator\\": "src"
  814. }
  815. },
  816. "notification-url": "https://packagist.org/downloads/",
  817. "license": [
  818. "MIT"
  819. ],
  820. "authors": [
  821. {
  822. "name": "Eduardo Gulias Davis"
  823. }
  824. ],
  825. "description": "A library for validating emails against several RFCs",
  826. "homepage": "https://github.com/egulias/EmailValidator",
  827. "keywords": [
  828. "email",
  829. "emailvalidation",
  830. "emailvalidator",
  831. "validation",
  832. "validator"
  833. ],
  834. "support": {
  835. "issues": "https://github.com/egulias/EmailValidator/issues",
  836. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  837. },
  838. "funding": [
  839. {
  840. "url": "https://github.com/egulias",
  841. "type": "github"
  842. }
  843. ],
  844. "time": "2020-12-29T14:50:06+00:00"
  845. },
  846. {
  847. "name": "elfsundae/bearychat",
  848. "version": "1.3.1",
  849. "source": {
  850. "type": "git",
  851. "url": "https://github.com/ElfSundae/bearychat.git",
  852. "reference": "b3c7437d0e24463504679931a482e9b642d93024"
  853. },
  854. "dist": {
  855. "type": "zip",
  856. "url": "https://api.github.com/repos/ElfSundae/bearychat/zipball/b3c7437d0e24463504679931a482e9b642d93024",
  857. "reference": "b3c7437d0e24463504679931a482e9b642d93024",
  858. "shasum": ""
  859. },
  860. "require": {
  861. "ext-mbstring": "*",
  862. "guzzlehttp/guzzle": "~5.3|~6.0",
  863. "php": ">=5.4.0"
  864. },
  865. "require-dev": {
  866. "mockery/mockery": "0.9.*",
  867. "phpunit/phpunit": "~5.7"
  868. },
  869. "suggest": {
  870. "elfsundae/laravel-bearychat": "Required for Laravel integration.",
  871. "laravel-notification-channels/bearychat": "BearyChat notifications channel for Laravel 5."
  872. },
  873. "type": "library",
  874. "autoload": {
  875. "psr-4": {
  876. "ElfSundae\\BearyChat\\": "src/"
  877. }
  878. },
  879. "notification-url": "https://packagist.org/downloads/",
  880. "license": [
  881. "MIT"
  882. ],
  883. "authors": [
  884. {
  885. "name": "Elf Sundae",
  886. "email": "[email protected]",
  887. "homepage": "https://0x123.com"
  888. }
  889. ],
  890. "description": "An elegant way of interacting with BearyChat webhooks.",
  891. "homepage": "https://github.com/ElfSundae/bearychat",
  892. "keywords": [
  893. "bearychat",
  894. "incoming",
  895. "outgoing",
  896. "robot",
  897. "webhook"
  898. ],
  899. "support": {
  900. "issues": "https://github.com/ElfSundae/bearychat/issues",
  901. "source": "https://github.com/ElfSundae/bearychat/tree/master"
  902. },
  903. "time": "2017-09-04T05:54:05+00:00"
  904. },
  905. {
  906. "name": "elfsundae/laravel-bearychat",
  907. "version": "1.6.0",
  908. "source": {
  909. "type": "git",
  910. "url": "https://github.com/ElfSundae/laravel-bearychat.git",
  911. "reference": "417a15868e46c9d664a437532c5ddd9be3fe9b04"
  912. },
  913. "dist": {
  914. "type": "zip",
  915. "url": "https://api.github.com/repos/ElfSundae/laravel-bearychat/zipball/417a15868e46c9d664a437532c5ddd9be3fe9b04",
  916. "reference": "417a15868e46c9d664a437532c5ddd9be3fe9b04",
  917. "shasum": ""
  918. },
  919. "require": {
  920. "elfsundae/bearychat": "^1.3.1",
  921. "illuminate/support": "~5.0|~6.0|~7.0|~8.0",
  922. "php": ">=5.6.4"
  923. },
  924. "require-dev": {
  925. "mockery/mockery": "~0.9|~1.0",
  926. "phpunit/phpunit": "~5.7|~6.0|~7.0|~8.0|~9.0"
  927. },
  928. "suggest": {
  929. "laravel-notification-channels/bearychat": "BearyChat notifications channel for Laravel 5."
  930. },
  931. "type": "library",
  932. "extra": {
  933. "laravel": {
  934. "providers": [
  935. "ElfSundae\\BearyChat\\Laravel\\ServiceProvider"
  936. ],
  937. "aliases": {
  938. "BearyChat": "ElfSundae\\BearyChat\\Laravel\\BearyChat"
  939. }
  940. }
  941. },
  942. "autoload": {
  943. "psr-4": {
  944. "ElfSundae\\BearyChat\\Laravel\\": "src/"
  945. },
  946. "files": [
  947. "src/helpers.php"
  948. ]
  949. },
  950. "notification-url": "https://packagist.org/downloads/",
  951. "license": [
  952. "MIT"
  953. ],
  954. "authors": [
  955. {
  956. "name": "Elf Sundae",
  957. "email": "[email protected]",
  958. "homepage": "https://0x123.com"
  959. }
  960. ],
  961. "description": "Laravel integration for BearyChat.",
  962. "homepage": "https://github.com/ElfSundae/laravel-bearychat",
  963. "keywords": [
  964. "bearychat",
  965. "incoming",
  966. "laravel",
  967. "outgoing",
  968. "robot",
  969. "webhook"
  970. ],
  971. "support": {
  972. "issues": "https://github.com/ElfSundae/laravel-bearychat/issues",
  973. "source": "https://github.com/ElfSundae/laravel-bearychat/tree/1.6.0"
  974. },
  975. "time": "2020-09-13T14:19:31+00:00"
  976. },
  977. {
  978. "name": "ezyang/htmlpurifier",
  979. "version": "v4.13.0",
  980. "source": {
  981. "type": "git",
  982. "url": "https://github.com/ezyang/htmlpurifier.git",
  983. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75"
  984. },
  985. "dist": {
  986. "type": "zip",
  987. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  988. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  989. "shasum": ""
  990. },
  991. "require": {
  992. "php": ">=5.2"
  993. },
  994. "require-dev": {
  995. "simpletest/simpletest": "dev-master#72de02a7b80c6bb8864ef9bf66d41d2f58f826bd"
  996. },
  997. "type": "library",
  998. "autoload": {
  999. "psr-0": {
  1000. "HTMLPurifier": "library/"
  1001. },
  1002. "files": [
  1003. "library/HTMLPurifier.composer.php"
  1004. ],
  1005. "exclude-from-classmap": [
  1006. "/library/HTMLPurifier/Language/"
  1007. ]
  1008. },
  1009. "notification-url": "https://packagist.org/downloads/",
  1010. "license": [
  1011. "LGPL-2.1-or-later"
  1012. ],
  1013. "authors": [
  1014. {
  1015. "name": "Edward Z. Yang",
  1016. "email": "[email protected]",
  1017. "homepage": "http://ezyang.com"
  1018. }
  1019. ],
  1020. "description": "Standards compliant HTML filter written in PHP",
  1021. "homepage": "http://htmlpurifier.org/",
  1022. "keywords": [
  1023. "html"
  1024. ],
  1025. "support": {
  1026. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  1027. "source": "https://github.com/ezyang/htmlpurifier/tree/master"
  1028. },
  1029. "time": "2020-06-29T00:56:53+00:00"
  1030. },
  1031. {
  1032. "name": "fideloper/proxy",
  1033. "version": "4.4.1",
  1034. "source": {
  1035. "type": "git",
  1036. "url": "https://github.com/fideloper/TrustedProxy.git",
  1037. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0"
  1038. },
  1039. "dist": {
  1040. "type": "zip",
  1041. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  1042. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  1043. "shasum": ""
  1044. },
  1045. "require": {
  1046. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1047. "php": ">=5.4.0"
  1048. },
  1049. "require-dev": {
  1050. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1051. "mockery/mockery": "^1.0",
  1052. "phpunit/phpunit": "^6.0"
  1053. },
  1054. "type": "library",
  1055. "extra": {
  1056. "laravel": {
  1057. "providers": [
  1058. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  1059. ]
  1060. }
  1061. },
  1062. "autoload": {
  1063. "psr-4": {
  1064. "Fideloper\\Proxy\\": "src/"
  1065. }
  1066. },
  1067. "notification-url": "https://packagist.org/downloads/",
  1068. "license": [
  1069. "MIT"
  1070. ],
  1071. "authors": [
  1072. {
  1073. "name": "Chris Fidao",
  1074. "email": "[email protected]"
  1075. }
  1076. ],
  1077. "description": "Set trusted proxies for Laravel",
  1078. "keywords": [
  1079. "load balancing",
  1080. "proxy",
  1081. "trusted proxy"
  1082. ],
  1083. "support": {
  1084. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  1085. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.1"
  1086. },
  1087. "time": "2020-10-22T13:48:01+00:00"
  1088. },
  1089. {
  1090. "name": "fruitcake/laravel-cors",
  1091. "version": "v2.0.3",
  1092. "source": {
  1093. "type": "git",
  1094. "url": "https://github.com/fruitcake/laravel-cors.git",
  1095. "reference": "01de0fe5f71c70d1930ee9a80385f9cc28e0f63a"
  1096. },
  1097. "dist": {
  1098. "type": "zip",
  1099. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/01de0fe5f71c70d1930ee9a80385f9cc28e0f63a",
  1100. "reference": "01de0fe5f71c70d1930ee9a80385f9cc28e0f63a",
  1101. "shasum": ""
  1102. },
  1103. "require": {
  1104. "asm89/stack-cors": "^2.0.1",
  1105. "illuminate/contracts": "^6|^7|^8|^9",
  1106. "illuminate/support": "^6|^7|^8|^9",
  1107. "php": ">=7.2",
  1108. "symfony/http-foundation": "^4|^5",
  1109. "symfony/http-kernel": "^4.3.4|^5"
  1110. },
  1111. "require-dev": {
  1112. "laravel/framework": "^6|^7|^8",
  1113. "orchestra/testbench-dusk": "^4|^5|^6",
  1114. "phpunit/phpunit": "^6|^7|^8",
  1115. "squizlabs/php_codesniffer": "^3.5"
  1116. },
  1117. "type": "library",
  1118. "extra": {
  1119. "branch-alias": {
  1120. "dev-master": "2.0-dev"
  1121. },
  1122. "laravel": {
  1123. "providers": [
  1124. "Fruitcake\\Cors\\CorsServiceProvider"
  1125. ]
  1126. }
  1127. },
  1128. "autoload": {
  1129. "psr-4": {
  1130. "Fruitcake\\Cors\\": "src/"
  1131. }
  1132. },
  1133. "notification-url": "https://packagist.org/downloads/",
  1134. "license": [
  1135. "MIT"
  1136. ],
  1137. "authors": [
  1138. {
  1139. "name": "Fruitcake",
  1140. "homepage": "https://fruitcake.nl"
  1141. },
  1142. {
  1143. "name": "Barry vd. Heuvel",
  1144. "email": "[email protected]"
  1145. }
  1146. ],
  1147. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  1148. "keywords": [
  1149. "api",
  1150. "cors",
  1151. "crossdomain",
  1152. "laravel"
  1153. ],
  1154. "support": {
  1155. "issues": "https://github.com/fruitcake/laravel-cors/issues",
  1156. "source": "https://github.com/fruitcake/laravel-cors/tree/v2.0.3"
  1157. },
  1158. "funding": [
  1159. {
  1160. "url": "https://github.com/barryvdh",
  1161. "type": "github"
  1162. }
  1163. ],
  1164. "time": "2020-10-22T13:57:20+00:00"
  1165. },
  1166. {
  1167. "name": "geoip2/geoip2",
  1168. "version": "v2.11.0",
  1169. "source": {
  1170. "type": "git",
  1171. "url": "https://github.com/maxmind/GeoIP2-php.git",
  1172. "reference": "d01be5894a5c1a3381c58c9b1795cd07f96c30f7"
  1173. },
  1174. "dist": {
  1175. "type": "zip",
  1176. "url": "https://api.github.com/repos/maxmind/GeoIP2-php/zipball/d01be5894a5c1a3381c58c9b1795cd07f96c30f7",
  1177. "reference": "d01be5894a5c1a3381c58c9b1795cd07f96c30f7",
  1178. "shasum": ""
  1179. },
  1180. "require": {
  1181. "ext-json": "*",
  1182. "maxmind-db/reader": "~1.8",
  1183. "maxmind/web-service-common": "~0.8",
  1184. "php": ">=7.2"
  1185. },
  1186. "require-dev": {
  1187. "friendsofphp/php-cs-fixer": "2.*",
  1188. "phpunit/phpunit": "^8.0 || ^9.0",
  1189. "squizlabs/php_codesniffer": "3.*"
  1190. },
  1191. "type": "library",
  1192. "autoload": {
  1193. "psr-4": {
  1194. "GeoIp2\\": "src"
  1195. }
  1196. },
  1197. "notification-url": "https://packagist.org/downloads/",
  1198. "license": [
  1199. "Apache-2.0"
  1200. ],
  1201. "authors": [
  1202. {
  1203. "name": "Gregory J. Oschwald",
  1204. "email": "[email protected]",
  1205. "homepage": "https://www.maxmind.com/"
  1206. }
  1207. ],
  1208. "description": "MaxMind GeoIP2 PHP API",
  1209. "homepage": "https://github.com/maxmind/GeoIP2-php",
  1210. "keywords": [
  1211. "IP",
  1212. "geoip",
  1213. "geoip2",
  1214. "geolocation",
  1215. "maxmind"
  1216. ],
  1217. "support": {
  1218. "issues": "https://github.com/maxmind/GeoIP2-php/issues",
  1219. "source": "https://github.com/maxmind/GeoIP2-php/tree/v2.11.0"
  1220. },
  1221. "time": "2020-10-01T18:48:34+00:00"
  1222. },
  1223. {
  1224. "name": "guzzlehttp/guzzle",
  1225. "version": "6.5.5",
  1226. "source": {
  1227. "type": "git",
  1228. "url": "https://github.com/guzzle/guzzle.git",
  1229. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
  1230. },
  1231. "dist": {
  1232. "type": "zip",
  1233. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1234. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1235. "shasum": ""
  1236. },
  1237. "require": {
  1238. "ext-json": "*",
  1239. "guzzlehttp/promises": "^1.0",
  1240. "guzzlehttp/psr7": "^1.6.1",
  1241. "php": ">=5.5",
  1242. "symfony/polyfill-intl-idn": "^1.17.0"
  1243. },
  1244. "require-dev": {
  1245. "ext-curl": "*",
  1246. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  1247. "psr/log": "^1.1"
  1248. },
  1249. "suggest": {
  1250. "psr/log": "Required for using the Log middleware"
  1251. },
  1252. "type": "library",
  1253. "extra": {
  1254. "branch-alias": {
  1255. "dev-master": "6.5-dev"
  1256. }
  1257. },
  1258. "autoload": {
  1259. "psr-4": {
  1260. "GuzzleHttp\\": "src/"
  1261. },
  1262. "files": [
  1263. "src/functions_include.php"
  1264. ]
  1265. },
  1266. "notification-url": "https://packagist.org/downloads/",
  1267. "license": [
  1268. "MIT"
  1269. ],
  1270. "authors": [
  1271. {
  1272. "name": "Michael Dowling",
  1273. "email": "[email protected]",
  1274. "homepage": "https://github.com/mtdowling"
  1275. }
  1276. ],
  1277. "description": "Guzzle is a PHP HTTP client library",
  1278. "homepage": "http://guzzlephp.org/",
  1279. "keywords": [
  1280. "client",
  1281. "curl",
  1282. "framework",
  1283. "http",
  1284. "http client",
  1285. "rest",
  1286. "web service"
  1287. ],
  1288. "support": {
  1289. "issues": "https://github.com/guzzle/guzzle/issues",
  1290. "source": "https://github.com/guzzle/guzzle/tree/6.5"
  1291. },
  1292. "time": "2020-06-16T21:01:06+00:00"
  1293. },
  1294. {
  1295. "name": "guzzlehttp/promises",
  1296. "version": "1.4.1",
  1297. "source": {
  1298. "type": "git",
  1299. "url": "https://github.com/guzzle/promises.git",
  1300. "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d"
  1301. },
  1302. "dist": {
  1303. "type": "zip",
  1304. "url": "https://api.github.com/repos/guzzle/promises/zipball/8e7d04f1f6450fef59366c399cfad4b9383aa30d",
  1305. "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d",
  1306. "shasum": ""
  1307. },
  1308. "require": {
  1309. "php": ">=5.5"
  1310. },
  1311. "require-dev": {
  1312. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  1313. },
  1314. "type": "library",
  1315. "extra": {
  1316. "branch-alias": {
  1317. "dev-master": "1.4-dev"
  1318. }
  1319. },
  1320. "autoload": {
  1321. "psr-4": {
  1322. "GuzzleHttp\\Promise\\": "src/"
  1323. },
  1324. "files": [
  1325. "src/functions_include.php"
  1326. ]
  1327. },
  1328. "notification-url": "https://packagist.org/downloads/",
  1329. "license": [
  1330. "MIT"
  1331. ],
  1332. "authors": [
  1333. {
  1334. "name": "Michael Dowling",
  1335. "email": "[email protected]",
  1336. "homepage": "https://github.com/mtdowling"
  1337. }
  1338. ],
  1339. "description": "Guzzle promises library",
  1340. "keywords": [
  1341. "promise"
  1342. ],
  1343. "support": {
  1344. "issues": "https://github.com/guzzle/promises/issues",
  1345. "source": "https://github.com/guzzle/promises/tree/1.4.1"
  1346. },
  1347. "time": "2021-03-07T09:25:29+00:00"
  1348. },
  1349. {
  1350. "name": "guzzlehttp/psr7",
  1351. "version": "1.7.0",
  1352. "source": {
  1353. "type": "git",
  1354. "url": "https://github.com/guzzle/psr7.git",
  1355. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3"
  1356. },
  1357. "dist": {
  1358. "type": "zip",
  1359. "url": "https://api.github.com/repos/guzzle/psr7/zipball/53330f47520498c0ae1f61f7e2c90f55690c06a3",
  1360. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3",
  1361. "shasum": ""
  1362. },
  1363. "require": {
  1364. "php": ">=5.4.0",
  1365. "psr/http-message": "~1.0",
  1366. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  1367. },
  1368. "provide": {
  1369. "psr/http-message-implementation": "1.0"
  1370. },
  1371. "require-dev": {
  1372. "ext-zlib": "*",
  1373. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  1374. },
  1375. "suggest": {
  1376. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1377. },
  1378. "type": "library",
  1379. "extra": {
  1380. "branch-alias": {
  1381. "dev-master": "1.7-dev"
  1382. }
  1383. },
  1384. "autoload": {
  1385. "psr-4": {
  1386. "GuzzleHttp\\Psr7\\": "src/"
  1387. },
  1388. "files": [
  1389. "src/functions_include.php"
  1390. ]
  1391. },
  1392. "notification-url": "https://packagist.org/downloads/",
  1393. "license": [
  1394. "MIT"
  1395. ],
  1396. "authors": [
  1397. {
  1398. "name": "Michael Dowling",
  1399. "email": "[email protected]",
  1400. "homepage": "https://github.com/mtdowling"
  1401. },
  1402. {
  1403. "name": "Tobias Schultze",
  1404. "homepage": "https://github.com/Tobion"
  1405. }
  1406. ],
  1407. "description": "PSR-7 message implementation that also provides common utility methods",
  1408. "keywords": [
  1409. "http",
  1410. "message",
  1411. "psr-7",
  1412. "request",
  1413. "response",
  1414. "stream",
  1415. "uri",
  1416. "url"
  1417. ],
  1418. "support": {
  1419. "issues": "https://github.com/guzzle/psr7/issues",
  1420. "source": "https://github.com/guzzle/psr7/tree/1.7.0"
  1421. },
  1422. "time": "2020-09-30T07:37:11+00:00"
  1423. },
  1424. {
  1425. "name": "hashids/hashids",
  1426. "version": "4.1.0",
  1427. "source": {
  1428. "type": "git",
  1429. "url": "https://github.com/vinkla/hashids.git",
  1430. "reference": "8cab111f78e0bd9c76953b082919fc9e251761be"
  1431. },
  1432. "dist": {
  1433. "type": "zip",
  1434. "url": "https://api.github.com/repos/vinkla/hashids/zipball/8cab111f78e0bd9c76953b082919fc9e251761be",
  1435. "reference": "8cab111f78e0bd9c76953b082919fc9e251761be",
  1436. "shasum": ""
  1437. },
  1438. "require": {
  1439. "ext-mbstring": "*",
  1440. "php": "^7.2 || ^8.0"
  1441. },
  1442. "require-dev": {
  1443. "phpunit/phpunit": "^8.0 || ^9.4",
  1444. "squizlabs/php_codesniffer": "^3.5"
  1445. },
  1446. "suggest": {
  1447. "ext-bcmath": "Required to use BC Math arbitrary precision mathematics (*).",
  1448. "ext-gmp": "Required to use GNU multiple precision mathematics (*)."
  1449. },
  1450. "type": "library",
  1451. "extra": {
  1452. "branch-alias": {
  1453. "dev-master": "4.1-dev"
  1454. }
  1455. },
  1456. "autoload": {
  1457. "psr-4": {
  1458. "Hashids\\": "src/"
  1459. }
  1460. },
  1461. "notification-url": "https://packagist.org/downloads/",
  1462. "license": [
  1463. "MIT"
  1464. ],
  1465. "authors": [
  1466. {
  1467. "name": "Ivan Akimov",
  1468. "email": "[email protected]"
  1469. },
  1470. {
  1471. "name": "Vincent Klaiber",
  1472. "email": "[email protected]"
  1473. }
  1474. ],
  1475. "description": "Generate short, unique, non-sequential ids (like YouTube and Bitly) from numbers",
  1476. "homepage": "https://hashids.org/php",
  1477. "keywords": [
  1478. "bitly",
  1479. "decode",
  1480. "encode",
  1481. "hash",
  1482. "hashid",
  1483. "hashids",
  1484. "ids",
  1485. "obfuscate",
  1486. "youtube"
  1487. ],
  1488. "support": {
  1489. "issues": "https://github.com/vinkla/hashids/issues",
  1490. "source": "https://github.com/vinkla/hashids/tree/4.1.0"
  1491. },
  1492. "time": "2020-11-26T19:24:33+00:00"
  1493. },
  1494. {
  1495. "name": "intervention/image",
  1496. "version": "2.5.1",
  1497. "source": {
  1498. "type": "git",
  1499. "url": "https://github.com/Intervention/image.git",
  1500. "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e"
  1501. },
  1502. "dist": {
  1503. "type": "zip",
  1504. "url": "https://api.github.com/repos/Intervention/image/zipball/abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
  1505. "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
  1506. "shasum": ""
  1507. },
  1508. "require": {
  1509. "ext-fileinfo": "*",
  1510. "guzzlehttp/psr7": "~1.1",
  1511. "php": ">=5.4.0"
  1512. },
  1513. "require-dev": {
  1514. "mockery/mockery": "~0.9.2",
  1515. "phpunit/phpunit": "^4.8 || ^5.7"
  1516. },
  1517. "suggest": {
  1518. "ext-gd": "to use GD library based image processing.",
  1519. "ext-imagick": "to use Imagick based image processing.",
  1520. "intervention/imagecache": "Caching extension for the Intervention Image library"
  1521. },
  1522. "type": "library",
  1523. "extra": {
  1524. "branch-alias": {
  1525. "dev-master": "2.4-dev"
  1526. },
  1527. "laravel": {
  1528. "providers": [
  1529. "Intervention\\Image\\ImageServiceProvider"
  1530. ],
  1531. "aliases": {
  1532. "Image": "Intervention\\Image\\Facades\\Image"
  1533. }
  1534. }
  1535. },
  1536. "autoload": {
  1537. "psr-4": {
  1538. "Intervention\\Image\\": "src/Intervention/Image"
  1539. }
  1540. },
  1541. "notification-url": "https://packagist.org/downloads/",
  1542. "license": [
  1543. "MIT"
  1544. ],
  1545. "authors": [
  1546. {
  1547. "name": "Oliver Vogel",
  1548. "email": "[email protected]",
  1549. "homepage": "http://olivervogel.com/"
  1550. }
  1551. ],
  1552. "description": "Image handling and manipulation library with support for Laravel integration",
  1553. "homepage": "http://image.intervention.io/",
  1554. "keywords": [
  1555. "gd",
  1556. "image",
  1557. "imagick",
  1558. "laravel",
  1559. "thumbnail",
  1560. "watermark"
  1561. ],
  1562. "support": {
  1563. "issues": "https://github.com/Intervention/image/issues",
  1564. "source": "https://github.com/Intervention/image/tree/master"
  1565. },
  1566. "time": "2019-11-02T09:15:47+00:00"
  1567. },
  1568. {
  1569. "name": "ip2location/ip2location-laravel",
  1570. "version": "1.2.0",
  1571. "source": {
  1572. "type": "git",
  1573. "url": "https://github.com/ip2location/ip2location-laravel.git",
  1574. "reference": "56b0da66e12982ef6db0e2fe3b231659c5e76a9b"
  1575. },
  1576. "dist": {
  1577. "type": "zip",
  1578. "url": "https://api.github.com/repos/ip2location/ip2location-laravel/zipball/56b0da66e12982ef6db0e2fe3b231659c5e76a9b",
  1579. "reference": "56b0da66e12982ef6db0e2fe3b231659c5e76a9b",
  1580. "shasum": ""
  1581. },
  1582. "require": {
  1583. "ip2location/ip2location-php": "8.*",
  1584. "php": ">=5.4"
  1585. },
  1586. "type": "library",
  1587. "autoload": {
  1588. "psr-4": {
  1589. "Ip2location\\IP2LocationLaravel\\": "src/"
  1590. }
  1591. },
  1592. "notification-url": "https://packagist.org/downloads/",
  1593. "license": [
  1594. "MIT"
  1595. ],
  1596. "authors": [
  1597. {
  1598. "name": "IP2Location",
  1599. "email": "[email protected]"
  1600. }
  1601. ],
  1602. "description": "Lookup for visitor's IP information, such as country, region, city, coordinates, zip code, time zone, ISP, domain name, connection type, area code, weather, MCC, MNC, mobile brand name, elevation and usage type.",
  1603. "keywords": [
  1604. "geolocation",
  1605. "ip2location",
  1606. "laravel",
  1607. "laravel 5",
  1608. "laravel 7"
  1609. ],
  1610. "support": {
  1611. "issues": "https://github.com/ip2location/ip2location-laravel/issues",
  1612. "source": "https://github.com/ip2location/ip2location-laravel/tree/master"
  1613. },
  1614. "time": "2020-08-27T07:47:55+00:00"
  1615. },
  1616. {
  1617. "name": "ip2location/ip2location-php",
  1618. "version": "8.3.0",
  1619. "source": {
  1620. "type": "git",
  1621. "url": "https://github.com/chrislim2888/IP2Location-PHP-Module.git",
  1622. "reference": "4c501aa1f666ae85eab84d4df9d19399f2e6ce15"
  1623. },
  1624. "dist": {
  1625. "type": "zip",
  1626. "url": "https://api.github.com/repos/chrislim2888/IP2Location-PHP-Module/zipball/4c501aa1f666ae85eab84d4df9d19399f2e6ce15",
  1627. "reference": "4c501aa1f666ae85eab84d4df9d19399f2e6ce15",
  1628. "shasum": ""
  1629. },
  1630. "type": "library",
  1631. "autoload": {
  1632. "classmap": [
  1633. "IP2Location.php"
  1634. ]
  1635. },
  1636. "notification-url": "https://packagist.org/downloads/",
  1637. "license": [
  1638. "MIT"
  1639. ],
  1640. "authors": [
  1641. {
  1642. "name": "IP2Location",
  1643. "email": "[email protected]",
  1644. "homepage": "http://www.ip2location.com"
  1645. }
  1646. ],
  1647. "description": "[Official Release] IP2Location PHP API to get location info from IPv4 and IPv6 address.",
  1648. "homepage": "http://www.ip2location.com",
  1649. "keywords": [
  1650. "geolocation",
  1651. "ip2location",
  1652. "ip2locationlite"
  1653. ],
  1654. "support": {
  1655. "issues": "https://github.com/chrislim2888/IP2Location-PHP-Module/issues",
  1656. "source": "https://github.com/chrislim2888/IP2Location-PHP-Module/tree/8.3.0"
  1657. },
  1658. "time": "2020-11-23T04:30:39+00:00"
  1659. },
  1660. {
  1661. "name": "ipip/db",
  1662. "version": "v1.0.0",
  1663. "source": {
  1664. "type": "git",
  1665. "url": "https://github.com/ipipdotnet/ipdb-php.git",
  1666. "reference": "af42bf28b37dc76beccd7bbe2b0b0572e21f42cf"
  1667. },
  1668. "dist": {
  1669. "type": "zip",
  1670. "url": "https://api.github.com/repos/ipipdotnet/ipdb-php/zipball/af42bf28b37dc76beccd7bbe2b0b0572e21f42cf",
  1671. "reference": "af42bf28b37dc76beccd7bbe2b0b0572e21f42cf",
  1672. "shasum": ""
  1673. },
  1674. "require": {
  1675. "php": ">=5.4.0"
  1676. },
  1677. "type": "library",
  1678. "autoload": {
  1679. "psr-4": {
  1680. "ipip\\db\\": "src/ipip/db/"
  1681. }
  1682. },
  1683. "notification-url": "https://packagist.org/downloads/",
  1684. "license": [
  1685. "Apache-2.0"
  1686. ],
  1687. "authors": [
  1688. {
  1689. "name": "IPIP.net",
  1690. "email": "[email protected]",
  1691. "homepage": "https://www.ipip.net"
  1692. }
  1693. ],
  1694. "description": "IPIP.net officially supported IP database ipdb format parsing library",
  1695. "homepage": "https://www.ipip.net",
  1696. "keywords": [
  1697. "IP",
  1698. "geo",
  1699. "geoip",
  1700. "geolocation",
  1701. "ipdb",
  1702. "ipip.net"
  1703. ],
  1704. "support": {
  1705. "issues": "https://github.com/ipipdotnet/ipdb-php/issues",
  1706. "source": "https://github.com/ipipdotnet/ipdb-php/tree/v1.0.0"
  1707. },
  1708. "time": "2018-11-01T08:07:04+00:00"
  1709. },
  1710. {
  1711. "name": "jaybizzle/crawler-detect",
  1712. "version": "v1.2.105",
  1713. "source": {
  1714. "type": "git",
  1715. "url": "https://github.com/JayBizzle/Crawler-Detect.git",
  1716. "reference": "719c1ed49224857800c3dc40838b6b761d046105"
  1717. },
  1718. "dist": {
  1719. "type": "zip",
  1720. "url": "https://api.github.com/repos/JayBizzle/Crawler-Detect/zipball/719c1ed49224857800c3dc40838b6b761d046105",
  1721. "reference": "719c1ed49224857800c3dc40838b6b761d046105",
  1722. "shasum": ""
  1723. },
  1724. "require": {
  1725. "php": ">=5.3.0"
  1726. },
  1727. "require-dev": {
  1728. "phpunit/phpunit": "^4.8|^5.5|^6.5|^9.4"
  1729. },
  1730. "type": "library",
  1731. "autoload": {
  1732. "psr-4": {
  1733. "Jaybizzle\\CrawlerDetect\\": "src/"
  1734. }
  1735. },
  1736. "notification-url": "https://packagist.org/downloads/",
  1737. "license": [
  1738. "MIT"
  1739. ],
  1740. "authors": [
  1741. {
  1742. "name": "Mark Beech",
  1743. "email": "[email protected]",
  1744. "role": "Developer"
  1745. }
  1746. ],
  1747. "description": "CrawlerDetect is a PHP class for detecting bots/crawlers/spiders via the user agent",
  1748. "homepage": "https://github.com/JayBizzle/Crawler-Detect/",
  1749. "keywords": [
  1750. "crawler",
  1751. "crawler detect",
  1752. "crawler detector",
  1753. "crawlerdetect",
  1754. "php crawler detect"
  1755. ],
  1756. "support": {
  1757. "issues": "https://github.com/JayBizzle/Crawler-Detect/issues",
  1758. "source": "https://github.com/JayBizzle/Crawler-Detect/tree/v1.2.105"
  1759. },
  1760. "time": "2021-03-03T20:55:48+00:00"
  1761. },
  1762. {
  1763. "name": "jenssegers/agent",
  1764. "version": "v2.6.4",
  1765. "source": {
  1766. "type": "git",
  1767. "url": "https://github.com/jenssegers/agent.git",
  1768. "reference": "daa11c43729510b3700bc34d414664966b03bffe"
  1769. },
  1770. "dist": {
  1771. "type": "zip",
  1772. "url": "https://api.github.com/repos/jenssegers/agent/zipball/daa11c43729510b3700bc34d414664966b03bffe",
  1773. "reference": "daa11c43729510b3700bc34d414664966b03bffe",
  1774. "shasum": ""
  1775. },
  1776. "require": {
  1777. "jaybizzle/crawler-detect": "^1.2",
  1778. "mobiledetect/mobiledetectlib": "^2.7.6",
  1779. "php": ">=5.6"
  1780. },
  1781. "require-dev": {
  1782. "php-coveralls/php-coveralls": "^2.1",
  1783. "phpunit/phpunit": "^5.0|^6.0|^7.0"
  1784. },
  1785. "suggest": {
  1786. "illuminate/support": "Required for laravel service providers"
  1787. },
  1788. "type": "library",
  1789. "extra": {
  1790. "branch-alias": {
  1791. "dev-master": "3.0-dev"
  1792. },
  1793. "laravel": {
  1794. "providers": [
  1795. "Jenssegers\\Agent\\AgentServiceProvider"
  1796. ],
  1797. "aliases": {
  1798. "Agent": "Jenssegers\\Agent\\Facades\\Agent"
  1799. }
  1800. }
  1801. },
  1802. "autoload": {
  1803. "psr-4": {
  1804. "Jenssegers\\Agent\\": "src/"
  1805. }
  1806. },
  1807. "notification-url": "https://packagist.org/downloads/",
  1808. "license": [
  1809. "MIT"
  1810. ],
  1811. "authors": [
  1812. {
  1813. "name": "Jens Segers",
  1814. "homepage": "https://jenssegers.com"
  1815. }
  1816. ],
  1817. "description": "Desktop/mobile user agent parser with support for Laravel, based on Mobiledetect",
  1818. "homepage": "https://github.com/jenssegers/agent",
  1819. "keywords": [
  1820. "Agent",
  1821. "browser",
  1822. "desktop",
  1823. "laravel",
  1824. "mobile",
  1825. "platform",
  1826. "user agent",
  1827. "useragent"
  1828. ],
  1829. "support": {
  1830. "issues": "https://github.com/jenssegers/agent/issues",
  1831. "source": "https://github.com/jenssegers/agent/tree/v2.6.4"
  1832. },
  1833. "funding": [
  1834. {
  1835. "url": "https://github.com/jenssegers",
  1836. "type": "github"
  1837. },
  1838. {
  1839. "url": "https://tidelift.com/funding/github/packagist/jenssegers/agent",
  1840. "type": "tidelift"
  1841. }
  1842. ],
  1843. "time": "2020-06-13T08:05:20+00:00"
  1844. },
  1845. {
  1846. "name": "laravel-lang/lang",
  1847. "version": "7.0.9",
  1848. "source": {
  1849. "type": "git",
  1850. "url": "https://github.com/Laravel-Lang/lang.git",
  1851. "reference": "679a65755db37b35acd36a5e0ca51e055815a00a"
  1852. },
  1853. "dist": {
  1854. "type": "zip",
  1855. "url": "https://api.github.com/repos/Laravel-Lang/lang/zipball/679a65755db37b35acd36a5e0ca51e055815a00a",
  1856. "reference": "679a65755db37b35acd36a5e0ca51e055815a00a",
  1857. "shasum": ""
  1858. },
  1859. "require": {
  1860. "ext-json": "*"
  1861. },
  1862. "suggest": {
  1863. "andrey-helldar/laravel-lang-publisher": "Easy installation and update of translation files for your project",
  1864. "arcanedev/laravel-lang": "Translations manager and checker for Laravel 5",
  1865. "overtrue/laravel-lang": "Command to add languages in your project"
  1866. },
  1867. "type": "library",
  1868. "notification-url": "https://packagist.org/downloads/",
  1869. "license": [
  1870. "MIT"
  1871. ],
  1872. "authors": [
  1873. {
  1874. "name": "Laravel-Lang Team"
  1875. }
  1876. ],
  1877. "description": "Languages for Laravel",
  1878. "keywords": [
  1879. "lang",
  1880. "languages",
  1881. "laravel",
  1882. "lpm"
  1883. ],
  1884. "support": {
  1885. "issues": "https://github.com/Laravel-Lang/lang/issues",
  1886. "source": "https://github.com/Laravel-Lang/lang/tree/7.0.9"
  1887. },
  1888. "time": "2020-11-30T20:35:41+00:00"
  1889. },
  1890. {
  1891. "name": "laravel-notification-channels/bearychat",
  1892. "version": "1.4.0",
  1893. "source": {
  1894. "type": "git",
  1895. "url": "https://github.com/laravel-notification-channels/bearychat.git",
  1896. "reference": "b04ac9bad37cd08cf177a342b3e2b831c87b2a96"
  1897. },
  1898. "dist": {
  1899. "type": "zip",
  1900. "url": "https://api.github.com/repos/laravel-notification-channels/bearychat/zipball/b04ac9bad37cd08cf177a342b3e2b831c87b2a96",
  1901. "reference": "b04ac9bad37cd08cf177a342b3e2b831c87b2a96",
  1902. "shasum": ""
  1903. },
  1904. "require": {
  1905. "elfsundae/laravel-bearychat": "~1.4",
  1906. "illuminate/notifications": "~5.3|~6.0|~7.0|~8.0",
  1907. "php": ">=5.6.4"
  1908. },
  1909. "require-dev": {
  1910. "mockery/mockery": "~1.0",
  1911. "phpunit/phpunit": "~5.7|~6.0|~7.0|~8.0"
  1912. },
  1913. "type": "library",
  1914. "autoload": {
  1915. "psr-4": {
  1916. "NotificationChannels\\BearyChat\\": "src"
  1917. }
  1918. },
  1919. "notification-url": "https://packagist.org/downloads/",
  1920. "license": [
  1921. "MIT"
  1922. ],
  1923. "authors": [
  1924. {
  1925. "name": "Elf Sundae",
  1926. "email": "[email protected]",
  1927. "homepage": "https://github.com/ElfSundae",
  1928. "role": "Developer"
  1929. }
  1930. ],
  1931. "description": "BearyChat notifications channel for Laravel.",
  1932. "homepage": "https://github.com/laravel-notification-channels/bearychat",
  1933. "support": {
  1934. "issues": "https://github.com/laravel-notification-channels/bearychat/issues",
  1935. "source": "https://github.com/laravel-notification-channels/bearychat/tree/1.4.0"
  1936. },
  1937. "time": "2020-09-13T14:32:13+00:00"
  1938. },
  1939. {
  1940. "name": "laravel-notification-channels/telegram",
  1941. "version": "0.5.1",
  1942. "source": {
  1943. "type": "git",
  1944. "url": "https://github.com/laravel-notification-channels/telegram.git",
  1945. "reference": "2cedb10b78219cc91a285eaa5a3de0db405cc207"
  1946. },
  1947. "dist": {
  1948. "type": "zip",
  1949. "url": "https://api.github.com/repos/laravel-notification-channels/telegram/zipball/2cedb10b78219cc91a285eaa5a3de0db405cc207",
  1950. "reference": "2cedb10b78219cc91a285eaa5a3de0db405cc207",
  1951. "shasum": ""
  1952. },
  1953. "require": {
  1954. "ext-json": "*",
  1955. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  1956. "illuminate/notifications": "^5.5 || ^6.0 || ^7.0 || ^8.0",
  1957. "illuminate/support": "^5.5 || ^6.0 || ^7.0 || ^8.0",
  1958. "php": "^7.1 || ^8.0"
  1959. },
  1960. "require-dev": {
  1961. "mockery/mockery": "^1.3",
  1962. "phpunit/phpunit": "^7.0 || ^8.0"
  1963. },
  1964. "type": "library",
  1965. "extra": {
  1966. "laravel": {
  1967. "providers": [
  1968. "NotificationChannels\\Telegram\\TelegramServiceProvider"
  1969. ]
  1970. }
  1971. },
  1972. "autoload": {
  1973. "psr-4": {
  1974. "NotificationChannels\\Telegram\\": "src"
  1975. }
  1976. },
  1977. "notification-url": "https://packagist.org/downloads/",
  1978. "license": [
  1979. "MIT"
  1980. ],
  1981. "authors": [
  1982. {
  1983. "name": "Irfaq Syed",
  1984. "email": "[email protected]",
  1985. "homepage": "https://lukonet.com",
  1986. "role": "Developer"
  1987. }
  1988. ],
  1989. "description": "Telegram Notifications Channel for Laravel",
  1990. "homepage": "https://github.com/laravel-notification-channels/telegram",
  1991. "keywords": [
  1992. "laravel",
  1993. "notification",
  1994. "telegram",
  1995. "telegram notification",
  1996. "telegram notifications channel"
  1997. ],
  1998. "support": {
  1999. "issues": "https://github.com/laravel-notification-channels/telegram/issues",
  2000. "source": "https://github.com/laravel-notification-channels/telegram/tree/0.5.1"
  2001. },
  2002. "time": "2020-12-06T19:00:18+00:00"
  2003. },
  2004. {
  2005. "name": "laravel/framework",
  2006. "version": "v7.30.4",
  2007. "source": {
  2008. "type": "git",
  2009. "url": "https://github.com/laravel/framework.git",
  2010. "reference": "9dd38140dc2924daa1a020a3d7a45f9ceff03df3"
  2011. },
  2012. "dist": {
  2013. "type": "zip",
  2014. "url": "https://api.github.com/repos/laravel/framework/zipball/9dd38140dc2924daa1a020a3d7a45f9ceff03df3",
  2015. "reference": "9dd38140dc2924daa1a020a3d7a45f9ceff03df3",
  2016. "shasum": ""
  2017. },
  2018. "require": {
  2019. "doctrine/inflector": "^1.4|^2.0",
  2020. "dragonmantank/cron-expression": "^2.3.1",
  2021. "egulias/email-validator": "^2.1.10",
  2022. "ext-json": "*",
  2023. "ext-mbstring": "*",
  2024. "ext-openssl": "*",
  2025. "league/commonmark": "^1.3",
  2026. "league/flysystem": "^1.1",
  2027. "monolog/monolog": "^2.0",
  2028. "nesbot/carbon": "^2.31",
  2029. "opis/closure": "^3.6",
  2030. "php": "^7.2.5|^8.0",
  2031. "psr/container": "^1.0",
  2032. "psr/simple-cache": "^1.0",
  2033. "ramsey/uuid": "^3.7|^4.0",
  2034. "swiftmailer/swiftmailer": "^6.0",
  2035. "symfony/console": "^5.0",
  2036. "symfony/error-handler": "^5.0",
  2037. "symfony/finder": "^5.0",
  2038. "symfony/http-foundation": "^5.0",
  2039. "symfony/http-kernel": "^5.0",
  2040. "symfony/mime": "^5.0",
  2041. "symfony/polyfill-php73": "^1.17",
  2042. "symfony/process": "^5.0",
  2043. "symfony/routing": "^5.0",
  2044. "symfony/var-dumper": "^5.0",
  2045. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  2046. "vlucas/phpdotenv": "^4.0",
  2047. "voku/portable-ascii": "^1.4.8"
  2048. },
  2049. "conflict": {
  2050. "tightenco/collect": "<5.5.33"
  2051. },
  2052. "provide": {
  2053. "psr/container-implementation": "1.0"
  2054. },
  2055. "replace": {
  2056. "illuminate/auth": "self.version",
  2057. "illuminate/broadcasting": "self.version",
  2058. "illuminate/bus": "self.version",
  2059. "illuminate/cache": "self.version",
  2060. "illuminate/config": "self.version",
  2061. "illuminate/console": "self.version",
  2062. "illuminate/container": "self.version",
  2063. "illuminate/contracts": "self.version",
  2064. "illuminate/cookie": "self.version",
  2065. "illuminate/database": "self.version",
  2066. "illuminate/encryption": "self.version",
  2067. "illuminate/events": "self.version",
  2068. "illuminate/filesystem": "self.version",
  2069. "illuminate/hashing": "self.version",
  2070. "illuminate/http": "self.version",
  2071. "illuminate/log": "self.version",
  2072. "illuminate/mail": "self.version",
  2073. "illuminate/notifications": "self.version",
  2074. "illuminate/pagination": "self.version",
  2075. "illuminate/pipeline": "self.version",
  2076. "illuminate/queue": "self.version",
  2077. "illuminate/redis": "self.version",
  2078. "illuminate/routing": "self.version",
  2079. "illuminate/session": "self.version",
  2080. "illuminate/support": "self.version",
  2081. "illuminate/testing": "self.version",
  2082. "illuminate/translation": "self.version",
  2083. "illuminate/validation": "self.version",
  2084. "illuminate/view": "self.version"
  2085. },
  2086. "require-dev": {
  2087. "aws/aws-sdk-php": "^3.155",
  2088. "doctrine/dbal": "^2.6",
  2089. "filp/whoops": "^2.8",
  2090. "guzzlehttp/guzzle": "^6.3.1|^7.0.1",
  2091. "league/flysystem-cached-adapter": "^1.0",
  2092. "mockery/mockery": "~1.3.3|^1.4.2",
  2093. "moontoast/math": "^1.1",
  2094. "orchestra/testbench-core": "^5.8",
  2095. "pda/pheanstalk": "^4.0",
  2096. "phpunit/phpunit": "^8.4|^9.3.3",
  2097. "predis/predis": "^1.1.1",
  2098. "symfony/cache": "^5.0"
  2099. },
  2100. "suggest": {
  2101. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.155).",
  2102. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
  2103. "ext-ftp": "Required to use the Flysystem FTP driver.",
  2104. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  2105. "ext-memcached": "Required to use the memcache cache driver.",
  2106. "ext-pcntl": "Required to use all features of the queue worker.",
  2107. "ext-posix": "Required to use all features of the queue worker.",
  2108. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  2109. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  2110. "filp/whoops": "Required for friendly error pages in development (^2.8).",
  2111. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.3.1|^7.0.1).",
  2112. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  2113. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  2114. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  2115. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  2116. "mockery/mockery": "Required to use mocking (~1.3.3|^1.4.2).",
  2117. "moontoast/math": "Required to use ordered UUIDs (^1.1).",
  2118. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  2119. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  2120. "phpunit/phpunit": "Required to use assertions and run tests (^8.4|^9.3.3).",
  2121. "predis/predis": "Required to use the predis connector (^1.1.2).",
  2122. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  2123. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0).",
  2124. "symfony/cache": "Required to PSR-6 cache bridge (^5.0).",
  2125. "symfony/filesystem": "Required to create relative storage directory symbolic links (^5.0).",
  2126. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  2127. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  2128. },
  2129. "type": "library",
  2130. "extra": {
  2131. "branch-alias": {
  2132. "dev-master": "7.x-dev"
  2133. }
  2134. },
  2135. "autoload": {
  2136. "files": [
  2137. "src/Illuminate/Foundation/helpers.php",
  2138. "src/Illuminate/Support/helpers.php"
  2139. ],
  2140. "psr-4": {
  2141. "Illuminate\\": "src/Illuminate/"
  2142. }
  2143. },
  2144. "notification-url": "https://packagist.org/downloads/",
  2145. "license": [
  2146. "MIT"
  2147. ],
  2148. "authors": [
  2149. {
  2150. "name": "Taylor Otwell",
  2151. "email": "[email protected]"
  2152. }
  2153. ],
  2154. "description": "The Laravel Framework.",
  2155. "homepage": "https://laravel.com",
  2156. "keywords": [
  2157. "framework",
  2158. "laravel"
  2159. ],
  2160. "support": {
  2161. "issues": "https://github.com/laravel/framework/issues",
  2162. "source": "https://github.com/laravel/framework"
  2163. },
  2164. "time": "2021-01-21T14:10:48+00:00"
  2165. },
  2166. {
  2167. "name": "laravel/tinker",
  2168. "version": "v2.6.1",
  2169. "source": {
  2170. "type": "git",
  2171. "url": "https://github.com/laravel/tinker.git",
  2172. "reference": "04ad32c1a3328081097a181875733fa51f402083"
  2173. },
  2174. "dist": {
  2175. "type": "zip",
  2176. "url": "https://api.github.com/repos/laravel/tinker/zipball/04ad32c1a3328081097a181875733fa51f402083",
  2177. "reference": "04ad32c1a3328081097a181875733fa51f402083",
  2178. "shasum": ""
  2179. },
  2180. "require": {
  2181. "illuminate/console": "^6.0|^7.0|^8.0",
  2182. "illuminate/contracts": "^6.0|^7.0|^8.0",
  2183. "illuminate/support": "^6.0|^7.0|^8.0",
  2184. "php": "^7.2.5|^8.0",
  2185. "psy/psysh": "^0.10.4",
  2186. "symfony/var-dumper": "^4.3.4|^5.0"
  2187. },
  2188. "require-dev": {
  2189. "mockery/mockery": "~1.3.3|^1.4.2",
  2190. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2191. },
  2192. "suggest": {
  2193. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0)."
  2194. },
  2195. "type": "library",
  2196. "extra": {
  2197. "branch-alias": {
  2198. "dev-master": "2.x-dev"
  2199. },
  2200. "laravel": {
  2201. "providers": [
  2202. "Laravel\\Tinker\\TinkerServiceProvider"
  2203. ]
  2204. }
  2205. },
  2206. "autoload": {
  2207. "psr-4": {
  2208. "Laravel\\Tinker\\": "src/"
  2209. }
  2210. },
  2211. "notification-url": "https://packagist.org/downloads/",
  2212. "license": [
  2213. "MIT"
  2214. ],
  2215. "authors": [
  2216. {
  2217. "name": "Taylor Otwell",
  2218. "email": "[email protected]"
  2219. }
  2220. ],
  2221. "description": "Powerful REPL for the Laravel framework.",
  2222. "keywords": [
  2223. "REPL",
  2224. "Tinker",
  2225. "laravel",
  2226. "psysh"
  2227. ],
  2228. "support": {
  2229. "issues": "https://github.com/laravel/tinker/issues",
  2230. "source": "https://github.com/laravel/tinker/tree/v2.6.1"
  2231. },
  2232. "time": "2021-03-02T16:53:12+00:00"
  2233. },
  2234. {
  2235. "name": "lcobucci/jwt",
  2236. "version": "3.3.3",
  2237. "source": {
  2238. "type": "git",
  2239. "url": "https://github.com/lcobucci/jwt.git",
  2240. "reference": "c1123697f6a2ec29162b82f170dd4a491f524773"
  2241. },
  2242. "dist": {
  2243. "type": "zip",
  2244. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/c1123697f6a2ec29162b82f170dd4a491f524773",
  2245. "reference": "c1123697f6a2ec29162b82f170dd4a491f524773",
  2246. "shasum": ""
  2247. },
  2248. "require": {
  2249. "ext-mbstring": "*",
  2250. "ext-openssl": "*",
  2251. "php": "^5.6 || ^7.0"
  2252. },
  2253. "require-dev": {
  2254. "mikey179/vfsstream": "~1.5",
  2255. "phpmd/phpmd": "~2.2",
  2256. "phpunit/php-invoker": "~1.1",
  2257. "phpunit/phpunit": "^5.7 || ^7.3",
  2258. "squizlabs/php_codesniffer": "~2.3"
  2259. },
  2260. "type": "library",
  2261. "extra": {
  2262. "branch-alias": {
  2263. "dev-master": "3.1-dev"
  2264. }
  2265. },
  2266. "autoload": {
  2267. "psr-4": {
  2268. "Lcobucci\\JWT\\": "src"
  2269. }
  2270. },
  2271. "notification-url": "https://packagist.org/downloads/",
  2272. "license": [
  2273. "BSD-3-Clause"
  2274. ],
  2275. "authors": [
  2276. {
  2277. "name": "Luís Otávio Cobucci Oblonczyk",
  2278. "email": "[email protected]",
  2279. "role": "Developer"
  2280. }
  2281. ],
  2282. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  2283. "keywords": [
  2284. "JWS",
  2285. "jwt"
  2286. ],
  2287. "support": {
  2288. "issues": "https://github.com/lcobucci/jwt/issues",
  2289. "source": "https://github.com/lcobucci/jwt/tree/3.3.3"
  2290. },
  2291. "funding": [
  2292. {
  2293. "url": "https://github.com/lcobucci",
  2294. "type": "github"
  2295. },
  2296. {
  2297. "url": "https://www.patreon.com/lcobucci",
  2298. "type": "patreon"
  2299. }
  2300. ],
  2301. "time": "2020-08-20T13:22:28+00:00"
  2302. },
  2303. {
  2304. "name": "league/commonmark",
  2305. "version": "1.5.7",
  2306. "source": {
  2307. "type": "git",
  2308. "url": "https://github.com/thephpleague/commonmark.git",
  2309. "reference": "11df9b36fd4f1d2b727a73bf14931d81373b9a54"
  2310. },
  2311. "dist": {
  2312. "type": "zip",
  2313. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/11df9b36fd4f1d2b727a73bf14931d81373b9a54",
  2314. "reference": "11df9b36fd4f1d2b727a73bf14931d81373b9a54",
  2315. "shasum": ""
  2316. },
  2317. "require": {
  2318. "ext-mbstring": "*",
  2319. "php": "^7.1 || ^8.0"
  2320. },
  2321. "conflict": {
  2322. "scrutinizer/ocular": "1.7.*"
  2323. },
  2324. "require-dev": {
  2325. "cebe/markdown": "~1.0",
  2326. "commonmark/commonmark.js": "0.29.2",
  2327. "erusev/parsedown": "~1.0",
  2328. "ext-json": "*",
  2329. "github/gfm": "0.29.0",
  2330. "michelf/php-markdown": "~1.4",
  2331. "mikehaertl/php-shellcommand": "^1.4",
  2332. "phpstan/phpstan": "^0.12",
  2333. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.2",
  2334. "scrutinizer/ocular": "^1.5",
  2335. "symfony/finder": "^4.2"
  2336. },
  2337. "bin": [
  2338. "bin/commonmark"
  2339. ],
  2340. "type": "library",
  2341. "autoload": {
  2342. "psr-4": {
  2343. "League\\CommonMark\\": "src"
  2344. }
  2345. },
  2346. "notification-url": "https://packagist.org/downloads/",
  2347. "license": [
  2348. "BSD-3-Clause"
  2349. ],
  2350. "authors": [
  2351. {
  2352. "name": "Colin O'Dell",
  2353. "email": "[email protected]",
  2354. "homepage": "https://www.colinodell.com",
  2355. "role": "Lead Developer"
  2356. }
  2357. ],
  2358. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and Github-Flavored Markdown (GFM)",
  2359. "homepage": "https://commonmark.thephpleague.com",
  2360. "keywords": [
  2361. "commonmark",
  2362. "flavored",
  2363. "gfm",
  2364. "github",
  2365. "github-flavored",
  2366. "markdown",
  2367. "md",
  2368. "parser"
  2369. ],
  2370. "support": {
  2371. "docs": "https://commonmark.thephpleague.com/",
  2372. "issues": "https://github.com/thephpleague/commonmark/issues",
  2373. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2374. "source": "https://github.com/thephpleague/commonmark"
  2375. },
  2376. "funding": [
  2377. {
  2378. "url": "https://enjoy.gitstore.app/repositories/thephpleague/commonmark",
  2379. "type": "custom"
  2380. },
  2381. {
  2382. "url": "https://www.colinodell.com/sponsor",
  2383. "type": "custom"
  2384. },
  2385. {
  2386. "url": "https://www.paypal.me/colinpodell/10.00",
  2387. "type": "custom"
  2388. },
  2389. {
  2390. "url": "https://github.com/colinodell",
  2391. "type": "github"
  2392. },
  2393. {
  2394. "url": "https://www.patreon.com/colinodell",
  2395. "type": "patreon"
  2396. },
  2397. {
  2398. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2399. "type": "tidelift"
  2400. }
  2401. ],
  2402. "time": "2020-10-31T13:49:32+00:00"
  2403. },
  2404. {
  2405. "name": "league/flysystem",
  2406. "version": "1.1.3",
  2407. "source": {
  2408. "type": "git",
  2409. "url": "https://github.com/thephpleague/flysystem.git",
  2410. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a"
  2411. },
  2412. "dist": {
  2413. "type": "zip",
  2414. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/9be3b16c877d477357c015cec057548cf9b2a14a",
  2415. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a",
  2416. "shasum": ""
  2417. },
  2418. "require": {
  2419. "ext-fileinfo": "*",
  2420. "league/mime-type-detection": "^1.3",
  2421. "php": "^7.2.5 || ^8.0"
  2422. },
  2423. "conflict": {
  2424. "league/flysystem-sftp": "<1.0.6"
  2425. },
  2426. "require-dev": {
  2427. "phpspec/prophecy": "^1.11.1",
  2428. "phpunit/phpunit": "^8.5.8"
  2429. },
  2430. "suggest": {
  2431. "ext-fileinfo": "Required for MimeType",
  2432. "ext-ftp": "Allows you to use FTP server storage",
  2433. "ext-openssl": "Allows you to use FTPS server storage",
  2434. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  2435. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  2436. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  2437. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2438. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  2439. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2440. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  2441. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2442. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2443. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2444. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2445. },
  2446. "type": "library",
  2447. "extra": {
  2448. "branch-alias": {
  2449. "dev-master": "1.1-dev"
  2450. }
  2451. },
  2452. "autoload": {
  2453. "psr-4": {
  2454. "League\\Flysystem\\": "src/"
  2455. }
  2456. },
  2457. "notification-url": "https://packagist.org/downloads/",
  2458. "license": [
  2459. "MIT"
  2460. ],
  2461. "authors": [
  2462. {
  2463. "name": "Frank de Jonge",
  2464. "email": "[email protected]"
  2465. }
  2466. ],
  2467. "description": "Filesystem abstraction: Many filesystems, one API.",
  2468. "keywords": [
  2469. "Cloud Files",
  2470. "WebDAV",
  2471. "abstraction",
  2472. "aws",
  2473. "cloud",
  2474. "copy.com",
  2475. "dropbox",
  2476. "file systems",
  2477. "files",
  2478. "filesystem",
  2479. "filesystems",
  2480. "ftp",
  2481. "rackspace",
  2482. "remote",
  2483. "s3",
  2484. "sftp",
  2485. "storage"
  2486. ],
  2487. "support": {
  2488. "issues": "https://github.com/thephpleague/flysystem/issues",
  2489. "source": "https://github.com/thephpleague/flysystem/tree/1.x"
  2490. },
  2491. "funding": [
  2492. {
  2493. "url": "https://offset.earth/frankdejonge",
  2494. "type": "other"
  2495. }
  2496. ],
  2497. "time": "2020-08-23T07:39:11+00:00"
  2498. },
  2499. {
  2500. "name": "league/mime-type-detection",
  2501. "version": "1.7.0",
  2502. "source": {
  2503. "type": "git",
  2504. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2505. "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3"
  2506. },
  2507. "dist": {
  2508. "type": "zip",
  2509. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
  2510. "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
  2511. "shasum": ""
  2512. },
  2513. "require": {
  2514. "ext-fileinfo": "*",
  2515. "php": "^7.2 || ^8.0"
  2516. },
  2517. "require-dev": {
  2518. "friendsofphp/php-cs-fixer": "^2.18",
  2519. "phpstan/phpstan": "^0.12.68",
  2520. "phpunit/phpunit": "^8.5.8 || ^9.3"
  2521. },
  2522. "type": "library",
  2523. "autoload": {
  2524. "psr-4": {
  2525. "League\\MimeTypeDetection\\": "src"
  2526. }
  2527. },
  2528. "notification-url": "https://packagist.org/downloads/",
  2529. "license": [
  2530. "MIT"
  2531. ],
  2532. "authors": [
  2533. {
  2534. "name": "Frank de Jonge",
  2535. "email": "[email protected]"
  2536. }
  2537. ],
  2538. "description": "Mime-type detection for Flysystem",
  2539. "support": {
  2540. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2541. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.7.0"
  2542. },
  2543. "funding": [
  2544. {
  2545. "url": "https://github.com/frankdejonge",
  2546. "type": "github"
  2547. },
  2548. {
  2549. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2550. "type": "tidelift"
  2551. }
  2552. ],
  2553. "time": "2021-01-18T20:58:21+00:00"
  2554. },
  2555. {
  2556. "name": "maennchen/zipstream-php",
  2557. "version": "2.1.0",
  2558. "source": {
  2559. "type": "git",
  2560. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  2561. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58"
  2562. },
  2563. "dist": {
  2564. "type": "zip",
  2565. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2566. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2567. "shasum": ""
  2568. },
  2569. "require": {
  2570. "myclabs/php-enum": "^1.5",
  2571. "php": ">= 7.1",
  2572. "psr/http-message": "^1.0",
  2573. "symfony/polyfill-mbstring": "^1.0"
  2574. },
  2575. "require-dev": {
  2576. "ext-zip": "*",
  2577. "guzzlehttp/guzzle": ">= 6.3",
  2578. "mikey179/vfsstream": "^1.6",
  2579. "phpunit/phpunit": ">= 7.5"
  2580. },
  2581. "type": "library",
  2582. "autoload": {
  2583. "psr-4": {
  2584. "ZipStream\\": "src/"
  2585. }
  2586. },
  2587. "notification-url": "https://packagist.org/downloads/",
  2588. "license": [
  2589. "MIT"
  2590. ],
  2591. "authors": [
  2592. {
  2593. "name": "Paul Duncan",
  2594. "email": "[email protected]"
  2595. },
  2596. {
  2597. "name": "Jonatan Männchen",
  2598. "email": "[email protected]"
  2599. },
  2600. {
  2601. "name": "Jesse Donat",
  2602. "email": "[email protected]"
  2603. },
  2604. {
  2605. "name": "András Kolesár",
  2606. "email": "[email protected]"
  2607. }
  2608. ],
  2609. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  2610. "keywords": [
  2611. "stream",
  2612. "zip"
  2613. ],
  2614. "support": {
  2615. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  2616. "source": "https://github.com/maennchen/ZipStream-PHP/tree/master"
  2617. },
  2618. "funding": [
  2619. {
  2620. "url": "https://opencollective.com/zipstream",
  2621. "type": "open_collective"
  2622. }
  2623. ],
  2624. "time": "2020-05-30T13:11:16+00:00"
  2625. },
  2626. {
  2627. "name": "markbaker/complex",
  2628. "version": "2.0.0",
  2629. "source": {
  2630. "type": "git",
  2631. "url": "https://github.com/MarkBaker/PHPComplex.git",
  2632. "reference": "9999f1432fae467bc93c53f357105b4c31bb994c"
  2633. },
  2634. "dist": {
  2635. "type": "zip",
  2636. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/9999f1432fae467bc93c53f357105b4c31bb994c",
  2637. "reference": "9999f1432fae467bc93c53f357105b4c31bb994c",
  2638. "shasum": ""
  2639. },
  2640. "require": {
  2641. "php": "^7.2 || ^8.0"
  2642. },
  2643. "require-dev": {
  2644. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2645. "phpcompatibility/php-compatibility": "^9.0",
  2646. "phpdocumentor/phpdocumentor": "2.*",
  2647. "phploc/phploc": "^4.0",
  2648. "phpmd/phpmd": "2.*",
  2649. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  2650. "sebastian/phpcpd": "^4.0",
  2651. "squizlabs/php_codesniffer": "^3.4"
  2652. },
  2653. "type": "library",
  2654. "autoload": {
  2655. "psr-4": {
  2656. "Complex\\": "classes/src/"
  2657. },
  2658. "files": [
  2659. "classes/src/functions/abs.php",
  2660. "classes/src/functions/acos.php",
  2661. "classes/src/functions/acosh.php",
  2662. "classes/src/functions/acot.php",
  2663. "classes/src/functions/acoth.php",
  2664. "classes/src/functions/acsc.php",
  2665. "classes/src/functions/acsch.php",
  2666. "classes/src/functions/argument.php",
  2667. "classes/src/functions/asec.php",
  2668. "classes/src/functions/asech.php",
  2669. "classes/src/functions/asin.php",
  2670. "classes/src/functions/asinh.php",
  2671. "classes/src/functions/atan.php",
  2672. "classes/src/functions/atanh.php",
  2673. "classes/src/functions/conjugate.php",
  2674. "classes/src/functions/cos.php",
  2675. "classes/src/functions/cosh.php",
  2676. "classes/src/functions/cot.php",
  2677. "classes/src/functions/coth.php",
  2678. "classes/src/functions/csc.php",
  2679. "classes/src/functions/csch.php",
  2680. "classes/src/functions/exp.php",
  2681. "classes/src/functions/inverse.php",
  2682. "classes/src/functions/ln.php",
  2683. "classes/src/functions/log2.php",
  2684. "classes/src/functions/log10.php",
  2685. "classes/src/functions/negative.php",
  2686. "classes/src/functions/pow.php",
  2687. "classes/src/functions/rho.php",
  2688. "classes/src/functions/sec.php",
  2689. "classes/src/functions/sech.php",
  2690. "classes/src/functions/sin.php",
  2691. "classes/src/functions/sinh.php",
  2692. "classes/src/functions/sqrt.php",
  2693. "classes/src/functions/tan.php",
  2694. "classes/src/functions/tanh.php",
  2695. "classes/src/functions/theta.php",
  2696. "classes/src/operations/add.php",
  2697. "classes/src/operations/subtract.php",
  2698. "classes/src/operations/multiply.php",
  2699. "classes/src/operations/divideby.php",
  2700. "classes/src/operations/divideinto.php"
  2701. ]
  2702. },
  2703. "notification-url": "https://packagist.org/downloads/",
  2704. "license": [
  2705. "MIT"
  2706. ],
  2707. "authors": [
  2708. {
  2709. "name": "Mark Baker",
  2710. "email": "[email protected]"
  2711. }
  2712. ],
  2713. "description": "PHP Class for working with complex numbers",
  2714. "homepage": "https://github.com/MarkBaker/PHPComplex",
  2715. "keywords": [
  2716. "complex",
  2717. "mathematics"
  2718. ],
  2719. "support": {
  2720. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  2721. "source": "https://github.com/MarkBaker/PHPComplex/tree/PHP8"
  2722. },
  2723. "time": "2020-08-26T10:42:07+00:00"
  2724. },
  2725. {
  2726. "name": "markbaker/matrix",
  2727. "version": "2.1.2",
  2728. "source": {
  2729. "type": "git",
  2730. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  2731. "reference": "361c0f545c3172ee26c3d596a0aa03f0cef65e6a"
  2732. },
  2733. "dist": {
  2734. "type": "zip",
  2735. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/361c0f545c3172ee26c3d596a0aa03f0cef65e6a",
  2736. "reference": "361c0f545c3172ee26c3d596a0aa03f0cef65e6a",
  2737. "shasum": ""
  2738. },
  2739. "require": {
  2740. "php": "^7.1 || ^8.0"
  2741. },
  2742. "require-dev": {
  2743. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2744. "phpcompatibility/php-compatibility": "^9.0",
  2745. "phpdocumentor/phpdocumentor": "2.*",
  2746. "phploc/phploc": "^4.0",
  2747. "phpmd/phpmd": "2.*",
  2748. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  2749. "sebastian/phpcpd": "^4.0",
  2750. "squizlabs/php_codesniffer": "^3.4"
  2751. },
  2752. "type": "library",
  2753. "autoload": {
  2754. "psr-4": {
  2755. "Matrix\\": "classes/src/"
  2756. },
  2757. "files": [
  2758. "classes/src/Functions/adjoint.php",
  2759. "classes/src/Functions/antidiagonal.php",
  2760. "classes/src/Functions/cofactors.php",
  2761. "classes/src/Functions/determinant.php",
  2762. "classes/src/Functions/diagonal.php",
  2763. "classes/src/Functions/identity.php",
  2764. "classes/src/Functions/inverse.php",
  2765. "classes/src/Functions/minors.php",
  2766. "classes/src/Functions/trace.php",
  2767. "classes/src/Functions/transpose.php",
  2768. "classes/src/Operations/add.php",
  2769. "classes/src/Operations/directsum.php",
  2770. "classes/src/Operations/subtract.php",
  2771. "classes/src/Operations/multiply.php",
  2772. "classes/src/Operations/divideby.php",
  2773. "classes/src/Operations/divideinto.php"
  2774. ]
  2775. },
  2776. "notification-url": "https://packagist.org/downloads/",
  2777. "license": [
  2778. "MIT"
  2779. ],
  2780. "authors": [
  2781. {
  2782. "name": "Mark Baker",
  2783. "email": "[email protected]"
  2784. }
  2785. ],
  2786. "description": "PHP Class for working with matrices",
  2787. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  2788. "keywords": [
  2789. "mathematics",
  2790. "matrix",
  2791. "vector"
  2792. ],
  2793. "support": {
  2794. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  2795. "source": "https://github.com/MarkBaker/PHPMatrix/tree/2.1.2"
  2796. },
  2797. "time": "2021-01-23T16:37:31+00:00"
  2798. },
  2799. {
  2800. "name": "maxmind-db/reader",
  2801. "version": "v1.10.0",
  2802. "source": {
  2803. "type": "git",
  2804. "url": "https://github.com/maxmind/MaxMind-DB-Reader-php.git",
  2805. "reference": "07f84d969cfc527ce49388558a366ad376f1f35c"
  2806. },
  2807. "dist": {
  2808. "type": "zip",
  2809. "url": "https://api.github.com/repos/maxmind/MaxMind-DB-Reader-php/zipball/07f84d969cfc527ce49388558a366ad376f1f35c",
  2810. "reference": "07f84d969cfc527ce49388558a366ad376f1f35c",
  2811. "shasum": ""
  2812. },
  2813. "require": {
  2814. "php": ">=7.2"
  2815. },
  2816. "conflict": {
  2817. "ext-maxminddb": "<1.10.0,>=2.0.0"
  2818. },
  2819. "require-dev": {
  2820. "friendsofphp/php-cs-fixer": "*",
  2821. "php-coveralls/php-coveralls": "^2.1",
  2822. "phpstan/phpstan": "*",
  2823. "phpunit/phpcov": ">=6.0.0",
  2824. "phpunit/phpunit": ">=8.0.0,<10.0.0",
  2825. "squizlabs/php_codesniffer": "3.*"
  2826. },
  2827. "suggest": {
  2828. "ext-bcmath": "bcmath or gmp is required for decoding larger integers with the pure PHP decoder",
  2829. "ext-gmp": "bcmath or gmp is required for decoding larger integers with the pure PHP decoder",
  2830. "ext-maxminddb": "A C-based database decoder that provides significantly faster lookups"
  2831. },
  2832. "type": "library",
  2833. "autoload": {
  2834. "psr-4": {
  2835. "MaxMind\\Db\\": "src/MaxMind/Db"
  2836. }
  2837. },
  2838. "notification-url": "https://packagist.org/downloads/",
  2839. "license": [
  2840. "Apache-2.0"
  2841. ],
  2842. "authors": [
  2843. {
  2844. "name": "Gregory J. Oschwald",
  2845. "email": "[email protected]",
  2846. "homepage": "https://www.maxmind.com/"
  2847. }
  2848. ],
  2849. "description": "MaxMind DB Reader API",
  2850. "homepage": "https://github.com/maxmind/MaxMind-DB-Reader-php",
  2851. "keywords": [
  2852. "database",
  2853. "geoip",
  2854. "geoip2",
  2855. "geolocation",
  2856. "maxmind"
  2857. ],
  2858. "support": {
  2859. "issues": "https://github.com/maxmind/MaxMind-DB-Reader-php/issues",
  2860. "source": "https://github.com/maxmind/MaxMind-DB-Reader-php/tree/v1.10.0"
  2861. },
  2862. "time": "2021-02-09T17:52:47+00:00"
  2863. },
  2864. {
  2865. "name": "maxmind/web-service-common",
  2866. "version": "v0.8.1",
  2867. "source": {
  2868. "type": "git",
  2869. "url": "https://github.com/maxmind/web-service-common-php.git",
  2870. "reference": "32f274051c543fc865e5a84d3a2c703913641ea8"
  2871. },
  2872. "dist": {
  2873. "type": "zip",
  2874. "url": "https://api.github.com/repos/maxmind/web-service-common-php/zipball/32f274051c543fc865e5a84d3a2c703913641ea8",
  2875. "reference": "32f274051c543fc865e5a84d3a2c703913641ea8",
  2876. "shasum": ""
  2877. },
  2878. "require": {
  2879. "composer/ca-bundle": "^1.0.3",
  2880. "ext-curl": "*",
  2881. "ext-json": "*",
  2882. "php": ">=7.2"
  2883. },
  2884. "require-dev": {
  2885. "friendsofphp/php-cs-fixer": "2.*",
  2886. "phpunit/phpunit": "^8.0 || ^9.0",
  2887. "squizlabs/php_codesniffer": "3.*"
  2888. },
  2889. "type": "library",
  2890. "autoload": {
  2891. "psr-4": {
  2892. "MaxMind\\Exception\\": "src/Exception",
  2893. "MaxMind\\WebService\\": "src/WebService"
  2894. }
  2895. },
  2896. "notification-url": "https://packagist.org/downloads/",
  2897. "license": [
  2898. "Apache-2.0"
  2899. ],
  2900. "authors": [
  2901. {
  2902. "name": "Gregory Oschwald",
  2903. "email": "[email protected]"
  2904. }
  2905. ],
  2906. "description": "Internal MaxMind Web Service API",
  2907. "homepage": "https://github.com/maxmind/web-service-common-php",
  2908. "support": {
  2909. "issues": "https://github.com/maxmind/web-service-common-php/issues",
  2910. "source": "https://github.com/maxmind/web-service-common-php/tree/v0.8.1"
  2911. },
  2912. "time": "2020-11-02T17:00:53+00:00"
  2913. },
  2914. {
  2915. "name": "mews/captcha",
  2916. "version": "3.2.5",
  2917. "source": {
  2918. "type": "git",
  2919. "url": "https://github.com/mewebstudio/captcha.git",
  2920. "reference": "41a3dac8cf45c8d3176fab7810adf1f5fd1d1802"
  2921. },
  2922. "dist": {
  2923. "type": "zip",
  2924. "url": "https://api.github.com/repos/mewebstudio/captcha/zipball/41a3dac8cf45c8d3176fab7810adf1f5fd1d1802",
  2925. "reference": "41a3dac8cf45c8d3176fab7810adf1f5fd1d1802",
  2926. "shasum": ""
  2927. },
  2928. "require": {
  2929. "ext-gd": "*",
  2930. "illuminate/config": "~5|^6|^7|^8",
  2931. "illuminate/filesystem": "~5|^6|^7|^8",
  2932. "illuminate/hashing": "~5|^6|^7|^8",
  2933. "illuminate/session": "~5|^6|^7|^8",
  2934. "illuminate/support": "~5|^6|^7|^8",
  2935. "intervention/image": "~2.5",
  2936. "php": "^7.2|^8.0"
  2937. },
  2938. "require-dev": {
  2939. "mockery/mockery": "^1.0",
  2940. "phpunit/phpunit": "^8.5"
  2941. },
  2942. "type": "package",
  2943. "extra": {
  2944. "laravel": {
  2945. "providers": [
  2946. "Mews\\Captcha\\CaptchaServiceProvider"
  2947. ],
  2948. "aliases": {
  2949. "Captcha": "Mews\\Captcha\\Facades\\Captcha"
  2950. }
  2951. }
  2952. },
  2953. "autoload": {
  2954. "psr-4": {
  2955. "Mews\\Captcha\\": "src/"
  2956. },
  2957. "files": [
  2958. "src/helpers.php"
  2959. ]
  2960. },
  2961. "notification-url": "https://packagist.org/downloads/",
  2962. "license": [
  2963. "MIT"
  2964. ],
  2965. "authors": [
  2966. {
  2967. "name": "Muharrem ERİN",
  2968. "email": "[email protected]",
  2969. "homepage": "https://github.com/mewebstudio",
  2970. "role": "Developer"
  2971. }
  2972. ],
  2973. "description": "Laravel 5 & 6 Captcha Package",
  2974. "homepage": "https://github.com/mewebstudio/captcha",
  2975. "keywords": [
  2976. "captcha",
  2977. "laravel5 Security",
  2978. "laravel6 Captcha",
  2979. "laravel6 Security"
  2980. ],
  2981. "support": {
  2982. "issues": "https://github.com/mewebstudio/captcha/issues",
  2983. "source": "https://github.com/mewebstudio/captcha/tree/3.2.5"
  2984. },
  2985. "time": "2021-01-17T21:30:23+00:00"
  2986. },
  2987. {
  2988. "name": "mews/purifier",
  2989. "version": "3.3.3",
  2990. "source": {
  2991. "type": "git",
  2992. "url": "https://github.com/mewebstudio/Purifier.git",
  2993. "reference": "8e0b3d87c79b38b8d88aeb3c0ba8b000a393a74c"
  2994. },
  2995. "dist": {
  2996. "type": "zip",
  2997. "url": "https://api.github.com/repos/mewebstudio/Purifier/zipball/8e0b3d87c79b38b8d88aeb3c0ba8b000a393a74c",
  2998. "reference": "8e0b3d87c79b38b8d88aeb3c0ba8b000a393a74c",
  2999. "shasum": ""
  3000. },
  3001. "require": {
  3002. "ezyang/htmlpurifier": "4.13.*",
  3003. "illuminate/config": "^5.8|^6.0|^7.0|^8.0",
  3004. "illuminate/filesystem": "^5.8|^6.0|^7.0|^8.0",
  3005. "illuminate/support": "^5.8|^6.0|^7.0|^8.0",
  3006. "php": "^7.2|^8.0"
  3007. },
  3008. "require-dev": {
  3009. "graham-campbell/testbench": "^3.2|^5.5.1",
  3010. "mockery/mockery": "^1.3.3",
  3011. "phpunit/phpunit": "^8.0|^9.0"
  3012. },
  3013. "suggest": {
  3014. "laravel/framework": "To test the Laravel bindings",
  3015. "laravel/lumen-framework": "To test the Lumen bindings"
  3016. },
  3017. "type": "package",
  3018. "extra": {
  3019. "laravel": {
  3020. "providers": [
  3021. "Mews\\Purifier\\PurifierServiceProvider"
  3022. ],
  3023. "aliases": {
  3024. "Purifier": "Mews\\Purifier\\Facades\\Purifier"
  3025. }
  3026. }
  3027. },
  3028. "autoload": {
  3029. "psr-4": {
  3030. "Mews\\Purifier\\": "src/"
  3031. },
  3032. "files": [
  3033. "src/helpers.php"
  3034. ]
  3035. },
  3036. "notification-url": "https://packagist.org/downloads/",
  3037. "license": [
  3038. "MIT"
  3039. ],
  3040. "authors": [
  3041. {
  3042. "name": "Muharrem ERİN",
  3043. "email": "[email protected]",
  3044. "homepage": "https://github.com/mewebstudio",
  3045. "role": "Developer"
  3046. }
  3047. ],
  3048. "description": "Laravel 5/6/7 HtmlPurifier Package",
  3049. "homepage": "https://github.com/mewebstudio/purifier",
  3050. "keywords": [
  3051. "Purifier",
  3052. "htmlpurifier",
  3053. "laravel5 HtmlPurifier",
  3054. "laravel5 Purifier",
  3055. "laravel5 Security",
  3056. "laravel6 HtmlPurifier",
  3057. "laravel6 Purifier",
  3058. "laravel6 Security",
  3059. "security",
  3060. "xss"
  3061. ],
  3062. "support": {
  3063. "issues": "https://github.com/mewebstudio/Purifier/issues",
  3064. "source": "https://github.com/mewebstudio/Purifier/tree/3.3.3"
  3065. },
  3066. "time": "2020-11-03T19:46:27+00:00"
  3067. },
  3068. {
  3069. "name": "mobiledetect/mobiledetectlib",
  3070. "version": "2.8.37",
  3071. "source": {
  3072. "type": "git",
  3073. "url": "https://github.com/serbanghita/Mobile-Detect.git",
  3074. "reference": "9841e3c46f5bd0739b53aed8ac677fa712943df7"
  3075. },
  3076. "dist": {
  3077. "type": "zip",
  3078. "url": "https://api.github.com/repos/serbanghita/Mobile-Detect/zipball/9841e3c46f5bd0739b53aed8ac677fa712943df7",
  3079. "reference": "9841e3c46f5bd0739b53aed8ac677fa712943df7",
  3080. "shasum": ""
  3081. },
  3082. "require": {
  3083. "php": ">=5.0.0"
  3084. },
  3085. "require-dev": {
  3086. "phpunit/phpunit": "~4.8.35||~5.7"
  3087. },
  3088. "type": "library",
  3089. "autoload": {
  3090. "classmap": [
  3091. "Mobile_Detect.php"
  3092. ],
  3093. "psr-0": {
  3094. "Detection": "namespaced/"
  3095. }
  3096. },
  3097. "notification-url": "https://packagist.org/downloads/",
  3098. "license": [
  3099. "MIT"
  3100. ],
  3101. "authors": [
  3102. {
  3103. "name": "Serban Ghita",
  3104. "email": "[email protected]",
  3105. "homepage": "http://mobiledetect.net",
  3106. "role": "Developer"
  3107. }
  3108. ],
  3109. "description": "Mobile_Detect is a lightweight PHP class for detecting mobile devices. It uses the User-Agent string combined with specific HTTP headers to detect the mobile environment.",
  3110. "homepage": "https://github.com/serbanghita/Mobile-Detect",
  3111. "keywords": [
  3112. "detect mobile devices",
  3113. "mobile",
  3114. "mobile detect",
  3115. "mobile detector",
  3116. "php mobile detect"
  3117. ],
  3118. "support": {
  3119. "issues": "https://github.com/serbanghita/Mobile-Detect/issues",
  3120. "source": "https://github.com/serbanghita/Mobile-Detect/tree/2.8.37"
  3121. },
  3122. "funding": [
  3123. {
  3124. "url": "https://github.com/serbanghita",
  3125. "type": "github"
  3126. }
  3127. ],
  3128. "time": "2021-02-19T21:22:57+00:00"
  3129. },
  3130. {
  3131. "name": "monolog/monolog",
  3132. "version": "2.2.0",
  3133. "source": {
  3134. "type": "git",
  3135. "url": "https://github.com/Seldaek/monolog.git",
  3136. "reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084"
  3137. },
  3138. "dist": {
  3139. "type": "zip",
  3140. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/1cb1cde8e8dd0f70cc0fe51354a59acad9302084",
  3141. "reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084",
  3142. "shasum": ""
  3143. },
  3144. "require": {
  3145. "php": ">=7.2",
  3146. "psr/log": "^1.0.1"
  3147. },
  3148. "provide": {
  3149. "psr/log-implementation": "1.0.0"
  3150. },
  3151. "require-dev": {
  3152. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  3153. "doctrine/couchdb": "~1.0@dev",
  3154. "elasticsearch/elasticsearch": "^7",
  3155. "graylog2/gelf-php": "^1.4.2",
  3156. "mongodb/mongodb": "^1.8",
  3157. "php-amqplib/php-amqplib": "~2.4",
  3158. "php-console/php-console": "^3.1.3",
  3159. "phpspec/prophecy": "^1.6.1",
  3160. "phpstan/phpstan": "^0.12.59",
  3161. "phpunit/phpunit": "^8.5",
  3162. "predis/predis": "^1.1",
  3163. "rollbar/rollbar": "^1.3",
  3164. "ruflin/elastica": ">=0.90 <7.0.1",
  3165. "swiftmailer/swiftmailer": "^5.3|^6.0"
  3166. },
  3167. "suggest": {
  3168. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  3169. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  3170. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  3171. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  3172. "ext-mbstring": "Allow to work properly with unicode symbols",
  3173. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  3174. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  3175. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  3176. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  3177. "php-console/php-console": "Allow sending log messages to Google Chrome",
  3178. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  3179. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  3180. },
  3181. "type": "library",
  3182. "extra": {
  3183. "branch-alias": {
  3184. "dev-main": "2.x-dev"
  3185. }
  3186. },
  3187. "autoload": {
  3188. "psr-4": {
  3189. "Monolog\\": "src/Monolog"
  3190. }
  3191. },
  3192. "notification-url": "https://packagist.org/downloads/",
  3193. "license": [
  3194. "MIT"
  3195. ],
  3196. "authors": [
  3197. {
  3198. "name": "Jordi Boggiano",
  3199. "email": "[email protected]",
  3200. "homepage": "https://seld.be"
  3201. }
  3202. ],
  3203. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  3204. "homepage": "https://github.com/Seldaek/monolog",
  3205. "keywords": [
  3206. "log",
  3207. "logging",
  3208. "psr-3"
  3209. ],
  3210. "support": {
  3211. "issues": "https://github.com/Seldaek/monolog/issues",
  3212. "source": "https://github.com/Seldaek/monolog/tree/2.2.0"
  3213. },
  3214. "funding": [
  3215. {
  3216. "url": "https://github.com/Seldaek",
  3217. "type": "github"
  3218. },
  3219. {
  3220. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  3221. "type": "tidelift"
  3222. }
  3223. ],
  3224. "time": "2020-12-14T13:15:25+00:00"
  3225. },
  3226. {
  3227. "name": "myclabs/php-enum",
  3228. "version": "1.8.0",
  3229. "source": {
  3230. "type": "git",
  3231. "url": "https://github.com/myclabs/php-enum.git",
  3232. "reference": "46cf3d8498b095bd33727b13fd5707263af99421"
  3233. },
  3234. "dist": {
  3235. "type": "zip",
  3236. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/46cf3d8498b095bd33727b13fd5707263af99421",
  3237. "reference": "46cf3d8498b095bd33727b13fd5707263af99421",
  3238. "shasum": ""
  3239. },
  3240. "require": {
  3241. "ext-json": "*",
  3242. "php": "^7.3 || ^8.0"
  3243. },
  3244. "require-dev": {
  3245. "phpunit/phpunit": "^9.5",
  3246. "squizlabs/php_codesniffer": "1.*",
  3247. "vimeo/psalm": "^4.5.1"
  3248. },
  3249. "type": "library",
  3250. "autoload": {
  3251. "psr-4": {
  3252. "MyCLabs\\Enum\\": "src/"
  3253. }
  3254. },
  3255. "notification-url": "https://packagist.org/downloads/",
  3256. "license": [
  3257. "MIT"
  3258. ],
  3259. "authors": [
  3260. {
  3261. "name": "PHP Enum contributors",
  3262. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  3263. }
  3264. ],
  3265. "description": "PHP Enum implementation",
  3266. "homepage": "http://github.com/myclabs/php-enum",
  3267. "keywords": [
  3268. "enum"
  3269. ],
  3270. "support": {
  3271. "issues": "https://github.com/myclabs/php-enum/issues",
  3272. "source": "https://github.com/myclabs/php-enum/tree/1.8.0"
  3273. },
  3274. "funding": [
  3275. {
  3276. "url": "https://github.com/mnapoli",
  3277. "type": "github"
  3278. },
  3279. {
  3280. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  3281. "type": "tidelift"
  3282. }
  3283. ],
  3284. "time": "2021-02-15T16:11:48+00:00"
  3285. },
  3286. {
  3287. "name": "namshi/jose",
  3288. "version": "7.2.3",
  3289. "source": {
  3290. "type": "git",
  3291. "url": "https://github.com/namshi/jose.git",
  3292. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff"
  3293. },
  3294. "dist": {
  3295. "type": "zip",
  3296. "url": "https://api.github.com/repos/namshi/jose/zipball/89a24d7eb3040e285dd5925fcad992378b82bcff",
  3297. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff",
  3298. "shasum": ""
  3299. },
  3300. "require": {
  3301. "ext-date": "*",
  3302. "ext-hash": "*",
  3303. "ext-json": "*",
  3304. "ext-pcre": "*",
  3305. "ext-spl": "*",
  3306. "php": ">=5.5",
  3307. "symfony/polyfill-php56": "^1.0"
  3308. },
  3309. "require-dev": {
  3310. "phpseclib/phpseclib": "^2.0",
  3311. "phpunit/phpunit": "^4.5|^5.0",
  3312. "satooshi/php-coveralls": "^1.0"
  3313. },
  3314. "suggest": {
  3315. "ext-openssl": "Allows to use OpenSSL as crypto engine.",
  3316. "phpseclib/phpseclib": "Allows to use Phpseclib as crypto engine, use version ^2.0."
  3317. },
  3318. "type": "library",
  3319. "autoload": {
  3320. "psr-4": {
  3321. "Namshi\\JOSE\\": "src/Namshi/JOSE/"
  3322. }
  3323. },
  3324. "notification-url": "https://packagist.org/downloads/",
  3325. "license": [
  3326. "MIT"
  3327. ],
  3328. "authors": [
  3329. {
  3330. "name": "Alessandro Nadalin",
  3331. "email": "[email protected]"
  3332. },
  3333. {
  3334. "name": "Alessandro Cinelli (cirpo)",
  3335. "email": "[email protected]"
  3336. }
  3337. ],
  3338. "description": "JSON Object Signing and Encryption library for PHP.",
  3339. "keywords": [
  3340. "JSON Web Signature",
  3341. "JSON Web Token",
  3342. "JWS",
  3343. "json",
  3344. "jwt",
  3345. "token"
  3346. ],
  3347. "support": {
  3348. "issues": "https://github.com/namshi/jose/issues",
  3349. "source": "https://github.com/namshi/jose/tree/master"
  3350. },
  3351. "time": "2016-12-05T07:27:31+00:00"
  3352. },
  3353. {
  3354. "name": "nesbot/carbon",
  3355. "version": "2.46.0",
  3356. "source": {
  3357. "type": "git",
  3358. "url": "https://github.com/briannesbitt/Carbon.git",
  3359. "reference": "2fd2c4a77d58a4e95234c8a61c5df1f157a91bf4"
  3360. },
  3361. "dist": {
  3362. "type": "zip",
  3363. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/2fd2c4a77d58a4e95234c8a61c5df1f157a91bf4",
  3364. "reference": "2fd2c4a77d58a4e95234c8a61c5df1f157a91bf4",
  3365. "shasum": ""
  3366. },
  3367. "require": {
  3368. "ext-json": "*",
  3369. "php": "^7.1.8 || ^8.0",
  3370. "symfony/polyfill-mbstring": "^1.0",
  3371. "symfony/translation": "^3.4 || ^4.0 || ^5.0"
  3372. },
  3373. "require-dev": {
  3374. "doctrine/orm": "^2.7",
  3375. "friendsofphp/php-cs-fixer": "^2.14 || ^3.0",
  3376. "kylekatarnls/multi-tester": "^2.0",
  3377. "phpmd/phpmd": "^2.9",
  3378. "phpstan/extension-installer": "^1.0",
  3379. "phpstan/phpstan": "^0.12.54",
  3380. "phpunit/phpunit": "^7.5.20 || ^8.5.14",
  3381. "squizlabs/php_codesniffer": "^3.4"
  3382. },
  3383. "bin": [
  3384. "bin/carbon"
  3385. ],
  3386. "type": "library",
  3387. "extra": {
  3388. "branch-alias": {
  3389. "dev-master": "2.x-dev",
  3390. "dev-3.x": "3.x-dev"
  3391. },
  3392. "laravel": {
  3393. "providers": [
  3394. "Carbon\\Laravel\\ServiceProvider"
  3395. ]
  3396. },
  3397. "phpstan": {
  3398. "includes": [
  3399. "extension.neon"
  3400. ]
  3401. }
  3402. },
  3403. "autoload": {
  3404. "psr-4": {
  3405. "Carbon\\": "src/Carbon/"
  3406. }
  3407. },
  3408. "notification-url": "https://packagist.org/downloads/",
  3409. "license": [
  3410. "MIT"
  3411. ],
  3412. "authors": [
  3413. {
  3414. "name": "Brian Nesbitt",
  3415. "email": "[email protected]",
  3416. "homepage": "http://nesbot.com"
  3417. },
  3418. {
  3419. "name": "kylekatarnls",
  3420. "homepage": "http://github.com/kylekatarnls"
  3421. }
  3422. ],
  3423. "description": "An API extension for DateTime that supports 281 different languages.",
  3424. "homepage": "http://carbon.nesbot.com",
  3425. "keywords": [
  3426. "date",
  3427. "datetime",
  3428. "time"
  3429. ],
  3430. "support": {
  3431. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3432. "source": "https://github.com/briannesbitt/Carbon"
  3433. },
  3434. "funding": [
  3435. {
  3436. "url": "https://opencollective.com/Carbon",
  3437. "type": "open_collective"
  3438. },
  3439. {
  3440. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  3441. "type": "tidelift"
  3442. }
  3443. ],
  3444. "time": "2021-02-24T17:30:44+00:00"
  3445. },
  3446. {
  3447. "name": "nikic/php-parser",
  3448. "version": "v4.10.4",
  3449. "source": {
  3450. "type": "git",
  3451. "url": "https://github.com/nikic/PHP-Parser.git",
  3452. "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e"
  3453. },
  3454. "dist": {
  3455. "type": "zip",
  3456. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/c6d052fc58cb876152f89f532b95a8d7907e7f0e",
  3457. "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e",
  3458. "shasum": ""
  3459. },
  3460. "require": {
  3461. "ext-tokenizer": "*",
  3462. "php": ">=7.0"
  3463. },
  3464. "require-dev": {
  3465. "ircmaxell/php-yacc": "^0.0.7",
  3466. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  3467. },
  3468. "bin": [
  3469. "bin/php-parse"
  3470. ],
  3471. "type": "library",
  3472. "extra": {
  3473. "branch-alias": {
  3474. "dev-master": "4.9-dev"
  3475. }
  3476. },
  3477. "autoload": {
  3478. "psr-4": {
  3479. "PhpParser\\": "lib/PhpParser"
  3480. }
  3481. },
  3482. "notification-url": "https://packagist.org/downloads/",
  3483. "license": [
  3484. "BSD-3-Clause"
  3485. ],
  3486. "authors": [
  3487. {
  3488. "name": "Nikita Popov"
  3489. }
  3490. ],
  3491. "description": "A PHP parser written in PHP",
  3492. "keywords": [
  3493. "parser",
  3494. "php"
  3495. ],
  3496. "support": {
  3497. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3498. "source": "https://github.com/nikic/PHP-Parser/tree/v4.10.4"
  3499. },
  3500. "time": "2020-12-20T10:01:03+00:00"
  3501. },
  3502. {
  3503. "name": "opis/closure",
  3504. "version": "3.6.1",
  3505. "source": {
  3506. "type": "git",
  3507. "url": "https://github.com/opis/closure.git",
  3508. "reference": "943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5"
  3509. },
  3510. "dist": {
  3511. "type": "zip",
  3512. "url": "https://api.github.com/repos/opis/closure/zipball/943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5",
  3513. "reference": "943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5",
  3514. "shasum": ""
  3515. },
  3516. "require": {
  3517. "php": "^5.4 || ^7.0 || ^8.0"
  3518. },
  3519. "require-dev": {
  3520. "jeremeamia/superclosure": "^2.0",
  3521. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  3522. },
  3523. "type": "library",
  3524. "extra": {
  3525. "branch-alias": {
  3526. "dev-master": "3.6.x-dev"
  3527. }
  3528. },
  3529. "autoload": {
  3530. "psr-4": {
  3531. "Opis\\Closure\\": "src/"
  3532. },
  3533. "files": [
  3534. "functions.php"
  3535. ]
  3536. },
  3537. "notification-url": "https://packagist.org/downloads/",
  3538. "license": [
  3539. "MIT"
  3540. ],
  3541. "authors": [
  3542. {
  3543. "name": "Marius Sarca",
  3544. "email": "[email protected]"
  3545. },
  3546. {
  3547. "name": "Sorin Sarca",
  3548. "email": "[email protected]"
  3549. }
  3550. ],
  3551. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  3552. "homepage": "https://opis.io/closure",
  3553. "keywords": [
  3554. "anonymous functions",
  3555. "closure",
  3556. "function",
  3557. "serializable",
  3558. "serialization",
  3559. "serialize"
  3560. ],
  3561. "support": {
  3562. "issues": "https://github.com/opis/closure/issues",
  3563. "source": "https://github.com/opis/closure/tree/3.6.1"
  3564. },
  3565. "time": "2020-11-07T02:01:34+00:00"
  3566. },
  3567. {
  3568. "name": "overtrue/laravel-lang",
  3569. "version": "4.2.1",
  3570. "source": {
  3571. "type": "git",
  3572. "url": "https://github.com/overtrue/laravel-lang.git",
  3573. "reference": "653189caa6eac682fa5d15482f271489721231c7"
  3574. },
  3575. "dist": {
  3576. "type": "zip",
  3577. "url": "https://api.github.com/repos/overtrue/laravel-lang/zipball/653189caa6eac682fa5d15482f271489721231c7",
  3578. "reference": "653189caa6eac682fa5d15482f271489721231c7",
  3579. "shasum": ""
  3580. },
  3581. "require": {
  3582. "ext-json": "*",
  3583. "laravel-lang/lang": "^7.0",
  3584. "symfony/process": "^5.0.0"
  3585. },
  3586. "require-dev": {
  3587. "laravel/framework": "~8.1"
  3588. },
  3589. "type": "library",
  3590. "extra": {
  3591. "laravel": {
  3592. "providers": [
  3593. "Overtrue\\LaravelLang\\TranslationServiceProvider"
  3594. ]
  3595. }
  3596. },
  3597. "autoload": {
  3598. "psr-4": {
  3599. "Overtrue\\LaravelLang\\": "src/"
  3600. }
  3601. },
  3602. "notification-url": "https://packagist.org/downloads/",
  3603. "license": [
  3604. "MIT"
  3605. ],
  3606. "authors": [
  3607. {
  3608. "name": "overtrue",
  3609. "email": "[email protected]"
  3610. }
  3611. ],
  3612. "description": "List of 75 languages for Laravel 4, 5, 6 and 7",
  3613. "keywords": [
  3614. "i18n",
  3615. "languages",
  3616. "laravel",
  3617. "locale",
  3618. "overtrue"
  3619. ],
  3620. "support": {
  3621. "issues": "https://github.com/overtrue/laravel-lang/issues",
  3622. "source": "https://github.com/overtrue/laravel-lang/tree/4.2.1"
  3623. },
  3624. "funding": [
  3625. {
  3626. "url": "https://www.patreon.com/overtrue",
  3627. "type": "patreon"
  3628. }
  3629. ],
  3630. "time": "2020-11-12T01:44:31+00:00"
  3631. },
  3632. {
  3633. "name": "phpoffice/phpspreadsheet",
  3634. "version": "1.17.1",
  3635. "source": {
  3636. "type": "git",
  3637. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  3638. "reference": "c55269cb06911575a126dc225a05c0e4626e5fb4"
  3639. },
  3640. "dist": {
  3641. "type": "zip",
  3642. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/c55269cb06911575a126dc225a05c0e4626e5fb4",
  3643. "reference": "c55269cb06911575a126dc225a05c0e4626e5fb4",
  3644. "shasum": ""
  3645. },
  3646. "require": {
  3647. "ext-ctype": "*",
  3648. "ext-dom": "*",
  3649. "ext-fileinfo": "*",
  3650. "ext-gd": "*",
  3651. "ext-iconv": "*",
  3652. "ext-libxml": "*",
  3653. "ext-mbstring": "*",
  3654. "ext-simplexml": "*",
  3655. "ext-xml": "*",
  3656. "ext-xmlreader": "*",
  3657. "ext-xmlwriter": "*",
  3658. "ext-zip": "*",
  3659. "ext-zlib": "*",
  3660. "ezyang/htmlpurifier": "^4.13",
  3661. "maennchen/zipstream-php": "^2.1",
  3662. "markbaker/complex": "^1.5||^2.0",
  3663. "markbaker/matrix": "^1.2||^2.0",
  3664. "php": "^7.2||^8.0",
  3665. "psr/http-client": "^1.0",
  3666. "psr/http-factory": "^1.0",
  3667. "psr/simple-cache": "^1.0"
  3668. },
  3669. "require-dev": {
  3670. "dompdf/dompdf": "^0.8.5",
  3671. "friendsofphp/php-cs-fixer": "^2.18",
  3672. "jpgraph/jpgraph": "^4.0",
  3673. "mpdf/mpdf": "^8.0",
  3674. "phpcompatibility/php-compatibility": "^9.3",
  3675. "phpunit/phpunit": "^8.5||^9.3",
  3676. "squizlabs/php_codesniffer": "^3.5",
  3677. "tecnickcom/tcpdf": "^6.3"
  3678. },
  3679. "suggest": {
  3680. "dompdf/dompdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)",
  3681. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  3682. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  3683. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)"
  3684. },
  3685. "type": "library",
  3686. "autoload": {
  3687. "psr-4": {
  3688. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  3689. }
  3690. },
  3691. "notification-url": "https://packagist.org/downloads/",
  3692. "license": [
  3693. "MIT"
  3694. ],
  3695. "authors": [
  3696. {
  3697. "name": "Maarten Balliauw",
  3698. "homepage": "https://blog.maartenballiauw.be"
  3699. },
  3700. {
  3701. "name": "Mark Baker",
  3702. "homepage": "https://markbakeruk.net"
  3703. },
  3704. {
  3705. "name": "Franck Lefevre",
  3706. "homepage": "https://rootslabs.net"
  3707. },
  3708. {
  3709. "name": "Erik Tilt"
  3710. },
  3711. {
  3712. "name": "Adrien Crivelli"
  3713. }
  3714. ],
  3715. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  3716. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  3717. "keywords": [
  3718. "OpenXML",
  3719. "excel",
  3720. "gnumeric",
  3721. "ods",
  3722. "php",
  3723. "spreadsheet",
  3724. "xls",
  3725. "xlsx"
  3726. ],
  3727. "support": {
  3728. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  3729. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.17.1"
  3730. },
  3731. "time": "2021-03-02T17:54:11+00:00"
  3732. },
  3733. {
  3734. "name": "phpoption/phpoption",
  3735. "version": "1.7.5",
  3736. "source": {
  3737. "type": "git",
  3738. "url": "https://github.com/schmittjoh/php-option.git",
  3739. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525"
  3740. },
  3741. "dist": {
  3742. "type": "zip",
  3743. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/994ecccd8f3283ecf5ac33254543eb0ac946d525",
  3744. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525",
  3745. "shasum": ""
  3746. },
  3747. "require": {
  3748. "php": "^5.5.9 || ^7.0 || ^8.0"
  3749. },
  3750. "require-dev": {
  3751. "bamarni/composer-bin-plugin": "^1.4.1",
  3752. "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0 || ^8.0 || ^9.0"
  3753. },
  3754. "type": "library",
  3755. "extra": {
  3756. "branch-alias": {
  3757. "dev-master": "1.7-dev"
  3758. }
  3759. },
  3760. "autoload": {
  3761. "psr-4": {
  3762. "PhpOption\\": "src/PhpOption/"
  3763. }
  3764. },
  3765. "notification-url": "https://packagist.org/downloads/",
  3766. "license": [
  3767. "Apache-2.0"
  3768. ],
  3769. "authors": [
  3770. {
  3771. "name": "Johannes M. Schmitt",
  3772. "email": "[email protected]"
  3773. },
  3774. {
  3775. "name": "Graham Campbell",
  3776. "email": "[email protected]"
  3777. }
  3778. ],
  3779. "description": "Option Type for PHP",
  3780. "keywords": [
  3781. "language",
  3782. "option",
  3783. "php",
  3784. "type"
  3785. ],
  3786. "support": {
  3787. "issues": "https://github.com/schmittjoh/php-option/issues",
  3788. "source": "https://github.com/schmittjoh/php-option/tree/1.7.5"
  3789. },
  3790. "funding": [
  3791. {
  3792. "url": "https://github.com/GrahamCampbell",
  3793. "type": "github"
  3794. },
  3795. {
  3796. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  3797. "type": "tidelift"
  3798. }
  3799. ],
  3800. "time": "2020-07-20T17:29:33+00:00"
  3801. },
  3802. {
  3803. "name": "psr/container",
  3804. "version": "1.1.1",
  3805. "source": {
  3806. "type": "git",
  3807. "url": "https://github.com/php-fig/container.git",
  3808. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
  3809. },
  3810. "dist": {
  3811. "type": "zip",
  3812. "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
  3813. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
  3814. "shasum": ""
  3815. },
  3816. "require": {
  3817. "php": ">=7.2.0"
  3818. },
  3819. "type": "library",
  3820. "autoload": {
  3821. "psr-4": {
  3822. "Psr\\Container\\": "src/"
  3823. }
  3824. },
  3825. "notification-url": "https://packagist.org/downloads/",
  3826. "license": [
  3827. "MIT"
  3828. ],
  3829. "authors": [
  3830. {
  3831. "name": "PHP-FIG",
  3832. "homepage": "https://www.php-fig.org/"
  3833. }
  3834. ],
  3835. "description": "Common Container Interface (PHP FIG PSR-11)",
  3836. "homepage": "https://github.com/php-fig/container",
  3837. "keywords": [
  3838. "PSR-11",
  3839. "container",
  3840. "container-interface",
  3841. "container-interop",
  3842. "psr"
  3843. ],
  3844. "support": {
  3845. "issues": "https://github.com/php-fig/container/issues",
  3846. "source": "https://github.com/php-fig/container/tree/1.1.1"
  3847. },
  3848. "time": "2021-03-05T17:36:06+00:00"
  3849. },
  3850. {
  3851. "name": "psr/event-dispatcher",
  3852. "version": "1.0.0",
  3853. "source": {
  3854. "type": "git",
  3855. "url": "https://github.com/php-fig/event-dispatcher.git",
  3856. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  3857. },
  3858. "dist": {
  3859. "type": "zip",
  3860. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3861. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3862. "shasum": ""
  3863. },
  3864. "require": {
  3865. "php": ">=7.2.0"
  3866. },
  3867. "type": "library",
  3868. "extra": {
  3869. "branch-alias": {
  3870. "dev-master": "1.0.x-dev"
  3871. }
  3872. },
  3873. "autoload": {
  3874. "psr-4": {
  3875. "Psr\\EventDispatcher\\": "src/"
  3876. }
  3877. },
  3878. "notification-url": "https://packagist.org/downloads/",
  3879. "license": [
  3880. "MIT"
  3881. ],
  3882. "authors": [
  3883. {
  3884. "name": "PHP-FIG",
  3885. "homepage": "http://www.php-fig.org/"
  3886. }
  3887. ],
  3888. "description": "Standard interfaces for event handling.",
  3889. "keywords": [
  3890. "events",
  3891. "psr",
  3892. "psr-14"
  3893. ],
  3894. "support": {
  3895. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  3896. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  3897. },
  3898. "time": "2019-01-08T18:20:26+00:00"
  3899. },
  3900. {
  3901. "name": "psr/http-client",
  3902. "version": "1.0.1",
  3903. "source": {
  3904. "type": "git",
  3905. "url": "https://github.com/php-fig/http-client.git",
  3906. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  3907. },
  3908. "dist": {
  3909. "type": "zip",
  3910. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3911. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3912. "shasum": ""
  3913. },
  3914. "require": {
  3915. "php": "^7.0 || ^8.0",
  3916. "psr/http-message": "^1.0"
  3917. },
  3918. "type": "library",
  3919. "extra": {
  3920. "branch-alias": {
  3921. "dev-master": "1.0.x-dev"
  3922. }
  3923. },
  3924. "autoload": {
  3925. "psr-4": {
  3926. "Psr\\Http\\Client\\": "src/"
  3927. }
  3928. },
  3929. "notification-url": "https://packagist.org/downloads/",
  3930. "license": [
  3931. "MIT"
  3932. ],
  3933. "authors": [
  3934. {
  3935. "name": "PHP-FIG",
  3936. "homepage": "http://www.php-fig.org/"
  3937. }
  3938. ],
  3939. "description": "Common interface for HTTP clients",
  3940. "homepage": "https://github.com/php-fig/http-client",
  3941. "keywords": [
  3942. "http",
  3943. "http-client",
  3944. "psr",
  3945. "psr-18"
  3946. ],
  3947. "support": {
  3948. "source": "https://github.com/php-fig/http-client/tree/master"
  3949. },
  3950. "time": "2020-06-29T06:28:15+00:00"
  3951. },
  3952. {
  3953. "name": "psr/http-factory",
  3954. "version": "1.0.1",
  3955. "source": {
  3956. "type": "git",
  3957. "url": "https://github.com/php-fig/http-factory.git",
  3958. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  3959. },
  3960. "dist": {
  3961. "type": "zip",
  3962. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  3963. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  3964. "shasum": ""
  3965. },
  3966. "require": {
  3967. "php": ">=7.0.0",
  3968. "psr/http-message": "^1.0"
  3969. },
  3970. "type": "library",
  3971. "extra": {
  3972. "branch-alias": {
  3973. "dev-master": "1.0.x-dev"
  3974. }
  3975. },
  3976. "autoload": {
  3977. "psr-4": {
  3978. "Psr\\Http\\Message\\": "src/"
  3979. }
  3980. },
  3981. "notification-url": "https://packagist.org/downloads/",
  3982. "license": [
  3983. "MIT"
  3984. ],
  3985. "authors": [
  3986. {
  3987. "name": "PHP-FIG",
  3988. "homepage": "http://www.php-fig.org/"
  3989. }
  3990. ],
  3991. "description": "Common interfaces for PSR-7 HTTP message factories",
  3992. "keywords": [
  3993. "factory",
  3994. "http",
  3995. "message",
  3996. "psr",
  3997. "psr-17",
  3998. "psr-7",
  3999. "request",
  4000. "response"
  4001. ],
  4002. "support": {
  4003. "source": "https://github.com/php-fig/http-factory/tree/master"
  4004. },
  4005. "time": "2019-04-30T12:38:16+00:00"
  4006. },
  4007. {
  4008. "name": "psr/http-message",
  4009. "version": "1.0.1",
  4010. "source": {
  4011. "type": "git",
  4012. "url": "https://github.com/php-fig/http-message.git",
  4013. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  4014. },
  4015. "dist": {
  4016. "type": "zip",
  4017. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  4018. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  4019. "shasum": ""
  4020. },
  4021. "require": {
  4022. "php": ">=5.3.0"
  4023. },
  4024. "type": "library",
  4025. "extra": {
  4026. "branch-alias": {
  4027. "dev-master": "1.0.x-dev"
  4028. }
  4029. },
  4030. "autoload": {
  4031. "psr-4": {
  4032. "Psr\\Http\\Message\\": "src/"
  4033. }
  4034. },
  4035. "notification-url": "https://packagist.org/downloads/",
  4036. "license": [
  4037. "MIT"
  4038. ],
  4039. "authors": [
  4040. {
  4041. "name": "PHP-FIG",
  4042. "homepage": "http://www.php-fig.org/"
  4043. }
  4044. ],
  4045. "description": "Common interface for HTTP messages",
  4046. "homepage": "https://github.com/php-fig/http-message",
  4047. "keywords": [
  4048. "http",
  4049. "http-message",
  4050. "psr",
  4051. "psr-7",
  4052. "request",
  4053. "response"
  4054. ],
  4055. "support": {
  4056. "source": "https://github.com/php-fig/http-message/tree/master"
  4057. },
  4058. "time": "2016-08-06T14:39:51+00:00"
  4059. },
  4060. {
  4061. "name": "psr/log",
  4062. "version": "1.1.3",
  4063. "source": {
  4064. "type": "git",
  4065. "url": "https://github.com/php-fig/log.git",
  4066. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  4067. },
  4068. "dist": {
  4069. "type": "zip",
  4070. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  4071. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  4072. "shasum": ""
  4073. },
  4074. "require": {
  4075. "php": ">=5.3.0"
  4076. },
  4077. "type": "library",
  4078. "extra": {
  4079. "branch-alias": {
  4080. "dev-master": "1.1.x-dev"
  4081. }
  4082. },
  4083. "autoload": {
  4084. "psr-4": {
  4085. "Psr\\Log\\": "Psr/Log/"
  4086. }
  4087. },
  4088. "notification-url": "https://packagist.org/downloads/",
  4089. "license": [
  4090. "MIT"
  4091. ],
  4092. "authors": [
  4093. {
  4094. "name": "PHP-FIG",
  4095. "homepage": "http://www.php-fig.org/"
  4096. }
  4097. ],
  4098. "description": "Common interface for logging libraries",
  4099. "homepage": "https://github.com/php-fig/log",
  4100. "keywords": [
  4101. "log",
  4102. "psr",
  4103. "psr-3"
  4104. ],
  4105. "support": {
  4106. "source": "https://github.com/php-fig/log/tree/1.1.3"
  4107. },
  4108. "time": "2020-03-23T09:12:05+00:00"
  4109. },
  4110. {
  4111. "name": "psr/simple-cache",
  4112. "version": "1.0.1",
  4113. "source": {
  4114. "type": "git",
  4115. "url": "https://github.com/php-fig/simple-cache.git",
  4116. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  4117. },
  4118. "dist": {
  4119. "type": "zip",
  4120. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4121. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4122. "shasum": ""
  4123. },
  4124. "require": {
  4125. "php": ">=5.3.0"
  4126. },
  4127. "type": "library",
  4128. "extra": {
  4129. "branch-alias": {
  4130. "dev-master": "1.0.x-dev"
  4131. }
  4132. },
  4133. "autoload": {
  4134. "psr-4": {
  4135. "Psr\\SimpleCache\\": "src/"
  4136. }
  4137. },
  4138. "notification-url": "https://packagist.org/downloads/",
  4139. "license": [
  4140. "MIT"
  4141. ],
  4142. "authors": [
  4143. {
  4144. "name": "PHP-FIG",
  4145. "homepage": "http://www.php-fig.org/"
  4146. }
  4147. ],
  4148. "description": "Common interfaces for simple caching",
  4149. "keywords": [
  4150. "cache",
  4151. "caching",
  4152. "psr",
  4153. "psr-16",
  4154. "simple-cache"
  4155. ],
  4156. "support": {
  4157. "source": "https://github.com/php-fig/simple-cache/tree/master"
  4158. },
  4159. "time": "2017-10-23T01:57:42+00:00"
  4160. },
  4161. {
  4162. "name": "psy/psysh",
  4163. "version": "v0.10.7",
  4164. "source": {
  4165. "type": "git",
  4166. "url": "https://github.com/bobthecow/psysh.git",
  4167. "reference": "a395af46999a12006213c0c8346c9445eb31640c"
  4168. },
  4169. "dist": {
  4170. "type": "zip",
  4171. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/a395af46999a12006213c0c8346c9445eb31640c",
  4172. "reference": "a395af46999a12006213c0c8346c9445eb31640c",
  4173. "shasum": ""
  4174. },
  4175. "require": {
  4176. "dnoegel/php-xdg-base-dir": "0.1.*",
  4177. "ext-json": "*",
  4178. "ext-tokenizer": "*",
  4179. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  4180. "php": "^8.0 || ^7.0 || ^5.5.9",
  4181. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  4182. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  4183. },
  4184. "require-dev": {
  4185. "bamarni/composer-bin-plugin": "^1.2",
  4186. "hoa/console": "3.17.*"
  4187. },
  4188. "suggest": {
  4189. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4190. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4191. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  4192. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  4193. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  4194. },
  4195. "bin": [
  4196. "bin/psysh"
  4197. ],
  4198. "type": "library",
  4199. "extra": {
  4200. "branch-alias": {
  4201. "dev-main": "0.10.x-dev"
  4202. }
  4203. },
  4204. "autoload": {
  4205. "files": [
  4206. "src/functions.php"
  4207. ],
  4208. "psr-4": {
  4209. "Psy\\": "src/"
  4210. }
  4211. },
  4212. "notification-url": "https://packagist.org/downloads/",
  4213. "license": [
  4214. "MIT"
  4215. ],
  4216. "authors": [
  4217. {
  4218. "name": "Justin Hileman",
  4219. "email": "[email protected]",
  4220. "homepage": "http://justinhileman.com"
  4221. }
  4222. ],
  4223. "description": "An interactive shell for modern PHP.",
  4224. "homepage": "http://psysh.org",
  4225. "keywords": [
  4226. "REPL",
  4227. "console",
  4228. "interactive",
  4229. "shell"
  4230. ],
  4231. "support": {
  4232. "issues": "https://github.com/bobthecow/psysh/issues",
  4233. "source": "https://github.com/bobthecow/psysh/tree/v0.10.7"
  4234. },
  4235. "time": "2021-03-14T02:14:56+00:00"
  4236. },
  4237. {
  4238. "name": "ralouphie/getallheaders",
  4239. "version": "3.0.3",
  4240. "source": {
  4241. "type": "git",
  4242. "url": "https://github.com/ralouphie/getallheaders.git",
  4243. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4244. },
  4245. "dist": {
  4246. "type": "zip",
  4247. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4248. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4249. "shasum": ""
  4250. },
  4251. "require": {
  4252. "php": ">=5.6"
  4253. },
  4254. "require-dev": {
  4255. "php-coveralls/php-coveralls": "^2.1",
  4256. "phpunit/phpunit": "^5 || ^6.5"
  4257. },
  4258. "type": "library",
  4259. "autoload": {
  4260. "files": [
  4261. "src/getallheaders.php"
  4262. ]
  4263. },
  4264. "notification-url": "https://packagist.org/downloads/",
  4265. "license": [
  4266. "MIT"
  4267. ],
  4268. "authors": [
  4269. {
  4270. "name": "Ralph Khattar",
  4271. "email": "[email protected]"
  4272. }
  4273. ],
  4274. "description": "A polyfill for getallheaders.",
  4275. "support": {
  4276. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4277. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4278. },
  4279. "time": "2019-03-08T08:55:37+00:00"
  4280. },
  4281. {
  4282. "name": "ramsey/collection",
  4283. "version": "1.1.3",
  4284. "source": {
  4285. "type": "git",
  4286. "url": "https://github.com/ramsey/collection.git",
  4287. "reference": "28a5c4ab2f5111db6a60b2b4ec84057e0f43b9c1"
  4288. },
  4289. "dist": {
  4290. "type": "zip",
  4291. "url": "https://api.github.com/repos/ramsey/collection/zipball/28a5c4ab2f5111db6a60b2b4ec84057e0f43b9c1",
  4292. "reference": "28a5c4ab2f5111db6a60b2b4ec84057e0f43b9c1",
  4293. "shasum": ""
  4294. },
  4295. "require": {
  4296. "php": "^7.2 || ^8"
  4297. },
  4298. "require-dev": {
  4299. "captainhook/captainhook": "^5.3",
  4300. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4301. "ergebnis/composer-normalize": "^2.6",
  4302. "fakerphp/faker": "^1.5",
  4303. "hamcrest/hamcrest-php": "^2",
  4304. "jangregor/phpstan-prophecy": "^0.8",
  4305. "mockery/mockery": "^1.3",
  4306. "phpstan/extension-installer": "^1",
  4307. "phpstan/phpstan": "^0.12.32",
  4308. "phpstan/phpstan-mockery": "^0.12.5",
  4309. "phpstan/phpstan-phpunit": "^0.12.11",
  4310. "phpunit/phpunit": "^8.5 || ^9",
  4311. "psy/psysh": "^0.10.4",
  4312. "slevomat/coding-standard": "^6.3",
  4313. "squizlabs/php_codesniffer": "^3.5",
  4314. "vimeo/psalm": "^4.4"
  4315. },
  4316. "type": "library",
  4317. "autoload": {
  4318. "psr-4": {
  4319. "Ramsey\\Collection\\": "src/"
  4320. }
  4321. },
  4322. "notification-url": "https://packagist.org/downloads/",
  4323. "license": [
  4324. "MIT"
  4325. ],
  4326. "authors": [
  4327. {
  4328. "name": "Ben Ramsey",
  4329. "email": "[email protected]",
  4330. "homepage": "https://benramsey.com"
  4331. }
  4332. ],
  4333. "description": "A PHP 7.2+ library for representing and manipulating collections.",
  4334. "keywords": [
  4335. "array",
  4336. "collection",
  4337. "hash",
  4338. "map",
  4339. "queue",
  4340. "set"
  4341. ],
  4342. "support": {
  4343. "issues": "https://github.com/ramsey/collection/issues",
  4344. "source": "https://github.com/ramsey/collection/tree/1.1.3"
  4345. },
  4346. "funding": [
  4347. {
  4348. "url": "https://github.com/ramsey",
  4349. "type": "github"
  4350. },
  4351. {
  4352. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4353. "type": "tidelift"
  4354. }
  4355. ],
  4356. "time": "2021-01-21T17:40:04+00:00"
  4357. },
  4358. {
  4359. "name": "ramsey/uuid",
  4360. "version": "4.1.1",
  4361. "source": {
  4362. "type": "git",
  4363. "url": "https://github.com/ramsey/uuid.git",
  4364. "reference": "cd4032040a750077205918c86049aa0f43d22947"
  4365. },
  4366. "dist": {
  4367. "type": "zip",
  4368. "url": "https://api.github.com/repos/ramsey/uuid/zipball/cd4032040a750077205918c86049aa0f43d22947",
  4369. "reference": "cd4032040a750077205918c86049aa0f43d22947",
  4370. "shasum": ""
  4371. },
  4372. "require": {
  4373. "brick/math": "^0.8 || ^0.9",
  4374. "ext-json": "*",
  4375. "php": "^7.2 || ^8",
  4376. "ramsey/collection": "^1.0",
  4377. "symfony/polyfill-ctype": "^1.8"
  4378. },
  4379. "replace": {
  4380. "rhumsaa/uuid": "self.version"
  4381. },
  4382. "require-dev": {
  4383. "codeception/aspect-mock": "^3",
  4384. "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7.0",
  4385. "doctrine/annotations": "^1.8",
  4386. "goaop/framework": "^2",
  4387. "mockery/mockery": "^1.3",
  4388. "moontoast/math": "^1.1",
  4389. "paragonie/random-lib": "^2",
  4390. "php-mock/php-mock-mockery": "^1.3",
  4391. "php-mock/php-mock-phpunit": "^2.5",
  4392. "php-parallel-lint/php-parallel-lint": "^1.1",
  4393. "phpbench/phpbench": "^0.17.1",
  4394. "phpstan/extension-installer": "^1.0",
  4395. "phpstan/phpstan": "^0.12",
  4396. "phpstan/phpstan-mockery": "^0.12",
  4397. "phpstan/phpstan-phpunit": "^0.12",
  4398. "phpunit/phpunit": "^8.5",
  4399. "psy/psysh": "^0.10.0",
  4400. "slevomat/coding-standard": "^6.0",
  4401. "squizlabs/php_codesniffer": "^3.5",
  4402. "vimeo/psalm": "3.9.4"
  4403. },
  4404. "suggest": {
  4405. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4406. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  4407. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4408. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4409. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4410. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4411. },
  4412. "type": "library",
  4413. "extra": {
  4414. "branch-alias": {
  4415. "dev-master": "4.x-dev"
  4416. }
  4417. },
  4418. "autoload": {
  4419. "psr-4": {
  4420. "Ramsey\\Uuid\\": "src/"
  4421. },
  4422. "files": [
  4423. "src/functions.php"
  4424. ]
  4425. },
  4426. "notification-url": "https://packagist.org/downloads/",
  4427. "license": [
  4428. "MIT"
  4429. ],
  4430. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4431. "homepage": "https://github.com/ramsey/uuid",
  4432. "keywords": [
  4433. "guid",
  4434. "identifier",
  4435. "uuid"
  4436. ],
  4437. "support": {
  4438. "issues": "https://github.com/ramsey/uuid/issues",
  4439. "rss": "https://github.com/ramsey/uuid/releases.atom",
  4440. "source": "https://github.com/ramsey/uuid"
  4441. },
  4442. "funding": [
  4443. {
  4444. "url": "https://github.com/ramsey",
  4445. "type": "github"
  4446. }
  4447. ],
  4448. "time": "2020-08-18T17:17:46+00:00"
  4449. },
  4450. {
  4451. "name": "rap2hpoutre/laravel-log-viewer",
  4452. "version": "v1.7.0",
  4453. "source": {
  4454. "type": "git",
  4455. "url": "https://github.com/rap2hpoutre/laravel-log-viewer.git",
  4456. "reference": "27392d29234b6ff38a456454558f4bcc40cc837a"
  4457. },
  4458. "dist": {
  4459. "type": "zip",
  4460. "url": "https://api.github.com/repos/rap2hpoutre/laravel-log-viewer/zipball/27392d29234b6ff38a456454558f4bcc40cc837a",
  4461. "reference": "27392d29234b6ff38a456454558f4bcc40cc837a",
  4462. "shasum": ""
  4463. },
  4464. "require": {
  4465. "illuminate/support": "4.2.*|5.*|^6.0|^7.0|^8.0",
  4466. "php": ">=5.4.0"
  4467. },
  4468. "require-dev": {
  4469. "orchestra/testbench": "3.7.*",
  4470. "phpunit/phpunit": "^7"
  4471. },
  4472. "type": "laravel-package",
  4473. "extra": {
  4474. "laravel": {
  4475. "providers": [
  4476. "Rap2hpoutre\\LaravelLogViewer\\LaravelLogViewerServiceProvider"
  4477. ]
  4478. }
  4479. },
  4480. "autoload": {
  4481. "classmap": [
  4482. "src/controllers"
  4483. ],
  4484. "psr-0": {
  4485. "Rap2hpoutre\\LaravelLogViewer\\": "src/"
  4486. }
  4487. },
  4488. "notification-url": "https://packagist.org/downloads/",
  4489. "license": [
  4490. "MIT"
  4491. ],
  4492. "authors": [
  4493. {
  4494. "name": "rap2hpoutre",
  4495. "email": "[email protected]"
  4496. }
  4497. ],
  4498. "description": "A Laravel log reader",
  4499. "keywords": [
  4500. "laravel",
  4501. "log",
  4502. "log-reader",
  4503. "log-viewer",
  4504. "logging",
  4505. "lumen"
  4506. ],
  4507. "support": {
  4508. "issues": "https://github.com/rap2hpoutre/laravel-log-viewer/issues",
  4509. "source": "https://github.com/rap2hpoutre/laravel-log-viewer/tree/master"
  4510. },
  4511. "time": "2020-09-08T12:21:27+00:00"
  4512. },
  4513. {
  4514. "name": "riverslei/payment",
  4515. "version": "v5.1.0",
  4516. "source": {
  4517. "type": "git",
  4518. "url": "https://github.com/helei112g/payment.git",
  4519. "reference": "77f671b68b0285a6af77dc7c5afa36eabcae35aa"
  4520. },
  4521. "dist": {
  4522. "type": "zip",
  4523. "url": "https://api.github.com/repos/helei112g/payment/zipball/77f671b68b0285a6af77dc7c5afa36eabcae35aa",
  4524. "reference": "77f671b68b0285a6af77dc7c5afa36eabcae35aa",
  4525. "shasum": ""
  4526. },
  4527. "require": {
  4528. "ext-bcmath": "*",
  4529. "ext-json": "*",
  4530. "ext-mbstring": "*",
  4531. "ext-openssl": "*",
  4532. "ext-simplexml": "*",
  4533. "ext-xml": "*",
  4534. "guzzlehttp/guzzle": "~6.0",
  4535. "php": ">=7.0"
  4536. },
  4537. "require-dev": {
  4538. "codeception/codeception": "*"
  4539. },
  4540. "type": "library",
  4541. "autoload": {
  4542. "psr-4": {
  4543. "Payment\\": "src/"
  4544. }
  4545. },
  4546. "notification-url": "https://packagist.org/downloads/",
  4547. "license": [
  4548. "MIT"
  4549. ],
  4550. "authors": [
  4551. {
  4552. "name": "Leo",
  4553. "email": "[email protected]",
  4554. "homepage": "https://dayutalk.cn"
  4555. }
  4556. ],
  4557. "description": "支付宝支付、微信支付、招商一网通支付php SDK。方便快速接入,最完整的开源支付 php sdk",
  4558. "homepage": "http://helei112g.github.io/payment",
  4559. "keywords": [
  4560. "alipay",
  4561. "weixin",
  4562. "一网通",
  4563. "微信支付",
  4564. "招商一网通",
  4565. "支付宝支付",
  4566. "集成支付接口SDK"
  4567. ],
  4568. "support": {
  4569. "issues": "https://github.com/helei112g/payment/issues",
  4570. "source": "https://github.com/helei112g/payment/tree/v5.x"
  4571. },
  4572. "time": "2020-05-04T03:07:17+00:00"
  4573. },
  4574. {
  4575. "name": "spatie/laravel-permission",
  4576. "version": "4.0.0",
  4577. "source": {
  4578. "type": "git",
  4579. "url": "https://github.com/spatie/laravel-permission.git",
  4580. "reference": "7936ea9ebbd0d91877109dfeda1659fc4570a6cc"
  4581. },
  4582. "dist": {
  4583. "type": "zip",
  4584. "url": "https://api.github.com/repos/spatie/laravel-permission/zipball/7936ea9ebbd0d91877109dfeda1659fc4570a6cc",
  4585. "reference": "7936ea9ebbd0d91877109dfeda1659fc4570a6cc",
  4586. "shasum": ""
  4587. },
  4588. "require": {
  4589. "illuminate/auth": "^6.0|^7.0|^8.0",
  4590. "illuminate/container": "^6.0|^7.0|^8.0",
  4591. "illuminate/contracts": "^6.0|^7.0|^8.0",
  4592. "illuminate/database": "^6.0|^7.0|^8.0",
  4593. "php": "^7.2.5|^8.0"
  4594. },
  4595. "require-dev": {
  4596. "orchestra/testbench": "^4.0|^5.0|^6.0",
  4597. "phpunit/phpunit": "^8.0|^9.0",
  4598. "predis/predis": "^1.1"
  4599. },
  4600. "type": "library",
  4601. "extra": {
  4602. "laravel": {
  4603. "providers": [
  4604. "Spatie\\Permission\\PermissionServiceProvider"
  4605. ]
  4606. }
  4607. },
  4608. "autoload": {
  4609. "psr-4": {
  4610. "Spatie\\Permission\\": "src"
  4611. },
  4612. "files": [
  4613. "src/helpers.php"
  4614. ]
  4615. },
  4616. "notification-url": "https://packagist.org/downloads/",
  4617. "license": [
  4618. "MIT"
  4619. ],
  4620. "authors": [
  4621. {
  4622. "name": "Freek Van der Herten",
  4623. "email": "[email protected]",
  4624. "homepage": "https://spatie.be",
  4625. "role": "Developer"
  4626. }
  4627. ],
  4628. "description": "Permission handling for Laravel 6.0 and up",
  4629. "homepage": "https://github.com/spatie/laravel-permission",
  4630. "keywords": [
  4631. "acl",
  4632. "laravel",
  4633. "permission",
  4634. "permissions",
  4635. "rbac",
  4636. "roles",
  4637. "security",
  4638. "spatie"
  4639. ],
  4640. "support": {
  4641. "issues": "https://github.com/spatie/laravel-permission/issues",
  4642. "source": "https://github.com/spatie/laravel-permission/tree/4.0.0"
  4643. },
  4644. "funding": [
  4645. {
  4646. "url": "https://github.com/spatie",
  4647. "type": "github"
  4648. }
  4649. ],
  4650. "time": "2021-01-27T23:03:34+00:00"
  4651. },
  4652. {
  4653. "name": "srmklive/paypal",
  4654. "version": "1.8.0",
  4655. "source": {
  4656. "type": "git",
  4657. "url": "https://github.com/srmklive/laravel-paypal.git",
  4658. "reference": "0c2ae237577f62396d474674cb40f82825a41ffb"
  4659. },
  4660. "dist": {
  4661. "type": "zip",
  4662. "url": "https://api.github.com/repos/srmklive/laravel-paypal/zipball/0c2ae237577f62396d474674cb40f82825a41ffb",
  4663. "reference": "0c2ae237577f62396d474674cb40f82825a41ffb",
  4664. "shasum": ""
  4665. },
  4666. "require": {
  4667. "guzzlehttp/guzzle": "~6.0|~7.0",
  4668. "illuminate/support": "~5.1|~5.2|~5.3|~5.4|~5.5|~5.6|~5.7|~5.8|~6.0|~7.0|~8.0",
  4669. "nesbot/carbon": "~1.0|~2.0"
  4670. },
  4671. "type": "library",
  4672. "extra": {
  4673. "laravel": {
  4674. "providers": [
  4675. "Srmklive\\PayPal\\Providers\\PayPalServiceProvider"
  4676. ],
  4677. "aliases": {
  4678. "PayPal": "Srmklive\\PayPal\\Facades\\PayPal"
  4679. }
  4680. }
  4681. },
  4682. "autoload": {
  4683. "psr-4": {
  4684. "Srmklive\\PayPal\\": "src/"
  4685. }
  4686. },
  4687. "notification-url": "https://packagist.org/downloads/",
  4688. "license": [
  4689. "MIT"
  4690. ],
  4691. "authors": [
  4692. {
  4693. "name": "Raza Mehdi",
  4694. "email": "[email protected]"
  4695. }
  4696. ],
  4697. "description": "Laravel plugin For Processing Payments Through Paypal Express Checkout. Can Be Used Independently With Other Applications.",
  4698. "keywords": [
  4699. "http",
  4700. "laravel paypal",
  4701. "paypal",
  4702. "rest",
  4703. "web service"
  4704. ],
  4705. "support": {
  4706. "issues": "https://github.com/srmklive/laravel-paypal/issues",
  4707. "source": "https://github.com/srmklive/laravel-paypal/tree/v1.0"
  4708. },
  4709. "time": "2020-09-03T07:50:08+00:00"
  4710. },
  4711. {
  4712. "name": "stripe/stripe-php",
  4713. "version": "v7.75.0",
  4714. "source": {
  4715. "type": "git",
  4716. "url": "https://github.com/stripe/stripe-php.git",
  4717. "reference": "d377a667cd789b99ccab768441a5a2160cc4ea80"
  4718. },
  4719. "dist": {
  4720. "type": "zip",
  4721. "url": "https://api.github.com/repos/stripe/stripe-php/zipball/d377a667cd789b99ccab768441a5a2160cc4ea80",
  4722. "reference": "d377a667cd789b99ccab768441a5a2160cc4ea80",
  4723. "shasum": ""
  4724. },
  4725. "require": {
  4726. "ext-curl": "*",
  4727. "ext-json": "*",
  4728. "ext-mbstring": "*",
  4729. "php": ">=5.6.0"
  4730. },
  4731. "require-dev": {
  4732. "friendsofphp/php-cs-fixer": "2.17.1",
  4733. "php-coveralls/php-coveralls": "^2.1",
  4734. "phpunit/phpunit": "^5.7",
  4735. "squizlabs/php_codesniffer": "^3.3",
  4736. "symfony/process": "~3.4"
  4737. },
  4738. "type": "library",
  4739. "extra": {
  4740. "branch-alias": {
  4741. "dev-master": "2.0-dev"
  4742. }
  4743. },
  4744. "autoload": {
  4745. "psr-4": {
  4746. "Stripe\\": "lib/"
  4747. }
  4748. },
  4749. "notification-url": "https://packagist.org/downloads/",
  4750. "license": [
  4751. "MIT"
  4752. ],
  4753. "authors": [
  4754. {
  4755. "name": "Stripe and contributors",
  4756. "homepage": "https://github.com/stripe/stripe-php/contributors"
  4757. }
  4758. ],
  4759. "description": "Stripe PHP Library",
  4760. "homepage": "https://stripe.com/",
  4761. "keywords": [
  4762. "api",
  4763. "payment processing",
  4764. "stripe"
  4765. ],
  4766. "support": {
  4767. "issues": "https://github.com/stripe/stripe-php/issues",
  4768. "source": "https://github.com/stripe/stripe-php/tree/v7.75.0"
  4769. },
  4770. "time": "2021-02-22T14:31:21+00:00"
  4771. },
  4772. {
  4773. "name": "swiftmailer/swiftmailer",
  4774. "version": "v6.2.7",
  4775. "source": {
  4776. "type": "git",
  4777. "url": "https://github.com/swiftmailer/swiftmailer.git",
  4778. "reference": "15f7faf8508e04471f666633addacf54c0ab5933"
  4779. },
  4780. "dist": {
  4781. "type": "zip",
  4782. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/15f7faf8508e04471f666633addacf54c0ab5933",
  4783. "reference": "15f7faf8508e04471f666633addacf54c0ab5933",
  4784. "shasum": ""
  4785. },
  4786. "require": {
  4787. "egulias/email-validator": "^2.0|^3.1",
  4788. "php": ">=7.0.0",
  4789. "symfony/polyfill-iconv": "^1.0",
  4790. "symfony/polyfill-intl-idn": "^1.10",
  4791. "symfony/polyfill-mbstring": "^1.0"
  4792. },
  4793. "require-dev": {
  4794. "mockery/mockery": "^1.0",
  4795. "symfony/phpunit-bridge": "^4.4|^5.0"
  4796. },
  4797. "suggest": {
  4798. "ext-intl": "Needed to support internationalized email addresses"
  4799. },
  4800. "type": "library",
  4801. "extra": {
  4802. "branch-alias": {
  4803. "dev-master": "6.2-dev"
  4804. }
  4805. },
  4806. "autoload": {
  4807. "files": [
  4808. "lib/swift_required.php"
  4809. ]
  4810. },
  4811. "notification-url": "https://packagist.org/downloads/",
  4812. "license": [
  4813. "MIT"
  4814. ],
  4815. "authors": [
  4816. {
  4817. "name": "Chris Corbyn"
  4818. },
  4819. {
  4820. "name": "Fabien Potencier",
  4821. "email": "[email protected]"
  4822. }
  4823. ],
  4824. "description": "Swiftmailer, free feature-rich PHP mailer",
  4825. "homepage": "https://swiftmailer.symfony.com",
  4826. "keywords": [
  4827. "email",
  4828. "mail",
  4829. "mailer"
  4830. ],
  4831. "support": {
  4832. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  4833. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.2.7"
  4834. },
  4835. "funding": [
  4836. {
  4837. "url": "https://github.com/fabpot",
  4838. "type": "github"
  4839. },
  4840. {
  4841. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  4842. "type": "tidelift"
  4843. }
  4844. ],
  4845. "time": "2021-03-09T12:30:35+00:00"
  4846. },
  4847. {
  4848. "name": "symfony/console",
  4849. "version": "v5.2.5",
  4850. "source": {
  4851. "type": "git",
  4852. "url": "https://github.com/symfony/console.git",
  4853. "reference": "938ebbadae1b0a9c9d1ec313f87f9708609f1b79"
  4854. },
  4855. "dist": {
  4856. "type": "zip",
  4857. "url": "https://api.github.com/repos/symfony/console/zipball/938ebbadae1b0a9c9d1ec313f87f9708609f1b79",
  4858. "reference": "938ebbadae1b0a9c9d1ec313f87f9708609f1b79",
  4859. "shasum": ""
  4860. },
  4861. "require": {
  4862. "php": ">=7.2.5",
  4863. "symfony/polyfill-mbstring": "~1.0",
  4864. "symfony/polyfill-php73": "^1.8",
  4865. "symfony/polyfill-php80": "^1.15",
  4866. "symfony/service-contracts": "^1.1|^2",
  4867. "symfony/string": "^5.1"
  4868. },
  4869. "conflict": {
  4870. "symfony/dependency-injection": "<4.4",
  4871. "symfony/dotenv": "<5.1",
  4872. "symfony/event-dispatcher": "<4.4",
  4873. "symfony/lock": "<4.4",
  4874. "symfony/process": "<4.4"
  4875. },
  4876. "provide": {
  4877. "psr/log-implementation": "1.0"
  4878. },
  4879. "require-dev": {
  4880. "psr/log": "~1.0",
  4881. "symfony/config": "^4.4|^5.0",
  4882. "symfony/dependency-injection": "^4.4|^5.0",
  4883. "symfony/event-dispatcher": "^4.4|^5.0",
  4884. "symfony/lock": "^4.4|^5.0",
  4885. "symfony/process": "^4.4|^5.0",
  4886. "symfony/var-dumper": "^4.4|^5.0"
  4887. },
  4888. "suggest": {
  4889. "psr/log": "For using the console logger",
  4890. "symfony/event-dispatcher": "",
  4891. "symfony/lock": "",
  4892. "symfony/process": ""
  4893. },
  4894. "type": "library",
  4895. "autoload": {
  4896. "psr-4": {
  4897. "Symfony\\Component\\Console\\": ""
  4898. },
  4899. "exclude-from-classmap": [
  4900. "/Tests/"
  4901. ]
  4902. },
  4903. "notification-url": "https://packagist.org/downloads/",
  4904. "license": [
  4905. "MIT"
  4906. ],
  4907. "authors": [
  4908. {
  4909. "name": "Fabien Potencier",
  4910. "email": "[email protected]"
  4911. },
  4912. {
  4913. "name": "Symfony Community",
  4914. "homepage": "https://symfony.com/contributors"
  4915. }
  4916. ],
  4917. "description": "Eases the creation of beautiful and testable command line interfaces",
  4918. "homepage": "https://symfony.com",
  4919. "keywords": [
  4920. "cli",
  4921. "command line",
  4922. "console",
  4923. "terminal"
  4924. ],
  4925. "support": {
  4926. "source": "https://github.com/symfony/console/tree/v5.2.5"
  4927. },
  4928. "funding": [
  4929. {
  4930. "url": "https://symfony.com/sponsor",
  4931. "type": "custom"
  4932. },
  4933. {
  4934. "url": "https://github.com/fabpot",
  4935. "type": "github"
  4936. },
  4937. {
  4938. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4939. "type": "tidelift"
  4940. }
  4941. ],
  4942. "time": "2021-03-06T13:42:15+00:00"
  4943. },
  4944. {
  4945. "name": "symfony/css-selector",
  4946. "version": "v5.2.4",
  4947. "source": {
  4948. "type": "git",
  4949. "url": "https://github.com/symfony/css-selector.git",
  4950. "reference": "f65f217b3314504a1ec99c2d6ef69016bb13490f"
  4951. },
  4952. "dist": {
  4953. "type": "zip",
  4954. "url": "https://api.github.com/repos/symfony/css-selector/zipball/f65f217b3314504a1ec99c2d6ef69016bb13490f",
  4955. "reference": "f65f217b3314504a1ec99c2d6ef69016bb13490f",
  4956. "shasum": ""
  4957. },
  4958. "require": {
  4959. "php": ">=7.2.5"
  4960. },
  4961. "type": "library",
  4962. "autoload": {
  4963. "psr-4": {
  4964. "Symfony\\Component\\CssSelector\\": ""
  4965. },
  4966. "exclude-from-classmap": [
  4967. "/Tests/"
  4968. ]
  4969. },
  4970. "notification-url": "https://packagist.org/downloads/",
  4971. "license": [
  4972. "MIT"
  4973. ],
  4974. "authors": [
  4975. {
  4976. "name": "Fabien Potencier",
  4977. "email": "[email protected]"
  4978. },
  4979. {
  4980. "name": "Jean-François Simon",
  4981. "email": "[email protected]"
  4982. },
  4983. {
  4984. "name": "Symfony Community",
  4985. "homepage": "https://symfony.com/contributors"
  4986. }
  4987. ],
  4988. "description": "Converts CSS selectors to XPath expressions",
  4989. "homepage": "https://symfony.com",
  4990. "support": {
  4991. "source": "https://github.com/symfony/css-selector/tree/v5.2.4"
  4992. },
  4993. "funding": [
  4994. {
  4995. "url": "https://symfony.com/sponsor",
  4996. "type": "custom"
  4997. },
  4998. {
  4999. "url": "https://github.com/fabpot",
  5000. "type": "github"
  5001. },
  5002. {
  5003. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5004. "type": "tidelift"
  5005. }
  5006. ],
  5007. "time": "2021-01-27T10:01:46+00:00"
  5008. },
  5009. {
  5010. "name": "symfony/deprecation-contracts",
  5011. "version": "v2.2.0",
  5012. "source": {
  5013. "type": "git",
  5014. "url": "https://github.com/symfony/deprecation-contracts.git",
  5015. "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665"
  5016. },
  5017. "dist": {
  5018. "type": "zip",
  5019. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5fa56b4074d1ae755beb55617ddafe6f5d78f665",
  5020. "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665",
  5021. "shasum": ""
  5022. },
  5023. "require": {
  5024. "php": ">=7.1"
  5025. },
  5026. "type": "library",
  5027. "extra": {
  5028. "branch-alias": {
  5029. "dev-master": "2.2-dev"
  5030. },
  5031. "thanks": {
  5032. "name": "symfony/contracts",
  5033. "url": "https://github.com/symfony/contracts"
  5034. }
  5035. },
  5036. "autoload": {
  5037. "files": [
  5038. "function.php"
  5039. ]
  5040. },
  5041. "notification-url": "https://packagist.org/downloads/",
  5042. "license": [
  5043. "MIT"
  5044. ],
  5045. "authors": [
  5046. {
  5047. "name": "Nicolas Grekas",
  5048. "email": "[email protected]"
  5049. },
  5050. {
  5051. "name": "Symfony Community",
  5052. "homepage": "https://symfony.com/contributors"
  5053. }
  5054. ],
  5055. "description": "A generic function and convention to trigger deprecation notices",
  5056. "homepage": "https://symfony.com",
  5057. "support": {
  5058. "source": "https://github.com/symfony/deprecation-contracts/tree/master"
  5059. },
  5060. "funding": [
  5061. {
  5062. "url": "https://symfony.com/sponsor",
  5063. "type": "custom"
  5064. },
  5065. {
  5066. "url": "https://github.com/fabpot",
  5067. "type": "github"
  5068. },
  5069. {
  5070. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5071. "type": "tidelift"
  5072. }
  5073. ],
  5074. "time": "2020-09-07T11:33:47+00:00"
  5075. },
  5076. {
  5077. "name": "symfony/error-handler",
  5078. "version": "v5.2.4",
  5079. "source": {
  5080. "type": "git",
  5081. "url": "https://github.com/symfony/error-handler.git",
  5082. "reference": "b547d3babcab5c31e01de59ee33e9d9c1421d7d0"
  5083. },
  5084. "dist": {
  5085. "type": "zip",
  5086. "url": "https://api.github.com/repos/symfony/error-handler/zipball/b547d3babcab5c31e01de59ee33e9d9c1421d7d0",
  5087. "reference": "b547d3babcab5c31e01de59ee33e9d9c1421d7d0",
  5088. "shasum": ""
  5089. },
  5090. "require": {
  5091. "php": ">=7.2.5",
  5092. "psr/log": "^1.0",
  5093. "symfony/polyfill-php80": "^1.15",
  5094. "symfony/var-dumper": "^4.4|^5.0"
  5095. },
  5096. "require-dev": {
  5097. "symfony/deprecation-contracts": "^2.1",
  5098. "symfony/http-kernel": "^4.4|^5.0",
  5099. "symfony/serializer": "^4.4|^5.0"
  5100. },
  5101. "type": "library",
  5102. "autoload": {
  5103. "psr-4": {
  5104. "Symfony\\Component\\ErrorHandler\\": ""
  5105. },
  5106. "exclude-from-classmap": [
  5107. "/Tests/"
  5108. ]
  5109. },
  5110. "notification-url": "https://packagist.org/downloads/",
  5111. "license": [
  5112. "MIT"
  5113. ],
  5114. "authors": [
  5115. {
  5116. "name": "Fabien Potencier",
  5117. "email": "[email protected]"
  5118. },
  5119. {
  5120. "name": "Symfony Community",
  5121. "homepage": "https://symfony.com/contributors"
  5122. }
  5123. ],
  5124. "description": "Provides tools to manage errors and ease debugging PHP code",
  5125. "homepage": "https://symfony.com",
  5126. "support": {
  5127. "source": "https://github.com/symfony/error-handler/tree/v5.2.4"
  5128. },
  5129. "funding": [
  5130. {
  5131. "url": "https://symfony.com/sponsor",
  5132. "type": "custom"
  5133. },
  5134. {
  5135. "url": "https://github.com/fabpot",
  5136. "type": "github"
  5137. },
  5138. {
  5139. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5140. "type": "tidelift"
  5141. }
  5142. ],
  5143. "time": "2021-02-11T08:21:20+00:00"
  5144. },
  5145. {
  5146. "name": "symfony/event-dispatcher",
  5147. "version": "v5.2.4",
  5148. "source": {
  5149. "type": "git",
  5150. "url": "https://github.com/symfony/event-dispatcher.git",
  5151. "reference": "d08d6ec121a425897951900ab692b612a61d6240"
  5152. },
  5153. "dist": {
  5154. "type": "zip",
  5155. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/d08d6ec121a425897951900ab692b612a61d6240",
  5156. "reference": "d08d6ec121a425897951900ab692b612a61d6240",
  5157. "shasum": ""
  5158. },
  5159. "require": {
  5160. "php": ">=7.2.5",
  5161. "symfony/deprecation-contracts": "^2.1",
  5162. "symfony/event-dispatcher-contracts": "^2",
  5163. "symfony/polyfill-php80": "^1.15"
  5164. },
  5165. "conflict": {
  5166. "symfony/dependency-injection": "<4.4"
  5167. },
  5168. "provide": {
  5169. "psr/event-dispatcher-implementation": "1.0",
  5170. "symfony/event-dispatcher-implementation": "2.0"
  5171. },
  5172. "require-dev": {
  5173. "psr/log": "~1.0",
  5174. "symfony/config": "^4.4|^5.0",
  5175. "symfony/dependency-injection": "^4.4|^5.0",
  5176. "symfony/error-handler": "^4.4|^5.0",
  5177. "symfony/expression-language": "^4.4|^5.0",
  5178. "symfony/http-foundation": "^4.4|^5.0",
  5179. "symfony/service-contracts": "^1.1|^2",
  5180. "symfony/stopwatch": "^4.4|^5.0"
  5181. },
  5182. "suggest": {
  5183. "symfony/dependency-injection": "",
  5184. "symfony/http-kernel": ""
  5185. },
  5186. "type": "library",
  5187. "autoload": {
  5188. "psr-4": {
  5189. "Symfony\\Component\\EventDispatcher\\": ""
  5190. },
  5191. "exclude-from-classmap": [
  5192. "/Tests/"
  5193. ]
  5194. },
  5195. "notification-url": "https://packagist.org/downloads/",
  5196. "license": [
  5197. "MIT"
  5198. ],
  5199. "authors": [
  5200. {
  5201. "name": "Fabien Potencier",
  5202. "email": "[email protected]"
  5203. },
  5204. {
  5205. "name": "Symfony Community",
  5206. "homepage": "https://symfony.com/contributors"
  5207. }
  5208. ],
  5209. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5210. "homepage": "https://symfony.com",
  5211. "support": {
  5212. "source": "https://github.com/symfony/event-dispatcher/tree/v5.2.4"
  5213. },
  5214. "funding": [
  5215. {
  5216. "url": "https://symfony.com/sponsor",
  5217. "type": "custom"
  5218. },
  5219. {
  5220. "url": "https://github.com/fabpot",
  5221. "type": "github"
  5222. },
  5223. {
  5224. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5225. "type": "tidelift"
  5226. }
  5227. ],
  5228. "time": "2021-02-18T17:12:37+00:00"
  5229. },
  5230. {
  5231. "name": "symfony/event-dispatcher-contracts",
  5232. "version": "v2.2.0",
  5233. "source": {
  5234. "type": "git",
  5235. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5236. "reference": "0ba7d54483095a198fa51781bc608d17e84dffa2"
  5237. },
  5238. "dist": {
  5239. "type": "zip",
  5240. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/0ba7d54483095a198fa51781bc608d17e84dffa2",
  5241. "reference": "0ba7d54483095a198fa51781bc608d17e84dffa2",
  5242. "shasum": ""
  5243. },
  5244. "require": {
  5245. "php": ">=7.2.5",
  5246. "psr/event-dispatcher": "^1"
  5247. },
  5248. "suggest": {
  5249. "symfony/event-dispatcher-implementation": ""
  5250. },
  5251. "type": "library",
  5252. "extra": {
  5253. "branch-alias": {
  5254. "dev-master": "2.2-dev"
  5255. },
  5256. "thanks": {
  5257. "name": "symfony/contracts",
  5258. "url": "https://github.com/symfony/contracts"
  5259. }
  5260. },
  5261. "autoload": {
  5262. "psr-4": {
  5263. "Symfony\\Contracts\\EventDispatcher\\": ""
  5264. }
  5265. },
  5266. "notification-url": "https://packagist.org/downloads/",
  5267. "license": [
  5268. "MIT"
  5269. ],
  5270. "authors": [
  5271. {
  5272. "name": "Nicolas Grekas",
  5273. "email": "[email protected]"
  5274. },
  5275. {
  5276. "name": "Symfony Community",
  5277. "homepage": "https://symfony.com/contributors"
  5278. }
  5279. ],
  5280. "description": "Generic abstractions related to dispatching event",
  5281. "homepage": "https://symfony.com",
  5282. "keywords": [
  5283. "abstractions",
  5284. "contracts",
  5285. "decoupling",
  5286. "interfaces",
  5287. "interoperability",
  5288. "standards"
  5289. ],
  5290. "support": {
  5291. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.2.0"
  5292. },
  5293. "funding": [
  5294. {
  5295. "url": "https://symfony.com/sponsor",
  5296. "type": "custom"
  5297. },
  5298. {
  5299. "url": "https://github.com/fabpot",
  5300. "type": "github"
  5301. },
  5302. {
  5303. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5304. "type": "tidelift"
  5305. }
  5306. ],
  5307. "time": "2020-09-07T11:33:47+00:00"
  5308. },
  5309. {
  5310. "name": "symfony/finder",
  5311. "version": "v5.2.4",
  5312. "source": {
  5313. "type": "git",
  5314. "url": "https://github.com/symfony/finder.git",
  5315. "reference": "0d639a0943822626290d169965804f79400e6a04"
  5316. },
  5317. "dist": {
  5318. "type": "zip",
  5319. "url": "https://api.github.com/repos/symfony/finder/zipball/0d639a0943822626290d169965804f79400e6a04",
  5320. "reference": "0d639a0943822626290d169965804f79400e6a04",
  5321. "shasum": ""
  5322. },
  5323. "require": {
  5324. "php": ">=7.2.5"
  5325. },
  5326. "type": "library",
  5327. "autoload": {
  5328. "psr-4": {
  5329. "Symfony\\Component\\Finder\\": ""
  5330. },
  5331. "exclude-from-classmap": [
  5332. "/Tests/"
  5333. ]
  5334. },
  5335. "notification-url": "https://packagist.org/downloads/",
  5336. "license": [
  5337. "MIT"
  5338. ],
  5339. "authors": [
  5340. {
  5341. "name": "Fabien Potencier",
  5342. "email": "[email protected]"
  5343. },
  5344. {
  5345. "name": "Symfony Community",
  5346. "homepage": "https://symfony.com/contributors"
  5347. }
  5348. ],
  5349. "description": "Finds files and directories via an intuitive fluent interface",
  5350. "homepage": "https://symfony.com",
  5351. "support": {
  5352. "source": "https://github.com/symfony/finder/tree/v5.2.4"
  5353. },
  5354. "funding": [
  5355. {
  5356. "url": "https://symfony.com/sponsor",
  5357. "type": "custom"
  5358. },
  5359. {
  5360. "url": "https://github.com/fabpot",
  5361. "type": "github"
  5362. },
  5363. {
  5364. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5365. "type": "tidelift"
  5366. }
  5367. ],
  5368. "time": "2021-02-15T18:55:04+00:00"
  5369. },
  5370. {
  5371. "name": "symfony/http-client-contracts",
  5372. "version": "v2.3.1",
  5373. "source": {
  5374. "type": "git",
  5375. "url": "https://github.com/symfony/http-client-contracts.git",
  5376. "reference": "41db680a15018f9c1d4b23516059633ce280ca33"
  5377. },
  5378. "dist": {
  5379. "type": "zip",
  5380. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/41db680a15018f9c1d4b23516059633ce280ca33",
  5381. "reference": "41db680a15018f9c1d4b23516059633ce280ca33",
  5382. "shasum": ""
  5383. },
  5384. "require": {
  5385. "php": ">=7.2.5"
  5386. },
  5387. "suggest": {
  5388. "symfony/http-client-implementation": ""
  5389. },
  5390. "type": "library",
  5391. "extra": {
  5392. "branch-version": "2.3",
  5393. "branch-alias": {
  5394. "dev-main": "2.3-dev"
  5395. },
  5396. "thanks": {
  5397. "name": "symfony/contracts",
  5398. "url": "https://github.com/symfony/contracts"
  5399. }
  5400. },
  5401. "autoload": {
  5402. "psr-4": {
  5403. "Symfony\\Contracts\\HttpClient\\": ""
  5404. }
  5405. },
  5406. "notification-url": "https://packagist.org/downloads/",
  5407. "license": [
  5408. "MIT"
  5409. ],
  5410. "authors": [
  5411. {
  5412. "name": "Nicolas Grekas",
  5413. "email": "[email protected]"
  5414. },
  5415. {
  5416. "name": "Symfony Community",
  5417. "homepage": "https://symfony.com/contributors"
  5418. }
  5419. ],
  5420. "description": "Generic abstractions related to HTTP clients",
  5421. "homepage": "https://symfony.com",
  5422. "keywords": [
  5423. "abstractions",
  5424. "contracts",
  5425. "decoupling",
  5426. "interfaces",
  5427. "interoperability",
  5428. "standards"
  5429. ],
  5430. "support": {
  5431. "source": "https://github.com/symfony/http-client-contracts/tree/v2.3.1"
  5432. },
  5433. "funding": [
  5434. {
  5435. "url": "https://symfony.com/sponsor",
  5436. "type": "custom"
  5437. },
  5438. {
  5439. "url": "https://github.com/fabpot",
  5440. "type": "github"
  5441. },
  5442. {
  5443. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5444. "type": "tidelift"
  5445. }
  5446. ],
  5447. "time": "2020-10-14T17:08:19+00:00"
  5448. },
  5449. {
  5450. "name": "symfony/http-foundation",
  5451. "version": "v5.2.4",
  5452. "source": {
  5453. "type": "git",
  5454. "url": "https://github.com/symfony/http-foundation.git",
  5455. "reference": "54499baea7f7418bce7b5ec92770fd0799e8e9bf"
  5456. },
  5457. "dist": {
  5458. "type": "zip",
  5459. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/54499baea7f7418bce7b5ec92770fd0799e8e9bf",
  5460. "reference": "54499baea7f7418bce7b5ec92770fd0799e8e9bf",
  5461. "shasum": ""
  5462. },
  5463. "require": {
  5464. "php": ">=7.2.5",
  5465. "symfony/deprecation-contracts": "^2.1",
  5466. "symfony/polyfill-mbstring": "~1.1",
  5467. "symfony/polyfill-php80": "^1.15"
  5468. },
  5469. "require-dev": {
  5470. "predis/predis": "~1.0",
  5471. "symfony/cache": "^4.4|^5.0",
  5472. "symfony/expression-language": "^4.4|^5.0",
  5473. "symfony/mime": "^4.4|^5.0"
  5474. },
  5475. "suggest": {
  5476. "symfony/mime": "To use the file extension guesser"
  5477. },
  5478. "type": "library",
  5479. "autoload": {
  5480. "psr-4": {
  5481. "Symfony\\Component\\HttpFoundation\\": ""
  5482. },
  5483. "exclude-from-classmap": [
  5484. "/Tests/"
  5485. ]
  5486. },
  5487. "notification-url": "https://packagist.org/downloads/",
  5488. "license": [
  5489. "MIT"
  5490. ],
  5491. "authors": [
  5492. {
  5493. "name": "Fabien Potencier",
  5494. "email": "[email protected]"
  5495. },
  5496. {
  5497. "name": "Symfony Community",
  5498. "homepage": "https://symfony.com/contributors"
  5499. }
  5500. ],
  5501. "description": "Defines an object-oriented layer for the HTTP specification",
  5502. "homepage": "https://symfony.com",
  5503. "support": {
  5504. "source": "https://github.com/symfony/http-foundation/tree/v5.2.4"
  5505. },
  5506. "funding": [
  5507. {
  5508. "url": "https://symfony.com/sponsor",
  5509. "type": "custom"
  5510. },
  5511. {
  5512. "url": "https://github.com/fabpot",
  5513. "type": "github"
  5514. },
  5515. {
  5516. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5517. "type": "tidelift"
  5518. }
  5519. ],
  5520. "time": "2021-02-25T17:16:57+00:00"
  5521. },
  5522. {
  5523. "name": "symfony/http-kernel",
  5524. "version": "v5.2.5",
  5525. "source": {
  5526. "type": "git",
  5527. "url": "https://github.com/symfony/http-kernel.git",
  5528. "reference": "b8c63ef63c2364e174c3b3e0ba0bf83455f97f73"
  5529. },
  5530. "dist": {
  5531. "type": "zip",
  5532. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/b8c63ef63c2364e174c3b3e0ba0bf83455f97f73",
  5533. "reference": "b8c63ef63c2364e174c3b3e0ba0bf83455f97f73",
  5534. "shasum": ""
  5535. },
  5536. "require": {
  5537. "php": ">=7.2.5",
  5538. "psr/log": "~1.0",
  5539. "symfony/deprecation-contracts": "^2.1",
  5540. "symfony/error-handler": "^4.4|^5.0",
  5541. "symfony/event-dispatcher": "^5.0",
  5542. "symfony/http-client-contracts": "^1.1|^2",
  5543. "symfony/http-foundation": "^4.4|^5.0",
  5544. "symfony/polyfill-ctype": "^1.8",
  5545. "symfony/polyfill-php73": "^1.9",
  5546. "symfony/polyfill-php80": "^1.15"
  5547. },
  5548. "conflict": {
  5549. "symfony/browser-kit": "<4.4",
  5550. "symfony/cache": "<5.0",
  5551. "symfony/config": "<5.0",
  5552. "symfony/console": "<4.4",
  5553. "symfony/dependency-injection": "<5.1.8",
  5554. "symfony/doctrine-bridge": "<5.0",
  5555. "symfony/form": "<5.0",
  5556. "symfony/http-client": "<5.0",
  5557. "symfony/mailer": "<5.0",
  5558. "symfony/messenger": "<5.0",
  5559. "symfony/translation": "<5.0",
  5560. "symfony/twig-bridge": "<5.0",
  5561. "symfony/validator": "<5.0",
  5562. "twig/twig": "<2.13"
  5563. },
  5564. "provide": {
  5565. "psr/log-implementation": "1.0"
  5566. },
  5567. "require-dev": {
  5568. "psr/cache": "^1.0|^2.0|^3.0",
  5569. "symfony/browser-kit": "^4.4|^5.0",
  5570. "symfony/config": "^5.0",
  5571. "symfony/console": "^4.4|^5.0",
  5572. "symfony/css-selector": "^4.4|^5.0",
  5573. "symfony/dependency-injection": "^5.1.8",
  5574. "symfony/dom-crawler": "^4.4|^5.0",
  5575. "symfony/expression-language": "^4.4|^5.0",
  5576. "symfony/finder": "^4.4|^5.0",
  5577. "symfony/process": "^4.4|^5.0",
  5578. "symfony/routing": "^4.4|^5.0",
  5579. "symfony/stopwatch": "^4.4|^5.0",
  5580. "symfony/translation": "^4.4|^5.0",
  5581. "symfony/translation-contracts": "^1.1|^2",
  5582. "twig/twig": "^2.13|^3.0.4"
  5583. },
  5584. "suggest": {
  5585. "symfony/browser-kit": "",
  5586. "symfony/config": "",
  5587. "symfony/console": "",
  5588. "symfony/dependency-injection": ""
  5589. },
  5590. "type": "library",
  5591. "autoload": {
  5592. "psr-4": {
  5593. "Symfony\\Component\\HttpKernel\\": ""
  5594. },
  5595. "exclude-from-classmap": [
  5596. "/Tests/"
  5597. ]
  5598. },
  5599. "notification-url": "https://packagist.org/downloads/",
  5600. "license": [
  5601. "MIT"
  5602. ],
  5603. "authors": [
  5604. {
  5605. "name": "Fabien Potencier",
  5606. "email": "[email protected]"
  5607. },
  5608. {
  5609. "name": "Symfony Community",
  5610. "homepage": "https://symfony.com/contributors"
  5611. }
  5612. ],
  5613. "description": "Provides a structured process for converting a Request into a Response",
  5614. "homepage": "https://symfony.com",
  5615. "support": {
  5616. "source": "https://github.com/symfony/http-kernel/tree/v5.2.5"
  5617. },
  5618. "funding": [
  5619. {
  5620. "url": "https://symfony.com/sponsor",
  5621. "type": "custom"
  5622. },
  5623. {
  5624. "url": "https://github.com/fabpot",
  5625. "type": "github"
  5626. },
  5627. {
  5628. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5629. "type": "tidelift"
  5630. }
  5631. ],
  5632. "time": "2021-03-10T17:07:35+00:00"
  5633. },
  5634. {
  5635. "name": "symfony/mime",
  5636. "version": "v5.2.5",
  5637. "source": {
  5638. "type": "git",
  5639. "url": "https://github.com/symfony/mime.git",
  5640. "reference": "554ba128f1955038b45db5e1fa7e93bfc683b139"
  5641. },
  5642. "dist": {
  5643. "type": "zip",
  5644. "url": "https://api.github.com/repos/symfony/mime/zipball/554ba128f1955038b45db5e1fa7e93bfc683b139",
  5645. "reference": "554ba128f1955038b45db5e1fa7e93bfc683b139",
  5646. "shasum": ""
  5647. },
  5648. "require": {
  5649. "php": ">=7.2.5",
  5650. "symfony/deprecation-contracts": "^2.1",
  5651. "symfony/polyfill-intl-idn": "^1.10",
  5652. "symfony/polyfill-mbstring": "^1.0",
  5653. "symfony/polyfill-php80": "^1.15"
  5654. },
  5655. "conflict": {
  5656. "egulias/email-validator": "~3.0.0",
  5657. "phpdocumentor/reflection-docblock": "<3.2.2",
  5658. "phpdocumentor/type-resolver": "<1.4.0",
  5659. "symfony/mailer": "<4.4"
  5660. },
  5661. "require-dev": {
  5662. "egulias/email-validator": "^2.1.10|^3.1",
  5663. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5664. "symfony/dependency-injection": "^4.4|^5.0",
  5665. "symfony/property-access": "^4.4|^5.1",
  5666. "symfony/property-info": "^4.4|^5.1",
  5667. "symfony/serializer": "^5.2"
  5668. },
  5669. "type": "library",
  5670. "autoload": {
  5671. "psr-4": {
  5672. "Symfony\\Component\\Mime\\": ""
  5673. },
  5674. "exclude-from-classmap": [
  5675. "/Tests/"
  5676. ]
  5677. },
  5678. "notification-url": "https://packagist.org/downloads/",
  5679. "license": [
  5680. "MIT"
  5681. ],
  5682. "authors": [
  5683. {
  5684. "name": "Fabien Potencier",
  5685. "email": "[email protected]"
  5686. },
  5687. {
  5688. "name": "Symfony Community",
  5689. "homepage": "https://symfony.com/contributors"
  5690. }
  5691. ],
  5692. "description": "Allows manipulating MIME messages",
  5693. "homepage": "https://symfony.com",
  5694. "keywords": [
  5695. "mime",
  5696. "mime-type"
  5697. ],
  5698. "support": {
  5699. "source": "https://github.com/symfony/mime/tree/v5.2.5"
  5700. },
  5701. "funding": [
  5702. {
  5703. "url": "https://symfony.com/sponsor",
  5704. "type": "custom"
  5705. },
  5706. {
  5707. "url": "https://github.com/fabpot",
  5708. "type": "github"
  5709. },
  5710. {
  5711. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5712. "type": "tidelift"
  5713. }
  5714. ],
  5715. "time": "2021-03-07T16:08:20+00:00"
  5716. },
  5717. {
  5718. "name": "symfony/polyfill-ctype",
  5719. "version": "v1.22.1",
  5720. "source": {
  5721. "type": "git",
  5722. "url": "https://github.com/symfony/polyfill-ctype.git",
  5723. "reference": "c6c942b1ac76c82448322025e084cadc56048b4e"
  5724. },
  5725. "dist": {
  5726. "type": "zip",
  5727. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/c6c942b1ac76c82448322025e084cadc56048b4e",
  5728. "reference": "c6c942b1ac76c82448322025e084cadc56048b4e",
  5729. "shasum": ""
  5730. },
  5731. "require": {
  5732. "php": ">=7.1"
  5733. },
  5734. "suggest": {
  5735. "ext-ctype": "For best performance"
  5736. },
  5737. "type": "library",
  5738. "extra": {
  5739. "branch-alias": {
  5740. "dev-main": "1.22-dev"
  5741. },
  5742. "thanks": {
  5743. "name": "symfony/polyfill",
  5744. "url": "https://github.com/symfony/polyfill"
  5745. }
  5746. },
  5747. "autoload": {
  5748. "psr-4": {
  5749. "Symfony\\Polyfill\\Ctype\\": ""
  5750. },
  5751. "files": [
  5752. "bootstrap.php"
  5753. ]
  5754. },
  5755. "notification-url": "https://packagist.org/downloads/",
  5756. "license": [
  5757. "MIT"
  5758. ],
  5759. "authors": [
  5760. {
  5761. "name": "Gert de Pagter",
  5762. "email": "[email protected]"
  5763. },
  5764. {
  5765. "name": "Symfony Community",
  5766. "homepage": "https://symfony.com/contributors"
  5767. }
  5768. ],
  5769. "description": "Symfony polyfill for ctype functions",
  5770. "homepage": "https://symfony.com",
  5771. "keywords": [
  5772. "compatibility",
  5773. "ctype",
  5774. "polyfill",
  5775. "portable"
  5776. ],
  5777. "support": {
  5778. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.22.1"
  5779. },
  5780. "funding": [
  5781. {
  5782. "url": "https://symfony.com/sponsor",
  5783. "type": "custom"
  5784. },
  5785. {
  5786. "url": "https://github.com/fabpot",
  5787. "type": "github"
  5788. },
  5789. {
  5790. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5791. "type": "tidelift"
  5792. }
  5793. ],
  5794. "time": "2021-01-07T16:49:33+00:00"
  5795. },
  5796. {
  5797. "name": "symfony/polyfill-iconv",
  5798. "version": "v1.22.1",
  5799. "source": {
  5800. "type": "git",
  5801. "url": "https://github.com/symfony/polyfill-iconv.git",
  5802. "reference": "06fb361659649bcfd6a208a0f1fcaf4e827ad342"
  5803. },
  5804. "dist": {
  5805. "type": "zip",
  5806. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/06fb361659649bcfd6a208a0f1fcaf4e827ad342",
  5807. "reference": "06fb361659649bcfd6a208a0f1fcaf4e827ad342",
  5808. "shasum": ""
  5809. },
  5810. "require": {
  5811. "php": ">=7.1"
  5812. },
  5813. "suggest": {
  5814. "ext-iconv": "For best performance"
  5815. },
  5816. "type": "library",
  5817. "extra": {
  5818. "branch-alias": {
  5819. "dev-main": "1.22-dev"
  5820. },
  5821. "thanks": {
  5822. "name": "symfony/polyfill",
  5823. "url": "https://github.com/symfony/polyfill"
  5824. }
  5825. },
  5826. "autoload": {
  5827. "psr-4": {
  5828. "Symfony\\Polyfill\\Iconv\\": ""
  5829. },
  5830. "files": [
  5831. "bootstrap.php"
  5832. ]
  5833. },
  5834. "notification-url": "https://packagist.org/downloads/",
  5835. "license": [
  5836. "MIT"
  5837. ],
  5838. "authors": [
  5839. {
  5840. "name": "Nicolas Grekas",
  5841. "email": "[email protected]"
  5842. },
  5843. {
  5844. "name": "Symfony Community",
  5845. "homepage": "https://symfony.com/contributors"
  5846. }
  5847. ],
  5848. "description": "Symfony polyfill for the Iconv extension",
  5849. "homepage": "https://symfony.com",
  5850. "keywords": [
  5851. "compatibility",
  5852. "iconv",
  5853. "polyfill",
  5854. "portable",
  5855. "shim"
  5856. ],
  5857. "support": {
  5858. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.22.1"
  5859. },
  5860. "funding": [
  5861. {
  5862. "url": "https://symfony.com/sponsor",
  5863. "type": "custom"
  5864. },
  5865. {
  5866. "url": "https://github.com/fabpot",
  5867. "type": "github"
  5868. },
  5869. {
  5870. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5871. "type": "tidelift"
  5872. }
  5873. ],
  5874. "time": "2021-01-22T09:19:47+00:00"
  5875. },
  5876. {
  5877. "name": "symfony/polyfill-intl-grapheme",
  5878. "version": "v1.22.1",
  5879. "source": {
  5880. "type": "git",
  5881. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5882. "reference": "5601e09b69f26c1828b13b6bb87cb07cddba3170"
  5883. },
  5884. "dist": {
  5885. "type": "zip",
  5886. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/5601e09b69f26c1828b13b6bb87cb07cddba3170",
  5887. "reference": "5601e09b69f26c1828b13b6bb87cb07cddba3170",
  5888. "shasum": ""
  5889. },
  5890. "require": {
  5891. "php": ">=7.1"
  5892. },
  5893. "suggest": {
  5894. "ext-intl": "For best performance"
  5895. },
  5896. "type": "library",
  5897. "extra": {
  5898. "branch-alias": {
  5899. "dev-main": "1.22-dev"
  5900. },
  5901. "thanks": {
  5902. "name": "symfony/polyfill",
  5903. "url": "https://github.com/symfony/polyfill"
  5904. }
  5905. },
  5906. "autoload": {
  5907. "psr-4": {
  5908. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5909. },
  5910. "files": [
  5911. "bootstrap.php"
  5912. ]
  5913. },
  5914. "notification-url": "https://packagist.org/downloads/",
  5915. "license": [
  5916. "MIT"
  5917. ],
  5918. "authors": [
  5919. {
  5920. "name": "Nicolas Grekas",
  5921. "email": "[email protected]"
  5922. },
  5923. {
  5924. "name": "Symfony Community",
  5925. "homepage": "https://symfony.com/contributors"
  5926. }
  5927. ],
  5928. "description": "Symfony polyfill for intl's grapheme_* functions",
  5929. "homepage": "https://symfony.com",
  5930. "keywords": [
  5931. "compatibility",
  5932. "grapheme",
  5933. "intl",
  5934. "polyfill",
  5935. "portable",
  5936. "shim"
  5937. ],
  5938. "support": {
  5939. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.22.1"
  5940. },
  5941. "funding": [
  5942. {
  5943. "url": "https://symfony.com/sponsor",
  5944. "type": "custom"
  5945. },
  5946. {
  5947. "url": "https://github.com/fabpot",
  5948. "type": "github"
  5949. },
  5950. {
  5951. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5952. "type": "tidelift"
  5953. }
  5954. ],
  5955. "time": "2021-01-22T09:19:47+00:00"
  5956. },
  5957. {
  5958. "name": "symfony/polyfill-intl-idn",
  5959. "version": "v1.22.1",
  5960. "source": {
  5961. "type": "git",
  5962. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5963. "reference": "2d63434d922daf7da8dd863e7907e67ee3031483"
  5964. },
  5965. "dist": {
  5966. "type": "zip",
  5967. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/2d63434d922daf7da8dd863e7907e67ee3031483",
  5968. "reference": "2d63434d922daf7da8dd863e7907e67ee3031483",
  5969. "shasum": ""
  5970. },
  5971. "require": {
  5972. "php": ">=7.1",
  5973. "symfony/polyfill-intl-normalizer": "^1.10",
  5974. "symfony/polyfill-php72": "^1.10"
  5975. },
  5976. "suggest": {
  5977. "ext-intl": "For best performance"
  5978. },
  5979. "type": "library",
  5980. "extra": {
  5981. "branch-alias": {
  5982. "dev-main": "1.22-dev"
  5983. },
  5984. "thanks": {
  5985. "name": "symfony/polyfill",
  5986. "url": "https://github.com/symfony/polyfill"
  5987. }
  5988. },
  5989. "autoload": {
  5990. "psr-4": {
  5991. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5992. },
  5993. "files": [
  5994. "bootstrap.php"
  5995. ]
  5996. },
  5997. "notification-url": "https://packagist.org/downloads/",
  5998. "license": [
  5999. "MIT"
  6000. ],
  6001. "authors": [
  6002. {
  6003. "name": "Laurent Bassin",
  6004. "email": "[email protected]"
  6005. },
  6006. {
  6007. "name": "Trevor Rowbotham",
  6008. "email": "[email protected]"
  6009. },
  6010. {
  6011. "name": "Symfony Community",
  6012. "homepage": "https://symfony.com/contributors"
  6013. }
  6014. ],
  6015. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6016. "homepage": "https://symfony.com",
  6017. "keywords": [
  6018. "compatibility",
  6019. "idn",
  6020. "intl",
  6021. "polyfill",
  6022. "portable",
  6023. "shim"
  6024. ],
  6025. "support": {
  6026. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.22.1"
  6027. },
  6028. "funding": [
  6029. {
  6030. "url": "https://symfony.com/sponsor",
  6031. "type": "custom"
  6032. },
  6033. {
  6034. "url": "https://github.com/fabpot",
  6035. "type": "github"
  6036. },
  6037. {
  6038. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6039. "type": "tidelift"
  6040. }
  6041. ],
  6042. "time": "2021-01-22T09:19:47+00:00"
  6043. },
  6044. {
  6045. "name": "symfony/polyfill-intl-normalizer",
  6046. "version": "v1.22.1",
  6047. "source": {
  6048. "type": "git",
  6049. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6050. "reference": "43a0283138253ed1d48d352ab6d0bdb3f809f248"
  6051. },
  6052. "dist": {
  6053. "type": "zip",
  6054. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/43a0283138253ed1d48d352ab6d0bdb3f809f248",
  6055. "reference": "43a0283138253ed1d48d352ab6d0bdb3f809f248",
  6056. "shasum": ""
  6057. },
  6058. "require": {
  6059. "php": ">=7.1"
  6060. },
  6061. "suggest": {
  6062. "ext-intl": "For best performance"
  6063. },
  6064. "type": "library",
  6065. "extra": {
  6066. "branch-alias": {
  6067. "dev-main": "1.22-dev"
  6068. },
  6069. "thanks": {
  6070. "name": "symfony/polyfill",
  6071. "url": "https://github.com/symfony/polyfill"
  6072. }
  6073. },
  6074. "autoload": {
  6075. "psr-4": {
  6076. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6077. },
  6078. "files": [
  6079. "bootstrap.php"
  6080. ],
  6081. "classmap": [
  6082. "Resources/stubs"
  6083. ]
  6084. },
  6085. "notification-url": "https://packagist.org/downloads/",
  6086. "license": [
  6087. "MIT"
  6088. ],
  6089. "authors": [
  6090. {
  6091. "name": "Nicolas Grekas",
  6092. "email": "[email protected]"
  6093. },
  6094. {
  6095. "name": "Symfony Community",
  6096. "homepage": "https://symfony.com/contributors"
  6097. }
  6098. ],
  6099. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6100. "homepage": "https://symfony.com",
  6101. "keywords": [
  6102. "compatibility",
  6103. "intl",
  6104. "normalizer",
  6105. "polyfill",
  6106. "portable",
  6107. "shim"
  6108. ],
  6109. "support": {
  6110. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.22.1"
  6111. },
  6112. "funding": [
  6113. {
  6114. "url": "https://symfony.com/sponsor",
  6115. "type": "custom"
  6116. },
  6117. {
  6118. "url": "https://github.com/fabpot",
  6119. "type": "github"
  6120. },
  6121. {
  6122. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6123. "type": "tidelift"
  6124. }
  6125. ],
  6126. "time": "2021-01-22T09:19:47+00:00"
  6127. },
  6128. {
  6129. "name": "symfony/polyfill-mbstring",
  6130. "version": "v1.22.1",
  6131. "source": {
  6132. "type": "git",
  6133. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6134. "reference": "5232de97ee3b75b0360528dae24e73db49566ab1"
  6135. },
  6136. "dist": {
  6137. "type": "zip",
  6138. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/5232de97ee3b75b0360528dae24e73db49566ab1",
  6139. "reference": "5232de97ee3b75b0360528dae24e73db49566ab1",
  6140. "shasum": ""
  6141. },
  6142. "require": {
  6143. "php": ">=7.1"
  6144. },
  6145. "suggest": {
  6146. "ext-mbstring": "For best performance"
  6147. },
  6148. "type": "library",
  6149. "extra": {
  6150. "branch-alias": {
  6151. "dev-main": "1.22-dev"
  6152. },
  6153. "thanks": {
  6154. "name": "symfony/polyfill",
  6155. "url": "https://github.com/symfony/polyfill"
  6156. }
  6157. },
  6158. "autoload": {
  6159. "psr-4": {
  6160. "Symfony\\Polyfill\\Mbstring\\": ""
  6161. },
  6162. "files": [
  6163. "bootstrap.php"
  6164. ]
  6165. },
  6166. "notification-url": "https://packagist.org/downloads/",
  6167. "license": [
  6168. "MIT"
  6169. ],
  6170. "authors": [
  6171. {
  6172. "name": "Nicolas Grekas",
  6173. "email": "[email protected]"
  6174. },
  6175. {
  6176. "name": "Symfony Community",
  6177. "homepage": "https://symfony.com/contributors"
  6178. }
  6179. ],
  6180. "description": "Symfony polyfill for the Mbstring extension",
  6181. "homepage": "https://symfony.com",
  6182. "keywords": [
  6183. "compatibility",
  6184. "mbstring",
  6185. "polyfill",
  6186. "portable",
  6187. "shim"
  6188. ],
  6189. "support": {
  6190. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.22.1"
  6191. },
  6192. "funding": [
  6193. {
  6194. "url": "https://symfony.com/sponsor",
  6195. "type": "custom"
  6196. },
  6197. {
  6198. "url": "https://github.com/fabpot",
  6199. "type": "github"
  6200. },
  6201. {
  6202. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6203. "type": "tidelift"
  6204. }
  6205. ],
  6206. "time": "2021-01-22T09:19:47+00:00"
  6207. },
  6208. {
  6209. "name": "symfony/polyfill-php56",
  6210. "version": "v1.20.0",
  6211. "source": {
  6212. "type": "git",
  6213. "url": "https://github.com/symfony/polyfill-php56.git",
  6214. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675"
  6215. },
  6216. "dist": {
  6217. "type": "zip",
  6218. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  6219. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  6220. "shasum": ""
  6221. },
  6222. "require": {
  6223. "php": ">=7.1"
  6224. },
  6225. "type": "metapackage",
  6226. "extra": {
  6227. "branch-alias": {
  6228. "dev-main": "1.20-dev"
  6229. },
  6230. "thanks": {
  6231. "name": "symfony/polyfill",
  6232. "url": "https://github.com/symfony/polyfill"
  6233. }
  6234. },
  6235. "notification-url": "https://packagist.org/downloads/",
  6236. "license": [
  6237. "MIT"
  6238. ],
  6239. "authors": [
  6240. {
  6241. "name": "Nicolas Grekas",
  6242. "email": "[email protected]"
  6243. },
  6244. {
  6245. "name": "Symfony Community",
  6246. "homepage": "https://symfony.com/contributors"
  6247. }
  6248. ],
  6249. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  6250. "homepage": "https://symfony.com",
  6251. "keywords": [
  6252. "compatibility",
  6253. "polyfill",
  6254. "portable",
  6255. "shim"
  6256. ],
  6257. "support": {
  6258. "source": "https://github.com/symfony/polyfill-php56/tree/v1.20.0"
  6259. },
  6260. "funding": [
  6261. {
  6262. "url": "https://symfony.com/sponsor",
  6263. "type": "custom"
  6264. },
  6265. {
  6266. "url": "https://github.com/fabpot",
  6267. "type": "github"
  6268. },
  6269. {
  6270. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6271. "type": "tidelift"
  6272. }
  6273. ],
  6274. "time": "2020-10-23T14:02:19+00:00"
  6275. },
  6276. {
  6277. "name": "symfony/polyfill-php72",
  6278. "version": "v1.22.1",
  6279. "source": {
  6280. "type": "git",
  6281. "url": "https://github.com/symfony/polyfill-php72.git",
  6282. "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9"
  6283. },
  6284. "dist": {
  6285. "type": "zip",
  6286. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9",
  6287. "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9",
  6288. "shasum": ""
  6289. },
  6290. "require": {
  6291. "php": ">=7.1"
  6292. },
  6293. "type": "library",
  6294. "extra": {
  6295. "branch-alias": {
  6296. "dev-main": "1.22-dev"
  6297. },
  6298. "thanks": {
  6299. "name": "symfony/polyfill",
  6300. "url": "https://github.com/symfony/polyfill"
  6301. }
  6302. },
  6303. "autoload": {
  6304. "psr-4": {
  6305. "Symfony\\Polyfill\\Php72\\": ""
  6306. },
  6307. "files": [
  6308. "bootstrap.php"
  6309. ]
  6310. },
  6311. "notification-url": "https://packagist.org/downloads/",
  6312. "license": [
  6313. "MIT"
  6314. ],
  6315. "authors": [
  6316. {
  6317. "name": "Nicolas Grekas",
  6318. "email": "[email protected]"
  6319. },
  6320. {
  6321. "name": "Symfony Community",
  6322. "homepage": "https://symfony.com/contributors"
  6323. }
  6324. ],
  6325. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  6326. "homepage": "https://symfony.com",
  6327. "keywords": [
  6328. "compatibility",
  6329. "polyfill",
  6330. "portable",
  6331. "shim"
  6332. ],
  6333. "support": {
  6334. "source": "https://github.com/symfony/polyfill-php72/tree/v1.22.1"
  6335. },
  6336. "funding": [
  6337. {
  6338. "url": "https://symfony.com/sponsor",
  6339. "type": "custom"
  6340. },
  6341. {
  6342. "url": "https://github.com/fabpot",
  6343. "type": "github"
  6344. },
  6345. {
  6346. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6347. "type": "tidelift"
  6348. }
  6349. ],
  6350. "time": "2021-01-07T16:49:33+00:00"
  6351. },
  6352. {
  6353. "name": "symfony/polyfill-php73",
  6354. "version": "v1.22.1",
  6355. "source": {
  6356. "type": "git",
  6357. "url": "https://github.com/symfony/polyfill-php73.git",
  6358. "reference": "a678b42e92f86eca04b7fa4c0f6f19d097fb69e2"
  6359. },
  6360. "dist": {
  6361. "type": "zip",
  6362. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/a678b42e92f86eca04b7fa4c0f6f19d097fb69e2",
  6363. "reference": "a678b42e92f86eca04b7fa4c0f6f19d097fb69e2",
  6364. "shasum": ""
  6365. },
  6366. "require": {
  6367. "php": ">=7.1"
  6368. },
  6369. "type": "library",
  6370. "extra": {
  6371. "branch-alias": {
  6372. "dev-main": "1.22-dev"
  6373. },
  6374. "thanks": {
  6375. "name": "symfony/polyfill",
  6376. "url": "https://github.com/symfony/polyfill"
  6377. }
  6378. },
  6379. "autoload": {
  6380. "psr-4": {
  6381. "Symfony\\Polyfill\\Php73\\": ""
  6382. },
  6383. "files": [
  6384. "bootstrap.php"
  6385. ],
  6386. "classmap": [
  6387. "Resources/stubs"
  6388. ]
  6389. },
  6390. "notification-url": "https://packagist.org/downloads/",
  6391. "license": [
  6392. "MIT"
  6393. ],
  6394. "authors": [
  6395. {
  6396. "name": "Nicolas Grekas",
  6397. "email": "[email protected]"
  6398. },
  6399. {
  6400. "name": "Symfony Community",
  6401. "homepage": "https://symfony.com/contributors"
  6402. }
  6403. ],
  6404. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  6405. "homepage": "https://symfony.com",
  6406. "keywords": [
  6407. "compatibility",
  6408. "polyfill",
  6409. "portable",
  6410. "shim"
  6411. ],
  6412. "support": {
  6413. "source": "https://github.com/symfony/polyfill-php73/tree/v1.22.1"
  6414. },
  6415. "funding": [
  6416. {
  6417. "url": "https://symfony.com/sponsor",
  6418. "type": "custom"
  6419. },
  6420. {
  6421. "url": "https://github.com/fabpot",
  6422. "type": "github"
  6423. },
  6424. {
  6425. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6426. "type": "tidelift"
  6427. }
  6428. ],
  6429. "time": "2021-01-07T16:49:33+00:00"
  6430. },
  6431. {
  6432. "name": "symfony/polyfill-php80",
  6433. "version": "v1.22.1",
  6434. "source": {
  6435. "type": "git",
  6436. "url": "https://github.com/symfony/polyfill-php80.git",
  6437. "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91"
  6438. },
  6439. "dist": {
  6440. "type": "zip",
  6441. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/dc3063ba22c2a1fd2f45ed856374d79114998f91",
  6442. "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91",
  6443. "shasum": ""
  6444. },
  6445. "require": {
  6446. "php": ">=7.1"
  6447. },
  6448. "type": "library",
  6449. "extra": {
  6450. "branch-alias": {
  6451. "dev-main": "1.22-dev"
  6452. },
  6453. "thanks": {
  6454. "name": "symfony/polyfill",
  6455. "url": "https://github.com/symfony/polyfill"
  6456. }
  6457. },
  6458. "autoload": {
  6459. "psr-4": {
  6460. "Symfony\\Polyfill\\Php80\\": ""
  6461. },
  6462. "files": [
  6463. "bootstrap.php"
  6464. ],
  6465. "classmap": [
  6466. "Resources/stubs"
  6467. ]
  6468. },
  6469. "notification-url": "https://packagist.org/downloads/",
  6470. "license": [
  6471. "MIT"
  6472. ],
  6473. "authors": [
  6474. {
  6475. "name": "Ion Bazan",
  6476. "email": "[email protected]"
  6477. },
  6478. {
  6479. "name": "Nicolas Grekas",
  6480. "email": "[email protected]"
  6481. },
  6482. {
  6483. "name": "Symfony Community",
  6484. "homepage": "https://symfony.com/contributors"
  6485. }
  6486. ],
  6487. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6488. "homepage": "https://symfony.com",
  6489. "keywords": [
  6490. "compatibility",
  6491. "polyfill",
  6492. "portable",
  6493. "shim"
  6494. ],
  6495. "support": {
  6496. "source": "https://github.com/symfony/polyfill-php80/tree/v1.22.1"
  6497. },
  6498. "funding": [
  6499. {
  6500. "url": "https://symfony.com/sponsor",
  6501. "type": "custom"
  6502. },
  6503. {
  6504. "url": "https://github.com/fabpot",
  6505. "type": "github"
  6506. },
  6507. {
  6508. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6509. "type": "tidelift"
  6510. }
  6511. ],
  6512. "time": "2021-01-07T16:49:33+00:00"
  6513. },
  6514. {
  6515. "name": "symfony/process",
  6516. "version": "v5.2.4",
  6517. "source": {
  6518. "type": "git",
  6519. "url": "https://github.com/symfony/process.git",
  6520. "reference": "313a38f09c77fbcdc1d223e57d368cea76a2fd2f"
  6521. },
  6522. "dist": {
  6523. "type": "zip",
  6524. "url": "https://api.github.com/repos/symfony/process/zipball/313a38f09c77fbcdc1d223e57d368cea76a2fd2f",
  6525. "reference": "313a38f09c77fbcdc1d223e57d368cea76a2fd2f",
  6526. "shasum": ""
  6527. },
  6528. "require": {
  6529. "php": ">=7.2.5",
  6530. "symfony/polyfill-php80": "^1.15"
  6531. },
  6532. "type": "library",
  6533. "autoload": {
  6534. "psr-4": {
  6535. "Symfony\\Component\\Process\\": ""
  6536. },
  6537. "exclude-from-classmap": [
  6538. "/Tests/"
  6539. ]
  6540. },
  6541. "notification-url": "https://packagist.org/downloads/",
  6542. "license": [
  6543. "MIT"
  6544. ],
  6545. "authors": [
  6546. {
  6547. "name": "Fabien Potencier",
  6548. "email": "[email protected]"
  6549. },
  6550. {
  6551. "name": "Symfony Community",
  6552. "homepage": "https://symfony.com/contributors"
  6553. }
  6554. ],
  6555. "description": "Executes commands in sub-processes",
  6556. "homepage": "https://symfony.com",
  6557. "support": {
  6558. "source": "https://github.com/symfony/process/tree/v5.2.4"
  6559. },
  6560. "funding": [
  6561. {
  6562. "url": "https://symfony.com/sponsor",
  6563. "type": "custom"
  6564. },
  6565. {
  6566. "url": "https://github.com/fabpot",
  6567. "type": "github"
  6568. },
  6569. {
  6570. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6571. "type": "tidelift"
  6572. }
  6573. ],
  6574. "time": "2021-01-27T10:15:41+00:00"
  6575. },
  6576. {
  6577. "name": "symfony/routing",
  6578. "version": "v5.2.4",
  6579. "source": {
  6580. "type": "git",
  6581. "url": "https://github.com/symfony/routing.git",
  6582. "reference": "cafa138128dfd6ab6be1abf6279169957b34f662"
  6583. },
  6584. "dist": {
  6585. "type": "zip",
  6586. "url": "https://api.github.com/repos/symfony/routing/zipball/cafa138128dfd6ab6be1abf6279169957b34f662",
  6587. "reference": "cafa138128dfd6ab6be1abf6279169957b34f662",
  6588. "shasum": ""
  6589. },
  6590. "require": {
  6591. "php": ">=7.2.5",
  6592. "symfony/deprecation-contracts": "^2.1",
  6593. "symfony/polyfill-php80": "^1.15"
  6594. },
  6595. "conflict": {
  6596. "symfony/config": "<5.0",
  6597. "symfony/dependency-injection": "<4.4",
  6598. "symfony/yaml": "<4.4"
  6599. },
  6600. "require-dev": {
  6601. "doctrine/annotations": "^1.10.4",
  6602. "psr/log": "~1.0",
  6603. "symfony/config": "^5.0",
  6604. "symfony/dependency-injection": "^4.4|^5.0",
  6605. "symfony/expression-language": "^4.4|^5.0",
  6606. "symfony/http-foundation": "^4.4|^5.0",
  6607. "symfony/yaml": "^4.4|^5.0"
  6608. },
  6609. "suggest": {
  6610. "doctrine/annotations": "For using the annotation loader",
  6611. "symfony/config": "For using the all-in-one router or any loader",
  6612. "symfony/expression-language": "For using expression matching",
  6613. "symfony/http-foundation": "For using a Symfony Request object",
  6614. "symfony/yaml": "For using the YAML loader"
  6615. },
  6616. "type": "library",
  6617. "autoload": {
  6618. "psr-4": {
  6619. "Symfony\\Component\\Routing\\": ""
  6620. },
  6621. "exclude-from-classmap": [
  6622. "/Tests/"
  6623. ]
  6624. },
  6625. "notification-url": "https://packagist.org/downloads/",
  6626. "license": [
  6627. "MIT"
  6628. ],
  6629. "authors": [
  6630. {
  6631. "name": "Fabien Potencier",
  6632. "email": "[email protected]"
  6633. },
  6634. {
  6635. "name": "Symfony Community",
  6636. "homepage": "https://symfony.com/contributors"
  6637. }
  6638. ],
  6639. "description": "Maps an HTTP request to a set of configuration variables",
  6640. "homepage": "https://symfony.com",
  6641. "keywords": [
  6642. "router",
  6643. "routing",
  6644. "uri",
  6645. "url"
  6646. ],
  6647. "support": {
  6648. "source": "https://github.com/symfony/routing/tree/v5.2.4"
  6649. },
  6650. "funding": [
  6651. {
  6652. "url": "https://symfony.com/sponsor",
  6653. "type": "custom"
  6654. },
  6655. {
  6656. "url": "https://github.com/fabpot",
  6657. "type": "github"
  6658. },
  6659. {
  6660. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6661. "type": "tidelift"
  6662. }
  6663. ],
  6664. "time": "2021-02-22T15:48:39+00:00"
  6665. },
  6666. {
  6667. "name": "symfony/service-contracts",
  6668. "version": "v2.2.0",
  6669. "source": {
  6670. "type": "git",
  6671. "url": "https://github.com/symfony/service-contracts.git",
  6672. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1"
  6673. },
  6674. "dist": {
  6675. "type": "zip",
  6676. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  6677. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  6678. "shasum": ""
  6679. },
  6680. "require": {
  6681. "php": ">=7.2.5",
  6682. "psr/container": "^1.0"
  6683. },
  6684. "suggest": {
  6685. "symfony/service-implementation": ""
  6686. },
  6687. "type": "library",
  6688. "extra": {
  6689. "branch-alias": {
  6690. "dev-master": "2.2-dev"
  6691. },
  6692. "thanks": {
  6693. "name": "symfony/contracts",
  6694. "url": "https://github.com/symfony/contracts"
  6695. }
  6696. },
  6697. "autoload": {
  6698. "psr-4": {
  6699. "Symfony\\Contracts\\Service\\": ""
  6700. }
  6701. },
  6702. "notification-url": "https://packagist.org/downloads/",
  6703. "license": [
  6704. "MIT"
  6705. ],
  6706. "authors": [
  6707. {
  6708. "name": "Nicolas Grekas",
  6709. "email": "[email protected]"
  6710. },
  6711. {
  6712. "name": "Symfony Community",
  6713. "homepage": "https://symfony.com/contributors"
  6714. }
  6715. ],
  6716. "description": "Generic abstractions related to writing services",
  6717. "homepage": "https://symfony.com",
  6718. "keywords": [
  6719. "abstractions",
  6720. "contracts",
  6721. "decoupling",
  6722. "interfaces",
  6723. "interoperability",
  6724. "standards"
  6725. ],
  6726. "support": {
  6727. "source": "https://github.com/symfony/service-contracts/tree/master"
  6728. },
  6729. "funding": [
  6730. {
  6731. "url": "https://symfony.com/sponsor",
  6732. "type": "custom"
  6733. },
  6734. {
  6735. "url": "https://github.com/fabpot",
  6736. "type": "github"
  6737. },
  6738. {
  6739. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6740. "type": "tidelift"
  6741. }
  6742. ],
  6743. "time": "2020-09-07T11:33:47+00:00"
  6744. },
  6745. {
  6746. "name": "symfony/string",
  6747. "version": "v5.2.4",
  6748. "source": {
  6749. "type": "git",
  6750. "url": "https://github.com/symfony/string.git",
  6751. "reference": "4e78d7d47061fa183639927ec40d607973699609"
  6752. },
  6753. "dist": {
  6754. "type": "zip",
  6755. "url": "https://api.github.com/repos/symfony/string/zipball/4e78d7d47061fa183639927ec40d607973699609",
  6756. "reference": "4e78d7d47061fa183639927ec40d607973699609",
  6757. "shasum": ""
  6758. },
  6759. "require": {
  6760. "php": ">=7.2.5",
  6761. "symfony/polyfill-ctype": "~1.8",
  6762. "symfony/polyfill-intl-grapheme": "~1.0",
  6763. "symfony/polyfill-intl-normalizer": "~1.0",
  6764. "symfony/polyfill-mbstring": "~1.0",
  6765. "symfony/polyfill-php80": "~1.15"
  6766. },
  6767. "require-dev": {
  6768. "symfony/error-handler": "^4.4|^5.0",
  6769. "symfony/http-client": "^4.4|^5.0",
  6770. "symfony/translation-contracts": "^1.1|^2",
  6771. "symfony/var-exporter": "^4.4|^5.0"
  6772. },
  6773. "type": "library",
  6774. "autoload": {
  6775. "psr-4": {
  6776. "Symfony\\Component\\String\\": ""
  6777. },
  6778. "files": [
  6779. "Resources/functions.php"
  6780. ],
  6781. "exclude-from-classmap": [
  6782. "/Tests/"
  6783. ]
  6784. },
  6785. "notification-url": "https://packagist.org/downloads/",
  6786. "license": [
  6787. "MIT"
  6788. ],
  6789. "authors": [
  6790. {
  6791. "name": "Nicolas Grekas",
  6792. "email": "[email protected]"
  6793. },
  6794. {
  6795. "name": "Symfony Community",
  6796. "homepage": "https://symfony.com/contributors"
  6797. }
  6798. ],
  6799. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  6800. "homepage": "https://symfony.com",
  6801. "keywords": [
  6802. "grapheme",
  6803. "i18n",
  6804. "string",
  6805. "unicode",
  6806. "utf-8",
  6807. "utf8"
  6808. ],
  6809. "support": {
  6810. "source": "https://github.com/symfony/string/tree/v5.2.4"
  6811. },
  6812. "funding": [
  6813. {
  6814. "url": "https://symfony.com/sponsor",
  6815. "type": "custom"
  6816. },
  6817. {
  6818. "url": "https://github.com/fabpot",
  6819. "type": "github"
  6820. },
  6821. {
  6822. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6823. "type": "tidelift"
  6824. }
  6825. ],
  6826. "time": "2021-02-16T10:20:28+00:00"
  6827. },
  6828. {
  6829. "name": "symfony/translation",
  6830. "version": "v5.2.5",
  6831. "source": {
  6832. "type": "git",
  6833. "url": "https://github.com/symfony/translation.git",
  6834. "reference": "0947ab1e3aabd22a6bef393874b2555d2bb976da"
  6835. },
  6836. "dist": {
  6837. "type": "zip",
  6838. "url": "https://api.github.com/repos/symfony/translation/zipball/0947ab1e3aabd22a6bef393874b2555d2bb976da",
  6839. "reference": "0947ab1e3aabd22a6bef393874b2555d2bb976da",
  6840. "shasum": ""
  6841. },
  6842. "require": {
  6843. "php": ">=7.2.5",
  6844. "symfony/polyfill-mbstring": "~1.0",
  6845. "symfony/polyfill-php80": "^1.15",
  6846. "symfony/translation-contracts": "^2.3"
  6847. },
  6848. "conflict": {
  6849. "symfony/config": "<4.4",
  6850. "symfony/dependency-injection": "<5.0",
  6851. "symfony/http-kernel": "<5.0",
  6852. "symfony/twig-bundle": "<5.0",
  6853. "symfony/yaml": "<4.4"
  6854. },
  6855. "provide": {
  6856. "symfony/translation-implementation": "2.3"
  6857. },
  6858. "require-dev": {
  6859. "psr/log": "~1.0",
  6860. "symfony/config": "^4.4|^5.0",
  6861. "symfony/console": "^4.4|^5.0",
  6862. "symfony/dependency-injection": "^5.0",
  6863. "symfony/finder": "^4.4|^5.0",
  6864. "symfony/http-kernel": "^5.0",
  6865. "symfony/intl": "^4.4|^5.0",
  6866. "symfony/service-contracts": "^1.1.2|^2",
  6867. "symfony/yaml": "^4.4|^5.0"
  6868. },
  6869. "suggest": {
  6870. "psr/log-implementation": "To use logging capability in translator",
  6871. "symfony/config": "",
  6872. "symfony/yaml": ""
  6873. },
  6874. "type": "library",
  6875. "autoload": {
  6876. "files": [
  6877. "Resources/functions.php"
  6878. ],
  6879. "psr-4": {
  6880. "Symfony\\Component\\Translation\\": ""
  6881. },
  6882. "exclude-from-classmap": [
  6883. "/Tests/"
  6884. ]
  6885. },
  6886. "notification-url": "https://packagist.org/downloads/",
  6887. "license": [
  6888. "MIT"
  6889. ],
  6890. "authors": [
  6891. {
  6892. "name": "Fabien Potencier",
  6893. "email": "[email protected]"
  6894. },
  6895. {
  6896. "name": "Symfony Community",
  6897. "homepage": "https://symfony.com/contributors"
  6898. }
  6899. ],
  6900. "description": "Provides tools to internationalize your application",
  6901. "homepage": "https://symfony.com",
  6902. "support": {
  6903. "source": "https://github.com/symfony/translation/tree/v5.2.5"
  6904. },
  6905. "funding": [
  6906. {
  6907. "url": "https://symfony.com/sponsor",
  6908. "type": "custom"
  6909. },
  6910. {
  6911. "url": "https://github.com/fabpot",
  6912. "type": "github"
  6913. },
  6914. {
  6915. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6916. "type": "tidelift"
  6917. }
  6918. ],
  6919. "time": "2021-03-06T07:59:01+00:00"
  6920. },
  6921. {
  6922. "name": "symfony/translation-contracts",
  6923. "version": "v2.3.0",
  6924. "source": {
  6925. "type": "git",
  6926. "url": "https://github.com/symfony/translation-contracts.git",
  6927. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105"
  6928. },
  6929. "dist": {
  6930. "type": "zip",
  6931. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  6932. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  6933. "shasum": ""
  6934. },
  6935. "require": {
  6936. "php": ">=7.2.5"
  6937. },
  6938. "suggest": {
  6939. "symfony/translation-implementation": ""
  6940. },
  6941. "type": "library",
  6942. "extra": {
  6943. "branch-alias": {
  6944. "dev-master": "2.3-dev"
  6945. },
  6946. "thanks": {
  6947. "name": "symfony/contracts",
  6948. "url": "https://github.com/symfony/contracts"
  6949. }
  6950. },
  6951. "autoload": {
  6952. "psr-4": {
  6953. "Symfony\\Contracts\\Translation\\": ""
  6954. }
  6955. },
  6956. "notification-url": "https://packagist.org/downloads/",
  6957. "license": [
  6958. "MIT"
  6959. ],
  6960. "authors": [
  6961. {
  6962. "name": "Nicolas Grekas",
  6963. "email": "[email protected]"
  6964. },
  6965. {
  6966. "name": "Symfony Community",
  6967. "homepage": "https://symfony.com/contributors"
  6968. }
  6969. ],
  6970. "description": "Generic abstractions related to translation",
  6971. "homepage": "https://symfony.com",
  6972. "keywords": [
  6973. "abstractions",
  6974. "contracts",
  6975. "decoupling",
  6976. "interfaces",
  6977. "interoperability",
  6978. "standards"
  6979. ],
  6980. "support": {
  6981. "source": "https://github.com/symfony/translation-contracts/tree/v2.3.0"
  6982. },
  6983. "funding": [
  6984. {
  6985. "url": "https://symfony.com/sponsor",
  6986. "type": "custom"
  6987. },
  6988. {
  6989. "url": "https://github.com/fabpot",
  6990. "type": "github"
  6991. },
  6992. {
  6993. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6994. "type": "tidelift"
  6995. }
  6996. ],
  6997. "time": "2020-09-28T13:05:58+00:00"
  6998. },
  6999. {
  7000. "name": "symfony/var-dumper",
  7001. "version": "v5.2.5",
  7002. "source": {
  7003. "type": "git",
  7004. "url": "https://github.com/symfony/var-dumper.git",
  7005. "reference": "002ab5a36702adf0c9a11e6d8836623253e9045e"
  7006. },
  7007. "dist": {
  7008. "type": "zip",
  7009. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/002ab5a36702adf0c9a11e6d8836623253e9045e",
  7010. "reference": "002ab5a36702adf0c9a11e6d8836623253e9045e",
  7011. "shasum": ""
  7012. },
  7013. "require": {
  7014. "php": ">=7.2.5",
  7015. "symfony/polyfill-mbstring": "~1.0",
  7016. "symfony/polyfill-php80": "^1.15"
  7017. },
  7018. "conflict": {
  7019. "phpunit/phpunit": "<5.4.3",
  7020. "symfony/console": "<4.4"
  7021. },
  7022. "require-dev": {
  7023. "ext-iconv": "*",
  7024. "symfony/console": "^4.4|^5.0",
  7025. "symfony/process": "^4.4|^5.0",
  7026. "twig/twig": "^2.13|^3.0.4"
  7027. },
  7028. "suggest": {
  7029. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  7030. "ext-intl": "To show region name in time zone dump",
  7031. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  7032. },
  7033. "bin": [
  7034. "Resources/bin/var-dump-server"
  7035. ],
  7036. "type": "library",
  7037. "autoload": {
  7038. "files": [
  7039. "Resources/functions/dump.php"
  7040. ],
  7041. "psr-4": {
  7042. "Symfony\\Component\\VarDumper\\": ""
  7043. },
  7044. "exclude-from-classmap": [
  7045. "/Tests/"
  7046. ]
  7047. },
  7048. "notification-url": "https://packagist.org/downloads/",
  7049. "license": [
  7050. "MIT"
  7051. ],
  7052. "authors": [
  7053. {
  7054. "name": "Nicolas Grekas",
  7055. "email": "[email protected]"
  7056. },
  7057. {
  7058. "name": "Symfony Community",
  7059. "homepage": "https://symfony.com/contributors"
  7060. }
  7061. ],
  7062. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7063. "homepage": "https://symfony.com",
  7064. "keywords": [
  7065. "debug",
  7066. "dump"
  7067. ],
  7068. "support": {
  7069. "source": "https://github.com/symfony/var-dumper/tree/v5.2.5"
  7070. },
  7071. "funding": [
  7072. {
  7073. "url": "https://symfony.com/sponsor",
  7074. "type": "custom"
  7075. },
  7076. {
  7077. "url": "https://github.com/fabpot",
  7078. "type": "github"
  7079. },
  7080. {
  7081. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7082. "type": "tidelift"
  7083. }
  7084. ],
  7085. "time": "2021-03-06T07:59:01+00:00"
  7086. },
  7087. {
  7088. "name": "symfony/yaml",
  7089. "version": "v5.2.5",
  7090. "source": {
  7091. "type": "git",
  7092. "url": "https://github.com/symfony/yaml.git",
  7093. "reference": "298a08ddda623485208506fcee08817807a251dd"
  7094. },
  7095. "dist": {
  7096. "type": "zip",
  7097. "url": "https://api.github.com/repos/symfony/yaml/zipball/298a08ddda623485208506fcee08817807a251dd",
  7098. "reference": "298a08ddda623485208506fcee08817807a251dd",
  7099. "shasum": ""
  7100. },
  7101. "require": {
  7102. "php": ">=7.2.5",
  7103. "symfony/deprecation-contracts": "^2.1",
  7104. "symfony/polyfill-ctype": "~1.8"
  7105. },
  7106. "conflict": {
  7107. "symfony/console": "<4.4"
  7108. },
  7109. "require-dev": {
  7110. "symfony/console": "^4.4|^5.0"
  7111. },
  7112. "suggest": {
  7113. "symfony/console": "For validating YAML files using the lint command"
  7114. },
  7115. "bin": [
  7116. "Resources/bin/yaml-lint"
  7117. ],
  7118. "type": "library",
  7119. "autoload": {
  7120. "psr-4": {
  7121. "Symfony\\Component\\Yaml\\": ""
  7122. },
  7123. "exclude-from-classmap": [
  7124. "/Tests/"
  7125. ]
  7126. },
  7127. "notification-url": "https://packagist.org/downloads/",
  7128. "license": [
  7129. "MIT"
  7130. ],
  7131. "authors": [
  7132. {
  7133. "name": "Fabien Potencier",
  7134. "email": "[email protected]"
  7135. },
  7136. {
  7137. "name": "Symfony Community",
  7138. "homepage": "https://symfony.com/contributors"
  7139. }
  7140. ],
  7141. "description": "Loads and dumps YAML files",
  7142. "homepage": "https://symfony.com",
  7143. "support": {
  7144. "source": "https://github.com/symfony/yaml/tree/v5.2.5"
  7145. },
  7146. "funding": [
  7147. {
  7148. "url": "https://symfony.com/sponsor",
  7149. "type": "custom"
  7150. },
  7151. {
  7152. "url": "https://github.com/fabpot",
  7153. "type": "github"
  7154. },
  7155. {
  7156. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7157. "type": "tidelift"
  7158. }
  7159. ],
  7160. "time": "2021-03-06T07:59:01+00:00"
  7161. },
  7162. {
  7163. "name": "tijsverkoyen/css-to-inline-styles",
  7164. "version": "2.2.3",
  7165. "source": {
  7166. "type": "git",
  7167. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7168. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5"
  7169. },
  7170. "dist": {
  7171. "type": "zip",
  7172. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/b43b05cf43c1b6d849478965062b6ef73e223bb5",
  7173. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5",
  7174. "shasum": ""
  7175. },
  7176. "require": {
  7177. "ext-dom": "*",
  7178. "ext-libxml": "*",
  7179. "php": "^5.5 || ^7.0 || ^8.0",
  7180. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0"
  7181. },
  7182. "require-dev": {
  7183. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5"
  7184. },
  7185. "type": "library",
  7186. "extra": {
  7187. "branch-alias": {
  7188. "dev-master": "2.2.x-dev"
  7189. }
  7190. },
  7191. "autoload": {
  7192. "psr-4": {
  7193. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  7194. }
  7195. },
  7196. "notification-url": "https://packagist.org/downloads/",
  7197. "license": [
  7198. "BSD-3-Clause"
  7199. ],
  7200. "authors": [
  7201. {
  7202. "name": "Tijs Verkoyen",
  7203. "email": "[email protected]",
  7204. "role": "Developer"
  7205. }
  7206. ],
  7207. "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.",
  7208. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  7209. "support": {
  7210. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  7211. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.3"
  7212. },
  7213. "time": "2020-07-13T06:12:54+00:00"
  7214. },
  7215. {
  7216. "name": "tymon/jwt-auth",
  7217. "version": "1.0.2",
  7218. "source": {
  7219. "type": "git",
  7220. "url": "https://github.com/tymondesigns/jwt-auth.git",
  7221. "reference": "e588cb719539366c0e2f6017f975379cb73e9680"
  7222. },
  7223. "dist": {
  7224. "type": "zip",
  7225. "url": "https://api.github.com/repos/tymondesigns/jwt-auth/zipball/e588cb719539366c0e2f6017f975379cb73e9680",
  7226. "reference": "e588cb719539366c0e2f6017f975379cb73e9680",
  7227. "shasum": ""
  7228. },
  7229. "require": {
  7230. "illuminate/auth": "^5.2|^6|^7|^8",
  7231. "illuminate/contracts": "^5.2|^6|^7|^8",
  7232. "illuminate/http": "^5.2|^6|^7|^8",
  7233. "illuminate/support": "^5.2|^6|^7|^8",
  7234. "lcobucci/jwt": "<3.4",
  7235. "namshi/jose": "^7.0",
  7236. "nesbot/carbon": "^1.0|^2.0",
  7237. "php": "^5.5.9|^7.0"
  7238. },
  7239. "require-dev": {
  7240. "illuminate/console": "^5.2|^6|^7|^8",
  7241. "illuminate/database": "^5.2|^6|^7|^8",
  7242. "illuminate/routing": "^5.2|^6|^7|^8",
  7243. "mockery/mockery": ">=0.9.9",
  7244. "phpunit/phpunit": "~4.8|~6.0"
  7245. },
  7246. "type": "library",
  7247. "extra": {
  7248. "branch-alias": {
  7249. "dev-develop": "1.0-dev"
  7250. },
  7251. "laravel": {
  7252. "aliases": {
  7253. "JWTAuth": "Tymon\\JWTAuth\\Facades\\JWTAuth",
  7254. "JWTFactory": "Tymon\\JWTAuth\\Facades\\JWTFactory"
  7255. },
  7256. "providers": [
  7257. "Tymon\\JWTAuth\\Providers\\LaravelServiceProvider"
  7258. ]
  7259. }
  7260. },
  7261. "autoload": {
  7262. "psr-4": {
  7263. "Tymon\\JWTAuth\\": "src/"
  7264. }
  7265. },
  7266. "notification-url": "https://packagist.org/downloads/",
  7267. "license": [
  7268. "MIT"
  7269. ],
  7270. "authors": [
  7271. {
  7272. "name": "Sean Tymon",
  7273. "email": "[email protected]",
  7274. "homepage": "https://tymon.xyz",
  7275. "role": "Developer"
  7276. }
  7277. ],
  7278. "description": "JSON Web Token Authentication for Laravel and Lumen",
  7279. "homepage": "https://github.com/tymondesigns/jwt-auth",
  7280. "keywords": [
  7281. "Authentication",
  7282. "JSON Web Token",
  7283. "auth",
  7284. "jwt",
  7285. "laravel"
  7286. ],
  7287. "support": {
  7288. "issues": "https://github.com/tymondesigns/jwt-auth/issues",
  7289. "source": "https://github.com/tymondesigns/jwt-auth"
  7290. },
  7291. "funding": [
  7292. {
  7293. "url": "https://www.patreon.com/seantymon",
  7294. "type": "patreon"
  7295. }
  7296. ],
  7297. "time": "2020-11-27T12:32:42+00:00"
  7298. },
  7299. {
  7300. "name": "vlucas/phpdotenv",
  7301. "version": "v4.2.0",
  7302. "source": {
  7303. "type": "git",
  7304. "url": "https://github.com/vlucas/phpdotenv.git",
  7305. "reference": "da64796370fc4eb03cc277088f6fede9fde88482"
  7306. },
  7307. "dist": {
  7308. "type": "zip",
  7309. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/da64796370fc4eb03cc277088f6fede9fde88482",
  7310. "reference": "da64796370fc4eb03cc277088f6fede9fde88482",
  7311. "shasum": ""
  7312. },
  7313. "require": {
  7314. "php": "^5.5.9 || ^7.0 || ^8.0",
  7315. "phpoption/phpoption": "^1.7.3",
  7316. "symfony/polyfill-ctype": "^1.17"
  7317. },
  7318. "require-dev": {
  7319. "bamarni/composer-bin-plugin": "^1.4.1",
  7320. "ext-filter": "*",
  7321. "ext-pcre": "*",
  7322. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20"
  7323. },
  7324. "suggest": {
  7325. "ext-filter": "Required to use the boolean validator.",
  7326. "ext-pcre": "Required to use most of the library."
  7327. },
  7328. "type": "library",
  7329. "extra": {
  7330. "branch-alias": {
  7331. "dev-master": "4.1-dev"
  7332. }
  7333. },
  7334. "autoload": {
  7335. "psr-4": {
  7336. "Dotenv\\": "src/"
  7337. }
  7338. },
  7339. "notification-url": "https://packagist.org/downloads/",
  7340. "license": [
  7341. "BSD-3-Clause"
  7342. ],
  7343. "authors": [
  7344. {
  7345. "name": "Graham Campbell",
  7346. "email": "[email protected]",
  7347. "homepage": "https://gjcampbell.co.uk/"
  7348. },
  7349. {
  7350. "name": "Vance Lucas",
  7351. "email": "[email protected]",
  7352. "homepage": "https://vancelucas.com/"
  7353. }
  7354. ],
  7355. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7356. "keywords": [
  7357. "dotenv",
  7358. "env",
  7359. "environment"
  7360. ],
  7361. "support": {
  7362. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7363. "source": "https://github.com/vlucas/phpdotenv/tree/v4.2.0"
  7364. },
  7365. "funding": [
  7366. {
  7367. "url": "https://github.com/GrahamCampbell",
  7368. "type": "github"
  7369. },
  7370. {
  7371. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7372. "type": "tidelift"
  7373. }
  7374. ],
  7375. "time": "2021-01-20T15:11:48+00:00"
  7376. },
  7377. {
  7378. "name": "voku/portable-ascii",
  7379. "version": "1.5.6",
  7380. "source": {
  7381. "type": "git",
  7382. "url": "https://github.com/voku/portable-ascii.git",
  7383. "reference": "80953678b19901e5165c56752d087fc11526017c"
  7384. },
  7385. "dist": {
  7386. "type": "zip",
  7387. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/80953678b19901e5165c56752d087fc11526017c",
  7388. "reference": "80953678b19901e5165c56752d087fc11526017c",
  7389. "shasum": ""
  7390. },
  7391. "require": {
  7392. "php": ">=7.0.0"
  7393. },
  7394. "require-dev": {
  7395. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  7396. },
  7397. "suggest": {
  7398. "ext-intl": "Use Intl for transliterator_transliterate() support"
  7399. },
  7400. "type": "library",
  7401. "autoload": {
  7402. "psr-4": {
  7403. "voku\\": "src/voku/"
  7404. }
  7405. },
  7406. "notification-url": "https://packagist.org/downloads/",
  7407. "license": [
  7408. "MIT"
  7409. ],
  7410. "authors": [
  7411. {
  7412. "name": "Lars Moelleken",
  7413. "homepage": "http://www.moelleken.org/"
  7414. }
  7415. ],
  7416. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  7417. "homepage": "https://github.com/voku/portable-ascii",
  7418. "keywords": [
  7419. "ascii",
  7420. "clean",
  7421. "php"
  7422. ],
  7423. "support": {
  7424. "issues": "https://github.com/voku/portable-ascii/issues",
  7425. "source": "https://github.com/voku/portable-ascii/tree/1.5.6"
  7426. },
  7427. "funding": [
  7428. {
  7429. "url": "https://www.paypal.me/moelleken",
  7430. "type": "custom"
  7431. },
  7432. {
  7433. "url": "https://github.com/voku",
  7434. "type": "github"
  7435. },
  7436. {
  7437. "url": "https://opencollective.com/portable-ascii",
  7438. "type": "open_collective"
  7439. },
  7440. {
  7441. "url": "https://www.patreon.com/voku",
  7442. "type": "patreon"
  7443. },
  7444. {
  7445. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  7446. "type": "tidelift"
  7447. }
  7448. ],
  7449. "time": "2020-11-12T00:07:28+00:00"
  7450. },
  7451. {
  7452. "name": "xhat/payjs",
  7453. "version": "1.5.0",
  7454. "source": {
  7455. "type": "git",
  7456. "url": "https://github.com/xhat/payjs.git",
  7457. "reference": "d15b678f7fb70fc70bafa82c5a7896fceebad364"
  7458. },
  7459. "dist": {
  7460. "type": "zip",
  7461. "url": "https://api.github.com/repos/xhat/payjs/zipball/d15b678f7fb70fc70bafa82c5a7896fceebad364",
  7462. "reference": "d15b678f7fb70fc70bafa82c5a7896fceebad364",
  7463. "shasum": ""
  7464. },
  7465. "type": "library",
  7466. "autoload": {
  7467. "psr-4": {
  7468. "Xhat\\Payjs\\": "src/"
  7469. }
  7470. },
  7471. "notification-url": "https://packagist.org/downloads/",
  7472. "license": [
  7473. "MIT"
  7474. ],
  7475. "authors": [
  7476. {
  7477. "name": "andy",
  7478. "email": "[email protected]"
  7479. }
  7480. ],
  7481. "description": "本项目是基于 PAYJS 的 API 开发的 Composer Package,可直接用于生产环境 https://payjs.cn",
  7482. "support": {
  7483. "issues": "https://github.com/xhat/payjs/issues",
  7484. "source": "https://github.com/xhat/payjs/tree/1.5.0"
  7485. },
  7486. "funding": [
  7487. {
  7488. "url": "https://payjs.cn/sponsor/dajjxz",
  7489. "type": "custom"
  7490. }
  7491. ],
  7492. "time": "2020-09-11T06:02:42+00:00"
  7493. },
  7494. {
  7495. "name": "zbrettonye/geetest",
  7496. "version": "v1.2.0",
  7497. "source": {
  7498. "type": "git",
  7499. "url": "https://github.com/ZBrettonYe/geetest.git",
  7500. "reference": "ee08e5bee9be831c23df241d3ab75678a8ce5fed"
  7501. },
  7502. "dist": {
  7503. "type": "zip",
  7504. "url": "https://api.github.com/repos/ZBrettonYe/geetest/zipball/ee08e5bee9be831c23df241d3ab75678a8ce5fed",
  7505. "reference": "ee08e5bee9be831c23df241d3ab75678a8ce5fed",
  7506. "shasum": ""
  7507. },
  7508. "require": {
  7509. "ext-json": "*",
  7510. "guzzlehttp/guzzle": "^6.3|^7.0",
  7511. "illuminate/routing": "^6|^7|^8",
  7512. "illuminate/support": "^6|^7|^8",
  7513. "php": "^7.2"
  7514. },
  7515. "require-dev": {
  7516. "mockery/mockery": "^1.3.1",
  7517. "phpunit/phpunit": "^7.5.15|^8.4|^9.0"
  7518. },
  7519. "type": "library",
  7520. "extra": {
  7521. "laravel": {
  7522. "providers": [
  7523. "ZBrettonYe\\Geetest\\GeetestServiceProvider"
  7524. ],
  7525. "aliases": {
  7526. "Geetest": "ZBrettonYe\\Geetest\\Geetest"
  7527. }
  7528. }
  7529. },
  7530. "autoload": {
  7531. "psr-4": {
  7532. "ZBrettonYe\\Geetest\\": "src/"
  7533. }
  7534. },
  7535. "notification-url": "https://packagist.org/downloads/",
  7536. "license": [
  7537. "MIT"
  7538. ],
  7539. "authors": [
  7540. {
  7541. "name": "zbrettonye",
  7542. "email": "[email protected]"
  7543. }
  7544. ],
  7545. "description": "Geetest Package for Laravel6-8",
  7546. "keywords": [
  7547. "geetest",
  7548. "laravel"
  7549. ],
  7550. "support": {
  7551. "source": "https://github.com/ZBrettonYe/geetest/tree/v1.2.0"
  7552. },
  7553. "time": "2020-10-13T20:15:36+00:00"
  7554. },
  7555. {
  7556. "name": "zbrettonye/hcaptcha",
  7557. "version": "V1.1.0",
  7558. "source": {
  7559. "type": "git",
  7560. "url": "https://github.com/ZBrettonYe/hcaptcha.git",
  7561. "reference": "d84cb1bcf754ada345da8baadf7129dbca67d1ee"
  7562. },
  7563. "dist": {
  7564. "type": "zip",
  7565. "url": "https://api.github.com/repos/ZBrettonYe/hcaptcha/zipball/d84cb1bcf754ada345da8baadf7129dbca67d1ee",
  7566. "reference": "d84cb1bcf754ada345da8baadf7129dbca67d1ee",
  7567. "shasum": ""
  7568. },
  7569. "require": {
  7570. "guzzlehttp/guzzle": "^6.2|^7.0",
  7571. "illuminate/support": "^6|^7|^8",
  7572. "php": "^7.2"
  7573. },
  7574. "require-dev": {
  7575. "phpunit/phpunit": "~4.8"
  7576. },
  7577. "type": "library",
  7578. "extra": {
  7579. "laravel": {
  7580. "providers": [
  7581. "ZBrettonYe\\HCaptcha\\HCaptchaServiceProvider"
  7582. ],
  7583. "aliases": {
  7584. "HCaptcha": "ZBrettonYe\\HCaptcha\\Facades\\HCaptcha"
  7585. }
  7586. }
  7587. },
  7588. "autoload": {
  7589. "psr-4": {
  7590. "ZBrettonYe\\HCaptcha\\": "src/"
  7591. }
  7592. },
  7593. "notification-url": "https://packagist.org/downloads/",
  7594. "license": [
  7595. "MIT"
  7596. ],
  7597. "authors": [
  7598. {
  7599. "name": "zbrettonye",
  7600. "email": "[email protected]"
  7601. }
  7602. ],
  7603. "description": "hCaptcha For Laravel6~8",
  7604. "keywords": [
  7605. "captcha",
  7606. "hcaptcha",
  7607. "laravel"
  7608. ],
  7609. "support": {
  7610. "source": "https://github.com/ZBrettonYe/hcaptcha/tree/V1.1.0"
  7611. },
  7612. "time": "2020-10-13T21:22:51+00:00"
  7613. },
  7614. {
  7615. "name": "zbrettonye/no-captcha",
  7616. "version": "v1.1.0",
  7617. "source": {
  7618. "type": "git",
  7619. "url": "https://github.com/ZBrettonYe/no-captcha.git",
  7620. "reference": "4cb229bf5fa9f5726eb5a821e9710c5fc8edad28"
  7621. },
  7622. "dist": {
  7623. "type": "zip",
  7624. "url": "https://api.github.com/repos/ZBrettonYe/no-captcha/zipball/4cb229bf5fa9f5726eb5a821e9710c5fc8edad28",
  7625. "reference": "4cb229bf5fa9f5726eb5a821e9710c5fc8edad28",
  7626. "shasum": ""
  7627. },
  7628. "require": {
  7629. "ext-json": "*",
  7630. "guzzlehttp/guzzle": "^6.2|^7.0",
  7631. "illuminate/support": "^6|^7|^8",
  7632. "php": "^7.2"
  7633. },
  7634. "require-dev": {
  7635. "phpunit/phpunit": "~4.8"
  7636. },
  7637. "type": "library",
  7638. "extra": {
  7639. "laravel": {
  7640. "providers": [
  7641. "ZBrettonYe\\NoCaptcha\\NoCaptchaServiceProvider"
  7642. ],
  7643. "aliases": {
  7644. "NoCaptcha": "ZBrettonYe\\NoCaptcha\\Facades\\NoCaptcha"
  7645. }
  7646. }
  7647. },
  7648. "autoload": {
  7649. "psr-4": {
  7650. "ZBrettonYe\\NoCaptcha\\": "src/"
  7651. }
  7652. },
  7653. "notification-url": "https://packagist.org/downloads/",
  7654. "license": [
  7655. "MIT"
  7656. ],
  7657. "authors": [
  7658. {
  7659. "name": "zbrettonye",
  7660. "email": "[email protected]"
  7661. }
  7662. ],
  7663. "description": "No CAPTCHA reCAPTCHA For Laravel6~8",
  7664. "keywords": [
  7665. "captcha",
  7666. "laravel",
  7667. "no-captcha",
  7668. "recaptcha"
  7669. ],
  7670. "support": {
  7671. "source": "https://github.com/ZBrettonYe/no-captcha/tree/v1.1.0"
  7672. },
  7673. "time": "2020-10-13T21:35:30+00:00"
  7674. },
  7675. {
  7676. "name": "zoujingli/ip2region",
  7677. "version": "v1.0.9",
  7678. "source": {
  7679. "type": "git",
  7680. "url": "https://github.com/zoujingli/ip2region.git",
  7681. "reference": "e48f9122f50dd3b79295e35b4acdd0dcd2608ca8"
  7682. },
  7683. "dist": {
  7684. "type": "zip",
  7685. "url": "https://api.github.com/repos/zoujingli/ip2region/zipball/e48f9122f50dd3b79295e35b4acdd0dcd2608ca8",
  7686. "reference": "e48f9122f50dd3b79295e35b4acdd0dcd2608ca8",
  7687. "shasum": ""
  7688. },
  7689. "require": {
  7690. "php": ">=5.3"
  7691. },
  7692. "type": "library",
  7693. "autoload": {
  7694. "classmap": [
  7695. "Ip2Region.php"
  7696. ]
  7697. },
  7698. "notification-url": "https://packagist.org/downloads/",
  7699. "license": [
  7700. "Apache-2.0"
  7701. ],
  7702. "authors": [
  7703. {
  7704. "name": "Anyon",
  7705. "email": "[email protected]",
  7706. "homepage": "http://ctolog.com"
  7707. }
  7708. ],
  7709. "description": "Ip2Region for PHP",
  7710. "homepage": "https://github.com/zoujingli/Ip2Region",
  7711. "keywords": [
  7712. "Ip2Region"
  7713. ],
  7714. "support": {
  7715. "issues": "https://github.com/zoujingli/ip2region/issues",
  7716. "source": "https://github.com/zoujingli/ip2region/tree/v1.0.9"
  7717. },
  7718. "time": "2020-11-06T07:21:55+00:00"
  7719. }
  7720. ],
  7721. "packages-dev": [
  7722. {
  7723. "name": "arcanedev/laravel-lang",
  7724. "version": "8.2.0",
  7725. "source": {
  7726. "type": "git",
  7727. "url": "https://github.com/ARCANEDEV/LaravelLang.git",
  7728. "reference": "b9a4a6d21aec778befca7594d34b1748354f43a2"
  7729. },
  7730. "dist": {
  7731. "type": "zip",
  7732. "url": "https://api.github.com/repos/ARCANEDEV/LaravelLang/zipball/b9a4a6d21aec778befca7594d34b1748354f43a2",
  7733. "reference": "b9a4a6d21aec778befca7594d34b1748354f43a2",
  7734. "shasum": ""
  7735. },
  7736. "require": {
  7737. "arcanedev/support": "^7.1.2",
  7738. "caouecs/laravel-lang": "^7.0.1",
  7739. "php": "^7.2.5"
  7740. },
  7741. "require-dev": {
  7742. "mockery/mockery": "^1.3.1",
  7743. "orchestra/testbench": "^5.0",
  7744. "phpunit/phpunit": "^8.5"
  7745. },
  7746. "type": "library",
  7747. "extra": {
  7748. "laravel": {
  7749. "providers": [
  7750. "Arcanedev\\LaravelLang\\LaravelLangServiceProvider",
  7751. "Arcanedev\\LaravelLang\\Providers\\DeferredServicesProvider",
  7752. "Arcanedev\\LaravelLang\\Providers\\TranslationServiceProvider"
  7753. ]
  7754. }
  7755. },
  7756. "autoload": {
  7757. "psr-4": {
  7758. "Arcanedev\\LaravelLang\\": "src/"
  7759. }
  7760. },
  7761. "notification-url": "https://packagist.org/downloads/",
  7762. "license": [
  7763. "MIT"
  7764. ],
  7765. "authors": [
  7766. {
  7767. "name": "ARCANEDEV",
  7768. "email": "[email protected]",
  7769. "homepage": "https://github.com/arcanedev-maroc",
  7770. "role": "Developer"
  7771. }
  7772. ],
  7773. "description": "Translations manager and checker for Laravel based on 'caouecs/laravel-lang' package.",
  7774. "homepage": "https://github.com/ARCANEDEV/LaravelLang",
  7775. "keywords": [
  7776. "arcanedev",
  7777. "lang",
  7778. "languages",
  7779. "laravel",
  7780. "localisation",
  7781. "localization",
  7782. "trans",
  7783. "translations",
  7784. "validations"
  7785. ],
  7786. "support": {
  7787. "issues": "https://github.com/ARCANEDEV/LaravelLang/issues",
  7788. "source": "https://github.com/ARCANEDEV/LaravelLang/tree/master"
  7789. },
  7790. "time": "2020-07-14T10:10:34+00:00"
  7791. },
  7792. {
  7793. "name": "arcanedev/support",
  7794. "version": "7.1.2",
  7795. "source": {
  7796. "type": "git",
  7797. "url": "https://github.com/ARCANEDEV/Support.git",
  7798. "reference": "7e4199d30f04c611ba5d895e663f111c217ff5a3"
  7799. },
  7800. "dist": {
  7801. "type": "zip",
  7802. "url": "https://api.github.com/repos/ARCANEDEV/Support/zipball/7e4199d30f04c611ba5d895e663f111c217ff5a3",
  7803. "reference": "7e4199d30f04c611ba5d895e663f111c217ff5a3",
  7804. "shasum": ""
  7805. },
  7806. "require": {
  7807. "illuminate/filesystem": "^7.0",
  7808. "illuminate/support": "^7.0",
  7809. "php": "^7.2.5"
  7810. },
  7811. "require-dev": {
  7812. "orchestra/testbench": "^5.0",
  7813. "phpunit/phpunit": "^8.0|^9.0"
  7814. },
  7815. "type": "library",
  7816. "extra": {
  7817. "branch-alias": {
  7818. "dev-master": "7.x-dev"
  7819. }
  7820. },
  7821. "autoload": {
  7822. "psr-4": {
  7823. "Arcanedev\\Support\\": "src/"
  7824. },
  7825. "files": [
  7826. "helpers.php"
  7827. ]
  7828. },
  7829. "notification-url": "https://packagist.org/downloads/",
  7830. "license": [
  7831. "MIT"
  7832. ],
  7833. "authors": [
  7834. {
  7835. "name": "ARCANEDEV",
  7836. "email": "[email protected]",
  7837. "homepage": "https://github.com/arcanedev-maroc"
  7838. }
  7839. ],
  7840. "description": "ARCANEDEV Support Helpers",
  7841. "homepage": "https://github.com/ARCANEDEV/Support",
  7842. "keywords": [
  7843. "arcanedev",
  7844. "arcanesoft",
  7845. "laravel",
  7846. "support"
  7847. ],
  7848. "support": {
  7849. "issues": "https://github.com/ARCANEDEV/Support/issues",
  7850. "source": "https://github.com/ARCANEDEV/Support/tree/7.1.2"
  7851. },
  7852. "time": "2020-03-12T09:28:19+00:00"
  7853. },
  7854. {
  7855. "name": "barryvdh/laravel-debugbar",
  7856. "version": "v3.5.2",
  7857. "source": {
  7858. "type": "git",
  7859. "url": "https://github.com/barryvdh/laravel-debugbar.git",
  7860. "reference": "cae0a8d1cb89b0f0522f65e60465e16d738e069b"
  7861. },
  7862. "dist": {
  7863. "type": "zip",
  7864. "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/cae0a8d1cb89b0f0522f65e60465e16d738e069b",
  7865. "reference": "cae0a8d1cb89b0f0522f65e60465e16d738e069b",
  7866. "shasum": ""
  7867. },
  7868. "require": {
  7869. "illuminate/routing": "^6|^7|^8",
  7870. "illuminate/session": "^6|^7|^8",
  7871. "illuminate/support": "^6|^7|^8",
  7872. "maximebf/debugbar": "^1.16.3",
  7873. "php": ">=7.2",
  7874. "symfony/debug": "^4.3|^5",
  7875. "symfony/finder": "^4.3|^5"
  7876. },
  7877. "require-dev": {
  7878. "mockery/mockery": "^1.3.3",
  7879. "orchestra/testbench-dusk": "^4|^5|^6",
  7880. "phpunit/phpunit": "^8.5|^9.0",
  7881. "squizlabs/php_codesniffer": "^3.5"
  7882. },
  7883. "type": "library",
  7884. "extra": {
  7885. "branch-alias": {
  7886. "dev-master": "3.5-dev"
  7887. },
  7888. "laravel": {
  7889. "providers": [
  7890. "Barryvdh\\Debugbar\\ServiceProvider"
  7891. ],
  7892. "aliases": {
  7893. "Debugbar": "Barryvdh\\Debugbar\\Facade"
  7894. }
  7895. }
  7896. },
  7897. "autoload": {
  7898. "psr-4": {
  7899. "Barryvdh\\Debugbar\\": "src/"
  7900. },
  7901. "files": [
  7902. "src/helpers.php"
  7903. ]
  7904. },
  7905. "notification-url": "https://packagist.org/downloads/",
  7906. "license": [
  7907. "MIT"
  7908. ],
  7909. "authors": [
  7910. {
  7911. "name": "Barry vd. Heuvel",
  7912. "email": "[email protected]"
  7913. }
  7914. ],
  7915. "description": "PHP Debugbar integration for Laravel",
  7916. "keywords": [
  7917. "debug",
  7918. "debugbar",
  7919. "laravel",
  7920. "profiler",
  7921. "webprofiler"
  7922. ],
  7923. "support": {
  7924. "issues": "https://github.com/barryvdh/laravel-debugbar/issues",
  7925. "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.5.2"
  7926. },
  7927. "funding": [
  7928. {
  7929. "url": "https://github.com/barryvdh",
  7930. "type": "github"
  7931. }
  7932. ],
  7933. "time": "2021-01-06T14:21:44+00:00"
  7934. },
  7935. {
  7936. "name": "barryvdh/laravel-ide-helper",
  7937. "version": "v2.8.2",
  7938. "source": {
  7939. "type": "git",
  7940. "url": "https://github.com/barryvdh/laravel-ide-helper.git",
  7941. "reference": "5515cabea39b9cf55f98980d0f269dc9d85cfcca"
  7942. },
  7943. "dist": {
  7944. "type": "zip",
  7945. "url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/5515cabea39b9cf55f98980d0f269dc9d85cfcca",
  7946. "reference": "5515cabea39b9cf55f98980d0f269dc9d85cfcca",
  7947. "shasum": ""
  7948. },
  7949. "require": {
  7950. "barryvdh/reflection-docblock": "^2.0.6",
  7951. "composer/composer": "^1.6 || ^2",
  7952. "doctrine/dbal": "~2.3",
  7953. "ext-json": "*",
  7954. "illuminate/console": "^6 || ^7 || ^8",
  7955. "illuminate/filesystem": "^6 || ^7 || ^8",
  7956. "illuminate/support": "^6 || ^7 || ^8",
  7957. "php": ">=7.2",
  7958. "phpdocumentor/type-resolver": "^1.1.0"
  7959. },
  7960. "require-dev": {
  7961. "ext-pdo_sqlite": "*",
  7962. "friendsofphp/php-cs-fixer": "^2",
  7963. "illuminate/config": "^6 || ^7 || ^8",
  7964. "illuminate/view": "^6 || ^7 || ^8",
  7965. "mockery/mockery": "^1.3.3",
  7966. "orchestra/testbench": "^4 || ^5 || ^6",
  7967. "phpunit/phpunit": "^8.5 || ^9",
  7968. "spatie/phpunit-snapshot-assertions": "^1.4 || ^2.2 || ^3 || ^4",
  7969. "vimeo/psalm": "^3.12"
  7970. },
  7971. "type": "library",
  7972. "extra": {
  7973. "branch-alias": {
  7974. "dev-master": "2.8-dev"
  7975. },
  7976. "laravel": {
  7977. "providers": [
  7978. "Barryvdh\\LaravelIdeHelper\\IdeHelperServiceProvider"
  7979. ]
  7980. }
  7981. },
  7982. "autoload": {
  7983. "psr-4": {
  7984. "Barryvdh\\LaravelIdeHelper\\": "src"
  7985. }
  7986. },
  7987. "notification-url": "https://packagist.org/downloads/",
  7988. "license": [
  7989. "MIT"
  7990. ],
  7991. "authors": [
  7992. {
  7993. "name": "Barry vd. Heuvel",
  7994. "email": "[email protected]"
  7995. }
  7996. ],
  7997. "description": "Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.",
  7998. "keywords": [
  7999. "autocomplete",
  8000. "codeintel",
  8001. "helper",
  8002. "ide",
  8003. "laravel",
  8004. "netbeans",
  8005. "phpdoc",
  8006. "phpstorm",
  8007. "sublime"
  8008. ],
  8009. "support": {
  8010. "issues": "https://github.com/barryvdh/laravel-ide-helper/issues",
  8011. "source": "https://github.com/barryvdh/laravel-ide-helper/tree/v2.8.2"
  8012. },
  8013. "funding": [
  8014. {
  8015. "url": "https://github.com/barryvdh",
  8016. "type": "github"
  8017. }
  8018. ],
  8019. "time": "2020-12-06T08:55:05+00:00"
  8020. },
  8021. {
  8022. "name": "barryvdh/reflection-docblock",
  8023. "version": "v2.0.6",
  8024. "source": {
  8025. "type": "git",
  8026. "url": "https://github.com/barryvdh/ReflectionDocBlock.git",
  8027. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16"
  8028. },
  8029. "dist": {
  8030. "type": "zip",
  8031. "url": "https://api.github.com/repos/barryvdh/ReflectionDocBlock/zipball/6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  8032. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  8033. "shasum": ""
  8034. },
  8035. "require": {
  8036. "php": ">=5.3.3"
  8037. },
  8038. "require-dev": {
  8039. "phpunit/phpunit": "~4.0,<4.5"
  8040. },
  8041. "suggest": {
  8042. "dflydev/markdown": "~1.0",
  8043. "erusev/parsedown": "~1.0"
  8044. },
  8045. "type": "library",
  8046. "extra": {
  8047. "branch-alias": {
  8048. "dev-master": "2.0.x-dev"
  8049. }
  8050. },
  8051. "autoload": {
  8052. "psr-0": {
  8053. "Barryvdh": [
  8054. "src/"
  8055. ]
  8056. }
  8057. },
  8058. "notification-url": "https://packagist.org/downloads/",
  8059. "license": [
  8060. "MIT"
  8061. ],
  8062. "authors": [
  8063. {
  8064. "name": "Mike van Riel",
  8065. "email": "[email protected]"
  8066. }
  8067. ],
  8068. "support": {
  8069. "source": "https://github.com/barryvdh/ReflectionDocBlock/tree/v2.0.6"
  8070. },
  8071. "time": "2018-12-13T10:34:14+00:00"
  8072. },
  8073. {
  8074. "name": "caouecs/laravel-lang",
  8075. "version": "7.0.3",
  8076. "source": {
  8077. "type": "git",
  8078. "url": "https://github.com/caouecs/lang.git",
  8079. "reference": "2cb9932f781415f1669ce27d29e5b86399ab164a"
  8080. },
  8081. "dist": {
  8082. "type": "zip",
  8083. "url": "https://api.github.com/repos/caouecs/lang/zipball/2cb9932f781415f1669ce27d29e5b86399ab164a",
  8084. "reference": "2cb9932f781415f1669ce27d29e5b86399ab164a",
  8085. "shasum": ""
  8086. },
  8087. "require": {
  8088. "ext-json": "*"
  8089. },
  8090. "suggest": {
  8091. "andrey-helldar/laravel-lang-publisher": "Easy installation and update of translation files for your project",
  8092. "arcanedev/laravel-lang": "Translations manager and checker for Laravel 5",
  8093. "overtrue/laravel-lang": "Command to add languages in your project"
  8094. },
  8095. "type": "library",
  8096. "notification-url": "https://packagist.org/downloads/",
  8097. "license": [
  8098. "MIT"
  8099. ],
  8100. "authors": [
  8101. {
  8102. "name": "caouecs",
  8103. "email": "[email protected]"
  8104. }
  8105. ],
  8106. "description": "Languages for Laravel",
  8107. "keywords": [
  8108. "lang",
  8109. "languages",
  8110. "laravel",
  8111. "lpm"
  8112. ],
  8113. "support": {
  8114. "source": "https://github.com/caouecs/lang/tree/7.0.3"
  8115. },
  8116. "abandoned": "https://github.com/Laravel-Lang/lang",
  8117. "time": "2020-08-23T08:17:21+00:00"
  8118. },
  8119. {
  8120. "name": "composer/composer",
  8121. "version": "2.0.11",
  8122. "source": {
  8123. "type": "git",
  8124. "url": "https://github.com/composer/composer.git",
  8125. "reference": "a5a5632da0b1c2d6fa9a3b65f1f4e90d1f04abb9"
  8126. },
  8127. "dist": {
  8128. "type": "zip",
  8129. "url": "https://api.github.com/repos/composer/composer/zipball/a5a5632da0b1c2d6fa9a3b65f1f4e90d1f04abb9",
  8130. "reference": "a5a5632da0b1c2d6fa9a3b65f1f4e90d1f04abb9",
  8131. "shasum": ""
  8132. },
  8133. "require": {
  8134. "composer/ca-bundle": "^1.0",
  8135. "composer/semver": "^3.0",
  8136. "composer/spdx-licenses": "^1.2",
  8137. "composer/xdebug-handler": "^1.1",
  8138. "justinrainbow/json-schema": "^5.2.10",
  8139. "php": "^5.3.2 || ^7.0 || ^8.0",
  8140. "psr/log": "^1.0",
  8141. "react/promise": "^1.2 || ^2.7",
  8142. "seld/jsonlint": "^1.4",
  8143. "seld/phar-utils": "^1.0",
  8144. "symfony/console": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0",
  8145. "symfony/filesystem": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0",
  8146. "symfony/finder": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0",
  8147. "symfony/process": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0"
  8148. },
  8149. "require-dev": {
  8150. "phpspec/prophecy": "^1.10",
  8151. "symfony/phpunit-bridge": "^4.2 || ^5.0"
  8152. },
  8153. "suggest": {
  8154. "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages",
  8155. "ext-zip": "Enabling the zip extension allows you to unzip archives",
  8156. "ext-zlib": "Allow gzip compression of HTTP requests"
  8157. },
  8158. "bin": [
  8159. "bin/composer"
  8160. ],
  8161. "type": "library",
  8162. "extra": {
  8163. "branch-alias": {
  8164. "dev-master": "2.0-dev"
  8165. }
  8166. },
  8167. "autoload": {
  8168. "psr-4": {
  8169. "Composer\\": "src/Composer"
  8170. }
  8171. },
  8172. "notification-url": "https://packagist.org/downloads/",
  8173. "license": [
  8174. "MIT"
  8175. ],
  8176. "authors": [
  8177. {
  8178. "name": "Nils Adermann",
  8179. "email": "[email protected]",
  8180. "homepage": "https://www.naderman.de"
  8181. },
  8182. {
  8183. "name": "Jordi Boggiano",
  8184. "email": "[email protected]",
  8185. "homepage": "https://seld.be"
  8186. }
  8187. ],
  8188. "description": "Composer helps you declare, manage and install dependencies of PHP projects. It ensures you have the right stack everywhere.",
  8189. "homepage": "https://getcomposer.org/",
  8190. "keywords": [
  8191. "autoload",
  8192. "dependency",
  8193. "package"
  8194. ],
  8195. "support": {
  8196. "irc": "irc://irc.freenode.org/composer",
  8197. "issues": "https://github.com/composer/composer/issues",
  8198. "source": "https://github.com/composer/composer/tree/2.0.11"
  8199. },
  8200. "funding": [
  8201. {
  8202. "url": "https://packagist.com",
  8203. "type": "custom"
  8204. },
  8205. {
  8206. "url": "https://github.com/composer",
  8207. "type": "github"
  8208. },
  8209. {
  8210. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8211. "type": "tidelift"
  8212. }
  8213. ],
  8214. "time": "2021-02-24T13:57:23+00:00"
  8215. },
  8216. {
  8217. "name": "composer/semver",
  8218. "version": "3.2.4",
  8219. "source": {
  8220. "type": "git",
  8221. "url": "https://github.com/composer/semver.git",
  8222. "reference": "a02fdf930a3c1c3ed3a49b5f63859c0c20e10464"
  8223. },
  8224. "dist": {
  8225. "type": "zip",
  8226. "url": "https://api.github.com/repos/composer/semver/zipball/a02fdf930a3c1c3ed3a49b5f63859c0c20e10464",
  8227. "reference": "a02fdf930a3c1c3ed3a49b5f63859c0c20e10464",
  8228. "shasum": ""
  8229. },
  8230. "require": {
  8231. "php": "^5.3.2 || ^7.0 || ^8.0"
  8232. },
  8233. "require-dev": {
  8234. "phpstan/phpstan": "^0.12.54",
  8235. "symfony/phpunit-bridge": "^4.2 || ^5"
  8236. },
  8237. "type": "library",
  8238. "extra": {
  8239. "branch-alias": {
  8240. "dev-main": "3.x-dev"
  8241. }
  8242. },
  8243. "autoload": {
  8244. "psr-4": {
  8245. "Composer\\Semver\\": "src"
  8246. }
  8247. },
  8248. "notification-url": "https://packagist.org/downloads/",
  8249. "license": [
  8250. "MIT"
  8251. ],
  8252. "authors": [
  8253. {
  8254. "name": "Nils Adermann",
  8255. "email": "[email protected]",
  8256. "homepage": "http://www.naderman.de"
  8257. },
  8258. {
  8259. "name": "Jordi Boggiano",
  8260. "email": "[email protected]",
  8261. "homepage": "http://seld.be"
  8262. },
  8263. {
  8264. "name": "Rob Bast",
  8265. "email": "[email protected]",
  8266. "homepage": "http://robbast.nl"
  8267. }
  8268. ],
  8269. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  8270. "keywords": [
  8271. "semantic",
  8272. "semver",
  8273. "validation",
  8274. "versioning"
  8275. ],
  8276. "support": {
  8277. "irc": "irc://irc.freenode.org/composer",
  8278. "issues": "https://github.com/composer/semver/issues",
  8279. "source": "https://github.com/composer/semver/tree/3.2.4"
  8280. },
  8281. "funding": [
  8282. {
  8283. "url": "https://packagist.com",
  8284. "type": "custom"
  8285. },
  8286. {
  8287. "url": "https://github.com/composer",
  8288. "type": "github"
  8289. },
  8290. {
  8291. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8292. "type": "tidelift"
  8293. }
  8294. ],
  8295. "time": "2020-11-13T08:59:24+00:00"
  8296. },
  8297. {
  8298. "name": "composer/spdx-licenses",
  8299. "version": "1.5.5",
  8300. "source": {
  8301. "type": "git",
  8302. "url": "https://github.com/composer/spdx-licenses.git",
  8303. "reference": "de30328a7af8680efdc03e396aad24befd513200"
  8304. },
  8305. "dist": {
  8306. "type": "zip",
  8307. "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/de30328a7af8680efdc03e396aad24befd513200",
  8308. "reference": "de30328a7af8680efdc03e396aad24befd513200",
  8309. "shasum": ""
  8310. },
  8311. "require": {
  8312. "php": "^5.3.2 || ^7.0 || ^8.0"
  8313. },
  8314. "require-dev": {
  8315. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 7"
  8316. },
  8317. "type": "library",
  8318. "extra": {
  8319. "branch-alias": {
  8320. "dev-main": "1.x-dev"
  8321. }
  8322. },
  8323. "autoload": {
  8324. "psr-4": {
  8325. "Composer\\Spdx\\": "src"
  8326. }
  8327. },
  8328. "notification-url": "https://packagist.org/downloads/",
  8329. "license": [
  8330. "MIT"
  8331. ],
  8332. "authors": [
  8333. {
  8334. "name": "Nils Adermann",
  8335. "email": "[email protected]",
  8336. "homepage": "http://www.naderman.de"
  8337. },
  8338. {
  8339. "name": "Jordi Boggiano",
  8340. "email": "[email protected]",
  8341. "homepage": "http://seld.be"
  8342. },
  8343. {
  8344. "name": "Rob Bast",
  8345. "email": "[email protected]",
  8346. "homepage": "http://robbast.nl"
  8347. }
  8348. ],
  8349. "description": "SPDX licenses list and validation library.",
  8350. "keywords": [
  8351. "license",
  8352. "spdx",
  8353. "validator"
  8354. ],
  8355. "support": {
  8356. "irc": "irc://irc.freenode.org/composer",
  8357. "issues": "https://github.com/composer/spdx-licenses/issues",
  8358. "source": "https://github.com/composer/spdx-licenses/tree/1.5.5"
  8359. },
  8360. "funding": [
  8361. {
  8362. "url": "https://packagist.com",
  8363. "type": "custom"
  8364. },
  8365. {
  8366. "url": "https://github.com/composer",
  8367. "type": "github"
  8368. },
  8369. {
  8370. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8371. "type": "tidelift"
  8372. }
  8373. ],
  8374. "time": "2020-12-03T16:04:16+00:00"
  8375. },
  8376. {
  8377. "name": "composer/xdebug-handler",
  8378. "version": "1.4.5",
  8379. "source": {
  8380. "type": "git",
  8381. "url": "https://github.com/composer/xdebug-handler.git",
  8382. "reference": "f28d44c286812c714741478d968104c5e604a1d4"
  8383. },
  8384. "dist": {
  8385. "type": "zip",
  8386. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/f28d44c286812c714741478d968104c5e604a1d4",
  8387. "reference": "f28d44c286812c714741478d968104c5e604a1d4",
  8388. "shasum": ""
  8389. },
  8390. "require": {
  8391. "php": "^5.3.2 || ^7.0 || ^8.0",
  8392. "psr/log": "^1.0"
  8393. },
  8394. "require-dev": {
  8395. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8"
  8396. },
  8397. "type": "library",
  8398. "autoload": {
  8399. "psr-4": {
  8400. "Composer\\XdebugHandler\\": "src"
  8401. }
  8402. },
  8403. "notification-url": "https://packagist.org/downloads/",
  8404. "license": [
  8405. "MIT"
  8406. ],
  8407. "authors": [
  8408. {
  8409. "name": "John Stevenson",
  8410. "email": "[email protected]"
  8411. }
  8412. ],
  8413. "description": "Restarts a process without Xdebug.",
  8414. "keywords": [
  8415. "Xdebug",
  8416. "performance"
  8417. ],
  8418. "support": {
  8419. "irc": "irc://irc.freenode.org/composer",
  8420. "issues": "https://github.com/composer/xdebug-handler/issues",
  8421. "source": "https://github.com/composer/xdebug-handler/tree/1.4.5"
  8422. },
  8423. "funding": [
  8424. {
  8425. "url": "https://packagist.com",
  8426. "type": "custom"
  8427. },
  8428. {
  8429. "url": "https://github.com/composer",
  8430. "type": "github"
  8431. },
  8432. {
  8433. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8434. "type": "tidelift"
  8435. }
  8436. ],
  8437. "time": "2020-11-13T08:04:11+00:00"
  8438. },
  8439. {
  8440. "name": "doctrine/instantiator",
  8441. "version": "1.4.0",
  8442. "source": {
  8443. "type": "git",
  8444. "url": "https://github.com/doctrine/instantiator.git",
  8445. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
  8446. },
  8447. "dist": {
  8448. "type": "zip",
  8449. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
  8450. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
  8451. "shasum": ""
  8452. },
  8453. "require": {
  8454. "php": "^7.1 || ^8.0"
  8455. },
  8456. "require-dev": {
  8457. "doctrine/coding-standard": "^8.0",
  8458. "ext-pdo": "*",
  8459. "ext-phar": "*",
  8460. "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
  8461. "phpstan/phpstan": "^0.12",
  8462. "phpstan/phpstan-phpunit": "^0.12",
  8463. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  8464. },
  8465. "type": "library",
  8466. "autoload": {
  8467. "psr-4": {
  8468. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  8469. }
  8470. },
  8471. "notification-url": "https://packagist.org/downloads/",
  8472. "license": [
  8473. "MIT"
  8474. ],
  8475. "authors": [
  8476. {
  8477. "name": "Marco Pivetta",
  8478. "email": "[email protected]",
  8479. "homepage": "https://ocramius.github.io/"
  8480. }
  8481. ],
  8482. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8483. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  8484. "keywords": [
  8485. "constructor",
  8486. "instantiate"
  8487. ],
  8488. "support": {
  8489. "issues": "https://github.com/doctrine/instantiator/issues",
  8490. "source": "https://github.com/doctrine/instantiator/tree/1.4.0"
  8491. },
  8492. "funding": [
  8493. {
  8494. "url": "https://www.doctrine-project.org/sponsorship.html",
  8495. "type": "custom"
  8496. },
  8497. {
  8498. "url": "https://www.patreon.com/phpdoctrine",
  8499. "type": "patreon"
  8500. },
  8501. {
  8502. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  8503. "type": "tidelift"
  8504. }
  8505. ],
  8506. "time": "2020-11-10T18:47:58+00:00"
  8507. },
  8508. {
  8509. "name": "facade/flare-client-php",
  8510. "version": "1.4.0",
  8511. "source": {
  8512. "type": "git",
  8513. "url": "https://github.com/facade/flare-client-php.git",
  8514. "reference": "ef0f5bce23b30b32d98fd9bb49c6fa37b40eb546"
  8515. },
  8516. "dist": {
  8517. "type": "zip",
  8518. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/ef0f5bce23b30b32d98fd9bb49c6fa37b40eb546",
  8519. "reference": "ef0f5bce23b30b32d98fd9bb49c6fa37b40eb546",
  8520. "shasum": ""
  8521. },
  8522. "require": {
  8523. "facade/ignition-contracts": "~1.0",
  8524. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  8525. "php": "^7.1|^8.0",
  8526. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  8527. "symfony/mime": "^3.4|^4.0|^5.1",
  8528. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  8529. },
  8530. "require-dev": {
  8531. "friendsofphp/php-cs-fixer": "^2.14",
  8532. "phpunit/phpunit": "^7.5.16",
  8533. "spatie/phpunit-snapshot-assertions": "^2.0"
  8534. },
  8535. "type": "library",
  8536. "extra": {
  8537. "branch-alias": {
  8538. "dev-master": "1.0-dev"
  8539. }
  8540. },
  8541. "autoload": {
  8542. "psr-4": {
  8543. "Facade\\FlareClient\\": "src"
  8544. },
  8545. "files": [
  8546. "src/helpers.php"
  8547. ]
  8548. },
  8549. "notification-url": "https://packagist.org/downloads/",
  8550. "license": [
  8551. "MIT"
  8552. ],
  8553. "description": "Send PHP errors to Flare",
  8554. "homepage": "https://github.com/facade/flare-client-php",
  8555. "keywords": [
  8556. "exception",
  8557. "facade",
  8558. "flare",
  8559. "reporting"
  8560. ],
  8561. "support": {
  8562. "issues": "https://github.com/facade/flare-client-php/issues",
  8563. "source": "https://github.com/facade/flare-client-php/tree/1.4.0"
  8564. },
  8565. "funding": [
  8566. {
  8567. "url": "https://github.com/spatie",
  8568. "type": "github"
  8569. }
  8570. ],
  8571. "time": "2021-02-16T12:42:06+00:00"
  8572. },
  8573. {
  8574. "name": "facade/ignition",
  8575. "version": "2.5.14",
  8576. "source": {
  8577. "type": "git",
  8578. "url": "https://github.com/facade/ignition.git",
  8579. "reference": "17097f7a83e200d90d1cf9f4d1b35c1001513a47"
  8580. },
  8581. "dist": {
  8582. "type": "zip",
  8583. "url": "https://api.github.com/repos/facade/ignition/zipball/17097f7a83e200d90d1cf9f4d1b35c1001513a47",
  8584. "reference": "17097f7a83e200d90d1cf9f4d1b35c1001513a47",
  8585. "shasum": ""
  8586. },
  8587. "require": {
  8588. "ext-json": "*",
  8589. "ext-mbstring": "*",
  8590. "facade/flare-client-php": "^1.3.7",
  8591. "facade/ignition-contracts": "^1.0.2",
  8592. "filp/whoops": "^2.4",
  8593. "illuminate/support": "^7.0|^8.0",
  8594. "monolog/monolog": "^2.0",
  8595. "php": "^7.2.5|^8.0",
  8596. "symfony/console": "^5.0",
  8597. "symfony/var-dumper": "^5.0"
  8598. },
  8599. "require-dev": {
  8600. "friendsofphp/php-cs-fixer": "^2.14",
  8601. "mockery/mockery": "^1.3",
  8602. "orchestra/testbench": "^5.0|^6.0",
  8603. "psalm/plugin-laravel": "^1.2"
  8604. },
  8605. "suggest": {
  8606. "laravel/telescope": "^3.1"
  8607. },
  8608. "type": "library",
  8609. "extra": {
  8610. "branch-alias": {
  8611. "dev-master": "2.x-dev"
  8612. },
  8613. "laravel": {
  8614. "providers": [
  8615. "Facade\\Ignition\\IgnitionServiceProvider"
  8616. ],
  8617. "aliases": {
  8618. "Flare": "Facade\\Ignition\\Facades\\Flare"
  8619. }
  8620. }
  8621. },
  8622. "autoload": {
  8623. "psr-4": {
  8624. "Facade\\Ignition\\": "src"
  8625. },
  8626. "files": [
  8627. "src/helpers.php"
  8628. ]
  8629. },
  8630. "notification-url": "https://packagist.org/downloads/",
  8631. "license": [
  8632. "MIT"
  8633. ],
  8634. "description": "A beautiful error page for Laravel applications.",
  8635. "homepage": "https://github.com/facade/ignition",
  8636. "keywords": [
  8637. "error",
  8638. "flare",
  8639. "laravel",
  8640. "page"
  8641. ],
  8642. "support": {
  8643. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  8644. "forum": "https://twitter.com/flareappio",
  8645. "issues": "https://github.com/facade/ignition/issues",
  8646. "source": "https://github.com/facade/ignition"
  8647. },
  8648. "time": "2021-03-04T08:48:01+00:00"
  8649. },
  8650. {
  8651. "name": "facade/ignition-contracts",
  8652. "version": "1.0.2",
  8653. "source": {
  8654. "type": "git",
  8655. "url": "https://github.com/facade/ignition-contracts.git",
  8656. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  8657. },
  8658. "dist": {
  8659. "type": "zip",
  8660. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8661. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8662. "shasum": ""
  8663. },
  8664. "require": {
  8665. "php": "^7.3|^8.0"
  8666. },
  8667. "require-dev": {
  8668. "friendsofphp/php-cs-fixer": "^v2.15.8",
  8669. "phpunit/phpunit": "^9.3.11",
  8670. "vimeo/psalm": "^3.17.1"
  8671. },
  8672. "type": "library",
  8673. "autoload": {
  8674. "psr-4": {
  8675. "Facade\\IgnitionContracts\\": "src"
  8676. }
  8677. },
  8678. "notification-url": "https://packagist.org/downloads/",
  8679. "license": [
  8680. "MIT"
  8681. ],
  8682. "authors": [
  8683. {
  8684. "name": "Freek Van der Herten",
  8685. "email": "[email protected]",
  8686. "homepage": "https://flareapp.io",
  8687. "role": "Developer"
  8688. }
  8689. ],
  8690. "description": "Solution contracts for Ignition",
  8691. "homepage": "https://github.com/facade/ignition-contracts",
  8692. "keywords": [
  8693. "contracts",
  8694. "flare",
  8695. "ignition"
  8696. ],
  8697. "support": {
  8698. "issues": "https://github.com/facade/ignition-contracts/issues",
  8699. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  8700. },
  8701. "time": "2020-10-16T08:27:54+00:00"
  8702. },
  8703. {
  8704. "name": "fakerphp/faker",
  8705. "version": "v1.13.0",
  8706. "source": {
  8707. "type": "git",
  8708. "url": "https://github.com/FakerPHP/Faker.git",
  8709. "reference": "ab3f5364d01f2c2c16113442fb987d26e4004913"
  8710. },
  8711. "dist": {
  8712. "type": "zip",
  8713. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/ab3f5364d01f2c2c16113442fb987d26e4004913",
  8714. "reference": "ab3f5364d01f2c2c16113442fb987d26e4004913",
  8715. "shasum": ""
  8716. },
  8717. "require": {
  8718. "php": "^7.1 || ^8.0"
  8719. },
  8720. "conflict": {
  8721. "fzaninotto/faker": "*"
  8722. },
  8723. "require-dev": {
  8724. "bamarni/composer-bin-plugin": "^1.4.1",
  8725. "ext-intl": "*",
  8726. "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.4.2"
  8727. },
  8728. "type": "library",
  8729. "autoload": {
  8730. "psr-4": {
  8731. "Faker\\": "src/Faker/"
  8732. }
  8733. },
  8734. "notification-url": "https://packagist.org/downloads/",
  8735. "license": [
  8736. "MIT"
  8737. ],
  8738. "authors": [
  8739. {
  8740. "name": "François Zaninotto"
  8741. }
  8742. ],
  8743. "description": "Faker is a PHP library that generates fake data for you.",
  8744. "keywords": [
  8745. "data",
  8746. "faker",
  8747. "fixtures"
  8748. ],
  8749. "support": {
  8750. "issues": "https://github.com/FakerPHP/Faker/issues",
  8751. "source": "https://github.com/FakerPHP/Faker/tree/v1.13.0"
  8752. },
  8753. "time": "2020-12-18T16:50:48+00:00"
  8754. },
  8755. {
  8756. "name": "filp/whoops",
  8757. "version": "2.9.2",
  8758. "source": {
  8759. "type": "git",
  8760. "url": "https://github.com/filp/whoops.git",
  8761. "reference": "df7933820090489623ce0be5e85c7e693638e536"
  8762. },
  8763. "dist": {
  8764. "type": "zip",
  8765. "url": "https://api.github.com/repos/filp/whoops/zipball/df7933820090489623ce0be5e85c7e693638e536",
  8766. "reference": "df7933820090489623ce0be5e85c7e693638e536",
  8767. "shasum": ""
  8768. },
  8769. "require": {
  8770. "php": "^5.5.9 || ^7.0 || ^8.0",
  8771. "psr/log": "^1.0.1"
  8772. },
  8773. "require-dev": {
  8774. "mockery/mockery": "^0.9 || ^1.0",
  8775. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  8776. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  8777. },
  8778. "suggest": {
  8779. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  8780. "whoops/soap": "Formats errors as SOAP responses"
  8781. },
  8782. "type": "library",
  8783. "extra": {
  8784. "branch-alias": {
  8785. "dev-master": "2.7-dev"
  8786. }
  8787. },
  8788. "autoload": {
  8789. "psr-4": {
  8790. "Whoops\\": "src/Whoops/"
  8791. }
  8792. },
  8793. "notification-url": "https://packagist.org/downloads/",
  8794. "license": [
  8795. "MIT"
  8796. ],
  8797. "authors": [
  8798. {
  8799. "name": "Filipe Dobreira",
  8800. "homepage": "https://github.com/filp",
  8801. "role": "Developer"
  8802. }
  8803. ],
  8804. "description": "php error handling for cool kids",
  8805. "homepage": "https://filp.github.io/whoops/",
  8806. "keywords": [
  8807. "error",
  8808. "exception",
  8809. "handling",
  8810. "library",
  8811. "throwable",
  8812. "whoops"
  8813. ],
  8814. "support": {
  8815. "issues": "https://github.com/filp/whoops/issues",
  8816. "source": "https://github.com/filp/whoops/tree/2.9.2"
  8817. },
  8818. "funding": [
  8819. {
  8820. "url": "https://github.com/denis-sokolov",
  8821. "type": "github"
  8822. }
  8823. ],
  8824. "time": "2021-01-24T12:00:00+00:00"
  8825. },
  8826. {
  8827. "name": "hamcrest/hamcrest-php",
  8828. "version": "v2.0.1",
  8829. "source": {
  8830. "type": "git",
  8831. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8832. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8833. },
  8834. "dist": {
  8835. "type": "zip",
  8836. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8837. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8838. "shasum": ""
  8839. },
  8840. "require": {
  8841. "php": "^5.3|^7.0|^8.0"
  8842. },
  8843. "replace": {
  8844. "cordoval/hamcrest-php": "*",
  8845. "davedevelopment/hamcrest-php": "*",
  8846. "kodova/hamcrest-php": "*"
  8847. },
  8848. "require-dev": {
  8849. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8850. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8851. },
  8852. "type": "library",
  8853. "extra": {
  8854. "branch-alias": {
  8855. "dev-master": "2.1-dev"
  8856. }
  8857. },
  8858. "autoload": {
  8859. "classmap": [
  8860. "hamcrest"
  8861. ]
  8862. },
  8863. "notification-url": "https://packagist.org/downloads/",
  8864. "license": [
  8865. "BSD-3-Clause"
  8866. ],
  8867. "description": "This is the PHP port of Hamcrest Matchers",
  8868. "keywords": [
  8869. "test"
  8870. ],
  8871. "support": {
  8872. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8873. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8874. },
  8875. "time": "2020-07-09T08:09:16+00:00"
  8876. },
  8877. {
  8878. "name": "justinrainbow/json-schema",
  8879. "version": "5.2.10",
  8880. "source": {
  8881. "type": "git",
  8882. "url": "https://github.com/justinrainbow/json-schema.git",
  8883. "reference": "2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b"
  8884. },
  8885. "dist": {
  8886. "type": "zip",
  8887. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b",
  8888. "reference": "2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b",
  8889. "shasum": ""
  8890. },
  8891. "require": {
  8892. "php": ">=5.3.3"
  8893. },
  8894. "require-dev": {
  8895. "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1",
  8896. "json-schema/json-schema-test-suite": "1.2.0",
  8897. "phpunit/phpunit": "^4.8.35"
  8898. },
  8899. "bin": [
  8900. "bin/validate-json"
  8901. ],
  8902. "type": "library",
  8903. "extra": {
  8904. "branch-alias": {
  8905. "dev-master": "5.0.x-dev"
  8906. }
  8907. },
  8908. "autoload": {
  8909. "psr-4": {
  8910. "JsonSchema\\": "src/JsonSchema/"
  8911. }
  8912. },
  8913. "notification-url": "https://packagist.org/downloads/",
  8914. "license": [
  8915. "MIT"
  8916. ],
  8917. "authors": [
  8918. {
  8919. "name": "Bruno Prieto Reis",
  8920. "email": "[email protected]"
  8921. },
  8922. {
  8923. "name": "Justin Rainbow",
  8924. "email": "[email protected]"
  8925. },
  8926. {
  8927. "name": "Igor Wiedler",
  8928. "email": "[email protected]"
  8929. },
  8930. {
  8931. "name": "Robert Schönthal",
  8932. "email": "[email protected]"
  8933. }
  8934. ],
  8935. "description": "A library to validate a json schema.",
  8936. "homepage": "https://github.com/justinrainbow/json-schema",
  8937. "keywords": [
  8938. "json",
  8939. "schema"
  8940. ],
  8941. "support": {
  8942. "issues": "https://github.com/justinrainbow/json-schema/issues",
  8943. "source": "https://github.com/justinrainbow/json-schema/tree/5.2.10"
  8944. },
  8945. "time": "2020-05-27T16:41:55+00:00"
  8946. },
  8947. {
  8948. "name": "laravel/telescope",
  8949. "version": "v3.5.1",
  8950. "source": {
  8951. "type": "git",
  8952. "url": "https://github.com/laravel/telescope.git",
  8953. "reference": "a8d2e1106ba655006fde47a0b7ed53851c6398f5"
  8954. },
  8955. "dist": {
  8956. "type": "zip",
  8957. "url": "https://api.github.com/repos/laravel/telescope/zipball/a8d2e1106ba655006fde47a0b7ed53851c6398f5",
  8958. "reference": "a8d2e1106ba655006fde47a0b7ed53851c6398f5",
  8959. "shasum": ""
  8960. },
  8961. "require": {
  8962. "ext-json": "*",
  8963. "laravel/framework": "^6.0|^7.0",
  8964. "moontoast/math": "^1.1",
  8965. "php": "^7.2",
  8966. "symfony/var-dumper": "^4.4|^5.0"
  8967. },
  8968. "require-dev": {
  8969. "ext-gd": "*",
  8970. "orchestra/testbench": "^4.0|^5.0"
  8971. },
  8972. "type": "library",
  8973. "extra": {
  8974. "branch-alias": {
  8975. "dev-master": "3.x-dev"
  8976. },
  8977. "laravel": {
  8978. "providers": [
  8979. "Laravel\\Telescope\\TelescopeServiceProvider"
  8980. ]
  8981. }
  8982. },
  8983. "autoload": {
  8984. "psr-4": {
  8985. "Laravel\\Telescope\\": "src/"
  8986. }
  8987. },
  8988. "notification-url": "https://packagist.org/downloads/",
  8989. "license": [
  8990. "MIT"
  8991. ],
  8992. "authors": [
  8993. {
  8994. "name": "Taylor Otwell",
  8995. "email": "[email protected]"
  8996. },
  8997. {
  8998. "name": "Mohamed Said",
  8999. "email": "[email protected]"
  9000. }
  9001. ],
  9002. "description": "An elegant debug assistant for the Laravel framework.",
  9003. "keywords": [
  9004. "debugging",
  9005. "laravel",
  9006. "monitoring"
  9007. ],
  9008. "support": {
  9009. "issues": "https://github.com/laravel/telescope/issues",
  9010. "source": "https://github.com/laravel/telescope/tree/v3.5.1"
  9011. },
  9012. "time": "2020-07-28T19:12:33+00:00"
  9013. },
  9014. {
  9015. "name": "maximebf/debugbar",
  9016. "version": "v1.16.5",
  9017. "source": {
  9018. "type": "git",
  9019. "url": "https://github.com/maximebf/php-debugbar.git",
  9020. "reference": "6d51ee9e94cff14412783785e79a4e7ef97b9d62"
  9021. },
  9022. "dist": {
  9023. "type": "zip",
  9024. "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/6d51ee9e94cff14412783785e79a4e7ef97b9d62",
  9025. "reference": "6d51ee9e94cff14412783785e79a4e7ef97b9d62",
  9026. "shasum": ""
  9027. },
  9028. "require": {
  9029. "php": "^7.1|^8",
  9030. "psr/log": "^1.0",
  9031. "symfony/var-dumper": "^2.6|^3|^4|^5"
  9032. },
  9033. "require-dev": {
  9034. "phpunit/phpunit": "^7.5.20 || ^9.4.2"
  9035. },
  9036. "suggest": {
  9037. "kriswallsmith/assetic": "The best way to manage assets",
  9038. "monolog/monolog": "Log using Monolog",
  9039. "predis/predis": "Redis storage"
  9040. },
  9041. "type": "library",
  9042. "extra": {
  9043. "branch-alias": {
  9044. "dev-master": "1.16-dev"
  9045. }
  9046. },
  9047. "autoload": {
  9048. "psr-4": {
  9049. "DebugBar\\": "src/DebugBar/"
  9050. }
  9051. },
  9052. "notification-url": "https://packagist.org/downloads/",
  9053. "license": [
  9054. "MIT"
  9055. ],
  9056. "authors": [
  9057. {
  9058. "name": "Maxime Bouroumeau-Fuseau",
  9059. "email": "[email protected]",
  9060. "homepage": "http://maximebf.com"
  9061. },
  9062. {
  9063. "name": "Barry vd. Heuvel",
  9064. "email": "[email protected]"
  9065. }
  9066. ],
  9067. "description": "Debug bar in the browser for php application",
  9068. "homepage": "https://github.com/maximebf/php-debugbar",
  9069. "keywords": [
  9070. "debug",
  9071. "debugbar"
  9072. ],
  9073. "support": {
  9074. "issues": "https://github.com/maximebf/php-debugbar/issues",
  9075. "source": "https://github.com/maximebf/php-debugbar/tree/v1.16.5"
  9076. },
  9077. "time": "2020-12-07T11:07:24+00:00"
  9078. },
  9079. {
  9080. "name": "mockery/mockery",
  9081. "version": "1.4.3",
  9082. "source": {
  9083. "type": "git",
  9084. "url": "https://github.com/mockery/mockery.git",
  9085. "reference": "d1339f64479af1bee0e82a0413813fe5345a54ea"
  9086. },
  9087. "dist": {
  9088. "type": "zip",
  9089. "url": "https://api.github.com/repos/mockery/mockery/zipball/d1339f64479af1bee0e82a0413813fe5345a54ea",
  9090. "reference": "d1339f64479af1bee0e82a0413813fe5345a54ea",
  9091. "shasum": ""
  9092. },
  9093. "require": {
  9094. "hamcrest/hamcrest-php": "^2.0.1",
  9095. "lib-pcre": ">=7.0",
  9096. "php": "^7.3 || ^8.0"
  9097. },
  9098. "conflict": {
  9099. "phpunit/phpunit": "<8.0"
  9100. },
  9101. "require-dev": {
  9102. "phpunit/phpunit": "^8.5 || ^9.3"
  9103. },
  9104. "type": "library",
  9105. "extra": {
  9106. "branch-alias": {
  9107. "dev-master": "1.4.x-dev"
  9108. }
  9109. },
  9110. "autoload": {
  9111. "psr-0": {
  9112. "Mockery": "library/"
  9113. }
  9114. },
  9115. "notification-url": "https://packagist.org/downloads/",
  9116. "license": [
  9117. "BSD-3-Clause"
  9118. ],
  9119. "authors": [
  9120. {
  9121. "name": "Pádraic Brady",
  9122. "email": "[email protected]",
  9123. "homepage": "http://blog.astrumfutura.com"
  9124. },
  9125. {
  9126. "name": "Dave Marshall",
  9127. "email": "[email protected]",
  9128. "homepage": "http://davedevelopment.co.uk"
  9129. }
  9130. ],
  9131. "description": "Mockery is a simple yet flexible PHP mock object framework",
  9132. "homepage": "https://github.com/mockery/mockery",
  9133. "keywords": [
  9134. "BDD",
  9135. "TDD",
  9136. "library",
  9137. "mock",
  9138. "mock objects",
  9139. "mockery",
  9140. "stub",
  9141. "test",
  9142. "test double",
  9143. "testing"
  9144. ],
  9145. "support": {
  9146. "issues": "https://github.com/mockery/mockery/issues",
  9147. "source": "https://github.com/mockery/mockery/tree/1.4.3"
  9148. },
  9149. "time": "2021-02-24T09:51:49+00:00"
  9150. },
  9151. {
  9152. "name": "moontoast/math",
  9153. "version": "1.2.1",
  9154. "source": {
  9155. "type": "git",
  9156. "url": "https://github.com/ramsey/moontoast-math.git",
  9157. "reference": "5f47d34c87767dbcc08b30377a9827df71de91fa"
  9158. },
  9159. "dist": {
  9160. "type": "zip",
  9161. "url": "https://api.github.com/repos/ramsey/moontoast-math/zipball/5f47d34c87767dbcc08b30377a9827df71de91fa",
  9162. "reference": "5f47d34c87767dbcc08b30377a9827df71de91fa",
  9163. "shasum": ""
  9164. },
  9165. "require": {
  9166. "php": ">=5.3.3",
  9167. "phpseclib/bcmath_compat": ">=1.0.3"
  9168. },
  9169. "require-dev": {
  9170. "jakub-onderka/php-parallel-lint": "^0.9.0",
  9171. "phpunit/phpunit": "^4.8 || ^5.5 || ^6.5 || ^7.0",
  9172. "satooshi/php-coveralls": "^0.6.1",
  9173. "squizlabs/php_codesniffer": "^2.3"
  9174. },
  9175. "type": "library",
  9176. "autoload": {
  9177. "psr-4": {
  9178. "Moontoast\\Math\\": "src/Moontoast/Math",
  9179. "Moontoast\\Math\\Exception\\": "src/Moontoast/Math/Exception"
  9180. }
  9181. },
  9182. "notification-url": "https://packagist.org/downloads/",
  9183. "license": [
  9184. "Apache-2.0"
  9185. ],
  9186. "authors": [
  9187. {
  9188. "name": "Ben Ramsey",
  9189. "email": "[email protected]",
  9190. "homepage": "https://benramsey.com"
  9191. }
  9192. ],
  9193. "description": "A mathematics library, providing functionality for large numbers",
  9194. "homepage": "https://github.com/ramsey/moontoast-math",
  9195. "keywords": [
  9196. "bcmath",
  9197. "math"
  9198. ],
  9199. "support": {
  9200. "issues": "https://github.com/ramsey/moontoast-math/issues",
  9201. "source": "https://github.com/ramsey/moontoast-math"
  9202. },
  9203. "abandoned": "brick/math",
  9204. "time": "2020-01-05T04:49:34+00:00"
  9205. },
  9206. {
  9207. "name": "myclabs/deep-copy",
  9208. "version": "1.10.2",
  9209. "source": {
  9210. "type": "git",
  9211. "url": "https://github.com/myclabs/DeepCopy.git",
  9212. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
  9213. },
  9214. "dist": {
  9215. "type": "zip",
  9216. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
  9217. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
  9218. "shasum": ""
  9219. },
  9220. "require": {
  9221. "php": "^7.1 || ^8.0"
  9222. },
  9223. "replace": {
  9224. "myclabs/deep-copy": "self.version"
  9225. },
  9226. "require-dev": {
  9227. "doctrine/collections": "^1.0",
  9228. "doctrine/common": "^2.6",
  9229. "phpunit/phpunit": "^7.1"
  9230. },
  9231. "type": "library",
  9232. "autoload": {
  9233. "psr-4": {
  9234. "DeepCopy\\": "src/DeepCopy/"
  9235. },
  9236. "files": [
  9237. "src/DeepCopy/deep_copy.php"
  9238. ]
  9239. },
  9240. "notification-url": "https://packagist.org/downloads/",
  9241. "license": [
  9242. "MIT"
  9243. ],
  9244. "description": "Create deep copies (clones) of your objects",
  9245. "keywords": [
  9246. "clone",
  9247. "copy",
  9248. "duplicate",
  9249. "object",
  9250. "object graph"
  9251. ],
  9252. "support": {
  9253. "issues": "https://github.com/myclabs/DeepCopy/issues",
  9254. "source": "https://github.com/myclabs/DeepCopy/tree/1.10.2"
  9255. },
  9256. "funding": [
  9257. {
  9258. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  9259. "type": "tidelift"
  9260. }
  9261. ],
  9262. "time": "2020-11-13T09:40:50+00:00"
  9263. },
  9264. {
  9265. "name": "nunomaduro/collision",
  9266. "version": "v4.3.0",
  9267. "source": {
  9268. "type": "git",
  9269. "url": "https://github.com/nunomaduro/collision.git",
  9270. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e"
  9271. },
  9272. "dist": {
  9273. "type": "zip",
  9274. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/7c125dc2463f3e144ddc7e05e63077109508c94e",
  9275. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e",
  9276. "shasum": ""
  9277. },
  9278. "require": {
  9279. "facade/ignition-contracts": "^1.0",
  9280. "filp/whoops": "^2.4",
  9281. "php": "^7.2.5 || ^8.0",
  9282. "symfony/console": "^5.0"
  9283. },
  9284. "require-dev": {
  9285. "facade/ignition": "^2.0",
  9286. "fideloper/proxy": "^4.2",
  9287. "friendsofphp/php-cs-fixer": "^2.16",
  9288. "fruitcake/laravel-cors": "^1.0",
  9289. "laravel/framework": "^7.0",
  9290. "laravel/tinker": "^2.0",
  9291. "nunomaduro/larastan": "^0.6",
  9292. "orchestra/testbench": "^5.0",
  9293. "phpstan/phpstan": "^0.12.3",
  9294. "phpunit/phpunit": "^8.5.1 || ^9.0"
  9295. },
  9296. "type": "library",
  9297. "extra": {
  9298. "laravel": {
  9299. "providers": [
  9300. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  9301. ]
  9302. }
  9303. },
  9304. "autoload": {
  9305. "psr-4": {
  9306. "NunoMaduro\\Collision\\": "src/"
  9307. }
  9308. },
  9309. "notification-url": "https://packagist.org/downloads/",
  9310. "license": [
  9311. "MIT"
  9312. ],
  9313. "authors": [
  9314. {
  9315. "name": "Nuno Maduro",
  9316. "email": "[email protected]"
  9317. }
  9318. ],
  9319. "description": "Cli error handling for console/command-line PHP applications.",
  9320. "keywords": [
  9321. "artisan",
  9322. "cli",
  9323. "command-line",
  9324. "console",
  9325. "error",
  9326. "handling",
  9327. "laravel",
  9328. "laravel-zero",
  9329. "php",
  9330. "symfony"
  9331. ],
  9332. "support": {
  9333. "issues": "https://github.com/nunomaduro/collision/issues",
  9334. "source": "https://github.com/nunomaduro/collision"
  9335. },
  9336. "funding": [
  9337. {
  9338. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  9339. "type": "custom"
  9340. },
  9341. {
  9342. "url": "https://github.com/nunomaduro",
  9343. "type": "github"
  9344. },
  9345. {
  9346. "url": "https://www.patreon.com/nunomaduro",
  9347. "type": "patreon"
  9348. }
  9349. ],
  9350. "time": "2020-10-29T15:12:23+00:00"
  9351. },
  9352. {
  9353. "name": "paragonie/constant_time_encoding",
  9354. "version": "v2.4.0",
  9355. "source": {
  9356. "type": "git",
  9357. "url": "https://github.com/paragonie/constant_time_encoding.git",
  9358. "reference": "f34c2b11eb9d2c9318e13540a1dbc2a3afbd939c"
  9359. },
  9360. "dist": {
  9361. "type": "zip",
  9362. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/f34c2b11eb9d2c9318e13540a1dbc2a3afbd939c",
  9363. "reference": "f34c2b11eb9d2c9318e13540a1dbc2a3afbd939c",
  9364. "shasum": ""
  9365. },
  9366. "require": {
  9367. "php": "^7|^8"
  9368. },
  9369. "require-dev": {
  9370. "phpunit/phpunit": "^6|^7|^8|^9",
  9371. "vimeo/psalm": "^1|^2|^3|^4"
  9372. },
  9373. "type": "library",
  9374. "autoload": {
  9375. "psr-4": {
  9376. "ParagonIE\\ConstantTime\\": "src/"
  9377. }
  9378. },
  9379. "notification-url": "https://packagist.org/downloads/",
  9380. "license": [
  9381. "MIT"
  9382. ],
  9383. "authors": [
  9384. {
  9385. "name": "Paragon Initiative Enterprises",
  9386. "email": "[email protected]",
  9387. "homepage": "https://paragonie.com",
  9388. "role": "Maintainer"
  9389. },
  9390. {
  9391. "name": "Steve 'Sc00bz' Thomas",
  9392. "email": "[email protected]",
  9393. "homepage": "https://www.tobtu.com",
  9394. "role": "Original Developer"
  9395. }
  9396. ],
  9397. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  9398. "keywords": [
  9399. "base16",
  9400. "base32",
  9401. "base32_decode",
  9402. "base32_encode",
  9403. "base64",
  9404. "base64_decode",
  9405. "base64_encode",
  9406. "bin2hex",
  9407. "encoding",
  9408. "hex",
  9409. "hex2bin",
  9410. "rfc4648"
  9411. ],
  9412. "support": {
  9413. "email": "[email protected]",
  9414. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  9415. "source": "https://github.com/paragonie/constant_time_encoding"
  9416. },
  9417. "time": "2020-12-06T15:14:20+00:00"
  9418. },
  9419. {
  9420. "name": "paragonie/random_compat",
  9421. "version": "v9.99.100",
  9422. "source": {
  9423. "type": "git",
  9424. "url": "https://github.com/paragonie/random_compat.git",
  9425. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  9426. },
  9427. "dist": {
  9428. "type": "zip",
  9429. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  9430. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  9431. "shasum": ""
  9432. },
  9433. "require": {
  9434. "php": ">= 7"
  9435. },
  9436. "require-dev": {
  9437. "phpunit/phpunit": "4.*|5.*",
  9438. "vimeo/psalm": "^1"
  9439. },
  9440. "suggest": {
  9441. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  9442. },
  9443. "type": "library",
  9444. "notification-url": "https://packagist.org/downloads/",
  9445. "license": [
  9446. "MIT"
  9447. ],
  9448. "authors": [
  9449. {
  9450. "name": "Paragon Initiative Enterprises",
  9451. "email": "[email protected]",
  9452. "homepage": "https://paragonie.com"
  9453. }
  9454. ],
  9455. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  9456. "keywords": [
  9457. "csprng",
  9458. "polyfill",
  9459. "pseudorandom",
  9460. "random"
  9461. ],
  9462. "support": {
  9463. "email": "[email protected]",
  9464. "issues": "https://github.com/paragonie/random_compat/issues",
  9465. "source": "https://github.com/paragonie/random_compat"
  9466. },
  9467. "time": "2020-10-15T08:29:30+00:00"
  9468. },
  9469. {
  9470. "name": "phar-io/manifest",
  9471. "version": "2.0.1",
  9472. "source": {
  9473. "type": "git",
  9474. "url": "https://github.com/phar-io/manifest.git",
  9475. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133"
  9476. },
  9477. "dist": {
  9478. "type": "zip",
  9479. "url": "https://api.github.com/repos/phar-io/manifest/zipball/85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  9480. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  9481. "shasum": ""
  9482. },
  9483. "require": {
  9484. "ext-dom": "*",
  9485. "ext-phar": "*",
  9486. "ext-xmlwriter": "*",
  9487. "phar-io/version": "^3.0.1",
  9488. "php": "^7.2 || ^8.0"
  9489. },
  9490. "type": "library",
  9491. "extra": {
  9492. "branch-alias": {
  9493. "dev-master": "2.0.x-dev"
  9494. }
  9495. },
  9496. "autoload": {
  9497. "classmap": [
  9498. "src/"
  9499. ]
  9500. },
  9501. "notification-url": "https://packagist.org/downloads/",
  9502. "license": [
  9503. "BSD-3-Clause"
  9504. ],
  9505. "authors": [
  9506. {
  9507. "name": "Arne Blankerts",
  9508. "email": "[email protected]",
  9509. "role": "Developer"
  9510. },
  9511. {
  9512. "name": "Sebastian Heuer",
  9513. "email": "[email protected]",
  9514. "role": "Developer"
  9515. },
  9516. {
  9517. "name": "Sebastian Bergmann",
  9518. "email": "[email protected]",
  9519. "role": "Developer"
  9520. }
  9521. ],
  9522. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9523. "support": {
  9524. "issues": "https://github.com/phar-io/manifest/issues",
  9525. "source": "https://github.com/phar-io/manifest/tree/master"
  9526. },
  9527. "time": "2020-06-27T14:33:11+00:00"
  9528. },
  9529. {
  9530. "name": "phar-io/version",
  9531. "version": "3.1.0",
  9532. "source": {
  9533. "type": "git",
  9534. "url": "https://github.com/phar-io/version.git",
  9535. "reference": "bae7c545bef187884426f042434e561ab1ddb182"
  9536. },
  9537. "dist": {
  9538. "type": "zip",
  9539. "url": "https://api.github.com/repos/phar-io/version/zipball/bae7c545bef187884426f042434e561ab1ddb182",
  9540. "reference": "bae7c545bef187884426f042434e561ab1ddb182",
  9541. "shasum": ""
  9542. },
  9543. "require": {
  9544. "php": "^7.2 || ^8.0"
  9545. },
  9546. "type": "library",
  9547. "autoload": {
  9548. "classmap": [
  9549. "src/"
  9550. ]
  9551. },
  9552. "notification-url": "https://packagist.org/downloads/",
  9553. "license": [
  9554. "BSD-3-Clause"
  9555. ],
  9556. "authors": [
  9557. {
  9558. "name": "Arne Blankerts",
  9559. "email": "[email protected]",
  9560. "role": "Developer"
  9561. },
  9562. {
  9563. "name": "Sebastian Heuer",
  9564. "email": "[email protected]",
  9565. "role": "Developer"
  9566. },
  9567. {
  9568. "name": "Sebastian Bergmann",
  9569. "email": "[email protected]",
  9570. "role": "Developer"
  9571. }
  9572. ],
  9573. "description": "Library for handling version information and constraints",
  9574. "support": {
  9575. "issues": "https://github.com/phar-io/version/issues",
  9576. "source": "https://github.com/phar-io/version/tree/3.1.0"
  9577. },
  9578. "time": "2021-02-23T14:00:09+00:00"
  9579. },
  9580. {
  9581. "name": "phpdocumentor/reflection-common",
  9582. "version": "2.2.0",
  9583. "source": {
  9584. "type": "git",
  9585. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  9586. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  9587. },
  9588. "dist": {
  9589. "type": "zip",
  9590. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  9591. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  9592. "shasum": ""
  9593. },
  9594. "require": {
  9595. "php": "^7.2 || ^8.0"
  9596. },
  9597. "type": "library",
  9598. "extra": {
  9599. "branch-alias": {
  9600. "dev-2.x": "2.x-dev"
  9601. }
  9602. },
  9603. "autoload": {
  9604. "psr-4": {
  9605. "phpDocumentor\\Reflection\\": "src/"
  9606. }
  9607. },
  9608. "notification-url": "https://packagist.org/downloads/",
  9609. "license": [
  9610. "MIT"
  9611. ],
  9612. "authors": [
  9613. {
  9614. "name": "Jaap van Otterdijk",
  9615. "email": "[email protected]"
  9616. }
  9617. ],
  9618. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  9619. "homepage": "http://www.phpdoc.org",
  9620. "keywords": [
  9621. "FQSEN",
  9622. "phpDocumentor",
  9623. "phpdoc",
  9624. "reflection",
  9625. "static analysis"
  9626. ],
  9627. "support": {
  9628. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  9629. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  9630. },
  9631. "time": "2020-06-27T09:03:43+00:00"
  9632. },
  9633. {
  9634. "name": "phpdocumentor/reflection-docblock",
  9635. "version": "5.2.2",
  9636. "source": {
  9637. "type": "git",
  9638. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  9639. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556"
  9640. },
  9641. "dist": {
  9642. "type": "zip",
  9643. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556",
  9644. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556",
  9645. "shasum": ""
  9646. },
  9647. "require": {
  9648. "ext-filter": "*",
  9649. "php": "^7.2 || ^8.0",
  9650. "phpdocumentor/reflection-common": "^2.2",
  9651. "phpdocumentor/type-resolver": "^1.3",
  9652. "webmozart/assert": "^1.9.1"
  9653. },
  9654. "require-dev": {
  9655. "mockery/mockery": "~1.3.2"
  9656. },
  9657. "type": "library",
  9658. "extra": {
  9659. "branch-alias": {
  9660. "dev-master": "5.x-dev"
  9661. }
  9662. },
  9663. "autoload": {
  9664. "psr-4": {
  9665. "phpDocumentor\\Reflection\\": "src"
  9666. }
  9667. },
  9668. "notification-url": "https://packagist.org/downloads/",
  9669. "license": [
  9670. "MIT"
  9671. ],
  9672. "authors": [
  9673. {
  9674. "name": "Mike van Riel",
  9675. "email": "[email protected]"
  9676. },
  9677. {
  9678. "name": "Jaap van Otterdijk",
  9679. "email": "[email protected]"
  9680. }
  9681. ],
  9682. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  9683. "support": {
  9684. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  9685. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/master"
  9686. },
  9687. "time": "2020-09-03T19:13:55+00:00"
  9688. },
  9689. {
  9690. "name": "phpdocumentor/type-resolver",
  9691. "version": "1.4.0",
  9692. "source": {
  9693. "type": "git",
  9694. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  9695. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0"
  9696. },
  9697. "dist": {
  9698. "type": "zip",
  9699. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  9700. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  9701. "shasum": ""
  9702. },
  9703. "require": {
  9704. "php": "^7.2 || ^8.0",
  9705. "phpdocumentor/reflection-common": "^2.0"
  9706. },
  9707. "require-dev": {
  9708. "ext-tokenizer": "*"
  9709. },
  9710. "type": "library",
  9711. "extra": {
  9712. "branch-alias": {
  9713. "dev-1.x": "1.x-dev"
  9714. }
  9715. },
  9716. "autoload": {
  9717. "psr-4": {
  9718. "phpDocumentor\\Reflection\\": "src"
  9719. }
  9720. },
  9721. "notification-url": "https://packagist.org/downloads/",
  9722. "license": [
  9723. "MIT"
  9724. ],
  9725. "authors": [
  9726. {
  9727. "name": "Mike van Riel",
  9728. "email": "[email protected]"
  9729. }
  9730. ],
  9731. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  9732. "support": {
  9733. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  9734. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.4.0"
  9735. },
  9736. "time": "2020-09-17T18:55:26+00:00"
  9737. },
  9738. {
  9739. "name": "phpseclib/bcmath_compat",
  9740. "version": "2.0.0",
  9741. "source": {
  9742. "type": "git",
  9743. "url": "https://github.com/phpseclib/bcmath_compat.git",
  9744. "reference": "fd896dfceffc13d8cf45d2ee3470777a70026f3c"
  9745. },
  9746. "dist": {
  9747. "type": "zip",
  9748. "url": "https://api.github.com/repos/phpseclib/bcmath_compat/zipball/fd896dfceffc13d8cf45d2ee3470777a70026f3c",
  9749. "reference": "fd896dfceffc13d8cf45d2ee3470777a70026f3c",
  9750. "shasum": ""
  9751. },
  9752. "require": {
  9753. "phpseclib/phpseclib": "^3.0"
  9754. },
  9755. "provide": {
  9756. "ext-bcmath": "8.0.0"
  9757. },
  9758. "require-dev": {
  9759. "phpunit/phpunit": "^4.8.35|^5.7|^6.0|^9.4",
  9760. "squizlabs/php_codesniffer": "^3.0"
  9761. },
  9762. "suggest": {
  9763. "ext-gmp": "Will enable faster math operations"
  9764. },
  9765. "type": "library",
  9766. "autoload": {
  9767. "files": [
  9768. "lib/bcmath.php"
  9769. ],
  9770. "psr-4": {
  9771. "bcmath_compat\\": "src"
  9772. }
  9773. },
  9774. "notification-url": "https://packagist.org/downloads/",
  9775. "license": [
  9776. "MIT"
  9777. ],
  9778. "authors": [
  9779. {
  9780. "name": "Jim Wigginton",
  9781. "email": "[email protected]",
  9782. "homepage": "http://phpseclib.sourceforge.net"
  9783. }
  9784. ],
  9785. "description": "PHP 5.x/7.x polyfill for bcmath extension",
  9786. "keywords": [
  9787. "BigInteger",
  9788. "bcmath",
  9789. "bigdecimal",
  9790. "math",
  9791. "polyfill"
  9792. ],
  9793. "support": {
  9794. "email": "[email protected]",
  9795. "issues": "https://github.com/phpseclib/bcmath_compat/issues",
  9796. "source": "https://github.com/phpseclib/bcmath_compat"
  9797. },
  9798. "time": "2020-12-22T16:38:51+00:00"
  9799. },
  9800. {
  9801. "name": "phpseclib/phpseclib",
  9802. "version": "3.0.6",
  9803. "source": {
  9804. "type": "git",
  9805. "url": "https://github.com/phpseclib/phpseclib.git",
  9806. "reference": "906a5fafabe5e6ba51ef3dc65b2722a677908837"
  9807. },
  9808. "dist": {
  9809. "type": "zip",
  9810. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/906a5fafabe5e6ba51ef3dc65b2722a677908837",
  9811. "reference": "906a5fafabe5e6ba51ef3dc65b2722a677908837",
  9812. "shasum": ""
  9813. },
  9814. "require": {
  9815. "paragonie/constant_time_encoding": "^1|^2",
  9816. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  9817. "php": ">=5.6.1"
  9818. },
  9819. "require-dev": {
  9820. "phing/phing": "~2.7",
  9821. "phpunit/phpunit": "^5.7|^6.0|^9.4",
  9822. "squizlabs/php_codesniffer": "~2.0"
  9823. },
  9824. "suggest": {
  9825. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  9826. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  9827. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  9828. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  9829. },
  9830. "type": "library",
  9831. "autoload": {
  9832. "files": [
  9833. "phpseclib/bootstrap.php"
  9834. ],
  9835. "psr-4": {
  9836. "phpseclib3\\": "phpseclib/"
  9837. }
  9838. },
  9839. "notification-url": "https://packagist.org/downloads/",
  9840. "license": [
  9841. "MIT"
  9842. ],
  9843. "authors": [
  9844. {
  9845. "name": "Jim Wigginton",
  9846. "email": "[email protected]",
  9847. "role": "Lead Developer"
  9848. },
  9849. {
  9850. "name": "Patrick Monnerat",
  9851. "email": "[email protected]",
  9852. "role": "Developer"
  9853. },
  9854. {
  9855. "name": "Andreas Fischer",
  9856. "email": "[email protected]",
  9857. "role": "Developer"
  9858. },
  9859. {
  9860. "name": "Hans-Jürgen Petrich",
  9861. "email": "[email protected]",
  9862. "role": "Developer"
  9863. },
  9864. {
  9865. "name": "Graham Campbell",
  9866. "email": "[email protected]",
  9867. "role": "Developer"
  9868. }
  9869. ],
  9870. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  9871. "homepage": "http://phpseclib.sourceforge.net",
  9872. "keywords": [
  9873. "BigInteger",
  9874. "aes",
  9875. "asn.1",
  9876. "asn1",
  9877. "blowfish",
  9878. "crypto",
  9879. "cryptography",
  9880. "encryption",
  9881. "rsa",
  9882. "security",
  9883. "sftp",
  9884. "signature",
  9885. "signing",
  9886. "ssh",
  9887. "twofish",
  9888. "x.509",
  9889. "x509"
  9890. ],
  9891. "support": {
  9892. "issues": "https://github.com/phpseclib/phpseclib/issues",
  9893. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.6"
  9894. },
  9895. "funding": [
  9896. {
  9897. "url": "https://github.com/terrafrost",
  9898. "type": "github"
  9899. },
  9900. {
  9901. "url": "https://www.patreon.com/phpseclib",
  9902. "type": "patreon"
  9903. },
  9904. {
  9905. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  9906. "type": "tidelift"
  9907. }
  9908. ],
  9909. "time": "2021-03-10T13:58:31+00:00"
  9910. },
  9911. {
  9912. "name": "phpspec/prophecy",
  9913. "version": "1.12.2",
  9914. "source": {
  9915. "type": "git",
  9916. "url": "https://github.com/phpspec/prophecy.git",
  9917. "reference": "245710e971a030f42e08f4912863805570f23d39"
  9918. },
  9919. "dist": {
  9920. "type": "zip",
  9921. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/245710e971a030f42e08f4912863805570f23d39",
  9922. "reference": "245710e971a030f42e08f4912863805570f23d39",
  9923. "shasum": ""
  9924. },
  9925. "require": {
  9926. "doctrine/instantiator": "^1.2",
  9927. "php": "^7.2 || ~8.0, <8.1",
  9928. "phpdocumentor/reflection-docblock": "^5.2",
  9929. "sebastian/comparator": "^3.0 || ^4.0",
  9930. "sebastian/recursion-context": "^3.0 || ^4.0"
  9931. },
  9932. "require-dev": {
  9933. "phpspec/phpspec": "^6.0",
  9934. "phpunit/phpunit": "^8.0 || ^9.0"
  9935. },
  9936. "type": "library",
  9937. "extra": {
  9938. "branch-alias": {
  9939. "dev-master": "1.11.x-dev"
  9940. }
  9941. },
  9942. "autoload": {
  9943. "psr-4": {
  9944. "Prophecy\\": "src/Prophecy"
  9945. }
  9946. },
  9947. "notification-url": "https://packagist.org/downloads/",
  9948. "license": [
  9949. "MIT"
  9950. ],
  9951. "authors": [
  9952. {
  9953. "name": "Konstantin Kudryashov",
  9954. "email": "[email protected]",
  9955. "homepage": "http://everzet.com"
  9956. },
  9957. {
  9958. "name": "Marcello Duarte",
  9959. "email": "[email protected]"
  9960. }
  9961. ],
  9962. "description": "Highly opinionated mocking framework for PHP 5.3+",
  9963. "homepage": "https://github.com/phpspec/prophecy",
  9964. "keywords": [
  9965. "Double",
  9966. "Dummy",
  9967. "fake",
  9968. "mock",
  9969. "spy",
  9970. "stub"
  9971. ],
  9972. "support": {
  9973. "issues": "https://github.com/phpspec/prophecy/issues",
  9974. "source": "https://github.com/phpspec/prophecy/tree/1.12.2"
  9975. },
  9976. "time": "2020-12-19T10:15:11+00:00"
  9977. },
  9978. {
  9979. "name": "phpunit/php-code-coverage",
  9980. "version": "9.2.5",
  9981. "source": {
  9982. "type": "git",
  9983. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9984. "reference": "f3e026641cc91909d421802dd3ac7827ebfd97e1"
  9985. },
  9986. "dist": {
  9987. "type": "zip",
  9988. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f3e026641cc91909d421802dd3ac7827ebfd97e1",
  9989. "reference": "f3e026641cc91909d421802dd3ac7827ebfd97e1",
  9990. "shasum": ""
  9991. },
  9992. "require": {
  9993. "ext-dom": "*",
  9994. "ext-libxml": "*",
  9995. "ext-xmlwriter": "*",
  9996. "nikic/php-parser": "^4.10.2",
  9997. "php": ">=7.3",
  9998. "phpunit/php-file-iterator": "^3.0.3",
  9999. "phpunit/php-text-template": "^2.0.2",
  10000. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  10001. "sebastian/complexity": "^2.0",
  10002. "sebastian/environment": "^5.1.2",
  10003. "sebastian/lines-of-code": "^1.0.3",
  10004. "sebastian/version": "^3.0.1",
  10005. "theseer/tokenizer": "^1.2.0"
  10006. },
  10007. "require-dev": {
  10008. "phpunit/phpunit": "^9.3"
  10009. },
  10010. "suggest": {
  10011. "ext-pcov": "*",
  10012. "ext-xdebug": "*"
  10013. },
  10014. "type": "library",
  10015. "extra": {
  10016. "branch-alias": {
  10017. "dev-master": "9.2-dev"
  10018. }
  10019. },
  10020. "autoload": {
  10021. "classmap": [
  10022. "src/"
  10023. ]
  10024. },
  10025. "notification-url": "https://packagist.org/downloads/",
  10026. "license": [
  10027. "BSD-3-Clause"
  10028. ],
  10029. "authors": [
  10030. {
  10031. "name": "Sebastian Bergmann",
  10032. "email": "[email protected]",
  10033. "role": "lead"
  10034. }
  10035. ],
  10036. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  10037. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  10038. "keywords": [
  10039. "coverage",
  10040. "testing",
  10041. "xunit"
  10042. ],
  10043. "support": {
  10044. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  10045. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.5"
  10046. },
  10047. "funding": [
  10048. {
  10049. "url": "https://github.com/sebastianbergmann",
  10050. "type": "github"
  10051. }
  10052. ],
  10053. "time": "2020-11-28T06:44:49+00:00"
  10054. },
  10055. {
  10056. "name": "phpunit/php-file-iterator",
  10057. "version": "3.0.5",
  10058. "source": {
  10059. "type": "git",
  10060. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  10061. "reference": "aa4be8575f26070b100fccb67faabb28f21f66f8"
  10062. },
  10063. "dist": {
  10064. "type": "zip",
  10065. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/aa4be8575f26070b100fccb67faabb28f21f66f8",
  10066. "reference": "aa4be8575f26070b100fccb67faabb28f21f66f8",
  10067. "shasum": ""
  10068. },
  10069. "require": {
  10070. "php": ">=7.3"
  10071. },
  10072. "require-dev": {
  10073. "phpunit/phpunit": "^9.3"
  10074. },
  10075. "type": "library",
  10076. "extra": {
  10077. "branch-alias": {
  10078. "dev-master": "3.0-dev"
  10079. }
  10080. },
  10081. "autoload": {
  10082. "classmap": [
  10083. "src/"
  10084. ]
  10085. },
  10086. "notification-url": "https://packagist.org/downloads/",
  10087. "license": [
  10088. "BSD-3-Clause"
  10089. ],
  10090. "authors": [
  10091. {
  10092. "name": "Sebastian Bergmann",
  10093. "email": "[email protected]",
  10094. "role": "lead"
  10095. }
  10096. ],
  10097. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  10098. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  10099. "keywords": [
  10100. "filesystem",
  10101. "iterator"
  10102. ],
  10103. "support": {
  10104. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  10105. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.5"
  10106. },
  10107. "funding": [
  10108. {
  10109. "url": "https://github.com/sebastianbergmann",
  10110. "type": "github"
  10111. }
  10112. ],
  10113. "time": "2020-09-28T05:57:25+00:00"
  10114. },
  10115. {
  10116. "name": "phpunit/php-invoker",
  10117. "version": "3.1.1",
  10118. "source": {
  10119. "type": "git",
  10120. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  10121. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  10122. },
  10123. "dist": {
  10124. "type": "zip",
  10125. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  10126. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  10127. "shasum": ""
  10128. },
  10129. "require": {
  10130. "php": ">=7.3"
  10131. },
  10132. "require-dev": {
  10133. "ext-pcntl": "*",
  10134. "phpunit/phpunit": "^9.3"
  10135. },
  10136. "suggest": {
  10137. "ext-pcntl": "*"
  10138. },
  10139. "type": "library",
  10140. "extra": {
  10141. "branch-alias": {
  10142. "dev-master": "3.1-dev"
  10143. }
  10144. },
  10145. "autoload": {
  10146. "classmap": [
  10147. "src/"
  10148. ]
  10149. },
  10150. "notification-url": "https://packagist.org/downloads/",
  10151. "license": [
  10152. "BSD-3-Clause"
  10153. ],
  10154. "authors": [
  10155. {
  10156. "name": "Sebastian Bergmann",
  10157. "email": "[email protected]",
  10158. "role": "lead"
  10159. }
  10160. ],
  10161. "description": "Invoke callables with a timeout",
  10162. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  10163. "keywords": [
  10164. "process"
  10165. ],
  10166. "support": {
  10167. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  10168. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  10169. },
  10170. "funding": [
  10171. {
  10172. "url": "https://github.com/sebastianbergmann",
  10173. "type": "github"
  10174. }
  10175. ],
  10176. "time": "2020-09-28T05:58:55+00:00"
  10177. },
  10178. {
  10179. "name": "phpunit/php-text-template",
  10180. "version": "2.0.4",
  10181. "source": {
  10182. "type": "git",
  10183. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  10184. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  10185. },
  10186. "dist": {
  10187. "type": "zip",
  10188. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  10189. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  10190. "shasum": ""
  10191. },
  10192. "require": {
  10193. "php": ">=7.3"
  10194. },
  10195. "require-dev": {
  10196. "phpunit/phpunit": "^9.3"
  10197. },
  10198. "type": "library",
  10199. "extra": {
  10200. "branch-alias": {
  10201. "dev-master": "2.0-dev"
  10202. }
  10203. },
  10204. "autoload": {
  10205. "classmap": [
  10206. "src/"
  10207. ]
  10208. },
  10209. "notification-url": "https://packagist.org/downloads/",
  10210. "license": [
  10211. "BSD-3-Clause"
  10212. ],
  10213. "authors": [
  10214. {
  10215. "name": "Sebastian Bergmann",
  10216. "email": "[email protected]",
  10217. "role": "lead"
  10218. }
  10219. ],
  10220. "description": "Simple template engine.",
  10221. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  10222. "keywords": [
  10223. "template"
  10224. ],
  10225. "support": {
  10226. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  10227. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  10228. },
  10229. "funding": [
  10230. {
  10231. "url": "https://github.com/sebastianbergmann",
  10232. "type": "github"
  10233. }
  10234. ],
  10235. "time": "2020-10-26T05:33:50+00:00"
  10236. },
  10237. {
  10238. "name": "phpunit/php-timer",
  10239. "version": "5.0.3",
  10240. "source": {
  10241. "type": "git",
  10242. "url": "https://github.com/sebastianbergmann/php-timer.git",
  10243. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  10244. },
  10245. "dist": {
  10246. "type": "zip",
  10247. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  10248. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  10249. "shasum": ""
  10250. },
  10251. "require": {
  10252. "php": ">=7.3"
  10253. },
  10254. "require-dev": {
  10255. "phpunit/phpunit": "^9.3"
  10256. },
  10257. "type": "library",
  10258. "extra": {
  10259. "branch-alias": {
  10260. "dev-master": "5.0-dev"
  10261. }
  10262. },
  10263. "autoload": {
  10264. "classmap": [
  10265. "src/"
  10266. ]
  10267. },
  10268. "notification-url": "https://packagist.org/downloads/",
  10269. "license": [
  10270. "BSD-3-Clause"
  10271. ],
  10272. "authors": [
  10273. {
  10274. "name": "Sebastian Bergmann",
  10275. "email": "[email protected]",
  10276. "role": "lead"
  10277. }
  10278. ],
  10279. "description": "Utility class for timing",
  10280. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  10281. "keywords": [
  10282. "timer"
  10283. ],
  10284. "support": {
  10285. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  10286. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  10287. },
  10288. "funding": [
  10289. {
  10290. "url": "https://github.com/sebastianbergmann",
  10291. "type": "github"
  10292. }
  10293. ],
  10294. "time": "2020-10-26T13:16:10+00:00"
  10295. },
  10296. {
  10297. "name": "phpunit/phpunit",
  10298. "version": "9.5.2",
  10299. "source": {
  10300. "type": "git",
  10301. "url": "https://github.com/sebastianbergmann/phpunit.git",
  10302. "reference": "f661659747f2f87f9e72095bb207bceb0f151cb4"
  10303. },
  10304. "dist": {
  10305. "type": "zip",
  10306. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/f661659747f2f87f9e72095bb207bceb0f151cb4",
  10307. "reference": "f661659747f2f87f9e72095bb207bceb0f151cb4",
  10308. "shasum": ""
  10309. },
  10310. "require": {
  10311. "doctrine/instantiator": "^1.3.1",
  10312. "ext-dom": "*",
  10313. "ext-json": "*",
  10314. "ext-libxml": "*",
  10315. "ext-mbstring": "*",
  10316. "ext-xml": "*",
  10317. "ext-xmlwriter": "*",
  10318. "myclabs/deep-copy": "^1.10.1",
  10319. "phar-io/manifest": "^2.0.1",
  10320. "phar-io/version": "^3.0.2",
  10321. "php": ">=7.3",
  10322. "phpspec/prophecy": "^1.12.1",
  10323. "phpunit/php-code-coverage": "^9.2.3",
  10324. "phpunit/php-file-iterator": "^3.0.5",
  10325. "phpunit/php-invoker": "^3.1.1",
  10326. "phpunit/php-text-template": "^2.0.3",
  10327. "phpunit/php-timer": "^5.0.2",
  10328. "sebastian/cli-parser": "^1.0.1",
  10329. "sebastian/code-unit": "^1.0.6",
  10330. "sebastian/comparator": "^4.0.5",
  10331. "sebastian/diff": "^4.0.3",
  10332. "sebastian/environment": "^5.1.3",
  10333. "sebastian/exporter": "^4.0.3",
  10334. "sebastian/global-state": "^5.0.1",
  10335. "sebastian/object-enumerator": "^4.0.3",
  10336. "sebastian/resource-operations": "^3.0.3",
  10337. "sebastian/type": "^2.3",
  10338. "sebastian/version": "^3.0.2"
  10339. },
  10340. "require-dev": {
  10341. "ext-pdo": "*",
  10342. "phpspec/prophecy-phpunit": "^2.0.1"
  10343. },
  10344. "suggest": {
  10345. "ext-soap": "*",
  10346. "ext-xdebug": "*"
  10347. },
  10348. "bin": [
  10349. "phpunit"
  10350. ],
  10351. "type": "library",
  10352. "extra": {
  10353. "branch-alias": {
  10354. "dev-master": "9.5-dev"
  10355. }
  10356. },
  10357. "autoload": {
  10358. "classmap": [
  10359. "src/"
  10360. ],
  10361. "files": [
  10362. "src/Framework/Assert/Functions.php"
  10363. ]
  10364. },
  10365. "notification-url": "https://packagist.org/downloads/",
  10366. "license": [
  10367. "BSD-3-Clause"
  10368. ],
  10369. "authors": [
  10370. {
  10371. "name": "Sebastian Bergmann",
  10372. "email": "[email protected]",
  10373. "role": "lead"
  10374. }
  10375. ],
  10376. "description": "The PHP Unit Testing framework.",
  10377. "homepage": "https://phpunit.de/",
  10378. "keywords": [
  10379. "phpunit",
  10380. "testing",
  10381. "xunit"
  10382. ],
  10383. "support": {
  10384. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  10385. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.2"
  10386. },
  10387. "funding": [
  10388. {
  10389. "url": "https://phpunit.de/donate.html",
  10390. "type": "custom"
  10391. },
  10392. {
  10393. "url": "https://github.com/sebastianbergmann",
  10394. "type": "github"
  10395. }
  10396. ],
  10397. "time": "2021-02-02T14:45:58+00:00"
  10398. },
  10399. {
  10400. "name": "react/promise",
  10401. "version": "v2.8.0",
  10402. "source": {
  10403. "type": "git",
  10404. "url": "https://github.com/reactphp/promise.git",
  10405. "reference": "f3cff96a19736714524ca0dd1d4130de73dbbbc4"
  10406. },
  10407. "dist": {
  10408. "type": "zip",
  10409. "url": "https://api.github.com/repos/reactphp/promise/zipball/f3cff96a19736714524ca0dd1d4130de73dbbbc4",
  10410. "reference": "f3cff96a19736714524ca0dd1d4130de73dbbbc4",
  10411. "shasum": ""
  10412. },
  10413. "require": {
  10414. "php": ">=5.4.0"
  10415. },
  10416. "require-dev": {
  10417. "phpunit/phpunit": "^7.0 || ^6.5 || ^5.7 || ^4.8.36"
  10418. },
  10419. "type": "library",
  10420. "autoload": {
  10421. "psr-4": {
  10422. "React\\Promise\\": "src/"
  10423. },
  10424. "files": [
  10425. "src/functions_include.php"
  10426. ]
  10427. },
  10428. "notification-url": "https://packagist.org/downloads/",
  10429. "license": [
  10430. "MIT"
  10431. ],
  10432. "authors": [
  10433. {
  10434. "name": "Jan Sorgalla",
  10435. "email": "[email protected]"
  10436. }
  10437. ],
  10438. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  10439. "keywords": [
  10440. "promise",
  10441. "promises"
  10442. ],
  10443. "support": {
  10444. "issues": "https://github.com/reactphp/promise/issues",
  10445. "source": "https://github.com/reactphp/promise/tree/v2.8.0"
  10446. },
  10447. "time": "2020-05-12T15:16:56+00:00"
  10448. },
  10449. {
  10450. "name": "sebastian/cli-parser",
  10451. "version": "1.0.1",
  10452. "source": {
  10453. "type": "git",
  10454. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  10455. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  10456. },
  10457. "dist": {
  10458. "type": "zip",
  10459. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  10460. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  10461. "shasum": ""
  10462. },
  10463. "require": {
  10464. "php": ">=7.3"
  10465. },
  10466. "require-dev": {
  10467. "phpunit/phpunit": "^9.3"
  10468. },
  10469. "type": "library",
  10470. "extra": {
  10471. "branch-alias": {
  10472. "dev-master": "1.0-dev"
  10473. }
  10474. },
  10475. "autoload": {
  10476. "classmap": [
  10477. "src/"
  10478. ]
  10479. },
  10480. "notification-url": "https://packagist.org/downloads/",
  10481. "license": [
  10482. "BSD-3-Clause"
  10483. ],
  10484. "authors": [
  10485. {
  10486. "name": "Sebastian Bergmann",
  10487. "email": "[email protected]",
  10488. "role": "lead"
  10489. }
  10490. ],
  10491. "description": "Library for parsing CLI options",
  10492. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  10493. "support": {
  10494. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  10495. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  10496. },
  10497. "funding": [
  10498. {
  10499. "url": "https://github.com/sebastianbergmann",
  10500. "type": "github"
  10501. }
  10502. ],
  10503. "time": "2020-09-28T06:08:49+00:00"
  10504. },
  10505. {
  10506. "name": "sebastian/code-unit",
  10507. "version": "1.0.8",
  10508. "source": {
  10509. "type": "git",
  10510. "url": "https://github.com/sebastianbergmann/code-unit.git",
  10511. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  10512. },
  10513. "dist": {
  10514. "type": "zip",
  10515. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  10516. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  10517. "shasum": ""
  10518. },
  10519. "require": {
  10520. "php": ">=7.3"
  10521. },
  10522. "require-dev": {
  10523. "phpunit/phpunit": "^9.3"
  10524. },
  10525. "type": "library",
  10526. "extra": {
  10527. "branch-alias": {
  10528. "dev-master": "1.0-dev"
  10529. }
  10530. },
  10531. "autoload": {
  10532. "classmap": [
  10533. "src/"
  10534. ]
  10535. },
  10536. "notification-url": "https://packagist.org/downloads/",
  10537. "license": [
  10538. "BSD-3-Clause"
  10539. ],
  10540. "authors": [
  10541. {
  10542. "name": "Sebastian Bergmann",
  10543. "email": "[email protected]",
  10544. "role": "lead"
  10545. }
  10546. ],
  10547. "description": "Collection of value objects that represent the PHP code units",
  10548. "homepage": "https://github.com/sebastianbergmann/code-unit",
  10549. "support": {
  10550. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  10551. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  10552. },
  10553. "funding": [
  10554. {
  10555. "url": "https://github.com/sebastianbergmann",
  10556. "type": "github"
  10557. }
  10558. ],
  10559. "time": "2020-10-26T13:08:54+00:00"
  10560. },
  10561. {
  10562. "name": "sebastian/code-unit-reverse-lookup",
  10563. "version": "2.0.3",
  10564. "source": {
  10565. "type": "git",
  10566. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  10567. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  10568. },
  10569. "dist": {
  10570. "type": "zip",
  10571. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  10572. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  10573. "shasum": ""
  10574. },
  10575. "require": {
  10576. "php": ">=7.3"
  10577. },
  10578. "require-dev": {
  10579. "phpunit/phpunit": "^9.3"
  10580. },
  10581. "type": "library",
  10582. "extra": {
  10583. "branch-alias": {
  10584. "dev-master": "2.0-dev"
  10585. }
  10586. },
  10587. "autoload": {
  10588. "classmap": [
  10589. "src/"
  10590. ]
  10591. },
  10592. "notification-url": "https://packagist.org/downloads/",
  10593. "license": [
  10594. "BSD-3-Clause"
  10595. ],
  10596. "authors": [
  10597. {
  10598. "name": "Sebastian Bergmann",
  10599. "email": "[email protected]"
  10600. }
  10601. ],
  10602. "description": "Looks up which function or method a line of code belongs to",
  10603. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  10604. "support": {
  10605. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  10606. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  10607. },
  10608. "funding": [
  10609. {
  10610. "url": "https://github.com/sebastianbergmann",
  10611. "type": "github"
  10612. }
  10613. ],
  10614. "time": "2020-09-28T05:30:19+00:00"
  10615. },
  10616. {
  10617. "name": "sebastian/comparator",
  10618. "version": "4.0.6",
  10619. "source": {
  10620. "type": "git",
  10621. "url": "https://github.com/sebastianbergmann/comparator.git",
  10622. "reference": "55f4261989e546dc112258c7a75935a81a7ce382"
  10623. },
  10624. "dist": {
  10625. "type": "zip",
  10626. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/55f4261989e546dc112258c7a75935a81a7ce382",
  10627. "reference": "55f4261989e546dc112258c7a75935a81a7ce382",
  10628. "shasum": ""
  10629. },
  10630. "require": {
  10631. "php": ">=7.3",
  10632. "sebastian/diff": "^4.0",
  10633. "sebastian/exporter": "^4.0"
  10634. },
  10635. "require-dev": {
  10636. "phpunit/phpunit": "^9.3"
  10637. },
  10638. "type": "library",
  10639. "extra": {
  10640. "branch-alias": {
  10641. "dev-master": "4.0-dev"
  10642. }
  10643. },
  10644. "autoload": {
  10645. "classmap": [
  10646. "src/"
  10647. ]
  10648. },
  10649. "notification-url": "https://packagist.org/downloads/",
  10650. "license": [
  10651. "BSD-3-Clause"
  10652. ],
  10653. "authors": [
  10654. {
  10655. "name": "Sebastian Bergmann",
  10656. "email": "[email protected]"
  10657. },
  10658. {
  10659. "name": "Jeff Welch",
  10660. "email": "[email protected]"
  10661. },
  10662. {
  10663. "name": "Volker Dusch",
  10664. "email": "[email protected]"
  10665. },
  10666. {
  10667. "name": "Bernhard Schussek",
  10668. "email": "[email protected]"
  10669. }
  10670. ],
  10671. "description": "Provides the functionality to compare PHP values for equality",
  10672. "homepage": "https://github.com/sebastianbergmann/comparator",
  10673. "keywords": [
  10674. "comparator",
  10675. "compare",
  10676. "equality"
  10677. ],
  10678. "support": {
  10679. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  10680. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.6"
  10681. },
  10682. "funding": [
  10683. {
  10684. "url": "https://github.com/sebastianbergmann",
  10685. "type": "github"
  10686. }
  10687. ],
  10688. "time": "2020-10-26T15:49:45+00:00"
  10689. },
  10690. {
  10691. "name": "sebastian/complexity",
  10692. "version": "2.0.2",
  10693. "source": {
  10694. "type": "git",
  10695. "url": "https://github.com/sebastianbergmann/complexity.git",
  10696. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  10697. },
  10698. "dist": {
  10699. "type": "zip",
  10700. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  10701. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  10702. "shasum": ""
  10703. },
  10704. "require": {
  10705. "nikic/php-parser": "^4.7",
  10706. "php": ">=7.3"
  10707. },
  10708. "require-dev": {
  10709. "phpunit/phpunit": "^9.3"
  10710. },
  10711. "type": "library",
  10712. "extra": {
  10713. "branch-alias": {
  10714. "dev-master": "2.0-dev"
  10715. }
  10716. },
  10717. "autoload": {
  10718. "classmap": [
  10719. "src/"
  10720. ]
  10721. },
  10722. "notification-url": "https://packagist.org/downloads/",
  10723. "license": [
  10724. "BSD-3-Clause"
  10725. ],
  10726. "authors": [
  10727. {
  10728. "name": "Sebastian Bergmann",
  10729. "email": "[email protected]",
  10730. "role": "lead"
  10731. }
  10732. ],
  10733. "description": "Library for calculating the complexity of PHP code units",
  10734. "homepage": "https://github.com/sebastianbergmann/complexity",
  10735. "support": {
  10736. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  10737. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  10738. },
  10739. "funding": [
  10740. {
  10741. "url": "https://github.com/sebastianbergmann",
  10742. "type": "github"
  10743. }
  10744. ],
  10745. "time": "2020-10-26T15:52:27+00:00"
  10746. },
  10747. {
  10748. "name": "sebastian/diff",
  10749. "version": "4.0.4",
  10750. "source": {
  10751. "type": "git",
  10752. "url": "https://github.com/sebastianbergmann/diff.git",
  10753. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  10754. },
  10755. "dist": {
  10756. "type": "zip",
  10757. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  10758. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  10759. "shasum": ""
  10760. },
  10761. "require": {
  10762. "php": ">=7.3"
  10763. },
  10764. "require-dev": {
  10765. "phpunit/phpunit": "^9.3",
  10766. "symfony/process": "^4.2 || ^5"
  10767. },
  10768. "type": "library",
  10769. "extra": {
  10770. "branch-alias": {
  10771. "dev-master": "4.0-dev"
  10772. }
  10773. },
  10774. "autoload": {
  10775. "classmap": [
  10776. "src/"
  10777. ]
  10778. },
  10779. "notification-url": "https://packagist.org/downloads/",
  10780. "license": [
  10781. "BSD-3-Clause"
  10782. ],
  10783. "authors": [
  10784. {
  10785. "name": "Sebastian Bergmann",
  10786. "email": "[email protected]"
  10787. },
  10788. {
  10789. "name": "Kore Nordmann",
  10790. "email": "[email protected]"
  10791. }
  10792. ],
  10793. "description": "Diff implementation",
  10794. "homepage": "https://github.com/sebastianbergmann/diff",
  10795. "keywords": [
  10796. "diff",
  10797. "udiff",
  10798. "unidiff",
  10799. "unified diff"
  10800. ],
  10801. "support": {
  10802. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10803. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  10804. },
  10805. "funding": [
  10806. {
  10807. "url": "https://github.com/sebastianbergmann",
  10808. "type": "github"
  10809. }
  10810. ],
  10811. "time": "2020-10-26T13:10:38+00:00"
  10812. },
  10813. {
  10814. "name": "sebastian/environment",
  10815. "version": "5.1.3",
  10816. "source": {
  10817. "type": "git",
  10818. "url": "https://github.com/sebastianbergmann/environment.git",
  10819. "reference": "388b6ced16caa751030f6a69e588299fa09200ac"
  10820. },
  10821. "dist": {
  10822. "type": "zip",
  10823. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/388b6ced16caa751030f6a69e588299fa09200ac",
  10824. "reference": "388b6ced16caa751030f6a69e588299fa09200ac",
  10825. "shasum": ""
  10826. },
  10827. "require": {
  10828. "php": ">=7.3"
  10829. },
  10830. "require-dev": {
  10831. "phpunit/phpunit": "^9.3"
  10832. },
  10833. "suggest": {
  10834. "ext-posix": "*"
  10835. },
  10836. "type": "library",
  10837. "extra": {
  10838. "branch-alias": {
  10839. "dev-master": "5.1-dev"
  10840. }
  10841. },
  10842. "autoload": {
  10843. "classmap": [
  10844. "src/"
  10845. ]
  10846. },
  10847. "notification-url": "https://packagist.org/downloads/",
  10848. "license": [
  10849. "BSD-3-Clause"
  10850. ],
  10851. "authors": [
  10852. {
  10853. "name": "Sebastian Bergmann",
  10854. "email": "[email protected]"
  10855. }
  10856. ],
  10857. "description": "Provides functionality to handle HHVM/PHP environments",
  10858. "homepage": "http://www.github.com/sebastianbergmann/environment",
  10859. "keywords": [
  10860. "Xdebug",
  10861. "environment",
  10862. "hhvm"
  10863. ],
  10864. "support": {
  10865. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10866. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.3"
  10867. },
  10868. "funding": [
  10869. {
  10870. "url": "https://github.com/sebastianbergmann",
  10871. "type": "github"
  10872. }
  10873. ],
  10874. "time": "2020-09-28T05:52:38+00:00"
  10875. },
  10876. {
  10877. "name": "sebastian/exporter",
  10878. "version": "4.0.3",
  10879. "source": {
  10880. "type": "git",
  10881. "url": "https://github.com/sebastianbergmann/exporter.git",
  10882. "reference": "d89cc98761b8cb5a1a235a6b703ae50d34080e65"
  10883. },
  10884. "dist": {
  10885. "type": "zip",
  10886. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/d89cc98761b8cb5a1a235a6b703ae50d34080e65",
  10887. "reference": "d89cc98761b8cb5a1a235a6b703ae50d34080e65",
  10888. "shasum": ""
  10889. },
  10890. "require": {
  10891. "php": ">=7.3",
  10892. "sebastian/recursion-context": "^4.0"
  10893. },
  10894. "require-dev": {
  10895. "ext-mbstring": "*",
  10896. "phpunit/phpunit": "^9.3"
  10897. },
  10898. "type": "library",
  10899. "extra": {
  10900. "branch-alias": {
  10901. "dev-master": "4.0-dev"
  10902. }
  10903. },
  10904. "autoload": {
  10905. "classmap": [
  10906. "src/"
  10907. ]
  10908. },
  10909. "notification-url": "https://packagist.org/downloads/",
  10910. "license": [
  10911. "BSD-3-Clause"
  10912. ],
  10913. "authors": [
  10914. {
  10915. "name": "Sebastian Bergmann",
  10916. "email": "[email protected]"
  10917. },
  10918. {
  10919. "name": "Jeff Welch",
  10920. "email": "[email protected]"
  10921. },
  10922. {
  10923. "name": "Volker Dusch",
  10924. "email": "[email protected]"
  10925. },
  10926. {
  10927. "name": "Adam Harvey",
  10928. "email": "[email protected]"
  10929. },
  10930. {
  10931. "name": "Bernhard Schussek",
  10932. "email": "[email protected]"
  10933. }
  10934. ],
  10935. "description": "Provides the functionality to export PHP variables for visualization",
  10936. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  10937. "keywords": [
  10938. "export",
  10939. "exporter"
  10940. ],
  10941. "support": {
  10942. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10943. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.3"
  10944. },
  10945. "funding": [
  10946. {
  10947. "url": "https://github.com/sebastianbergmann",
  10948. "type": "github"
  10949. }
  10950. ],
  10951. "time": "2020-09-28T05:24:23+00:00"
  10952. },
  10953. {
  10954. "name": "sebastian/global-state",
  10955. "version": "5.0.2",
  10956. "source": {
  10957. "type": "git",
  10958. "url": "https://github.com/sebastianbergmann/global-state.git",
  10959. "reference": "a90ccbddffa067b51f574dea6eb25d5680839455"
  10960. },
  10961. "dist": {
  10962. "type": "zip",
  10963. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/a90ccbddffa067b51f574dea6eb25d5680839455",
  10964. "reference": "a90ccbddffa067b51f574dea6eb25d5680839455",
  10965. "shasum": ""
  10966. },
  10967. "require": {
  10968. "php": ">=7.3",
  10969. "sebastian/object-reflector": "^2.0",
  10970. "sebastian/recursion-context": "^4.0"
  10971. },
  10972. "require-dev": {
  10973. "ext-dom": "*",
  10974. "phpunit/phpunit": "^9.3"
  10975. },
  10976. "suggest": {
  10977. "ext-uopz": "*"
  10978. },
  10979. "type": "library",
  10980. "extra": {
  10981. "branch-alias": {
  10982. "dev-master": "5.0-dev"
  10983. }
  10984. },
  10985. "autoload": {
  10986. "classmap": [
  10987. "src/"
  10988. ]
  10989. },
  10990. "notification-url": "https://packagist.org/downloads/",
  10991. "license": [
  10992. "BSD-3-Clause"
  10993. ],
  10994. "authors": [
  10995. {
  10996. "name": "Sebastian Bergmann",
  10997. "email": "[email protected]"
  10998. }
  10999. ],
  11000. "description": "Snapshotting of global state",
  11001. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  11002. "keywords": [
  11003. "global state"
  11004. ],
  11005. "support": {
  11006. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  11007. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.2"
  11008. },
  11009. "funding": [
  11010. {
  11011. "url": "https://github.com/sebastianbergmann",
  11012. "type": "github"
  11013. }
  11014. ],
  11015. "time": "2020-10-26T15:55:19+00:00"
  11016. },
  11017. {
  11018. "name": "sebastian/lines-of-code",
  11019. "version": "1.0.3",
  11020. "source": {
  11021. "type": "git",
  11022. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  11023. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  11024. },
  11025. "dist": {
  11026. "type": "zip",
  11027. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  11028. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  11029. "shasum": ""
  11030. },
  11031. "require": {
  11032. "nikic/php-parser": "^4.6",
  11033. "php": ">=7.3"
  11034. },
  11035. "require-dev": {
  11036. "phpunit/phpunit": "^9.3"
  11037. },
  11038. "type": "library",
  11039. "extra": {
  11040. "branch-alias": {
  11041. "dev-master": "1.0-dev"
  11042. }
  11043. },
  11044. "autoload": {
  11045. "classmap": [
  11046. "src/"
  11047. ]
  11048. },
  11049. "notification-url": "https://packagist.org/downloads/",
  11050. "license": [
  11051. "BSD-3-Clause"
  11052. ],
  11053. "authors": [
  11054. {
  11055. "name": "Sebastian Bergmann",
  11056. "email": "[email protected]",
  11057. "role": "lead"
  11058. }
  11059. ],
  11060. "description": "Library for counting the lines of code in PHP source code",
  11061. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  11062. "support": {
  11063. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  11064. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  11065. },
  11066. "funding": [
  11067. {
  11068. "url": "https://github.com/sebastianbergmann",
  11069. "type": "github"
  11070. }
  11071. ],
  11072. "time": "2020-11-28T06:42:11+00:00"
  11073. },
  11074. {
  11075. "name": "sebastian/object-enumerator",
  11076. "version": "4.0.4",
  11077. "source": {
  11078. "type": "git",
  11079. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  11080. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  11081. },
  11082. "dist": {
  11083. "type": "zip",
  11084. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  11085. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  11086. "shasum": ""
  11087. },
  11088. "require": {
  11089. "php": ">=7.3",
  11090. "sebastian/object-reflector": "^2.0",
  11091. "sebastian/recursion-context": "^4.0"
  11092. },
  11093. "require-dev": {
  11094. "phpunit/phpunit": "^9.3"
  11095. },
  11096. "type": "library",
  11097. "extra": {
  11098. "branch-alias": {
  11099. "dev-master": "4.0-dev"
  11100. }
  11101. },
  11102. "autoload": {
  11103. "classmap": [
  11104. "src/"
  11105. ]
  11106. },
  11107. "notification-url": "https://packagist.org/downloads/",
  11108. "license": [
  11109. "BSD-3-Clause"
  11110. ],
  11111. "authors": [
  11112. {
  11113. "name": "Sebastian Bergmann",
  11114. "email": "[email protected]"
  11115. }
  11116. ],
  11117. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  11118. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  11119. "support": {
  11120. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  11121. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  11122. },
  11123. "funding": [
  11124. {
  11125. "url": "https://github.com/sebastianbergmann",
  11126. "type": "github"
  11127. }
  11128. ],
  11129. "time": "2020-10-26T13:12:34+00:00"
  11130. },
  11131. {
  11132. "name": "sebastian/object-reflector",
  11133. "version": "2.0.4",
  11134. "source": {
  11135. "type": "git",
  11136. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  11137. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  11138. },
  11139. "dist": {
  11140. "type": "zip",
  11141. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  11142. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  11143. "shasum": ""
  11144. },
  11145. "require": {
  11146. "php": ">=7.3"
  11147. },
  11148. "require-dev": {
  11149. "phpunit/phpunit": "^9.3"
  11150. },
  11151. "type": "library",
  11152. "extra": {
  11153. "branch-alias": {
  11154. "dev-master": "2.0-dev"
  11155. }
  11156. },
  11157. "autoload": {
  11158. "classmap": [
  11159. "src/"
  11160. ]
  11161. },
  11162. "notification-url": "https://packagist.org/downloads/",
  11163. "license": [
  11164. "BSD-3-Clause"
  11165. ],
  11166. "authors": [
  11167. {
  11168. "name": "Sebastian Bergmann",
  11169. "email": "[email protected]"
  11170. }
  11171. ],
  11172. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  11173. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  11174. "support": {
  11175. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  11176. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  11177. },
  11178. "funding": [
  11179. {
  11180. "url": "https://github.com/sebastianbergmann",
  11181. "type": "github"
  11182. }
  11183. ],
  11184. "time": "2020-10-26T13:14:26+00:00"
  11185. },
  11186. {
  11187. "name": "sebastian/recursion-context",
  11188. "version": "4.0.4",
  11189. "source": {
  11190. "type": "git",
  11191. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  11192. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172"
  11193. },
  11194. "dist": {
  11195. "type": "zip",
  11196. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172",
  11197. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172",
  11198. "shasum": ""
  11199. },
  11200. "require": {
  11201. "php": ">=7.3"
  11202. },
  11203. "require-dev": {
  11204. "phpunit/phpunit": "^9.3"
  11205. },
  11206. "type": "library",
  11207. "extra": {
  11208. "branch-alias": {
  11209. "dev-master": "4.0-dev"
  11210. }
  11211. },
  11212. "autoload": {
  11213. "classmap": [
  11214. "src/"
  11215. ]
  11216. },
  11217. "notification-url": "https://packagist.org/downloads/",
  11218. "license": [
  11219. "BSD-3-Clause"
  11220. ],
  11221. "authors": [
  11222. {
  11223. "name": "Sebastian Bergmann",
  11224. "email": "[email protected]"
  11225. },
  11226. {
  11227. "name": "Jeff Welch",
  11228. "email": "[email protected]"
  11229. },
  11230. {
  11231. "name": "Adam Harvey",
  11232. "email": "[email protected]"
  11233. }
  11234. ],
  11235. "description": "Provides functionality to recursively process PHP variables",
  11236. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  11237. "support": {
  11238. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  11239. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4"
  11240. },
  11241. "funding": [
  11242. {
  11243. "url": "https://github.com/sebastianbergmann",
  11244. "type": "github"
  11245. }
  11246. ],
  11247. "time": "2020-10-26T13:17:30+00:00"
  11248. },
  11249. {
  11250. "name": "sebastian/resource-operations",
  11251. "version": "3.0.3",
  11252. "source": {
  11253. "type": "git",
  11254. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  11255. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  11256. },
  11257. "dist": {
  11258. "type": "zip",
  11259. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  11260. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  11261. "shasum": ""
  11262. },
  11263. "require": {
  11264. "php": ">=7.3"
  11265. },
  11266. "require-dev": {
  11267. "phpunit/phpunit": "^9.0"
  11268. },
  11269. "type": "library",
  11270. "extra": {
  11271. "branch-alias": {
  11272. "dev-master": "3.0-dev"
  11273. }
  11274. },
  11275. "autoload": {
  11276. "classmap": [
  11277. "src/"
  11278. ]
  11279. },
  11280. "notification-url": "https://packagist.org/downloads/",
  11281. "license": [
  11282. "BSD-3-Clause"
  11283. ],
  11284. "authors": [
  11285. {
  11286. "name": "Sebastian Bergmann",
  11287. "email": "[email protected]"
  11288. }
  11289. ],
  11290. "description": "Provides a list of PHP built-in functions that operate on resources",
  11291. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  11292. "support": {
  11293. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  11294. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  11295. },
  11296. "funding": [
  11297. {
  11298. "url": "https://github.com/sebastianbergmann",
  11299. "type": "github"
  11300. }
  11301. ],
  11302. "time": "2020-09-28T06:45:17+00:00"
  11303. },
  11304. {
  11305. "name": "sebastian/type",
  11306. "version": "2.3.1",
  11307. "source": {
  11308. "type": "git",
  11309. "url": "https://github.com/sebastianbergmann/type.git",
  11310. "reference": "81cd61ab7bbf2de744aba0ea61fae32f721df3d2"
  11311. },
  11312. "dist": {
  11313. "type": "zip",
  11314. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/81cd61ab7bbf2de744aba0ea61fae32f721df3d2",
  11315. "reference": "81cd61ab7bbf2de744aba0ea61fae32f721df3d2",
  11316. "shasum": ""
  11317. },
  11318. "require": {
  11319. "php": ">=7.3"
  11320. },
  11321. "require-dev": {
  11322. "phpunit/phpunit": "^9.3"
  11323. },
  11324. "type": "library",
  11325. "extra": {
  11326. "branch-alias": {
  11327. "dev-master": "2.3-dev"
  11328. }
  11329. },
  11330. "autoload": {
  11331. "classmap": [
  11332. "src/"
  11333. ]
  11334. },
  11335. "notification-url": "https://packagist.org/downloads/",
  11336. "license": [
  11337. "BSD-3-Clause"
  11338. ],
  11339. "authors": [
  11340. {
  11341. "name": "Sebastian Bergmann",
  11342. "email": "[email protected]",
  11343. "role": "lead"
  11344. }
  11345. ],
  11346. "description": "Collection of value objects that represent the types of the PHP type system",
  11347. "homepage": "https://github.com/sebastianbergmann/type",
  11348. "support": {
  11349. "issues": "https://github.com/sebastianbergmann/type/issues",
  11350. "source": "https://github.com/sebastianbergmann/type/tree/2.3.1"
  11351. },
  11352. "funding": [
  11353. {
  11354. "url": "https://github.com/sebastianbergmann",
  11355. "type": "github"
  11356. }
  11357. ],
  11358. "time": "2020-10-26T13:18:59+00:00"
  11359. },
  11360. {
  11361. "name": "sebastian/version",
  11362. "version": "3.0.2",
  11363. "source": {
  11364. "type": "git",
  11365. "url": "https://github.com/sebastianbergmann/version.git",
  11366. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  11367. },
  11368. "dist": {
  11369. "type": "zip",
  11370. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  11371. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  11372. "shasum": ""
  11373. },
  11374. "require": {
  11375. "php": ">=7.3"
  11376. },
  11377. "type": "library",
  11378. "extra": {
  11379. "branch-alias": {
  11380. "dev-master": "3.0-dev"
  11381. }
  11382. },
  11383. "autoload": {
  11384. "classmap": [
  11385. "src/"
  11386. ]
  11387. },
  11388. "notification-url": "https://packagist.org/downloads/",
  11389. "license": [
  11390. "BSD-3-Clause"
  11391. ],
  11392. "authors": [
  11393. {
  11394. "name": "Sebastian Bergmann",
  11395. "email": "[email protected]",
  11396. "role": "lead"
  11397. }
  11398. ],
  11399. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  11400. "homepage": "https://github.com/sebastianbergmann/version",
  11401. "support": {
  11402. "issues": "https://github.com/sebastianbergmann/version/issues",
  11403. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  11404. },
  11405. "funding": [
  11406. {
  11407. "url": "https://github.com/sebastianbergmann",
  11408. "type": "github"
  11409. }
  11410. ],
  11411. "time": "2020-09-28T06:39:44+00:00"
  11412. },
  11413. {
  11414. "name": "seld/jsonlint",
  11415. "version": "1.8.3",
  11416. "source": {
  11417. "type": "git",
  11418. "url": "https://github.com/Seldaek/jsonlint.git",
  11419. "reference": "9ad6ce79c342fbd44df10ea95511a1b24dee5b57"
  11420. },
  11421. "dist": {
  11422. "type": "zip",
  11423. "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/9ad6ce79c342fbd44df10ea95511a1b24dee5b57",
  11424. "reference": "9ad6ce79c342fbd44df10ea95511a1b24dee5b57",
  11425. "shasum": ""
  11426. },
  11427. "require": {
  11428. "php": "^5.3 || ^7.0 || ^8.0"
  11429. },
  11430. "require-dev": {
  11431. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  11432. },
  11433. "bin": [
  11434. "bin/jsonlint"
  11435. ],
  11436. "type": "library",
  11437. "autoload": {
  11438. "psr-4": {
  11439. "Seld\\JsonLint\\": "src/Seld/JsonLint/"
  11440. }
  11441. },
  11442. "notification-url": "https://packagist.org/downloads/",
  11443. "license": [
  11444. "MIT"
  11445. ],
  11446. "authors": [
  11447. {
  11448. "name": "Jordi Boggiano",
  11449. "email": "[email protected]",
  11450. "homepage": "http://seld.be"
  11451. }
  11452. ],
  11453. "description": "JSON Linter",
  11454. "keywords": [
  11455. "json",
  11456. "linter",
  11457. "parser",
  11458. "validator"
  11459. ],
  11460. "support": {
  11461. "issues": "https://github.com/Seldaek/jsonlint/issues",
  11462. "source": "https://github.com/Seldaek/jsonlint/tree/1.8.3"
  11463. },
  11464. "funding": [
  11465. {
  11466. "url": "https://github.com/Seldaek",
  11467. "type": "github"
  11468. },
  11469. {
  11470. "url": "https://tidelift.com/funding/github/packagist/seld/jsonlint",
  11471. "type": "tidelift"
  11472. }
  11473. ],
  11474. "time": "2020-11-11T09:19:24+00:00"
  11475. },
  11476. {
  11477. "name": "seld/phar-utils",
  11478. "version": "1.1.1",
  11479. "source": {
  11480. "type": "git",
  11481. "url": "https://github.com/Seldaek/phar-utils.git",
  11482. "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796"
  11483. },
  11484. "dist": {
  11485. "type": "zip",
  11486. "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/8674b1d84ffb47cc59a101f5d5a3b61e87d23796",
  11487. "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796",
  11488. "shasum": ""
  11489. },
  11490. "require": {
  11491. "php": ">=5.3"
  11492. },
  11493. "type": "library",
  11494. "extra": {
  11495. "branch-alias": {
  11496. "dev-master": "1.x-dev"
  11497. }
  11498. },
  11499. "autoload": {
  11500. "psr-4": {
  11501. "Seld\\PharUtils\\": "src/"
  11502. }
  11503. },
  11504. "notification-url": "https://packagist.org/downloads/",
  11505. "license": [
  11506. "MIT"
  11507. ],
  11508. "authors": [
  11509. {
  11510. "name": "Jordi Boggiano",
  11511. "email": "[email protected]"
  11512. }
  11513. ],
  11514. "description": "PHAR file format utilities, for when PHP phars you up",
  11515. "keywords": [
  11516. "phar"
  11517. ],
  11518. "support": {
  11519. "issues": "https://github.com/Seldaek/phar-utils/issues",
  11520. "source": "https://github.com/Seldaek/phar-utils/tree/master"
  11521. },
  11522. "time": "2020-07-07T18:42:57+00:00"
  11523. },
  11524. {
  11525. "name": "symfony/debug",
  11526. "version": "v4.4.20",
  11527. "source": {
  11528. "type": "git",
  11529. "url": "https://github.com/symfony/debug.git",
  11530. "reference": "157bbec4fd773bae53c5483c50951a5530a2cc16"
  11531. },
  11532. "dist": {
  11533. "type": "zip",
  11534. "url": "https://api.github.com/repos/symfony/debug/zipball/157bbec4fd773bae53c5483c50951a5530a2cc16",
  11535. "reference": "157bbec4fd773bae53c5483c50951a5530a2cc16",
  11536. "shasum": ""
  11537. },
  11538. "require": {
  11539. "php": ">=7.1.3",
  11540. "psr/log": "~1.0",
  11541. "symfony/polyfill-php80": "^1.15"
  11542. },
  11543. "conflict": {
  11544. "symfony/http-kernel": "<3.4"
  11545. },
  11546. "require-dev": {
  11547. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  11548. },
  11549. "type": "library",
  11550. "autoload": {
  11551. "psr-4": {
  11552. "Symfony\\Component\\Debug\\": ""
  11553. },
  11554. "exclude-from-classmap": [
  11555. "/Tests/"
  11556. ]
  11557. },
  11558. "notification-url": "https://packagist.org/downloads/",
  11559. "license": [
  11560. "MIT"
  11561. ],
  11562. "authors": [
  11563. {
  11564. "name": "Fabien Potencier",
  11565. "email": "[email protected]"
  11566. },
  11567. {
  11568. "name": "Symfony Community",
  11569. "homepage": "https://symfony.com/contributors"
  11570. }
  11571. ],
  11572. "description": "Provides tools to ease debugging PHP code",
  11573. "homepage": "https://symfony.com",
  11574. "support": {
  11575. "source": "https://github.com/symfony/debug/tree/v4.4.20"
  11576. },
  11577. "funding": [
  11578. {
  11579. "url": "https://symfony.com/sponsor",
  11580. "type": "custom"
  11581. },
  11582. {
  11583. "url": "https://github.com/fabpot",
  11584. "type": "github"
  11585. },
  11586. {
  11587. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11588. "type": "tidelift"
  11589. }
  11590. ],
  11591. "time": "2021-01-28T16:54:48+00:00"
  11592. },
  11593. {
  11594. "name": "symfony/filesystem",
  11595. "version": "v5.2.4",
  11596. "source": {
  11597. "type": "git",
  11598. "url": "https://github.com/symfony/filesystem.git",
  11599. "reference": "710d364200997a5afde34d9fe57bd52f3cc1e108"
  11600. },
  11601. "dist": {
  11602. "type": "zip",
  11603. "url": "https://api.github.com/repos/symfony/filesystem/zipball/710d364200997a5afde34d9fe57bd52f3cc1e108",
  11604. "reference": "710d364200997a5afde34d9fe57bd52f3cc1e108",
  11605. "shasum": ""
  11606. },
  11607. "require": {
  11608. "php": ">=7.2.5",
  11609. "symfony/polyfill-ctype": "~1.8"
  11610. },
  11611. "type": "library",
  11612. "autoload": {
  11613. "psr-4": {
  11614. "Symfony\\Component\\Filesystem\\": ""
  11615. },
  11616. "exclude-from-classmap": [
  11617. "/Tests/"
  11618. ]
  11619. },
  11620. "notification-url": "https://packagist.org/downloads/",
  11621. "license": [
  11622. "MIT"
  11623. ],
  11624. "authors": [
  11625. {
  11626. "name": "Fabien Potencier",
  11627. "email": "[email protected]"
  11628. },
  11629. {
  11630. "name": "Symfony Community",
  11631. "homepage": "https://symfony.com/contributors"
  11632. }
  11633. ],
  11634. "description": "Provides basic utilities for the filesystem",
  11635. "homepage": "https://symfony.com",
  11636. "support": {
  11637. "source": "https://github.com/symfony/filesystem/tree/v5.2.4"
  11638. },
  11639. "funding": [
  11640. {
  11641. "url": "https://symfony.com/sponsor",
  11642. "type": "custom"
  11643. },
  11644. {
  11645. "url": "https://github.com/fabpot",
  11646. "type": "github"
  11647. },
  11648. {
  11649. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11650. "type": "tidelift"
  11651. }
  11652. ],
  11653. "time": "2021-02-12T10:38:38+00:00"
  11654. },
  11655. {
  11656. "name": "theseer/tokenizer",
  11657. "version": "1.2.0",
  11658. "source": {
  11659. "type": "git",
  11660. "url": "https://github.com/theseer/tokenizer.git",
  11661. "reference": "75a63c33a8577608444246075ea0af0d052e452a"
  11662. },
  11663. "dist": {
  11664. "type": "zip",
  11665. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a",
  11666. "reference": "75a63c33a8577608444246075ea0af0d052e452a",
  11667. "shasum": ""
  11668. },
  11669. "require": {
  11670. "ext-dom": "*",
  11671. "ext-tokenizer": "*",
  11672. "ext-xmlwriter": "*",
  11673. "php": "^7.2 || ^8.0"
  11674. },
  11675. "type": "library",
  11676. "autoload": {
  11677. "classmap": [
  11678. "src/"
  11679. ]
  11680. },
  11681. "notification-url": "https://packagist.org/downloads/",
  11682. "license": [
  11683. "BSD-3-Clause"
  11684. ],
  11685. "authors": [
  11686. {
  11687. "name": "Arne Blankerts",
  11688. "email": "[email protected]",
  11689. "role": "Developer"
  11690. }
  11691. ],
  11692. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11693. "support": {
  11694. "issues": "https://github.com/theseer/tokenizer/issues",
  11695. "source": "https://github.com/theseer/tokenizer/tree/master"
  11696. },
  11697. "funding": [
  11698. {
  11699. "url": "https://github.com/theseer",
  11700. "type": "github"
  11701. }
  11702. ],
  11703. "time": "2020-07-12T23:59:07+00:00"
  11704. },
  11705. {
  11706. "name": "webmozart/assert",
  11707. "version": "1.10.0",
  11708. "source": {
  11709. "type": "git",
  11710. "url": "https://github.com/webmozarts/assert.git",
  11711. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
  11712. },
  11713. "dist": {
  11714. "type": "zip",
  11715. "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
  11716. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
  11717. "shasum": ""
  11718. },
  11719. "require": {
  11720. "php": "^7.2 || ^8.0",
  11721. "symfony/polyfill-ctype": "^1.8"
  11722. },
  11723. "conflict": {
  11724. "phpstan/phpstan": "<0.12.20",
  11725. "vimeo/psalm": "<4.6.1 || 4.6.2"
  11726. },
  11727. "require-dev": {
  11728. "phpunit/phpunit": "^8.5.13"
  11729. },
  11730. "type": "library",
  11731. "extra": {
  11732. "branch-alias": {
  11733. "dev-master": "1.10-dev"
  11734. }
  11735. },
  11736. "autoload": {
  11737. "psr-4": {
  11738. "Webmozart\\Assert\\": "src/"
  11739. }
  11740. },
  11741. "notification-url": "https://packagist.org/downloads/",
  11742. "license": [
  11743. "MIT"
  11744. ],
  11745. "authors": [
  11746. {
  11747. "name": "Bernhard Schussek",
  11748. "email": "[email protected]"
  11749. }
  11750. ],
  11751. "description": "Assertions to validate method input/output with nice error messages.",
  11752. "keywords": [
  11753. "assert",
  11754. "check",
  11755. "validate"
  11756. ],
  11757. "support": {
  11758. "issues": "https://github.com/webmozarts/assert/issues",
  11759. "source": "https://github.com/webmozarts/assert/tree/1.10.0"
  11760. },
  11761. "time": "2021-03-09T10:59:23+00:00"
  11762. }
  11763. ],
  11764. "aliases": [],
  11765. "minimum-stability": "dev",
  11766. "stability-flags": [],
  11767. "prefer-stable": true,
  11768. "prefer-lowest": false,
  11769. "platform": {
  11770. "php": "^7.2.5|^8.0",
  11771. "ext-json": "*",
  11772. "ext-mbstring": "*",
  11773. "ext-openssl": "*",
  11774. "ext-simplexml": "*"
  11775. },
  11776. "platform-dev": [],
  11777. "plugin-api-version": "2.0.0"
  11778. }