composer.lock 426 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931
  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": "e54f2dd2cc06b1714a2a49ba599c5449",
  8. "packages": [
  9. {
  10. "name": "asm89/stack-cors",
  11. "version": "v2.0.2",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/asm89/stack-cors.git",
  15. "reference": "8d8f88b3b3830916be94292c1fbce84433efb1aa"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/8d8f88b3b3830916be94292c1fbce84433efb1aa",
  20. "reference": "8d8f88b3b3830916be94292c1fbce84433efb1aa",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^7.0|^8.0",
  25. "symfony/http-foundation": "~2.7|~3.0|~4.0|~5.0",
  26. "symfony/http-kernel": "~2.7|~3.0|~4.0|~5.0"
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "^6|^7|^8|^9",
  30. "squizlabs/php_codesniffer": "^3.5"
  31. },
  32. "type": "library",
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "2.0-dev"
  36. }
  37. },
  38. "autoload": {
  39. "psr-4": {
  40. "Asm89\\Stack\\": "src/"
  41. }
  42. },
  43. "notification-url": "https://packagist.org/downloads/",
  44. "license": [
  45. "MIT"
  46. ],
  47. "authors": [
  48. {
  49. "name": "Alexander",
  50. "email": "iam.asm89@gmail.com"
  51. }
  52. ],
  53. "description": "Cross-origin resource sharing library and stack middleware",
  54. "homepage": "https://github.com/asm89/stack-cors",
  55. "keywords": [
  56. "cors",
  57. "stack"
  58. ],
  59. "support": {
  60. "issues": "https://github.com/asm89/stack-cors/issues",
  61. "source": "https://github.com/asm89/stack-cors/tree/v2.0.2"
  62. },
  63. "time": "2020-10-29T16:03:21+00:00"
  64. },
  65. {
  66. "name": "brick/math",
  67. "version": "0.9.1",
  68. "source": {
  69. "type": "git",
  70. "url": "https://github.com/brick/math.git",
  71. "reference": "283a40c901101e66de7061bd359252c013dcc43c"
  72. },
  73. "dist": {
  74. "type": "zip",
  75. "url": "https://api.github.com/repos/brick/math/zipball/283a40c901101e66de7061bd359252c013dcc43c",
  76. "reference": "283a40c901101e66de7061bd359252c013dcc43c",
  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",
  86. "vimeo/psalm": "^3.5"
  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/master"
  112. },
  113. "funding": [
  114. {
  115. "url": "https://tidelift.com/funding/github/packagist/brick/math",
  116. "type": "tidelift"
  117. }
  118. ],
  119. "time": "2020-08-18T23:57:15+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": "j.boggiano@seld.be",
  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": "guilhermeblanco@gmail.com"
  283. },
  284. {
  285. "name": "Roman Borschel",
  286. "email": "roman@code-factory.org"
  287. },
  288. {
  289. "name": "Benjamin Eberlei",
  290. "email": "kontakt@beberlei.de"
  291. },
  292. {
  293. "name": "Jonathan Wage",
  294. "email": "jonwage@gmail.com"
  295. },
  296. {
  297. "name": "Johannes Schmitt",
  298. "email": "schmittjoh@gmail.com"
  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": "guilhermeblanco@gmail.com"
  388. },
  389. {
  390. "name": "Roman Borschel",
  391. "email": "roman@code-factory.org"
  392. },
  393. {
  394. "name": "Benjamin Eberlei",
  395. "email": "kontakt@beberlei.de"
  396. },
  397. {
  398. "name": "Jonathan Wage",
  399. "email": "jonwage@gmail.com"
  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": "guilhermeblanco@gmail.com"
  488. },
  489. {
  490. "name": "Roman Borschel",
  491. "email": "roman@code-factory.org"
  492. },
  493. {
  494. "name": "Benjamin Eberlei",
  495. "email": "kontakt@beberlei.de"
  496. },
  497. {
  498. "name": "Jonathan Wage",
  499. "email": "jonwage@gmail.com"
  500. },
  501. {
  502. "name": "Johannes Schmitt",
  503. "email": "schmittjoh@gmail.com"
  504. },
  505. {
  506. "name": "Marco Pivetta",
  507. "email": "ocramius@gmail.com"
  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": "guilhermeblanco@gmail.com"
  582. },
  583. {
  584. "name": "Roman Borschel",
  585. "email": "roman@code-factory.org"
  586. },
  587. {
  588. "name": "Benjamin Eberlei",
  589. "email": "kontakt@beberlei.de"
  590. },
  591. {
  592. "name": "Jonathan Wage",
  593. "email": "jonwage@gmail.com"
  594. },
  595. {
  596. "name": "Johannes Schmitt",
  597. "email": "schmittjoh@gmail.com"
  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": "guilhermeblanco@gmail.com"
  675. },
  676. {
  677. "name": "Roman Borschel",
  678. "email": "roman@code-factory.org"
  679. },
  680. {
  681. "name": "Johannes Schmitt",
  682. "email": "schmittjoh@gmail.com"
  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": "mtdowling@gmail.com",
  753. "homepage": "https://github.com/mtdowling"
  754. },
  755. {
  756. "name": "Chris Tankersley",
  757. "email": "chris@ctankersley.com",
  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": "elf.sundae@gmail.com",
  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": "elf.sundae@gmail.com",
  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": "admin@htmlpurifier.org",
  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": "fideloper@gmail.com"
  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": "barryvdh@gmail.com"
  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": "goschwald@maxmind.com",
  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": "mtdowling@gmail.com",
  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.0",
  1297. "source": {
  1298. "type": "git",
  1299. "url": "https://github.com/guzzle/promises.git",
  1300. "reference": "60d379c243457e073cff02bc323a2a86cb355631"
  1301. },
  1302. "dist": {
  1303. "type": "zip",
  1304. "url": "https://api.github.com/repos/guzzle/promises/zipball/60d379c243457e073cff02bc323a2a86cb355631",
  1305. "reference": "60d379c243457e073cff02bc323a2a86cb355631",
  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": "mtdowling@gmail.com",
  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.0"
  1346. },
  1347. "time": "2020-09-30T07:37:28+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": "mtdowling@gmail.com",
  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": "intervention/image",
  1426. "version": "2.5.1",
  1427. "source": {
  1428. "type": "git",
  1429. "url": "https://github.com/Intervention/image.git",
  1430. "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e"
  1431. },
  1432. "dist": {
  1433. "type": "zip",
  1434. "url": "https://api.github.com/repos/Intervention/image/zipball/abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
  1435. "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
  1436. "shasum": ""
  1437. },
  1438. "require": {
  1439. "ext-fileinfo": "*",
  1440. "guzzlehttp/psr7": "~1.1",
  1441. "php": ">=5.4.0"
  1442. },
  1443. "require-dev": {
  1444. "mockery/mockery": "~0.9.2",
  1445. "phpunit/phpunit": "^4.8 || ^5.7"
  1446. },
  1447. "suggest": {
  1448. "ext-gd": "to use GD library based image processing.",
  1449. "ext-imagick": "to use Imagick based image processing.",
  1450. "intervention/imagecache": "Caching extension for the Intervention Image library"
  1451. },
  1452. "type": "library",
  1453. "extra": {
  1454. "branch-alias": {
  1455. "dev-master": "2.4-dev"
  1456. },
  1457. "laravel": {
  1458. "providers": [
  1459. "Intervention\\Image\\ImageServiceProvider"
  1460. ],
  1461. "aliases": {
  1462. "Image": "Intervention\\Image\\Facades\\Image"
  1463. }
  1464. }
  1465. },
  1466. "autoload": {
  1467. "psr-4": {
  1468. "Intervention\\Image\\": "src/Intervention/Image"
  1469. }
  1470. },
  1471. "notification-url": "https://packagist.org/downloads/",
  1472. "license": [
  1473. "MIT"
  1474. ],
  1475. "authors": [
  1476. {
  1477. "name": "Oliver Vogel",
  1478. "email": "oliver@olivervogel.com",
  1479. "homepage": "http://olivervogel.com/"
  1480. }
  1481. ],
  1482. "description": "Image handling and manipulation library with support for Laravel integration",
  1483. "homepage": "http://image.intervention.io/",
  1484. "keywords": [
  1485. "gd",
  1486. "image",
  1487. "imagick",
  1488. "laravel",
  1489. "thumbnail",
  1490. "watermark"
  1491. ],
  1492. "support": {
  1493. "issues": "https://github.com/Intervention/image/issues",
  1494. "source": "https://github.com/Intervention/image/tree/master"
  1495. },
  1496. "time": "2019-11-02T09:15:47+00:00"
  1497. },
  1498. {
  1499. "name": "ip2location/ip2location-laravel",
  1500. "version": "1.2.0",
  1501. "source": {
  1502. "type": "git",
  1503. "url": "https://github.com/ip2location/ip2location-laravel.git",
  1504. "reference": "56b0da66e12982ef6db0e2fe3b231659c5e76a9b"
  1505. },
  1506. "dist": {
  1507. "type": "zip",
  1508. "url": "https://api.github.com/repos/ip2location/ip2location-laravel/zipball/56b0da66e12982ef6db0e2fe3b231659c5e76a9b",
  1509. "reference": "56b0da66e12982ef6db0e2fe3b231659c5e76a9b",
  1510. "shasum": ""
  1511. },
  1512. "require": {
  1513. "ip2location/ip2location-php": "8.*",
  1514. "php": ">=5.4"
  1515. },
  1516. "type": "library",
  1517. "autoload": {
  1518. "psr-4": {
  1519. "Ip2location\\IP2LocationLaravel\\": "src/"
  1520. }
  1521. },
  1522. "notification-url": "https://packagist.org/downloads/",
  1523. "license": [
  1524. "MIT"
  1525. ],
  1526. "authors": [
  1527. {
  1528. "name": "IP2Location",
  1529. "email": "support@ip2location.com"
  1530. }
  1531. ],
  1532. "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.",
  1533. "keywords": [
  1534. "geolocation",
  1535. "ip2location",
  1536. "laravel",
  1537. "laravel 5",
  1538. "laravel 7"
  1539. ],
  1540. "support": {
  1541. "issues": "https://github.com/ip2location/ip2location-laravel/issues",
  1542. "source": "https://github.com/ip2location/ip2location-laravel/tree/master"
  1543. },
  1544. "time": "2020-08-27T07:47:55+00:00"
  1545. },
  1546. {
  1547. "name": "ip2location/ip2location-php",
  1548. "version": "8.3.0",
  1549. "source": {
  1550. "type": "git",
  1551. "url": "https://github.com/chrislim2888/IP2Location-PHP-Module.git",
  1552. "reference": "4c501aa1f666ae85eab84d4df9d19399f2e6ce15"
  1553. },
  1554. "dist": {
  1555. "type": "zip",
  1556. "url": "https://api.github.com/repos/chrislim2888/IP2Location-PHP-Module/zipball/4c501aa1f666ae85eab84d4df9d19399f2e6ce15",
  1557. "reference": "4c501aa1f666ae85eab84d4df9d19399f2e6ce15",
  1558. "shasum": ""
  1559. },
  1560. "type": "library",
  1561. "autoload": {
  1562. "classmap": [
  1563. "IP2Location.php"
  1564. ]
  1565. },
  1566. "notification-url": "https://packagist.org/downloads/",
  1567. "license": [
  1568. "MIT"
  1569. ],
  1570. "authors": [
  1571. {
  1572. "name": "IP2Location",
  1573. "email": "support@ip2location.com",
  1574. "homepage": "http://www.ip2location.com"
  1575. }
  1576. ],
  1577. "description": "[Official Release] IP2Location PHP API to get location info from IPv4 and IPv6 address.",
  1578. "homepage": "http://www.ip2location.com",
  1579. "keywords": [
  1580. "geolocation",
  1581. "ip2location",
  1582. "ip2locationlite"
  1583. ],
  1584. "support": {
  1585. "issues": "https://github.com/chrislim2888/IP2Location-PHP-Module/issues",
  1586. "source": "https://github.com/chrislim2888/IP2Location-PHP-Module/tree/8.3.0"
  1587. },
  1588. "time": "2020-11-23T04:30:39+00:00"
  1589. },
  1590. {
  1591. "name": "ipip/db",
  1592. "version": "v1.0.0",
  1593. "source": {
  1594. "type": "git",
  1595. "url": "https://github.com/ipipdotnet/ipdb-php.git",
  1596. "reference": "af42bf28b37dc76beccd7bbe2b0b0572e21f42cf"
  1597. },
  1598. "dist": {
  1599. "type": "zip",
  1600. "url": "https://api.github.com/repos/ipipdotnet/ipdb-php/zipball/af42bf28b37dc76beccd7bbe2b0b0572e21f42cf",
  1601. "reference": "af42bf28b37dc76beccd7bbe2b0b0572e21f42cf",
  1602. "shasum": ""
  1603. },
  1604. "require": {
  1605. "php": ">=5.4.0"
  1606. },
  1607. "type": "library",
  1608. "autoload": {
  1609. "psr-4": {
  1610. "ipip\\db\\": "src/ipip/db/"
  1611. }
  1612. },
  1613. "notification-url": "https://packagist.org/downloads/",
  1614. "license": [
  1615. "Apache-2.0"
  1616. ],
  1617. "authors": [
  1618. {
  1619. "name": "IPIP.net",
  1620. "email": "frk@ipip.net",
  1621. "homepage": "https://www.ipip.net"
  1622. }
  1623. ],
  1624. "description": "IPIP.net officially supported IP database ipdb format parsing library",
  1625. "homepage": "https://www.ipip.net",
  1626. "keywords": [
  1627. "IP",
  1628. "geo",
  1629. "geoip",
  1630. "geolocation",
  1631. "ipdb",
  1632. "ipip.net"
  1633. ],
  1634. "support": {
  1635. "issues": "https://github.com/ipipdotnet/ipdb-php/issues",
  1636. "source": "https://github.com/ipipdotnet/ipdb-php/tree/v1.0.0"
  1637. },
  1638. "time": "2018-11-01T08:07:04+00:00"
  1639. },
  1640. {
  1641. "name": "jaybizzle/crawler-detect",
  1642. "version": "v1.2.103",
  1643. "source": {
  1644. "type": "git",
  1645. "url": "https://github.com/JayBizzle/Crawler-Detect.git",
  1646. "reference": "3efa2860959cc971f17624b40bf0699823f9d0f3"
  1647. },
  1648. "dist": {
  1649. "type": "zip",
  1650. "url": "https://api.github.com/repos/JayBizzle/Crawler-Detect/zipball/3efa2860959cc971f17624b40bf0699823f9d0f3",
  1651. "reference": "3efa2860959cc971f17624b40bf0699823f9d0f3",
  1652. "shasum": ""
  1653. },
  1654. "require": {
  1655. "php": ">=5.3.0"
  1656. },
  1657. "require-dev": {
  1658. "phpunit/phpunit": "^4.8|^5.5|^6.5"
  1659. },
  1660. "type": "library",
  1661. "autoload": {
  1662. "psr-4": {
  1663. "Jaybizzle\\CrawlerDetect\\": "src/"
  1664. }
  1665. },
  1666. "notification-url": "https://packagist.org/downloads/",
  1667. "license": [
  1668. "MIT"
  1669. ],
  1670. "authors": [
  1671. {
  1672. "name": "Mark Beech",
  1673. "email": "m@rkbee.ch",
  1674. "role": "Developer"
  1675. }
  1676. ],
  1677. "description": "CrawlerDetect is a PHP class for detecting bots/crawlers/spiders via the user agent",
  1678. "homepage": "https://github.com/JayBizzle/Crawler-Detect/",
  1679. "keywords": [
  1680. "crawler",
  1681. "crawler detect",
  1682. "crawler detector",
  1683. "crawlerdetect",
  1684. "php crawler detect"
  1685. ],
  1686. "support": {
  1687. "issues": "https://github.com/JayBizzle/Crawler-Detect/issues",
  1688. "source": "https://github.com/JayBizzle/Crawler-Detect/tree/v1.2.103"
  1689. },
  1690. "time": "2020-11-23T19:49:25+00:00"
  1691. },
  1692. {
  1693. "name": "jenssegers/agent",
  1694. "version": "v2.6.4",
  1695. "source": {
  1696. "type": "git",
  1697. "url": "https://github.com/jenssegers/agent.git",
  1698. "reference": "daa11c43729510b3700bc34d414664966b03bffe"
  1699. },
  1700. "dist": {
  1701. "type": "zip",
  1702. "url": "https://api.github.com/repos/jenssegers/agent/zipball/daa11c43729510b3700bc34d414664966b03bffe",
  1703. "reference": "daa11c43729510b3700bc34d414664966b03bffe",
  1704. "shasum": ""
  1705. },
  1706. "require": {
  1707. "jaybizzle/crawler-detect": "^1.2",
  1708. "mobiledetect/mobiledetectlib": "^2.7.6",
  1709. "php": ">=5.6"
  1710. },
  1711. "require-dev": {
  1712. "php-coveralls/php-coveralls": "^2.1",
  1713. "phpunit/phpunit": "^5.0|^6.0|^7.0"
  1714. },
  1715. "suggest": {
  1716. "illuminate/support": "Required for laravel service providers"
  1717. },
  1718. "type": "library",
  1719. "extra": {
  1720. "branch-alias": {
  1721. "dev-master": "3.0-dev"
  1722. },
  1723. "laravel": {
  1724. "providers": [
  1725. "Jenssegers\\Agent\\AgentServiceProvider"
  1726. ],
  1727. "aliases": {
  1728. "Agent": "Jenssegers\\Agent\\Facades\\Agent"
  1729. }
  1730. }
  1731. },
  1732. "autoload": {
  1733. "psr-4": {
  1734. "Jenssegers\\Agent\\": "src/"
  1735. }
  1736. },
  1737. "notification-url": "https://packagist.org/downloads/",
  1738. "license": [
  1739. "MIT"
  1740. ],
  1741. "authors": [
  1742. {
  1743. "name": "Jens Segers",
  1744. "homepage": "https://jenssegers.com"
  1745. }
  1746. ],
  1747. "description": "Desktop/mobile user agent parser with support for Laravel, based on Mobiledetect",
  1748. "homepage": "https://github.com/jenssegers/agent",
  1749. "keywords": [
  1750. "Agent",
  1751. "browser",
  1752. "desktop",
  1753. "laravel",
  1754. "mobile",
  1755. "platform",
  1756. "user agent",
  1757. "useragent"
  1758. ],
  1759. "support": {
  1760. "issues": "https://github.com/jenssegers/agent/issues",
  1761. "source": "https://github.com/jenssegers/agent/tree/v2.6.4"
  1762. },
  1763. "funding": [
  1764. {
  1765. "url": "https://github.com/jenssegers",
  1766. "type": "github"
  1767. },
  1768. {
  1769. "url": "https://tidelift.com/funding/github/packagist/jenssegers/agent",
  1770. "type": "tidelift"
  1771. }
  1772. ],
  1773. "time": "2020-06-13T08:05:20+00:00"
  1774. },
  1775. {
  1776. "name": "laravel-lang/lang",
  1777. "version": "7.0.9",
  1778. "source": {
  1779. "type": "git",
  1780. "url": "https://github.com/Laravel-Lang/lang.git",
  1781. "reference": "679a65755db37b35acd36a5e0ca51e055815a00a"
  1782. },
  1783. "dist": {
  1784. "type": "zip",
  1785. "url": "https://api.github.com/repos/Laravel-Lang/lang/zipball/679a65755db37b35acd36a5e0ca51e055815a00a",
  1786. "reference": "679a65755db37b35acd36a5e0ca51e055815a00a",
  1787. "shasum": ""
  1788. },
  1789. "require": {
  1790. "ext-json": "*"
  1791. },
  1792. "suggest": {
  1793. "andrey-helldar/laravel-lang-publisher": "Easy installation and update of translation files for your project",
  1794. "arcanedev/laravel-lang": "Translations manager and checker for Laravel 5",
  1795. "overtrue/laravel-lang": "Command to add languages in your project"
  1796. },
  1797. "type": "library",
  1798. "notification-url": "https://packagist.org/downloads/",
  1799. "license": [
  1800. "MIT"
  1801. ],
  1802. "authors": [
  1803. {
  1804. "name": "Laravel-Lang Team"
  1805. }
  1806. ],
  1807. "description": "Languages for Laravel",
  1808. "keywords": [
  1809. "lang",
  1810. "languages",
  1811. "laravel",
  1812. "lpm"
  1813. ],
  1814. "support": {
  1815. "issues": "https://github.com/Laravel-Lang/lang/issues",
  1816. "source": "https://github.com/Laravel-Lang/lang/tree/7.0.9"
  1817. },
  1818. "time": "2020-11-30T20:35:41+00:00"
  1819. },
  1820. {
  1821. "name": "laravel-notification-channels/bearychat",
  1822. "version": "1.4.0",
  1823. "source": {
  1824. "type": "git",
  1825. "url": "https://github.com/laravel-notification-channels/bearychat.git",
  1826. "reference": "b04ac9bad37cd08cf177a342b3e2b831c87b2a96"
  1827. },
  1828. "dist": {
  1829. "type": "zip",
  1830. "url": "https://api.github.com/repos/laravel-notification-channels/bearychat/zipball/b04ac9bad37cd08cf177a342b3e2b831c87b2a96",
  1831. "reference": "b04ac9bad37cd08cf177a342b3e2b831c87b2a96",
  1832. "shasum": ""
  1833. },
  1834. "require": {
  1835. "elfsundae/laravel-bearychat": "~1.4",
  1836. "illuminate/notifications": "~5.3|~6.0|~7.0|~8.0",
  1837. "php": ">=5.6.4"
  1838. },
  1839. "require-dev": {
  1840. "mockery/mockery": "~1.0",
  1841. "phpunit/phpunit": "~5.7|~6.0|~7.0|~8.0"
  1842. },
  1843. "type": "library",
  1844. "autoload": {
  1845. "psr-4": {
  1846. "NotificationChannels\\BearyChat\\": "src"
  1847. }
  1848. },
  1849. "notification-url": "https://packagist.org/downloads/",
  1850. "license": [
  1851. "MIT"
  1852. ],
  1853. "authors": [
  1854. {
  1855. "name": "Elf Sundae",
  1856. "email": "elf.sundae@gmail.com",
  1857. "homepage": "https://github.com/ElfSundae",
  1858. "role": "Developer"
  1859. }
  1860. ],
  1861. "description": "BearyChat notifications channel for Laravel.",
  1862. "homepage": "https://github.com/laravel-notification-channels/bearychat",
  1863. "support": {
  1864. "issues": "https://github.com/laravel-notification-channels/bearychat/issues",
  1865. "source": "https://github.com/laravel-notification-channels/bearychat/tree/1.4.0"
  1866. },
  1867. "time": "2020-09-13T14:32:13+00:00"
  1868. },
  1869. {
  1870. "name": "laravel-notification-channels/telegram",
  1871. "version": "0.5.1",
  1872. "source": {
  1873. "type": "git",
  1874. "url": "https://github.com/laravel-notification-channels/telegram.git",
  1875. "reference": "2cedb10b78219cc91a285eaa5a3de0db405cc207"
  1876. },
  1877. "dist": {
  1878. "type": "zip",
  1879. "url": "https://api.github.com/repos/laravel-notification-channels/telegram/zipball/2cedb10b78219cc91a285eaa5a3de0db405cc207",
  1880. "reference": "2cedb10b78219cc91a285eaa5a3de0db405cc207",
  1881. "shasum": ""
  1882. },
  1883. "require": {
  1884. "ext-json": "*",
  1885. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  1886. "illuminate/notifications": "^5.5 || ^6.0 || ^7.0 || ^8.0",
  1887. "illuminate/support": "^5.5 || ^6.0 || ^7.0 || ^8.0",
  1888. "php": "^7.1 || ^8.0"
  1889. },
  1890. "require-dev": {
  1891. "mockery/mockery": "^1.3",
  1892. "phpunit/phpunit": "^7.0 || ^8.0"
  1893. },
  1894. "type": "library",
  1895. "extra": {
  1896. "laravel": {
  1897. "providers": [
  1898. "NotificationChannels\\Telegram\\TelegramServiceProvider"
  1899. ]
  1900. }
  1901. },
  1902. "autoload": {
  1903. "psr-4": {
  1904. "NotificationChannels\\Telegram\\": "src"
  1905. }
  1906. },
  1907. "notification-url": "https://packagist.org/downloads/",
  1908. "license": [
  1909. "MIT"
  1910. ],
  1911. "authors": [
  1912. {
  1913. "name": "Irfaq Syed",
  1914. "email": "syed@lukonet.com",
  1915. "homepage": "https://lukonet.com",
  1916. "role": "Developer"
  1917. }
  1918. ],
  1919. "description": "Telegram Notifications Channel for Laravel",
  1920. "homepage": "https://github.com/laravel-notification-channels/telegram",
  1921. "keywords": [
  1922. "laravel",
  1923. "notification",
  1924. "telegram",
  1925. "telegram notification",
  1926. "telegram notifications channel"
  1927. ],
  1928. "support": {
  1929. "issues": "https://github.com/laravel-notification-channels/telegram/issues",
  1930. "source": "https://github.com/laravel-notification-channels/telegram/tree/0.5.1"
  1931. },
  1932. "time": "2020-12-06T19:00:18+00:00"
  1933. },
  1934. {
  1935. "name": "laravel/framework",
  1936. "version": "v7.30.3",
  1937. "source": {
  1938. "type": "git",
  1939. "url": "https://github.com/laravel/framework.git",
  1940. "reference": "28481951106e75cf8c5a8b24100059fa327df1ef"
  1941. },
  1942. "dist": {
  1943. "type": "zip",
  1944. "url": "https://api.github.com/repos/laravel/framework/zipball/28481951106e75cf8c5a8b24100059fa327df1ef",
  1945. "reference": "28481951106e75cf8c5a8b24100059fa327df1ef",
  1946. "shasum": ""
  1947. },
  1948. "require": {
  1949. "doctrine/inflector": "^1.4|^2.0",
  1950. "dragonmantank/cron-expression": "^2.3.1",
  1951. "egulias/email-validator": "^2.1.10",
  1952. "ext-json": "*",
  1953. "ext-mbstring": "*",
  1954. "ext-openssl": "*",
  1955. "league/commonmark": "^1.3",
  1956. "league/flysystem": "^1.1",
  1957. "monolog/monolog": "^2.0",
  1958. "nesbot/carbon": "^2.31",
  1959. "opis/closure": "^3.6",
  1960. "php": "^7.2.5|^8.0",
  1961. "psr/container": "^1.0",
  1962. "psr/simple-cache": "^1.0",
  1963. "ramsey/uuid": "^3.7|^4.0",
  1964. "swiftmailer/swiftmailer": "^6.0",
  1965. "symfony/console": "^5.0",
  1966. "symfony/error-handler": "^5.0",
  1967. "symfony/finder": "^5.0",
  1968. "symfony/http-foundation": "^5.0",
  1969. "symfony/http-kernel": "^5.0",
  1970. "symfony/mime": "^5.0",
  1971. "symfony/polyfill-php73": "^1.17",
  1972. "symfony/process": "^5.0",
  1973. "symfony/routing": "^5.0",
  1974. "symfony/var-dumper": "^5.0",
  1975. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  1976. "vlucas/phpdotenv": "^4.0",
  1977. "voku/portable-ascii": "^1.4.8"
  1978. },
  1979. "conflict": {
  1980. "tightenco/collect": "<5.5.33"
  1981. },
  1982. "provide": {
  1983. "psr/container-implementation": "1.0"
  1984. },
  1985. "replace": {
  1986. "illuminate/auth": "self.version",
  1987. "illuminate/broadcasting": "self.version",
  1988. "illuminate/bus": "self.version",
  1989. "illuminate/cache": "self.version",
  1990. "illuminate/config": "self.version",
  1991. "illuminate/console": "self.version",
  1992. "illuminate/container": "self.version",
  1993. "illuminate/contracts": "self.version",
  1994. "illuminate/cookie": "self.version",
  1995. "illuminate/database": "self.version",
  1996. "illuminate/encryption": "self.version",
  1997. "illuminate/events": "self.version",
  1998. "illuminate/filesystem": "self.version",
  1999. "illuminate/hashing": "self.version",
  2000. "illuminate/http": "self.version",
  2001. "illuminate/log": "self.version",
  2002. "illuminate/mail": "self.version",
  2003. "illuminate/notifications": "self.version",
  2004. "illuminate/pagination": "self.version",
  2005. "illuminate/pipeline": "self.version",
  2006. "illuminate/queue": "self.version",
  2007. "illuminate/redis": "self.version",
  2008. "illuminate/routing": "self.version",
  2009. "illuminate/session": "self.version",
  2010. "illuminate/support": "self.version",
  2011. "illuminate/testing": "self.version",
  2012. "illuminate/translation": "self.version",
  2013. "illuminate/validation": "self.version",
  2014. "illuminate/view": "self.version"
  2015. },
  2016. "require-dev": {
  2017. "aws/aws-sdk-php": "^3.155",
  2018. "doctrine/dbal": "^2.6",
  2019. "filp/whoops": "^2.8",
  2020. "guzzlehttp/guzzle": "^6.3.1|^7.0.1",
  2021. "league/flysystem-cached-adapter": "^1.0",
  2022. "mockery/mockery": "~1.3.3|^1.4.2",
  2023. "moontoast/math": "^1.1",
  2024. "orchestra/testbench-core": "^5.8",
  2025. "pda/pheanstalk": "^4.0",
  2026. "phpunit/phpunit": "^8.4|^9.3.3",
  2027. "predis/predis": "^1.1.1",
  2028. "symfony/cache": "^5.0"
  2029. },
  2030. "suggest": {
  2031. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.155).",
  2032. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
  2033. "ext-ftp": "Required to use the Flysystem FTP driver.",
  2034. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  2035. "ext-memcached": "Required to use the memcache cache driver.",
  2036. "ext-pcntl": "Required to use all features of the queue worker.",
  2037. "ext-posix": "Required to use all features of the queue worker.",
  2038. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  2039. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  2040. "filp/whoops": "Required for friendly error pages in development (^2.8).",
  2041. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.3.1|^7.0.1).",
  2042. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  2043. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  2044. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  2045. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  2046. "mockery/mockery": "Required to use mocking (~1.3.3|^1.4.2).",
  2047. "moontoast/math": "Required to use ordered UUIDs (^1.1).",
  2048. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  2049. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  2050. "phpunit/phpunit": "Required to use assertions and run tests (^8.4|^9.3.3).",
  2051. "predis/predis": "Required to use the predis connector (^1.1.2).",
  2052. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  2053. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0).",
  2054. "symfony/cache": "Required to PSR-6 cache bridge (^5.0).",
  2055. "symfony/filesystem": "Required to create relative storage directory symbolic links (^5.0).",
  2056. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  2057. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  2058. },
  2059. "type": "library",
  2060. "extra": {
  2061. "branch-alias": {
  2062. "dev-master": "7.x-dev"
  2063. }
  2064. },
  2065. "autoload": {
  2066. "files": [
  2067. "src/Illuminate/Foundation/helpers.php",
  2068. "src/Illuminate/Support/helpers.php"
  2069. ],
  2070. "psr-4": {
  2071. "Illuminate\\": "src/Illuminate/"
  2072. }
  2073. },
  2074. "notification-url": "https://packagist.org/downloads/",
  2075. "license": [
  2076. "MIT"
  2077. ],
  2078. "authors": [
  2079. {
  2080. "name": "Taylor Otwell",
  2081. "email": "taylor@laravel.com"
  2082. }
  2083. ],
  2084. "description": "The Laravel Framework.",
  2085. "homepage": "https://laravel.com",
  2086. "keywords": [
  2087. "framework",
  2088. "laravel"
  2089. ],
  2090. "support": {
  2091. "issues": "https://github.com/laravel/framework/issues",
  2092. "source": "https://github.com/laravel/framework"
  2093. },
  2094. "time": "2021-01-15T15:38:30+00:00"
  2095. },
  2096. {
  2097. "name": "laravel/tinker",
  2098. "version": "v2.5.0",
  2099. "source": {
  2100. "type": "git",
  2101. "url": "https://github.com/laravel/tinker.git",
  2102. "reference": "45884b526e10a88a1b179fa1a1a24d5468c668c2"
  2103. },
  2104. "dist": {
  2105. "type": "zip",
  2106. "url": "https://api.github.com/repos/laravel/tinker/zipball/45884b526e10a88a1b179fa1a1a24d5468c668c2",
  2107. "reference": "45884b526e10a88a1b179fa1a1a24d5468c668c2",
  2108. "shasum": ""
  2109. },
  2110. "require": {
  2111. "illuminate/console": "^6.0|^7.0|^8.0",
  2112. "illuminate/contracts": "^6.0|^7.0|^8.0",
  2113. "illuminate/support": "^6.0|^7.0|^8.0",
  2114. "php": "^7.2.5|^8.0",
  2115. "psy/psysh": "^0.10.4",
  2116. "symfony/var-dumper": "^4.3.4|^5.0"
  2117. },
  2118. "require-dev": {
  2119. "mockery/mockery": "~1.3.3|^1.4.2",
  2120. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2121. },
  2122. "suggest": {
  2123. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0)."
  2124. },
  2125. "type": "library",
  2126. "extra": {
  2127. "branch-alias": {
  2128. "dev-master": "2.x-dev"
  2129. },
  2130. "laravel": {
  2131. "providers": [
  2132. "Laravel\\Tinker\\TinkerServiceProvider"
  2133. ]
  2134. }
  2135. },
  2136. "autoload": {
  2137. "psr-4": {
  2138. "Laravel\\Tinker\\": "src/"
  2139. }
  2140. },
  2141. "notification-url": "https://packagist.org/downloads/",
  2142. "license": [
  2143. "MIT"
  2144. ],
  2145. "authors": [
  2146. {
  2147. "name": "Taylor Otwell",
  2148. "email": "taylor@laravel.com"
  2149. }
  2150. ],
  2151. "description": "Powerful REPL for the Laravel framework.",
  2152. "keywords": [
  2153. "REPL",
  2154. "Tinker",
  2155. "laravel",
  2156. "psysh"
  2157. ],
  2158. "support": {
  2159. "issues": "https://github.com/laravel/tinker/issues",
  2160. "source": "https://github.com/laravel/tinker/tree/v2.5.0"
  2161. },
  2162. "time": "2020-10-29T13:07:12+00:00"
  2163. },
  2164. {
  2165. "name": "lcobucci/jwt",
  2166. "version": "3.3.3",
  2167. "source": {
  2168. "type": "git",
  2169. "url": "https://github.com/lcobucci/jwt.git",
  2170. "reference": "c1123697f6a2ec29162b82f170dd4a491f524773"
  2171. },
  2172. "dist": {
  2173. "type": "zip",
  2174. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/c1123697f6a2ec29162b82f170dd4a491f524773",
  2175. "reference": "c1123697f6a2ec29162b82f170dd4a491f524773",
  2176. "shasum": ""
  2177. },
  2178. "require": {
  2179. "ext-mbstring": "*",
  2180. "ext-openssl": "*",
  2181. "php": "^5.6 || ^7.0"
  2182. },
  2183. "require-dev": {
  2184. "mikey179/vfsstream": "~1.5",
  2185. "phpmd/phpmd": "~2.2",
  2186. "phpunit/php-invoker": "~1.1",
  2187. "phpunit/phpunit": "^5.7 || ^7.3",
  2188. "squizlabs/php_codesniffer": "~2.3"
  2189. },
  2190. "type": "library",
  2191. "extra": {
  2192. "branch-alias": {
  2193. "dev-master": "3.1-dev"
  2194. }
  2195. },
  2196. "autoload": {
  2197. "psr-4": {
  2198. "Lcobucci\\JWT\\": "src"
  2199. }
  2200. },
  2201. "notification-url": "https://packagist.org/downloads/",
  2202. "license": [
  2203. "BSD-3-Clause"
  2204. ],
  2205. "authors": [
  2206. {
  2207. "name": "Luís Otávio Cobucci Oblonczyk",
  2208. "email": "lcobucci@gmail.com",
  2209. "role": "Developer"
  2210. }
  2211. ],
  2212. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  2213. "keywords": [
  2214. "JWS",
  2215. "jwt"
  2216. ],
  2217. "support": {
  2218. "issues": "https://github.com/lcobucci/jwt/issues",
  2219. "source": "https://github.com/lcobucci/jwt/tree/3.3.3"
  2220. },
  2221. "funding": [
  2222. {
  2223. "url": "https://github.com/lcobucci",
  2224. "type": "github"
  2225. },
  2226. {
  2227. "url": "https://www.patreon.com/lcobucci",
  2228. "type": "patreon"
  2229. }
  2230. ],
  2231. "time": "2020-08-20T13:22:28+00:00"
  2232. },
  2233. {
  2234. "name": "league/commonmark",
  2235. "version": "1.5.7",
  2236. "source": {
  2237. "type": "git",
  2238. "url": "https://github.com/thephpleague/commonmark.git",
  2239. "reference": "11df9b36fd4f1d2b727a73bf14931d81373b9a54"
  2240. },
  2241. "dist": {
  2242. "type": "zip",
  2243. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/11df9b36fd4f1d2b727a73bf14931d81373b9a54",
  2244. "reference": "11df9b36fd4f1d2b727a73bf14931d81373b9a54",
  2245. "shasum": ""
  2246. },
  2247. "require": {
  2248. "ext-mbstring": "*",
  2249. "php": "^7.1 || ^8.0"
  2250. },
  2251. "conflict": {
  2252. "scrutinizer/ocular": "1.7.*"
  2253. },
  2254. "require-dev": {
  2255. "cebe/markdown": "~1.0",
  2256. "commonmark/commonmark.js": "0.29.2",
  2257. "erusev/parsedown": "~1.0",
  2258. "ext-json": "*",
  2259. "github/gfm": "0.29.0",
  2260. "michelf/php-markdown": "~1.4",
  2261. "mikehaertl/php-shellcommand": "^1.4",
  2262. "phpstan/phpstan": "^0.12",
  2263. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.2",
  2264. "scrutinizer/ocular": "^1.5",
  2265. "symfony/finder": "^4.2"
  2266. },
  2267. "bin": [
  2268. "bin/commonmark"
  2269. ],
  2270. "type": "library",
  2271. "autoload": {
  2272. "psr-4": {
  2273. "League\\CommonMark\\": "src"
  2274. }
  2275. },
  2276. "notification-url": "https://packagist.org/downloads/",
  2277. "license": [
  2278. "BSD-3-Clause"
  2279. ],
  2280. "authors": [
  2281. {
  2282. "name": "Colin O'Dell",
  2283. "email": "colinodell@gmail.com",
  2284. "homepage": "https://www.colinodell.com",
  2285. "role": "Lead Developer"
  2286. }
  2287. ],
  2288. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and Github-Flavored Markdown (GFM)",
  2289. "homepage": "https://commonmark.thephpleague.com",
  2290. "keywords": [
  2291. "commonmark",
  2292. "flavored",
  2293. "gfm",
  2294. "github",
  2295. "github-flavored",
  2296. "markdown",
  2297. "md",
  2298. "parser"
  2299. ],
  2300. "support": {
  2301. "docs": "https://commonmark.thephpleague.com/",
  2302. "issues": "https://github.com/thephpleague/commonmark/issues",
  2303. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2304. "source": "https://github.com/thephpleague/commonmark"
  2305. },
  2306. "funding": [
  2307. {
  2308. "url": "https://enjoy.gitstore.app/repositories/thephpleague/commonmark",
  2309. "type": "custom"
  2310. },
  2311. {
  2312. "url": "https://www.colinodell.com/sponsor",
  2313. "type": "custom"
  2314. },
  2315. {
  2316. "url": "https://www.paypal.me/colinpodell/10.00",
  2317. "type": "custom"
  2318. },
  2319. {
  2320. "url": "https://github.com/colinodell",
  2321. "type": "github"
  2322. },
  2323. {
  2324. "url": "https://www.patreon.com/colinodell",
  2325. "type": "patreon"
  2326. },
  2327. {
  2328. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2329. "type": "tidelift"
  2330. }
  2331. ],
  2332. "time": "2020-10-31T13:49:32+00:00"
  2333. },
  2334. {
  2335. "name": "league/flysystem",
  2336. "version": "1.1.3",
  2337. "source": {
  2338. "type": "git",
  2339. "url": "https://github.com/thephpleague/flysystem.git",
  2340. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a"
  2341. },
  2342. "dist": {
  2343. "type": "zip",
  2344. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/9be3b16c877d477357c015cec057548cf9b2a14a",
  2345. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a",
  2346. "shasum": ""
  2347. },
  2348. "require": {
  2349. "ext-fileinfo": "*",
  2350. "league/mime-type-detection": "^1.3",
  2351. "php": "^7.2.5 || ^8.0"
  2352. },
  2353. "conflict": {
  2354. "league/flysystem-sftp": "<1.0.6"
  2355. },
  2356. "require-dev": {
  2357. "phpspec/prophecy": "^1.11.1",
  2358. "phpunit/phpunit": "^8.5.8"
  2359. },
  2360. "suggest": {
  2361. "ext-fileinfo": "Required for MimeType",
  2362. "ext-ftp": "Allows you to use FTP server storage",
  2363. "ext-openssl": "Allows you to use FTPS server storage",
  2364. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  2365. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  2366. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  2367. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2368. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  2369. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2370. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  2371. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2372. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2373. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2374. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2375. },
  2376. "type": "library",
  2377. "extra": {
  2378. "branch-alias": {
  2379. "dev-master": "1.1-dev"
  2380. }
  2381. },
  2382. "autoload": {
  2383. "psr-4": {
  2384. "League\\Flysystem\\": "src/"
  2385. }
  2386. },
  2387. "notification-url": "https://packagist.org/downloads/",
  2388. "license": [
  2389. "MIT"
  2390. ],
  2391. "authors": [
  2392. {
  2393. "name": "Frank de Jonge",
  2394. "email": "info@frenky.net"
  2395. }
  2396. ],
  2397. "description": "Filesystem abstraction: Many filesystems, one API.",
  2398. "keywords": [
  2399. "Cloud Files",
  2400. "WebDAV",
  2401. "abstraction",
  2402. "aws",
  2403. "cloud",
  2404. "copy.com",
  2405. "dropbox",
  2406. "file systems",
  2407. "files",
  2408. "filesystem",
  2409. "filesystems",
  2410. "ftp",
  2411. "rackspace",
  2412. "remote",
  2413. "s3",
  2414. "sftp",
  2415. "storage"
  2416. ],
  2417. "support": {
  2418. "issues": "https://github.com/thephpleague/flysystem/issues",
  2419. "source": "https://github.com/thephpleague/flysystem/tree/1.x"
  2420. },
  2421. "funding": [
  2422. {
  2423. "url": "https://offset.earth/frankdejonge",
  2424. "type": "other"
  2425. }
  2426. ],
  2427. "time": "2020-08-23T07:39:11+00:00"
  2428. },
  2429. {
  2430. "name": "league/mime-type-detection",
  2431. "version": "1.7.0",
  2432. "source": {
  2433. "type": "git",
  2434. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2435. "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3"
  2436. },
  2437. "dist": {
  2438. "type": "zip",
  2439. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
  2440. "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
  2441. "shasum": ""
  2442. },
  2443. "require": {
  2444. "ext-fileinfo": "*",
  2445. "php": "^7.2 || ^8.0"
  2446. },
  2447. "require-dev": {
  2448. "friendsofphp/php-cs-fixer": "^2.18",
  2449. "phpstan/phpstan": "^0.12.68",
  2450. "phpunit/phpunit": "^8.5.8 || ^9.3"
  2451. },
  2452. "type": "library",
  2453. "autoload": {
  2454. "psr-4": {
  2455. "League\\MimeTypeDetection\\": "src"
  2456. }
  2457. },
  2458. "notification-url": "https://packagist.org/downloads/",
  2459. "license": [
  2460. "MIT"
  2461. ],
  2462. "authors": [
  2463. {
  2464. "name": "Frank de Jonge",
  2465. "email": "info@frankdejonge.nl"
  2466. }
  2467. ],
  2468. "description": "Mime-type detection for Flysystem",
  2469. "support": {
  2470. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2471. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.7.0"
  2472. },
  2473. "funding": [
  2474. {
  2475. "url": "https://github.com/frankdejonge",
  2476. "type": "github"
  2477. },
  2478. {
  2479. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2480. "type": "tidelift"
  2481. }
  2482. ],
  2483. "time": "2021-01-18T20:58:21+00:00"
  2484. },
  2485. {
  2486. "name": "maennchen/zipstream-php",
  2487. "version": "2.1.0",
  2488. "source": {
  2489. "type": "git",
  2490. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  2491. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58"
  2492. },
  2493. "dist": {
  2494. "type": "zip",
  2495. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2496. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2497. "shasum": ""
  2498. },
  2499. "require": {
  2500. "myclabs/php-enum": "^1.5",
  2501. "php": ">= 7.1",
  2502. "psr/http-message": "^1.0",
  2503. "symfony/polyfill-mbstring": "^1.0"
  2504. },
  2505. "require-dev": {
  2506. "ext-zip": "*",
  2507. "guzzlehttp/guzzle": ">= 6.3",
  2508. "mikey179/vfsstream": "^1.6",
  2509. "phpunit/phpunit": ">= 7.5"
  2510. },
  2511. "type": "library",
  2512. "autoload": {
  2513. "psr-4": {
  2514. "ZipStream\\": "src/"
  2515. }
  2516. },
  2517. "notification-url": "https://packagist.org/downloads/",
  2518. "license": [
  2519. "MIT"
  2520. ],
  2521. "authors": [
  2522. {
  2523. "name": "Paul Duncan",
  2524. "email": "pabs@pablotron.org"
  2525. },
  2526. {
  2527. "name": "Jonatan Männchen",
  2528. "email": "jonatan@maennchen.ch"
  2529. },
  2530. {
  2531. "name": "Jesse Donat",
  2532. "email": "donatj@gmail.com"
  2533. },
  2534. {
  2535. "name": "András Kolesár",
  2536. "email": "kolesar@kolesar.hu"
  2537. }
  2538. ],
  2539. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  2540. "keywords": [
  2541. "stream",
  2542. "zip"
  2543. ],
  2544. "support": {
  2545. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  2546. "source": "https://github.com/maennchen/ZipStream-PHP/tree/master"
  2547. },
  2548. "funding": [
  2549. {
  2550. "url": "https://opencollective.com/zipstream",
  2551. "type": "open_collective"
  2552. }
  2553. ],
  2554. "time": "2020-05-30T13:11:16+00:00"
  2555. },
  2556. {
  2557. "name": "markbaker/complex",
  2558. "version": "2.0.0",
  2559. "source": {
  2560. "type": "git",
  2561. "url": "https://github.com/MarkBaker/PHPComplex.git",
  2562. "reference": "9999f1432fae467bc93c53f357105b4c31bb994c"
  2563. },
  2564. "dist": {
  2565. "type": "zip",
  2566. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/9999f1432fae467bc93c53f357105b4c31bb994c",
  2567. "reference": "9999f1432fae467bc93c53f357105b4c31bb994c",
  2568. "shasum": ""
  2569. },
  2570. "require": {
  2571. "php": "^7.2 || ^8.0"
  2572. },
  2573. "require-dev": {
  2574. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2575. "phpcompatibility/php-compatibility": "^9.0",
  2576. "phpdocumentor/phpdocumentor": "2.*",
  2577. "phploc/phploc": "^4.0",
  2578. "phpmd/phpmd": "2.*",
  2579. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  2580. "sebastian/phpcpd": "^4.0",
  2581. "squizlabs/php_codesniffer": "^3.4"
  2582. },
  2583. "type": "library",
  2584. "autoload": {
  2585. "psr-4": {
  2586. "Complex\\": "classes/src/"
  2587. },
  2588. "files": [
  2589. "classes/src/functions/abs.php",
  2590. "classes/src/functions/acos.php",
  2591. "classes/src/functions/acosh.php",
  2592. "classes/src/functions/acot.php",
  2593. "classes/src/functions/acoth.php",
  2594. "classes/src/functions/acsc.php",
  2595. "classes/src/functions/acsch.php",
  2596. "classes/src/functions/argument.php",
  2597. "classes/src/functions/asec.php",
  2598. "classes/src/functions/asech.php",
  2599. "classes/src/functions/asin.php",
  2600. "classes/src/functions/asinh.php",
  2601. "classes/src/functions/atan.php",
  2602. "classes/src/functions/atanh.php",
  2603. "classes/src/functions/conjugate.php",
  2604. "classes/src/functions/cos.php",
  2605. "classes/src/functions/cosh.php",
  2606. "classes/src/functions/cot.php",
  2607. "classes/src/functions/coth.php",
  2608. "classes/src/functions/csc.php",
  2609. "classes/src/functions/csch.php",
  2610. "classes/src/functions/exp.php",
  2611. "classes/src/functions/inverse.php",
  2612. "classes/src/functions/ln.php",
  2613. "classes/src/functions/log2.php",
  2614. "classes/src/functions/log10.php",
  2615. "classes/src/functions/negative.php",
  2616. "classes/src/functions/pow.php",
  2617. "classes/src/functions/rho.php",
  2618. "classes/src/functions/sec.php",
  2619. "classes/src/functions/sech.php",
  2620. "classes/src/functions/sin.php",
  2621. "classes/src/functions/sinh.php",
  2622. "classes/src/functions/sqrt.php",
  2623. "classes/src/functions/tan.php",
  2624. "classes/src/functions/tanh.php",
  2625. "classes/src/functions/theta.php",
  2626. "classes/src/operations/add.php",
  2627. "classes/src/operations/subtract.php",
  2628. "classes/src/operations/multiply.php",
  2629. "classes/src/operations/divideby.php",
  2630. "classes/src/operations/divideinto.php"
  2631. ]
  2632. },
  2633. "notification-url": "https://packagist.org/downloads/",
  2634. "license": [
  2635. "MIT"
  2636. ],
  2637. "authors": [
  2638. {
  2639. "name": "Mark Baker",
  2640. "email": "mark@lange.demon.co.uk"
  2641. }
  2642. ],
  2643. "description": "PHP Class for working with complex numbers",
  2644. "homepage": "https://github.com/MarkBaker/PHPComplex",
  2645. "keywords": [
  2646. "complex",
  2647. "mathematics"
  2648. ],
  2649. "support": {
  2650. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  2651. "source": "https://github.com/MarkBaker/PHPComplex/tree/PHP8"
  2652. },
  2653. "time": "2020-08-26T10:42:07+00:00"
  2654. },
  2655. {
  2656. "name": "markbaker/matrix",
  2657. "version": "2.0.0",
  2658. "source": {
  2659. "type": "git",
  2660. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  2661. "reference": "9567d9c4c519fbe40de01dbd1e4469dbbb66f46a"
  2662. },
  2663. "dist": {
  2664. "type": "zip",
  2665. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/9567d9c4c519fbe40de01dbd1e4469dbbb66f46a",
  2666. "reference": "9567d9c4c519fbe40de01dbd1e4469dbbb66f46a",
  2667. "shasum": ""
  2668. },
  2669. "require": {
  2670. "php": "^7.2 || ^8.0"
  2671. },
  2672. "require-dev": {
  2673. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2674. "phpcompatibility/php-compatibility": "^9.0",
  2675. "phpdocumentor/phpdocumentor": "2.*",
  2676. "phploc/phploc": "^4.0",
  2677. "phpmd/phpmd": "2.*",
  2678. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  2679. "sebastian/phpcpd": "^4.0",
  2680. "squizlabs/php_codesniffer": "^3.4"
  2681. },
  2682. "type": "library",
  2683. "autoload": {
  2684. "psr-4": {
  2685. "Matrix\\": "classes/src/"
  2686. },
  2687. "files": [
  2688. "classes/src/functions/adjoint.php",
  2689. "classes/src/functions/antidiagonal.php",
  2690. "classes/src/functions/cofactors.php",
  2691. "classes/src/functions/determinant.php",
  2692. "classes/src/functions/diagonal.php",
  2693. "classes/src/functions/identity.php",
  2694. "classes/src/functions/inverse.php",
  2695. "classes/src/functions/minors.php",
  2696. "classes/src/functions/trace.php",
  2697. "classes/src/functions/transpose.php",
  2698. "classes/src/operations/add.php",
  2699. "classes/src/operations/directsum.php",
  2700. "classes/src/operations/subtract.php",
  2701. "classes/src/operations/multiply.php",
  2702. "classes/src/operations/divideby.php",
  2703. "classes/src/operations/divideinto.php"
  2704. ]
  2705. },
  2706. "notification-url": "https://packagist.org/downloads/",
  2707. "license": [
  2708. "MIT"
  2709. ],
  2710. "authors": [
  2711. {
  2712. "name": "Mark Baker",
  2713. "email": "mark@demon-angel.eu"
  2714. }
  2715. ],
  2716. "description": "PHP Class for working with matrices",
  2717. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  2718. "keywords": [
  2719. "mathematics",
  2720. "matrix",
  2721. "vector"
  2722. ],
  2723. "support": {
  2724. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  2725. "source": "https://github.com/MarkBaker/PHPMatrix/tree/PHP8"
  2726. },
  2727. "time": "2020-08-28T17:11:00+00:00"
  2728. },
  2729. {
  2730. "name": "maxmind-db/reader",
  2731. "version": "v1.9.0",
  2732. "source": {
  2733. "type": "git",
  2734. "url": "https://github.com/maxmind/MaxMind-DB-Reader-php.git",
  2735. "reference": "9ee9ba9ee287b119e9f5a8e8dbfea0b49647cec4"
  2736. },
  2737. "dist": {
  2738. "type": "zip",
  2739. "url": "https://api.github.com/repos/maxmind/MaxMind-DB-Reader-php/zipball/9ee9ba9ee287b119e9f5a8e8dbfea0b49647cec4",
  2740. "reference": "9ee9ba9ee287b119e9f5a8e8dbfea0b49647cec4",
  2741. "shasum": ""
  2742. },
  2743. "require": {
  2744. "php": ">=7.2"
  2745. },
  2746. "conflict": {
  2747. "ext-maxminddb": "<1.9.0,>=2.0.0"
  2748. },
  2749. "require-dev": {
  2750. "friendsofphp/php-cs-fixer": "*",
  2751. "php-coveralls/php-coveralls": "^2.1",
  2752. "phpunit/phpcov": ">=6.0.0",
  2753. "phpunit/phpunit": ">=8.0.0,<10.0.0",
  2754. "squizlabs/php_codesniffer": "3.*"
  2755. },
  2756. "suggest": {
  2757. "ext-bcmath": "bcmath or gmp is required for decoding larger integers with the pure PHP decoder",
  2758. "ext-gmp": "bcmath or gmp is required for decoding larger integers with the pure PHP decoder",
  2759. "ext-maxminddb": "A C-based database decoder that provides significantly faster lookups"
  2760. },
  2761. "type": "library",
  2762. "autoload": {
  2763. "psr-4": {
  2764. "MaxMind\\Db\\": "src/MaxMind/Db"
  2765. }
  2766. },
  2767. "notification-url": "https://packagist.org/downloads/",
  2768. "license": [
  2769. "Apache-2.0"
  2770. ],
  2771. "authors": [
  2772. {
  2773. "name": "Gregory J. Oschwald",
  2774. "email": "goschwald@maxmind.com",
  2775. "homepage": "https://www.maxmind.com/"
  2776. }
  2777. ],
  2778. "description": "MaxMind DB Reader API",
  2779. "homepage": "https://github.com/maxmind/MaxMind-DB-Reader-php",
  2780. "keywords": [
  2781. "database",
  2782. "geoip",
  2783. "geoip2",
  2784. "geolocation",
  2785. "maxmind"
  2786. ],
  2787. "support": {
  2788. "issues": "https://github.com/maxmind/MaxMind-DB-Reader-php/issues",
  2789. "source": "https://github.com/maxmind/MaxMind-DB-Reader-php/tree/v1.9.0"
  2790. },
  2791. "time": "2021-01-07T21:15:29+00:00"
  2792. },
  2793. {
  2794. "name": "maxmind/web-service-common",
  2795. "version": "v0.8.1",
  2796. "source": {
  2797. "type": "git",
  2798. "url": "https://github.com/maxmind/web-service-common-php.git",
  2799. "reference": "32f274051c543fc865e5a84d3a2c703913641ea8"
  2800. },
  2801. "dist": {
  2802. "type": "zip",
  2803. "url": "https://api.github.com/repos/maxmind/web-service-common-php/zipball/32f274051c543fc865e5a84d3a2c703913641ea8",
  2804. "reference": "32f274051c543fc865e5a84d3a2c703913641ea8",
  2805. "shasum": ""
  2806. },
  2807. "require": {
  2808. "composer/ca-bundle": "^1.0.3",
  2809. "ext-curl": "*",
  2810. "ext-json": "*",
  2811. "php": ">=7.2"
  2812. },
  2813. "require-dev": {
  2814. "friendsofphp/php-cs-fixer": "2.*",
  2815. "phpunit/phpunit": "^8.0 || ^9.0",
  2816. "squizlabs/php_codesniffer": "3.*"
  2817. },
  2818. "type": "library",
  2819. "autoload": {
  2820. "psr-4": {
  2821. "MaxMind\\Exception\\": "src/Exception",
  2822. "MaxMind\\WebService\\": "src/WebService"
  2823. }
  2824. },
  2825. "notification-url": "https://packagist.org/downloads/",
  2826. "license": [
  2827. "Apache-2.0"
  2828. ],
  2829. "authors": [
  2830. {
  2831. "name": "Gregory Oschwald",
  2832. "email": "goschwald@maxmind.com"
  2833. }
  2834. ],
  2835. "description": "Internal MaxMind Web Service API",
  2836. "homepage": "https://github.com/maxmind/web-service-common-php",
  2837. "support": {
  2838. "issues": "https://github.com/maxmind/web-service-common-php/issues",
  2839. "source": "https://github.com/maxmind/web-service-common-php/tree/v0.8.1"
  2840. },
  2841. "time": "2020-11-02T17:00:53+00:00"
  2842. },
  2843. {
  2844. "name": "mews/captcha",
  2845. "version": "3.2.5",
  2846. "source": {
  2847. "type": "git",
  2848. "url": "https://github.com/mewebstudio/captcha.git",
  2849. "reference": "41a3dac8cf45c8d3176fab7810adf1f5fd1d1802"
  2850. },
  2851. "dist": {
  2852. "type": "zip",
  2853. "url": "https://api.github.com/repos/mewebstudio/captcha/zipball/41a3dac8cf45c8d3176fab7810adf1f5fd1d1802",
  2854. "reference": "41a3dac8cf45c8d3176fab7810adf1f5fd1d1802",
  2855. "shasum": ""
  2856. },
  2857. "require": {
  2858. "ext-gd": "*",
  2859. "illuminate/config": "~5|^6|^7|^8",
  2860. "illuminate/filesystem": "~5|^6|^7|^8",
  2861. "illuminate/hashing": "~5|^6|^7|^8",
  2862. "illuminate/session": "~5|^6|^7|^8",
  2863. "illuminate/support": "~5|^6|^7|^8",
  2864. "intervention/image": "~2.5",
  2865. "php": "^7.2|^8.0"
  2866. },
  2867. "require-dev": {
  2868. "mockery/mockery": "^1.0",
  2869. "phpunit/phpunit": "^8.5"
  2870. },
  2871. "type": "package",
  2872. "extra": {
  2873. "laravel": {
  2874. "providers": [
  2875. "Mews\\Captcha\\CaptchaServiceProvider"
  2876. ],
  2877. "aliases": {
  2878. "Captcha": "Mews\\Captcha\\Facades\\Captcha"
  2879. }
  2880. }
  2881. },
  2882. "autoload": {
  2883. "psr-4": {
  2884. "Mews\\Captcha\\": "src/"
  2885. },
  2886. "files": [
  2887. "src/helpers.php"
  2888. ]
  2889. },
  2890. "notification-url": "https://packagist.org/downloads/",
  2891. "license": [
  2892. "MIT"
  2893. ],
  2894. "authors": [
  2895. {
  2896. "name": "Muharrem ERİN",
  2897. "email": "me@mewebstudio.com",
  2898. "homepage": "https://github.com/mewebstudio",
  2899. "role": "Developer"
  2900. }
  2901. ],
  2902. "description": "Laravel 5 & 6 Captcha Package",
  2903. "homepage": "https://github.com/mewebstudio/captcha",
  2904. "keywords": [
  2905. "captcha",
  2906. "laravel5 Security",
  2907. "laravel6 Captcha",
  2908. "laravel6 Security"
  2909. ],
  2910. "support": {
  2911. "issues": "https://github.com/mewebstudio/captcha/issues",
  2912. "source": "https://github.com/mewebstudio/captcha/tree/3.2.5"
  2913. },
  2914. "time": "2021-01-17T21:30:23+00:00"
  2915. },
  2916. {
  2917. "name": "mews/purifier",
  2918. "version": "3.3.3",
  2919. "source": {
  2920. "type": "git",
  2921. "url": "https://github.com/mewebstudio/Purifier.git",
  2922. "reference": "8e0b3d87c79b38b8d88aeb3c0ba8b000a393a74c"
  2923. },
  2924. "dist": {
  2925. "type": "zip",
  2926. "url": "https://api.github.com/repos/mewebstudio/Purifier/zipball/8e0b3d87c79b38b8d88aeb3c0ba8b000a393a74c",
  2927. "reference": "8e0b3d87c79b38b8d88aeb3c0ba8b000a393a74c",
  2928. "shasum": ""
  2929. },
  2930. "require": {
  2931. "ezyang/htmlpurifier": "4.13.*",
  2932. "illuminate/config": "^5.8|^6.0|^7.0|^8.0",
  2933. "illuminate/filesystem": "^5.8|^6.0|^7.0|^8.0",
  2934. "illuminate/support": "^5.8|^6.0|^7.0|^8.0",
  2935. "php": "^7.2|^8.0"
  2936. },
  2937. "require-dev": {
  2938. "graham-campbell/testbench": "^3.2|^5.5.1",
  2939. "mockery/mockery": "^1.3.3",
  2940. "phpunit/phpunit": "^8.0|^9.0"
  2941. },
  2942. "suggest": {
  2943. "laravel/framework": "To test the Laravel bindings",
  2944. "laravel/lumen-framework": "To test the Lumen bindings"
  2945. },
  2946. "type": "package",
  2947. "extra": {
  2948. "laravel": {
  2949. "providers": [
  2950. "Mews\\Purifier\\PurifierServiceProvider"
  2951. ],
  2952. "aliases": {
  2953. "Purifier": "Mews\\Purifier\\Facades\\Purifier"
  2954. }
  2955. }
  2956. },
  2957. "autoload": {
  2958. "psr-4": {
  2959. "Mews\\Purifier\\": "src/"
  2960. },
  2961. "files": [
  2962. "src/helpers.php"
  2963. ]
  2964. },
  2965. "notification-url": "https://packagist.org/downloads/",
  2966. "license": [
  2967. "MIT"
  2968. ],
  2969. "authors": [
  2970. {
  2971. "name": "Muharrem ERİN",
  2972. "email": "me@mewebstudio.com",
  2973. "homepage": "https://github.com/mewebstudio",
  2974. "role": "Developer"
  2975. }
  2976. ],
  2977. "description": "Laravel 5/6/7 HtmlPurifier Package",
  2978. "homepage": "https://github.com/mewebstudio/purifier",
  2979. "keywords": [
  2980. "Purifier",
  2981. "htmlpurifier",
  2982. "laravel5 HtmlPurifier",
  2983. "laravel5 Purifier",
  2984. "laravel5 Security",
  2985. "laravel6 HtmlPurifier",
  2986. "laravel6 Purifier",
  2987. "laravel6 Security",
  2988. "security",
  2989. "xss"
  2990. ],
  2991. "support": {
  2992. "issues": "https://github.com/mewebstudio/Purifier/issues",
  2993. "source": "https://github.com/mewebstudio/Purifier/tree/3.3.3"
  2994. },
  2995. "time": "2020-11-03T19:46:27+00:00"
  2996. },
  2997. {
  2998. "name": "mobiledetect/mobiledetectlib",
  2999. "version": "2.8.34",
  3000. "source": {
  3001. "type": "git",
  3002. "url": "https://github.com/serbanghita/Mobile-Detect.git",
  3003. "reference": "6f8113f57a508494ca36acbcfa2dc2d923c7ed5b"
  3004. },
  3005. "dist": {
  3006. "type": "zip",
  3007. "url": "https://api.github.com/repos/serbanghita/Mobile-Detect/zipball/6f8113f57a508494ca36acbcfa2dc2d923c7ed5b",
  3008. "reference": "6f8113f57a508494ca36acbcfa2dc2d923c7ed5b",
  3009. "shasum": ""
  3010. },
  3011. "require": {
  3012. "php": ">=5.0.0"
  3013. },
  3014. "require-dev": {
  3015. "phpunit/phpunit": "~4.8.35||~5.7"
  3016. },
  3017. "type": "library",
  3018. "autoload": {
  3019. "classmap": [
  3020. "Mobile_Detect.php"
  3021. ],
  3022. "psr-0": {
  3023. "Detection": "namespaced/"
  3024. }
  3025. },
  3026. "notification-url": "https://packagist.org/downloads/",
  3027. "license": [
  3028. "MIT"
  3029. ],
  3030. "authors": [
  3031. {
  3032. "name": "Serban Ghita",
  3033. "email": "serbanghita@gmail.com",
  3034. "homepage": "http://mobiledetect.net",
  3035. "role": "Developer"
  3036. }
  3037. ],
  3038. "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.",
  3039. "homepage": "https://github.com/serbanghita/Mobile-Detect",
  3040. "keywords": [
  3041. "detect mobile devices",
  3042. "mobile",
  3043. "mobile detect",
  3044. "mobile detector",
  3045. "php mobile detect"
  3046. ],
  3047. "support": {
  3048. "issues": "https://github.com/serbanghita/Mobile-Detect/issues",
  3049. "source": "https://github.com/serbanghita/Mobile-Detect/tree/2.8.34"
  3050. },
  3051. "time": "2019-09-18T18:44:20+00:00"
  3052. },
  3053. {
  3054. "name": "monolog/monolog",
  3055. "version": "2.2.0",
  3056. "source": {
  3057. "type": "git",
  3058. "url": "https://github.com/Seldaek/monolog.git",
  3059. "reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084"
  3060. },
  3061. "dist": {
  3062. "type": "zip",
  3063. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/1cb1cde8e8dd0f70cc0fe51354a59acad9302084",
  3064. "reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084",
  3065. "shasum": ""
  3066. },
  3067. "require": {
  3068. "php": ">=7.2",
  3069. "psr/log": "^1.0.1"
  3070. },
  3071. "provide": {
  3072. "psr/log-implementation": "1.0.0"
  3073. },
  3074. "require-dev": {
  3075. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  3076. "doctrine/couchdb": "~1.0@dev",
  3077. "elasticsearch/elasticsearch": "^7",
  3078. "graylog2/gelf-php": "^1.4.2",
  3079. "mongodb/mongodb": "^1.8",
  3080. "php-amqplib/php-amqplib": "~2.4",
  3081. "php-console/php-console": "^3.1.3",
  3082. "phpspec/prophecy": "^1.6.1",
  3083. "phpstan/phpstan": "^0.12.59",
  3084. "phpunit/phpunit": "^8.5",
  3085. "predis/predis": "^1.1",
  3086. "rollbar/rollbar": "^1.3",
  3087. "ruflin/elastica": ">=0.90 <7.0.1",
  3088. "swiftmailer/swiftmailer": "^5.3|^6.0"
  3089. },
  3090. "suggest": {
  3091. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  3092. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  3093. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  3094. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  3095. "ext-mbstring": "Allow to work properly with unicode symbols",
  3096. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  3097. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  3098. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  3099. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  3100. "php-console/php-console": "Allow sending log messages to Google Chrome",
  3101. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  3102. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  3103. },
  3104. "type": "library",
  3105. "extra": {
  3106. "branch-alias": {
  3107. "dev-main": "2.x-dev"
  3108. }
  3109. },
  3110. "autoload": {
  3111. "psr-4": {
  3112. "Monolog\\": "src/Monolog"
  3113. }
  3114. },
  3115. "notification-url": "https://packagist.org/downloads/",
  3116. "license": [
  3117. "MIT"
  3118. ],
  3119. "authors": [
  3120. {
  3121. "name": "Jordi Boggiano",
  3122. "email": "j.boggiano@seld.be",
  3123. "homepage": "https://seld.be"
  3124. }
  3125. ],
  3126. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  3127. "homepage": "https://github.com/Seldaek/monolog",
  3128. "keywords": [
  3129. "log",
  3130. "logging",
  3131. "psr-3"
  3132. ],
  3133. "support": {
  3134. "issues": "https://github.com/Seldaek/monolog/issues",
  3135. "source": "https://github.com/Seldaek/monolog/tree/2.2.0"
  3136. },
  3137. "funding": [
  3138. {
  3139. "url": "https://github.com/Seldaek",
  3140. "type": "github"
  3141. },
  3142. {
  3143. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  3144. "type": "tidelift"
  3145. }
  3146. ],
  3147. "time": "2020-12-14T13:15:25+00:00"
  3148. },
  3149. {
  3150. "name": "myclabs/php-enum",
  3151. "version": "1.7.7",
  3152. "source": {
  3153. "type": "git",
  3154. "url": "https://github.com/myclabs/php-enum.git",
  3155. "reference": "d178027d1e679832db9f38248fcc7200647dc2b7"
  3156. },
  3157. "dist": {
  3158. "type": "zip",
  3159. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/d178027d1e679832db9f38248fcc7200647dc2b7",
  3160. "reference": "d178027d1e679832db9f38248fcc7200647dc2b7",
  3161. "shasum": ""
  3162. },
  3163. "require": {
  3164. "ext-json": "*",
  3165. "php": ">=7.1"
  3166. },
  3167. "require-dev": {
  3168. "phpunit/phpunit": "^7",
  3169. "squizlabs/php_codesniffer": "1.*",
  3170. "vimeo/psalm": "^3.8"
  3171. },
  3172. "type": "library",
  3173. "autoload": {
  3174. "psr-4": {
  3175. "MyCLabs\\Enum\\": "src/"
  3176. }
  3177. },
  3178. "notification-url": "https://packagist.org/downloads/",
  3179. "license": [
  3180. "MIT"
  3181. ],
  3182. "authors": [
  3183. {
  3184. "name": "PHP Enum contributors",
  3185. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  3186. }
  3187. ],
  3188. "description": "PHP Enum implementation",
  3189. "homepage": "http://github.com/myclabs/php-enum",
  3190. "keywords": [
  3191. "enum"
  3192. ],
  3193. "support": {
  3194. "issues": "https://github.com/myclabs/php-enum/issues",
  3195. "source": "https://github.com/myclabs/php-enum/tree/1.7.7"
  3196. },
  3197. "funding": [
  3198. {
  3199. "url": "https://github.com/mnapoli",
  3200. "type": "github"
  3201. },
  3202. {
  3203. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  3204. "type": "tidelift"
  3205. }
  3206. ],
  3207. "time": "2020-11-14T18:14:52+00:00"
  3208. },
  3209. {
  3210. "name": "namshi/jose",
  3211. "version": "7.2.3",
  3212. "source": {
  3213. "type": "git",
  3214. "url": "https://github.com/namshi/jose.git",
  3215. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff"
  3216. },
  3217. "dist": {
  3218. "type": "zip",
  3219. "url": "https://api.github.com/repos/namshi/jose/zipball/89a24d7eb3040e285dd5925fcad992378b82bcff",
  3220. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff",
  3221. "shasum": ""
  3222. },
  3223. "require": {
  3224. "ext-date": "*",
  3225. "ext-hash": "*",
  3226. "ext-json": "*",
  3227. "ext-pcre": "*",
  3228. "ext-spl": "*",
  3229. "php": ">=5.5",
  3230. "symfony/polyfill-php56": "^1.0"
  3231. },
  3232. "require-dev": {
  3233. "phpseclib/phpseclib": "^2.0",
  3234. "phpunit/phpunit": "^4.5|^5.0",
  3235. "satooshi/php-coveralls": "^1.0"
  3236. },
  3237. "suggest": {
  3238. "ext-openssl": "Allows to use OpenSSL as crypto engine.",
  3239. "phpseclib/phpseclib": "Allows to use Phpseclib as crypto engine, use version ^2.0."
  3240. },
  3241. "type": "library",
  3242. "autoload": {
  3243. "psr-4": {
  3244. "Namshi\\JOSE\\": "src/Namshi/JOSE/"
  3245. }
  3246. },
  3247. "notification-url": "https://packagist.org/downloads/",
  3248. "license": [
  3249. "MIT"
  3250. ],
  3251. "authors": [
  3252. {
  3253. "name": "Alessandro Nadalin",
  3254. "email": "alessandro.nadalin@gmail.com"
  3255. },
  3256. {
  3257. "name": "Alessandro Cinelli (cirpo)",
  3258. "email": "alessandro.cinelli@gmail.com"
  3259. }
  3260. ],
  3261. "description": "JSON Object Signing and Encryption library for PHP.",
  3262. "keywords": [
  3263. "JSON Web Signature",
  3264. "JSON Web Token",
  3265. "JWS",
  3266. "json",
  3267. "jwt",
  3268. "token"
  3269. ],
  3270. "support": {
  3271. "issues": "https://github.com/namshi/jose/issues",
  3272. "source": "https://github.com/namshi/jose/tree/master"
  3273. },
  3274. "time": "2016-12-05T07:27:31+00:00"
  3275. },
  3276. {
  3277. "name": "nesbot/carbon",
  3278. "version": "2.43.0",
  3279. "source": {
  3280. "type": "git",
  3281. "url": "https://github.com/briannesbitt/Carbon.git",
  3282. "reference": "d32c57d8389113742f4a88725a170236470012e2"
  3283. },
  3284. "dist": {
  3285. "type": "zip",
  3286. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/d32c57d8389113742f4a88725a170236470012e2",
  3287. "reference": "d32c57d8389113742f4a88725a170236470012e2",
  3288. "shasum": ""
  3289. },
  3290. "require": {
  3291. "ext-json": "*",
  3292. "php": "^7.1.8 || ^8.0",
  3293. "symfony/polyfill-mbstring": "^1.0",
  3294. "symfony/translation": "^3.4 || ^4.0 || ^5.0"
  3295. },
  3296. "require-dev": {
  3297. "doctrine/orm": "^2.7",
  3298. "friendsofphp/php-cs-fixer": "^2.14 || ^3.0",
  3299. "kylekatarnls/multi-tester": "^2.0",
  3300. "phpmd/phpmd": "^2.9",
  3301. "phpstan/extension-installer": "^1.0",
  3302. "phpstan/phpstan": "^0.12.54",
  3303. "phpunit/phpunit": "^7.5 || ^8.0",
  3304. "squizlabs/php_codesniffer": "^3.4"
  3305. },
  3306. "bin": [
  3307. "bin/carbon"
  3308. ],
  3309. "type": "library",
  3310. "extra": {
  3311. "branch-alias": {
  3312. "dev-master": "2.x-dev",
  3313. "dev-3.x": "3.x-dev"
  3314. },
  3315. "laravel": {
  3316. "providers": [
  3317. "Carbon\\Laravel\\ServiceProvider"
  3318. ]
  3319. },
  3320. "phpstan": {
  3321. "includes": [
  3322. "extension.neon"
  3323. ]
  3324. }
  3325. },
  3326. "autoload": {
  3327. "psr-4": {
  3328. "Carbon\\": "src/Carbon/"
  3329. }
  3330. },
  3331. "notification-url": "https://packagist.org/downloads/",
  3332. "license": [
  3333. "MIT"
  3334. ],
  3335. "authors": [
  3336. {
  3337. "name": "Brian Nesbitt",
  3338. "email": "brian@nesbot.com",
  3339. "homepage": "http://nesbot.com"
  3340. },
  3341. {
  3342. "name": "kylekatarnls",
  3343. "homepage": "http://github.com/kylekatarnls"
  3344. }
  3345. ],
  3346. "description": "An API extension for DateTime that supports 281 different languages.",
  3347. "homepage": "http://carbon.nesbot.com",
  3348. "keywords": [
  3349. "date",
  3350. "datetime",
  3351. "time"
  3352. ],
  3353. "support": {
  3354. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3355. "source": "https://github.com/briannesbitt/Carbon"
  3356. },
  3357. "funding": [
  3358. {
  3359. "url": "https://opencollective.com/Carbon",
  3360. "type": "open_collective"
  3361. },
  3362. {
  3363. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  3364. "type": "tidelift"
  3365. }
  3366. ],
  3367. "time": "2020-12-17T20:55:32+00:00"
  3368. },
  3369. {
  3370. "name": "nikic/php-parser",
  3371. "version": "v4.10.4",
  3372. "source": {
  3373. "type": "git",
  3374. "url": "https://github.com/nikic/PHP-Parser.git",
  3375. "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e"
  3376. },
  3377. "dist": {
  3378. "type": "zip",
  3379. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/c6d052fc58cb876152f89f532b95a8d7907e7f0e",
  3380. "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e",
  3381. "shasum": ""
  3382. },
  3383. "require": {
  3384. "ext-tokenizer": "*",
  3385. "php": ">=7.0"
  3386. },
  3387. "require-dev": {
  3388. "ircmaxell/php-yacc": "^0.0.7",
  3389. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  3390. },
  3391. "bin": [
  3392. "bin/php-parse"
  3393. ],
  3394. "type": "library",
  3395. "extra": {
  3396. "branch-alias": {
  3397. "dev-master": "4.9-dev"
  3398. }
  3399. },
  3400. "autoload": {
  3401. "psr-4": {
  3402. "PhpParser\\": "lib/PhpParser"
  3403. }
  3404. },
  3405. "notification-url": "https://packagist.org/downloads/",
  3406. "license": [
  3407. "BSD-3-Clause"
  3408. ],
  3409. "authors": [
  3410. {
  3411. "name": "Nikita Popov"
  3412. }
  3413. ],
  3414. "description": "A PHP parser written in PHP",
  3415. "keywords": [
  3416. "parser",
  3417. "php"
  3418. ],
  3419. "support": {
  3420. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3421. "source": "https://github.com/nikic/PHP-Parser/tree/v4.10.4"
  3422. },
  3423. "time": "2020-12-20T10:01:03+00:00"
  3424. },
  3425. {
  3426. "name": "opis/closure",
  3427. "version": "3.6.1",
  3428. "source": {
  3429. "type": "git",
  3430. "url": "https://github.com/opis/closure.git",
  3431. "reference": "943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5"
  3432. },
  3433. "dist": {
  3434. "type": "zip",
  3435. "url": "https://api.github.com/repos/opis/closure/zipball/943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5",
  3436. "reference": "943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5",
  3437. "shasum": ""
  3438. },
  3439. "require": {
  3440. "php": "^5.4 || ^7.0 || ^8.0"
  3441. },
  3442. "require-dev": {
  3443. "jeremeamia/superclosure": "^2.0",
  3444. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  3445. },
  3446. "type": "library",
  3447. "extra": {
  3448. "branch-alias": {
  3449. "dev-master": "3.6.x-dev"
  3450. }
  3451. },
  3452. "autoload": {
  3453. "psr-4": {
  3454. "Opis\\Closure\\": "src/"
  3455. },
  3456. "files": [
  3457. "functions.php"
  3458. ]
  3459. },
  3460. "notification-url": "https://packagist.org/downloads/",
  3461. "license": [
  3462. "MIT"
  3463. ],
  3464. "authors": [
  3465. {
  3466. "name": "Marius Sarca",
  3467. "email": "marius.sarca@gmail.com"
  3468. },
  3469. {
  3470. "name": "Sorin Sarca",
  3471. "email": "sarca_sorin@hotmail.com"
  3472. }
  3473. ],
  3474. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  3475. "homepage": "https://opis.io/closure",
  3476. "keywords": [
  3477. "anonymous functions",
  3478. "closure",
  3479. "function",
  3480. "serializable",
  3481. "serialization",
  3482. "serialize"
  3483. ],
  3484. "support": {
  3485. "issues": "https://github.com/opis/closure/issues",
  3486. "source": "https://github.com/opis/closure/tree/3.6.1"
  3487. },
  3488. "time": "2020-11-07T02:01:34+00:00"
  3489. },
  3490. {
  3491. "name": "overtrue/laravel-lang",
  3492. "version": "4.2.1",
  3493. "source": {
  3494. "type": "git",
  3495. "url": "https://github.com/overtrue/laravel-lang.git",
  3496. "reference": "653189caa6eac682fa5d15482f271489721231c7"
  3497. },
  3498. "dist": {
  3499. "type": "zip",
  3500. "url": "https://api.github.com/repos/overtrue/laravel-lang/zipball/653189caa6eac682fa5d15482f271489721231c7",
  3501. "reference": "653189caa6eac682fa5d15482f271489721231c7",
  3502. "shasum": ""
  3503. },
  3504. "require": {
  3505. "ext-json": "*",
  3506. "laravel-lang/lang": "^7.0",
  3507. "symfony/process": "^5.0.0"
  3508. },
  3509. "require-dev": {
  3510. "laravel/framework": "~8.1"
  3511. },
  3512. "type": "library",
  3513. "extra": {
  3514. "laravel": {
  3515. "providers": [
  3516. "Overtrue\\LaravelLang\\TranslationServiceProvider"
  3517. ]
  3518. }
  3519. },
  3520. "autoload": {
  3521. "psr-4": {
  3522. "Overtrue\\LaravelLang\\": "src/"
  3523. }
  3524. },
  3525. "notification-url": "https://packagist.org/downloads/",
  3526. "license": [
  3527. "MIT"
  3528. ],
  3529. "authors": [
  3530. {
  3531. "name": "overtrue",
  3532. "email": "anzhengchao@gmail.com"
  3533. }
  3534. ],
  3535. "description": "List of 75 languages for Laravel 4, 5, 6 and 7",
  3536. "keywords": [
  3537. "i18n",
  3538. "languages",
  3539. "laravel",
  3540. "locale",
  3541. "overtrue"
  3542. ],
  3543. "support": {
  3544. "issues": "https://github.com/overtrue/laravel-lang/issues",
  3545. "source": "https://github.com/overtrue/laravel-lang/tree/4.2.1"
  3546. },
  3547. "funding": [
  3548. {
  3549. "url": "https://www.patreon.com/overtrue",
  3550. "type": "patreon"
  3551. }
  3552. ],
  3553. "time": "2020-11-12T01:44:31+00:00"
  3554. },
  3555. {
  3556. "name": "phpoffice/phpspreadsheet",
  3557. "version": "1.16.0",
  3558. "source": {
  3559. "type": "git",
  3560. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  3561. "reference": "76d4323b85129d0c368149c831a07a3e258b2b50"
  3562. },
  3563. "dist": {
  3564. "type": "zip",
  3565. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/76d4323b85129d0c368149c831a07a3e258b2b50",
  3566. "reference": "76d4323b85129d0c368149c831a07a3e258b2b50",
  3567. "shasum": ""
  3568. },
  3569. "require": {
  3570. "ext-ctype": "*",
  3571. "ext-dom": "*",
  3572. "ext-fileinfo": "*",
  3573. "ext-gd": "*",
  3574. "ext-iconv": "*",
  3575. "ext-libxml": "*",
  3576. "ext-mbstring": "*",
  3577. "ext-simplexml": "*",
  3578. "ext-xml": "*",
  3579. "ext-xmlreader": "*",
  3580. "ext-xmlwriter": "*",
  3581. "ext-zip": "*",
  3582. "ext-zlib": "*",
  3583. "ezyang/htmlpurifier": "^4.13",
  3584. "maennchen/zipstream-php": "^2.1",
  3585. "markbaker/complex": "^1.5||^2.0",
  3586. "markbaker/matrix": "^1.2||^2.0",
  3587. "php": "^7.2||^8.0",
  3588. "psr/http-client": "^1.0",
  3589. "psr/http-factory": "^1.0",
  3590. "psr/simple-cache": "^1.0"
  3591. },
  3592. "require-dev": {
  3593. "dompdf/dompdf": "^0.8.5",
  3594. "friendsofphp/php-cs-fixer": "^2.16",
  3595. "jpgraph/jpgraph": "^4.0",
  3596. "mpdf/mpdf": "^8.0",
  3597. "phpcompatibility/php-compatibility": "^9.3",
  3598. "phpunit/phpunit": "^8.5||^9.3",
  3599. "squizlabs/php_codesniffer": "^3.5",
  3600. "tecnickcom/tcpdf": "^6.3"
  3601. },
  3602. "suggest": {
  3603. "dompdf/dompdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)",
  3604. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  3605. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  3606. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)"
  3607. },
  3608. "type": "library",
  3609. "autoload": {
  3610. "psr-4": {
  3611. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  3612. }
  3613. },
  3614. "notification-url": "https://packagist.org/downloads/",
  3615. "license": [
  3616. "MIT"
  3617. ],
  3618. "authors": [
  3619. {
  3620. "name": "Maarten Balliauw",
  3621. "homepage": "https://blog.maartenballiauw.be"
  3622. },
  3623. {
  3624. "name": "Mark Baker",
  3625. "homepage": "https://markbakeruk.net"
  3626. },
  3627. {
  3628. "name": "Franck Lefevre",
  3629. "homepage": "https://rootslabs.net"
  3630. },
  3631. {
  3632. "name": "Erik Tilt"
  3633. },
  3634. {
  3635. "name": "Adrien Crivelli"
  3636. }
  3637. ],
  3638. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  3639. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  3640. "keywords": [
  3641. "OpenXML",
  3642. "excel",
  3643. "gnumeric",
  3644. "ods",
  3645. "php",
  3646. "spreadsheet",
  3647. "xls",
  3648. "xlsx"
  3649. ],
  3650. "support": {
  3651. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  3652. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.16.0"
  3653. },
  3654. "time": "2020-12-31T18:03:49+00:00"
  3655. },
  3656. {
  3657. "name": "phpoption/phpoption",
  3658. "version": "1.7.5",
  3659. "source": {
  3660. "type": "git",
  3661. "url": "https://github.com/schmittjoh/php-option.git",
  3662. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525"
  3663. },
  3664. "dist": {
  3665. "type": "zip",
  3666. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/994ecccd8f3283ecf5ac33254543eb0ac946d525",
  3667. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525",
  3668. "shasum": ""
  3669. },
  3670. "require": {
  3671. "php": "^5.5.9 || ^7.0 || ^8.0"
  3672. },
  3673. "require-dev": {
  3674. "bamarni/composer-bin-plugin": "^1.4.1",
  3675. "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0 || ^8.0 || ^9.0"
  3676. },
  3677. "type": "library",
  3678. "extra": {
  3679. "branch-alias": {
  3680. "dev-master": "1.7-dev"
  3681. }
  3682. },
  3683. "autoload": {
  3684. "psr-4": {
  3685. "PhpOption\\": "src/PhpOption/"
  3686. }
  3687. },
  3688. "notification-url": "https://packagist.org/downloads/",
  3689. "license": [
  3690. "Apache-2.0"
  3691. ],
  3692. "authors": [
  3693. {
  3694. "name": "Johannes M. Schmitt",
  3695. "email": "schmittjoh@gmail.com"
  3696. },
  3697. {
  3698. "name": "Graham Campbell",
  3699. "email": "graham@alt-three.com"
  3700. }
  3701. ],
  3702. "description": "Option Type for PHP",
  3703. "keywords": [
  3704. "language",
  3705. "option",
  3706. "php",
  3707. "type"
  3708. ],
  3709. "support": {
  3710. "issues": "https://github.com/schmittjoh/php-option/issues",
  3711. "source": "https://github.com/schmittjoh/php-option/tree/1.7.5"
  3712. },
  3713. "funding": [
  3714. {
  3715. "url": "https://github.com/GrahamCampbell",
  3716. "type": "github"
  3717. },
  3718. {
  3719. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  3720. "type": "tidelift"
  3721. }
  3722. ],
  3723. "time": "2020-07-20T17:29:33+00:00"
  3724. },
  3725. {
  3726. "name": "psr/container",
  3727. "version": "1.0.0",
  3728. "source": {
  3729. "type": "git",
  3730. "url": "https://github.com/php-fig/container.git",
  3731. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  3732. },
  3733. "dist": {
  3734. "type": "zip",
  3735. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  3736. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  3737. "shasum": ""
  3738. },
  3739. "require": {
  3740. "php": ">=5.3.0"
  3741. },
  3742. "type": "library",
  3743. "extra": {
  3744. "branch-alias": {
  3745. "dev-master": "1.0.x-dev"
  3746. }
  3747. },
  3748. "autoload": {
  3749. "psr-4": {
  3750. "Psr\\Container\\": "src/"
  3751. }
  3752. },
  3753. "notification-url": "https://packagist.org/downloads/",
  3754. "license": [
  3755. "MIT"
  3756. ],
  3757. "authors": [
  3758. {
  3759. "name": "PHP-FIG",
  3760. "homepage": "http://www.php-fig.org/"
  3761. }
  3762. ],
  3763. "description": "Common Container Interface (PHP FIG PSR-11)",
  3764. "homepage": "https://github.com/php-fig/container",
  3765. "keywords": [
  3766. "PSR-11",
  3767. "container",
  3768. "container-interface",
  3769. "container-interop",
  3770. "psr"
  3771. ],
  3772. "support": {
  3773. "issues": "https://github.com/php-fig/container/issues",
  3774. "source": "https://github.com/php-fig/container/tree/master"
  3775. },
  3776. "time": "2017-02-14T16:28:37+00:00"
  3777. },
  3778. {
  3779. "name": "psr/event-dispatcher",
  3780. "version": "1.0.0",
  3781. "source": {
  3782. "type": "git",
  3783. "url": "https://github.com/php-fig/event-dispatcher.git",
  3784. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  3785. },
  3786. "dist": {
  3787. "type": "zip",
  3788. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3789. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3790. "shasum": ""
  3791. },
  3792. "require": {
  3793. "php": ">=7.2.0"
  3794. },
  3795. "type": "library",
  3796. "extra": {
  3797. "branch-alias": {
  3798. "dev-master": "1.0.x-dev"
  3799. }
  3800. },
  3801. "autoload": {
  3802. "psr-4": {
  3803. "Psr\\EventDispatcher\\": "src/"
  3804. }
  3805. },
  3806. "notification-url": "https://packagist.org/downloads/",
  3807. "license": [
  3808. "MIT"
  3809. ],
  3810. "authors": [
  3811. {
  3812. "name": "PHP-FIG",
  3813. "homepage": "http://www.php-fig.org/"
  3814. }
  3815. ],
  3816. "description": "Standard interfaces for event handling.",
  3817. "keywords": [
  3818. "events",
  3819. "psr",
  3820. "psr-14"
  3821. ],
  3822. "support": {
  3823. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  3824. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  3825. },
  3826. "time": "2019-01-08T18:20:26+00:00"
  3827. },
  3828. {
  3829. "name": "psr/http-client",
  3830. "version": "1.0.1",
  3831. "source": {
  3832. "type": "git",
  3833. "url": "https://github.com/php-fig/http-client.git",
  3834. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  3835. },
  3836. "dist": {
  3837. "type": "zip",
  3838. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3839. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3840. "shasum": ""
  3841. },
  3842. "require": {
  3843. "php": "^7.0 || ^8.0",
  3844. "psr/http-message": "^1.0"
  3845. },
  3846. "type": "library",
  3847. "extra": {
  3848. "branch-alias": {
  3849. "dev-master": "1.0.x-dev"
  3850. }
  3851. },
  3852. "autoload": {
  3853. "psr-4": {
  3854. "Psr\\Http\\Client\\": "src/"
  3855. }
  3856. },
  3857. "notification-url": "https://packagist.org/downloads/",
  3858. "license": [
  3859. "MIT"
  3860. ],
  3861. "authors": [
  3862. {
  3863. "name": "PHP-FIG",
  3864. "homepage": "http://www.php-fig.org/"
  3865. }
  3866. ],
  3867. "description": "Common interface for HTTP clients",
  3868. "homepage": "https://github.com/php-fig/http-client",
  3869. "keywords": [
  3870. "http",
  3871. "http-client",
  3872. "psr",
  3873. "psr-18"
  3874. ],
  3875. "support": {
  3876. "source": "https://github.com/php-fig/http-client/tree/master"
  3877. },
  3878. "time": "2020-06-29T06:28:15+00:00"
  3879. },
  3880. {
  3881. "name": "psr/http-factory",
  3882. "version": "1.0.1",
  3883. "source": {
  3884. "type": "git",
  3885. "url": "https://github.com/php-fig/http-factory.git",
  3886. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  3887. },
  3888. "dist": {
  3889. "type": "zip",
  3890. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  3891. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  3892. "shasum": ""
  3893. },
  3894. "require": {
  3895. "php": ">=7.0.0",
  3896. "psr/http-message": "^1.0"
  3897. },
  3898. "type": "library",
  3899. "extra": {
  3900. "branch-alias": {
  3901. "dev-master": "1.0.x-dev"
  3902. }
  3903. },
  3904. "autoload": {
  3905. "psr-4": {
  3906. "Psr\\Http\\Message\\": "src/"
  3907. }
  3908. },
  3909. "notification-url": "https://packagist.org/downloads/",
  3910. "license": [
  3911. "MIT"
  3912. ],
  3913. "authors": [
  3914. {
  3915. "name": "PHP-FIG",
  3916. "homepage": "http://www.php-fig.org/"
  3917. }
  3918. ],
  3919. "description": "Common interfaces for PSR-7 HTTP message factories",
  3920. "keywords": [
  3921. "factory",
  3922. "http",
  3923. "message",
  3924. "psr",
  3925. "psr-17",
  3926. "psr-7",
  3927. "request",
  3928. "response"
  3929. ],
  3930. "support": {
  3931. "source": "https://github.com/php-fig/http-factory/tree/master"
  3932. },
  3933. "time": "2019-04-30T12:38:16+00:00"
  3934. },
  3935. {
  3936. "name": "psr/http-message",
  3937. "version": "1.0.1",
  3938. "source": {
  3939. "type": "git",
  3940. "url": "https://github.com/php-fig/http-message.git",
  3941. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  3942. },
  3943. "dist": {
  3944. "type": "zip",
  3945. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  3946. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  3947. "shasum": ""
  3948. },
  3949. "require": {
  3950. "php": ">=5.3.0"
  3951. },
  3952. "type": "library",
  3953. "extra": {
  3954. "branch-alias": {
  3955. "dev-master": "1.0.x-dev"
  3956. }
  3957. },
  3958. "autoload": {
  3959. "psr-4": {
  3960. "Psr\\Http\\Message\\": "src/"
  3961. }
  3962. },
  3963. "notification-url": "https://packagist.org/downloads/",
  3964. "license": [
  3965. "MIT"
  3966. ],
  3967. "authors": [
  3968. {
  3969. "name": "PHP-FIG",
  3970. "homepage": "http://www.php-fig.org/"
  3971. }
  3972. ],
  3973. "description": "Common interface for HTTP messages",
  3974. "homepage": "https://github.com/php-fig/http-message",
  3975. "keywords": [
  3976. "http",
  3977. "http-message",
  3978. "psr",
  3979. "psr-7",
  3980. "request",
  3981. "response"
  3982. ],
  3983. "support": {
  3984. "source": "https://github.com/php-fig/http-message/tree/master"
  3985. },
  3986. "time": "2016-08-06T14:39:51+00:00"
  3987. },
  3988. {
  3989. "name": "psr/log",
  3990. "version": "1.1.3",
  3991. "source": {
  3992. "type": "git",
  3993. "url": "https://github.com/php-fig/log.git",
  3994. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  3995. },
  3996. "dist": {
  3997. "type": "zip",
  3998. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  3999. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  4000. "shasum": ""
  4001. },
  4002. "require": {
  4003. "php": ">=5.3.0"
  4004. },
  4005. "type": "library",
  4006. "extra": {
  4007. "branch-alias": {
  4008. "dev-master": "1.1.x-dev"
  4009. }
  4010. },
  4011. "autoload": {
  4012. "psr-4": {
  4013. "Psr\\Log\\": "Psr/Log/"
  4014. }
  4015. },
  4016. "notification-url": "https://packagist.org/downloads/",
  4017. "license": [
  4018. "MIT"
  4019. ],
  4020. "authors": [
  4021. {
  4022. "name": "PHP-FIG",
  4023. "homepage": "http://www.php-fig.org/"
  4024. }
  4025. ],
  4026. "description": "Common interface for logging libraries",
  4027. "homepage": "https://github.com/php-fig/log",
  4028. "keywords": [
  4029. "log",
  4030. "psr",
  4031. "psr-3"
  4032. ],
  4033. "support": {
  4034. "source": "https://github.com/php-fig/log/tree/1.1.3"
  4035. },
  4036. "time": "2020-03-23T09:12:05+00:00"
  4037. },
  4038. {
  4039. "name": "psr/simple-cache",
  4040. "version": "1.0.1",
  4041. "source": {
  4042. "type": "git",
  4043. "url": "https://github.com/php-fig/simple-cache.git",
  4044. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  4045. },
  4046. "dist": {
  4047. "type": "zip",
  4048. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4049. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4050. "shasum": ""
  4051. },
  4052. "require": {
  4053. "php": ">=5.3.0"
  4054. },
  4055. "type": "library",
  4056. "extra": {
  4057. "branch-alias": {
  4058. "dev-master": "1.0.x-dev"
  4059. }
  4060. },
  4061. "autoload": {
  4062. "psr-4": {
  4063. "Psr\\SimpleCache\\": "src/"
  4064. }
  4065. },
  4066. "notification-url": "https://packagist.org/downloads/",
  4067. "license": [
  4068. "MIT"
  4069. ],
  4070. "authors": [
  4071. {
  4072. "name": "PHP-FIG",
  4073. "homepage": "http://www.php-fig.org/"
  4074. }
  4075. ],
  4076. "description": "Common interfaces for simple caching",
  4077. "keywords": [
  4078. "cache",
  4079. "caching",
  4080. "psr",
  4081. "psr-16",
  4082. "simple-cache"
  4083. ],
  4084. "support": {
  4085. "source": "https://github.com/php-fig/simple-cache/tree/master"
  4086. },
  4087. "time": "2017-10-23T01:57:42+00:00"
  4088. },
  4089. {
  4090. "name": "psy/psysh",
  4091. "version": "v0.10.6",
  4092. "source": {
  4093. "type": "git",
  4094. "url": "https://github.com/bobthecow/psysh.git",
  4095. "reference": "6f990c19f91729de8b31e639d6e204ea59f19cf3"
  4096. },
  4097. "dist": {
  4098. "type": "zip",
  4099. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/6f990c19f91729de8b31e639d6e204ea59f19cf3",
  4100. "reference": "6f990c19f91729de8b31e639d6e204ea59f19cf3",
  4101. "shasum": ""
  4102. },
  4103. "require": {
  4104. "dnoegel/php-xdg-base-dir": "0.1.*",
  4105. "ext-json": "*",
  4106. "ext-tokenizer": "*",
  4107. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  4108. "php": "^8.0 || ^7.0 || ^5.5.9",
  4109. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  4110. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  4111. },
  4112. "require-dev": {
  4113. "bamarni/composer-bin-plugin": "^1.2",
  4114. "hoa/console": "3.17.*"
  4115. },
  4116. "suggest": {
  4117. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4118. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4119. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  4120. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  4121. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  4122. },
  4123. "bin": [
  4124. "bin/psysh"
  4125. ],
  4126. "type": "library",
  4127. "extra": {
  4128. "branch-alias": {
  4129. "dev-main": "0.10.x-dev"
  4130. }
  4131. },
  4132. "autoload": {
  4133. "files": [
  4134. "src/functions.php"
  4135. ],
  4136. "psr-4": {
  4137. "Psy\\": "src/"
  4138. }
  4139. },
  4140. "notification-url": "https://packagist.org/downloads/",
  4141. "license": [
  4142. "MIT"
  4143. ],
  4144. "authors": [
  4145. {
  4146. "name": "Justin Hileman",
  4147. "email": "justin@justinhileman.info",
  4148. "homepage": "http://justinhileman.com"
  4149. }
  4150. ],
  4151. "description": "An interactive shell for modern PHP.",
  4152. "homepage": "http://psysh.org",
  4153. "keywords": [
  4154. "REPL",
  4155. "console",
  4156. "interactive",
  4157. "shell"
  4158. ],
  4159. "support": {
  4160. "issues": "https://github.com/bobthecow/psysh/issues",
  4161. "source": "https://github.com/bobthecow/psysh/tree/v0.10.6"
  4162. },
  4163. "time": "2021-01-18T15:53:43+00:00"
  4164. },
  4165. {
  4166. "name": "ralouphie/getallheaders",
  4167. "version": "3.0.3",
  4168. "source": {
  4169. "type": "git",
  4170. "url": "https://github.com/ralouphie/getallheaders.git",
  4171. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4172. },
  4173. "dist": {
  4174. "type": "zip",
  4175. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4176. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4177. "shasum": ""
  4178. },
  4179. "require": {
  4180. "php": ">=5.6"
  4181. },
  4182. "require-dev": {
  4183. "php-coveralls/php-coveralls": "^2.1",
  4184. "phpunit/phpunit": "^5 || ^6.5"
  4185. },
  4186. "type": "library",
  4187. "autoload": {
  4188. "files": [
  4189. "src/getallheaders.php"
  4190. ]
  4191. },
  4192. "notification-url": "https://packagist.org/downloads/",
  4193. "license": [
  4194. "MIT"
  4195. ],
  4196. "authors": [
  4197. {
  4198. "name": "Ralph Khattar",
  4199. "email": "ralph.khattar@gmail.com"
  4200. }
  4201. ],
  4202. "description": "A polyfill for getallheaders.",
  4203. "support": {
  4204. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4205. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4206. },
  4207. "time": "2019-03-08T08:55:37+00:00"
  4208. },
  4209. {
  4210. "name": "ramsey/collection",
  4211. "version": "1.1.1",
  4212. "source": {
  4213. "type": "git",
  4214. "url": "https://github.com/ramsey/collection.git",
  4215. "reference": "24d93aefb2cd786b7edd9f45b554aea20b28b9b1"
  4216. },
  4217. "dist": {
  4218. "type": "zip",
  4219. "url": "https://api.github.com/repos/ramsey/collection/zipball/24d93aefb2cd786b7edd9f45b554aea20b28b9b1",
  4220. "reference": "24d93aefb2cd786b7edd9f45b554aea20b28b9b1",
  4221. "shasum": ""
  4222. },
  4223. "require": {
  4224. "php": "^7.2 || ^8"
  4225. },
  4226. "require-dev": {
  4227. "captainhook/captainhook": "^5.3",
  4228. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4229. "ergebnis/composer-normalize": "^2.6",
  4230. "fzaninotto/faker": "^1.5",
  4231. "hamcrest/hamcrest-php": "^2",
  4232. "jangregor/phpstan-prophecy": "^0.6",
  4233. "mockery/mockery": "^1.3",
  4234. "phpstan/extension-installer": "^1",
  4235. "phpstan/phpstan": "^0.12.32",
  4236. "phpstan/phpstan-mockery": "^0.12.5",
  4237. "phpstan/phpstan-phpunit": "^0.12.11",
  4238. "phpunit/phpunit": "^8.5",
  4239. "psy/psysh": "^0.10.4",
  4240. "slevomat/coding-standard": "^6.3",
  4241. "squizlabs/php_codesniffer": "^3.5",
  4242. "vimeo/psalm": "^3.12.2"
  4243. },
  4244. "type": "library",
  4245. "autoload": {
  4246. "psr-4": {
  4247. "Ramsey\\Collection\\": "src/"
  4248. }
  4249. },
  4250. "notification-url": "https://packagist.org/downloads/",
  4251. "license": [
  4252. "MIT"
  4253. ],
  4254. "authors": [
  4255. {
  4256. "name": "Ben Ramsey",
  4257. "email": "ben@benramsey.com",
  4258. "homepage": "https://benramsey.com"
  4259. }
  4260. ],
  4261. "description": "A PHP 7.2+ library for representing and manipulating collections.",
  4262. "keywords": [
  4263. "array",
  4264. "collection",
  4265. "hash",
  4266. "map",
  4267. "queue",
  4268. "set"
  4269. ],
  4270. "support": {
  4271. "issues": "https://github.com/ramsey/collection/issues",
  4272. "source": "https://github.com/ramsey/collection/tree/1.1.1"
  4273. },
  4274. "funding": [
  4275. {
  4276. "url": "https://github.com/ramsey",
  4277. "type": "github"
  4278. }
  4279. ],
  4280. "time": "2020-09-10T20:58:17+00:00"
  4281. },
  4282. {
  4283. "name": "ramsey/uuid",
  4284. "version": "4.1.1",
  4285. "source": {
  4286. "type": "git",
  4287. "url": "https://github.com/ramsey/uuid.git",
  4288. "reference": "cd4032040a750077205918c86049aa0f43d22947"
  4289. },
  4290. "dist": {
  4291. "type": "zip",
  4292. "url": "https://api.github.com/repos/ramsey/uuid/zipball/cd4032040a750077205918c86049aa0f43d22947",
  4293. "reference": "cd4032040a750077205918c86049aa0f43d22947",
  4294. "shasum": ""
  4295. },
  4296. "require": {
  4297. "brick/math": "^0.8 || ^0.9",
  4298. "ext-json": "*",
  4299. "php": "^7.2 || ^8",
  4300. "ramsey/collection": "^1.0",
  4301. "symfony/polyfill-ctype": "^1.8"
  4302. },
  4303. "replace": {
  4304. "rhumsaa/uuid": "self.version"
  4305. },
  4306. "require-dev": {
  4307. "codeception/aspect-mock": "^3",
  4308. "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7.0",
  4309. "doctrine/annotations": "^1.8",
  4310. "goaop/framework": "^2",
  4311. "mockery/mockery": "^1.3",
  4312. "moontoast/math": "^1.1",
  4313. "paragonie/random-lib": "^2",
  4314. "php-mock/php-mock-mockery": "^1.3",
  4315. "php-mock/php-mock-phpunit": "^2.5",
  4316. "php-parallel-lint/php-parallel-lint": "^1.1",
  4317. "phpbench/phpbench": "^0.17.1",
  4318. "phpstan/extension-installer": "^1.0",
  4319. "phpstan/phpstan": "^0.12",
  4320. "phpstan/phpstan-mockery": "^0.12",
  4321. "phpstan/phpstan-phpunit": "^0.12",
  4322. "phpunit/phpunit": "^8.5",
  4323. "psy/psysh": "^0.10.0",
  4324. "slevomat/coding-standard": "^6.0",
  4325. "squizlabs/php_codesniffer": "^3.5",
  4326. "vimeo/psalm": "3.9.4"
  4327. },
  4328. "suggest": {
  4329. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4330. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  4331. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4332. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4333. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4334. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4335. },
  4336. "type": "library",
  4337. "extra": {
  4338. "branch-alias": {
  4339. "dev-master": "4.x-dev"
  4340. }
  4341. },
  4342. "autoload": {
  4343. "psr-4": {
  4344. "Ramsey\\Uuid\\": "src/"
  4345. },
  4346. "files": [
  4347. "src/functions.php"
  4348. ]
  4349. },
  4350. "notification-url": "https://packagist.org/downloads/",
  4351. "license": [
  4352. "MIT"
  4353. ],
  4354. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4355. "homepage": "https://github.com/ramsey/uuid",
  4356. "keywords": [
  4357. "guid",
  4358. "identifier",
  4359. "uuid"
  4360. ],
  4361. "support": {
  4362. "issues": "https://github.com/ramsey/uuid/issues",
  4363. "rss": "https://github.com/ramsey/uuid/releases.atom",
  4364. "source": "https://github.com/ramsey/uuid"
  4365. },
  4366. "funding": [
  4367. {
  4368. "url": "https://github.com/ramsey",
  4369. "type": "github"
  4370. }
  4371. ],
  4372. "time": "2020-08-18T17:17:46+00:00"
  4373. },
  4374. {
  4375. "name": "rap2hpoutre/laravel-log-viewer",
  4376. "version": "v1.7.0",
  4377. "source": {
  4378. "type": "git",
  4379. "url": "https://github.com/rap2hpoutre/laravel-log-viewer.git",
  4380. "reference": "27392d29234b6ff38a456454558f4bcc40cc837a"
  4381. },
  4382. "dist": {
  4383. "type": "zip",
  4384. "url": "https://api.github.com/repos/rap2hpoutre/laravel-log-viewer/zipball/27392d29234b6ff38a456454558f4bcc40cc837a",
  4385. "reference": "27392d29234b6ff38a456454558f4bcc40cc837a",
  4386. "shasum": ""
  4387. },
  4388. "require": {
  4389. "illuminate/support": "4.2.*|5.*|^6.0|^7.0|^8.0",
  4390. "php": ">=5.4.0"
  4391. },
  4392. "require-dev": {
  4393. "orchestra/testbench": "3.7.*",
  4394. "phpunit/phpunit": "^7"
  4395. },
  4396. "type": "laravel-package",
  4397. "extra": {
  4398. "laravel": {
  4399. "providers": [
  4400. "Rap2hpoutre\\LaravelLogViewer\\LaravelLogViewerServiceProvider"
  4401. ]
  4402. }
  4403. },
  4404. "autoload": {
  4405. "classmap": [
  4406. "src/controllers"
  4407. ],
  4408. "psr-0": {
  4409. "Rap2hpoutre\\LaravelLogViewer\\": "src/"
  4410. }
  4411. },
  4412. "notification-url": "https://packagist.org/downloads/",
  4413. "license": [
  4414. "MIT"
  4415. ],
  4416. "authors": [
  4417. {
  4418. "name": "rap2hpoutre",
  4419. "email": "raphaelht@gmail.com"
  4420. }
  4421. ],
  4422. "description": "A Laravel log reader",
  4423. "keywords": [
  4424. "laravel",
  4425. "log",
  4426. "log-reader",
  4427. "log-viewer",
  4428. "logging",
  4429. "lumen"
  4430. ],
  4431. "support": {
  4432. "issues": "https://github.com/rap2hpoutre/laravel-log-viewer/issues",
  4433. "source": "https://github.com/rap2hpoutre/laravel-log-viewer/tree/master"
  4434. },
  4435. "time": "2020-09-08T12:21:27+00:00"
  4436. },
  4437. {
  4438. "name": "riverslei/payment",
  4439. "version": "v5.1.0",
  4440. "source": {
  4441. "type": "git",
  4442. "url": "https://github.com/helei112g/payment.git",
  4443. "reference": "77f671b68b0285a6af77dc7c5afa36eabcae35aa"
  4444. },
  4445. "dist": {
  4446. "type": "zip",
  4447. "url": "https://api.github.com/repos/helei112g/payment/zipball/77f671b68b0285a6af77dc7c5afa36eabcae35aa",
  4448. "reference": "77f671b68b0285a6af77dc7c5afa36eabcae35aa",
  4449. "shasum": ""
  4450. },
  4451. "require": {
  4452. "ext-bcmath": "*",
  4453. "ext-json": "*",
  4454. "ext-mbstring": "*",
  4455. "ext-openssl": "*",
  4456. "ext-simplexml": "*",
  4457. "ext-xml": "*",
  4458. "guzzlehttp/guzzle": "~6.0",
  4459. "php": ">=7.0"
  4460. },
  4461. "require-dev": {
  4462. "codeception/codeception": "*"
  4463. },
  4464. "type": "library",
  4465. "autoload": {
  4466. "psr-4": {
  4467. "Payment\\": "src/"
  4468. }
  4469. },
  4470. "notification-url": "https://packagist.org/downloads/",
  4471. "license": [
  4472. "MIT"
  4473. ],
  4474. "authors": [
  4475. {
  4476. "name": "Leo",
  4477. "email": "dayugog@gmail.com",
  4478. "homepage": "https://dayutalk.cn"
  4479. }
  4480. ],
  4481. "description": "支付宝支付、微信支付、招商一网通支付php SDK。方便快速接入,最完整的开源支付 php sdk",
  4482. "homepage": "http://helei112g.github.io/payment",
  4483. "keywords": [
  4484. "alipay",
  4485. "weixin",
  4486. "一网通",
  4487. "微信支付",
  4488. "招商一网通",
  4489. "支付宝支付",
  4490. "集成支付接口SDK"
  4491. ],
  4492. "support": {
  4493. "issues": "https://github.com/helei112g/payment/issues",
  4494. "source": "https://github.com/helei112g/payment/tree/v5.x"
  4495. },
  4496. "time": "2020-05-04T03:07:17+00:00"
  4497. },
  4498. {
  4499. "name": "spatie/laravel-permission",
  4500. "version": "3.18.0",
  4501. "source": {
  4502. "type": "git",
  4503. "url": "https://github.com/spatie/laravel-permission.git",
  4504. "reference": "1c51a5fa12131565fe3860705163e53d7a26258a"
  4505. },
  4506. "dist": {
  4507. "type": "zip",
  4508. "url": "https://api.github.com/repos/spatie/laravel-permission/zipball/1c51a5fa12131565fe3860705163e53d7a26258a",
  4509. "reference": "1c51a5fa12131565fe3860705163e53d7a26258a",
  4510. "shasum": ""
  4511. },
  4512. "require": {
  4513. "illuminate/auth": "^5.8|^6.0|^7.0|^8.0",
  4514. "illuminate/container": "^5.8|^6.0|^7.0|^8.0",
  4515. "illuminate/contracts": "^5.8|^6.0|^7.0|^8.0",
  4516. "illuminate/database": "^5.8|^6.0|^7.0|^8.0",
  4517. "php": "^7.2.5|^8.0"
  4518. },
  4519. "require-dev": {
  4520. "orchestra/testbench": "^3.8|^4.0|^5.0|^6.0",
  4521. "phpunit/phpunit": "^8.0|^9.0",
  4522. "predis/predis": "^1.1"
  4523. },
  4524. "type": "library",
  4525. "extra": {
  4526. "laravel": {
  4527. "providers": [
  4528. "Spatie\\Permission\\PermissionServiceProvider"
  4529. ]
  4530. }
  4531. },
  4532. "autoload": {
  4533. "psr-4": {
  4534. "Spatie\\Permission\\": "src"
  4535. },
  4536. "files": [
  4537. "src/helpers.php"
  4538. ]
  4539. },
  4540. "notification-url": "https://packagist.org/downloads/",
  4541. "license": [
  4542. "MIT"
  4543. ],
  4544. "authors": [
  4545. {
  4546. "name": "Freek Van der Herten",
  4547. "email": "freek@spatie.be",
  4548. "homepage": "https://spatie.be",
  4549. "role": "Developer"
  4550. }
  4551. ],
  4552. "description": "Permission handling for Laravel 5.8 and up",
  4553. "homepage": "https://github.com/spatie/laravel-permission",
  4554. "keywords": [
  4555. "acl",
  4556. "laravel",
  4557. "permission",
  4558. "permissions",
  4559. "rbac",
  4560. "roles",
  4561. "security",
  4562. "spatie"
  4563. ],
  4564. "support": {
  4565. "issues": "https://github.com/spatie/laravel-permission/issues",
  4566. "source": "https://github.com/spatie/laravel-permission/tree/3.18.0"
  4567. },
  4568. "funding": [
  4569. {
  4570. "url": "https://github.com/spatie",
  4571. "type": "github"
  4572. }
  4573. ],
  4574. "time": "2020-11-09T14:08:36+00:00"
  4575. },
  4576. {
  4577. "name": "srmklive/paypal",
  4578. "version": "1.8.0",
  4579. "source": {
  4580. "type": "git",
  4581. "url": "https://github.com/srmklive/laravel-paypal.git",
  4582. "reference": "0c2ae237577f62396d474674cb40f82825a41ffb"
  4583. },
  4584. "dist": {
  4585. "type": "zip",
  4586. "url": "https://api.github.com/repos/srmklive/laravel-paypal/zipball/0c2ae237577f62396d474674cb40f82825a41ffb",
  4587. "reference": "0c2ae237577f62396d474674cb40f82825a41ffb",
  4588. "shasum": ""
  4589. },
  4590. "require": {
  4591. "guzzlehttp/guzzle": "~6.0|~7.0",
  4592. "illuminate/support": "~5.1|~5.2|~5.3|~5.4|~5.5|~5.6|~5.7|~5.8|~6.0|~7.0|~8.0",
  4593. "nesbot/carbon": "~1.0|~2.0"
  4594. },
  4595. "type": "library",
  4596. "extra": {
  4597. "laravel": {
  4598. "providers": [
  4599. "Srmklive\\PayPal\\Providers\\PayPalServiceProvider"
  4600. ],
  4601. "aliases": {
  4602. "PayPal": "Srmklive\\PayPal\\Facades\\PayPal"
  4603. }
  4604. }
  4605. },
  4606. "autoload": {
  4607. "psr-4": {
  4608. "Srmklive\\PayPal\\": "src/"
  4609. }
  4610. },
  4611. "notification-url": "https://packagist.org/downloads/",
  4612. "license": [
  4613. "MIT"
  4614. ],
  4615. "authors": [
  4616. {
  4617. "name": "Raza Mehdi",
  4618. "email": "srmk@outlook.com"
  4619. }
  4620. ],
  4621. "description": "Laravel plugin For Processing Payments Through Paypal Express Checkout. Can Be Used Independently With Other Applications.",
  4622. "keywords": [
  4623. "http",
  4624. "laravel paypal",
  4625. "paypal",
  4626. "rest",
  4627. "web service"
  4628. ],
  4629. "support": {
  4630. "issues": "https://github.com/srmklive/laravel-paypal/issues",
  4631. "source": "https://github.com/srmklive/laravel-paypal/tree/v1.0"
  4632. },
  4633. "time": "2020-09-03T07:50:08+00:00"
  4634. },
  4635. {
  4636. "name": "stripe/stripe-php",
  4637. "version": "v7.68.0",
  4638. "source": {
  4639. "type": "git",
  4640. "url": "https://github.com/stripe/stripe-php.git",
  4641. "reference": "36b10e1f0e9d973f00f802bbd098bce85d0438e4"
  4642. },
  4643. "dist": {
  4644. "type": "zip",
  4645. "url": "https://api.github.com/repos/stripe/stripe-php/zipball/36b10e1f0e9d973f00f802bbd098bce85d0438e4",
  4646. "reference": "36b10e1f0e9d973f00f802bbd098bce85d0438e4",
  4647. "shasum": ""
  4648. },
  4649. "require": {
  4650. "ext-curl": "*",
  4651. "ext-json": "*",
  4652. "ext-mbstring": "*",
  4653. "php": ">=5.6.0"
  4654. },
  4655. "require-dev": {
  4656. "friendsofphp/php-cs-fixer": "2.17.1",
  4657. "php-coveralls/php-coveralls": "^2.1",
  4658. "phpunit/phpunit": "^5.7",
  4659. "squizlabs/php_codesniffer": "^3.3",
  4660. "symfony/process": "~3.4"
  4661. },
  4662. "type": "library",
  4663. "extra": {
  4664. "branch-alias": {
  4665. "dev-master": "2.0-dev"
  4666. }
  4667. },
  4668. "autoload": {
  4669. "psr-4": {
  4670. "Stripe\\": "lib/"
  4671. }
  4672. },
  4673. "notification-url": "https://packagist.org/downloads/",
  4674. "license": [
  4675. "MIT"
  4676. ],
  4677. "authors": [
  4678. {
  4679. "name": "Stripe and contributors",
  4680. "homepage": "https://github.com/stripe/stripe-php/contributors"
  4681. }
  4682. ],
  4683. "description": "Stripe PHP Library",
  4684. "homepage": "https://stripe.com/",
  4685. "keywords": [
  4686. "api",
  4687. "payment processing",
  4688. "stripe"
  4689. ],
  4690. "support": {
  4691. "issues": "https://github.com/stripe/stripe-php/issues",
  4692. "source": "https://github.com/stripe/stripe-php/tree/v7.68.0"
  4693. },
  4694. "time": "2021-01-15T00:38:28+00:00"
  4695. },
  4696. {
  4697. "name": "swiftmailer/swiftmailer",
  4698. "version": "v6.2.5",
  4699. "source": {
  4700. "type": "git",
  4701. "url": "https://github.com/swiftmailer/swiftmailer.git",
  4702. "reference": "698a6a9f54d7eb321274de3ad19863802c879fb7"
  4703. },
  4704. "dist": {
  4705. "type": "zip",
  4706. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/698a6a9f54d7eb321274de3ad19863802c879fb7",
  4707. "reference": "698a6a9f54d7eb321274de3ad19863802c879fb7",
  4708. "shasum": ""
  4709. },
  4710. "require": {
  4711. "egulias/email-validator": "^2.0",
  4712. "php": ">=7.0.0",
  4713. "symfony/polyfill-iconv": "^1.0",
  4714. "symfony/polyfill-intl-idn": "^1.10",
  4715. "symfony/polyfill-mbstring": "^1.0"
  4716. },
  4717. "require-dev": {
  4718. "mockery/mockery": "^1.0",
  4719. "symfony/phpunit-bridge": "^4.4|^5.0"
  4720. },
  4721. "suggest": {
  4722. "ext-intl": "Needed to support internationalized email addresses"
  4723. },
  4724. "type": "library",
  4725. "extra": {
  4726. "branch-alias": {
  4727. "dev-master": "6.2-dev"
  4728. }
  4729. },
  4730. "autoload": {
  4731. "files": [
  4732. "lib/swift_required.php"
  4733. ]
  4734. },
  4735. "notification-url": "https://packagist.org/downloads/",
  4736. "license": [
  4737. "MIT"
  4738. ],
  4739. "authors": [
  4740. {
  4741. "name": "Chris Corbyn"
  4742. },
  4743. {
  4744. "name": "Fabien Potencier",
  4745. "email": "fabien@symfony.com"
  4746. }
  4747. ],
  4748. "description": "Swiftmailer, free feature-rich PHP mailer",
  4749. "homepage": "https://swiftmailer.symfony.com",
  4750. "keywords": [
  4751. "email",
  4752. "mail",
  4753. "mailer"
  4754. ],
  4755. "support": {
  4756. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  4757. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.2.5"
  4758. },
  4759. "funding": [
  4760. {
  4761. "url": "https://github.com/fabpot",
  4762. "type": "github"
  4763. },
  4764. {
  4765. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  4766. "type": "tidelift"
  4767. }
  4768. ],
  4769. "time": "2021-01-12T09:35:59+00:00"
  4770. },
  4771. {
  4772. "name": "symfony/console",
  4773. "version": "v5.2.1",
  4774. "source": {
  4775. "type": "git",
  4776. "url": "https://github.com/symfony/console.git",
  4777. "reference": "47c02526c532fb381374dab26df05e7313978976"
  4778. },
  4779. "dist": {
  4780. "type": "zip",
  4781. "url": "https://api.github.com/repos/symfony/console/zipball/47c02526c532fb381374dab26df05e7313978976",
  4782. "reference": "47c02526c532fb381374dab26df05e7313978976",
  4783. "shasum": ""
  4784. },
  4785. "require": {
  4786. "php": ">=7.2.5",
  4787. "symfony/polyfill-mbstring": "~1.0",
  4788. "symfony/polyfill-php73": "^1.8",
  4789. "symfony/polyfill-php80": "^1.15",
  4790. "symfony/service-contracts": "^1.1|^2",
  4791. "symfony/string": "^5.1"
  4792. },
  4793. "conflict": {
  4794. "symfony/dependency-injection": "<4.4",
  4795. "symfony/dotenv": "<5.1",
  4796. "symfony/event-dispatcher": "<4.4",
  4797. "symfony/lock": "<4.4",
  4798. "symfony/process": "<4.4"
  4799. },
  4800. "provide": {
  4801. "psr/log-implementation": "1.0"
  4802. },
  4803. "require-dev": {
  4804. "psr/log": "~1.0",
  4805. "symfony/config": "^4.4|^5.0",
  4806. "symfony/dependency-injection": "^4.4|^5.0",
  4807. "symfony/event-dispatcher": "^4.4|^5.0",
  4808. "symfony/lock": "^4.4|^5.0",
  4809. "symfony/process": "^4.4|^5.0",
  4810. "symfony/var-dumper": "^4.4|^5.0"
  4811. },
  4812. "suggest": {
  4813. "psr/log": "For using the console logger",
  4814. "symfony/event-dispatcher": "",
  4815. "symfony/lock": "",
  4816. "symfony/process": ""
  4817. },
  4818. "type": "library",
  4819. "autoload": {
  4820. "psr-4": {
  4821. "Symfony\\Component\\Console\\": ""
  4822. },
  4823. "exclude-from-classmap": [
  4824. "/Tests/"
  4825. ]
  4826. },
  4827. "notification-url": "https://packagist.org/downloads/",
  4828. "license": [
  4829. "MIT"
  4830. ],
  4831. "authors": [
  4832. {
  4833. "name": "Fabien Potencier",
  4834. "email": "fabien@symfony.com"
  4835. },
  4836. {
  4837. "name": "Symfony Community",
  4838. "homepage": "https://symfony.com/contributors"
  4839. }
  4840. ],
  4841. "description": "Symfony Console Component",
  4842. "homepage": "https://symfony.com",
  4843. "keywords": [
  4844. "cli",
  4845. "command line",
  4846. "console",
  4847. "terminal"
  4848. ],
  4849. "support": {
  4850. "source": "https://github.com/symfony/console/tree/v5.2.1"
  4851. },
  4852. "funding": [
  4853. {
  4854. "url": "https://symfony.com/sponsor",
  4855. "type": "custom"
  4856. },
  4857. {
  4858. "url": "https://github.com/fabpot",
  4859. "type": "github"
  4860. },
  4861. {
  4862. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4863. "type": "tidelift"
  4864. }
  4865. ],
  4866. "time": "2020-12-18T08:03:05+00:00"
  4867. },
  4868. {
  4869. "name": "symfony/css-selector",
  4870. "version": "v5.2.1",
  4871. "source": {
  4872. "type": "git",
  4873. "url": "https://github.com/symfony/css-selector.git",
  4874. "reference": "f789e7ead4c79e04ca9a6d6162fc629c89bd8054"
  4875. },
  4876. "dist": {
  4877. "type": "zip",
  4878. "url": "https://api.github.com/repos/symfony/css-selector/zipball/f789e7ead4c79e04ca9a6d6162fc629c89bd8054",
  4879. "reference": "f789e7ead4c79e04ca9a6d6162fc629c89bd8054",
  4880. "shasum": ""
  4881. },
  4882. "require": {
  4883. "php": ">=7.2.5"
  4884. },
  4885. "type": "library",
  4886. "autoload": {
  4887. "psr-4": {
  4888. "Symfony\\Component\\CssSelector\\": ""
  4889. },
  4890. "exclude-from-classmap": [
  4891. "/Tests/"
  4892. ]
  4893. },
  4894. "notification-url": "https://packagist.org/downloads/",
  4895. "license": [
  4896. "MIT"
  4897. ],
  4898. "authors": [
  4899. {
  4900. "name": "Fabien Potencier",
  4901. "email": "fabien@symfony.com"
  4902. },
  4903. {
  4904. "name": "Jean-François Simon",
  4905. "email": "jeanfrancois.simon@sensiolabs.com"
  4906. },
  4907. {
  4908. "name": "Symfony Community",
  4909. "homepage": "https://symfony.com/contributors"
  4910. }
  4911. ],
  4912. "description": "Symfony CssSelector Component",
  4913. "homepage": "https://symfony.com",
  4914. "support": {
  4915. "source": "https://github.com/symfony/css-selector/tree/v5.2.1"
  4916. },
  4917. "funding": [
  4918. {
  4919. "url": "https://symfony.com/sponsor",
  4920. "type": "custom"
  4921. },
  4922. {
  4923. "url": "https://github.com/fabpot",
  4924. "type": "github"
  4925. },
  4926. {
  4927. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4928. "type": "tidelift"
  4929. }
  4930. ],
  4931. "time": "2020-12-08T17:02:38+00:00"
  4932. },
  4933. {
  4934. "name": "symfony/deprecation-contracts",
  4935. "version": "v2.2.0",
  4936. "source": {
  4937. "type": "git",
  4938. "url": "https://github.com/symfony/deprecation-contracts.git",
  4939. "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665"
  4940. },
  4941. "dist": {
  4942. "type": "zip",
  4943. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5fa56b4074d1ae755beb55617ddafe6f5d78f665",
  4944. "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665",
  4945. "shasum": ""
  4946. },
  4947. "require": {
  4948. "php": ">=7.1"
  4949. },
  4950. "type": "library",
  4951. "extra": {
  4952. "branch-alias": {
  4953. "dev-master": "2.2-dev"
  4954. },
  4955. "thanks": {
  4956. "name": "symfony/contracts",
  4957. "url": "https://github.com/symfony/contracts"
  4958. }
  4959. },
  4960. "autoload": {
  4961. "files": [
  4962. "function.php"
  4963. ]
  4964. },
  4965. "notification-url": "https://packagist.org/downloads/",
  4966. "license": [
  4967. "MIT"
  4968. ],
  4969. "authors": [
  4970. {
  4971. "name": "Nicolas Grekas",
  4972. "email": "p@tchwork.com"
  4973. },
  4974. {
  4975. "name": "Symfony Community",
  4976. "homepage": "https://symfony.com/contributors"
  4977. }
  4978. ],
  4979. "description": "A generic function and convention to trigger deprecation notices",
  4980. "homepage": "https://symfony.com",
  4981. "support": {
  4982. "source": "https://github.com/symfony/deprecation-contracts/tree/master"
  4983. },
  4984. "funding": [
  4985. {
  4986. "url": "https://symfony.com/sponsor",
  4987. "type": "custom"
  4988. },
  4989. {
  4990. "url": "https://github.com/fabpot",
  4991. "type": "github"
  4992. },
  4993. {
  4994. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4995. "type": "tidelift"
  4996. }
  4997. ],
  4998. "time": "2020-09-07T11:33:47+00:00"
  4999. },
  5000. {
  5001. "name": "symfony/error-handler",
  5002. "version": "v5.2.1",
  5003. "source": {
  5004. "type": "git",
  5005. "url": "https://github.com/symfony/error-handler.git",
  5006. "reference": "59b190ce16ddf32771a22087b60f6dafd3407147"
  5007. },
  5008. "dist": {
  5009. "type": "zip",
  5010. "url": "https://api.github.com/repos/symfony/error-handler/zipball/59b190ce16ddf32771a22087b60f6dafd3407147",
  5011. "reference": "59b190ce16ddf32771a22087b60f6dafd3407147",
  5012. "shasum": ""
  5013. },
  5014. "require": {
  5015. "php": ">=7.2.5",
  5016. "psr/log": "^1.0",
  5017. "symfony/polyfill-php80": "^1.15",
  5018. "symfony/var-dumper": "^4.4|^5.0"
  5019. },
  5020. "require-dev": {
  5021. "symfony/deprecation-contracts": "^2.1",
  5022. "symfony/http-kernel": "^4.4|^5.0",
  5023. "symfony/serializer": "^4.4|^5.0"
  5024. },
  5025. "type": "library",
  5026. "autoload": {
  5027. "psr-4": {
  5028. "Symfony\\Component\\ErrorHandler\\": ""
  5029. },
  5030. "exclude-from-classmap": [
  5031. "/Tests/"
  5032. ]
  5033. },
  5034. "notification-url": "https://packagist.org/downloads/",
  5035. "license": [
  5036. "MIT"
  5037. ],
  5038. "authors": [
  5039. {
  5040. "name": "Fabien Potencier",
  5041. "email": "fabien@symfony.com"
  5042. },
  5043. {
  5044. "name": "Symfony Community",
  5045. "homepage": "https://symfony.com/contributors"
  5046. }
  5047. ],
  5048. "description": "Symfony ErrorHandler Component",
  5049. "homepage": "https://symfony.com",
  5050. "support": {
  5051. "source": "https://github.com/symfony/error-handler/tree/v5.2.1"
  5052. },
  5053. "funding": [
  5054. {
  5055. "url": "https://symfony.com/sponsor",
  5056. "type": "custom"
  5057. },
  5058. {
  5059. "url": "https://github.com/fabpot",
  5060. "type": "github"
  5061. },
  5062. {
  5063. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5064. "type": "tidelift"
  5065. }
  5066. ],
  5067. "time": "2020-12-09T18:54:12+00:00"
  5068. },
  5069. {
  5070. "name": "symfony/event-dispatcher",
  5071. "version": "v5.2.1",
  5072. "source": {
  5073. "type": "git",
  5074. "url": "https://github.com/symfony/event-dispatcher.git",
  5075. "reference": "1c93f7a1dff592c252574c79a8635a8a80856042"
  5076. },
  5077. "dist": {
  5078. "type": "zip",
  5079. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/1c93f7a1dff592c252574c79a8635a8a80856042",
  5080. "reference": "1c93f7a1dff592c252574c79a8635a8a80856042",
  5081. "shasum": ""
  5082. },
  5083. "require": {
  5084. "php": ">=7.2.5",
  5085. "symfony/deprecation-contracts": "^2.1",
  5086. "symfony/event-dispatcher-contracts": "^2",
  5087. "symfony/polyfill-php80": "^1.15"
  5088. },
  5089. "conflict": {
  5090. "symfony/dependency-injection": "<4.4"
  5091. },
  5092. "provide": {
  5093. "psr/event-dispatcher-implementation": "1.0",
  5094. "symfony/event-dispatcher-implementation": "2.0"
  5095. },
  5096. "require-dev": {
  5097. "psr/log": "~1.0",
  5098. "symfony/config": "^4.4|^5.0",
  5099. "symfony/dependency-injection": "^4.4|^5.0",
  5100. "symfony/error-handler": "^4.4|^5.0",
  5101. "symfony/expression-language": "^4.4|^5.0",
  5102. "symfony/http-foundation": "^4.4|^5.0",
  5103. "symfony/service-contracts": "^1.1|^2",
  5104. "symfony/stopwatch": "^4.4|^5.0"
  5105. },
  5106. "suggest": {
  5107. "symfony/dependency-injection": "",
  5108. "symfony/http-kernel": ""
  5109. },
  5110. "type": "library",
  5111. "autoload": {
  5112. "psr-4": {
  5113. "Symfony\\Component\\EventDispatcher\\": ""
  5114. },
  5115. "exclude-from-classmap": [
  5116. "/Tests/"
  5117. ]
  5118. },
  5119. "notification-url": "https://packagist.org/downloads/",
  5120. "license": [
  5121. "MIT"
  5122. ],
  5123. "authors": [
  5124. {
  5125. "name": "Fabien Potencier",
  5126. "email": "fabien@symfony.com"
  5127. },
  5128. {
  5129. "name": "Symfony Community",
  5130. "homepage": "https://symfony.com/contributors"
  5131. }
  5132. ],
  5133. "description": "Symfony EventDispatcher Component",
  5134. "homepage": "https://symfony.com",
  5135. "support": {
  5136. "source": "https://github.com/symfony/event-dispatcher/tree/v5.2.1"
  5137. },
  5138. "funding": [
  5139. {
  5140. "url": "https://symfony.com/sponsor",
  5141. "type": "custom"
  5142. },
  5143. {
  5144. "url": "https://github.com/fabpot",
  5145. "type": "github"
  5146. },
  5147. {
  5148. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5149. "type": "tidelift"
  5150. }
  5151. ],
  5152. "time": "2020-12-18T08:03:05+00:00"
  5153. },
  5154. {
  5155. "name": "symfony/event-dispatcher-contracts",
  5156. "version": "v2.2.0",
  5157. "source": {
  5158. "type": "git",
  5159. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5160. "reference": "0ba7d54483095a198fa51781bc608d17e84dffa2"
  5161. },
  5162. "dist": {
  5163. "type": "zip",
  5164. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/0ba7d54483095a198fa51781bc608d17e84dffa2",
  5165. "reference": "0ba7d54483095a198fa51781bc608d17e84dffa2",
  5166. "shasum": ""
  5167. },
  5168. "require": {
  5169. "php": ">=7.2.5",
  5170. "psr/event-dispatcher": "^1"
  5171. },
  5172. "suggest": {
  5173. "symfony/event-dispatcher-implementation": ""
  5174. },
  5175. "type": "library",
  5176. "extra": {
  5177. "branch-alias": {
  5178. "dev-master": "2.2-dev"
  5179. },
  5180. "thanks": {
  5181. "name": "symfony/contracts",
  5182. "url": "https://github.com/symfony/contracts"
  5183. }
  5184. },
  5185. "autoload": {
  5186. "psr-4": {
  5187. "Symfony\\Contracts\\EventDispatcher\\": ""
  5188. }
  5189. },
  5190. "notification-url": "https://packagist.org/downloads/",
  5191. "license": [
  5192. "MIT"
  5193. ],
  5194. "authors": [
  5195. {
  5196. "name": "Nicolas Grekas",
  5197. "email": "p@tchwork.com"
  5198. },
  5199. {
  5200. "name": "Symfony Community",
  5201. "homepage": "https://symfony.com/contributors"
  5202. }
  5203. ],
  5204. "description": "Generic abstractions related to dispatching event",
  5205. "homepage": "https://symfony.com",
  5206. "keywords": [
  5207. "abstractions",
  5208. "contracts",
  5209. "decoupling",
  5210. "interfaces",
  5211. "interoperability",
  5212. "standards"
  5213. ],
  5214. "support": {
  5215. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.2.0"
  5216. },
  5217. "funding": [
  5218. {
  5219. "url": "https://symfony.com/sponsor",
  5220. "type": "custom"
  5221. },
  5222. {
  5223. "url": "https://github.com/fabpot",
  5224. "type": "github"
  5225. },
  5226. {
  5227. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5228. "type": "tidelift"
  5229. }
  5230. ],
  5231. "time": "2020-09-07T11:33:47+00:00"
  5232. },
  5233. {
  5234. "name": "symfony/finder",
  5235. "version": "v5.2.1",
  5236. "source": {
  5237. "type": "git",
  5238. "url": "https://github.com/symfony/finder.git",
  5239. "reference": "0b9231a5922fd7287ba5b411893c0ecd2733e5ba"
  5240. },
  5241. "dist": {
  5242. "type": "zip",
  5243. "url": "https://api.github.com/repos/symfony/finder/zipball/0b9231a5922fd7287ba5b411893c0ecd2733e5ba",
  5244. "reference": "0b9231a5922fd7287ba5b411893c0ecd2733e5ba",
  5245. "shasum": ""
  5246. },
  5247. "require": {
  5248. "php": ">=7.2.5"
  5249. },
  5250. "type": "library",
  5251. "autoload": {
  5252. "psr-4": {
  5253. "Symfony\\Component\\Finder\\": ""
  5254. },
  5255. "exclude-from-classmap": [
  5256. "/Tests/"
  5257. ]
  5258. },
  5259. "notification-url": "https://packagist.org/downloads/",
  5260. "license": [
  5261. "MIT"
  5262. ],
  5263. "authors": [
  5264. {
  5265. "name": "Fabien Potencier",
  5266. "email": "fabien@symfony.com"
  5267. },
  5268. {
  5269. "name": "Symfony Community",
  5270. "homepage": "https://symfony.com/contributors"
  5271. }
  5272. ],
  5273. "description": "Symfony Finder Component",
  5274. "homepage": "https://symfony.com",
  5275. "support": {
  5276. "source": "https://github.com/symfony/finder/tree/v5.2.1"
  5277. },
  5278. "funding": [
  5279. {
  5280. "url": "https://symfony.com/sponsor",
  5281. "type": "custom"
  5282. },
  5283. {
  5284. "url": "https://github.com/fabpot",
  5285. "type": "github"
  5286. },
  5287. {
  5288. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5289. "type": "tidelift"
  5290. }
  5291. ],
  5292. "time": "2020-12-08T17:02:38+00:00"
  5293. },
  5294. {
  5295. "name": "symfony/http-client-contracts",
  5296. "version": "v2.3.1",
  5297. "source": {
  5298. "type": "git",
  5299. "url": "https://github.com/symfony/http-client-contracts.git",
  5300. "reference": "41db680a15018f9c1d4b23516059633ce280ca33"
  5301. },
  5302. "dist": {
  5303. "type": "zip",
  5304. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/41db680a15018f9c1d4b23516059633ce280ca33",
  5305. "reference": "41db680a15018f9c1d4b23516059633ce280ca33",
  5306. "shasum": ""
  5307. },
  5308. "require": {
  5309. "php": ">=7.2.5"
  5310. },
  5311. "suggest": {
  5312. "symfony/http-client-implementation": ""
  5313. },
  5314. "type": "library",
  5315. "extra": {
  5316. "branch-version": "2.3",
  5317. "branch-alias": {
  5318. "dev-main": "2.3-dev"
  5319. },
  5320. "thanks": {
  5321. "name": "symfony/contracts",
  5322. "url": "https://github.com/symfony/contracts"
  5323. }
  5324. },
  5325. "autoload": {
  5326. "psr-4": {
  5327. "Symfony\\Contracts\\HttpClient\\": ""
  5328. }
  5329. },
  5330. "notification-url": "https://packagist.org/downloads/",
  5331. "license": [
  5332. "MIT"
  5333. ],
  5334. "authors": [
  5335. {
  5336. "name": "Nicolas Grekas",
  5337. "email": "p@tchwork.com"
  5338. },
  5339. {
  5340. "name": "Symfony Community",
  5341. "homepage": "https://symfony.com/contributors"
  5342. }
  5343. ],
  5344. "description": "Generic abstractions related to HTTP clients",
  5345. "homepage": "https://symfony.com",
  5346. "keywords": [
  5347. "abstractions",
  5348. "contracts",
  5349. "decoupling",
  5350. "interfaces",
  5351. "interoperability",
  5352. "standards"
  5353. ],
  5354. "support": {
  5355. "source": "https://github.com/symfony/http-client-contracts/tree/v2.3.1"
  5356. },
  5357. "funding": [
  5358. {
  5359. "url": "https://symfony.com/sponsor",
  5360. "type": "custom"
  5361. },
  5362. {
  5363. "url": "https://github.com/fabpot",
  5364. "type": "github"
  5365. },
  5366. {
  5367. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5368. "type": "tidelift"
  5369. }
  5370. ],
  5371. "time": "2020-10-14T17:08:19+00:00"
  5372. },
  5373. {
  5374. "name": "symfony/http-foundation",
  5375. "version": "v5.2.1",
  5376. "source": {
  5377. "type": "git",
  5378. "url": "https://github.com/symfony/http-foundation.git",
  5379. "reference": "a1f6218b29897ab52acba58cfa905b83625bef8d"
  5380. },
  5381. "dist": {
  5382. "type": "zip",
  5383. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/a1f6218b29897ab52acba58cfa905b83625bef8d",
  5384. "reference": "a1f6218b29897ab52acba58cfa905b83625bef8d",
  5385. "shasum": ""
  5386. },
  5387. "require": {
  5388. "php": ">=7.2.5",
  5389. "symfony/deprecation-contracts": "^2.1",
  5390. "symfony/polyfill-mbstring": "~1.1",
  5391. "symfony/polyfill-php80": "^1.15"
  5392. },
  5393. "require-dev": {
  5394. "predis/predis": "~1.0",
  5395. "symfony/cache": "^4.4|^5.0",
  5396. "symfony/expression-language": "^4.4|^5.0",
  5397. "symfony/mime": "^4.4|^5.0"
  5398. },
  5399. "suggest": {
  5400. "symfony/mime": "To use the file extension guesser"
  5401. },
  5402. "type": "library",
  5403. "autoload": {
  5404. "psr-4": {
  5405. "Symfony\\Component\\HttpFoundation\\": ""
  5406. },
  5407. "exclude-from-classmap": [
  5408. "/Tests/"
  5409. ]
  5410. },
  5411. "notification-url": "https://packagist.org/downloads/",
  5412. "license": [
  5413. "MIT"
  5414. ],
  5415. "authors": [
  5416. {
  5417. "name": "Fabien Potencier",
  5418. "email": "fabien@symfony.com"
  5419. },
  5420. {
  5421. "name": "Symfony Community",
  5422. "homepage": "https://symfony.com/contributors"
  5423. }
  5424. ],
  5425. "description": "Symfony HttpFoundation Component",
  5426. "homepage": "https://symfony.com",
  5427. "support": {
  5428. "source": "https://github.com/symfony/http-foundation/tree/v5.2.1"
  5429. },
  5430. "funding": [
  5431. {
  5432. "url": "https://symfony.com/sponsor",
  5433. "type": "custom"
  5434. },
  5435. {
  5436. "url": "https://github.com/fabpot",
  5437. "type": "github"
  5438. },
  5439. {
  5440. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5441. "type": "tidelift"
  5442. }
  5443. ],
  5444. "time": "2020-12-18T10:00:10+00:00"
  5445. },
  5446. {
  5447. "name": "symfony/http-kernel",
  5448. "version": "v5.2.1",
  5449. "source": {
  5450. "type": "git",
  5451. "url": "https://github.com/symfony/http-kernel.git",
  5452. "reference": "1feb619286d819180f7b8bc0dc44f516d9c62647"
  5453. },
  5454. "dist": {
  5455. "type": "zip",
  5456. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/1feb619286d819180f7b8bc0dc44f516d9c62647",
  5457. "reference": "1feb619286d819180f7b8bc0dc44f516d9c62647",
  5458. "shasum": ""
  5459. },
  5460. "require": {
  5461. "php": ">=7.2.5",
  5462. "psr/log": "~1.0",
  5463. "symfony/deprecation-contracts": "^2.1",
  5464. "symfony/error-handler": "^4.4|^5.0",
  5465. "symfony/event-dispatcher": "^5.0",
  5466. "symfony/http-client-contracts": "^1.1|^2",
  5467. "symfony/http-foundation": "^4.4|^5.0",
  5468. "symfony/polyfill-ctype": "^1.8",
  5469. "symfony/polyfill-php73": "^1.9",
  5470. "symfony/polyfill-php80": "^1.15"
  5471. },
  5472. "conflict": {
  5473. "symfony/browser-kit": "<4.4",
  5474. "symfony/cache": "<5.0",
  5475. "symfony/config": "<5.0",
  5476. "symfony/console": "<4.4",
  5477. "symfony/dependency-injection": "<5.1.8",
  5478. "symfony/doctrine-bridge": "<5.0",
  5479. "symfony/form": "<5.0",
  5480. "symfony/http-client": "<5.0",
  5481. "symfony/mailer": "<5.0",
  5482. "symfony/messenger": "<5.0",
  5483. "symfony/translation": "<5.0",
  5484. "symfony/twig-bridge": "<5.0",
  5485. "symfony/validator": "<5.0",
  5486. "twig/twig": "<2.4"
  5487. },
  5488. "provide": {
  5489. "psr/log-implementation": "1.0"
  5490. },
  5491. "require-dev": {
  5492. "psr/cache": "~1.0",
  5493. "symfony/browser-kit": "^4.4|^5.0",
  5494. "symfony/config": "^5.0",
  5495. "symfony/console": "^4.4|^5.0",
  5496. "symfony/css-selector": "^4.4|^5.0",
  5497. "symfony/dependency-injection": "^5.1.8",
  5498. "symfony/dom-crawler": "^4.4|^5.0",
  5499. "symfony/expression-language": "^4.4|^5.0",
  5500. "symfony/finder": "^4.4|^5.0",
  5501. "symfony/process": "^4.4|^5.0",
  5502. "symfony/routing": "^4.4|^5.0",
  5503. "symfony/stopwatch": "^4.4|^5.0",
  5504. "symfony/translation": "^4.4|^5.0",
  5505. "symfony/translation-contracts": "^1.1|^2",
  5506. "twig/twig": "^2.4|^3.0"
  5507. },
  5508. "suggest": {
  5509. "symfony/browser-kit": "",
  5510. "symfony/config": "",
  5511. "symfony/console": "",
  5512. "symfony/dependency-injection": ""
  5513. },
  5514. "type": "library",
  5515. "autoload": {
  5516. "psr-4": {
  5517. "Symfony\\Component\\HttpKernel\\": ""
  5518. },
  5519. "exclude-from-classmap": [
  5520. "/Tests/"
  5521. ]
  5522. },
  5523. "notification-url": "https://packagist.org/downloads/",
  5524. "license": [
  5525. "MIT"
  5526. ],
  5527. "authors": [
  5528. {
  5529. "name": "Fabien Potencier",
  5530. "email": "fabien@symfony.com"
  5531. },
  5532. {
  5533. "name": "Symfony Community",
  5534. "homepage": "https://symfony.com/contributors"
  5535. }
  5536. ],
  5537. "description": "Symfony HttpKernel Component",
  5538. "homepage": "https://symfony.com",
  5539. "support": {
  5540. "source": "https://github.com/symfony/http-kernel/tree/v5.2.1"
  5541. },
  5542. "funding": [
  5543. {
  5544. "url": "https://symfony.com/sponsor",
  5545. "type": "custom"
  5546. },
  5547. {
  5548. "url": "https://github.com/fabpot",
  5549. "type": "github"
  5550. },
  5551. {
  5552. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5553. "type": "tidelift"
  5554. }
  5555. ],
  5556. "time": "2020-12-18T13:49:39+00:00"
  5557. },
  5558. {
  5559. "name": "symfony/mime",
  5560. "version": "v5.2.1",
  5561. "source": {
  5562. "type": "git",
  5563. "url": "https://github.com/symfony/mime.git",
  5564. "reference": "de97005aef7426ba008c46ba840fc301df577ada"
  5565. },
  5566. "dist": {
  5567. "type": "zip",
  5568. "url": "https://api.github.com/repos/symfony/mime/zipball/de97005aef7426ba008c46ba840fc301df577ada",
  5569. "reference": "de97005aef7426ba008c46ba840fc301df577ada",
  5570. "shasum": ""
  5571. },
  5572. "require": {
  5573. "php": ">=7.2.5",
  5574. "symfony/deprecation-contracts": "^2.1",
  5575. "symfony/polyfill-intl-idn": "^1.10",
  5576. "symfony/polyfill-mbstring": "^1.0",
  5577. "symfony/polyfill-php80": "^1.15"
  5578. },
  5579. "conflict": {
  5580. "symfony/mailer": "<4.4"
  5581. },
  5582. "require-dev": {
  5583. "egulias/email-validator": "^2.1.10",
  5584. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5585. "symfony/dependency-injection": "^4.4|^5.0",
  5586. "symfony/property-access": "^4.4|^5.1",
  5587. "symfony/property-info": "^4.4|^5.1",
  5588. "symfony/serializer": "^5.2"
  5589. },
  5590. "type": "library",
  5591. "autoload": {
  5592. "psr-4": {
  5593. "Symfony\\Component\\Mime\\": ""
  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": "fabien@symfony.com"
  5607. },
  5608. {
  5609. "name": "Symfony Community",
  5610. "homepage": "https://symfony.com/contributors"
  5611. }
  5612. ],
  5613. "description": "A library to manipulate MIME messages",
  5614. "homepage": "https://symfony.com",
  5615. "keywords": [
  5616. "mime",
  5617. "mime-type"
  5618. ],
  5619. "support": {
  5620. "source": "https://github.com/symfony/mime/tree/v5.2.1"
  5621. },
  5622. "funding": [
  5623. {
  5624. "url": "https://symfony.com/sponsor",
  5625. "type": "custom"
  5626. },
  5627. {
  5628. "url": "https://github.com/fabpot",
  5629. "type": "github"
  5630. },
  5631. {
  5632. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5633. "type": "tidelift"
  5634. }
  5635. ],
  5636. "time": "2020-12-09T18:54:12+00:00"
  5637. },
  5638. {
  5639. "name": "symfony/polyfill-ctype",
  5640. "version": "v1.22.0",
  5641. "source": {
  5642. "type": "git",
  5643. "url": "https://github.com/symfony/polyfill-ctype.git",
  5644. "reference": "c6c942b1ac76c82448322025e084cadc56048b4e"
  5645. },
  5646. "dist": {
  5647. "type": "zip",
  5648. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/c6c942b1ac76c82448322025e084cadc56048b4e",
  5649. "reference": "c6c942b1ac76c82448322025e084cadc56048b4e",
  5650. "shasum": ""
  5651. },
  5652. "require": {
  5653. "php": ">=7.1"
  5654. },
  5655. "suggest": {
  5656. "ext-ctype": "For best performance"
  5657. },
  5658. "type": "library",
  5659. "extra": {
  5660. "branch-alias": {
  5661. "dev-main": "1.22-dev"
  5662. },
  5663. "thanks": {
  5664. "name": "symfony/polyfill",
  5665. "url": "https://github.com/symfony/polyfill"
  5666. }
  5667. },
  5668. "autoload": {
  5669. "psr-4": {
  5670. "Symfony\\Polyfill\\Ctype\\": ""
  5671. },
  5672. "files": [
  5673. "bootstrap.php"
  5674. ]
  5675. },
  5676. "notification-url": "https://packagist.org/downloads/",
  5677. "license": [
  5678. "MIT"
  5679. ],
  5680. "authors": [
  5681. {
  5682. "name": "Gert de Pagter",
  5683. "email": "BackEndTea@gmail.com"
  5684. },
  5685. {
  5686. "name": "Symfony Community",
  5687. "homepage": "https://symfony.com/contributors"
  5688. }
  5689. ],
  5690. "description": "Symfony polyfill for ctype functions",
  5691. "homepage": "https://symfony.com",
  5692. "keywords": [
  5693. "compatibility",
  5694. "ctype",
  5695. "polyfill",
  5696. "portable"
  5697. ],
  5698. "support": {
  5699. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.22.0"
  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-01-07T16:49:33+00:00"
  5716. },
  5717. {
  5718. "name": "symfony/polyfill-iconv",
  5719. "version": "v1.22.0",
  5720. "source": {
  5721. "type": "git",
  5722. "url": "https://github.com/symfony/polyfill-iconv.git",
  5723. "reference": "b34bfb8c4c22650ac080d2662ae3502e5f2f4ae6"
  5724. },
  5725. "dist": {
  5726. "type": "zip",
  5727. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/b34bfb8c4c22650ac080d2662ae3502e5f2f4ae6",
  5728. "reference": "b34bfb8c4c22650ac080d2662ae3502e5f2f4ae6",
  5729. "shasum": ""
  5730. },
  5731. "require": {
  5732. "php": ">=7.1"
  5733. },
  5734. "suggest": {
  5735. "ext-iconv": "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\\Iconv\\": ""
  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": "Nicolas Grekas",
  5762. "email": "p@tchwork.com"
  5763. },
  5764. {
  5765. "name": "Symfony Community",
  5766. "homepage": "https://symfony.com/contributors"
  5767. }
  5768. ],
  5769. "description": "Symfony polyfill for the Iconv extension",
  5770. "homepage": "https://symfony.com",
  5771. "keywords": [
  5772. "compatibility",
  5773. "iconv",
  5774. "polyfill",
  5775. "portable",
  5776. "shim"
  5777. ],
  5778. "support": {
  5779. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.22.0"
  5780. },
  5781. "funding": [
  5782. {
  5783. "url": "https://symfony.com/sponsor",
  5784. "type": "custom"
  5785. },
  5786. {
  5787. "url": "https://github.com/fabpot",
  5788. "type": "github"
  5789. },
  5790. {
  5791. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5792. "type": "tidelift"
  5793. }
  5794. ],
  5795. "time": "2021-01-07T16:49:33+00:00"
  5796. },
  5797. {
  5798. "name": "symfony/polyfill-intl-grapheme",
  5799. "version": "v1.22.0",
  5800. "source": {
  5801. "type": "git",
  5802. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5803. "reference": "267a9adeb8ecb8071040a740930e077cdfb987af"
  5804. },
  5805. "dist": {
  5806. "type": "zip",
  5807. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/267a9adeb8ecb8071040a740930e077cdfb987af",
  5808. "reference": "267a9adeb8ecb8071040a740930e077cdfb987af",
  5809. "shasum": ""
  5810. },
  5811. "require": {
  5812. "php": ">=7.1"
  5813. },
  5814. "suggest": {
  5815. "ext-intl": "For best performance"
  5816. },
  5817. "type": "library",
  5818. "extra": {
  5819. "branch-alias": {
  5820. "dev-main": "1.22-dev"
  5821. },
  5822. "thanks": {
  5823. "name": "symfony/polyfill",
  5824. "url": "https://github.com/symfony/polyfill"
  5825. }
  5826. },
  5827. "autoload": {
  5828. "psr-4": {
  5829. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5830. },
  5831. "files": [
  5832. "bootstrap.php"
  5833. ]
  5834. },
  5835. "notification-url": "https://packagist.org/downloads/",
  5836. "license": [
  5837. "MIT"
  5838. ],
  5839. "authors": [
  5840. {
  5841. "name": "Nicolas Grekas",
  5842. "email": "p@tchwork.com"
  5843. },
  5844. {
  5845. "name": "Symfony Community",
  5846. "homepage": "https://symfony.com/contributors"
  5847. }
  5848. ],
  5849. "description": "Symfony polyfill for intl's grapheme_* functions",
  5850. "homepage": "https://symfony.com",
  5851. "keywords": [
  5852. "compatibility",
  5853. "grapheme",
  5854. "intl",
  5855. "polyfill",
  5856. "portable",
  5857. "shim"
  5858. ],
  5859. "support": {
  5860. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.22.0"
  5861. },
  5862. "funding": [
  5863. {
  5864. "url": "https://symfony.com/sponsor",
  5865. "type": "custom"
  5866. },
  5867. {
  5868. "url": "https://github.com/fabpot",
  5869. "type": "github"
  5870. },
  5871. {
  5872. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5873. "type": "tidelift"
  5874. }
  5875. ],
  5876. "time": "2021-01-07T16:49:33+00:00"
  5877. },
  5878. {
  5879. "name": "symfony/polyfill-intl-idn",
  5880. "version": "v1.22.0",
  5881. "source": {
  5882. "type": "git",
  5883. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5884. "reference": "0eb8293dbbcd6ef6bf81404c9ce7d95bcdf34f44"
  5885. },
  5886. "dist": {
  5887. "type": "zip",
  5888. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/0eb8293dbbcd6ef6bf81404c9ce7d95bcdf34f44",
  5889. "reference": "0eb8293dbbcd6ef6bf81404c9ce7d95bcdf34f44",
  5890. "shasum": ""
  5891. },
  5892. "require": {
  5893. "php": ">=7.1",
  5894. "symfony/polyfill-intl-normalizer": "^1.10",
  5895. "symfony/polyfill-php72": "^1.10"
  5896. },
  5897. "suggest": {
  5898. "ext-intl": "For best performance"
  5899. },
  5900. "type": "library",
  5901. "extra": {
  5902. "branch-alias": {
  5903. "dev-main": "1.22-dev"
  5904. },
  5905. "thanks": {
  5906. "name": "symfony/polyfill",
  5907. "url": "https://github.com/symfony/polyfill"
  5908. }
  5909. },
  5910. "autoload": {
  5911. "psr-4": {
  5912. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5913. },
  5914. "files": [
  5915. "bootstrap.php"
  5916. ]
  5917. },
  5918. "notification-url": "https://packagist.org/downloads/",
  5919. "license": [
  5920. "MIT"
  5921. ],
  5922. "authors": [
  5923. {
  5924. "name": "Laurent Bassin",
  5925. "email": "laurent@bassin.info"
  5926. },
  5927. {
  5928. "name": "Trevor Rowbotham",
  5929. "email": "trevor.rowbotham@pm.me"
  5930. },
  5931. {
  5932. "name": "Symfony Community",
  5933. "homepage": "https://symfony.com/contributors"
  5934. }
  5935. ],
  5936. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5937. "homepage": "https://symfony.com",
  5938. "keywords": [
  5939. "compatibility",
  5940. "idn",
  5941. "intl",
  5942. "polyfill",
  5943. "portable",
  5944. "shim"
  5945. ],
  5946. "support": {
  5947. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.22.0"
  5948. },
  5949. "funding": [
  5950. {
  5951. "url": "https://symfony.com/sponsor",
  5952. "type": "custom"
  5953. },
  5954. {
  5955. "url": "https://github.com/fabpot",
  5956. "type": "github"
  5957. },
  5958. {
  5959. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5960. "type": "tidelift"
  5961. }
  5962. ],
  5963. "time": "2021-01-07T16:49:33+00:00"
  5964. },
  5965. {
  5966. "name": "symfony/polyfill-intl-normalizer",
  5967. "version": "v1.22.0",
  5968. "source": {
  5969. "type": "git",
  5970. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5971. "reference": "6e971c891537eb617a00bb07a43d182a6915faba"
  5972. },
  5973. "dist": {
  5974. "type": "zip",
  5975. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/6e971c891537eb617a00bb07a43d182a6915faba",
  5976. "reference": "6e971c891537eb617a00bb07a43d182a6915faba",
  5977. "shasum": ""
  5978. },
  5979. "require": {
  5980. "php": ">=7.1"
  5981. },
  5982. "suggest": {
  5983. "ext-intl": "For best performance"
  5984. },
  5985. "type": "library",
  5986. "extra": {
  5987. "branch-alias": {
  5988. "dev-main": "1.22-dev"
  5989. },
  5990. "thanks": {
  5991. "name": "symfony/polyfill",
  5992. "url": "https://github.com/symfony/polyfill"
  5993. }
  5994. },
  5995. "autoload": {
  5996. "psr-4": {
  5997. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5998. },
  5999. "files": [
  6000. "bootstrap.php"
  6001. ],
  6002. "classmap": [
  6003. "Resources/stubs"
  6004. ]
  6005. },
  6006. "notification-url": "https://packagist.org/downloads/",
  6007. "license": [
  6008. "MIT"
  6009. ],
  6010. "authors": [
  6011. {
  6012. "name": "Nicolas Grekas",
  6013. "email": "p@tchwork.com"
  6014. },
  6015. {
  6016. "name": "Symfony Community",
  6017. "homepage": "https://symfony.com/contributors"
  6018. }
  6019. ],
  6020. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6021. "homepage": "https://symfony.com",
  6022. "keywords": [
  6023. "compatibility",
  6024. "intl",
  6025. "normalizer",
  6026. "polyfill",
  6027. "portable",
  6028. "shim"
  6029. ],
  6030. "support": {
  6031. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.22.0"
  6032. },
  6033. "funding": [
  6034. {
  6035. "url": "https://symfony.com/sponsor",
  6036. "type": "custom"
  6037. },
  6038. {
  6039. "url": "https://github.com/fabpot",
  6040. "type": "github"
  6041. },
  6042. {
  6043. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6044. "type": "tidelift"
  6045. }
  6046. ],
  6047. "time": "2021-01-07T17:09:11+00:00"
  6048. },
  6049. {
  6050. "name": "symfony/polyfill-mbstring",
  6051. "version": "v1.22.0",
  6052. "source": {
  6053. "type": "git",
  6054. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6055. "reference": "f377a3dd1fde44d37b9831d68dc8dea3ffd28e13"
  6056. },
  6057. "dist": {
  6058. "type": "zip",
  6059. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/f377a3dd1fde44d37b9831d68dc8dea3ffd28e13",
  6060. "reference": "f377a3dd1fde44d37b9831d68dc8dea3ffd28e13",
  6061. "shasum": ""
  6062. },
  6063. "require": {
  6064. "php": ">=7.1"
  6065. },
  6066. "suggest": {
  6067. "ext-mbstring": "For best performance"
  6068. },
  6069. "type": "library",
  6070. "extra": {
  6071. "branch-alias": {
  6072. "dev-main": "1.22-dev"
  6073. },
  6074. "thanks": {
  6075. "name": "symfony/polyfill",
  6076. "url": "https://github.com/symfony/polyfill"
  6077. }
  6078. },
  6079. "autoload": {
  6080. "psr-4": {
  6081. "Symfony\\Polyfill\\Mbstring\\": ""
  6082. },
  6083. "files": [
  6084. "bootstrap.php"
  6085. ]
  6086. },
  6087. "notification-url": "https://packagist.org/downloads/",
  6088. "license": [
  6089. "MIT"
  6090. ],
  6091. "authors": [
  6092. {
  6093. "name": "Nicolas Grekas",
  6094. "email": "p@tchwork.com"
  6095. },
  6096. {
  6097. "name": "Symfony Community",
  6098. "homepage": "https://symfony.com/contributors"
  6099. }
  6100. ],
  6101. "description": "Symfony polyfill for the Mbstring extension",
  6102. "homepage": "https://symfony.com",
  6103. "keywords": [
  6104. "compatibility",
  6105. "mbstring",
  6106. "polyfill",
  6107. "portable",
  6108. "shim"
  6109. ],
  6110. "support": {
  6111. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.22.0"
  6112. },
  6113. "funding": [
  6114. {
  6115. "url": "https://symfony.com/sponsor",
  6116. "type": "custom"
  6117. },
  6118. {
  6119. "url": "https://github.com/fabpot",
  6120. "type": "github"
  6121. },
  6122. {
  6123. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6124. "type": "tidelift"
  6125. }
  6126. ],
  6127. "time": "2021-01-07T16:49:33+00:00"
  6128. },
  6129. {
  6130. "name": "symfony/polyfill-php56",
  6131. "version": "v1.20.0",
  6132. "source": {
  6133. "type": "git",
  6134. "url": "https://github.com/symfony/polyfill-php56.git",
  6135. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675"
  6136. },
  6137. "dist": {
  6138. "type": "zip",
  6139. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  6140. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  6141. "shasum": ""
  6142. },
  6143. "require": {
  6144. "php": ">=7.1"
  6145. },
  6146. "type": "metapackage",
  6147. "extra": {
  6148. "branch-alias": {
  6149. "dev-main": "1.20-dev"
  6150. },
  6151. "thanks": {
  6152. "name": "symfony/polyfill",
  6153. "url": "https://github.com/symfony/polyfill"
  6154. }
  6155. },
  6156. "notification-url": "https://packagist.org/downloads/",
  6157. "license": [
  6158. "MIT"
  6159. ],
  6160. "authors": [
  6161. {
  6162. "name": "Nicolas Grekas",
  6163. "email": "p@tchwork.com"
  6164. },
  6165. {
  6166. "name": "Symfony Community",
  6167. "homepage": "https://symfony.com/contributors"
  6168. }
  6169. ],
  6170. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  6171. "homepage": "https://symfony.com",
  6172. "keywords": [
  6173. "compatibility",
  6174. "polyfill",
  6175. "portable",
  6176. "shim"
  6177. ],
  6178. "support": {
  6179. "source": "https://github.com/symfony/polyfill-php56/tree/v1.20.0"
  6180. },
  6181. "funding": [
  6182. {
  6183. "url": "https://symfony.com/sponsor",
  6184. "type": "custom"
  6185. },
  6186. {
  6187. "url": "https://github.com/fabpot",
  6188. "type": "github"
  6189. },
  6190. {
  6191. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6192. "type": "tidelift"
  6193. }
  6194. ],
  6195. "time": "2020-10-23T14:02:19+00:00"
  6196. },
  6197. {
  6198. "name": "symfony/polyfill-php72",
  6199. "version": "v1.22.0",
  6200. "source": {
  6201. "type": "git",
  6202. "url": "https://github.com/symfony/polyfill-php72.git",
  6203. "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9"
  6204. },
  6205. "dist": {
  6206. "type": "zip",
  6207. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9",
  6208. "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9",
  6209. "shasum": ""
  6210. },
  6211. "require": {
  6212. "php": ">=7.1"
  6213. },
  6214. "type": "library",
  6215. "extra": {
  6216. "branch-alias": {
  6217. "dev-main": "1.22-dev"
  6218. },
  6219. "thanks": {
  6220. "name": "symfony/polyfill",
  6221. "url": "https://github.com/symfony/polyfill"
  6222. }
  6223. },
  6224. "autoload": {
  6225. "psr-4": {
  6226. "Symfony\\Polyfill\\Php72\\": ""
  6227. },
  6228. "files": [
  6229. "bootstrap.php"
  6230. ]
  6231. },
  6232. "notification-url": "https://packagist.org/downloads/",
  6233. "license": [
  6234. "MIT"
  6235. ],
  6236. "authors": [
  6237. {
  6238. "name": "Nicolas Grekas",
  6239. "email": "p@tchwork.com"
  6240. },
  6241. {
  6242. "name": "Symfony Community",
  6243. "homepage": "https://symfony.com/contributors"
  6244. }
  6245. ],
  6246. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  6247. "homepage": "https://symfony.com",
  6248. "keywords": [
  6249. "compatibility",
  6250. "polyfill",
  6251. "portable",
  6252. "shim"
  6253. ],
  6254. "support": {
  6255. "source": "https://github.com/symfony/polyfill-php72/tree/v1.22.0"
  6256. },
  6257. "funding": [
  6258. {
  6259. "url": "https://symfony.com/sponsor",
  6260. "type": "custom"
  6261. },
  6262. {
  6263. "url": "https://github.com/fabpot",
  6264. "type": "github"
  6265. },
  6266. {
  6267. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6268. "type": "tidelift"
  6269. }
  6270. ],
  6271. "time": "2021-01-07T16:49:33+00:00"
  6272. },
  6273. {
  6274. "name": "symfony/polyfill-php73",
  6275. "version": "v1.22.0",
  6276. "source": {
  6277. "type": "git",
  6278. "url": "https://github.com/symfony/polyfill-php73.git",
  6279. "reference": "a678b42e92f86eca04b7fa4c0f6f19d097fb69e2"
  6280. },
  6281. "dist": {
  6282. "type": "zip",
  6283. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/a678b42e92f86eca04b7fa4c0f6f19d097fb69e2",
  6284. "reference": "a678b42e92f86eca04b7fa4c0f6f19d097fb69e2",
  6285. "shasum": ""
  6286. },
  6287. "require": {
  6288. "php": ">=7.1"
  6289. },
  6290. "type": "library",
  6291. "extra": {
  6292. "branch-alias": {
  6293. "dev-main": "1.22-dev"
  6294. },
  6295. "thanks": {
  6296. "name": "symfony/polyfill",
  6297. "url": "https://github.com/symfony/polyfill"
  6298. }
  6299. },
  6300. "autoload": {
  6301. "psr-4": {
  6302. "Symfony\\Polyfill\\Php73\\": ""
  6303. },
  6304. "files": [
  6305. "bootstrap.php"
  6306. ],
  6307. "classmap": [
  6308. "Resources/stubs"
  6309. ]
  6310. },
  6311. "notification-url": "https://packagist.org/downloads/",
  6312. "license": [
  6313. "MIT"
  6314. ],
  6315. "authors": [
  6316. {
  6317. "name": "Nicolas Grekas",
  6318. "email": "p@tchwork.com"
  6319. },
  6320. {
  6321. "name": "Symfony Community",
  6322. "homepage": "https://symfony.com/contributors"
  6323. }
  6324. ],
  6325. "description": "Symfony polyfill backporting some PHP 7.3+ 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-php73/tree/v1.22.0"
  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-php80",
  6354. "version": "v1.22.0",
  6355. "source": {
  6356. "type": "git",
  6357. "url": "https://github.com/symfony/polyfill-php80.git",
  6358. "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91"
  6359. },
  6360. "dist": {
  6361. "type": "zip",
  6362. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/dc3063ba22c2a1fd2f45ed856374d79114998f91",
  6363. "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91",
  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\\Php80\\": ""
  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": "Ion Bazan",
  6397. "email": "ion.bazan@gmail.com"
  6398. },
  6399. {
  6400. "name": "Nicolas Grekas",
  6401. "email": "p@tchwork.com"
  6402. },
  6403. {
  6404. "name": "Symfony Community",
  6405. "homepage": "https://symfony.com/contributors"
  6406. }
  6407. ],
  6408. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6409. "homepage": "https://symfony.com",
  6410. "keywords": [
  6411. "compatibility",
  6412. "polyfill",
  6413. "portable",
  6414. "shim"
  6415. ],
  6416. "support": {
  6417. "source": "https://github.com/symfony/polyfill-php80/tree/v1.22.0"
  6418. },
  6419. "funding": [
  6420. {
  6421. "url": "https://symfony.com/sponsor",
  6422. "type": "custom"
  6423. },
  6424. {
  6425. "url": "https://github.com/fabpot",
  6426. "type": "github"
  6427. },
  6428. {
  6429. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6430. "type": "tidelift"
  6431. }
  6432. ],
  6433. "time": "2021-01-07T16:49:33+00:00"
  6434. },
  6435. {
  6436. "name": "symfony/process",
  6437. "version": "v5.2.1",
  6438. "source": {
  6439. "type": "git",
  6440. "url": "https://github.com/symfony/process.git",
  6441. "reference": "bd8815b8b6705298beaa384f04fabd459c10bedd"
  6442. },
  6443. "dist": {
  6444. "type": "zip",
  6445. "url": "https://api.github.com/repos/symfony/process/zipball/bd8815b8b6705298beaa384f04fabd459c10bedd",
  6446. "reference": "bd8815b8b6705298beaa384f04fabd459c10bedd",
  6447. "shasum": ""
  6448. },
  6449. "require": {
  6450. "php": ">=7.2.5",
  6451. "symfony/polyfill-php80": "^1.15"
  6452. },
  6453. "type": "library",
  6454. "autoload": {
  6455. "psr-4": {
  6456. "Symfony\\Component\\Process\\": ""
  6457. },
  6458. "exclude-from-classmap": [
  6459. "/Tests/"
  6460. ]
  6461. },
  6462. "notification-url": "https://packagist.org/downloads/",
  6463. "license": [
  6464. "MIT"
  6465. ],
  6466. "authors": [
  6467. {
  6468. "name": "Fabien Potencier",
  6469. "email": "fabien@symfony.com"
  6470. },
  6471. {
  6472. "name": "Symfony Community",
  6473. "homepage": "https://symfony.com/contributors"
  6474. }
  6475. ],
  6476. "description": "Symfony Process Component",
  6477. "homepage": "https://symfony.com",
  6478. "support": {
  6479. "source": "https://github.com/symfony/process/tree/v5.2.1"
  6480. },
  6481. "funding": [
  6482. {
  6483. "url": "https://symfony.com/sponsor",
  6484. "type": "custom"
  6485. },
  6486. {
  6487. "url": "https://github.com/fabpot",
  6488. "type": "github"
  6489. },
  6490. {
  6491. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6492. "type": "tidelift"
  6493. }
  6494. ],
  6495. "time": "2020-12-08T17:03:37+00:00"
  6496. },
  6497. {
  6498. "name": "symfony/routing",
  6499. "version": "v5.2.1",
  6500. "source": {
  6501. "type": "git",
  6502. "url": "https://github.com/symfony/routing.git",
  6503. "reference": "934ac2720dcc878a47a45c986b483a7ee7193620"
  6504. },
  6505. "dist": {
  6506. "type": "zip",
  6507. "url": "https://api.github.com/repos/symfony/routing/zipball/934ac2720dcc878a47a45c986b483a7ee7193620",
  6508. "reference": "934ac2720dcc878a47a45c986b483a7ee7193620",
  6509. "shasum": ""
  6510. },
  6511. "require": {
  6512. "php": ">=7.2.5",
  6513. "symfony/deprecation-contracts": "^2.1",
  6514. "symfony/polyfill-php80": "^1.15"
  6515. },
  6516. "conflict": {
  6517. "symfony/config": "<5.0",
  6518. "symfony/dependency-injection": "<4.4",
  6519. "symfony/yaml": "<4.4"
  6520. },
  6521. "require-dev": {
  6522. "doctrine/annotations": "^1.7",
  6523. "psr/log": "~1.0",
  6524. "symfony/config": "^5.0",
  6525. "symfony/dependency-injection": "^4.4|^5.0",
  6526. "symfony/expression-language": "^4.4|^5.0",
  6527. "symfony/http-foundation": "^4.4|^5.0",
  6528. "symfony/yaml": "^4.4|^5.0"
  6529. },
  6530. "suggest": {
  6531. "doctrine/annotations": "For using the annotation loader",
  6532. "symfony/config": "For using the all-in-one router or any loader",
  6533. "symfony/expression-language": "For using expression matching",
  6534. "symfony/http-foundation": "For using a Symfony Request object",
  6535. "symfony/yaml": "For using the YAML loader"
  6536. },
  6537. "type": "library",
  6538. "autoload": {
  6539. "psr-4": {
  6540. "Symfony\\Component\\Routing\\": ""
  6541. },
  6542. "exclude-from-classmap": [
  6543. "/Tests/"
  6544. ]
  6545. },
  6546. "notification-url": "https://packagist.org/downloads/",
  6547. "license": [
  6548. "MIT"
  6549. ],
  6550. "authors": [
  6551. {
  6552. "name": "Fabien Potencier",
  6553. "email": "fabien@symfony.com"
  6554. },
  6555. {
  6556. "name": "Symfony Community",
  6557. "homepage": "https://symfony.com/contributors"
  6558. }
  6559. ],
  6560. "description": "Symfony Routing Component",
  6561. "homepage": "https://symfony.com",
  6562. "keywords": [
  6563. "router",
  6564. "routing",
  6565. "uri",
  6566. "url"
  6567. ],
  6568. "support": {
  6569. "source": "https://github.com/symfony/routing/tree/v5.2.1"
  6570. },
  6571. "funding": [
  6572. {
  6573. "url": "https://symfony.com/sponsor",
  6574. "type": "custom"
  6575. },
  6576. {
  6577. "url": "https://github.com/fabpot",
  6578. "type": "github"
  6579. },
  6580. {
  6581. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6582. "type": "tidelift"
  6583. }
  6584. ],
  6585. "time": "2020-12-08T17:03:37+00:00"
  6586. },
  6587. {
  6588. "name": "symfony/service-contracts",
  6589. "version": "v2.2.0",
  6590. "source": {
  6591. "type": "git",
  6592. "url": "https://github.com/symfony/service-contracts.git",
  6593. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1"
  6594. },
  6595. "dist": {
  6596. "type": "zip",
  6597. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  6598. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  6599. "shasum": ""
  6600. },
  6601. "require": {
  6602. "php": ">=7.2.5",
  6603. "psr/container": "^1.0"
  6604. },
  6605. "suggest": {
  6606. "symfony/service-implementation": ""
  6607. },
  6608. "type": "library",
  6609. "extra": {
  6610. "branch-alias": {
  6611. "dev-master": "2.2-dev"
  6612. },
  6613. "thanks": {
  6614. "name": "symfony/contracts",
  6615. "url": "https://github.com/symfony/contracts"
  6616. }
  6617. },
  6618. "autoload": {
  6619. "psr-4": {
  6620. "Symfony\\Contracts\\Service\\": ""
  6621. }
  6622. },
  6623. "notification-url": "https://packagist.org/downloads/",
  6624. "license": [
  6625. "MIT"
  6626. ],
  6627. "authors": [
  6628. {
  6629. "name": "Nicolas Grekas",
  6630. "email": "p@tchwork.com"
  6631. },
  6632. {
  6633. "name": "Symfony Community",
  6634. "homepage": "https://symfony.com/contributors"
  6635. }
  6636. ],
  6637. "description": "Generic abstractions related to writing services",
  6638. "homepage": "https://symfony.com",
  6639. "keywords": [
  6640. "abstractions",
  6641. "contracts",
  6642. "decoupling",
  6643. "interfaces",
  6644. "interoperability",
  6645. "standards"
  6646. ],
  6647. "support": {
  6648. "source": "https://github.com/symfony/service-contracts/tree/master"
  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": "2020-09-07T11:33:47+00:00"
  6665. },
  6666. {
  6667. "name": "symfony/string",
  6668. "version": "v5.2.1",
  6669. "source": {
  6670. "type": "git",
  6671. "url": "https://github.com/symfony/string.git",
  6672. "reference": "5bd67751d2e3f7d6f770c9154b8fbcb2aa05f7ed"
  6673. },
  6674. "dist": {
  6675. "type": "zip",
  6676. "url": "https://api.github.com/repos/symfony/string/zipball/5bd67751d2e3f7d6f770c9154b8fbcb2aa05f7ed",
  6677. "reference": "5bd67751d2e3f7d6f770c9154b8fbcb2aa05f7ed",
  6678. "shasum": ""
  6679. },
  6680. "require": {
  6681. "php": ">=7.2.5",
  6682. "symfony/polyfill-ctype": "~1.8",
  6683. "symfony/polyfill-intl-grapheme": "~1.0",
  6684. "symfony/polyfill-intl-normalizer": "~1.0",
  6685. "symfony/polyfill-mbstring": "~1.0",
  6686. "symfony/polyfill-php80": "~1.15"
  6687. },
  6688. "require-dev": {
  6689. "symfony/error-handler": "^4.4|^5.0",
  6690. "symfony/http-client": "^4.4|^5.0",
  6691. "symfony/translation-contracts": "^1.1|^2",
  6692. "symfony/var-exporter": "^4.4|^5.0"
  6693. },
  6694. "type": "library",
  6695. "autoload": {
  6696. "psr-4": {
  6697. "Symfony\\Component\\String\\": ""
  6698. },
  6699. "files": [
  6700. "Resources/functions.php"
  6701. ],
  6702. "exclude-from-classmap": [
  6703. "/Tests/"
  6704. ]
  6705. },
  6706. "notification-url": "https://packagist.org/downloads/",
  6707. "license": [
  6708. "MIT"
  6709. ],
  6710. "authors": [
  6711. {
  6712. "name": "Nicolas Grekas",
  6713. "email": "p@tchwork.com"
  6714. },
  6715. {
  6716. "name": "Symfony Community",
  6717. "homepage": "https://symfony.com/contributors"
  6718. }
  6719. ],
  6720. "description": "Symfony String component",
  6721. "homepage": "https://symfony.com",
  6722. "keywords": [
  6723. "grapheme",
  6724. "i18n",
  6725. "string",
  6726. "unicode",
  6727. "utf-8",
  6728. "utf8"
  6729. ],
  6730. "support": {
  6731. "source": "https://github.com/symfony/string/tree/v5.2.1"
  6732. },
  6733. "funding": [
  6734. {
  6735. "url": "https://symfony.com/sponsor",
  6736. "type": "custom"
  6737. },
  6738. {
  6739. "url": "https://github.com/fabpot",
  6740. "type": "github"
  6741. },
  6742. {
  6743. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6744. "type": "tidelift"
  6745. }
  6746. ],
  6747. "time": "2020-12-05T07:33:16+00:00"
  6748. },
  6749. {
  6750. "name": "symfony/translation",
  6751. "version": "v5.2.1",
  6752. "source": {
  6753. "type": "git",
  6754. "url": "https://github.com/symfony/translation.git",
  6755. "reference": "a04209ba0d1391c828e5b2373181dac63c52ee70"
  6756. },
  6757. "dist": {
  6758. "type": "zip",
  6759. "url": "https://api.github.com/repos/symfony/translation/zipball/a04209ba0d1391c828e5b2373181dac63c52ee70",
  6760. "reference": "a04209ba0d1391c828e5b2373181dac63c52ee70",
  6761. "shasum": ""
  6762. },
  6763. "require": {
  6764. "php": ">=7.2.5",
  6765. "symfony/polyfill-mbstring": "~1.0",
  6766. "symfony/polyfill-php80": "^1.15",
  6767. "symfony/translation-contracts": "^2.3"
  6768. },
  6769. "conflict": {
  6770. "symfony/config": "<4.4",
  6771. "symfony/dependency-injection": "<5.0",
  6772. "symfony/http-kernel": "<5.0",
  6773. "symfony/twig-bundle": "<5.0",
  6774. "symfony/yaml": "<4.4"
  6775. },
  6776. "provide": {
  6777. "symfony/translation-implementation": "2.0"
  6778. },
  6779. "require-dev": {
  6780. "psr/log": "~1.0",
  6781. "symfony/config": "^4.4|^5.0",
  6782. "symfony/console": "^4.4|^5.0",
  6783. "symfony/dependency-injection": "^5.0",
  6784. "symfony/finder": "^4.4|^5.0",
  6785. "symfony/http-kernel": "^5.0",
  6786. "symfony/intl": "^4.4|^5.0",
  6787. "symfony/service-contracts": "^1.1.2|^2",
  6788. "symfony/yaml": "^4.4|^5.0"
  6789. },
  6790. "suggest": {
  6791. "psr/log-implementation": "To use logging capability in translator",
  6792. "symfony/config": "",
  6793. "symfony/yaml": ""
  6794. },
  6795. "type": "library",
  6796. "autoload": {
  6797. "files": [
  6798. "Resources/functions.php"
  6799. ],
  6800. "psr-4": {
  6801. "Symfony\\Component\\Translation\\": ""
  6802. },
  6803. "exclude-from-classmap": [
  6804. "/Tests/"
  6805. ]
  6806. },
  6807. "notification-url": "https://packagist.org/downloads/",
  6808. "license": [
  6809. "MIT"
  6810. ],
  6811. "authors": [
  6812. {
  6813. "name": "Fabien Potencier",
  6814. "email": "fabien@symfony.com"
  6815. },
  6816. {
  6817. "name": "Symfony Community",
  6818. "homepage": "https://symfony.com/contributors"
  6819. }
  6820. ],
  6821. "description": "Symfony Translation Component",
  6822. "homepage": "https://symfony.com",
  6823. "support": {
  6824. "source": "https://github.com/symfony/translation/tree/v5.2.1"
  6825. },
  6826. "funding": [
  6827. {
  6828. "url": "https://symfony.com/sponsor",
  6829. "type": "custom"
  6830. },
  6831. {
  6832. "url": "https://github.com/fabpot",
  6833. "type": "github"
  6834. },
  6835. {
  6836. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6837. "type": "tidelift"
  6838. }
  6839. ],
  6840. "time": "2020-12-08T17:03:37+00:00"
  6841. },
  6842. {
  6843. "name": "symfony/translation-contracts",
  6844. "version": "v2.3.0",
  6845. "source": {
  6846. "type": "git",
  6847. "url": "https://github.com/symfony/translation-contracts.git",
  6848. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105"
  6849. },
  6850. "dist": {
  6851. "type": "zip",
  6852. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  6853. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  6854. "shasum": ""
  6855. },
  6856. "require": {
  6857. "php": ">=7.2.5"
  6858. },
  6859. "suggest": {
  6860. "symfony/translation-implementation": ""
  6861. },
  6862. "type": "library",
  6863. "extra": {
  6864. "branch-alias": {
  6865. "dev-master": "2.3-dev"
  6866. },
  6867. "thanks": {
  6868. "name": "symfony/contracts",
  6869. "url": "https://github.com/symfony/contracts"
  6870. }
  6871. },
  6872. "autoload": {
  6873. "psr-4": {
  6874. "Symfony\\Contracts\\Translation\\": ""
  6875. }
  6876. },
  6877. "notification-url": "https://packagist.org/downloads/",
  6878. "license": [
  6879. "MIT"
  6880. ],
  6881. "authors": [
  6882. {
  6883. "name": "Nicolas Grekas",
  6884. "email": "p@tchwork.com"
  6885. },
  6886. {
  6887. "name": "Symfony Community",
  6888. "homepage": "https://symfony.com/contributors"
  6889. }
  6890. ],
  6891. "description": "Generic abstractions related to translation",
  6892. "homepage": "https://symfony.com",
  6893. "keywords": [
  6894. "abstractions",
  6895. "contracts",
  6896. "decoupling",
  6897. "interfaces",
  6898. "interoperability",
  6899. "standards"
  6900. ],
  6901. "support": {
  6902. "source": "https://github.com/symfony/translation-contracts/tree/v2.3.0"
  6903. },
  6904. "funding": [
  6905. {
  6906. "url": "https://symfony.com/sponsor",
  6907. "type": "custom"
  6908. },
  6909. {
  6910. "url": "https://github.com/fabpot",
  6911. "type": "github"
  6912. },
  6913. {
  6914. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6915. "type": "tidelift"
  6916. }
  6917. ],
  6918. "time": "2020-09-28T13:05:58+00:00"
  6919. },
  6920. {
  6921. "name": "symfony/var-dumper",
  6922. "version": "v5.2.1",
  6923. "source": {
  6924. "type": "git",
  6925. "url": "https://github.com/symfony/var-dumper.git",
  6926. "reference": "13e7e882eaa55863faa7c4ad7c60f12f1a8b5089"
  6927. },
  6928. "dist": {
  6929. "type": "zip",
  6930. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/13e7e882eaa55863faa7c4ad7c60f12f1a8b5089",
  6931. "reference": "13e7e882eaa55863faa7c4ad7c60f12f1a8b5089",
  6932. "shasum": ""
  6933. },
  6934. "require": {
  6935. "php": ">=7.2.5",
  6936. "symfony/polyfill-mbstring": "~1.0",
  6937. "symfony/polyfill-php80": "^1.15"
  6938. },
  6939. "conflict": {
  6940. "phpunit/phpunit": "<5.4.3",
  6941. "symfony/console": "<4.4"
  6942. },
  6943. "require-dev": {
  6944. "ext-iconv": "*",
  6945. "symfony/console": "^4.4|^5.0",
  6946. "symfony/process": "^4.4|^5.0",
  6947. "twig/twig": "^2.4|^3.0"
  6948. },
  6949. "suggest": {
  6950. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  6951. "ext-intl": "To show region name in time zone dump",
  6952. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  6953. },
  6954. "bin": [
  6955. "Resources/bin/var-dump-server"
  6956. ],
  6957. "type": "library",
  6958. "autoload": {
  6959. "files": [
  6960. "Resources/functions/dump.php"
  6961. ],
  6962. "psr-4": {
  6963. "Symfony\\Component\\VarDumper\\": ""
  6964. },
  6965. "exclude-from-classmap": [
  6966. "/Tests/"
  6967. ]
  6968. },
  6969. "notification-url": "https://packagist.org/downloads/",
  6970. "license": [
  6971. "MIT"
  6972. ],
  6973. "authors": [
  6974. {
  6975. "name": "Nicolas Grekas",
  6976. "email": "p@tchwork.com"
  6977. },
  6978. {
  6979. "name": "Symfony Community",
  6980. "homepage": "https://symfony.com/contributors"
  6981. }
  6982. ],
  6983. "description": "Symfony mechanism for exploring and dumping PHP variables",
  6984. "homepage": "https://symfony.com",
  6985. "keywords": [
  6986. "debug",
  6987. "dump"
  6988. ],
  6989. "support": {
  6990. "source": "https://github.com/symfony/var-dumper/tree/v5.2.1"
  6991. },
  6992. "funding": [
  6993. {
  6994. "url": "https://symfony.com/sponsor",
  6995. "type": "custom"
  6996. },
  6997. {
  6998. "url": "https://github.com/fabpot",
  6999. "type": "github"
  7000. },
  7001. {
  7002. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7003. "type": "tidelift"
  7004. }
  7005. ],
  7006. "time": "2020-12-16T17:02:19+00:00"
  7007. },
  7008. {
  7009. "name": "symfony/yaml",
  7010. "version": "v5.2.1",
  7011. "source": {
  7012. "type": "git",
  7013. "url": "https://github.com/symfony/yaml.git",
  7014. "reference": "290ea5e03b8cf9b42c783163123f54441fb06939"
  7015. },
  7016. "dist": {
  7017. "type": "zip",
  7018. "url": "https://api.github.com/repos/symfony/yaml/zipball/290ea5e03b8cf9b42c783163123f54441fb06939",
  7019. "reference": "290ea5e03b8cf9b42c783163123f54441fb06939",
  7020. "shasum": ""
  7021. },
  7022. "require": {
  7023. "php": ">=7.2.5",
  7024. "symfony/deprecation-contracts": "^2.1",
  7025. "symfony/polyfill-ctype": "~1.8"
  7026. },
  7027. "conflict": {
  7028. "symfony/console": "<4.4"
  7029. },
  7030. "require-dev": {
  7031. "symfony/console": "^4.4|^5.0"
  7032. },
  7033. "suggest": {
  7034. "symfony/console": "For validating YAML files using the lint command"
  7035. },
  7036. "bin": [
  7037. "Resources/bin/yaml-lint"
  7038. ],
  7039. "type": "library",
  7040. "autoload": {
  7041. "psr-4": {
  7042. "Symfony\\Component\\Yaml\\": ""
  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": "Fabien Potencier",
  7055. "email": "fabien@symfony.com"
  7056. },
  7057. {
  7058. "name": "Symfony Community",
  7059. "homepage": "https://symfony.com/contributors"
  7060. }
  7061. ],
  7062. "description": "Symfony Yaml Component",
  7063. "homepage": "https://symfony.com",
  7064. "support": {
  7065. "source": "https://github.com/symfony/yaml/tree/v5.2.1"
  7066. },
  7067. "funding": [
  7068. {
  7069. "url": "https://symfony.com/sponsor",
  7070. "type": "custom"
  7071. },
  7072. {
  7073. "url": "https://github.com/fabpot",
  7074. "type": "github"
  7075. },
  7076. {
  7077. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7078. "type": "tidelift"
  7079. }
  7080. ],
  7081. "time": "2020-12-08T17:02:38+00:00"
  7082. },
  7083. {
  7084. "name": "tijsverkoyen/css-to-inline-styles",
  7085. "version": "2.2.3",
  7086. "source": {
  7087. "type": "git",
  7088. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7089. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5"
  7090. },
  7091. "dist": {
  7092. "type": "zip",
  7093. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/b43b05cf43c1b6d849478965062b6ef73e223bb5",
  7094. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5",
  7095. "shasum": ""
  7096. },
  7097. "require": {
  7098. "ext-dom": "*",
  7099. "ext-libxml": "*",
  7100. "php": "^5.5 || ^7.0 || ^8.0",
  7101. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0"
  7102. },
  7103. "require-dev": {
  7104. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5"
  7105. },
  7106. "type": "library",
  7107. "extra": {
  7108. "branch-alias": {
  7109. "dev-master": "2.2.x-dev"
  7110. }
  7111. },
  7112. "autoload": {
  7113. "psr-4": {
  7114. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  7115. }
  7116. },
  7117. "notification-url": "https://packagist.org/downloads/",
  7118. "license": [
  7119. "BSD-3-Clause"
  7120. ],
  7121. "authors": [
  7122. {
  7123. "name": "Tijs Verkoyen",
  7124. "email": "css_to_inline_styles@verkoyen.eu",
  7125. "role": "Developer"
  7126. }
  7127. ],
  7128. "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.",
  7129. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  7130. "support": {
  7131. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  7132. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.3"
  7133. },
  7134. "time": "2020-07-13T06:12:54+00:00"
  7135. },
  7136. {
  7137. "name": "tymon/jwt-auth",
  7138. "version": "1.0.2",
  7139. "source": {
  7140. "type": "git",
  7141. "url": "https://github.com/tymondesigns/jwt-auth.git",
  7142. "reference": "e588cb719539366c0e2f6017f975379cb73e9680"
  7143. },
  7144. "dist": {
  7145. "type": "zip",
  7146. "url": "https://api.github.com/repos/tymondesigns/jwt-auth/zipball/e588cb719539366c0e2f6017f975379cb73e9680",
  7147. "reference": "e588cb719539366c0e2f6017f975379cb73e9680",
  7148. "shasum": ""
  7149. },
  7150. "require": {
  7151. "illuminate/auth": "^5.2|^6|^7|^8",
  7152. "illuminate/contracts": "^5.2|^6|^7|^8",
  7153. "illuminate/http": "^5.2|^6|^7|^8",
  7154. "illuminate/support": "^5.2|^6|^7|^8",
  7155. "lcobucci/jwt": "<3.4",
  7156. "namshi/jose": "^7.0",
  7157. "nesbot/carbon": "^1.0|^2.0",
  7158. "php": "^5.5.9|^7.0"
  7159. },
  7160. "require-dev": {
  7161. "illuminate/console": "^5.2|^6|^7|^8",
  7162. "illuminate/database": "^5.2|^6|^7|^8",
  7163. "illuminate/routing": "^5.2|^6|^7|^8",
  7164. "mockery/mockery": ">=0.9.9",
  7165. "phpunit/phpunit": "~4.8|~6.0"
  7166. },
  7167. "type": "library",
  7168. "extra": {
  7169. "branch-alias": {
  7170. "dev-develop": "1.0-dev"
  7171. },
  7172. "laravel": {
  7173. "aliases": {
  7174. "JWTAuth": "Tymon\\JWTAuth\\Facades\\JWTAuth",
  7175. "JWTFactory": "Tymon\\JWTAuth\\Facades\\JWTFactory"
  7176. },
  7177. "providers": [
  7178. "Tymon\\JWTAuth\\Providers\\LaravelServiceProvider"
  7179. ]
  7180. }
  7181. },
  7182. "autoload": {
  7183. "psr-4": {
  7184. "Tymon\\JWTAuth\\": "src/"
  7185. }
  7186. },
  7187. "notification-url": "https://packagist.org/downloads/",
  7188. "license": [
  7189. "MIT"
  7190. ],
  7191. "authors": [
  7192. {
  7193. "name": "Sean Tymon",
  7194. "email": "tymon148@gmail.com",
  7195. "homepage": "https://tymon.xyz",
  7196. "role": "Developer"
  7197. }
  7198. ],
  7199. "description": "JSON Web Token Authentication for Laravel and Lumen",
  7200. "homepage": "https://github.com/tymondesigns/jwt-auth",
  7201. "keywords": [
  7202. "Authentication",
  7203. "JSON Web Token",
  7204. "auth",
  7205. "jwt",
  7206. "laravel"
  7207. ],
  7208. "support": {
  7209. "issues": "https://github.com/tymondesigns/jwt-auth/issues",
  7210. "source": "https://github.com/tymondesigns/jwt-auth"
  7211. },
  7212. "funding": [
  7213. {
  7214. "url": "https://www.patreon.com/seantymon",
  7215. "type": "patreon"
  7216. }
  7217. ],
  7218. "time": "2020-11-27T12:32:42+00:00"
  7219. },
  7220. {
  7221. "name": "vlucas/phpdotenv",
  7222. "version": "v4.1.8",
  7223. "source": {
  7224. "type": "git",
  7225. "url": "https://github.com/vlucas/phpdotenv.git",
  7226. "reference": "572af79d913627a9d70374d27a6f5d689a35de32"
  7227. },
  7228. "dist": {
  7229. "type": "zip",
  7230. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/572af79d913627a9d70374d27a6f5d689a35de32",
  7231. "reference": "572af79d913627a9d70374d27a6f5d689a35de32",
  7232. "shasum": ""
  7233. },
  7234. "require": {
  7235. "php": "^5.5.9 || ^7.0 || ^8.0",
  7236. "phpoption/phpoption": "^1.7.3",
  7237. "symfony/polyfill-ctype": "^1.17"
  7238. },
  7239. "require-dev": {
  7240. "bamarni/composer-bin-plugin": "^1.4.1",
  7241. "ext-filter": "*",
  7242. "ext-pcre": "*",
  7243. "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0"
  7244. },
  7245. "suggest": {
  7246. "ext-filter": "Required to use the boolean validator.",
  7247. "ext-pcre": "Required to use most of the library."
  7248. },
  7249. "type": "library",
  7250. "extra": {
  7251. "branch-alias": {
  7252. "dev-master": "4.1-dev"
  7253. }
  7254. },
  7255. "autoload": {
  7256. "psr-4": {
  7257. "Dotenv\\": "src/"
  7258. }
  7259. },
  7260. "notification-url": "https://packagist.org/downloads/",
  7261. "license": [
  7262. "BSD-3-Clause"
  7263. ],
  7264. "authors": [
  7265. {
  7266. "name": "Graham Campbell",
  7267. "email": "graham@alt-three.com",
  7268. "homepage": "https://gjcampbell.co.uk/"
  7269. },
  7270. {
  7271. "name": "Vance Lucas",
  7272. "email": "vance@vancelucas.com",
  7273. "homepage": "https://vancelucas.com/"
  7274. }
  7275. ],
  7276. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7277. "keywords": [
  7278. "dotenv",
  7279. "env",
  7280. "environment"
  7281. ],
  7282. "support": {
  7283. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7284. "source": "https://github.com/vlucas/phpdotenv/tree/4.1"
  7285. },
  7286. "funding": [
  7287. {
  7288. "url": "https://github.com/GrahamCampbell",
  7289. "type": "github"
  7290. },
  7291. {
  7292. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7293. "type": "tidelift"
  7294. }
  7295. ],
  7296. "time": "2020-07-14T19:22:52+00:00"
  7297. },
  7298. {
  7299. "name": "voku/portable-ascii",
  7300. "version": "1.5.6",
  7301. "source": {
  7302. "type": "git",
  7303. "url": "https://github.com/voku/portable-ascii.git",
  7304. "reference": "80953678b19901e5165c56752d087fc11526017c"
  7305. },
  7306. "dist": {
  7307. "type": "zip",
  7308. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/80953678b19901e5165c56752d087fc11526017c",
  7309. "reference": "80953678b19901e5165c56752d087fc11526017c",
  7310. "shasum": ""
  7311. },
  7312. "require": {
  7313. "php": ">=7.0.0"
  7314. },
  7315. "require-dev": {
  7316. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  7317. },
  7318. "suggest": {
  7319. "ext-intl": "Use Intl for transliterator_transliterate() support"
  7320. },
  7321. "type": "library",
  7322. "autoload": {
  7323. "psr-4": {
  7324. "voku\\": "src/voku/"
  7325. }
  7326. },
  7327. "notification-url": "https://packagist.org/downloads/",
  7328. "license": [
  7329. "MIT"
  7330. ],
  7331. "authors": [
  7332. {
  7333. "name": "Lars Moelleken",
  7334. "homepage": "http://www.moelleken.org/"
  7335. }
  7336. ],
  7337. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  7338. "homepage": "https://github.com/voku/portable-ascii",
  7339. "keywords": [
  7340. "ascii",
  7341. "clean",
  7342. "php"
  7343. ],
  7344. "support": {
  7345. "issues": "https://github.com/voku/portable-ascii/issues",
  7346. "source": "https://github.com/voku/portable-ascii/tree/1.5.6"
  7347. },
  7348. "funding": [
  7349. {
  7350. "url": "https://www.paypal.me/moelleken",
  7351. "type": "custom"
  7352. },
  7353. {
  7354. "url": "https://github.com/voku",
  7355. "type": "github"
  7356. },
  7357. {
  7358. "url": "https://opencollective.com/portable-ascii",
  7359. "type": "open_collective"
  7360. },
  7361. {
  7362. "url": "https://www.patreon.com/voku",
  7363. "type": "patreon"
  7364. },
  7365. {
  7366. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  7367. "type": "tidelift"
  7368. }
  7369. ],
  7370. "time": "2020-11-12T00:07:28+00:00"
  7371. },
  7372. {
  7373. "name": "xhat/payjs",
  7374. "version": "1.5.0",
  7375. "source": {
  7376. "type": "git",
  7377. "url": "https://github.com/xhat/payjs.git",
  7378. "reference": "d15b678f7fb70fc70bafa82c5a7896fceebad364"
  7379. },
  7380. "dist": {
  7381. "type": "zip",
  7382. "url": "https://api.github.com/repos/xhat/payjs/zipball/d15b678f7fb70fc70bafa82c5a7896fceebad364",
  7383. "reference": "d15b678f7fb70fc70bafa82c5a7896fceebad364",
  7384. "shasum": ""
  7385. },
  7386. "type": "library",
  7387. "autoload": {
  7388. "psr-4": {
  7389. "Xhat\\Payjs\\": "src/"
  7390. }
  7391. },
  7392. "notification-url": "https://packagist.org/downloads/",
  7393. "license": [
  7394. "MIT"
  7395. ],
  7396. "authors": [
  7397. {
  7398. "name": "andy",
  7399. "email": "andy@popfeng.com"
  7400. }
  7401. ],
  7402. "description": "本项目是基于 PAYJS 的 API 开发的 Composer Package,可直接用于生产环境 https://payjs.cn",
  7403. "support": {
  7404. "issues": "https://github.com/xhat/payjs/issues",
  7405. "source": "https://github.com/xhat/payjs/tree/1.5.0"
  7406. },
  7407. "funding": [
  7408. {
  7409. "url": "https://payjs.cn/sponsor/dajjxz",
  7410. "type": "custom"
  7411. }
  7412. ],
  7413. "time": "2020-09-11T06:02:42+00:00"
  7414. },
  7415. {
  7416. "name": "zbrettonye/geetest",
  7417. "version": "v1.2.0",
  7418. "source": {
  7419. "type": "git",
  7420. "url": "https://github.com/ZBrettonYe/geetest.git",
  7421. "reference": "ee08e5bee9be831c23df241d3ab75678a8ce5fed"
  7422. },
  7423. "dist": {
  7424. "type": "zip",
  7425. "url": "https://api.github.com/repos/ZBrettonYe/geetest/zipball/ee08e5bee9be831c23df241d3ab75678a8ce5fed",
  7426. "reference": "ee08e5bee9be831c23df241d3ab75678a8ce5fed",
  7427. "shasum": ""
  7428. },
  7429. "require": {
  7430. "ext-json": "*",
  7431. "guzzlehttp/guzzle": "^6.3|^7.0",
  7432. "illuminate/routing": "^6|^7|^8",
  7433. "illuminate/support": "^6|^7|^8",
  7434. "php": "^7.2"
  7435. },
  7436. "require-dev": {
  7437. "mockery/mockery": "^1.3.1",
  7438. "phpunit/phpunit": "^7.5.15|^8.4|^9.0"
  7439. },
  7440. "type": "library",
  7441. "extra": {
  7442. "laravel": {
  7443. "providers": [
  7444. "ZBrettonYe\\Geetest\\GeetestServiceProvider"
  7445. ],
  7446. "aliases": {
  7447. "Geetest": "ZBrettonYe\\Geetest\\Geetest"
  7448. }
  7449. }
  7450. },
  7451. "autoload": {
  7452. "psr-4": {
  7453. "ZBrettonYe\\Geetest\\": "src/"
  7454. }
  7455. },
  7456. "notification-url": "https://packagist.org/downloads/",
  7457. "license": [
  7458. "MIT"
  7459. ],
  7460. "authors": [
  7461. {
  7462. "name": "zbrettonye",
  7463. "email": "monkeyblacktech97@gmail.com"
  7464. }
  7465. ],
  7466. "description": "Geetest Package for Laravel6-8",
  7467. "keywords": [
  7468. "geetest",
  7469. "laravel"
  7470. ],
  7471. "support": {
  7472. "source": "https://github.com/ZBrettonYe/geetest/tree/v1.2.0"
  7473. },
  7474. "time": "2020-10-13T20:15:36+00:00"
  7475. },
  7476. {
  7477. "name": "zbrettonye/hcaptcha",
  7478. "version": "V1.1.0",
  7479. "source": {
  7480. "type": "git",
  7481. "url": "https://github.com/ZBrettonYe/hcaptcha.git",
  7482. "reference": "d84cb1bcf754ada345da8baadf7129dbca67d1ee"
  7483. },
  7484. "dist": {
  7485. "type": "zip",
  7486. "url": "https://api.github.com/repos/ZBrettonYe/hcaptcha/zipball/d84cb1bcf754ada345da8baadf7129dbca67d1ee",
  7487. "reference": "d84cb1bcf754ada345da8baadf7129dbca67d1ee",
  7488. "shasum": ""
  7489. },
  7490. "require": {
  7491. "guzzlehttp/guzzle": "^6.2|^7.0",
  7492. "illuminate/support": "^6|^7|^8",
  7493. "php": "^7.2"
  7494. },
  7495. "require-dev": {
  7496. "phpunit/phpunit": "~4.8"
  7497. },
  7498. "type": "library",
  7499. "extra": {
  7500. "laravel": {
  7501. "providers": [
  7502. "ZBrettonYe\\HCaptcha\\HCaptchaServiceProvider"
  7503. ],
  7504. "aliases": {
  7505. "HCaptcha": "ZBrettonYe\\HCaptcha\\Facades\\HCaptcha"
  7506. }
  7507. }
  7508. },
  7509. "autoload": {
  7510. "psr-4": {
  7511. "ZBrettonYe\\HCaptcha\\": "src/"
  7512. }
  7513. },
  7514. "notification-url": "https://packagist.org/downloads/",
  7515. "license": [
  7516. "MIT"
  7517. ],
  7518. "authors": [
  7519. {
  7520. "name": "zbrettonye",
  7521. "email": "monkeyblacktech97@gmail.com"
  7522. }
  7523. ],
  7524. "description": "hCaptcha For Laravel6~8",
  7525. "keywords": [
  7526. "captcha",
  7527. "hcaptcha",
  7528. "laravel"
  7529. ],
  7530. "support": {
  7531. "source": "https://github.com/ZBrettonYe/hcaptcha/tree/V1.1.0"
  7532. },
  7533. "time": "2020-10-13T21:22:51+00:00"
  7534. },
  7535. {
  7536. "name": "zbrettonye/no-captcha",
  7537. "version": "v1.1.0",
  7538. "source": {
  7539. "type": "git",
  7540. "url": "https://github.com/ZBrettonYe/no-captcha.git",
  7541. "reference": "4cb229bf5fa9f5726eb5a821e9710c5fc8edad28"
  7542. },
  7543. "dist": {
  7544. "type": "zip",
  7545. "url": "https://api.github.com/repos/ZBrettonYe/no-captcha/zipball/4cb229bf5fa9f5726eb5a821e9710c5fc8edad28",
  7546. "reference": "4cb229bf5fa9f5726eb5a821e9710c5fc8edad28",
  7547. "shasum": ""
  7548. },
  7549. "require": {
  7550. "ext-json": "*",
  7551. "guzzlehttp/guzzle": "^6.2|^7.0",
  7552. "illuminate/support": "^6|^7|^8",
  7553. "php": "^7.2"
  7554. },
  7555. "require-dev": {
  7556. "phpunit/phpunit": "~4.8"
  7557. },
  7558. "type": "library",
  7559. "extra": {
  7560. "laravel": {
  7561. "providers": [
  7562. "ZBrettonYe\\NoCaptcha\\NoCaptchaServiceProvider"
  7563. ],
  7564. "aliases": {
  7565. "NoCaptcha": "ZBrettonYe\\NoCaptcha\\Facades\\NoCaptcha"
  7566. }
  7567. }
  7568. },
  7569. "autoload": {
  7570. "psr-4": {
  7571. "ZBrettonYe\\NoCaptcha\\": "src/"
  7572. }
  7573. },
  7574. "notification-url": "https://packagist.org/downloads/",
  7575. "license": [
  7576. "MIT"
  7577. ],
  7578. "authors": [
  7579. {
  7580. "name": "zbrettonye",
  7581. "email": "monkeyblacktech97@gmail.com"
  7582. }
  7583. ],
  7584. "description": "No CAPTCHA reCAPTCHA For Laravel6~8",
  7585. "keywords": [
  7586. "captcha",
  7587. "laravel",
  7588. "no-captcha",
  7589. "recaptcha"
  7590. ],
  7591. "support": {
  7592. "source": "https://github.com/ZBrettonYe/no-captcha/tree/v1.1.0"
  7593. },
  7594. "time": "2020-10-13T21:35:30+00:00"
  7595. },
  7596. {
  7597. "name": "zoujingli/ip2region",
  7598. "version": "v1.0.9",
  7599. "source": {
  7600. "type": "git",
  7601. "url": "https://github.com/zoujingli/ip2region.git",
  7602. "reference": "e48f9122f50dd3b79295e35b4acdd0dcd2608ca8"
  7603. },
  7604. "dist": {
  7605. "type": "zip",
  7606. "url": "https://api.github.com/repos/zoujingli/ip2region/zipball/e48f9122f50dd3b79295e35b4acdd0dcd2608ca8",
  7607. "reference": "e48f9122f50dd3b79295e35b4acdd0dcd2608ca8",
  7608. "shasum": ""
  7609. },
  7610. "require": {
  7611. "php": ">=5.3"
  7612. },
  7613. "type": "library",
  7614. "autoload": {
  7615. "classmap": [
  7616. "Ip2Region.php"
  7617. ]
  7618. },
  7619. "notification-url": "https://packagist.org/downloads/",
  7620. "license": [
  7621. "Apache-2.0"
  7622. ],
  7623. "authors": [
  7624. {
  7625. "name": "Anyon",
  7626. "email": "zoujingli@qq.com",
  7627. "homepage": "http://ctolog.com"
  7628. }
  7629. ],
  7630. "description": "Ip2Region for PHP",
  7631. "homepage": "https://github.com/zoujingli/Ip2Region",
  7632. "keywords": [
  7633. "Ip2Region"
  7634. ],
  7635. "support": {
  7636. "issues": "https://github.com/zoujingli/ip2region/issues",
  7637. "source": "https://github.com/zoujingli/ip2region/tree/v1.0.9"
  7638. },
  7639. "time": "2020-11-06T07:21:55+00:00"
  7640. }
  7641. ],
  7642. "packages-dev": [
  7643. {
  7644. "name": "andrey-helldar/laravel-lang-publisher",
  7645. "version": "v6.2.0",
  7646. "source": {
  7647. "type": "git",
  7648. "url": "https://github.com/andrey-helldar/laravel-lang-publisher.git",
  7649. "reference": "950458ca9d43dbbd0a8ec228a26b670c8f93cf94"
  7650. },
  7651. "dist": {
  7652. "type": "zip",
  7653. "url": "https://api.github.com/repos/andrey-helldar/laravel-lang-publisher/zipball/950458ca9d43dbbd0a8ec228a26b670c8f93cf94",
  7654. "reference": "950458ca9d43dbbd0a8ec228a26b670c8f93cf94",
  7655. "shasum": ""
  7656. },
  7657. "require": {
  7658. "andrey-helldar/pretty-array": "^1.4.2",
  7659. "andrey-helldar/support": "^1.4.1",
  7660. "ext-json": "*",
  7661. "illuminate/console": "^7.0|^8.0",
  7662. "illuminate/support": "^7.0|^8.0",
  7663. "laravel-lang/lang": "^7.0",
  7664. "php": "^7.2.5|^8.0"
  7665. },
  7666. "require-dev": {
  7667. "mockery/mockery": "^1.3.1",
  7668. "orchestra/testbench": "^5.0|^6.0",
  7669. "phpunit/phpunit": "^8.4|^9.0"
  7670. },
  7671. "suggest": {
  7672. "andrey-helldar/lang-translations": "Translation of main messages",
  7673. "laravel/jetstream": "Tailwind scaffolding for the Laravel framework.",
  7674. "symfony/thanks": "Give thanks (in the form of a GitHub) to your fellow PHP package maintainers"
  7675. },
  7676. "type": "library",
  7677. "extra": {
  7678. "laravel": {
  7679. "providers": [
  7680. "Helldar\\LaravelLangPublisher\\ServiceProvider"
  7681. ]
  7682. }
  7683. },
  7684. "autoload": {
  7685. "psr-4": {
  7686. "Helldar\\LaravelLangPublisher\\": "src"
  7687. }
  7688. },
  7689. "notification-url": "https://packagist.org/downloads/",
  7690. "license": [
  7691. "MIT"
  7692. ],
  7693. "authors": [
  7694. {
  7695. "name": "Andrey Helldar",
  7696. "email": "helldar@ai-rus.com"
  7697. }
  7698. ],
  7699. "description": "Publisher lang files for the Laravel Framework + Laravel Jetstream from Laravel-Lang/lang",
  7700. "keywords": [
  7701. "fortify",
  7702. "i18n",
  7703. "jetstream",
  7704. "lang",
  7705. "languages",
  7706. "laravel",
  7707. "locale",
  7708. "localization",
  7709. "lpm",
  7710. "lumen",
  7711. "publisher",
  7712. "trans",
  7713. "translations",
  7714. "validations"
  7715. ],
  7716. "support": {
  7717. "issues": "https://github.com/andrey-helldar/laravel-lang-publisher/issues",
  7718. "source": "https://github.com/andrey-helldar/laravel-lang-publisher"
  7719. },
  7720. "funding": [
  7721. {
  7722. "url": "https://money.yandex.ru/to/410012115955701",
  7723. "type": "custom"
  7724. },
  7725. {
  7726. "url": "https://paypal.me/helldar",
  7727. "type": "custom"
  7728. }
  7729. ],
  7730. "time": "2020-11-30T10:15:29+00:00"
  7731. },
  7732. {
  7733. "name": "andrey-helldar/pretty-array",
  7734. "version": "v1.5.0",
  7735. "source": {
  7736. "type": "git",
  7737. "url": "https://github.com/andrey-helldar/pretty-array.git",
  7738. "reference": "925db552d4f7f9c0a31cbce0f58518260d80e543"
  7739. },
  7740. "dist": {
  7741. "type": "zip",
  7742. "url": "https://api.github.com/repos/andrey-helldar/pretty-array/zipball/925db552d4f7f9c0a31cbce0f58518260d80e543",
  7743. "reference": "925db552d4f7f9c0a31cbce0f58518260d80e543",
  7744. "shasum": ""
  7745. },
  7746. "require": {
  7747. "andrey-helldar/support": "^1.16.0",
  7748. "ext-dom": "*",
  7749. "ext-mbstring": "*",
  7750. "php": "^7.1.3|^8.0"
  7751. },
  7752. "require-dev": {
  7753. "phpstan/phpstan": "^0.12.7",
  7754. "phpunit/phpunit": "^7.0|^8.0"
  7755. },
  7756. "suggest": {
  7757. "symfony/thanks": "Give thanks (in the form of a GitHub) to your fellow PHP package maintainers"
  7758. },
  7759. "type": "library",
  7760. "autoload": {
  7761. "psr-4": {
  7762. "Helldar\\PrettyArray\\": "src/"
  7763. }
  7764. },
  7765. "notification-url": "https://packagist.org/downloads/",
  7766. "license": [
  7767. "MIT"
  7768. ],
  7769. "authors": [
  7770. {
  7771. "name": "Andrey Helldar",
  7772. "email": "helldar@ai-rus.com"
  7773. }
  7774. ],
  7775. "description": "Simple conversion of an array to a pretty view.",
  7776. "keywords": [
  7777. "array",
  7778. "pretty",
  7779. "pretty array"
  7780. ],
  7781. "support": {
  7782. "issues": "https://github.com/andrey-helldar/pretty-array/issues",
  7783. "source": "https://github.com/andrey-helldar/pretty-array"
  7784. },
  7785. "funding": [
  7786. {
  7787. "url": "https://money.yandex.ru/to/410012115955701",
  7788. "type": "custom"
  7789. },
  7790. {
  7791. "url": "https://paypal.me/helldar",
  7792. "type": "custom"
  7793. }
  7794. ],
  7795. "time": "2020-11-30T10:28:20+00:00"
  7796. },
  7797. {
  7798. "name": "andrey-helldar/support",
  7799. "version": "v1.30.3",
  7800. "source": {
  7801. "type": "git",
  7802. "url": "https://github.com/andrey-helldar/support.git",
  7803. "reference": "6278f7ba38fdbfb3a22b602a67620e1133703464"
  7804. },
  7805. "dist": {
  7806. "type": "zip",
  7807. "url": "https://api.github.com/repos/andrey-helldar/support/zipball/6278f7ba38fdbfb3a22b602a67620e1133703464",
  7808. "reference": "6278f7ba38fdbfb3a22b602a67620e1133703464",
  7809. "shasum": ""
  7810. },
  7811. "require": {
  7812. "ext-ctype": "*",
  7813. "ext-dom": "*",
  7814. "ext-json": "*",
  7815. "ext-mbstring": "*",
  7816. "php": "^7.1.3|^8.0",
  7817. "symfony/deprecation-contracts": "^2.0"
  7818. },
  7819. "require-dev": {
  7820. "ext-bcmath": "*",
  7821. "phpunit/phpunit": "^9.0"
  7822. },
  7823. "suggest": {
  7824. "andrey-helldar/laravel-support": "Various helper files for the Laravel and Lumen frameworks",
  7825. "ext-bcmath": "Require the extension if you will be using Helldar\\Support\\Facades\\Digit.",
  7826. "symfony/thanks": "Give thanks (in the form of a GitHub) to your fellow PHP package maintainers"
  7827. },
  7828. "type": "library",
  7829. "extra": {
  7830. "laravel": {
  7831. "providers": [
  7832. "Helldar\\Support\\ServiceProvider"
  7833. ]
  7834. }
  7835. },
  7836. "autoload": {
  7837. "psr-4": {
  7838. "Helldar\\Support\\": "src"
  7839. },
  7840. "files": [
  7841. "src/helpers/digit.php",
  7842. "src/helpers/dumper.php",
  7843. "src/helpers/http.php",
  7844. "src/helpers/strings.php"
  7845. ]
  7846. },
  7847. "notification-url": "https://packagist.org/downloads/",
  7848. "license": [
  7849. "MIT"
  7850. ],
  7851. "authors": [
  7852. {
  7853. "name": "Andrey Helldar",
  7854. "email": "helldar@ai-rus.com"
  7855. }
  7856. ],
  7857. "description": "Support package is a collection of helpers and tools for projects.",
  7858. "keywords": [
  7859. "framework",
  7860. "laravel",
  7861. "support",
  7862. "symfony",
  7863. "yii",
  7864. "yii2"
  7865. ],
  7866. "support": {
  7867. "issues": "https://github.com/andrey-helldar/support/issues",
  7868. "source": "https://github.com/andrey-helldar/support"
  7869. },
  7870. "funding": [
  7871. {
  7872. "url": "https://money.yandex.ru/to/410012115955701",
  7873. "type": "custom"
  7874. },
  7875. {
  7876. "url": "https://paypal.me/helldar",
  7877. "type": "custom"
  7878. }
  7879. ],
  7880. "time": "2020-12-29T18:59:09+00:00"
  7881. },
  7882. {
  7883. "name": "arcanedev/laravel-lang",
  7884. "version": "8.0.0",
  7885. "source": {
  7886. "type": "git",
  7887. "url": "https://github.com/ARCANEDEV/LaravelLang.git",
  7888. "reference": "8b1711a37bbab081973920ad19a729dc0df2ca4b"
  7889. },
  7890. "dist": {
  7891. "type": "zip",
  7892. "url": "https://api.github.com/repos/ARCANEDEV/LaravelLang/zipball/8b1711a37bbab081973920ad19a729dc0df2ca4b",
  7893. "reference": "8b1711a37bbab081973920ad19a729dc0df2ca4b",
  7894. "shasum": ""
  7895. },
  7896. "require": {
  7897. "arcanedev/support": "^7.1.2",
  7898. "caouecs/laravel-lang": "^6.0",
  7899. "php": "^7.2.5"
  7900. },
  7901. "require-dev": {
  7902. "mockery/mockery": "^1.3.1",
  7903. "orchestra/testbench": "^5.0",
  7904. "phpunit/phpunit": "^8.5|^9.0"
  7905. },
  7906. "type": "library",
  7907. "extra": {
  7908. "laravel": {
  7909. "providers": [
  7910. "Arcanedev\\LaravelLang\\LaravelLangServiceProvider",
  7911. "Arcanedev\\LaravelLang\\Providers\\DeferredServicesProvider",
  7912. "Arcanedev\\LaravelLang\\Providers\\TranslationServiceProvider"
  7913. ]
  7914. }
  7915. },
  7916. "autoload": {
  7917. "psr-4": {
  7918. "Arcanedev\\LaravelLang\\": "src/"
  7919. }
  7920. },
  7921. "notification-url": "https://packagist.org/downloads/",
  7922. "license": [
  7923. "MIT"
  7924. ],
  7925. "authors": [
  7926. {
  7927. "name": "ARCANEDEV",
  7928. "email": "arcanedev.maroc@gmail.com",
  7929. "homepage": "https://github.com/arcanedev-maroc",
  7930. "role": "Developer"
  7931. }
  7932. ],
  7933. "description": "Translations manager and checker for Laravel 5 based on 'caouecs/laravel4-lang' package.",
  7934. "homepage": "https://github.com/ARCANEDEV/LaravelLang",
  7935. "keywords": [
  7936. "arcanedev",
  7937. "lang",
  7938. "languages",
  7939. "laravel",
  7940. "localisation",
  7941. "localization",
  7942. "trans",
  7943. "translations",
  7944. "validations"
  7945. ],
  7946. "support": {
  7947. "issues": "https://github.com/ARCANEDEV/LaravelLang/issues",
  7948. "source": "https://github.com/ARCANEDEV/LaravelLang/tree/master"
  7949. },
  7950. "time": "2020-03-21T21:29:29+00:00"
  7951. },
  7952. {
  7953. "name": "arcanedev/support",
  7954. "version": "7.1.2",
  7955. "source": {
  7956. "type": "git",
  7957. "url": "https://github.com/ARCANEDEV/Support.git",
  7958. "reference": "7e4199d30f04c611ba5d895e663f111c217ff5a3"
  7959. },
  7960. "dist": {
  7961. "type": "zip",
  7962. "url": "https://api.github.com/repos/ARCANEDEV/Support/zipball/7e4199d30f04c611ba5d895e663f111c217ff5a3",
  7963. "reference": "7e4199d30f04c611ba5d895e663f111c217ff5a3",
  7964. "shasum": ""
  7965. },
  7966. "require": {
  7967. "illuminate/filesystem": "^7.0",
  7968. "illuminate/support": "^7.0",
  7969. "php": "^7.2.5"
  7970. },
  7971. "require-dev": {
  7972. "orchestra/testbench": "^5.0",
  7973. "phpunit/phpunit": "^8.0|^9.0"
  7974. },
  7975. "type": "library",
  7976. "extra": {
  7977. "branch-alias": {
  7978. "dev-master": "7.x-dev"
  7979. }
  7980. },
  7981. "autoload": {
  7982. "psr-4": {
  7983. "Arcanedev\\Support\\": "src/"
  7984. },
  7985. "files": [
  7986. "helpers.php"
  7987. ]
  7988. },
  7989. "notification-url": "https://packagist.org/downloads/",
  7990. "license": [
  7991. "MIT"
  7992. ],
  7993. "authors": [
  7994. {
  7995. "name": "ARCANEDEV",
  7996. "email": "arcanedev.maroc@gmail.com",
  7997. "homepage": "https://github.com/arcanedev-maroc"
  7998. }
  7999. ],
  8000. "description": "ARCANEDEV Support Helpers",
  8001. "homepage": "https://github.com/ARCANEDEV/Support",
  8002. "keywords": [
  8003. "arcanedev",
  8004. "arcanesoft",
  8005. "laravel",
  8006. "support"
  8007. ],
  8008. "support": {
  8009. "issues": "https://github.com/ARCANEDEV/Support/issues",
  8010. "source": "https://github.com/ARCANEDEV/Support/tree/7.1.2"
  8011. },
  8012. "time": "2020-03-12T09:28:19+00:00"
  8013. },
  8014. {
  8015. "name": "barryvdh/laravel-debugbar",
  8016. "version": "v3.5.2",
  8017. "source": {
  8018. "type": "git",
  8019. "url": "https://github.com/barryvdh/laravel-debugbar.git",
  8020. "reference": "cae0a8d1cb89b0f0522f65e60465e16d738e069b"
  8021. },
  8022. "dist": {
  8023. "type": "zip",
  8024. "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/cae0a8d1cb89b0f0522f65e60465e16d738e069b",
  8025. "reference": "cae0a8d1cb89b0f0522f65e60465e16d738e069b",
  8026. "shasum": ""
  8027. },
  8028. "require": {
  8029. "illuminate/routing": "^6|^7|^8",
  8030. "illuminate/session": "^6|^7|^8",
  8031. "illuminate/support": "^6|^7|^8",
  8032. "maximebf/debugbar": "^1.16.3",
  8033. "php": ">=7.2",
  8034. "symfony/debug": "^4.3|^5",
  8035. "symfony/finder": "^4.3|^5"
  8036. },
  8037. "require-dev": {
  8038. "mockery/mockery": "^1.3.3",
  8039. "orchestra/testbench-dusk": "^4|^5|^6",
  8040. "phpunit/phpunit": "^8.5|^9.0",
  8041. "squizlabs/php_codesniffer": "^3.5"
  8042. },
  8043. "type": "library",
  8044. "extra": {
  8045. "branch-alias": {
  8046. "dev-master": "3.5-dev"
  8047. },
  8048. "laravel": {
  8049. "providers": [
  8050. "Barryvdh\\Debugbar\\ServiceProvider"
  8051. ],
  8052. "aliases": {
  8053. "Debugbar": "Barryvdh\\Debugbar\\Facade"
  8054. }
  8055. }
  8056. },
  8057. "autoload": {
  8058. "psr-4": {
  8059. "Barryvdh\\Debugbar\\": "src/"
  8060. },
  8061. "files": [
  8062. "src/helpers.php"
  8063. ]
  8064. },
  8065. "notification-url": "https://packagist.org/downloads/",
  8066. "license": [
  8067. "MIT"
  8068. ],
  8069. "authors": [
  8070. {
  8071. "name": "Barry vd. Heuvel",
  8072. "email": "barryvdh@gmail.com"
  8073. }
  8074. ],
  8075. "description": "PHP Debugbar integration for Laravel",
  8076. "keywords": [
  8077. "debug",
  8078. "debugbar",
  8079. "laravel",
  8080. "profiler",
  8081. "webprofiler"
  8082. ],
  8083. "support": {
  8084. "issues": "https://github.com/barryvdh/laravel-debugbar/issues",
  8085. "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.5.2"
  8086. },
  8087. "funding": [
  8088. {
  8089. "url": "https://github.com/barryvdh",
  8090. "type": "github"
  8091. }
  8092. ],
  8093. "time": "2021-01-06T14:21:44+00:00"
  8094. },
  8095. {
  8096. "name": "barryvdh/laravel-ide-helper",
  8097. "version": "v2.8.2",
  8098. "source": {
  8099. "type": "git",
  8100. "url": "https://github.com/barryvdh/laravel-ide-helper.git",
  8101. "reference": "5515cabea39b9cf55f98980d0f269dc9d85cfcca"
  8102. },
  8103. "dist": {
  8104. "type": "zip",
  8105. "url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/5515cabea39b9cf55f98980d0f269dc9d85cfcca",
  8106. "reference": "5515cabea39b9cf55f98980d0f269dc9d85cfcca",
  8107. "shasum": ""
  8108. },
  8109. "require": {
  8110. "barryvdh/reflection-docblock": "^2.0.6",
  8111. "composer/composer": "^1.6 || ^2",
  8112. "doctrine/dbal": "~2.3",
  8113. "ext-json": "*",
  8114. "illuminate/console": "^6 || ^7 || ^8",
  8115. "illuminate/filesystem": "^6 || ^7 || ^8",
  8116. "illuminate/support": "^6 || ^7 || ^8",
  8117. "php": ">=7.2",
  8118. "phpdocumentor/type-resolver": "^1.1.0"
  8119. },
  8120. "require-dev": {
  8121. "ext-pdo_sqlite": "*",
  8122. "friendsofphp/php-cs-fixer": "^2",
  8123. "illuminate/config": "^6 || ^7 || ^8",
  8124. "illuminate/view": "^6 || ^7 || ^8",
  8125. "mockery/mockery": "^1.3.3",
  8126. "orchestra/testbench": "^4 || ^5 || ^6",
  8127. "phpunit/phpunit": "^8.5 || ^9",
  8128. "spatie/phpunit-snapshot-assertions": "^1.4 || ^2.2 || ^3 || ^4",
  8129. "vimeo/psalm": "^3.12"
  8130. },
  8131. "type": "library",
  8132. "extra": {
  8133. "branch-alias": {
  8134. "dev-master": "2.8-dev"
  8135. },
  8136. "laravel": {
  8137. "providers": [
  8138. "Barryvdh\\LaravelIdeHelper\\IdeHelperServiceProvider"
  8139. ]
  8140. }
  8141. },
  8142. "autoload": {
  8143. "psr-4": {
  8144. "Barryvdh\\LaravelIdeHelper\\": "src"
  8145. }
  8146. },
  8147. "notification-url": "https://packagist.org/downloads/",
  8148. "license": [
  8149. "MIT"
  8150. ],
  8151. "authors": [
  8152. {
  8153. "name": "Barry vd. Heuvel",
  8154. "email": "barryvdh@gmail.com"
  8155. }
  8156. ],
  8157. "description": "Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.",
  8158. "keywords": [
  8159. "autocomplete",
  8160. "codeintel",
  8161. "helper",
  8162. "ide",
  8163. "laravel",
  8164. "netbeans",
  8165. "phpdoc",
  8166. "phpstorm",
  8167. "sublime"
  8168. ],
  8169. "support": {
  8170. "issues": "https://github.com/barryvdh/laravel-ide-helper/issues",
  8171. "source": "https://github.com/barryvdh/laravel-ide-helper/tree/v2.8.2"
  8172. },
  8173. "funding": [
  8174. {
  8175. "url": "https://github.com/barryvdh",
  8176. "type": "github"
  8177. }
  8178. ],
  8179. "time": "2020-12-06T08:55:05+00:00"
  8180. },
  8181. {
  8182. "name": "barryvdh/reflection-docblock",
  8183. "version": "v2.0.6",
  8184. "source": {
  8185. "type": "git",
  8186. "url": "https://github.com/barryvdh/ReflectionDocBlock.git",
  8187. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16"
  8188. },
  8189. "dist": {
  8190. "type": "zip",
  8191. "url": "https://api.github.com/repos/barryvdh/ReflectionDocBlock/zipball/6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  8192. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  8193. "shasum": ""
  8194. },
  8195. "require": {
  8196. "php": ">=5.3.3"
  8197. },
  8198. "require-dev": {
  8199. "phpunit/phpunit": "~4.0,<4.5"
  8200. },
  8201. "suggest": {
  8202. "dflydev/markdown": "~1.0",
  8203. "erusev/parsedown": "~1.0"
  8204. },
  8205. "type": "library",
  8206. "extra": {
  8207. "branch-alias": {
  8208. "dev-master": "2.0.x-dev"
  8209. }
  8210. },
  8211. "autoload": {
  8212. "psr-0": {
  8213. "Barryvdh": [
  8214. "src/"
  8215. ]
  8216. }
  8217. },
  8218. "notification-url": "https://packagist.org/downloads/",
  8219. "license": [
  8220. "MIT"
  8221. ],
  8222. "authors": [
  8223. {
  8224. "name": "Mike van Riel",
  8225. "email": "mike.vanriel@naenius.com"
  8226. }
  8227. ],
  8228. "support": {
  8229. "source": "https://github.com/barryvdh/ReflectionDocBlock/tree/v2.0.6"
  8230. },
  8231. "time": "2018-12-13T10:34:14+00:00"
  8232. },
  8233. {
  8234. "name": "caouecs/laravel-lang",
  8235. "version": "6.1.4",
  8236. "source": {
  8237. "type": "git",
  8238. "url": "https://github.com/caouecs/lang.git",
  8239. "reference": "18a7845e813e737a56a7f164301d5014b536950c"
  8240. },
  8241. "dist": {
  8242. "type": "zip",
  8243. "url": "https://api.github.com/repos/caouecs/lang/zipball/18a7845e813e737a56a7f164301d5014b536950c",
  8244. "reference": "18a7845e813e737a56a7f164301d5014b536950c",
  8245. "shasum": ""
  8246. },
  8247. "require": {
  8248. "ext-json": "*"
  8249. },
  8250. "suggest": {
  8251. "andrey-helldar/laravel-lang-publisher": "Easy installation and update of translation files for your project",
  8252. "arcanedev/laravel-lang": "Translations manager and checker for Laravel 5",
  8253. "overtrue/laravel-lang": "Command to add languages in your project"
  8254. },
  8255. "type": "library",
  8256. "notification-url": "https://packagist.org/downloads/",
  8257. "license": [
  8258. "MIT"
  8259. ],
  8260. "authors": [
  8261. {
  8262. "name": "caouecs",
  8263. "email": "caouecs@caouecs.net"
  8264. }
  8265. ],
  8266. "description": "Languages for Laravel",
  8267. "keywords": [
  8268. "lang",
  8269. "languages",
  8270. "laravel",
  8271. "lpm"
  8272. ],
  8273. "support": {
  8274. "source": "https://github.com/caouecs/lang/tree/6.1.4"
  8275. },
  8276. "abandoned": "https://github.com/Laravel-Lang/lang",
  8277. "time": "2020-07-13T14:35:32+00:00"
  8278. },
  8279. {
  8280. "name": "composer/composer",
  8281. "version": "2.0.8",
  8282. "source": {
  8283. "type": "git",
  8284. "url": "https://github.com/composer/composer.git",
  8285. "reference": "62139b2806178adb979d76bd3437534a1a9fd490"
  8286. },
  8287. "dist": {
  8288. "type": "zip",
  8289. "url": "https://api.github.com/repos/composer/composer/zipball/62139b2806178adb979d76bd3437534a1a9fd490",
  8290. "reference": "62139b2806178adb979d76bd3437534a1a9fd490",
  8291. "shasum": ""
  8292. },
  8293. "require": {
  8294. "composer/ca-bundle": "^1.0",
  8295. "composer/semver": "^3.0",
  8296. "composer/spdx-licenses": "^1.2",
  8297. "composer/xdebug-handler": "^1.1",
  8298. "justinrainbow/json-schema": "^5.2.10",
  8299. "php": "^5.3.2 || ^7.0 || ^8.0",
  8300. "psr/log": "^1.0",
  8301. "react/promise": "^1.2 || ^2.7",
  8302. "seld/jsonlint": "^1.4",
  8303. "seld/phar-utils": "^1.0",
  8304. "symfony/console": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0",
  8305. "symfony/filesystem": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0",
  8306. "symfony/finder": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0",
  8307. "symfony/process": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0"
  8308. },
  8309. "require-dev": {
  8310. "phpspec/prophecy": "^1.10",
  8311. "symfony/phpunit-bridge": "^4.2 || ^5.0"
  8312. },
  8313. "suggest": {
  8314. "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages",
  8315. "ext-zip": "Enabling the zip extension allows you to unzip archives",
  8316. "ext-zlib": "Allow gzip compression of HTTP requests"
  8317. },
  8318. "bin": [
  8319. "bin/composer"
  8320. ],
  8321. "type": "library",
  8322. "extra": {
  8323. "branch-alias": {
  8324. "dev-master": "2.0-dev"
  8325. }
  8326. },
  8327. "autoload": {
  8328. "psr-4": {
  8329. "Composer\\": "src/Composer"
  8330. }
  8331. },
  8332. "notification-url": "https://packagist.org/downloads/",
  8333. "license": [
  8334. "MIT"
  8335. ],
  8336. "authors": [
  8337. {
  8338. "name": "Nils Adermann",
  8339. "email": "naderman@naderman.de",
  8340. "homepage": "https://www.naderman.de"
  8341. },
  8342. {
  8343. "name": "Jordi Boggiano",
  8344. "email": "j.boggiano@seld.be",
  8345. "homepage": "https://seld.be"
  8346. }
  8347. ],
  8348. "description": "Composer helps you declare, manage and install dependencies of PHP projects. It ensures you have the right stack everywhere.",
  8349. "homepage": "https://getcomposer.org/",
  8350. "keywords": [
  8351. "autoload",
  8352. "dependency",
  8353. "package"
  8354. ],
  8355. "support": {
  8356. "irc": "irc://irc.freenode.org/composer",
  8357. "issues": "https://github.com/composer/composer/issues",
  8358. "source": "https://github.com/composer/composer/tree/2.0.8"
  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:20:39+00:00"
  8375. },
  8376. {
  8377. "name": "composer/semver",
  8378. "version": "3.2.4",
  8379. "source": {
  8380. "type": "git",
  8381. "url": "https://github.com/composer/semver.git",
  8382. "reference": "a02fdf930a3c1c3ed3a49b5f63859c0c20e10464"
  8383. },
  8384. "dist": {
  8385. "type": "zip",
  8386. "url": "https://api.github.com/repos/composer/semver/zipball/a02fdf930a3c1c3ed3a49b5f63859c0c20e10464",
  8387. "reference": "a02fdf930a3c1c3ed3a49b5f63859c0c20e10464",
  8388. "shasum": ""
  8389. },
  8390. "require": {
  8391. "php": "^5.3.2 || ^7.0 || ^8.0"
  8392. },
  8393. "require-dev": {
  8394. "phpstan/phpstan": "^0.12.54",
  8395. "symfony/phpunit-bridge": "^4.2 || ^5"
  8396. },
  8397. "type": "library",
  8398. "extra": {
  8399. "branch-alias": {
  8400. "dev-main": "3.x-dev"
  8401. }
  8402. },
  8403. "autoload": {
  8404. "psr-4": {
  8405. "Composer\\Semver\\": "src"
  8406. }
  8407. },
  8408. "notification-url": "https://packagist.org/downloads/",
  8409. "license": [
  8410. "MIT"
  8411. ],
  8412. "authors": [
  8413. {
  8414. "name": "Nils Adermann",
  8415. "email": "naderman@naderman.de",
  8416. "homepage": "http://www.naderman.de"
  8417. },
  8418. {
  8419. "name": "Jordi Boggiano",
  8420. "email": "j.boggiano@seld.be",
  8421. "homepage": "http://seld.be"
  8422. },
  8423. {
  8424. "name": "Rob Bast",
  8425. "email": "rob.bast@gmail.com",
  8426. "homepage": "http://robbast.nl"
  8427. }
  8428. ],
  8429. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  8430. "keywords": [
  8431. "semantic",
  8432. "semver",
  8433. "validation",
  8434. "versioning"
  8435. ],
  8436. "support": {
  8437. "irc": "irc://irc.freenode.org/composer",
  8438. "issues": "https://github.com/composer/semver/issues",
  8439. "source": "https://github.com/composer/semver/tree/3.2.4"
  8440. },
  8441. "funding": [
  8442. {
  8443. "url": "https://packagist.com",
  8444. "type": "custom"
  8445. },
  8446. {
  8447. "url": "https://github.com/composer",
  8448. "type": "github"
  8449. },
  8450. {
  8451. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8452. "type": "tidelift"
  8453. }
  8454. ],
  8455. "time": "2020-11-13T08:59:24+00:00"
  8456. },
  8457. {
  8458. "name": "composer/spdx-licenses",
  8459. "version": "1.5.5",
  8460. "source": {
  8461. "type": "git",
  8462. "url": "https://github.com/composer/spdx-licenses.git",
  8463. "reference": "de30328a7af8680efdc03e396aad24befd513200"
  8464. },
  8465. "dist": {
  8466. "type": "zip",
  8467. "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/de30328a7af8680efdc03e396aad24befd513200",
  8468. "reference": "de30328a7af8680efdc03e396aad24befd513200",
  8469. "shasum": ""
  8470. },
  8471. "require": {
  8472. "php": "^5.3.2 || ^7.0 || ^8.0"
  8473. },
  8474. "require-dev": {
  8475. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 7"
  8476. },
  8477. "type": "library",
  8478. "extra": {
  8479. "branch-alias": {
  8480. "dev-main": "1.x-dev"
  8481. }
  8482. },
  8483. "autoload": {
  8484. "psr-4": {
  8485. "Composer\\Spdx\\": "src"
  8486. }
  8487. },
  8488. "notification-url": "https://packagist.org/downloads/",
  8489. "license": [
  8490. "MIT"
  8491. ],
  8492. "authors": [
  8493. {
  8494. "name": "Nils Adermann",
  8495. "email": "naderman@naderman.de",
  8496. "homepage": "http://www.naderman.de"
  8497. },
  8498. {
  8499. "name": "Jordi Boggiano",
  8500. "email": "j.boggiano@seld.be",
  8501. "homepage": "http://seld.be"
  8502. },
  8503. {
  8504. "name": "Rob Bast",
  8505. "email": "rob.bast@gmail.com",
  8506. "homepage": "http://robbast.nl"
  8507. }
  8508. ],
  8509. "description": "SPDX licenses list and validation library.",
  8510. "keywords": [
  8511. "license",
  8512. "spdx",
  8513. "validator"
  8514. ],
  8515. "support": {
  8516. "irc": "irc://irc.freenode.org/composer",
  8517. "issues": "https://github.com/composer/spdx-licenses/issues",
  8518. "source": "https://github.com/composer/spdx-licenses/tree/1.5.5"
  8519. },
  8520. "funding": [
  8521. {
  8522. "url": "https://packagist.com",
  8523. "type": "custom"
  8524. },
  8525. {
  8526. "url": "https://github.com/composer",
  8527. "type": "github"
  8528. },
  8529. {
  8530. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8531. "type": "tidelift"
  8532. }
  8533. ],
  8534. "time": "2020-12-03T16:04:16+00:00"
  8535. },
  8536. {
  8537. "name": "composer/xdebug-handler",
  8538. "version": "1.4.5",
  8539. "source": {
  8540. "type": "git",
  8541. "url": "https://github.com/composer/xdebug-handler.git",
  8542. "reference": "f28d44c286812c714741478d968104c5e604a1d4"
  8543. },
  8544. "dist": {
  8545. "type": "zip",
  8546. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/f28d44c286812c714741478d968104c5e604a1d4",
  8547. "reference": "f28d44c286812c714741478d968104c5e604a1d4",
  8548. "shasum": ""
  8549. },
  8550. "require": {
  8551. "php": "^5.3.2 || ^7.0 || ^8.0",
  8552. "psr/log": "^1.0"
  8553. },
  8554. "require-dev": {
  8555. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8"
  8556. },
  8557. "type": "library",
  8558. "autoload": {
  8559. "psr-4": {
  8560. "Composer\\XdebugHandler\\": "src"
  8561. }
  8562. },
  8563. "notification-url": "https://packagist.org/downloads/",
  8564. "license": [
  8565. "MIT"
  8566. ],
  8567. "authors": [
  8568. {
  8569. "name": "John Stevenson",
  8570. "email": "john-stevenson@blueyonder.co.uk"
  8571. }
  8572. ],
  8573. "description": "Restarts a process without Xdebug.",
  8574. "keywords": [
  8575. "Xdebug",
  8576. "performance"
  8577. ],
  8578. "support": {
  8579. "irc": "irc://irc.freenode.org/composer",
  8580. "issues": "https://github.com/composer/xdebug-handler/issues",
  8581. "source": "https://github.com/composer/xdebug-handler/tree/1.4.5"
  8582. },
  8583. "funding": [
  8584. {
  8585. "url": "https://packagist.com",
  8586. "type": "custom"
  8587. },
  8588. {
  8589. "url": "https://github.com/composer",
  8590. "type": "github"
  8591. },
  8592. {
  8593. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8594. "type": "tidelift"
  8595. }
  8596. ],
  8597. "time": "2020-11-13T08:04:11+00:00"
  8598. },
  8599. {
  8600. "name": "doctrine/instantiator",
  8601. "version": "1.4.0",
  8602. "source": {
  8603. "type": "git",
  8604. "url": "https://github.com/doctrine/instantiator.git",
  8605. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
  8606. },
  8607. "dist": {
  8608. "type": "zip",
  8609. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
  8610. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
  8611. "shasum": ""
  8612. },
  8613. "require": {
  8614. "php": "^7.1 || ^8.0"
  8615. },
  8616. "require-dev": {
  8617. "doctrine/coding-standard": "^8.0",
  8618. "ext-pdo": "*",
  8619. "ext-phar": "*",
  8620. "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
  8621. "phpstan/phpstan": "^0.12",
  8622. "phpstan/phpstan-phpunit": "^0.12",
  8623. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  8624. },
  8625. "type": "library",
  8626. "autoload": {
  8627. "psr-4": {
  8628. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  8629. }
  8630. },
  8631. "notification-url": "https://packagist.org/downloads/",
  8632. "license": [
  8633. "MIT"
  8634. ],
  8635. "authors": [
  8636. {
  8637. "name": "Marco Pivetta",
  8638. "email": "ocramius@gmail.com",
  8639. "homepage": "https://ocramius.github.io/"
  8640. }
  8641. ],
  8642. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8643. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  8644. "keywords": [
  8645. "constructor",
  8646. "instantiate"
  8647. ],
  8648. "support": {
  8649. "issues": "https://github.com/doctrine/instantiator/issues",
  8650. "source": "https://github.com/doctrine/instantiator/tree/1.4.0"
  8651. },
  8652. "funding": [
  8653. {
  8654. "url": "https://www.doctrine-project.org/sponsorship.html",
  8655. "type": "custom"
  8656. },
  8657. {
  8658. "url": "https://www.patreon.com/phpdoctrine",
  8659. "type": "patreon"
  8660. },
  8661. {
  8662. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  8663. "type": "tidelift"
  8664. }
  8665. ],
  8666. "time": "2020-11-10T18:47:58+00:00"
  8667. },
  8668. {
  8669. "name": "facade/flare-client-php",
  8670. "version": "1.3.7",
  8671. "source": {
  8672. "type": "git",
  8673. "url": "https://github.com/facade/flare-client-php.git",
  8674. "reference": "fd688d3c06658f2b3b5f7bb19f051ee4ddf02492"
  8675. },
  8676. "dist": {
  8677. "type": "zip",
  8678. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/fd688d3c06658f2b3b5f7bb19f051ee4ddf02492",
  8679. "reference": "fd688d3c06658f2b3b5f7bb19f051ee4ddf02492",
  8680. "shasum": ""
  8681. },
  8682. "require": {
  8683. "facade/ignition-contracts": "~1.0",
  8684. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  8685. "php": "^7.1|^8.0",
  8686. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  8687. "symfony/mime": "^3.4|^4.0|^5.1",
  8688. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  8689. },
  8690. "require-dev": {
  8691. "friendsofphp/php-cs-fixer": "^2.14",
  8692. "phpunit/phpunit": "^7.5.16",
  8693. "spatie/phpunit-snapshot-assertions": "^2.0"
  8694. },
  8695. "type": "library",
  8696. "extra": {
  8697. "branch-alias": {
  8698. "dev-master": "1.0-dev"
  8699. }
  8700. },
  8701. "autoload": {
  8702. "psr-4": {
  8703. "Facade\\FlareClient\\": "src"
  8704. },
  8705. "files": [
  8706. "src/helpers.php"
  8707. ]
  8708. },
  8709. "notification-url": "https://packagist.org/downloads/",
  8710. "license": [
  8711. "MIT"
  8712. ],
  8713. "description": "Send PHP errors to Flare",
  8714. "homepage": "https://github.com/facade/flare-client-php",
  8715. "keywords": [
  8716. "exception",
  8717. "facade",
  8718. "flare",
  8719. "reporting"
  8720. ],
  8721. "support": {
  8722. "issues": "https://github.com/facade/flare-client-php/issues",
  8723. "source": "https://github.com/facade/flare-client-php/tree/1.3.7"
  8724. },
  8725. "funding": [
  8726. {
  8727. "url": "https://github.com/spatie",
  8728. "type": "github"
  8729. }
  8730. ],
  8731. "time": "2020-10-21T16:02:39+00:00"
  8732. },
  8733. {
  8734. "name": "facade/ignition",
  8735. "version": "2.5.8",
  8736. "source": {
  8737. "type": "git",
  8738. "url": "https://github.com/facade/ignition.git",
  8739. "reference": "8e907d81244649c5ea746e2ec30c32c5f59df472"
  8740. },
  8741. "dist": {
  8742. "type": "zip",
  8743. "url": "https://api.github.com/repos/facade/ignition/zipball/8e907d81244649c5ea746e2ec30c32c5f59df472",
  8744. "reference": "8e907d81244649c5ea746e2ec30c32c5f59df472",
  8745. "shasum": ""
  8746. },
  8747. "require": {
  8748. "ext-json": "*",
  8749. "ext-mbstring": "*",
  8750. "facade/flare-client-php": "^1.3.7",
  8751. "facade/ignition-contracts": "^1.0.2",
  8752. "filp/whoops": "^2.4",
  8753. "illuminate/support": "^7.0|^8.0",
  8754. "monolog/monolog": "^2.0",
  8755. "php": "^7.2.5|^8.0",
  8756. "symfony/console": "^5.0",
  8757. "symfony/var-dumper": "^5.0"
  8758. },
  8759. "require-dev": {
  8760. "friendsofphp/php-cs-fixer": "^2.14",
  8761. "mockery/mockery": "^1.3",
  8762. "orchestra/testbench": "^5.0|^6.0",
  8763. "psalm/plugin-laravel": "^1.2"
  8764. },
  8765. "suggest": {
  8766. "laravel/telescope": "^3.1"
  8767. },
  8768. "type": "library",
  8769. "extra": {
  8770. "branch-alias": {
  8771. "dev-master": "2.x-dev"
  8772. },
  8773. "laravel": {
  8774. "providers": [
  8775. "Facade\\Ignition\\IgnitionServiceProvider"
  8776. ],
  8777. "aliases": {
  8778. "Flare": "Facade\\Ignition\\Facades\\Flare"
  8779. }
  8780. }
  8781. },
  8782. "autoload": {
  8783. "psr-4": {
  8784. "Facade\\Ignition\\": "src"
  8785. },
  8786. "files": [
  8787. "src/helpers.php"
  8788. ]
  8789. },
  8790. "notification-url": "https://packagist.org/downloads/",
  8791. "license": [
  8792. "MIT"
  8793. ],
  8794. "description": "A beautiful error page for Laravel applications.",
  8795. "homepage": "https://github.com/facade/ignition",
  8796. "keywords": [
  8797. "error",
  8798. "flare",
  8799. "laravel",
  8800. "page"
  8801. ],
  8802. "support": {
  8803. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  8804. "forum": "https://twitter.com/flareappio",
  8805. "issues": "https://github.com/facade/ignition/issues",
  8806. "source": "https://github.com/facade/ignition"
  8807. },
  8808. "time": "2020-12-29T09:12:55+00:00"
  8809. },
  8810. {
  8811. "name": "facade/ignition-contracts",
  8812. "version": "1.0.2",
  8813. "source": {
  8814. "type": "git",
  8815. "url": "https://github.com/facade/ignition-contracts.git",
  8816. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  8817. },
  8818. "dist": {
  8819. "type": "zip",
  8820. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8821. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8822. "shasum": ""
  8823. },
  8824. "require": {
  8825. "php": "^7.3|^8.0"
  8826. },
  8827. "require-dev": {
  8828. "friendsofphp/php-cs-fixer": "^v2.15.8",
  8829. "phpunit/phpunit": "^9.3.11",
  8830. "vimeo/psalm": "^3.17.1"
  8831. },
  8832. "type": "library",
  8833. "autoload": {
  8834. "psr-4": {
  8835. "Facade\\IgnitionContracts\\": "src"
  8836. }
  8837. },
  8838. "notification-url": "https://packagist.org/downloads/",
  8839. "license": [
  8840. "MIT"
  8841. ],
  8842. "authors": [
  8843. {
  8844. "name": "Freek Van der Herten",
  8845. "email": "freek@spatie.be",
  8846. "homepage": "https://flareapp.io",
  8847. "role": "Developer"
  8848. }
  8849. ],
  8850. "description": "Solution contracts for Ignition",
  8851. "homepage": "https://github.com/facade/ignition-contracts",
  8852. "keywords": [
  8853. "contracts",
  8854. "flare",
  8855. "ignition"
  8856. ],
  8857. "support": {
  8858. "issues": "https://github.com/facade/ignition-contracts/issues",
  8859. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  8860. },
  8861. "time": "2020-10-16T08:27:54+00:00"
  8862. },
  8863. {
  8864. "name": "fakerphp/faker",
  8865. "version": "v1.13.0",
  8866. "source": {
  8867. "type": "git",
  8868. "url": "https://github.com/FakerPHP/Faker.git",
  8869. "reference": "ab3f5364d01f2c2c16113442fb987d26e4004913"
  8870. },
  8871. "dist": {
  8872. "type": "zip",
  8873. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/ab3f5364d01f2c2c16113442fb987d26e4004913",
  8874. "reference": "ab3f5364d01f2c2c16113442fb987d26e4004913",
  8875. "shasum": ""
  8876. },
  8877. "require": {
  8878. "php": "^7.1 || ^8.0"
  8879. },
  8880. "conflict": {
  8881. "fzaninotto/faker": "*"
  8882. },
  8883. "require-dev": {
  8884. "bamarni/composer-bin-plugin": "^1.4.1",
  8885. "ext-intl": "*",
  8886. "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.4.2"
  8887. },
  8888. "type": "library",
  8889. "autoload": {
  8890. "psr-4": {
  8891. "Faker\\": "src/Faker/"
  8892. }
  8893. },
  8894. "notification-url": "https://packagist.org/downloads/",
  8895. "license": [
  8896. "MIT"
  8897. ],
  8898. "authors": [
  8899. {
  8900. "name": "François Zaninotto"
  8901. }
  8902. ],
  8903. "description": "Faker is a PHP library that generates fake data for you.",
  8904. "keywords": [
  8905. "data",
  8906. "faker",
  8907. "fixtures"
  8908. ],
  8909. "support": {
  8910. "issues": "https://github.com/FakerPHP/Faker/issues",
  8911. "source": "https://github.com/FakerPHP/Faker/tree/v1.13.0"
  8912. },
  8913. "time": "2020-12-18T16:50:48+00:00"
  8914. },
  8915. {
  8916. "name": "filp/whoops",
  8917. "version": "2.9.1",
  8918. "source": {
  8919. "type": "git",
  8920. "url": "https://github.com/filp/whoops.git",
  8921. "reference": "307fb34a5ab697461ec4c9db865b20ff2fd40771"
  8922. },
  8923. "dist": {
  8924. "type": "zip",
  8925. "url": "https://api.github.com/repos/filp/whoops/zipball/307fb34a5ab697461ec4c9db865b20ff2fd40771",
  8926. "reference": "307fb34a5ab697461ec4c9db865b20ff2fd40771",
  8927. "shasum": ""
  8928. },
  8929. "require": {
  8930. "php": "^5.5.9 || ^7.0 || ^8.0",
  8931. "psr/log": "^1.0.1"
  8932. },
  8933. "require-dev": {
  8934. "mockery/mockery": "^0.9 || ^1.0",
  8935. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  8936. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  8937. },
  8938. "suggest": {
  8939. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  8940. "whoops/soap": "Formats errors as SOAP responses"
  8941. },
  8942. "type": "library",
  8943. "extra": {
  8944. "branch-alias": {
  8945. "dev-master": "2.7-dev"
  8946. }
  8947. },
  8948. "autoload": {
  8949. "psr-4": {
  8950. "Whoops\\": "src/Whoops/"
  8951. }
  8952. },
  8953. "notification-url": "https://packagist.org/downloads/",
  8954. "license": [
  8955. "MIT"
  8956. ],
  8957. "authors": [
  8958. {
  8959. "name": "Filipe Dobreira",
  8960. "homepage": "https://github.com/filp",
  8961. "role": "Developer"
  8962. }
  8963. ],
  8964. "description": "php error handling for cool kids",
  8965. "homepage": "https://filp.github.io/whoops/",
  8966. "keywords": [
  8967. "error",
  8968. "exception",
  8969. "handling",
  8970. "library",
  8971. "throwable",
  8972. "whoops"
  8973. ],
  8974. "support": {
  8975. "issues": "https://github.com/filp/whoops/issues",
  8976. "source": "https://github.com/filp/whoops/tree/2.9.1"
  8977. },
  8978. "time": "2020-11-01T12:00:00+00:00"
  8979. },
  8980. {
  8981. "name": "hamcrest/hamcrest-php",
  8982. "version": "v2.0.1",
  8983. "source": {
  8984. "type": "git",
  8985. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8986. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8987. },
  8988. "dist": {
  8989. "type": "zip",
  8990. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8991. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8992. "shasum": ""
  8993. },
  8994. "require": {
  8995. "php": "^5.3|^7.0|^8.0"
  8996. },
  8997. "replace": {
  8998. "cordoval/hamcrest-php": "*",
  8999. "davedevelopment/hamcrest-php": "*",
  9000. "kodova/hamcrest-php": "*"
  9001. },
  9002. "require-dev": {
  9003. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  9004. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  9005. },
  9006. "type": "library",
  9007. "extra": {
  9008. "branch-alias": {
  9009. "dev-master": "2.1-dev"
  9010. }
  9011. },
  9012. "autoload": {
  9013. "classmap": [
  9014. "hamcrest"
  9015. ]
  9016. },
  9017. "notification-url": "https://packagist.org/downloads/",
  9018. "license": [
  9019. "BSD-3-Clause"
  9020. ],
  9021. "description": "This is the PHP port of Hamcrest Matchers",
  9022. "keywords": [
  9023. "test"
  9024. ],
  9025. "support": {
  9026. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  9027. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  9028. },
  9029. "time": "2020-07-09T08:09:16+00:00"
  9030. },
  9031. {
  9032. "name": "justinrainbow/json-schema",
  9033. "version": "5.2.10",
  9034. "source": {
  9035. "type": "git",
  9036. "url": "https://github.com/justinrainbow/json-schema.git",
  9037. "reference": "2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b"
  9038. },
  9039. "dist": {
  9040. "type": "zip",
  9041. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b",
  9042. "reference": "2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b",
  9043. "shasum": ""
  9044. },
  9045. "require": {
  9046. "php": ">=5.3.3"
  9047. },
  9048. "require-dev": {
  9049. "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1",
  9050. "json-schema/json-schema-test-suite": "1.2.0",
  9051. "phpunit/phpunit": "^4.8.35"
  9052. },
  9053. "bin": [
  9054. "bin/validate-json"
  9055. ],
  9056. "type": "library",
  9057. "extra": {
  9058. "branch-alias": {
  9059. "dev-master": "5.0.x-dev"
  9060. }
  9061. },
  9062. "autoload": {
  9063. "psr-4": {
  9064. "JsonSchema\\": "src/JsonSchema/"
  9065. }
  9066. },
  9067. "notification-url": "https://packagist.org/downloads/",
  9068. "license": [
  9069. "MIT"
  9070. ],
  9071. "authors": [
  9072. {
  9073. "name": "Bruno Prieto Reis",
  9074. "email": "bruno.p.reis@gmail.com"
  9075. },
  9076. {
  9077. "name": "Justin Rainbow",
  9078. "email": "justin.rainbow@gmail.com"
  9079. },
  9080. {
  9081. "name": "Igor Wiedler",
  9082. "email": "igor@wiedler.ch"
  9083. },
  9084. {
  9085. "name": "Robert Schönthal",
  9086. "email": "seroscho@googlemail.com"
  9087. }
  9088. ],
  9089. "description": "A library to validate a json schema.",
  9090. "homepage": "https://github.com/justinrainbow/json-schema",
  9091. "keywords": [
  9092. "json",
  9093. "schema"
  9094. ],
  9095. "support": {
  9096. "issues": "https://github.com/justinrainbow/json-schema/issues",
  9097. "source": "https://github.com/justinrainbow/json-schema/tree/5.2.10"
  9098. },
  9099. "time": "2020-05-27T16:41:55+00:00"
  9100. },
  9101. {
  9102. "name": "laravel/telescope",
  9103. "version": "v3.5.1",
  9104. "source": {
  9105. "type": "git",
  9106. "url": "https://github.com/laravel/telescope.git",
  9107. "reference": "a8d2e1106ba655006fde47a0b7ed53851c6398f5"
  9108. },
  9109. "dist": {
  9110. "type": "zip",
  9111. "url": "https://api.github.com/repos/laravel/telescope/zipball/a8d2e1106ba655006fde47a0b7ed53851c6398f5",
  9112. "reference": "a8d2e1106ba655006fde47a0b7ed53851c6398f5",
  9113. "shasum": ""
  9114. },
  9115. "require": {
  9116. "ext-json": "*",
  9117. "laravel/framework": "^6.0|^7.0",
  9118. "moontoast/math": "^1.1",
  9119. "php": "^7.2",
  9120. "symfony/var-dumper": "^4.4|^5.0"
  9121. },
  9122. "require-dev": {
  9123. "ext-gd": "*",
  9124. "orchestra/testbench": "^4.0|^5.0"
  9125. },
  9126. "type": "library",
  9127. "extra": {
  9128. "branch-alias": {
  9129. "dev-master": "3.x-dev"
  9130. },
  9131. "laravel": {
  9132. "providers": [
  9133. "Laravel\\Telescope\\TelescopeServiceProvider"
  9134. ]
  9135. }
  9136. },
  9137. "autoload": {
  9138. "psr-4": {
  9139. "Laravel\\Telescope\\": "src/"
  9140. }
  9141. },
  9142. "notification-url": "https://packagist.org/downloads/",
  9143. "license": [
  9144. "MIT"
  9145. ],
  9146. "authors": [
  9147. {
  9148. "name": "Taylor Otwell",
  9149. "email": "taylor@laravel.com"
  9150. },
  9151. {
  9152. "name": "Mohamed Said",
  9153. "email": "mohamed@laravel.com"
  9154. }
  9155. ],
  9156. "description": "An elegant debug assistant for the Laravel framework.",
  9157. "keywords": [
  9158. "debugging",
  9159. "laravel",
  9160. "monitoring"
  9161. ],
  9162. "support": {
  9163. "issues": "https://github.com/laravel/telescope/issues",
  9164. "source": "https://github.com/laravel/telescope/tree/v3.5.1"
  9165. },
  9166. "time": "2020-07-28T19:12:33+00:00"
  9167. },
  9168. {
  9169. "name": "maximebf/debugbar",
  9170. "version": "v1.16.5",
  9171. "source": {
  9172. "type": "git",
  9173. "url": "https://github.com/maximebf/php-debugbar.git",
  9174. "reference": "6d51ee9e94cff14412783785e79a4e7ef97b9d62"
  9175. },
  9176. "dist": {
  9177. "type": "zip",
  9178. "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/6d51ee9e94cff14412783785e79a4e7ef97b9d62",
  9179. "reference": "6d51ee9e94cff14412783785e79a4e7ef97b9d62",
  9180. "shasum": ""
  9181. },
  9182. "require": {
  9183. "php": "^7.1|^8",
  9184. "psr/log": "^1.0",
  9185. "symfony/var-dumper": "^2.6|^3|^4|^5"
  9186. },
  9187. "require-dev": {
  9188. "phpunit/phpunit": "^7.5.20 || ^9.4.2"
  9189. },
  9190. "suggest": {
  9191. "kriswallsmith/assetic": "The best way to manage assets",
  9192. "monolog/monolog": "Log using Monolog",
  9193. "predis/predis": "Redis storage"
  9194. },
  9195. "type": "library",
  9196. "extra": {
  9197. "branch-alias": {
  9198. "dev-master": "1.16-dev"
  9199. }
  9200. },
  9201. "autoload": {
  9202. "psr-4": {
  9203. "DebugBar\\": "src/DebugBar/"
  9204. }
  9205. },
  9206. "notification-url": "https://packagist.org/downloads/",
  9207. "license": [
  9208. "MIT"
  9209. ],
  9210. "authors": [
  9211. {
  9212. "name": "Maxime Bouroumeau-Fuseau",
  9213. "email": "maxime.bouroumeau@gmail.com",
  9214. "homepage": "http://maximebf.com"
  9215. },
  9216. {
  9217. "name": "Barry vd. Heuvel",
  9218. "email": "barryvdh@gmail.com"
  9219. }
  9220. ],
  9221. "description": "Debug bar in the browser for php application",
  9222. "homepage": "https://github.com/maximebf/php-debugbar",
  9223. "keywords": [
  9224. "debug",
  9225. "debugbar"
  9226. ],
  9227. "support": {
  9228. "issues": "https://github.com/maximebf/php-debugbar/issues",
  9229. "source": "https://github.com/maximebf/php-debugbar/tree/v1.16.5"
  9230. },
  9231. "time": "2020-12-07T11:07:24+00:00"
  9232. },
  9233. {
  9234. "name": "mockery/mockery",
  9235. "version": "1.4.2",
  9236. "source": {
  9237. "type": "git",
  9238. "url": "https://github.com/mockery/mockery.git",
  9239. "reference": "20cab678faed06fac225193be281ea0fddb43b93"
  9240. },
  9241. "dist": {
  9242. "type": "zip",
  9243. "url": "https://api.github.com/repos/mockery/mockery/zipball/20cab678faed06fac225193be281ea0fddb43b93",
  9244. "reference": "20cab678faed06fac225193be281ea0fddb43b93",
  9245. "shasum": ""
  9246. },
  9247. "require": {
  9248. "hamcrest/hamcrest-php": "^2.0.1",
  9249. "lib-pcre": ">=7.0",
  9250. "php": "^7.3 || ^8.0"
  9251. },
  9252. "conflict": {
  9253. "phpunit/phpunit": "<8.0"
  9254. },
  9255. "require-dev": {
  9256. "phpunit/phpunit": "^8.5 || ^9.3"
  9257. },
  9258. "type": "library",
  9259. "extra": {
  9260. "branch-alias": {
  9261. "dev-master": "1.4.x-dev"
  9262. }
  9263. },
  9264. "autoload": {
  9265. "psr-0": {
  9266. "Mockery": "library/"
  9267. }
  9268. },
  9269. "notification-url": "https://packagist.org/downloads/",
  9270. "license": [
  9271. "BSD-3-Clause"
  9272. ],
  9273. "authors": [
  9274. {
  9275. "name": "Pádraic Brady",
  9276. "email": "padraic.brady@gmail.com",
  9277. "homepage": "http://blog.astrumfutura.com"
  9278. },
  9279. {
  9280. "name": "Dave Marshall",
  9281. "email": "dave.marshall@atstsolutions.co.uk",
  9282. "homepage": "http://davedevelopment.co.uk"
  9283. }
  9284. ],
  9285. "description": "Mockery is a simple yet flexible PHP mock object framework",
  9286. "homepage": "https://github.com/mockery/mockery",
  9287. "keywords": [
  9288. "BDD",
  9289. "TDD",
  9290. "library",
  9291. "mock",
  9292. "mock objects",
  9293. "mockery",
  9294. "stub",
  9295. "test",
  9296. "test double",
  9297. "testing"
  9298. ],
  9299. "support": {
  9300. "issues": "https://github.com/mockery/mockery/issues",
  9301. "source": "https://github.com/mockery/mockery/tree/master"
  9302. },
  9303. "time": "2020-08-11T18:10:13+00:00"
  9304. },
  9305. {
  9306. "name": "moontoast/math",
  9307. "version": "1.2.1",
  9308. "source": {
  9309. "type": "git",
  9310. "url": "https://github.com/ramsey/moontoast-math.git",
  9311. "reference": "5f47d34c87767dbcc08b30377a9827df71de91fa"
  9312. },
  9313. "dist": {
  9314. "type": "zip",
  9315. "url": "https://api.github.com/repos/ramsey/moontoast-math/zipball/5f47d34c87767dbcc08b30377a9827df71de91fa",
  9316. "reference": "5f47d34c87767dbcc08b30377a9827df71de91fa",
  9317. "shasum": ""
  9318. },
  9319. "require": {
  9320. "php": ">=5.3.3",
  9321. "phpseclib/bcmath_compat": ">=1.0.3"
  9322. },
  9323. "require-dev": {
  9324. "jakub-onderka/php-parallel-lint": "^0.9.0",
  9325. "phpunit/phpunit": "^4.8 || ^5.5 || ^6.5 || ^7.0",
  9326. "satooshi/php-coveralls": "^0.6.1",
  9327. "squizlabs/php_codesniffer": "^2.3"
  9328. },
  9329. "type": "library",
  9330. "autoload": {
  9331. "psr-4": {
  9332. "Moontoast\\Math\\": "src/Moontoast/Math",
  9333. "Moontoast\\Math\\Exception\\": "src/Moontoast/Math/Exception"
  9334. }
  9335. },
  9336. "notification-url": "https://packagist.org/downloads/",
  9337. "license": [
  9338. "Apache-2.0"
  9339. ],
  9340. "authors": [
  9341. {
  9342. "name": "Ben Ramsey",
  9343. "email": "ben@benramsey.com",
  9344. "homepage": "https://benramsey.com"
  9345. }
  9346. ],
  9347. "description": "A mathematics library, providing functionality for large numbers",
  9348. "homepage": "https://github.com/ramsey/moontoast-math",
  9349. "keywords": [
  9350. "bcmath",
  9351. "math"
  9352. ],
  9353. "support": {
  9354. "issues": "https://github.com/ramsey/moontoast-math/issues",
  9355. "source": "https://github.com/ramsey/moontoast-math"
  9356. },
  9357. "abandoned": "brick/math",
  9358. "time": "2020-01-05T04:49:34+00:00"
  9359. },
  9360. {
  9361. "name": "myclabs/deep-copy",
  9362. "version": "1.10.2",
  9363. "source": {
  9364. "type": "git",
  9365. "url": "https://github.com/myclabs/DeepCopy.git",
  9366. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
  9367. },
  9368. "dist": {
  9369. "type": "zip",
  9370. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
  9371. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
  9372. "shasum": ""
  9373. },
  9374. "require": {
  9375. "php": "^7.1 || ^8.0"
  9376. },
  9377. "replace": {
  9378. "myclabs/deep-copy": "self.version"
  9379. },
  9380. "require-dev": {
  9381. "doctrine/collections": "^1.0",
  9382. "doctrine/common": "^2.6",
  9383. "phpunit/phpunit": "^7.1"
  9384. },
  9385. "type": "library",
  9386. "autoload": {
  9387. "psr-4": {
  9388. "DeepCopy\\": "src/DeepCopy/"
  9389. },
  9390. "files": [
  9391. "src/DeepCopy/deep_copy.php"
  9392. ]
  9393. },
  9394. "notification-url": "https://packagist.org/downloads/",
  9395. "license": [
  9396. "MIT"
  9397. ],
  9398. "description": "Create deep copies (clones) of your objects",
  9399. "keywords": [
  9400. "clone",
  9401. "copy",
  9402. "duplicate",
  9403. "object",
  9404. "object graph"
  9405. ],
  9406. "support": {
  9407. "issues": "https://github.com/myclabs/DeepCopy/issues",
  9408. "source": "https://github.com/myclabs/DeepCopy/tree/1.10.2"
  9409. },
  9410. "funding": [
  9411. {
  9412. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  9413. "type": "tidelift"
  9414. }
  9415. ],
  9416. "time": "2020-11-13T09:40:50+00:00"
  9417. },
  9418. {
  9419. "name": "nunomaduro/collision",
  9420. "version": "v4.3.0",
  9421. "source": {
  9422. "type": "git",
  9423. "url": "https://github.com/nunomaduro/collision.git",
  9424. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e"
  9425. },
  9426. "dist": {
  9427. "type": "zip",
  9428. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/7c125dc2463f3e144ddc7e05e63077109508c94e",
  9429. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e",
  9430. "shasum": ""
  9431. },
  9432. "require": {
  9433. "facade/ignition-contracts": "^1.0",
  9434. "filp/whoops": "^2.4",
  9435. "php": "^7.2.5 || ^8.0",
  9436. "symfony/console": "^5.0"
  9437. },
  9438. "require-dev": {
  9439. "facade/ignition": "^2.0",
  9440. "fideloper/proxy": "^4.2",
  9441. "friendsofphp/php-cs-fixer": "^2.16",
  9442. "fruitcake/laravel-cors": "^1.0",
  9443. "laravel/framework": "^7.0",
  9444. "laravel/tinker": "^2.0",
  9445. "nunomaduro/larastan": "^0.6",
  9446. "orchestra/testbench": "^5.0",
  9447. "phpstan/phpstan": "^0.12.3",
  9448. "phpunit/phpunit": "^8.5.1 || ^9.0"
  9449. },
  9450. "type": "library",
  9451. "extra": {
  9452. "laravel": {
  9453. "providers": [
  9454. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  9455. ]
  9456. }
  9457. },
  9458. "autoload": {
  9459. "psr-4": {
  9460. "NunoMaduro\\Collision\\": "src/"
  9461. }
  9462. },
  9463. "notification-url": "https://packagist.org/downloads/",
  9464. "license": [
  9465. "MIT"
  9466. ],
  9467. "authors": [
  9468. {
  9469. "name": "Nuno Maduro",
  9470. "email": "enunomaduro@gmail.com"
  9471. }
  9472. ],
  9473. "description": "Cli error handling for console/command-line PHP applications.",
  9474. "keywords": [
  9475. "artisan",
  9476. "cli",
  9477. "command-line",
  9478. "console",
  9479. "error",
  9480. "handling",
  9481. "laravel",
  9482. "laravel-zero",
  9483. "php",
  9484. "symfony"
  9485. ],
  9486. "support": {
  9487. "issues": "https://github.com/nunomaduro/collision/issues",
  9488. "source": "https://github.com/nunomaduro/collision"
  9489. },
  9490. "funding": [
  9491. {
  9492. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  9493. "type": "custom"
  9494. },
  9495. {
  9496. "url": "https://github.com/nunomaduro",
  9497. "type": "github"
  9498. },
  9499. {
  9500. "url": "https://www.patreon.com/nunomaduro",
  9501. "type": "patreon"
  9502. }
  9503. ],
  9504. "time": "2020-10-29T15:12:23+00:00"
  9505. },
  9506. {
  9507. "name": "paragonie/constant_time_encoding",
  9508. "version": "v2.4.0",
  9509. "source": {
  9510. "type": "git",
  9511. "url": "https://github.com/paragonie/constant_time_encoding.git",
  9512. "reference": "f34c2b11eb9d2c9318e13540a1dbc2a3afbd939c"
  9513. },
  9514. "dist": {
  9515. "type": "zip",
  9516. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/f34c2b11eb9d2c9318e13540a1dbc2a3afbd939c",
  9517. "reference": "f34c2b11eb9d2c9318e13540a1dbc2a3afbd939c",
  9518. "shasum": ""
  9519. },
  9520. "require": {
  9521. "php": "^7|^8"
  9522. },
  9523. "require-dev": {
  9524. "phpunit/phpunit": "^6|^7|^8|^9",
  9525. "vimeo/psalm": "^1|^2|^3|^4"
  9526. },
  9527. "type": "library",
  9528. "autoload": {
  9529. "psr-4": {
  9530. "ParagonIE\\ConstantTime\\": "src/"
  9531. }
  9532. },
  9533. "notification-url": "https://packagist.org/downloads/",
  9534. "license": [
  9535. "MIT"
  9536. ],
  9537. "authors": [
  9538. {
  9539. "name": "Paragon Initiative Enterprises",
  9540. "email": "security@paragonie.com",
  9541. "homepage": "https://paragonie.com",
  9542. "role": "Maintainer"
  9543. },
  9544. {
  9545. "name": "Steve 'Sc00bz' Thomas",
  9546. "email": "steve@tobtu.com",
  9547. "homepage": "https://www.tobtu.com",
  9548. "role": "Original Developer"
  9549. }
  9550. ],
  9551. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  9552. "keywords": [
  9553. "base16",
  9554. "base32",
  9555. "base32_decode",
  9556. "base32_encode",
  9557. "base64",
  9558. "base64_decode",
  9559. "base64_encode",
  9560. "bin2hex",
  9561. "encoding",
  9562. "hex",
  9563. "hex2bin",
  9564. "rfc4648"
  9565. ],
  9566. "support": {
  9567. "email": "info@paragonie.com",
  9568. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  9569. "source": "https://github.com/paragonie/constant_time_encoding"
  9570. },
  9571. "time": "2020-12-06T15:14:20+00:00"
  9572. },
  9573. {
  9574. "name": "paragonie/random_compat",
  9575. "version": "v2.0.19",
  9576. "source": {
  9577. "type": "git",
  9578. "url": "https://github.com/paragonie/random_compat.git",
  9579. "reference": "446fc9faa5c2a9ddf65eb7121c0af7e857295241"
  9580. },
  9581. "dist": {
  9582. "type": "zip",
  9583. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/446fc9faa5c2a9ddf65eb7121c0af7e857295241",
  9584. "reference": "446fc9faa5c2a9ddf65eb7121c0af7e857295241",
  9585. "shasum": ""
  9586. },
  9587. "require": {
  9588. "php": ">=5.2.0"
  9589. },
  9590. "require-dev": {
  9591. "phpunit/phpunit": "4.*|5.*"
  9592. },
  9593. "suggest": {
  9594. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  9595. },
  9596. "type": "library",
  9597. "autoload": {
  9598. "files": [
  9599. "lib/random.php"
  9600. ]
  9601. },
  9602. "notification-url": "https://packagist.org/downloads/",
  9603. "license": [
  9604. "MIT"
  9605. ],
  9606. "authors": [
  9607. {
  9608. "name": "Paragon Initiative Enterprises",
  9609. "email": "security@paragonie.com",
  9610. "homepage": "https://paragonie.com"
  9611. }
  9612. ],
  9613. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  9614. "keywords": [
  9615. "csprng",
  9616. "polyfill",
  9617. "pseudorandom",
  9618. "random"
  9619. ],
  9620. "support": {
  9621. "email": "info@paragonie.com",
  9622. "issues": "https://github.com/paragonie/random_compat/issues",
  9623. "source": "https://github.com/paragonie/random_compat"
  9624. },
  9625. "time": "2020-10-15T10:06:57+00:00"
  9626. },
  9627. {
  9628. "name": "phar-io/manifest",
  9629. "version": "2.0.1",
  9630. "source": {
  9631. "type": "git",
  9632. "url": "https://github.com/phar-io/manifest.git",
  9633. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133"
  9634. },
  9635. "dist": {
  9636. "type": "zip",
  9637. "url": "https://api.github.com/repos/phar-io/manifest/zipball/85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  9638. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  9639. "shasum": ""
  9640. },
  9641. "require": {
  9642. "ext-dom": "*",
  9643. "ext-phar": "*",
  9644. "ext-xmlwriter": "*",
  9645. "phar-io/version": "^3.0.1",
  9646. "php": "^7.2 || ^8.0"
  9647. },
  9648. "type": "library",
  9649. "extra": {
  9650. "branch-alias": {
  9651. "dev-master": "2.0.x-dev"
  9652. }
  9653. },
  9654. "autoload": {
  9655. "classmap": [
  9656. "src/"
  9657. ]
  9658. },
  9659. "notification-url": "https://packagist.org/downloads/",
  9660. "license": [
  9661. "BSD-3-Clause"
  9662. ],
  9663. "authors": [
  9664. {
  9665. "name": "Arne Blankerts",
  9666. "email": "arne@blankerts.de",
  9667. "role": "Developer"
  9668. },
  9669. {
  9670. "name": "Sebastian Heuer",
  9671. "email": "sebastian@phpeople.de",
  9672. "role": "Developer"
  9673. },
  9674. {
  9675. "name": "Sebastian Bergmann",
  9676. "email": "sebastian@phpunit.de",
  9677. "role": "Developer"
  9678. }
  9679. ],
  9680. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9681. "support": {
  9682. "issues": "https://github.com/phar-io/manifest/issues",
  9683. "source": "https://github.com/phar-io/manifest/tree/master"
  9684. },
  9685. "time": "2020-06-27T14:33:11+00:00"
  9686. },
  9687. {
  9688. "name": "phar-io/version",
  9689. "version": "3.0.4",
  9690. "source": {
  9691. "type": "git",
  9692. "url": "https://github.com/phar-io/version.git",
  9693. "reference": "e4782611070e50613683d2b9a57730e9a3ba5451"
  9694. },
  9695. "dist": {
  9696. "type": "zip",
  9697. "url": "https://api.github.com/repos/phar-io/version/zipball/e4782611070e50613683d2b9a57730e9a3ba5451",
  9698. "reference": "e4782611070e50613683d2b9a57730e9a3ba5451",
  9699. "shasum": ""
  9700. },
  9701. "require": {
  9702. "php": "^7.2 || ^8.0"
  9703. },
  9704. "type": "library",
  9705. "autoload": {
  9706. "classmap": [
  9707. "src/"
  9708. ]
  9709. },
  9710. "notification-url": "https://packagist.org/downloads/",
  9711. "license": [
  9712. "BSD-3-Clause"
  9713. ],
  9714. "authors": [
  9715. {
  9716. "name": "Arne Blankerts",
  9717. "email": "arne@blankerts.de",
  9718. "role": "Developer"
  9719. },
  9720. {
  9721. "name": "Sebastian Heuer",
  9722. "email": "sebastian@phpeople.de",
  9723. "role": "Developer"
  9724. },
  9725. {
  9726. "name": "Sebastian Bergmann",
  9727. "email": "sebastian@phpunit.de",
  9728. "role": "Developer"
  9729. }
  9730. ],
  9731. "description": "Library for handling version information and constraints",
  9732. "support": {
  9733. "issues": "https://github.com/phar-io/version/issues",
  9734. "source": "https://github.com/phar-io/version/tree/3.0.4"
  9735. },
  9736. "time": "2020-12-13T23:18:30+00:00"
  9737. },
  9738. {
  9739. "name": "phpdocumentor/reflection-common",
  9740. "version": "2.2.0",
  9741. "source": {
  9742. "type": "git",
  9743. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  9744. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  9745. },
  9746. "dist": {
  9747. "type": "zip",
  9748. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  9749. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  9750. "shasum": ""
  9751. },
  9752. "require": {
  9753. "php": "^7.2 || ^8.0"
  9754. },
  9755. "type": "library",
  9756. "extra": {
  9757. "branch-alias": {
  9758. "dev-2.x": "2.x-dev"
  9759. }
  9760. },
  9761. "autoload": {
  9762. "psr-4": {
  9763. "phpDocumentor\\Reflection\\": "src/"
  9764. }
  9765. },
  9766. "notification-url": "https://packagist.org/downloads/",
  9767. "license": [
  9768. "MIT"
  9769. ],
  9770. "authors": [
  9771. {
  9772. "name": "Jaap van Otterdijk",
  9773. "email": "opensource@ijaap.nl"
  9774. }
  9775. ],
  9776. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  9777. "homepage": "http://www.phpdoc.org",
  9778. "keywords": [
  9779. "FQSEN",
  9780. "phpDocumentor",
  9781. "phpdoc",
  9782. "reflection",
  9783. "static analysis"
  9784. ],
  9785. "support": {
  9786. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  9787. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  9788. },
  9789. "time": "2020-06-27T09:03:43+00:00"
  9790. },
  9791. {
  9792. "name": "phpdocumentor/reflection-docblock",
  9793. "version": "5.2.2",
  9794. "source": {
  9795. "type": "git",
  9796. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  9797. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556"
  9798. },
  9799. "dist": {
  9800. "type": "zip",
  9801. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556",
  9802. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556",
  9803. "shasum": ""
  9804. },
  9805. "require": {
  9806. "ext-filter": "*",
  9807. "php": "^7.2 || ^8.0",
  9808. "phpdocumentor/reflection-common": "^2.2",
  9809. "phpdocumentor/type-resolver": "^1.3",
  9810. "webmozart/assert": "^1.9.1"
  9811. },
  9812. "require-dev": {
  9813. "mockery/mockery": "~1.3.2"
  9814. },
  9815. "type": "library",
  9816. "extra": {
  9817. "branch-alias": {
  9818. "dev-master": "5.x-dev"
  9819. }
  9820. },
  9821. "autoload": {
  9822. "psr-4": {
  9823. "phpDocumentor\\Reflection\\": "src"
  9824. }
  9825. },
  9826. "notification-url": "https://packagist.org/downloads/",
  9827. "license": [
  9828. "MIT"
  9829. ],
  9830. "authors": [
  9831. {
  9832. "name": "Mike van Riel",
  9833. "email": "me@mikevanriel.com"
  9834. },
  9835. {
  9836. "name": "Jaap van Otterdijk",
  9837. "email": "account@ijaap.nl"
  9838. }
  9839. ],
  9840. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  9841. "support": {
  9842. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  9843. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/master"
  9844. },
  9845. "time": "2020-09-03T19:13:55+00:00"
  9846. },
  9847. {
  9848. "name": "phpdocumentor/type-resolver",
  9849. "version": "1.4.0",
  9850. "source": {
  9851. "type": "git",
  9852. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  9853. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0"
  9854. },
  9855. "dist": {
  9856. "type": "zip",
  9857. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  9858. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  9859. "shasum": ""
  9860. },
  9861. "require": {
  9862. "php": "^7.2 || ^8.0",
  9863. "phpdocumentor/reflection-common": "^2.0"
  9864. },
  9865. "require-dev": {
  9866. "ext-tokenizer": "*"
  9867. },
  9868. "type": "library",
  9869. "extra": {
  9870. "branch-alias": {
  9871. "dev-1.x": "1.x-dev"
  9872. }
  9873. },
  9874. "autoload": {
  9875. "psr-4": {
  9876. "phpDocumentor\\Reflection\\": "src"
  9877. }
  9878. },
  9879. "notification-url": "https://packagist.org/downloads/",
  9880. "license": [
  9881. "MIT"
  9882. ],
  9883. "authors": [
  9884. {
  9885. "name": "Mike van Riel",
  9886. "email": "me@mikevanriel.com"
  9887. }
  9888. ],
  9889. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  9890. "support": {
  9891. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  9892. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.4.0"
  9893. },
  9894. "time": "2020-09-17T18:55:26+00:00"
  9895. },
  9896. {
  9897. "name": "phpseclib/bcmath_compat",
  9898. "version": "2.0.0",
  9899. "source": {
  9900. "type": "git",
  9901. "url": "https://github.com/phpseclib/bcmath_compat.git",
  9902. "reference": "fd896dfceffc13d8cf45d2ee3470777a70026f3c"
  9903. },
  9904. "dist": {
  9905. "type": "zip",
  9906. "url": "https://api.github.com/repos/phpseclib/bcmath_compat/zipball/fd896dfceffc13d8cf45d2ee3470777a70026f3c",
  9907. "reference": "fd896dfceffc13d8cf45d2ee3470777a70026f3c",
  9908. "shasum": ""
  9909. },
  9910. "require": {
  9911. "phpseclib/phpseclib": "^3.0"
  9912. },
  9913. "provide": {
  9914. "ext-bcmath": "8.0.0"
  9915. },
  9916. "require-dev": {
  9917. "phpunit/phpunit": "^4.8.35|^5.7|^6.0|^9.4",
  9918. "squizlabs/php_codesniffer": "^3.0"
  9919. },
  9920. "suggest": {
  9921. "ext-gmp": "Will enable faster math operations"
  9922. },
  9923. "type": "library",
  9924. "autoload": {
  9925. "files": [
  9926. "lib/bcmath.php"
  9927. ],
  9928. "psr-4": {
  9929. "bcmath_compat\\": "src"
  9930. }
  9931. },
  9932. "notification-url": "https://packagist.org/downloads/",
  9933. "license": [
  9934. "MIT"
  9935. ],
  9936. "authors": [
  9937. {
  9938. "name": "Jim Wigginton",
  9939. "email": "terrafrost@php.net",
  9940. "homepage": "http://phpseclib.sourceforge.net"
  9941. }
  9942. ],
  9943. "description": "PHP 5.x/7.x polyfill for bcmath extension",
  9944. "keywords": [
  9945. "BigInteger",
  9946. "bcmath",
  9947. "bigdecimal",
  9948. "math",
  9949. "polyfill"
  9950. ],
  9951. "support": {
  9952. "email": "terrafrost@php.net",
  9953. "issues": "https://github.com/phpseclib/bcmath_compat/issues",
  9954. "source": "https://github.com/phpseclib/bcmath_compat"
  9955. },
  9956. "time": "2020-12-22T16:38:51+00:00"
  9957. },
  9958. {
  9959. "name": "phpseclib/phpseclib",
  9960. "version": "3.0.3",
  9961. "source": {
  9962. "type": "git",
  9963. "url": "https://github.com/phpseclib/phpseclib.git",
  9964. "reference": "97a5a270e4a9ebfc1a7e2f462e917cbce1a8e6d9"
  9965. },
  9966. "dist": {
  9967. "type": "zip",
  9968. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/97a5a270e4a9ebfc1a7e2f462e917cbce1a8e6d9",
  9969. "reference": "97a5a270e4a9ebfc1a7e2f462e917cbce1a8e6d9",
  9970. "shasum": ""
  9971. },
  9972. "require": {
  9973. "paragonie/constant_time_encoding": "^1|^2",
  9974. "paragonie/random_compat": "^1.4|^2.0",
  9975. "php": ">=5.6.1"
  9976. },
  9977. "require-dev": {
  9978. "phing/phing": "~2.7",
  9979. "phpunit/phpunit": "^5.7|^6.0|^9.4",
  9980. "squizlabs/php_codesniffer": "~2.0"
  9981. },
  9982. "suggest": {
  9983. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  9984. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  9985. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  9986. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  9987. },
  9988. "type": "library",
  9989. "autoload": {
  9990. "files": [
  9991. "phpseclib/bootstrap.php"
  9992. ],
  9993. "psr-4": {
  9994. "phpseclib3\\": "phpseclib/"
  9995. }
  9996. },
  9997. "notification-url": "https://packagist.org/downloads/",
  9998. "license": [
  9999. "MIT"
  10000. ],
  10001. "authors": [
  10002. {
  10003. "name": "Jim Wigginton",
  10004. "email": "terrafrost@php.net",
  10005. "role": "Lead Developer"
  10006. },
  10007. {
  10008. "name": "Patrick Monnerat",
  10009. "email": "pm@datasphere.ch",
  10010. "role": "Developer"
  10011. },
  10012. {
  10013. "name": "Andreas Fischer",
  10014. "email": "bantu@phpbb.com",
  10015. "role": "Developer"
  10016. },
  10017. {
  10018. "name": "Hans-Jürgen Petrich",
  10019. "email": "petrich@tronic-media.com",
  10020. "role": "Developer"
  10021. },
  10022. {
  10023. "name": "Graham Campbell",
  10024. "email": "graham@alt-three.com",
  10025. "role": "Developer"
  10026. }
  10027. ],
  10028. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  10029. "homepage": "http://phpseclib.sourceforge.net",
  10030. "keywords": [
  10031. "BigInteger",
  10032. "aes",
  10033. "asn.1",
  10034. "asn1",
  10035. "blowfish",
  10036. "crypto",
  10037. "cryptography",
  10038. "encryption",
  10039. "rsa",
  10040. "security",
  10041. "sftp",
  10042. "signature",
  10043. "signing",
  10044. "ssh",
  10045. "twofish",
  10046. "x.509",
  10047. "x509"
  10048. ],
  10049. "support": {
  10050. "issues": "https://github.com/phpseclib/phpseclib/issues",
  10051. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.3"
  10052. },
  10053. "funding": [
  10054. {
  10055. "url": "https://github.com/terrafrost",
  10056. "type": "github"
  10057. },
  10058. {
  10059. "url": "https://www.patreon.com/phpseclib",
  10060. "type": "patreon"
  10061. },
  10062. {
  10063. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  10064. "type": "tidelift"
  10065. }
  10066. ],
  10067. "time": "2021-01-16T17:35:19+00:00"
  10068. },
  10069. {
  10070. "name": "phpspec/prophecy",
  10071. "version": "1.12.2",
  10072. "source": {
  10073. "type": "git",
  10074. "url": "https://github.com/phpspec/prophecy.git",
  10075. "reference": "245710e971a030f42e08f4912863805570f23d39"
  10076. },
  10077. "dist": {
  10078. "type": "zip",
  10079. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/245710e971a030f42e08f4912863805570f23d39",
  10080. "reference": "245710e971a030f42e08f4912863805570f23d39",
  10081. "shasum": ""
  10082. },
  10083. "require": {
  10084. "doctrine/instantiator": "^1.2",
  10085. "php": "^7.2 || ~8.0, <8.1",
  10086. "phpdocumentor/reflection-docblock": "^5.2",
  10087. "sebastian/comparator": "^3.0 || ^4.0",
  10088. "sebastian/recursion-context": "^3.0 || ^4.0"
  10089. },
  10090. "require-dev": {
  10091. "phpspec/phpspec": "^6.0",
  10092. "phpunit/phpunit": "^8.0 || ^9.0"
  10093. },
  10094. "type": "library",
  10095. "extra": {
  10096. "branch-alias": {
  10097. "dev-master": "1.11.x-dev"
  10098. }
  10099. },
  10100. "autoload": {
  10101. "psr-4": {
  10102. "Prophecy\\": "src/Prophecy"
  10103. }
  10104. },
  10105. "notification-url": "https://packagist.org/downloads/",
  10106. "license": [
  10107. "MIT"
  10108. ],
  10109. "authors": [
  10110. {
  10111. "name": "Konstantin Kudryashov",
  10112. "email": "ever.zet@gmail.com",
  10113. "homepage": "http://everzet.com"
  10114. },
  10115. {
  10116. "name": "Marcello Duarte",
  10117. "email": "marcello.duarte@gmail.com"
  10118. }
  10119. ],
  10120. "description": "Highly opinionated mocking framework for PHP 5.3+",
  10121. "homepage": "https://github.com/phpspec/prophecy",
  10122. "keywords": [
  10123. "Double",
  10124. "Dummy",
  10125. "fake",
  10126. "mock",
  10127. "spy",
  10128. "stub"
  10129. ],
  10130. "support": {
  10131. "issues": "https://github.com/phpspec/prophecy/issues",
  10132. "source": "https://github.com/phpspec/prophecy/tree/1.12.2"
  10133. },
  10134. "time": "2020-12-19T10:15:11+00:00"
  10135. },
  10136. {
  10137. "name": "phpunit/php-code-coverage",
  10138. "version": "9.2.5",
  10139. "source": {
  10140. "type": "git",
  10141. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  10142. "reference": "f3e026641cc91909d421802dd3ac7827ebfd97e1"
  10143. },
  10144. "dist": {
  10145. "type": "zip",
  10146. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f3e026641cc91909d421802dd3ac7827ebfd97e1",
  10147. "reference": "f3e026641cc91909d421802dd3ac7827ebfd97e1",
  10148. "shasum": ""
  10149. },
  10150. "require": {
  10151. "ext-dom": "*",
  10152. "ext-libxml": "*",
  10153. "ext-xmlwriter": "*",
  10154. "nikic/php-parser": "^4.10.2",
  10155. "php": ">=7.3",
  10156. "phpunit/php-file-iterator": "^3.0.3",
  10157. "phpunit/php-text-template": "^2.0.2",
  10158. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  10159. "sebastian/complexity": "^2.0",
  10160. "sebastian/environment": "^5.1.2",
  10161. "sebastian/lines-of-code": "^1.0.3",
  10162. "sebastian/version": "^3.0.1",
  10163. "theseer/tokenizer": "^1.2.0"
  10164. },
  10165. "require-dev": {
  10166. "phpunit/phpunit": "^9.3"
  10167. },
  10168. "suggest": {
  10169. "ext-pcov": "*",
  10170. "ext-xdebug": "*"
  10171. },
  10172. "type": "library",
  10173. "extra": {
  10174. "branch-alias": {
  10175. "dev-master": "9.2-dev"
  10176. }
  10177. },
  10178. "autoload": {
  10179. "classmap": [
  10180. "src/"
  10181. ]
  10182. },
  10183. "notification-url": "https://packagist.org/downloads/",
  10184. "license": [
  10185. "BSD-3-Clause"
  10186. ],
  10187. "authors": [
  10188. {
  10189. "name": "Sebastian Bergmann",
  10190. "email": "sebastian@phpunit.de",
  10191. "role": "lead"
  10192. }
  10193. ],
  10194. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  10195. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  10196. "keywords": [
  10197. "coverage",
  10198. "testing",
  10199. "xunit"
  10200. ],
  10201. "support": {
  10202. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  10203. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.5"
  10204. },
  10205. "funding": [
  10206. {
  10207. "url": "https://github.com/sebastianbergmann",
  10208. "type": "github"
  10209. }
  10210. ],
  10211. "time": "2020-11-28T06:44:49+00:00"
  10212. },
  10213. {
  10214. "name": "phpunit/php-file-iterator",
  10215. "version": "3.0.5",
  10216. "source": {
  10217. "type": "git",
  10218. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  10219. "reference": "aa4be8575f26070b100fccb67faabb28f21f66f8"
  10220. },
  10221. "dist": {
  10222. "type": "zip",
  10223. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/aa4be8575f26070b100fccb67faabb28f21f66f8",
  10224. "reference": "aa4be8575f26070b100fccb67faabb28f21f66f8",
  10225. "shasum": ""
  10226. },
  10227. "require": {
  10228. "php": ">=7.3"
  10229. },
  10230. "require-dev": {
  10231. "phpunit/phpunit": "^9.3"
  10232. },
  10233. "type": "library",
  10234. "extra": {
  10235. "branch-alias": {
  10236. "dev-master": "3.0-dev"
  10237. }
  10238. },
  10239. "autoload": {
  10240. "classmap": [
  10241. "src/"
  10242. ]
  10243. },
  10244. "notification-url": "https://packagist.org/downloads/",
  10245. "license": [
  10246. "BSD-3-Clause"
  10247. ],
  10248. "authors": [
  10249. {
  10250. "name": "Sebastian Bergmann",
  10251. "email": "sebastian@phpunit.de",
  10252. "role": "lead"
  10253. }
  10254. ],
  10255. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  10256. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  10257. "keywords": [
  10258. "filesystem",
  10259. "iterator"
  10260. ],
  10261. "support": {
  10262. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  10263. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.5"
  10264. },
  10265. "funding": [
  10266. {
  10267. "url": "https://github.com/sebastianbergmann",
  10268. "type": "github"
  10269. }
  10270. ],
  10271. "time": "2020-09-28T05:57:25+00:00"
  10272. },
  10273. {
  10274. "name": "phpunit/php-invoker",
  10275. "version": "3.1.1",
  10276. "source": {
  10277. "type": "git",
  10278. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  10279. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  10280. },
  10281. "dist": {
  10282. "type": "zip",
  10283. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  10284. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  10285. "shasum": ""
  10286. },
  10287. "require": {
  10288. "php": ">=7.3"
  10289. },
  10290. "require-dev": {
  10291. "ext-pcntl": "*",
  10292. "phpunit/phpunit": "^9.3"
  10293. },
  10294. "suggest": {
  10295. "ext-pcntl": "*"
  10296. },
  10297. "type": "library",
  10298. "extra": {
  10299. "branch-alias": {
  10300. "dev-master": "3.1-dev"
  10301. }
  10302. },
  10303. "autoload": {
  10304. "classmap": [
  10305. "src/"
  10306. ]
  10307. },
  10308. "notification-url": "https://packagist.org/downloads/",
  10309. "license": [
  10310. "BSD-3-Clause"
  10311. ],
  10312. "authors": [
  10313. {
  10314. "name": "Sebastian Bergmann",
  10315. "email": "sebastian@phpunit.de",
  10316. "role": "lead"
  10317. }
  10318. ],
  10319. "description": "Invoke callables with a timeout",
  10320. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  10321. "keywords": [
  10322. "process"
  10323. ],
  10324. "support": {
  10325. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  10326. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  10327. },
  10328. "funding": [
  10329. {
  10330. "url": "https://github.com/sebastianbergmann",
  10331. "type": "github"
  10332. }
  10333. ],
  10334. "time": "2020-09-28T05:58:55+00:00"
  10335. },
  10336. {
  10337. "name": "phpunit/php-text-template",
  10338. "version": "2.0.4",
  10339. "source": {
  10340. "type": "git",
  10341. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  10342. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  10343. },
  10344. "dist": {
  10345. "type": "zip",
  10346. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  10347. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  10348. "shasum": ""
  10349. },
  10350. "require": {
  10351. "php": ">=7.3"
  10352. },
  10353. "require-dev": {
  10354. "phpunit/phpunit": "^9.3"
  10355. },
  10356. "type": "library",
  10357. "extra": {
  10358. "branch-alias": {
  10359. "dev-master": "2.0-dev"
  10360. }
  10361. },
  10362. "autoload": {
  10363. "classmap": [
  10364. "src/"
  10365. ]
  10366. },
  10367. "notification-url": "https://packagist.org/downloads/",
  10368. "license": [
  10369. "BSD-3-Clause"
  10370. ],
  10371. "authors": [
  10372. {
  10373. "name": "Sebastian Bergmann",
  10374. "email": "sebastian@phpunit.de",
  10375. "role": "lead"
  10376. }
  10377. ],
  10378. "description": "Simple template engine.",
  10379. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  10380. "keywords": [
  10381. "template"
  10382. ],
  10383. "support": {
  10384. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  10385. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  10386. },
  10387. "funding": [
  10388. {
  10389. "url": "https://github.com/sebastianbergmann",
  10390. "type": "github"
  10391. }
  10392. ],
  10393. "time": "2020-10-26T05:33:50+00:00"
  10394. },
  10395. {
  10396. "name": "phpunit/php-timer",
  10397. "version": "5.0.3",
  10398. "source": {
  10399. "type": "git",
  10400. "url": "https://github.com/sebastianbergmann/php-timer.git",
  10401. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  10402. },
  10403. "dist": {
  10404. "type": "zip",
  10405. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  10406. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  10407. "shasum": ""
  10408. },
  10409. "require": {
  10410. "php": ">=7.3"
  10411. },
  10412. "require-dev": {
  10413. "phpunit/phpunit": "^9.3"
  10414. },
  10415. "type": "library",
  10416. "extra": {
  10417. "branch-alias": {
  10418. "dev-master": "5.0-dev"
  10419. }
  10420. },
  10421. "autoload": {
  10422. "classmap": [
  10423. "src/"
  10424. ]
  10425. },
  10426. "notification-url": "https://packagist.org/downloads/",
  10427. "license": [
  10428. "BSD-3-Clause"
  10429. ],
  10430. "authors": [
  10431. {
  10432. "name": "Sebastian Bergmann",
  10433. "email": "sebastian@phpunit.de",
  10434. "role": "lead"
  10435. }
  10436. ],
  10437. "description": "Utility class for timing",
  10438. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  10439. "keywords": [
  10440. "timer"
  10441. ],
  10442. "support": {
  10443. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  10444. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  10445. },
  10446. "funding": [
  10447. {
  10448. "url": "https://github.com/sebastianbergmann",
  10449. "type": "github"
  10450. }
  10451. ],
  10452. "time": "2020-10-26T13:16:10+00:00"
  10453. },
  10454. {
  10455. "name": "phpunit/phpunit",
  10456. "version": "9.5.1",
  10457. "source": {
  10458. "type": "git",
  10459. "url": "https://github.com/sebastianbergmann/phpunit.git",
  10460. "reference": "e7bdf4085de85a825f4424eae52c99a1cec2f360"
  10461. },
  10462. "dist": {
  10463. "type": "zip",
  10464. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/e7bdf4085de85a825f4424eae52c99a1cec2f360",
  10465. "reference": "e7bdf4085de85a825f4424eae52c99a1cec2f360",
  10466. "shasum": ""
  10467. },
  10468. "require": {
  10469. "doctrine/instantiator": "^1.3.1",
  10470. "ext-dom": "*",
  10471. "ext-json": "*",
  10472. "ext-libxml": "*",
  10473. "ext-mbstring": "*",
  10474. "ext-xml": "*",
  10475. "ext-xmlwriter": "*",
  10476. "myclabs/deep-copy": "^1.10.1",
  10477. "phar-io/manifest": "^2.0.1",
  10478. "phar-io/version": "^3.0.2",
  10479. "php": ">=7.3",
  10480. "phpspec/prophecy": "^1.12.1",
  10481. "phpunit/php-code-coverage": "^9.2.3",
  10482. "phpunit/php-file-iterator": "^3.0.5",
  10483. "phpunit/php-invoker": "^3.1.1",
  10484. "phpunit/php-text-template": "^2.0.3",
  10485. "phpunit/php-timer": "^5.0.2",
  10486. "sebastian/cli-parser": "^1.0.1",
  10487. "sebastian/code-unit": "^1.0.6",
  10488. "sebastian/comparator": "^4.0.5",
  10489. "sebastian/diff": "^4.0.3",
  10490. "sebastian/environment": "^5.1.3",
  10491. "sebastian/exporter": "^4.0.3",
  10492. "sebastian/global-state": "^5.0.1",
  10493. "sebastian/object-enumerator": "^4.0.3",
  10494. "sebastian/resource-operations": "^3.0.3",
  10495. "sebastian/type": "^2.3",
  10496. "sebastian/version": "^3.0.2"
  10497. },
  10498. "require-dev": {
  10499. "ext-pdo": "*",
  10500. "phpspec/prophecy-phpunit": "^2.0.1"
  10501. },
  10502. "suggest": {
  10503. "ext-soap": "*",
  10504. "ext-xdebug": "*"
  10505. },
  10506. "bin": [
  10507. "phpunit"
  10508. ],
  10509. "type": "library",
  10510. "extra": {
  10511. "branch-alias": {
  10512. "dev-master": "9.5-dev"
  10513. }
  10514. },
  10515. "autoload": {
  10516. "classmap": [
  10517. "src/"
  10518. ],
  10519. "files": [
  10520. "src/Framework/Assert/Functions.php"
  10521. ]
  10522. },
  10523. "notification-url": "https://packagist.org/downloads/",
  10524. "license": [
  10525. "BSD-3-Clause"
  10526. ],
  10527. "authors": [
  10528. {
  10529. "name": "Sebastian Bergmann",
  10530. "email": "sebastian@phpunit.de",
  10531. "role": "lead"
  10532. }
  10533. ],
  10534. "description": "The PHP Unit Testing framework.",
  10535. "homepage": "https://phpunit.de/",
  10536. "keywords": [
  10537. "phpunit",
  10538. "testing",
  10539. "xunit"
  10540. ],
  10541. "support": {
  10542. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  10543. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.1"
  10544. },
  10545. "funding": [
  10546. {
  10547. "url": "https://phpunit.de/donate.html",
  10548. "type": "custom"
  10549. },
  10550. {
  10551. "url": "https://github.com/sebastianbergmann",
  10552. "type": "github"
  10553. }
  10554. ],
  10555. "time": "2021-01-17T07:42:25+00:00"
  10556. },
  10557. {
  10558. "name": "react/promise",
  10559. "version": "v2.8.0",
  10560. "source": {
  10561. "type": "git",
  10562. "url": "https://github.com/reactphp/promise.git",
  10563. "reference": "f3cff96a19736714524ca0dd1d4130de73dbbbc4"
  10564. },
  10565. "dist": {
  10566. "type": "zip",
  10567. "url": "https://api.github.com/repos/reactphp/promise/zipball/f3cff96a19736714524ca0dd1d4130de73dbbbc4",
  10568. "reference": "f3cff96a19736714524ca0dd1d4130de73dbbbc4",
  10569. "shasum": ""
  10570. },
  10571. "require": {
  10572. "php": ">=5.4.0"
  10573. },
  10574. "require-dev": {
  10575. "phpunit/phpunit": "^7.0 || ^6.5 || ^5.7 || ^4.8.36"
  10576. },
  10577. "type": "library",
  10578. "autoload": {
  10579. "psr-4": {
  10580. "React\\Promise\\": "src/"
  10581. },
  10582. "files": [
  10583. "src/functions_include.php"
  10584. ]
  10585. },
  10586. "notification-url": "https://packagist.org/downloads/",
  10587. "license": [
  10588. "MIT"
  10589. ],
  10590. "authors": [
  10591. {
  10592. "name": "Jan Sorgalla",
  10593. "email": "jsorgalla@gmail.com"
  10594. }
  10595. ],
  10596. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  10597. "keywords": [
  10598. "promise",
  10599. "promises"
  10600. ],
  10601. "support": {
  10602. "issues": "https://github.com/reactphp/promise/issues",
  10603. "source": "https://github.com/reactphp/promise/tree/v2.8.0"
  10604. },
  10605. "time": "2020-05-12T15:16:56+00:00"
  10606. },
  10607. {
  10608. "name": "sebastian/cli-parser",
  10609. "version": "1.0.1",
  10610. "source": {
  10611. "type": "git",
  10612. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  10613. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  10614. },
  10615. "dist": {
  10616. "type": "zip",
  10617. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  10618. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  10619. "shasum": ""
  10620. },
  10621. "require": {
  10622. "php": ">=7.3"
  10623. },
  10624. "require-dev": {
  10625. "phpunit/phpunit": "^9.3"
  10626. },
  10627. "type": "library",
  10628. "extra": {
  10629. "branch-alias": {
  10630. "dev-master": "1.0-dev"
  10631. }
  10632. },
  10633. "autoload": {
  10634. "classmap": [
  10635. "src/"
  10636. ]
  10637. },
  10638. "notification-url": "https://packagist.org/downloads/",
  10639. "license": [
  10640. "BSD-3-Clause"
  10641. ],
  10642. "authors": [
  10643. {
  10644. "name": "Sebastian Bergmann",
  10645. "email": "sebastian@phpunit.de",
  10646. "role": "lead"
  10647. }
  10648. ],
  10649. "description": "Library for parsing CLI options",
  10650. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  10651. "support": {
  10652. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  10653. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  10654. },
  10655. "funding": [
  10656. {
  10657. "url": "https://github.com/sebastianbergmann",
  10658. "type": "github"
  10659. }
  10660. ],
  10661. "time": "2020-09-28T06:08:49+00:00"
  10662. },
  10663. {
  10664. "name": "sebastian/code-unit",
  10665. "version": "1.0.8",
  10666. "source": {
  10667. "type": "git",
  10668. "url": "https://github.com/sebastianbergmann/code-unit.git",
  10669. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  10670. },
  10671. "dist": {
  10672. "type": "zip",
  10673. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  10674. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  10675. "shasum": ""
  10676. },
  10677. "require": {
  10678. "php": ">=7.3"
  10679. },
  10680. "require-dev": {
  10681. "phpunit/phpunit": "^9.3"
  10682. },
  10683. "type": "library",
  10684. "extra": {
  10685. "branch-alias": {
  10686. "dev-master": "1.0-dev"
  10687. }
  10688. },
  10689. "autoload": {
  10690. "classmap": [
  10691. "src/"
  10692. ]
  10693. },
  10694. "notification-url": "https://packagist.org/downloads/",
  10695. "license": [
  10696. "BSD-3-Clause"
  10697. ],
  10698. "authors": [
  10699. {
  10700. "name": "Sebastian Bergmann",
  10701. "email": "sebastian@phpunit.de",
  10702. "role": "lead"
  10703. }
  10704. ],
  10705. "description": "Collection of value objects that represent the PHP code units",
  10706. "homepage": "https://github.com/sebastianbergmann/code-unit",
  10707. "support": {
  10708. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  10709. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  10710. },
  10711. "funding": [
  10712. {
  10713. "url": "https://github.com/sebastianbergmann",
  10714. "type": "github"
  10715. }
  10716. ],
  10717. "time": "2020-10-26T13:08:54+00:00"
  10718. },
  10719. {
  10720. "name": "sebastian/code-unit-reverse-lookup",
  10721. "version": "2.0.3",
  10722. "source": {
  10723. "type": "git",
  10724. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  10725. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  10726. },
  10727. "dist": {
  10728. "type": "zip",
  10729. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  10730. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  10731. "shasum": ""
  10732. },
  10733. "require": {
  10734. "php": ">=7.3"
  10735. },
  10736. "require-dev": {
  10737. "phpunit/phpunit": "^9.3"
  10738. },
  10739. "type": "library",
  10740. "extra": {
  10741. "branch-alias": {
  10742. "dev-master": "2.0-dev"
  10743. }
  10744. },
  10745. "autoload": {
  10746. "classmap": [
  10747. "src/"
  10748. ]
  10749. },
  10750. "notification-url": "https://packagist.org/downloads/",
  10751. "license": [
  10752. "BSD-3-Clause"
  10753. ],
  10754. "authors": [
  10755. {
  10756. "name": "Sebastian Bergmann",
  10757. "email": "sebastian@phpunit.de"
  10758. }
  10759. ],
  10760. "description": "Looks up which function or method a line of code belongs to",
  10761. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  10762. "support": {
  10763. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  10764. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  10765. },
  10766. "funding": [
  10767. {
  10768. "url": "https://github.com/sebastianbergmann",
  10769. "type": "github"
  10770. }
  10771. ],
  10772. "time": "2020-09-28T05:30:19+00:00"
  10773. },
  10774. {
  10775. "name": "sebastian/comparator",
  10776. "version": "4.0.6",
  10777. "source": {
  10778. "type": "git",
  10779. "url": "https://github.com/sebastianbergmann/comparator.git",
  10780. "reference": "55f4261989e546dc112258c7a75935a81a7ce382"
  10781. },
  10782. "dist": {
  10783. "type": "zip",
  10784. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/55f4261989e546dc112258c7a75935a81a7ce382",
  10785. "reference": "55f4261989e546dc112258c7a75935a81a7ce382",
  10786. "shasum": ""
  10787. },
  10788. "require": {
  10789. "php": ">=7.3",
  10790. "sebastian/diff": "^4.0",
  10791. "sebastian/exporter": "^4.0"
  10792. },
  10793. "require-dev": {
  10794. "phpunit/phpunit": "^9.3"
  10795. },
  10796. "type": "library",
  10797. "extra": {
  10798. "branch-alias": {
  10799. "dev-master": "4.0-dev"
  10800. }
  10801. },
  10802. "autoload": {
  10803. "classmap": [
  10804. "src/"
  10805. ]
  10806. },
  10807. "notification-url": "https://packagist.org/downloads/",
  10808. "license": [
  10809. "BSD-3-Clause"
  10810. ],
  10811. "authors": [
  10812. {
  10813. "name": "Sebastian Bergmann",
  10814. "email": "sebastian@phpunit.de"
  10815. },
  10816. {
  10817. "name": "Jeff Welch",
  10818. "email": "whatthejeff@gmail.com"
  10819. },
  10820. {
  10821. "name": "Volker Dusch",
  10822. "email": "github@wallbash.com"
  10823. },
  10824. {
  10825. "name": "Bernhard Schussek",
  10826. "email": "bschussek@2bepublished.at"
  10827. }
  10828. ],
  10829. "description": "Provides the functionality to compare PHP values for equality",
  10830. "homepage": "https://github.com/sebastianbergmann/comparator",
  10831. "keywords": [
  10832. "comparator",
  10833. "compare",
  10834. "equality"
  10835. ],
  10836. "support": {
  10837. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  10838. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.6"
  10839. },
  10840. "funding": [
  10841. {
  10842. "url": "https://github.com/sebastianbergmann",
  10843. "type": "github"
  10844. }
  10845. ],
  10846. "time": "2020-10-26T15:49:45+00:00"
  10847. },
  10848. {
  10849. "name": "sebastian/complexity",
  10850. "version": "2.0.2",
  10851. "source": {
  10852. "type": "git",
  10853. "url": "https://github.com/sebastianbergmann/complexity.git",
  10854. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  10855. },
  10856. "dist": {
  10857. "type": "zip",
  10858. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  10859. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  10860. "shasum": ""
  10861. },
  10862. "require": {
  10863. "nikic/php-parser": "^4.7",
  10864. "php": ">=7.3"
  10865. },
  10866. "require-dev": {
  10867. "phpunit/phpunit": "^9.3"
  10868. },
  10869. "type": "library",
  10870. "extra": {
  10871. "branch-alias": {
  10872. "dev-master": "2.0-dev"
  10873. }
  10874. },
  10875. "autoload": {
  10876. "classmap": [
  10877. "src/"
  10878. ]
  10879. },
  10880. "notification-url": "https://packagist.org/downloads/",
  10881. "license": [
  10882. "BSD-3-Clause"
  10883. ],
  10884. "authors": [
  10885. {
  10886. "name": "Sebastian Bergmann",
  10887. "email": "sebastian@phpunit.de",
  10888. "role": "lead"
  10889. }
  10890. ],
  10891. "description": "Library for calculating the complexity of PHP code units",
  10892. "homepage": "https://github.com/sebastianbergmann/complexity",
  10893. "support": {
  10894. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  10895. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  10896. },
  10897. "funding": [
  10898. {
  10899. "url": "https://github.com/sebastianbergmann",
  10900. "type": "github"
  10901. }
  10902. ],
  10903. "time": "2020-10-26T15:52:27+00:00"
  10904. },
  10905. {
  10906. "name": "sebastian/diff",
  10907. "version": "4.0.4",
  10908. "source": {
  10909. "type": "git",
  10910. "url": "https://github.com/sebastianbergmann/diff.git",
  10911. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  10912. },
  10913. "dist": {
  10914. "type": "zip",
  10915. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  10916. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  10917. "shasum": ""
  10918. },
  10919. "require": {
  10920. "php": ">=7.3"
  10921. },
  10922. "require-dev": {
  10923. "phpunit/phpunit": "^9.3",
  10924. "symfony/process": "^4.2 || ^5"
  10925. },
  10926. "type": "library",
  10927. "extra": {
  10928. "branch-alias": {
  10929. "dev-master": "4.0-dev"
  10930. }
  10931. },
  10932. "autoload": {
  10933. "classmap": [
  10934. "src/"
  10935. ]
  10936. },
  10937. "notification-url": "https://packagist.org/downloads/",
  10938. "license": [
  10939. "BSD-3-Clause"
  10940. ],
  10941. "authors": [
  10942. {
  10943. "name": "Sebastian Bergmann",
  10944. "email": "sebastian@phpunit.de"
  10945. },
  10946. {
  10947. "name": "Kore Nordmann",
  10948. "email": "mail@kore-nordmann.de"
  10949. }
  10950. ],
  10951. "description": "Diff implementation",
  10952. "homepage": "https://github.com/sebastianbergmann/diff",
  10953. "keywords": [
  10954. "diff",
  10955. "udiff",
  10956. "unidiff",
  10957. "unified diff"
  10958. ],
  10959. "support": {
  10960. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10961. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  10962. },
  10963. "funding": [
  10964. {
  10965. "url": "https://github.com/sebastianbergmann",
  10966. "type": "github"
  10967. }
  10968. ],
  10969. "time": "2020-10-26T13:10:38+00:00"
  10970. },
  10971. {
  10972. "name": "sebastian/environment",
  10973. "version": "5.1.3",
  10974. "source": {
  10975. "type": "git",
  10976. "url": "https://github.com/sebastianbergmann/environment.git",
  10977. "reference": "388b6ced16caa751030f6a69e588299fa09200ac"
  10978. },
  10979. "dist": {
  10980. "type": "zip",
  10981. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/388b6ced16caa751030f6a69e588299fa09200ac",
  10982. "reference": "388b6ced16caa751030f6a69e588299fa09200ac",
  10983. "shasum": ""
  10984. },
  10985. "require": {
  10986. "php": ">=7.3"
  10987. },
  10988. "require-dev": {
  10989. "phpunit/phpunit": "^9.3"
  10990. },
  10991. "suggest": {
  10992. "ext-posix": "*"
  10993. },
  10994. "type": "library",
  10995. "extra": {
  10996. "branch-alias": {
  10997. "dev-master": "5.1-dev"
  10998. }
  10999. },
  11000. "autoload": {
  11001. "classmap": [
  11002. "src/"
  11003. ]
  11004. },
  11005. "notification-url": "https://packagist.org/downloads/",
  11006. "license": [
  11007. "BSD-3-Clause"
  11008. ],
  11009. "authors": [
  11010. {
  11011. "name": "Sebastian Bergmann",
  11012. "email": "sebastian@phpunit.de"
  11013. }
  11014. ],
  11015. "description": "Provides functionality to handle HHVM/PHP environments",
  11016. "homepage": "http://www.github.com/sebastianbergmann/environment",
  11017. "keywords": [
  11018. "Xdebug",
  11019. "environment",
  11020. "hhvm"
  11021. ],
  11022. "support": {
  11023. "issues": "https://github.com/sebastianbergmann/environment/issues",
  11024. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.3"
  11025. },
  11026. "funding": [
  11027. {
  11028. "url": "https://github.com/sebastianbergmann",
  11029. "type": "github"
  11030. }
  11031. ],
  11032. "time": "2020-09-28T05:52:38+00:00"
  11033. },
  11034. {
  11035. "name": "sebastian/exporter",
  11036. "version": "4.0.3",
  11037. "source": {
  11038. "type": "git",
  11039. "url": "https://github.com/sebastianbergmann/exporter.git",
  11040. "reference": "d89cc98761b8cb5a1a235a6b703ae50d34080e65"
  11041. },
  11042. "dist": {
  11043. "type": "zip",
  11044. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/d89cc98761b8cb5a1a235a6b703ae50d34080e65",
  11045. "reference": "d89cc98761b8cb5a1a235a6b703ae50d34080e65",
  11046. "shasum": ""
  11047. },
  11048. "require": {
  11049. "php": ">=7.3",
  11050. "sebastian/recursion-context": "^4.0"
  11051. },
  11052. "require-dev": {
  11053. "ext-mbstring": "*",
  11054. "phpunit/phpunit": "^9.3"
  11055. },
  11056. "type": "library",
  11057. "extra": {
  11058. "branch-alias": {
  11059. "dev-master": "4.0-dev"
  11060. }
  11061. },
  11062. "autoload": {
  11063. "classmap": [
  11064. "src/"
  11065. ]
  11066. },
  11067. "notification-url": "https://packagist.org/downloads/",
  11068. "license": [
  11069. "BSD-3-Clause"
  11070. ],
  11071. "authors": [
  11072. {
  11073. "name": "Sebastian Bergmann",
  11074. "email": "sebastian@phpunit.de"
  11075. },
  11076. {
  11077. "name": "Jeff Welch",
  11078. "email": "whatthejeff@gmail.com"
  11079. },
  11080. {
  11081. "name": "Volker Dusch",
  11082. "email": "github@wallbash.com"
  11083. },
  11084. {
  11085. "name": "Adam Harvey",
  11086. "email": "aharvey@php.net"
  11087. },
  11088. {
  11089. "name": "Bernhard Schussek",
  11090. "email": "bschussek@gmail.com"
  11091. }
  11092. ],
  11093. "description": "Provides the functionality to export PHP variables for visualization",
  11094. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  11095. "keywords": [
  11096. "export",
  11097. "exporter"
  11098. ],
  11099. "support": {
  11100. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  11101. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.3"
  11102. },
  11103. "funding": [
  11104. {
  11105. "url": "https://github.com/sebastianbergmann",
  11106. "type": "github"
  11107. }
  11108. ],
  11109. "time": "2020-09-28T05:24:23+00:00"
  11110. },
  11111. {
  11112. "name": "sebastian/global-state",
  11113. "version": "5.0.2",
  11114. "source": {
  11115. "type": "git",
  11116. "url": "https://github.com/sebastianbergmann/global-state.git",
  11117. "reference": "a90ccbddffa067b51f574dea6eb25d5680839455"
  11118. },
  11119. "dist": {
  11120. "type": "zip",
  11121. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/a90ccbddffa067b51f574dea6eb25d5680839455",
  11122. "reference": "a90ccbddffa067b51f574dea6eb25d5680839455",
  11123. "shasum": ""
  11124. },
  11125. "require": {
  11126. "php": ">=7.3",
  11127. "sebastian/object-reflector": "^2.0",
  11128. "sebastian/recursion-context": "^4.0"
  11129. },
  11130. "require-dev": {
  11131. "ext-dom": "*",
  11132. "phpunit/phpunit": "^9.3"
  11133. },
  11134. "suggest": {
  11135. "ext-uopz": "*"
  11136. },
  11137. "type": "library",
  11138. "extra": {
  11139. "branch-alias": {
  11140. "dev-master": "5.0-dev"
  11141. }
  11142. },
  11143. "autoload": {
  11144. "classmap": [
  11145. "src/"
  11146. ]
  11147. },
  11148. "notification-url": "https://packagist.org/downloads/",
  11149. "license": [
  11150. "BSD-3-Clause"
  11151. ],
  11152. "authors": [
  11153. {
  11154. "name": "Sebastian Bergmann",
  11155. "email": "sebastian@phpunit.de"
  11156. }
  11157. ],
  11158. "description": "Snapshotting of global state",
  11159. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  11160. "keywords": [
  11161. "global state"
  11162. ],
  11163. "support": {
  11164. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  11165. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.2"
  11166. },
  11167. "funding": [
  11168. {
  11169. "url": "https://github.com/sebastianbergmann",
  11170. "type": "github"
  11171. }
  11172. ],
  11173. "time": "2020-10-26T15:55:19+00:00"
  11174. },
  11175. {
  11176. "name": "sebastian/lines-of-code",
  11177. "version": "1.0.3",
  11178. "source": {
  11179. "type": "git",
  11180. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  11181. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  11182. },
  11183. "dist": {
  11184. "type": "zip",
  11185. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  11186. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  11187. "shasum": ""
  11188. },
  11189. "require": {
  11190. "nikic/php-parser": "^4.6",
  11191. "php": ">=7.3"
  11192. },
  11193. "require-dev": {
  11194. "phpunit/phpunit": "^9.3"
  11195. },
  11196. "type": "library",
  11197. "extra": {
  11198. "branch-alias": {
  11199. "dev-master": "1.0-dev"
  11200. }
  11201. },
  11202. "autoload": {
  11203. "classmap": [
  11204. "src/"
  11205. ]
  11206. },
  11207. "notification-url": "https://packagist.org/downloads/",
  11208. "license": [
  11209. "BSD-3-Clause"
  11210. ],
  11211. "authors": [
  11212. {
  11213. "name": "Sebastian Bergmann",
  11214. "email": "sebastian@phpunit.de",
  11215. "role": "lead"
  11216. }
  11217. ],
  11218. "description": "Library for counting the lines of code in PHP source code",
  11219. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  11220. "support": {
  11221. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  11222. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  11223. },
  11224. "funding": [
  11225. {
  11226. "url": "https://github.com/sebastianbergmann",
  11227. "type": "github"
  11228. }
  11229. ],
  11230. "time": "2020-11-28T06:42:11+00:00"
  11231. },
  11232. {
  11233. "name": "sebastian/object-enumerator",
  11234. "version": "4.0.4",
  11235. "source": {
  11236. "type": "git",
  11237. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  11238. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  11239. },
  11240. "dist": {
  11241. "type": "zip",
  11242. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  11243. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  11244. "shasum": ""
  11245. },
  11246. "require": {
  11247. "php": ">=7.3",
  11248. "sebastian/object-reflector": "^2.0",
  11249. "sebastian/recursion-context": "^4.0"
  11250. },
  11251. "require-dev": {
  11252. "phpunit/phpunit": "^9.3"
  11253. },
  11254. "type": "library",
  11255. "extra": {
  11256. "branch-alias": {
  11257. "dev-master": "4.0-dev"
  11258. }
  11259. },
  11260. "autoload": {
  11261. "classmap": [
  11262. "src/"
  11263. ]
  11264. },
  11265. "notification-url": "https://packagist.org/downloads/",
  11266. "license": [
  11267. "BSD-3-Clause"
  11268. ],
  11269. "authors": [
  11270. {
  11271. "name": "Sebastian Bergmann",
  11272. "email": "sebastian@phpunit.de"
  11273. }
  11274. ],
  11275. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  11276. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  11277. "support": {
  11278. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  11279. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  11280. },
  11281. "funding": [
  11282. {
  11283. "url": "https://github.com/sebastianbergmann",
  11284. "type": "github"
  11285. }
  11286. ],
  11287. "time": "2020-10-26T13:12:34+00:00"
  11288. },
  11289. {
  11290. "name": "sebastian/object-reflector",
  11291. "version": "2.0.4",
  11292. "source": {
  11293. "type": "git",
  11294. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  11295. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  11296. },
  11297. "dist": {
  11298. "type": "zip",
  11299. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  11300. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  11301. "shasum": ""
  11302. },
  11303. "require": {
  11304. "php": ">=7.3"
  11305. },
  11306. "require-dev": {
  11307. "phpunit/phpunit": "^9.3"
  11308. },
  11309. "type": "library",
  11310. "extra": {
  11311. "branch-alias": {
  11312. "dev-master": "2.0-dev"
  11313. }
  11314. },
  11315. "autoload": {
  11316. "classmap": [
  11317. "src/"
  11318. ]
  11319. },
  11320. "notification-url": "https://packagist.org/downloads/",
  11321. "license": [
  11322. "BSD-3-Clause"
  11323. ],
  11324. "authors": [
  11325. {
  11326. "name": "Sebastian Bergmann",
  11327. "email": "sebastian@phpunit.de"
  11328. }
  11329. ],
  11330. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  11331. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  11332. "support": {
  11333. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  11334. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  11335. },
  11336. "funding": [
  11337. {
  11338. "url": "https://github.com/sebastianbergmann",
  11339. "type": "github"
  11340. }
  11341. ],
  11342. "time": "2020-10-26T13:14:26+00:00"
  11343. },
  11344. {
  11345. "name": "sebastian/recursion-context",
  11346. "version": "4.0.4",
  11347. "source": {
  11348. "type": "git",
  11349. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  11350. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172"
  11351. },
  11352. "dist": {
  11353. "type": "zip",
  11354. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172",
  11355. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172",
  11356. "shasum": ""
  11357. },
  11358. "require": {
  11359. "php": ">=7.3"
  11360. },
  11361. "require-dev": {
  11362. "phpunit/phpunit": "^9.3"
  11363. },
  11364. "type": "library",
  11365. "extra": {
  11366. "branch-alias": {
  11367. "dev-master": "4.0-dev"
  11368. }
  11369. },
  11370. "autoload": {
  11371. "classmap": [
  11372. "src/"
  11373. ]
  11374. },
  11375. "notification-url": "https://packagist.org/downloads/",
  11376. "license": [
  11377. "BSD-3-Clause"
  11378. ],
  11379. "authors": [
  11380. {
  11381. "name": "Sebastian Bergmann",
  11382. "email": "sebastian@phpunit.de"
  11383. },
  11384. {
  11385. "name": "Jeff Welch",
  11386. "email": "whatthejeff@gmail.com"
  11387. },
  11388. {
  11389. "name": "Adam Harvey",
  11390. "email": "aharvey@php.net"
  11391. }
  11392. ],
  11393. "description": "Provides functionality to recursively process PHP variables",
  11394. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  11395. "support": {
  11396. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  11397. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4"
  11398. },
  11399. "funding": [
  11400. {
  11401. "url": "https://github.com/sebastianbergmann",
  11402. "type": "github"
  11403. }
  11404. ],
  11405. "time": "2020-10-26T13:17:30+00:00"
  11406. },
  11407. {
  11408. "name": "sebastian/resource-operations",
  11409. "version": "3.0.3",
  11410. "source": {
  11411. "type": "git",
  11412. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  11413. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  11414. },
  11415. "dist": {
  11416. "type": "zip",
  11417. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  11418. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  11419. "shasum": ""
  11420. },
  11421. "require": {
  11422. "php": ">=7.3"
  11423. },
  11424. "require-dev": {
  11425. "phpunit/phpunit": "^9.0"
  11426. },
  11427. "type": "library",
  11428. "extra": {
  11429. "branch-alias": {
  11430. "dev-master": "3.0-dev"
  11431. }
  11432. },
  11433. "autoload": {
  11434. "classmap": [
  11435. "src/"
  11436. ]
  11437. },
  11438. "notification-url": "https://packagist.org/downloads/",
  11439. "license": [
  11440. "BSD-3-Clause"
  11441. ],
  11442. "authors": [
  11443. {
  11444. "name": "Sebastian Bergmann",
  11445. "email": "sebastian@phpunit.de"
  11446. }
  11447. ],
  11448. "description": "Provides a list of PHP built-in functions that operate on resources",
  11449. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  11450. "support": {
  11451. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  11452. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  11453. },
  11454. "funding": [
  11455. {
  11456. "url": "https://github.com/sebastianbergmann",
  11457. "type": "github"
  11458. }
  11459. ],
  11460. "time": "2020-09-28T06:45:17+00:00"
  11461. },
  11462. {
  11463. "name": "sebastian/type",
  11464. "version": "2.3.1",
  11465. "source": {
  11466. "type": "git",
  11467. "url": "https://github.com/sebastianbergmann/type.git",
  11468. "reference": "81cd61ab7bbf2de744aba0ea61fae32f721df3d2"
  11469. },
  11470. "dist": {
  11471. "type": "zip",
  11472. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/81cd61ab7bbf2de744aba0ea61fae32f721df3d2",
  11473. "reference": "81cd61ab7bbf2de744aba0ea61fae32f721df3d2",
  11474. "shasum": ""
  11475. },
  11476. "require": {
  11477. "php": ">=7.3"
  11478. },
  11479. "require-dev": {
  11480. "phpunit/phpunit": "^9.3"
  11481. },
  11482. "type": "library",
  11483. "extra": {
  11484. "branch-alias": {
  11485. "dev-master": "2.3-dev"
  11486. }
  11487. },
  11488. "autoload": {
  11489. "classmap": [
  11490. "src/"
  11491. ]
  11492. },
  11493. "notification-url": "https://packagist.org/downloads/",
  11494. "license": [
  11495. "BSD-3-Clause"
  11496. ],
  11497. "authors": [
  11498. {
  11499. "name": "Sebastian Bergmann",
  11500. "email": "sebastian@phpunit.de",
  11501. "role": "lead"
  11502. }
  11503. ],
  11504. "description": "Collection of value objects that represent the types of the PHP type system",
  11505. "homepage": "https://github.com/sebastianbergmann/type",
  11506. "support": {
  11507. "issues": "https://github.com/sebastianbergmann/type/issues",
  11508. "source": "https://github.com/sebastianbergmann/type/tree/2.3.1"
  11509. },
  11510. "funding": [
  11511. {
  11512. "url": "https://github.com/sebastianbergmann",
  11513. "type": "github"
  11514. }
  11515. ],
  11516. "time": "2020-10-26T13:18:59+00:00"
  11517. },
  11518. {
  11519. "name": "sebastian/version",
  11520. "version": "3.0.2",
  11521. "source": {
  11522. "type": "git",
  11523. "url": "https://github.com/sebastianbergmann/version.git",
  11524. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  11525. },
  11526. "dist": {
  11527. "type": "zip",
  11528. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  11529. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  11530. "shasum": ""
  11531. },
  11532. "require": {
  11533. "php": ">=7.3"
  11534. },
  11535. "type": "library",
  11536. "extra": {
  11537. "branch-alias": {
  11538. "dev-master": "3.0-dev"
  11539. }
  11540. },
  11541. "autoload": {
  11542. "classmap": [
  11543. "src/"
  11544. ]
  11545. },
  11546. "notification-url": "https://packagist.org/downloads/",
  11547. "license": [
  11548. "BSD-3-Clause"
  11549. ],
  11550. "authors": [
  11551. {
  11552. "name": "Sebastian Bergmann",
  11553. "email": "sebastian@phpunit.de",
  11554. "role": "lead"
  11555. }
  11556. ],
  11557. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  11558. "homepage": "https://github.com/sebastianbergmann/version",
  11559. "support": {
  11560. "issues": "https://github.com/sebastianbergmann/version/issues",
  11561. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  11562. },
  11563. "funding": [
  11564. {
  11565. "url": "https://github.com/sebastianbergmann",
  11566. "type": "github"
  11567. }
  11568. ],
  11569. "time": "2020-09-28T06:39:44+00:00"
  11570. },
  11571. {
  11572. "name": "seld/jsonlint",
  11573. "version": "1.8.3",
  11574. "source": {
  11575. "type": "git",
  11576. "url": "https://github.com/Seldaek/jsonlint.git",
  11577. "reference": "9ad6ce79c342fbd44df10ea95511a1b24dee5b57"
  11578. },
  11579. "dist": {
  11580. "type": "zip",
  11581. "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/9ad6ce79c342fbd44df10ea95511a1b24dee5b57",
  11582. "reference": "9ad6ce79c342fbd44df10ea95511a1b24dee5b57",
  11583. "shasum": ""
  11584. },
  11585. "require": {
  11586. "php": "^5.3 || ^7.0 || ^8.0"
  11587. },
  11588. "require-dev": {
  11589. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  11590. },
  11591. "bin": [
  11592. "bin/jsonlint"
  11593. ],
  11594. "type": "library",
  11595. "autoload": {
  11596. "psr-4": {
  11597. "Seld\\JsonLint\\": "src/Seld/JsonLint/"
  11598. }
  11599. },
  11600. "notification-url": "https://packagist.org/downloads/",
  11601. "license": [
  11602. "MIT"
  11603. ],
  11604. "authors": [
  11605. {
  11606. "name": "Jordi Boggiano",
  11607. "email": "j.boggiano@seld.be",
  11608. "homepage": "http://seld.be"
  11609. }
  11610. ],
  11611. "description": "JSON Linter",
  11612. "keywords": [
  11613. "json",
  11614. "linter",
  11615. "parser",
  11616. "validator"
  11617. ],
  11618. "support": {
  11619. "issues": "https://github.com/Seldaek/jsonlint/issues",
  11620. "source": "https://github.com/Seldaek/jsonlint/tree/1.8.3"
  11621. },
  11622. "funding": [
  11623. {
  11624. "url": "https://github.com/Seldaek",
  11625. "type": "github"
  11626. },
  11627. {
  11628. "url": "https://tidelift.com/funding/github/packagist/seld/jsonlint",
  11629. "type": "tidelift"
  11630. }
  11631. ],
  11632. "time": "2020-11-11T09:19:24+00:00"
  11633. },
  11634. {
  11635. "name": "seld/phar-utils",
  11636. "version": "1.1.1",
  11637. "source": {
  11638. "type": "git",
  11639. "url": "https://github.com/Seldaek/phar-utils.git",
  11640. "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796"
  11641. },
  11642. "dist": {
  11643. "type": "zip",
  11644. "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/8674b1d84ffb47cc59a101f5d5a3b61e87d23796",
  11645. "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796",
  11646. "shasum": ""
  11647. },
  11648. "require": {
  11649. "php": ">=5.3"
  11650. },
  11651. "type": "library",
  11652. "extra": {
  11653. "branch-alias": {
  11654. "dev-master": "1.x-dev"
  11655. }
  11656. },
  11657. "autoload": {
  11658. "psr-4": {
  11659. "Seld\\PharUtils\\": "src/"
  11660. }
  11661. },
  11662. "notification-url": "https://packagist.org/downloads/",
  11663. "license": [
  11664. "MIT"
  11665. ],
  11666. "authors": [
  11667. {
  11668. "name": "Jordi Boggiano",
  11669. "email": "j.boggiano@seld.be"
  11670. }
  11671. ],
  11672. "description": "PHAR file format utilities, for when PHP phars you up",
  11673. "keywords": [
  11674. "phar"
  11675. ],
  11676. "support": {
  11677. "issues": "https://github.com/Seldaek/phar-utils/issues",
  11678. "source": "https://github.com/Seldaek/phar-utils/tree/master"
  11679. },
  11680. "time": "2020-07-07T18:42:57+00:00"
  11681. },
  11682. {
  11683. "name": "symfony/debug",
  11684. "version": "v4.4.18",
  11685. "source": {
  11686. "type": "git",
  11687. "url": "https://github.com/symfony/debug.git",
  11688. "reference": "5dfc7825f3bfe9bb74b23d8b8ce0e0894e32b544"
  11689. },
  11690. "dist": {
  11691. "type": "zip",
  11692. "url": "https://api.github.com/repos/symfony/debug/zipball/5dfc7825f3bfe9bb74b23d8b8ce0e0894e32b544",
  11693. "reference": "5dfc7825f3bfe9bb74b23d8b8ce0e0894e32b544",
  11694. "shasum": ""
  11695. },
  11696. "require": {
  11697. "php": ">=7.1.3",
  11698. "psr/log": "~1.0",
  11699. "symfony/polyfill-php80": "^1.15"
  11700. },
  11701. "conflict": {
  11702. "symfony/http-kernel": "<3.4"
  11703. },
  11704. "require-dev": {
  11705. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  11706. },
  11707. "type": "library",
  11708. "autoload": {
  11709. "psr-4": {
  11710. "Symfony\\Component\\Debug\\": ""
  11711. },
  11712. "exclude-from-classmap": [
  11713. "/Tests/"
  11714. ]
  11715. },
  11716. "notification-url": "https://packagist.org/downloads/",
  11717. "license": [
  11718. "MIT"
  11719. ],
  11720. "authors": [
  11721. {
  11722. "name": "Fabien Potencier",
  11723. "email": "fabien@symfony.com"
  11724. },
  11725. {
  11726. "name": "Symfony Community",
  11727. "homepage": "https://symfony.com/contributors"
  11728. }
  11729. ],
  11730. "description": "Symfony Debug Component",
  11731. "homepage": "https://symfony.com",
  11732. "support": {
  11733. "source": "https://github.com/symfony/debug/tree/v4.4.18"
  11734. },
  11735. "funding": [
  11736. {
  11737. "url": "https://symfony.com/sponsor",
  11738. "type": "custom"
  11739. },
  11740. {
  11741. "url": "https://github.com/fabpot",
  11742. "type": "github"
  11743. },
  11744. {
  11745. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11746. "type": "tidelift"
  11747. }
  11748. ],
  11749. "time": "2020-12-10T16:34:26+00:00"
  11750. },
  11751. {
  11752. "name": "symfony/filesystem",
  11753. "version": "v5.2.1",
  11754. "source": {
  11755. "type": "git",
  11756. "url": "https://github.com/symfony/filesystem.git",
  11757. "reference": "fa8f8cab6b65e2d99a118e082935344c5ba8c60d"
  11758. },
  11759. "dist": {
  11760. "type": "zip",
  11761. "url": "https://api.github.com/repos/symfony/filesystem/zipball/fa8f8cab6b65e2d99a118e082935344c5ba8c60d",
  11762. "reference": "fa8f8cab6b65e2d99a118e082935344c5ba8c60d",
  11763. "shasum": ""
  11764. },
  11765. "require": {
  11766. "php": ">=7.2.5",
  11767. "symfony/polyfill-ctype": "~1.8"
  11768. },
  11769. "type": "library",
  11770. "autoload": {
  11771. "psr-4": {
  11772. "Symfony\\Component\\Filesystem\\": ""
  11773. },
  11774. "exclude-from-classmap": [
  11775. "/Tests/"
  11776. ]
  11777. },
  11778. "notification-url": "https://packagist.org/downloads/",
  11779. "license": [
  11780. "MIT"
  11781. ],
  11782. "authors": [
  11783. {
  11784. "name": "Fabien Potencier",
  11785. "email": "fabien@symfony.com"
  11786. },
  11787. {
  11788. "name": "Symfony Community",
  11789. "homepage": "https://symfony.com/contributors"
  11790. }
  11791. ],
  11792. "description": "Symfony Filesystem Component",
  11793. "homepage": "https://symfony.com",
  11794. "support": {
  11795. "source": "https://github.com/symfony/filesystem/tree/v5.2.1"
  11796. },
  11797. "funding": [
  11798. {
  11799. "url": "https://symfony.com/sponsor",
  11800. "type": "custom"
  11801. },
  11802. {
  11803. "url": "https://github.com/fabpot",
  11804. "type": "github"
  11805. },
  11806. {
  11807. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11808. "type": "tidelift"
  11809. }
  11810. ],
  11811. "time": "2020-11-30T17:05:38+00:00"
  11812. },
  11813. {
  11814. "name": "theseer/tokenizer",
  11815. "version": "1.2.0",
  11816. "source": {
  11817. "type": "git",
  11818. "url": "https://github.com/theseer/tokenizer.git",
  11819. "reference": "75a63c33a8577608444246075ea0af0d052e452a"
  11820. },
  11821. "dist": {
  11822. "type": "zip",
  11823. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a",
  11824. "reference": "75a63c33a8577608444246075ea0af0d052e452a",
  11825. "shasum": ""
  11826. },
  11827. "require": {
  11828. "ext-dom": "*",
  11829. "ext-tokenizer": "*",
  11830. "ext-xmlwriter": "*",
  11831. "php": "^7.2 || ^8.0"
  11832. },
  11833. "type": "library",
  11834. "autoload": {
  11835. "classmap": [
  11836. "src/"
  11837. ]
  11838. },
  11839. "notification-url": "https://packagist.org/downloads/",
  11840. "license": [
  11841. "BSD-3-Clause"
  11842. ],
  11843. "authors": [
  11844. {
  11845. "name": "Arne Blankerts",
  11846. "email": "arne@blankerts.de",
  11847. "role": "Developer"
  11848. }
  11849. ],
  11850. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11851. "support": {
  11852. "issues": "https://github.com/theseer/tokenizer/issues",
  11853. "source": "https://github.com/theseer/tokenizer/tree/master"
  11854. },
  11855. "funding": [
  11856. {
  11857. "url": "https://github.com/theseer",
  11858. "type": "github"
  11859. }
  11860. ],
  11861. "time": "2020-07-12T23:59:07+00:00"
  11862. },
  11863. {
  11864. "name": "webmozart/assert",
  11865. "version": "1.9.1",
  11866. "source": {
  11867. "type": "git",
  11868. "url": "https://github.com/webmozart/assert.git",
  11869. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389"
  11870. },
  11871. "dist": {
  11872. "type": "zip",
  11873. "url": "https://api.github.com/repos/webmozart/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389",
  11874. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389",
  11875. "shasum": ""
  11876. },
  11877. "require": {
  11878. "php": "^5.3.3 || ^7.0 || ^8.0",
  11879. "symfony/polyfill-ctype": "^1.8"
  11880. },
  11881. "conflict": {
  11882. "phpstan/phpstan": "<0.12.20",
  11883. "vimeo/psalm": "<3.9.1"
  11884. },
  11885. "require-dev": {
  11886. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  11887. },
  11888. "type": "library",
  11889. "autoload": {
  11890. "psr-4": {
  11891. "Webmozart\\Assert\\": "src/"
  11892. }
  11893. },
  11894. "notification-url": "https://packagist.org/downloads/",
  11895. "license": [
  11896. "MIT"
  11897. ],
  11898. "authors": [
  11899. {
  11900. "name": "Bernhard Schussek",
  11901. "email": "bschussek@gmail.com"
  11902. }
  11903. ],
  11904. "description": "Assertions to validate method input/output with nice error messages.",
  11905. "keywords": [
  11906. "assert",
  11907. "check",
  11908. "validate"
  11909. ],
  11910. "support": {
  11911. "issues": "https://github.com/webmozart/assert/issues",
  11912. "source": "https://github.com/webmozart/assert/tree/master"
  11913. },
  11914. "time": "2020-07-08T17:02:28+00:00"
  11915. }
  11916. ],
  11917. "aliases": [],
  11918. "minimum-stability": "dev",
  11919. "stability-flags": [],
  11920. "prefer-stable": true,
  11921. "prefer-lowest": false,
  11922. "platform": {
  11923. "php": "^7.2.5|^8.0",
  11924. "ext-json": "*",
  11925. "ext-mbstring": "*",
  11926. "ext-openssl": "*",
  11927. "ext-simplexml": "*"
  11928. },
  11929. "platform-dev": [],
  11930. "plugin-api-version": "2.0.0"
  11931. }