composer.lock 425 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871
  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": "075d615d07f2e7c4f894c0df5a8099ad",
  8. "packages": [
  9. {
  10. "name": "asm89/stack-cors",
  11. "version": "v2.0.3",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/asm89/stack-cors.git",
  15. "reference": "9cb795bf30988e8c96dd3c40623c48a877bc6714"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/9cb795bf30988e8c96dd3c40623c48a877bc6714",
  20. "reference": "9cb795bf30988e8c96dd3c40623c48a877bc6714",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^7.0|^8.0",
  25. "symfony/http-foundation": "~2.7|~3.0|~4.0|~5.0",
  26. "symfony/http-kernel": "~2.7|~3.0|~4.0|~5.0"
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "^6|^7|^8|^9",
  30. "squizlabs/php_codesniffer": "^3.5"
  31. },
  32. "type": "library",
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "2.0-dev"
  36. }
  37. },
  38. "autoload": {
  39. "psr-4": {
  40. "Asm89\\Stack\\": "src/"
  41. }
  42. },
  43. "notification-url": "https://packagist.org/downloads/",
  44. "license": [
  45. "MIT"
  46. ],
  47. "authors": [
  48. {
  49. "name": "Alexander",
  50. "email": "[email protected]"
  51. }
  52. ],
  53. "description": "Cross-origin resource sharing library and stack middleware",
  54. "homepage": "https://github.com/asm89/stack-cors",
  55. "keywords": [
  56. "cors",
  57. "stack"
  58. ],
  59. "support": {
  60. "issues": "https://github.com/asm89/stack-cors/issues",
  61. "source": "https://github.com/asm89/stack-cors/tree/v2.0.3"
  62. },
  63. "time": "2021-03-11T06:42:03+00:00"
  64. },
  65. {
  66. "name": "brick/math",
  67. "version": "0.9.2",
  68. "source": {
  69. "type": "git",
  70. "url": "https://github.com/brick/math.git",
  71. "reference": "dff976c2f3487d42c1db75a3b180e2b9f0e72ce0"
  72. },
  73. "dist": {
  74. "type": "zip",
  75. "url": "https://api.github.com/repos/brick/math/zipball/dff976c2f3487d42c1db75a3b180e2b9f0e72ce0",
  76. "reference": "dff976c2f3487d42c1db75a3b180e2b9f0e72ce0",
  77. "shasum": ""
  78. },
  79. "require": {
  80. "ext-json": "*",
  81. "php": "^7.1 || ^8.0"
  82. },
  83. "require-dev": {
  84. "php-coveralls/php-coveralls": "^2.2",
  85. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.0",
  86. "vimeo/psalm": "4.3.2"
  87. },
  88. "type": "library",
  89. "autoload": {
  90. "psr-4": {
  91. "Brick\\Math\\": "src/"
  92. }
  93. },
  94. "notification-url": "https://packagist.org/downloads/",
  95. "license": [
  96. "MIT"
  97. ],
  98. "description": "Arbitrary-precision arithmetic library",
  99. "keywords": [
  100. "Arbitrary-precision",
  101. "BigInteger",
  102. "BigRational",
  103. "arithmetic",
  104. "bigdecimal",
  105. "bignum",
  106. "brick",
  107. "math"
  108. ],
  109. "support": {
  110. "issues": "https://github.com/brick/math/issues",
  111. "source": "https://github.com/brick/math/tree/0.9.2"
  112. },
  113. "funding": [
  114. {
  115. "url": "https://tidelift.com/funding/github/packagist/brick/math",
  116. "type": "tidelift"
  117. }
  118. ],
  119. "time": "2021-01-20T22:51:39+00:00"
  120. },
  121. {
  122. "name": "composer/ca-bundle",
  123. "version": "1.2.9",
  124. "source": {
  125. "type": "git",
  126. "url": "https://github.com/composer/ca-bundle.git",
  127. "reference": "78a0e288fdcebf92aa2318a8d3656168da6ac1a5"
  128. },
  129. "dist": {
  130. "type": "zip",
  131. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/78a0e288fdcebf92aa2318a8d3656168da6ac1a5",
  132. "reference": "78a0e288fdcebf92aa2318a8d3656168da6ac1a5",
  133. "shasum": ""
  134. },
  135. "require": {
  136. "ext-openssl": "*",
  137. "ext-pcre": "*",
  138. "php": "^5.3.2 || ^7.0 || ^8.0"
  139. },
  140. "require-dev": {
  141. "phpstan/phpstan": "^0.12.55",
  142. "psr/log": "^1.0",
  143. "symfony/phpunit-bridge": "^4.2 || ^5",
  144. "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0"
  145. },
  146. "type": "library",
  147. "extra": {
  148. "branch-alias": {
  149. "dev-main": "1.x-dev"
  150. }
  151. },
  152. "autoload": {
  153. "psr-4": {
  154. "Composer\\CaBundle\\": "src"
  155. }
  156. },
  157. "notification-url": "https://packagist.org/downloads/",
  158. "license": [
  159. "MIT"
  160. ],
  161. "authors": [
  162. {
  163. "name": "Jordi Boggiano",
  164. "email": "[email protected]",
  165. "homepage": "http://seld.be"
  166. }
  167. ],
  168. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  169. "keywords": [
  170. "cabundle",
  171. "cacert",
  172. "certificate",
  173. "ssl",
  174. "tls"
  175. ],
  176. "support": {
  177. "irc": "irc://irc.freenode.org/composer",
  178. "issues": "https://github.com/composer/ca-bundle/issues",
  179. "source": "https://github.com/composer/ca-bundle/tree/1.2.9"
  180. },
  181. "funding": [
  182. {
  183. "url": "https://packagist.com",
  184. "type": "custom"
  185. },
  186. {
  187. "url": "https://github.com/composer",
  188. "type": "github"
  189. },
  190. {
  191. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  192. "type": "tidelift"
  193. }
  194. ],
  195. "time": "2021-01-12T12:10:35+00:00"
  196. },
  197. {
  198. "name": "doctrine/cache",
  199. "version": "1.11.3",
  200. "source": {
  201. "type": "git",
  202. "url": "https://github.com/doctrine/cache.git",
  203. "reference": "3bb5588cec00a0268829cc4a518490df6741af9d"
  204. },
  205. "dist": {
  206. "type": "zip",
  207. "url": "https://api.github.com/repos/doctrine/cache/zipball/3bb5588cec00a0268829cc4a518490df6741af9d",
  208. "reference": "3bb5588cec00a0268829cc4a518490df6741af9d",
  209. "shasum": ""
  210. },
  211. "require": {
  212. "php": "~7.1 || ^8.0"
  213. },
  214. "conflict": {
  215. "doctrine/common": ">2.2,<2.4",
  216. "psr/cache": ">=3"
  217. },
  218. "require-dev": {
  219. "alcaeus/mongo-php-adapter": "^1.1",
  220. "cache/integration-tests": "dev-master",
  221. "doctrine/coding-standard": "^8.0",
  222. "mongodb/mongodb": "^1.1",
  223. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  224. "predis/predis": "~1.0",
  225. "psr/cache": "^1.0 || ^2.0",
  226. "symfony/cache": "^4.4 || ^5.2"
  227. },
  228. "suggest": {
  229. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  230. },
  231. "type": "library",
  232. "autoload": {
  233. "psr-4": {
  234. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  235. }
  236. },
  237. "notification-url": "https://packagist.org/downloads/",
  238. "license": [
  239. "MIT"
  240. ],
  241. "authors": [
  242. {
  243. "name": "Guilherme Blanco",
  244. "email": "[email protected]"
  245. },
  246. {
  247. "name": "Roman Borschel",
  248. "email": "[email protected]"
  249. },
  250. {
  251. "name": "Benjamin Eberlei",
  252. "email": "[email protected]"
  253. },
  254. {
  255. "name": "Jonathan Wage",
  256. "email": "[email protected]"
  257. },
  258. {
  259. "name": "Johannes Schmitt",
  260. "email": "[email protected]"
  261. }
  262. ],
  263. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  264. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  265. "keywords": [
  266. "abstraction",
  267. "apcu",
  268. "cache",
  269. "caching",
  270. "couchdb",
  271. "memcached",
  272. "php",
  273. "redis",
  274. "xcache"
  275. ],
  276. "support": {
  277. "issues": "https://github.com/doctrine/cache/issues",
  278. "source": "https://github.com/doctrine/cache/tree/1.11.3"
  279. },
  280. "funding": [
  281. {
  282. "url": "https://www.doctrine-project.org/sponsorship.html",
  283. "type": "custom"
  284. },
  285. {
  286. "url": "https://www.patreon.com/phpdoctrine",
  287. "type": "patreon"
  288. },
  289. {
  290. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  291. "type": "tidelift"
  292. }
  293. ],
  294. "time": "2021-05-25T09:01:55+00:00"
  295. },
  296. {
  297. "name": "doctrine/dbal",
  298. "version": "2.13.1",
  299. "source": {
  300. "type": "git",
  301. "url": "https://github.com/doctrine/dbal.git",
  302. "reference": "c800380457948e65bbd30ba92cc17cda108bf8c9"
  303. },
  304. "dist": {
  305. "type": "zip",
  306. "url": "https://api.github.com/repos/doctrine/dbal/zipball/c800380457948e65bbd30ba92cc17cda108bf8c9",
  307. "reference": "c800380457948e65bbd30ba92cc17cda108bf8c9",
  308. "shasum": ""
  309. },
  310. "require": {
  311. "doctrine/cache": "^1.0",
  312. "doctrine/deprecations": "^0.5.3",
  313. "doctrine/event-manager": "^1.0",
  314. "ext-pdo": "*",
  315. "php": "^7.1 || ^8"
  316. },
  317. "require-dev": {
  318. "doctrine/coding-standard": "8.2.0",
  319. "jetbrains/phpstorm-stubs": "2020.2",
  320. "phpstan/phpstan": "0.12.81",
  321. "phpunit/phpunit": "^7.5.20|^8.5|9.5.0",
  322. "squizlabs/php_codesniffer": "3.6.0",
  323. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
  324. "vimeo/psalm": "4.6.4"
  325. },
  326. "suggest": {
  327. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  328. },
  329. "bin": [
  330. "bin/doctrine-dbal"
  331. ],
  332. "type": "library",
  333. "autoload": {
  334. "psr-4": {
  335. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  336. }
  337. },
  338. "notification-url": "https://packagist.org/downloads/",
  339. "license": [
  340. "MIT"
  341. ],
  342. "authors": [
  343. {
  344. "name": "Guilherme Blanco",
  345. "email": "[email protected]"
  346. },
  347. {
  348. "name": "Roman Borschel",
  349. "email": "[email protected]"
  350. },
  351. {
  352. "name": "Benjamin Eberlei",
  353. "email": "[email protected]"
  354. },
  355. {
  356. "name": "Jonathan Wage",
  357. "email": "[email protected]"
  358. }
  359. ],
  360. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  361. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  362. "keywords": [
  363. "abstraction",
  364. "database",
  365. "db2",
  366. "dbal",
  367. "mariadb",
  368. "mssql",
  369. "mysql",
  370. "oci8",
  371. "oracle",
  372. "pdo",
  373. "pgsql",
  374. "postgresql",
  375. "queryobject",
  376. "sasql",
  377. "sql",
  378. "sqlanywhere",
  379. "sqlite",
  380. "sqlserver",
  381. "sqlsrv"
  382. ],
  383. "support": {
  384. "issues": "https://github.com/doctrine/dbal/issues",
  385. "source": "https://github.com/doctrine/dbal/tree/2.13.1"
  386. },
  387. "funding": [
  388. {
  389. "url": "https://www.doctrine-project.org/sponsorship.html",
  390. "type": "custom"
  391. },
  392. {
  393. "url": "https://www.patreon.com/phpdoctrine",
  394. "type": "patreon"
  395. },
  396. {
  397. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  398. "type": "tidelift"
  399. }
  400. ],
  401. "time": "2021-04-17T17:30:19+00:00"
  402. },
  403. {
  404. "name": "doctrine/deprecations",
  405. "version": "v0.5.3",
  406. "source": {
  407. "type": "git",
  408. "url": "https://github.com/doctrine/deprecations.git",
  409. "reference": "9504165960a1f83cc1480e2be1dd0a0478561314"
  410. },
  411. "dist": {
  412. "type": "zip",
  413. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/9504165960a1f83cc1480e2be1dd0a0478561314",
  414. "reference": "9504165960a1f83cc1480e2be1dd0a0478561314",
  415. "shasum": ""
  416. },
  417. "require": {
  418. "php": "^7.1|^8.0"
  419. },
  420. "require-dev": {
  421. "doctrine/coding-standard": "^6.0|^7.0|^8.0",
  422. "phpunit/phpunit": "^7.0|^8.0|^9.0",
  423. "psr/log": "^1.0"
  424. },
  425. "suggest": {
  426. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  427. },
  428. "type": "library",
  429. "autoload": {
  430. "psr-4": {
  431. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  432. }
  433. },
  434. "notification-url": "https://packagist.org/downloads/",
  435. "license": [
  436. "MIT"
  437. ],
  438. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  439. "homepage": "https://www.doctrine-project.org/",
  440. "support": {
  441. "issues": "https://github.com/doctrine/deprecations/issues",
  442. "source": "https://github.com/doctrine/deprecations/tree/v0.5.3"
  443. },
  444. "time": "2021-03-21T12:59:47+00:00"
  445. },
  446. {
  447. "name": "doctrine/event-manager",
  448. "version": "1.1.1",
  449. "source": {
  450. "type": "git",
  451. "url": "https://github.com/doctrine/event-manager.git",
  452. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  453. },
  454. "dist": {
  455. "type": "zip",
  456. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  457. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  458. "shasum": ""
  459. },
  460. "require": {
  461. "php": "^7.1 || ^8.0"
  462. },
  463. "conflict": {
  464. "doctrine/common": "<2.9@dev"
  465. },
  466. "require-dev": {
  467. "doctrine/coding-standard": "^6.0",
  468. "phpunit/phpunit": "^7.0"
  469. },
  470. "type": "library",
  471. "extra": {
  472. "branch-alias": {
  473. "dev-master": "1.0.x-dev"
  474. }
  475. },
  476. "autoload": {
  477. "psr-4": {
  478. "Doctrine\\Common\\": "lib/Doctrine/Common"
  479. }
  480. },
  481. "notification-url": "https://packagist.org/downloads/",
  482. "license": [
  483. "MIT"
  484. ],
  485. "authors": [
  486. {
  487. "name": "Guilherme Blanco",
  488. "email": "[email protected]"
  489. },
  490. {
  491. "name": "Roman Borschel",
  492. "email": "[email protected]"
  493. },
  494. {
  495. "name": "Benjamin Eberlei",
  496. "email": "[email protected]"
  497. },
  498. {
  499. "name": "Jonathan Wage",
  500. "email": "[email protected]"
  501. },
  502. {
  503. "name": "Johannes Schmitt",
  504. "email": "[email protected]"
  505. },
  506. {
  507. "name": "Marco Pivetta",
  508. "email": "[email protected]"
  509. }
  510. ],
  511. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  512. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  513. "keywords": [
  514. "event",
  515. "event dispatcher",
  516. "event manager",
  517. "event system",
  518. "events"
  519. ],
  520. "support": {
  521. "issues": "https://github.com/doctrine/event-manager/issues",
  522. "source": "https://github.com/doctrine/event-manager/tree/1.1.x"
  523. },
  524. "funding": [
  525. {
  526. "url": "https://www.doctrine-project.org/sponsorship.html",
  527. "type": "custom"
  528. },
  529. {
  530. "url": "https://www.patreon.com/phpdoctrine",
  531. "type": "patreon"
  532. },
  533. {
  534. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  535. "type": "tidelift"
  536. }
  537. ],
  538. "time": "2020-05-29T18:28:51+00:00"
  539. },
  540. {
  541. "name": "doctrine/inflector",
  542. "version": "2.0.3",
  543. "source": {
  544. "type": "git",
  545. "url": "https://github.com/doctrine/inflector.git",
  546. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210"
  547. },
  548. "dist": {
  549. "type": "zip",
  550. "url": "https://api.github.com/repos/doctrine/inflector/zipball/9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  551. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  552. "shasum": ""
  553. },
  554. "require": {
  555. "php": "^7.2 || ^8.0"
  556. },
  557. "require-dev": {
  558. "doctrine/coding-standard": "^7.0",
  559. "phpstan/phpstan": "^0.11",
  560. "phpstan/phpstan-phpunit": "^0.11",
  561. "phpstan/phpstan-strict-rules": "^0.11",
  562. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  563. },
  564. "type": "library",
  565. "extra": {
  566. "branch-alias": {
  567. "dev-master": "2.0.x-dev"
  568. }
  569. },
  570. "autoload": {
  571. "psr-4": {
  572. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  573. }
  574. },
  575. "notification-url": "https://packagist.org/downloads/",
  576. "license": [
  577. "MIT"
  578. ],
  579. "authors": [
  580. {
  581. "name": "Guilherme Blanco",
  582. "email": "[email protected]"
  583. },
  584. {
  585. "name": "Roman Borschel",
  586. "email": "[email protected]"
  587. },
  588. {
  589. "name": "Benjamin Eberlei",
  590. "email": "[email protected]"
  591. },
  592. {
  593. "name": "Jonathan Wage",
  594. "email": "[email protected]"
  595. },
  596. {
  597. "name": "Johannes Schmitt",
  598. "email": "[email protected]"
  599. }
  600. ],
  601. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  602. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  603. "keywords": [
  604. "inflection",
  605. "inflector",
  606. "lowercase",
  607. "manipulation",
  608. "php",
  609. "plural",
  610. "singular",
  611. "strings",
  612. "uppercase",
  613. "words"
  614. ],
  615. "support": {
  616. "issues": "https://github.com/doctrine/inflector/issues",
  617. "source": "https://github.com/doctrine/inflector/tree/2.0.x"
  618. },
  619. "funding": [
  620. {
  621. "url": "https://www.doctrine-project.org/sponsorship.html",
  622. "type": "custom"
  623. },
  624. {
  625. "url": "https://www.patreon.com/phpdoctrine",
  626. "type": "patreon"
  627. },
  628. {
  629. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  630. "type": "tidelift"
  631. }
  632. ],
  633. "time": "2020-05-29T15:13:26+00:00"
  634. },
  635. {
  636. "name": "doctrine/lexer",
  637. "version": "1.2.1",
  638. "source": {
  639. "type": "git",
  640. "url": "https://github.com/doctrine/lexer.git",
  641. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  642. },
  643. "dist": {
  644. "type": "zip",
  645. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  646. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  647. "shasum": ""
  648. },
  649. "require": {
  650. "php": "^7.2 || ^8.0"
  651. },
  652. "require-dev": {
  653. "doctrine/coding-standard": "^6.0",
  654. "phpstan/phpstan": "^0.11.8",
  655. "phpunit/phpunit": "^8.2"
  656. },
  657. "type": "library",
  658. "extra": {
  659. "branch-alias": {
  660. "dev-master": "1.2.x-dev"
  661. }
  662. },
  663. "autoload": {
  664. "psr-4": {
  665. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  666. }
  667. },
  668. "notification-url": "https://packagist.org/downloads/",
  669. "license": [
  670. "MIT"
  671. ],
  672. "authors": [
  673. {
  674. "name": "Guilherme Blanco",
  675. "email": "[email protected]"
  676. },
  677. {
  678. "name": "Roman Borschel",
  679. "email": "[email protected]"
  680. },
  681. {
  682. "name": "Johannes Schmitt",
  683. "email": "[email protected]"
  684. }
  685. ],
  686. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  687. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  688. "keywords": [
  689. "annotations",
  690. "docblock",
  691. "lexer",
  692. "parser",
  693. "php"
  694. ],
  695. "support": {
  696. "issues": "https://github.com/doctrine/lexer/issues",
  697. "source": "https://github.com/doctrine/lexer/tree/1.2.1"
  698. },
  699. "funding": [
  700. {
  701. "url": "https://www.doctrine-project.org/sponsorship.html",
  702. "type": "custom"
  703. },
  704. {
  705. "url": "https://www.patreon.com/phpdoctrine",
  706. "type": "patreon"
  707. },
  708. {
  709. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  710. "type": "tidelift"
  711. }
  712. ],
  713. "time": "2020-05-25T17:44:05+00:00"
  714. },
  715. {
  716. "name": "dragonmantank/cron-expression",
  717. "version": "v2.3.1",
  718. "source": {
  719. "type": "git",
  720. "url": "https://github.com/dragonmantank/cron-expression.git",
  721. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2"
  722. },
  723. "dist": {
  724. "type": "zip",
  725. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/65b2d8ee1f10915efb3b55597da3404f096acba2",
  726. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2",
  727. "shasum": ""
  728. },
  729. "require": {
  730. "php": "^7.0|^8.0"
  731. },
  732. "require-dev": {
  733. "phpunit/phpunit": "^6.4|^7.0|^8.0|^9.0"
  734. },
  735. "type": "library",
  736. "extra": {
  737. "branch-alias": {
  738. "dev-master": "2.3-dev"
  739. }
  740. },
  741. "autoload": {
  742. "psr-4": {
  743. "Cron\\": "src/Cron/"
  744. }
  745. },
  746. "notification-url": "https://packagist.org/downloads/",
  747. "license": [
  748. "MIT"
  749. ],
  750. "authors": [
  751. {
  752. "name": "Michael Dowling",
  753. "email": "[email protected]",
  754. "homepage": "https://github.com/mtdowling"
  755. },
  756. {
  757. "name": "Chris Tankersley",
  758. "email": "[email protected]",
  759. "homepage": "https://github.com/dragonmantank"
  760. }
  761. ],
  762. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  763. "keywords": [
  764. "cron",
  765. "schedule"
  766. ],
  767. "support": {
  768. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  769. "source": "https://github.com/dragonmantank/cron-expression/tree/v2.3.1"
  770. },
  771. "funding": [
  772. {
  773. "url": "https://github.com/dragonmantank",
  774. "type": "github"
  775. }
  776. ],
  777. "time": "2020-10-13T00:52:37+00:00"
  778. },
  779. {
  780. "name": "egulias/email-validator",
  781. "version": "2.1.25",
  782. "source": {
  783. "type": "git",
  784. "url": "https://github.com/egulias/EmailValidator.git",
  785. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  786. },
  787. "dist": {
  788. "type": "zip",
  789. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  790. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  791. "shasum": ""
  792. },
  793. "require": {
  794. "doctrine/lexer": "^1.0.1",
  795. "php": ">=5.5",
  796. "symfony/polyfill-intl-idn": "^1.10"
  797. },
  798. "require-dev": {
  799. "dominicsayers/isemail": "^3.0.7",
  800. "phpunit/phpunit": "^4.8.36|^7.5.15",
  801. "satooshi/php-coveralls": "^1.0.1"
  802. },
  803. "suggest": {
  804. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  805. },
  806. "type": "library",
  807. "extra": {
  808. "branch-alias": {
  809. "dev-master": "2.1.x-dev"
  810. }
  811. },
  812. "autoload": {
  813. "psr-4": {
  814. "Egulias\\EmailValidator\\": "src"
  815. }
  816. },
  817. "notification-url": "https://packagist.org/downloads/",
  818. "license": [
  819. "MIT"
  820. ],
  821. "authors": [
  822. {
  823. "name": "Eduardo Gulias Davis"
  824. }
  825. ],
  826. "description": "A library for validating emails against several RFCs",
  827. "homepage": "https://github.com/egulias/EmailValidator",
  828. "keywords": [
  829. "email",
  830. "emailvalidation",
  831. "emailvalidator",
  832. "validation",
  833. "validator"
  834. ],
  835. "support": {
  836. "issues": "https://github.com/egulias/EmailValidator/issues",
  837. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  838. },
  839. "funding": [
  840. {
  841. "url": "https://github.com/egulias",
  842. "type": "github"
  843. }
  844. ],
  845. "time": "2020-12-29T14:50:06+00:00"
  846. },
  847. {
  848. "name": "elfsundae/bearychat",
  849. "version": "1.3.1",
  850. "source": {
  851. "type": "git",
  852. "url": "https://github.com/ElfSundae/bearychat.git",
  853. "reference": "b3c7437d0e24463504679931a482e9b642d93024"
  854. },
  855. "dist": {
  856. "type": "zip",
  857. "url": "https://api.github.com/repos/ElfSundae/bearychat/zipball/b3c7437d0e24463504679931a482e9b642d93024",
  858. "reference": "b3c7437d0e24463504679931a482e9b642d93024",
  859. "shasum": ""
  860. },
  861. "require": {
  862. "ext-mbstring": "*",
  863. "guzzlehttp/guzzle": "~5.3|~6.0",
  864. "php": ">=5.4.0"
  865. },
  866. "require-dev": {
  867. "mockery/mockery": "0.9.*",
  868. "phpunit/phpunit": "~5.7"
  869. },
  870. "suggest": {
  871. "elfsundae/laravel-bearychat": "Required for Laravel integration.",
  872. "laravel-notification-channels/bearychat": "BearyChat notifications channel for Laravel 5."
  873. },
  874. "type": "library",
  875. "autoload": {
  876. "psr-4": {
  877. "ElfSundae\\BearyChat\\": "src/"
  878. }
  879. },
  880. "notification-url": "https://packagist.org/downloads/",
  881. "license": [
  882. "MIT"
  883. ],
  884. "authors": [
  885. {
  886. "name": "Elf Sundae",
  887. "email": "[email protected]",
  888. "homepage": "https://0x123.com"
  889. }
  890. ],
  891. "description": "An elegant way of interacting with BearyChat webhooks.",
  892. "homepage": "https://github.com/ElfSundae/bearychat",
  893. "keywords": [
  894. "bearychat",
  895. "incoming",
  896. "outgoing",
  897. "robot",
  898. "webhook"
  899. ],
  900. "support": {
  901. "issues": "https://github.com/ElfSundae/bearychat/issues",
  902. "source": "https://github.com/ElfSundae/bearychat/tree/master"
  903. },
  904. "time": "2017-09-04T05:54:05+00:00"
  905. },
  906. {
  907. "name": "elfsundae/laravel-bearychat",
  908. "version": "1.6.0",
  909. "source": {
  910. "type": "git",
  911. "url": "https://github.com/ElfSundae/laravel-bearychat.git",
  912. "reference": "417a15868e46c9d664a437532c5ddd9be3fe9b04"
  913. },
  914. "dist": {
  915. "type": "zip",
  916. "url": "https://api.github.com/repos/ElfSundae/laravel-bearychat/zipball/417a15868e46c9d664a437532c5ddd9be3fe9b04",
  917. "reference": "417a15868e46c9d664a437532c5ddd9be3fe9b04",
  918. "shasum": ""
  919. },
  920. "require": {
  921. "elfsundae/bearychat": "^1.3.1",
  922. "illuminate/support": "~5.0|~6.0|~7.0|~8.0",
  923. "php": ">=5.6.4"
  924. },
  925. "require-dev": {
  926. "mockery/mockery": "~0.9|~1.0",
  927. "phpunit/phpunit": "~5.7|~6.0|~7.0|~8.0|~9.0"
  928. },
  929. "suggest": {
  930. "laravel-notification-channels/bearychat": "BearyChat notifications channel for Laravel 5."
  931. },
  932. "type": "library",
  933. "extra": {
  934. "laravel": {
  935. "providers": [
  936. "ElfSundae\\BearyChat\\Laravel\\ServiceProvider"
  937. ],
  938. "aliases": {
  939. "BearyChat": "ElfSundae\\BearyChat\\Laravel\\BearyChat"
  940. }
  941. }
  942. },
  943. "autoload": {
  944. "psr-4": {
  945. "ElfSundae\\BearyChat\\Laravel\\": "src/"
  946. },
  947. "files": [
  948. "src/helpers.php"
  949. ]
  950. },
  951. "notification-url": "https://packagist.org/downloads/",
  952. "license": [
  953. "MIT"
  954. ],
  955. "authors": [
  956. {
  957. "name": "Elf Sundae",
  958. "email": "[email protected]",
  959. "homepage": "https://0x123.com"
  960. }
  961. ],
  962. "description": "Laravel integration for BearyChat.",
  963. "homepage": "https://github.com/ElfSundae/laravel-bearychat",
  964. "keywords": [
  965. "bearychat",
  966. "incoming",
  967. "laravel",
  968. "outgoing",
  969. "robot",
  970. "webhook"
  971. ],
  972. "support": {
  973. "issues": "https://github.com/ElfSundae/laravel-bearychat/issues",
  974. "source": "https://github.com/ElfSundae/laravel-bearychat/tree/1.6.0"
  975. },
  976. "time": "2020-09-13T14:19:31+00:00"
  977. },
  978. {
  979. "name": "ezyang/htmlpurifier",
  980. "version": "v4.13.0",
  981. "source": {
  982. "type": "git",
  983. "url": "https://github.com/ezyang/htmlpurifier.git",
  984. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75"
  985. },
  986. "dist": {
  987. "type": "zip",
  988. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  989. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  990. "shasum": ""
  991. },
  992. "require": {
  993. "php": ">=5.2"
  994. },
  995. "require-dev": {
  996. "simpletest/simpletest": "dev-master#72de02a7b80c6bb8864ef9bf66d41d2f58f826bd"
  997. },
  998. "type": "library",
  999. "autoload": {
  1000. "psr-0": {
  1001. "HTMLPurifier": "library/"
  1002. },
  1003. "files": [
  1004. "library/HTMLPurifier.composer.php"
  1005. ],
  1006. "exclude-from-classmap": [
  1007. "/library/HTMLPurifier/Language/"
  1008. ]
  1009. },
  1010. "notification-url": "https://packagist.org/downloads/",
  1011. "license": [
  1012. "LGPL-2.1-or-later"
  1013. ],
  1014. "authors": [
  1015. {
  1016. "name": "Edward Z. Yang",
  1017. "email": "[email protected]",
  1018. "homepage": "http://ezyang.com"
  1019. }
  1020. ],
  1021. "description": "Standards compliant HTML filter written in PHP",
  1022. "homepage": "http://htmlpurifier.org/",
  1023. "keywords": [
  1024. "html"
  1025. ],
  1026. "support": {
  1027. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  1028. "source": "https://github.com/ezyang/htmlpurifier/tree/master"
  1029. },
  1030. "time": "2020-06-29T00:56:53+00:00"
  1031. },
  1032. {
  1033. "name": "fideloper/proxy",
  1034. "version": "4.4.1",
  1035. "source": {
  1036. "type": "git",
  1037. "url": "https://github.com/fideloper/TrustedProxy.git",
  1038. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0"
  1039. },
  1040. "dist": {
  1041. "type": "zip",
  1042. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  1043. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  1044. "shasum": ""
  1045. },
  1046. "require": {
  1047. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1048. "php": ">=5.4.0"
  1049. },
  1050. "require-dev": {
  1051. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1052. "mockery/mockery": "^1.0",
  1053. "phpunit/phpunit": "^6.0"
  1054. },
  1055. "type": "library",
  1056. "extra": {
  1057. "laravel": {
  1058. "providers": [
  1059. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  1060. ]
  1061. }
  1062. },
  1063. "autoload": {
  1064. "psr-4": {
  1065. "Fideloper\\Proxy\\": "src/"
  1066. }
  1067. },
  1068. "notification-url": "https://packagist.org/downloads/",
  1069. "license": [
  1070. "MIT"
  1071. ],
  1072. "authors": [
  1073. {
  1074. "name": "Chris Fidao",
  1075. "email": "[email protected]"
  1076. }
  1077. ],
  1078. "description": "Set trusted proxies for Laravel",
  1079. "keywords": [
  1080. "load balancing",
  1081. "proxy",
  1082. "trusted proxy"
  1083. ],
  1084. "support": {
  1085. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  1086. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.1"
  1087. },
  1088. "time": "2020-10-22T13:48:01+00:00"
  1089. },
  1090. {
  1091. "name": "fruitcake/laravel-cors",
  1092. "version": "v2.0.4",
  1093. "source": {
  1094. "type": "git",
  1095. "url": "https://github.com/fruitcake/laravel-cors.git",
  1096. "reference": "a8ccedc7ca95189ead0e407c43b530dc17791d6a"
  1097. },
  1098. "dist": {
  1099. "type": "zip",
  1100. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/a8ccedc7ca95189ead0e407c43b530dc17791d6a",
  1101. "reference": "a8ccedc7ca95189ead0e407c43b530dc17791d6a",
  1102. "shasum": ""
  1103. },
  1104. "require": {
  1105. "asm89/stack-cors": "^2.0.1",
  1106. "illuminate/contracts": "^6|^7|^8|^9",
  1107. "illuminate/support": "^6|^7|^8|^9",
  1108. "php": ">=7.2",
  1109. "symfony/http-foundation": "^4|^5",
  1110. "symfony/http-kernel": "^4.3.4|^5"
  1111. },
  1112. "require-dev": {
  1113. "laravel/framework": "^6|^7|^8",
  1114. "orchestra/testbench-dusk": "^4|^5|^6|^7",
  1115. "phpunit/phpunit": "^6|^7|^8|^9",
  1116. "squizlabs/php_codesniffer": "^3.5"
  1117. },
  1118. "type": "library",
  1119. "extra": {
  1120. "branch-alias": {
  1121. "dev-master": "2.0-dev"
  1122. },
  1123. "laravel": {
  1124. "providers": [
  1125. "Fruitcake\\Cors\\CorsServiceProvider"
  1126. ]
  1127. }
  1128. },
  1129. "autoload": {
  1130. "psr-4": {
  1131. "Fruitcake\\Cors\\": "src/"
  1132. }
  1133. },
  1134. "notification-url": "https://packagist.org/downloads/",
  1135. "license": [
  1136. "MIT"
  1137. ],
  1138. "authors": [
  1139. {
  1140. "name": "Fruitcake",
  1141. "homepage": "https://fruitcake.nl"
  1142. },
  1143. {
  1144. "name": "Barry vd. Heuvel",
  1145. "email": "[email protected]"
  1146. }
  1147. ],
  1148. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  1149. "keywords": [
  1150. "api",
  1151. "cors",
  1152. "crossdomain",
  1153. "laravel"
  1154. ],
  1155. "support": {
  1156. "issues": "https://github.com/fruitcake/laravel-cors/issues",
  1157. "source": "https://github.com/fruitcake/laravel-cors/tree/v2.0.4"
  1158. },
  1159. "funding": [
  1160. {
  1161. "url": "https://github.com/barryvdh",
  1162. "type": "github"
  1163. }
  1164. ],
  1165. "time": "2021-04-26T11:24:25+00:00"
  1166. },
  1167. {
  1168. "name": "geoip2/geoip2",
  1169. "version": "v2.11.0",
  1170. "source": {
  1171. "type": "git",
  1172. "url": "https://github.com/maxmind/GeoIP2-php.git",
  1173. "reference": "d01be5894a5c1a3381c58c9b1795cd07f96c30f7"
  1174. },
  1175. "dist": {
  1176. "type": "zip",
  1177. "url": "https://api.github.com/repos/maxmind/GeoIP2-php/zipball/d01be5894a5c1a3381c58c9b1795cd07f96c30f7",
  1178. "reference": "d01be5894a5c1a3381c58c9b1795cd07f96c30f7",
  1179. "shasum": ""
  1180. },
  1181. "require": {
  1182. "ext-json": "*",
  1183. "maxmind-db/reader": "~1.8",
  1184. "maxmind/web-service-common": "~0.8",
  1185. "php": ">=7.2"
  1186. },
  1187. "require-dev": {
  1188. "friendsofphp/php-cs-fixer": "2.*",
  1189. "phpunit/phpunit": "^8.0 || ^9.0",
  1190. "squizlabs/php_codesniffer": "3.*"
  1191. },
  1192. "type": "library",
  1193. "autoload": {
  1194. "psr-4": {
  1195. "GeoIp2\\": "src"
  1196. }
  1197. },
  1198. "notification-url": "https://packagist.org/downloads/",
  1199. "license": [
  1200. "Apache-2.0"
  1201. ],
  1202. "authors": [
  1203. {
  1204. "name": "Gregory J. Oschwald",
  1205. "email": "[email protected]",
  1206. "homepage": "https://www.maxmind.com/"
  1207. }
  1208. ],
  1209. "description": "MaxMind GeoIP2 PHP API",
  1210. "homepage": "https://github.com/maxmind/GeoIP2-php",
  1211. "keywords": [
  1212. "IP",
  1213. "geoip",
  1214. "geoip2",
  1215. "geolocation",
  1216. "maxmind"
  1217. ],
  1218. "support": {
  1219. "issues": "https://github.com/maxmind/GeoIP2-php/issues",
  1220. "source": "https://github.com/maxmind/GeoIP2-php/tree/v2.11.0"
  1221. },
  1222. "time": "2020-10-01T18:48:34+00:00"
  1223. },
  1224. {
  1225. "name": "guzzlehttp/guzzle",
  1226. "version": "6.5.5",
  1227. "source": {
  1228. "type": "git",
  1229. "url": "https://github.com/guzzle/guzzle.git",
  1230. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
  1231. },
  1232. "dist": {
  1233. "type": "zip",
  1234. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1235. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1236. "shasum": ""
  1237. },
  1238. "require": {
  1239. "ext-json": "*",
  1240. "guzzlehttp/promises": "^1.0",
  1241. "guzzlehttp/psr7": "^1.6.1",
  1242. "php": ">=5.5",
  1243. "symfony/polyfill-intl-idn": "^1.17.0"
  1244. },
  1245. "require-dev": {
  1246. "ext-curl": "*",
  1247. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  1248. "psr/log": "^1.1"
  1249. },
  1250. "suggest": {
  1251. "psr/log": "Required for using the Log middleware"
  1252. },
  1253. "type": "library",
  1254. "extra": {
  1255. "branch-alias": {
  1256. "dev-master": "6.5-dev"
  1257. }
  1258. },
  1259. "autoload": {
  1260. "psr-4": {
  1261. "GuzzleHttp\\": "src/"
  1262. },
  1263. "files": [
  1264. "src/functions_include.php"
  1265. ]
  1266. },
  1267. "notification-url": "https://packagist.org/downloads/",
  1268. "license": [
  1269. "MIT"
  1270. ],
  1271. "authors": [
  1272. {
  1273. "name": "Michael Dowling",
  1274. "email": "[email protected]",
  1275. "homepage": "https://github.com/mtdowling"
  1276. }
  1277. ],
  1278. "description": "Guzzle is a PHP HTTP client library",
  1279. "homepage": "http://guzzlephp.org/",
  1280. "keywords": [
  1281. "client",
  1282. "curl",
  1283. "framework",
  1284. "http",
  1285. "http client",
  1286. "rest",
  1287. "web service"
  1288. ],
  1289. "support": {
  1290. "issues": "https://github.com/guzzle/guzzle/issues",
  1291. "source": "https://github.com/guzzle/guzzle/tree/6.5"
  1292. },
  1293. "time": "2020-06-16T21:01:06+00:00"
  1294. },
  1295. {
  1296. "name": "guzzlehttp/promises",
  1297. "version": "1.4.1",
  1298. "source": {
  1299. "type": "git",
  1300. "url": "https://github.com/guzzle/promises.git",
  1301. "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d"
  1302. },
  1303. "dist": {
  1304. "type": "zip",
  1305. "url": "https://api.github.com/repos/guzzle/promises/zipball/8e7d04f1f6450fef59366c399cfad4b9383aa30d",
  1306. "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d",
  1307. "shasum": ""
  1308. },
  1309. "require": {
  1310. "php": ">=5.5"
  1311. },
  1312. "require-dev": {
  1313. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  1314. },
  1315. "type": "library",
  1316. "extra": {
  1317. "branch-alias": {
  1318. "dev-master": "1.4-dev"
  1319. }
  1320. },
  1321. "autoload": {
  1322. "psr-4": {
  1323. "GuzzleHttp\\Promise\\": "src/"
  1324. },
  1325. "files": [
  1326. "src/functions_include.php"
  1327. ]
  1328. },
  1329. "notification-url": "https://packagist.org/downloads/",
  1330. "license": [
  1331. "MIT"
  1332. ],
  1333. "authors": [
  1334. {
  1335. "name": "Michael Dowling",
  1336. "email": "[email protected]",
  1337. "homepage": "https://github.com/mtdowling"
  1338. }
  1339. ],
  1340. "description": "Guzzle promises library",
  1341. "keywords": [
  1342. "promise"
  1343. ],
  1344. "support": {
  1345. "issues": "https://github.com/guzzle/promises/issues",
  1346. "source": "https://github.com/guzzle/promises/tree/1.4.1"
  1347. },
  1348. "time": "2021-03-07T09:25:29+00:00"
  1349. },
  1350. {
  1351. "name": "guzzlehttp/psr7",
  1352. "version": "1.8.2",
  1353. "source": {
  1354. "type": "git",
  1355. "url": "https://github.com/guzzle/psr7.git",
  1356. "reference": "dc960a912984efb74d0a90222870c72c87f10c91"
  1357. },
  1358. "dist": {
  1359. "type": "zip",
  1360. "url": "https://api.github.com/repos/guzzle/psr7/zipball/dc960a912984efb74d0a90222870c72c87f10c91",
  1361. "reference": "dc960a912984efb74d0a90222870c72c87f10c91",
  1362. "shasum": ""
  1363. },
  1364. "require": {
  1365. "php": ">=5.4.0",
  1366. "psr/http-message": "~1.0",
  1367. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  1368. },
  1369. "provide": {
  1370. "psr/http-message-implementation": "1.0"
  1371. },
  1372. "require-dev": {
  1373. "ext-zlib": "*",
  1374. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  1375. },
  1376. "suggest": {
  1377. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1378. },
  1379. "type": "library",
  1380. "extra": {
  1381. "branch-alias": {
  1382. "dev-master": "1.7-dev"
  1383. }
  1384. },
  1385. "autoload": {
  1386. "psr-4": {
  1387. "GuzzleHttp\\Psr7\\": "src/"
  1388. },
  1389. "files": [
  1390. "src/functions_include.php"
  1391. ]
  1392. },
  1393. "notification-url": "https://packagist.org/downloads/",
  1394. "license": [
  1395. "MIT"
  1396. ],
  1397. "authors": [
  1398. {
  1399. "name": "Michael Dowling",
  1400. "email": "[email protected]",
  1401. "homepage": "https://github.com/mtdowling"
  1402. },
  1403. {
  1404. "name": "Tobias Schultze",
  1405. "homepage": "https://github.com/Tobion"
  1406. }
  1407. ],
  1408. "description": "PSR-7 message implementation that also provides common utility methods",
  1409. "keywords": [
  1410. "http",
  1411. "message",
  1412. "psr-7",
  1413. "request",
  1414. "response",
  1415. "stream",
  1416. "uri",
  1417. "url"
  1418. ],
  1419. "support": {
  1420. "issues": "https://github.com/guzzle/psr7/issues",
  1421. "source": "https://github.com/guzzle/psr7/tree/1.8.2"
  1422. },
  1423. "time": "2021-04-26T09:17:50+00:00"
  1424. },
  1425. {
  1426. "name": "hashids/hashids",
  1427. "version": "4.1.0",
  1428. "source": {
  1429. "type": "git",
  1430. "url": "https://github.com/vinkla/hashids.git",
  1431. "reference": "8cab111f78e0bd9c76953b082919fc9e251761be"
  1432. },
  1433. "dist": {
  1434. "type": "zip",
  1435. "url": "https://api.github.com/repos/vinkla/hashids/zipball/8cab111f78e0bd9c76953b082919fc9e251761be",
  1436. "reference": "8cab111f78e0bd9c76953b082919fc9e251761be",
  1437. "shasum": ""
  1438. },
  1439. "require": {
  1440. "ext-mbstring": "*",
  1441. "php": "^7.2 || ^8.0"
  1442. },
  1443. "require-dev": {
  1444. "phpunit/phpunit": "^8.0 || ^9.4",
  1445. "squizlabs/php_codesniffer": "^3.5"
  1446. },
  1447. "suggest": {
  1448. "ext-bcmath": "Required to use BC Math arbitrary precision mathematics (*).",
  1449. "ext-gmp": "Required to use GNU multiple precision mathematics (*)."
  1450. },
  1451. "type": "library",
  1452. "extra": {
  1453. "branch-alias": {
  1454. "dev-master": "4.1-dev"
  1455. }
  1456. },
  1457. "autoload": {
  1458. "psr-4": {
  1459. "Hashids\\": "src/"
  1460. }
  1461. },
  1462. "notification-url": "https://packagist.org/downloads/",
  1463. "license": [
  1464. "MIT"
  1465. ],
  1466. "authors": [
  1467. {
  1468. "name": "Ivan Akimov",
  1469. "email": "[email protected]"
  1470. },
  1471. {
  1472. "name": "Vincent Klaiber",
  1473. "email": "[email protected]"
  1474. }
  1475. ],
  1476. "description": "Generate short, unique, non-sequential ids (like YouTube and Bitly) from numbers",
  1477. "homepage": "https://hashids.org/php",
  1478. "keywords": [
  1479. "bitly",
  1480. "decode",
  1481. "encode",
  1482. "hash",
  1483. "hashid",
  1484. "hashids",
  1485. "ids",
  1486. "obfuscate",
  1487. "youtube"
  1488. ],
  1489. "support": {
  1490. "issues": "https://github.com/vinkla/hashids/issues",
  1491. "source": "https://github.com/vinkla/hashids/tree/4.1.0"
  1492. },
  1493. "time": "2020-11-26T19:24:33+00:00"
  1494. },
  1495. {
  1496. "name": "intervention/image",
  1497. "version": "2.5.1",
  1498. "source": {
  1499. "type": "git",
  1500. "url": "https://github.com/Intervention/image.git",
  1501. "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e"
  1502. },
  1503. "dist": {
  1504. "type": "zip",
  1505. "url": "https://api.github.com/repos/Intervention/image/zipball/abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
  1506. "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
  1507. "shasum": ""
  1508. },
  1509. "require": {
  1510. "ext-fileinfo": "*",
  1511. "guzzlehttp/psr7": "~1.1",
  1512. "php": ">=5.4.0"
  1513. },
  1514. "require-dev": {
  1515. "mockery/mockery": "~0.9.2",
  1516. "phpunit/phpunit": "^4.8 || ^5.7"
  1517. },
  1518. "suggest": {
  1519. "ext-gd": "to use GD library based image processing.",
  1520. "ext-imagick": "to use Imagick based image processing.",
  1521. "intervention/imagecache": "Caching extension for the Intervention Image library"
  1522. },
  1523. "type": "library",
  1524. "extra": {
  1525. "branch-alias": {
  1526. "dev-master": "2.4-dev"
  1527. },
  1528. "laravel": {
  1529. "providers": [
  1530. "Intervention\\Image\\ImageServiceProvider"
  1531. ],
  1532. "aliases": {
  1533. "Image": "Intervention\\Image\\Facades\\Image"
  1534. }
  1535. }
  1536. },
  1537. "autoload": {
  1538. "psr-4": {
  1539. "Intervention\\Image\\": "src/Intervention/Image"
  1540. }
  1541. },
  1542. "notification-url": "https://packagist.org/downloads/",
  1543. "license": [
  1544. "MIT"
  1545. ],
  1546. "authors": [
  1547. {
  1548. "name": "Oliver Vogel",
  1549. "email": "[email protected]",
  1550. "homepage": "http://olivervogel.com/"
  1551. }
  1552. ],
  1553. "description": "Image handling and manipulation library with support for Laravel integration",
  1554. "homepage": "http://image.intervention.io/",
  1555. "keywords": [
  1556. "gd",
  1557. "image",
  1558. "imagick",
  1559. "laravel",
  1560. "thumbnail",
  1561. "watermark"
  1562. ],
  1563. "support": {
  1564. "issues": "https://github.com/Intervention/image/issues",
  1565. "source": "https://github.com/Intervention/image/tree/master"
  1566. },
  1567. "time": "2019-11-02T09:15:47+00:00"
  1568. },
  1569. {
  1570. "name": "ip2location/ip2location-laravel",
  1571. "version": "1.2.0",
  1572. "source": {
  1573. "type": "git",
  1574. "url": "https://github.com/ip2location/ip2location-laravel.git",
  1575. "reference": "56b0da66e12982ef6db0e2fe3b231659c5e76a9b"
  1576. },
  1577. "dist": {
  1578. "type": "zip",
  1579. "url": "https://api.github.com/repos/ip2location/ip2location-laravel/zipball/56b0da66e12982ef6db0e2fe3b231659c5e76a9b",
  1580. "reference": "56b0da66e12982ef6db0e2fe3b231659c5e76a9b",
  1581. "shasum": ""
  1582. },
  1583. "require": {
  1584. "ip2location/ip2location-php": "8.*",
  1585. "php": ">=5.4"
  1586. },
  1587. "type": "library",
  1588. "autoload": {
  1589. "psr-4": {
  1590. "Ip2location\\IP2LocationLaravel\\": "src/"
  1591. }
  1592. },
  1593. "notification-url": "https://packagist.org/downloads/",
  1594. "license": [
  1595. "MIT"
  1596. ],
  1597. "authors": [
  1598. {
  1599. "name": "IP2Location",
  1600. "email": "[email protected]"
  1601. }
  1602. ],
  1603. "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.",
  1604. "keywords": [
  1605. "geolocation",
  1606. "ip2location",
  1607. "laravel",
  1608. "laravel 5",
  1609. "laravel 7"
  1610. ],
  1611. "support": {
  1612. "issues": "https://github.com/ip2location/ip2location-laravel/issues",
  1613. "source": "https://github.com/ip2location/ip2location-laravel/tree/master"
  1614. },
  1615. "time": "2020-08-27T07:47:55+00:00"
  1616. },
  1617. {
  1618. "name": "ip2location/ip2location-php",
  1619. "version": "8.3.0",
  1620. "source": {
  1621. "type": "git",
  1622. "url": "https://github.com/chrislim2888/IP2Location-PHP-Module.git",
  1623. "reference": "4c501aa1f666ae85eab84d4df9d19399f2e6ce15"
  1624. },
  1625. "dist": {
  1626. "type": "zip",
  1627. "url": "https://api.github.com/repos/chrislim2888/IP2Location-PHP-Module/zipball/4c501aa1f666ae85eab84d4df9d19399f2e6ce15",
  1628. "reference": "4c501aa1f666ae85eab84d4df9d19399f2e6ce15",
  1629. "shasum": ""
  1630. },
  1631. "type": "library",
  1632. "autoload": {
  1633. "classmap": [
  1634. "IP2Location.php"
  1635. ]
  1636. },
  1637. "notification-url": "https://packagist.org/downloads/",
  1638. "license": [
  1639. "MIT"
  1640. ],
  1641. "authors": [
  1642. {
  1643. "name": "IP2Location",
  1644. "email": "[email protected]",
  1645. "homepage": "http://www.ip2location.com"
  1646. }
  1647. ],
  1648. "description": "[Official Release] IP2Location PHP API to get location info from IPv4 and IPv6 address.",
  1649. "homepage": "http://www.ip2location.com",
  1650. "keywords": [
  1651. "geolocation",
  1652. "ip2location",
  1653. "ip2locationlite"
  1654. ],
  1655. "support": {
  1656. "issues": "https://github.com/chrislim2888/IP2Location-PHP-Module/issues",
  1657. "source": "https://github.com/chrislim2888/IP2Location-PHP-Module/tree/8.3.0"
  1658. },
  1659. "time": "2020-11-23T04:30:39+00:00"
  1660. },
  1661. {
  1662. "name": "ipip/db",
  1663. "version": "v1.0.0",
  1664. "source": {
  1665. "type": "git",
  1666. "url": "https://github.com/ipipdotnet/ipdb-php.git",
  1667. "reference": "af42bf28b37dc76beccd7bbe2b0b0572e21f42cf"
  1668. },
  1669. "dist": {
  1670. "type": "zip",
  1671. "url": "https://api.github.com/repos/ipipdotnet/ipdb-php/zipball/af42bf28b37dc76beccd7bbe2b0b0572e21f42cf",
  1672. "reference": "af42bf28b37dc76beccd7bbe2b0b0572e21f42cf",
  1673. "shasum": ""
  1674. },
  1675. "require": {
  1676. "php": ">=5.4.0"
  1677. },
  1678. "type": "library",
  1679. "autoload": {
  1680. "psr-4": {
  1681. "ipip\\db\\": "src/ipip/db/"
  1682. }
  1683. },
  1684. "notification-url": "https://packagist.org/downloads/",
  1685. "license": [
  1686. "Apache-2.0"
  1687. ],
  1688. "authors": [
  1689. {
  1690. "name": "IPIP.net",
  1691. "email": "[email protected]",
  1692. "homepage": "https://www.ipip.net"
  1693. }
  1694. ],
  1695. "description": "IPIP.net officially supported IP database ipdb format parsing library",
  1696. "homepage": "https://www.ipip.net",
  1697. "keywords": [
  1698. "IP",
  1699. "geo",
  1700. "geoip",
  1701. "geolocation",
  1702. "ipdb",
  1703. "ipip.net"
  1704. ],
  1705. "support": {
  1706. "issues": "https://github.com/ipipdotnet/ipdb-php/issues",
  1707. "source": "https://github.com/ipipdotnet/ipdb-php/tree/v1.0.0"
  1708. },
  1709. "time": "2018-11-01T08:07:04+00:00"
  1710. },
  1711. {
  1712. "name": "jaybizzle/crawler-detect",
  1713. "version": "v1.2.106",
  1714. "source": {
  1715. "type": "git",
  1716. "url": "https://github.com/JayBizzle/Crawler-Detect.git",
  1717. "reference": "78bf6792cbf9c569dc0bf2465481978fd2ed0de9"
  1718. },
  1719. "dist": {
  1720. "type": "zip",
  1721. "url": "https://api.github.com/repos/JayBizzle/Crawler-Detect/zipball/78bf6792cbf9c569dc0bf2465481978fd2ed0de9",
  1722. "reference": "78bf6792cbf9c569dc0bf2465481978fd2ed0de9",
  1723. "shasum": ""
  1724. },
  1725. "require": {
  1726. "php": ">=5.3.0"
  1727. },
  1728. "require-dev": {
  1729. "phpunit/phpunit": "^4.8|^5.5|^6.5|^9.4"
  1730. },
  1731. "type": "library",
  1732. "autoload": {
  1733. "psr-4": {
  1734. "Jaybizzle\\CrawlerDetect\\": "src/"
  1735. }
  1736. },
  1737. "notification-url": "https://packagist.org/downloads/",
  1738. "license": [
  1739. "MIT"
  1740. ],
  1741. "authors": [
  1742. {
  1743. "name": "Mark Beech",
  1744. "email": "[email protected]",
  1745. "role": "Developer"
  1746. }
  1747. ],
  1748. "description": "CrawlerDetect is a PHP class for detecting bots/crawlers/spiders via the user agent",
  1749. "homepage": "https://github.com/JayBizzle/Crawler-Detect/",
  1750. "keywords": [
  1751. "crawler",
  1752. "crawler detect",
  1753. "crawler detector",
  1754. "crawlerdetect",
  1755. "php crawler detect"
  1756. ],
  1757. "support": {
  1758. "issues": "https://github.com/JayBizzle/Crawler-Detect/issues",
  1759. "source": "https://github.com/JayBizzle/Crawler-Detect/tree/v1.2.106"
  1760. },
  1761. "time": "2021-05-24T20:30:32+00:00"
  1762. },
  1763. {
  1764. "name": "jenssegers/agent",
  1765. "version": "v2.6.4",
  1766. "source": {
  1767. "type": "git",
  1768. "url": "https://github.com/jenssegers/agent.git",
  1769. "reference": "daa11c43729510b3700bc34d414664966b03bffe"
  1770. },
  1771. "dist": {
  1772. "type": "zip",
  1773. "url": "https://api.github.com/repos/jenssegers/agent/zipball/daa11c43729510b3700bc34d414664966b03bffe",
  1774. "reference": "daa11c43729510b3700bc34d414664966b03bffe",
  1775. "shasum": ""
  1776. },
  1777. "require": {
  1778. "jaybizzle/crawler-detect": "^1.2",
  1779. "mobiledetect/mobiledetectlib": "^2.7.6",
  1780. "php": ">=5.6"
  1781. },
  1782. "require-dev": {
  1783. "php-coveralls/php-coveralls": "^2.1",
  1784. "phpunit/phpunit": "^5.0|^6.0|^7.0"
  1785. },
  1786. "suggest": {
  1787. "illuminate/support": "Required for laravel service providers"
  1788. },
  1789. "type": "library",
  1790. "extra": {
  1791. "branch-alias": {
  1792. "dev-master": "3.0-dev"
  1793. },
  1794. "laravel": {
  1795. "providers": [
  1796. "Jenssegers\\Agent\\AgentServiceProvider"
  1797. ],
  1798. "aliases": {
  1799. "Agent": "Jenssegers\\Agent\\Facades\\Agent"
  1800. }
  1801. }
  1802. },
  1803. "autoload": {
  1804. "psr-4": {
  1805. "Jenssegers\\Agent\\": "src/"
  1806. }
  1807. },
  1808. "notification-url": "https://packagist.org/downloads/",
  1809. "license": [
  1810. "MIT"
  1811. ],
  1812. "authors": [
  1813. {
  1814. "name": "Jens Segers",
  1815. "homepage": "https://jenssegers.com"
  1816. }
  1817. ],
  1818. "description": "Desktop/mobile user agent parser with support for Laravel, based on Mobiledetect",
  1819. "homepage": "https://github.com/jenssegers/agent",
  1820. "keywords": [
  1821. "Agent",
  1822. "browser",
  1823. "desktop",
  1824. "laravel",
  1825. "mobile",
  1826. "platform",
  1827. "user agent",
  1828. "useragent"
  1829. ],
  1830. "support": {
  1831. "issues": "https://github.com/jenssegers/agent/issues",
  1832. "source": "https://github.com/jenssegers/agent/tree/v2.6.4"
  1833. },
  1834. "funding": [
  1835. {
  1836. "url": "https://github.com/jenssegers",
  1837. "type": "github"
  1838. },
  1839. {
  1840. "url": "https://tidelift.com/funding/github/packagist/jenssegers/agent",
  1841. "type": "tidelift"
  1842. }
  1843. ],
  1844. "time": "2020-06-13T08:05:20+00:00"
  1845. },
  1846. {
  1847. "name": "laravel-lang/lang",
  1848. "version": "8.1.3",
  1849. "source": {
  1850. "type": "git",
  1851. "url": "https://github.com/Laravel-Lang/lang.git",
  1852. "reference": "54048d1319b211daa8ab73655b698feb09588876"
  1853. },
  1854. "dist": {
  1855. "type": "zip",
  1856. "url": "https://api.github.com/repos/Laravel-Lang/lang/zipball/54048d1319b211daa8ab73655b698feb09588876",
  1857. "reference": "54048d1319b211daa8ab73655b698feb09588876",
  1858. "shasum": ""
  1859. },
  1860. "require": {
  1861. "ext-json": "*"
  1862. },
  1863. "require-dev": {
  1864. "andrey-helldar/pretty-array": "^2.3",
  1865. "andrey-helldar/support": "^3.4",
  1866. "php": "^8.0",
  1867. "phpunit/phpunit": "^9.5",
  1868. "symfony/var-dumper": "^5.2"
  1869. },
  1870. "suggest": {
  1871. "andrey-helldar/laravel-lang-publisher": "Easy installation and update of translation files for your project",
  1872. "arcanedev/laravel-lang": "Translations manager and checker for Laravel 5",
  1873. "overtrue/laravel-lang": "Command to add languages in your project"
  1874. },
  1875. "type": "library",
  1876. "notification-url": "https://packagist.org/downloads/",
  1877. "license": [
  1878. "MIT"
  1879. ],
  1880. "authors": [
  1881. {
  1882. "name": "Laravel-Lang Team",
  1883. "homepage": "https://github.com/Laravel-Lang"
  1884. }
  1885. ],
  1886. "description": "Languages for Laravel",
  1887. "keywords": [
  1888. "lang",
  1889. "languages",
  1890. "laravel",
  1891. "lpm"
  1892. ],
  1893. "support": {
  1894. "issues": "https://github.com/Laravel-Lang/lang/issues",
  1895. "source": "https://github.com/Laravel-Lang/lang"
  1896. },
  1897. "time": "2021-04-14T17:41:45+00:00"
  1898. },
  1899. {
  1900. "name": "laravel-notification-channels/bearychat",
  1901. "version": "1.4.0",
  1902. "source": {
  1903. "type": "git",
  1904. "url": "https://github.com/laravel-notification-channels/bearychat.git",
  1905. "reference": "b04ac9bad37cd08cf177a342b3e2b831c87b2a96"
  1906. },
  1907. "dist": {
  1908. "type": "zip",
  1909. "url": "https://api.github.com/repos/laravel-notification-channels/bearychat/zipball/b04ac9bad37cd08cf177a342b3e2b831c87b2a96",
  1910. "reference": "b04ac9bad37cd08cf177a342b3e2b831c87b2a96",
  1911. "shasum": ""
  1912. },
  1913. "require": {
  1914. "elfsundae/laravel-bearychat": "~1.4",
  1915. "illuminate/notifications": "~5.3|~6.0|~7.0|~8.0",
  1916. "php": ">=5.6.4"
  1917. },
  1918. "require-dev": {
  1919. "mockery/mockery": "~1.0",
  1920. "phpunit/phpunit": "~5.7|~6.0|~7.0|~8.0"
  1921. },
  1922. "type": "library",
  1923. "autoload": {
  1924. "psr-4": {
  1925. "NotificationChannels\\BearyChat\\": "src"
  1926. }
  1927. },
  1928. "notification-url": "https://packagist.org/downloads/",
  1929. "license": [
  1930. "MIT"
  1931. ],
  1932. "authors": [
  1933. {
  1934. "name": "Elf Sundae",
  1935. "email": "[email protected]",
  1936. "homepage": "https://github.com/ElfSundae",
  1937. "role": "Developer"
  1938. }
  1939. ],
  1940. "description": "BearyChat notifications channel for Laravel.",
  1941. "homepage": "https://github.com/laravel-notification-channels/bearychat",
  1942. "support": {
  1943. "issues": "https://github.com/laravel-notification-channels/bearychat/issues",
  1944. "source": "https://github.com/laravel-notification-channels/bearychat/tree/1.4.0"
  1945. },
  1946. "time": "2020-09-13T14:32:13+00:00"
  1947. },
  1948. {
  1949. "name": "laravel-notification-channels/telegram",
  1950. "version": "0.5.1",
  1951. "source": {
  1952. "type": "git",
  1953. "url": "https://github.com/laravel-notification-channels/telegram.git",
  1954. "reference": "2cedb10b78219cc91a285eaa5a3de0db405cc207"
  1955. },
  1956. "dist": {
  1957. "type": "zip",
  1958. "url": "https://api.github.com/repos/laravel-notification-channels/telegram/zipball/2cedb10b78219cc91a285eaa5a3de0db405cc207",
  1959. "reference": "2cedb10b78219cc91a285eaa5a3de0db405cc207",
  1960. "shasum": ""
  1961. },
  1962. "require": {
  1963. "ext-json": "*",
  1964. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  1965. "illuminate/notifications": "^5.5 || ^6.0 || ^7.0 || ^8.0",
  1966. "illuminate/support": "^5.5 || ^6.0 || ^7.0 || ^8.0",
  1967. "php": "^7.1 || ^8.0"
  1968. },
  1969. "require-dev": {
  1970. "mockery/mockery": "^1.3",
  1971. "phpunit/phpunit": "^7.0 || ^8.0"
  1972. },
  1973. "type": "library",
  1974. "extra": {
  1975. "laravel": {
  1976. "providers": [
  1977. "NotificationChannels\\Telegram\\TelegramServiceProvider"
  1978. ]
  1979. }
  1980. },
  1981. "autoload": {
  1982. "psr-4": {
  1983. "NotificationChannels\\Telegram\\": "src"
  1984. }
  1985. },
  1986. "notification-url": "https://packagist.org/downloads/",
  1987. "license": [
  1988. "MIT"
  1989. ],
  1990. "authors": [
  1991. {
  1992. "name": "Irfaq Syed",
  1993. "email": "[email protected]",
  1994. "homepage": "https://lukonet.com",
  1995. "role": "Developer"
  1996. }
  1997. ],
  1998. "description": "Telegram Notifications Channel for Laravel",
  1999. "homepage": "https://github.com/laravel-notification-channels/telegram",
  2000. "keywords": [
  2001. "laravel",
  2002. "notification",
  2003. "telegram",
  2004. "telegram notification",
  2005. "telegram notifications channel"
  2006. ],
  2007. "support": {
  2008. "issues": "https://github.com/laravel-notification-channels/telegram/issues",
  2009. "source": "https://github.com/laravel-notification-channels/telegram/tree/0.5.1"
  2010. },
  2011. "time": "2020-12-06T19:00:18+00:00"
  2012. },
  2013. {
  2014. "name": "laravel/framework",
  2015. "version": "v7.30.4",
  2016. "source": {
  2017. "type": "git",
  2018. "url": "https://github.com/laravel/framework.git",
  2019. "reference": "9dd38140dc2924daa1a020a3d7a45f9ceff03df3"
  2020. },
  2021. "dist": {
  2022. "type": "zip",
  2023. "url": "https://api.github.com/repos/laravel/framework/zipball/9dd38140dc2924daa1a020a3d7a45f9ceff03df3",
  2024. "reference": "9dd38140dc2924daa1a020a3d7a45f9ceff03df3",
  2025. "shasum": ""
  2026. },
  2027. "require": {
  2028. "doctrine/inflector": "^1.4|^2.0",
  2029. "dragonmantank/cron-expression": "^2.3.1",
  2030. "egulias/email-validator": "^2.1.10",
  2031. "ext-json": "*",
  2032. "ext-mbstring": "*",
  2033. "ext-openssl": "*",
  2034. "league/commonmark": "^1.3",
  2035. "league/flysystem": "^1.1",
  2036. "monolog/monolog": "^2.0",
  2037. "nesbot/carbon": "^2.31",
  2038. "opis/closure": "^3.6",
  2039. "php": "^7.2.5|^8.0",
  2040. "psr/container": "^1.0",
  2041. "psr/simple-cache": "^1.0",
  2042. "ramsey/uuid": "^3.7|^4.0",
  2043. "swiftmailer/swiftmailer": "^6.0",
  2044. "symfony/console": "^5.0",
  2045. "symfony/error-handler": "^5.0",
  2046. "symfony/finder": "^5.0",
  2047. "symfony/http-foundation": "^5.0",
  2048. "symfony/http-kernel": "^5.0",
  2049. "symfony/mime": "^5.0",
  2050. "symfony/polyfill-php73": "^1.17",
  2051. "symfony/process": "^5.0",
  2052. "symfony/routing": "^5.0",
  2053. "symfony/var-dumper": "^5.0",
  2054. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  2055. "vlucas/phpdotenv": "^4.0",
  2056. "voku/portable-ascii": "^1.4.8"
  2057. },
  2058. "conflict": {
  2059. "tightenco/collect": "<5.5.33"
  2060. },
  2061. "provide": {
  2062. "psr/container-implementation": "1.0"
  2063. },
  2064. "replace": {
  2065. "illuminate/auth": "self.version",
  2066. "illuminate/broadcasting": "self.version",
  2067. "illuminate/bus": "self.version",
  2068. "illuminate/cache": "self.version",
  2069. "illuminate/config": "self.version",
  2070. "illuminate/console": "self.version",
  2071. "illuminate/container": "self.version",
  2072. "illuminate/contracts": "self.version",
  2073. "illuminate/cookie": "self.version",
  2074. "illuminate/database": "self.version",
  2075. "illuminate/encryption": "self.version",
  2076. "illuminate/events": "self.version",
  2077. "illuminate/filesystem": "self.version",
  2078. "illuminate/hashing": "self.version",
  2079. "illuminate/http": "self.version",
  2080. "illuminate/log": "self.version",
  2081. "illuminate/mail": "self.version",
  2082. "illuminate/notifications": "self.version",
  2083. "illuminate/pagination": "self.version",
  2084. "illuminate/pipeline": "self.version",
  2085. "illuminate/queue": "self.version",
  2086. "illuminate/redis": "self.version",
  2087. "illuminate/routing": "self.version",
  2088. "illuminate/session": "self.version",
  2089. "illuminate/support": "self.version",
  2090. "illuminate/testing": "self.version",
  2091. "illuminate/translation": "self.version",
  2092. "illuminate/validation": "self.version",
  2093. "illuminate/view": "self.version"
  2094. },
  2095. "require-dev": {
  2096. "aws/aws-sdk-php": "^3.155",
  2097. "doctrine/dbal": "^2.6",
  2098. "filp/whoops": "^2.8",
  2099. "guzzlehttp/guzzle": "^6.3.1|^7.0.1",
  2100. "league/flysystem-cached-adapter": "^1.0",
  2101. "mockery/mockery": "~1.3.3|^1.4.2",
  2102. "moontoast/math": "^1.1",
  2103. "orchestra/testbench-core": "^5.8",
  2104. "pda/pheanstalk": "^4.0",
  2105. "phpunit/phpunit": "^8.4|^9.3.3",
  2106. "predis/predis": "^1.1.1",
  2107. "symfony/cache": "^5.0"
  2108. },
  2109. "suggest": {
  2110. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.155).",
  2111. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
  2112. "ext-ftp": "Required to use the Flysystem FTP driver.",
  2113. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  2114. "ext-memcached": "Required to use the memcache cache driver.",
  2115. "ext-pcntl": "Required to use all features of the queue worker.",
  2116. "ext-posix": "Required to use all features of the queue worker.",
  2117. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  2118. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  2119. "filp/whoops": "Required for friendly error pages in development (^2.8).",
  2120. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.3.1|^7.0.1).",
  2121. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  2122. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  2123. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  2124. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  2125. "mockery/mockery": "Required to use mocking (~1.3.3|^1.4.2).",
  2126. "moontoast/math": "Required to use ordered UUIDs (^1.1).",
  2127. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  2128. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  2129. "phpunit/phpunit": "Required to use assertions and run tests (^8.4|^9.3.3).",
  2130. "predis/predis": "Required to use the predis connector (^1.1.2).",
  2131. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  2132. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0).",
  2133. "symfony/cache": "Required to PSR-6 cache bridge (^5.0).",
  2134. "symfony/filesystem": "Required to create relative storage directory symbolic links (^5.0).",
  2135. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  2136. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  2137. },
  2138. "type": "library",
  2139. "extra": {
  2140. "branch-alias": {
  2141. "dev-master": "7.x-dev"
  2142. }
  2143. },
  2144. "autoload": {
  2145. "files": [
  2146. "src/Illuminate/Foundation/helpers.php",
  2147. "src/Illuminate/Support/helpers.php"
  2148. ],
  2149. "psr-4": {
  2150. "Illuminate\\": "src/Illuminate/"
  2151. }
  2152. },
  2153. "notification-url": "https://packagist.org/downloads/",
  2154. "license": [
  2155. "MIT"
  2156. ],
  2157. "authors": [
  2158. {
  2159. "name": "Taylor Otwell",
  2160. "email": "[email protected]"
  2161. }
  2162. ],
  2163. "description": "The Laravel Framework.",
  2164. "homepage": "https://laravel.com",
  2165. "keywords": [
  2166. "framework",
  2167. "laravel"
  2168. ],
  2169. "support": {
  2170. "issues": "https://github.com/laravel/framework/issues",
  2171. "source": "https://github.com/laravel/framework"
  2172. },
  2173. "time": "2021-01-21T14:10:48+00:00"
  2174. },
  2175. {
  2176. "name": "laravel/tinker",
  2177. "version": "v2.6.1",
  2178. "source": {
  2179. "type": "git",
  2180. "url": "https://github.com/laravel/tinker.git",
  2181. "reference": "04ad32c1a3328081097a181875733fa51f402083"
  2182. },
  2183. "dist": {
  2184. "type": "zip",
  2185. "url": "https://api.github.com/repos/laravel/tinker/zipball/04ad32c1a3328081097a181875733fa51f402083",
  2186. "reference": "04ad32c1a3328081097a181875733fa51f402083",
  2187. "shasum": ""
  2188. },
  2189. "require": {
  2190. "illuminate/console": "^6.0|^7.0|^8.0",
  2191. "illuminate/contracts": "^6.0|^7.0|^8.0",
  2192. "illuminate/support": "^6.0|^7.0|^8.0",
  2193. "php": "^7.2.5|^8.0",
  2194. "psy/psysh": "^0.10.4",
  2195. "symfony/var-dumper": "^4.3.4|^5.0"
  2196. },
  2197. "require-dev": {
  2198. "mockery/mockery": "~1.3.3|^1.4.2",
  2199. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2200. },
  2201. "suggest": {
  2202. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0)."
  2203. },
  2204. "type": "library",
  2205. "extra": {
  2206. "branch-alias": {
  2207. "dev-master": "2.x-dev"
  2208. },
  2209. "laravel": {
  2210. "providers": [
  2211. "Laravel\\Tinker\\TinkerServiceProvider"
  2212. ]
  2213. }
  2214. },
  2215. "autoload": {
  2216. "psr-4": {
  2217. "Laravel\\Tinker\\": "src/"
  2218. }
  2219. },
  2220. "notification-url": "https://packagist.org/downloads/",
  2221. "license": [
  2222. "MIT"
  2223. ],
  2224. "authors": [
  2225. {
  2226. "name": "Taylor Otwell",
  2227. "email": "[email protected]"
  2228. }
  2229. ],
  2230. "description": "Powerful REPL for the Laravel framework.",
  2231. "keywords": [
  2232. "REPL",
  2233. "Tinker",
  2234. "laravel",
  2235. "psysh"
  2236. ],
  2237. "support": {
  2238. "issues": "https://github.com/laravel/tinker/issues",
  2239. "source": "https://github.com/laravel/tinker/tree/v2.6.1"
  2240. },
  2241. "time": "2021-03-02T16:53:12+00:00"
  2242. },
  2243. {
  2244. "name": "lcobucci/jwt",
  2245. "version": "3.3.3",
  2246. "source": {
  2247. "type": "git",
  2248. "url": "https://github.com/lcobucci/jwt.git",
  2249. "reference": "c1123697f6a2ec29162b82f170dd4a491f524773"
  2250. },
  2251. "dist": {
  2252. "type": "zip",
  2253. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/c1123697f6a2ec29162b82f170dd4a491f524773",
  2254. "reference": "c1123697f6a2ec29162b82f170dd4a491f524773",
  2255. "shasum": ""
  2256. },
  2257. "require": {
  2258. "ext-mbstring": "*",
  2259. "ext-openssl": "*",
  2260. "php": "^5.6 || ^7.0"
  2261. },
  2262. "require-dev": {
  2263. "mikey179/vfsstream": "~1.5",
  2264. "phpmd/phpmd": "~2.2",
  2265. "phpunit/php-invoker": "~1.1",
  2266. "phpunit/phpunit": "^5.7 || ^7.3",
  2267. "squizlabs/php_codesniffer": "~2.3"
  2268. },
  2269. "type": "library",
  2270. "extra": {
  2271. "branch-alias": {
  2272. "dev-master": "3.1-dev"
  2273. }
  2274. },
  2275. "autoload": {
  2276. "psr-4": {
  2277. "Lcobucci\\JWT\\": "src"
  2278. }
  2279. },
  2280. "notification-url": "https://packagist.org/downloads/",
  2281. "license": [
  2282. "BSD-3-Clause"
  2283. ],
  2284. "authors": [
  2285. {
  2286. "name": "Luís Otávio Cobucci Oblonczyk",
  2287. "email": "[email protected]",
  2288. "role": "Developer"
  2289. }
  2290. ],
  2291. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  2292. "keywords": [
  2293. "JWS",
  2294. "jwt"
  2295. ],
  2296. "support": {
  2297. "issues": "https://github.com/lcobucci/jwt/issues",
  2298. "source": "https://github.com/lcobucci/jwt/tree/3.3.3"
  2299. },
  2300. "funding": [
  2301. {
  2302. "url": "https://github.com/lcobucci",
  2303. "type": "github"
  2304. },
  2305. {
  2306. "url": "https://www.patreon.com/lcobucci",
  2307. "type": "patreon"
  2308. }
  2309. ],
  2310. "time": "2020-08-20T13:22:28+00:00"
  2311. },
  2312. {
  2313. "name": "league/commonmark",
  2314. "version": "1.6.2",
  2315. "source": {
  2316. "type": "git",
  2317. "url": "https://github.com/thephpleague/commonmark.git",
  2318. "reference": "7d70d2f19c84bcc16275ea47edabee24747352eb"
  2319. },
  2320. "dist": {
  2321. "type": "zip",
  2322. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/7d70d2f19c84bcc16275ea47edabee24747352eb",
  2323. "reference": "7d70d2f19c84bcc16275ea47edabee24747352eb",
  2324. "shasum": ""
  2325. },
  2326. "require": {
  2327. "ext-mbstring": "*",
  2328. "php": "^7.1 || ^8.0"
  2329. },
  2330. "conflict": {
  2331. "scrutinizer/ocular": "1.7.*"
  2332. },
  2333. "require-dev": {
  2334. "cebe/markdown": "~1.0",
  2335. "commonmark/commonmark.js": "0.29.2",
  2336. "erusev/parsedown": "~1.0",
  2337. "ext-json": "*",
  2338. "github/gfm": "0.29.0",
  2339. "michelf/php-markdown": "~1.4",
  2340. "mikehaertl/php-shellcommand": "^1.4",
  2341. "phpstan/phpstan": "^0.12",
  2342. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.2",
  2343. "scrutinizer/ocular": "^1.5",
  2344. "symfony/finder": "^4.2"
  2345. },
  2346. "bin": [
  2347. "bin/commonmark"
  2348. ],
  2349. "type": "library",
  2350. "autoload": {
  2351. "psr-4": {
  2352. "League\\CommonMark\\": "src"
  2353. }
  2354. },
  2355. "notification-url": "https://packagist.org/downloads/",
  2356. "license": [
  2357. "BSD-3-Clause"
  2358. ],
  2359. "authors": [
  2360. {
  2361. "name": "Colin O'Dell",
  2362. "email": "[email protected]",
  2363. "homepage": "https://www.colinodell.com",
  2364. "role": "Lead Developer"
  2365. }
  2366. ],
  2367. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and Github-Flavored Markdown (GFM)",
  2368. "homepage": "https://commonmark.thephpleague.com",
  2369. "keywords": [
  2370. "commonmark",
  2371. "flavored",
  2372. "gfm",
  2373. "github",
  2374. "github-flavored",
  2375. "markdown",
  2376. "md",
  2377. "parser"
  2378. ],
  2379. "support": {
  2380. "docs": "https://commonmark.thephpleague.com/",
  2381. "issues": "https://github.com/thephpleague/commonmark/issues",
  2382. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2383. "source": "https://github.com/thephpleague/commonmark"
  2384. },
  2385. "funding": [
  2386. {
  2387. "url": "https://enjoy.gitstore.app/repositories/thephpleague/commonmark",
  2388. "type": "custom"
  2389. },
  2390. {
  2391. "url": "https://www.colinodell.com/sponsor",
  2392. "type": "custom"
  2393. },
  2394. {
  2395. "url": "https://www.paypal.me/colinpodell/10.00",
  2396. "type": "custom"
  2397. },
  2398. {
  2399. "url": "https://github.com/colinodell",
  2400. "type": "github"
  2401. },
  2402. {
  2403. "url": "https://www.patreon.com/colinodell",
  2404. "type": "patreon"
  2405. },
  2406. {
  2407. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2408. "type": "tidelift"
  2409. }
  2410. ],
  2411. "time": "2021-05-12T11:39:41+00:00"
  2412. },
  2413. {
  2414. "name": "league/flysystem",
  2415. "version": "1.1.3",
  2416. "source": {
  2417. "type": "git",
  2418. "url": "https://github.com/thephpleague/flysystem.git",
  2419. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a"
  2420. },
  2421. "dist": {
  2422. "type": "zip",
  2423. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/9be3b16c877d477357c015cec057548cf9b2a14a",
  2424. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a",
  2425. "shasum": ""
  2426. },
  2427. "require": {
  2428. "ext-fileinfo": "*",
  2429. "league/mime-type-detection": "^1.3",
  2430. "php": "^7.2.5 || ^8.0"
  2431. },
  2432. "conflict": {
  2433. "league/flysystem-sftp": "<1.0.6"
  2434. },
  2435. "require-dev": {
  2436. "phpspec/prophecy": "^1.11.1",
  2437. "phpunit/phpunit": "^8.5.8"
  2438. },
  2439. "suggest": {
  2440. "ext-fileinfo": "Required for MimeType",
  2441. "ext-ftp": "Allows you to use FTP server storage",
  2442. "ext-openssl": "Allows you to use FTPS server storage",
  2443. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  2444. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  2445. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  2446. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2447. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  2448. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2449. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  2450. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2451. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2452. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2453. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2454. },
  2455. "type": "library",
  2456. "extra": {
  2457. "branch-alias": {
  2458. "dev-master": "1.1-dev"
  2459. }
  2460. },
  2461. "autoload": {
  2462. "psr-4": {
  2463. "League\\Flysystem\\": "src/"
  2464. }
  2465. },
  2466. "notification-url": "https://packagist.org/downloads/",
  2467. "license": [
  2468. "MIT"
  2469. ],
  2470. "authors": [
  2471. {
  2472. "name": "Frank de Jonge",
  2473. "email": "[email protected]"
  2474. }
  2475. ],
  2476. "description": "Filesystem abstraction: Many filesystems, one API.",
  2477. "keywords": [
  2478. "Cloud Files",
  2479. "WebDAV",
  2480. "abstraction",
  2481. "aws",
  2482. "cloud",
  2483. "copy.com",
  2484. "dropbox",
  2485. "file systems",
  2486. "files",
  2487. "filesystem",
  2488. "filesystems",
  2489. "ftp",
  2490. "rackspace",
  2491. "remote",
  2492. "s3",
  2493. "sftp",
  2494. "storage"
  2495. ],
  2496. "support": {
  2497. "issues": "https://github.com/thephpleague/flysystem/issues",
  2498. "source": "https://github.com/thephpleague/flysystem/tree/1.x"
  2499. },
  2500. "funding": [
  2501. {
  2502. "url": "https://offset.earth/frankdejonge",
  2503. "type": "other"
  2504. }
  2505. ],
  2506. "time": "2020-08-23T07:39:11+00:00"
  2507. },
  2508. {
  2509. "name": "league/mime-type-detection",
  2510. "version": "1.7.0",
  2511. "source": {
  2512. "type": "git",
  2513. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2514. "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3"
  2515. },
  2516. "dist": {
  2517. "type": "zip",
  2518. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
  2519. "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
  2520. "shasum": ""
  2521. },
  2522. "require": {
  2523. "ext-fileinfo": "*",
  2524. "php": "^7.2 || ^8.0"
  2525. },
  2526. "require-dev": {
  2527. "friendsofphp/php-cs-fixer": "^2.18",
  2528. "phpstan/phpstan": "^0.12.68",
  2529. "phpunit/phpunit": "^8.5.8 || ^9.3"
  2530. },
  2531. "type": "library",
  2532. "autoload": {
  2533. "psr-4": {
  2534. "League\\MimeTypeDetection\\": "src"
  2535. }
  2536. },
  2537. "notification-url": "https://packagist.org/downloads/",
  2538. "license": [
  2539. "MIT"
  2540. ],
  2541. "authors": [
  2542. {
  2543. "name": "Frank de Jonge",
  2544. "email": "[email protected]"
  2545. }
  2546. ],
  2547. "description": "Mime-type detection for Flysystem",
  2548. "support": {
  2549. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2550. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.7.0"
  2551. },
  2552. "funding": [
  2553. {
  2554. "url": "https://github.com/frankdejonge",
  2555. "type": "github"
  2556. },
  2557. {
  2558. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2559. "type": "tidelift"
  2560. }
  2561. ],
  2562. "time": "2021-01-18T20:58:21+00:00"
  2563. },
  2564. {
  2565. "name": "maennchen/zipstream-php",
  2566. "version": "2.1.0",
  2567. "source": {
  2568. "type": "git",
  2569. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  2570. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58"
  2571. },
  2572. "dist": {
  2573. "type": "zip",
  2574. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2575. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2576. "shasum": ""
  2577. },
  2578. "require": {
  2579. "myclabs/php-enum": "^1.5",
  2580. "php": ">= 7.1",
  2581. "psr/http-message": "^1.0",
  2582. "symfony/polyfill-mbstring": "^1.0"
  2583. },
  2584. "require-dev": {
  2585. "ext-zip": "*",
  2586. "guzzlehttp/guzzle": ">= 6.3",
  2587. "mikey179/vfsstream": "^1.6",
  2588. "phpunit/phpunit": ">= 7.5"
  2589. },
  2590. "type": "library",
  2591. "autoload": {
  2592. "psr-4": {
  2593. "ZipStream\\": "src/"
  2594. }
  2595. },
  2596. "notification-url": "https://packagist.org/downloads/",
  2597. "license": [
  2598. "MIT"
  2599. ],
  2600. "authors": [
  2601. {
  2602. "name": "Paul Duncan",
  2603. "email": "[email protected]"
  2604. },
  2605. {
  2606. "name": "Jonatan Männchen",
  2607. "email": "[email protected]"
  2608. },
  2609. {
  2610. "name": "Jesse Donat",
  2611. "email": "[email protected]"
  2612. },
  2613. {
  2614. "name": "András Kolesár",
  2615. "email": "[email protected]"
  2616. }
  2617. ],
  2618. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  2619. "keywords": [
  2620. "stream",
  2621. "zip"
  2622. ],
  2623. "support": {
  2624. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  2625. "source": "https://github.com/maennchen/ZipStream-PHP/tree/master"
  2626. },
  2627. "funding": [
  2628. {
  2629. "url": "https://opencollective.com/zipstream",
  2630. "type": "open_collective"
  2631. }
  2632. ],
  2633. "time": "2020-05-30T13:11:16+00:00"
  2634. },
  2635. {
  2636. "name": "markbaker/complex",
  2637. "version": "2.0.3",
  2638. "source": {
  2639. "type": "git",
  2640. "url": "https://github.com/MarkBaker/PHPComplex.git",
  2641. "reference": "6f724d7e04606fd8adaa4e3bb381c3e9db09c946"
  2642. },
  2643. "dist": {
  2644. "type": "zip",
  2645. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/6f724d7e04606fd8adaa4e3bb381c3e9db09c946",
  2646. "reference": "6f724d7e04606fd8adaa4e3bb381c3e9db09c946",
  2647. "shasum": ""
  2648. },
  2649. "require": {
  2650. "php": "^7.2 || ^8.0"
  2651. },
  2652. "require-dev": {
  2653. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2654. "phpcompatibility/php-compatibility": "^9.0",
  2655. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  2656. "squizlabs/php_codesniffer": "^3.4"
  2657. },
  2658. "type": "library",
  2659. "autoload": {
  2660. "psr-4": {
  2661. "Complex\\": "classes/src/"
  2662. },
  2663. "files": [
  2664. "classes/src/functions/abs.php",
  2665. "classes/src/functions/acos.php",
  2666. "classes/src/functions/acosh.php",
  2667. "classes/src/functions/acot.php",
  2668. "classes/src/functions/acoth.php",
  2669. "classes/src/functions/acsc.php",
  2670. "classes/src/functions/acsch.php",
  2671. "classes/src/functions/argument.php",
  2672. "classes/src/functions/asec.php",
  2673. "classes/src/functions/asech.php",
  2674. "classes/src/functions/asin.php",
  2675. "classes/src/functions/asinh.php",
  2676. "classes/src/functions/atan.php",
  2677. "classes/src/functions/atanh.php",
  2678. "classes/src/functions/conjugate.php",
  2679. "classes/src/functions/cos.php",
  2680. "classes/src/functions/cosh.php",
  2681. "classes/src/functions/cot.php",
  2682. "classes/src/functions/coth.php",
  2683. "classes/src/functions/csc.php",
  2684. "classes/src/functions/csch.php",
  2685. "classes/src/functions/exp.php",
  2686. "classes/src/functions/inverse.php",
  2687. "classes/src/functions/ln.php",
  2688. "classes/src/functions/log2.php",
  2689. "classes/src/functions/log10.php",
  2690. "classes/src/functions/negative.php",
  2691. "classes/src/functions/pow.php",
  2692. "classes/src/functions/rho.php",
  2693. "classes/src/functions/sec.php",
  2694. "classes/src/functions/sech.php",
  2695. "classes/src/functions/sin.php",
  2696. "classes/src/functions/sinh.php",
  2697. "classes/src/functions/sqrt.php",
  2698. "classes/src/functions/tan.php",
  2699. "classes/src/functions/tanh.php",
  2700. "classes/src/functions/theta.php",
  2701. "classes/src/operations/add.php",
  2702. "classes/src/operations/subtract.php",
  2703. "classes/src/operations/multiply.php",
  2704. "classes/src/operations/divideby.php",
  2705. "classes/src/operations/divideinto.php"
  2706. ]
  2707. },
  2708. "notification-url": "https://packagist.org/downloads/",
  2709. "license": [
  2710. "MIT"
  2711. ],
  2712. "authors": [
  2713. {
  2714. "name": "Mark Baker",
  2715. "email": "[email protected]"
  2716. }
  2717. ],
  2718. "description": "PHP Class for working with complex numbers",
  2719. "homepage": "https://github.com/MarkBaker/PHPComplex",
  2720. "keywords": [
  2721. "complex",
  2722. "mathematics"
  2723. ],
  2724. "support": {
  2725. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  2726. "source": "https://github.com/MarkBaker/PHPComplex/tree/2.0.3"
  2727. },
  2728. "time": "2021-06-02T09:44:11+00:00"
  2729. },
  2730. {
  2731. "name": "markbaker/matrix",
  2732. "version": "2.1.3",
  2733. "source": {
  2734. "type": "git",
  2735. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  2736. "reference": "174395a901b5ba0925f1d790fa91bab531074b61"
  2737. },
  2738. "dist": {
  2739. "type": "zip",
  2740. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/174395a901b5ba0925f1d790fa91bab531074b61",
  2741. "reference": "174395a901b5ba0925f1d790fa91bab531074b61",
  2742. "shasum": ""
  2743. },
  2744. "require": {
  2745. "php": "^7.1 || ^8.0"
  2746. },
  2747. "require-dev": {
  2748. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2749. "phpcompatibility/php-compatibility": "^9.0",
  2750. "phpdocumentor/phpdocumentor": "2.*",
  2751. "phploc/phploc": "^4.0",
  2752. "phpmd/phpmd": "2.*",
  2753. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  2754. "sebastian/phpcpd": "^4.0",
  2755. "squizlabs/php_codesniffer": "^3.4"
  2756. },
  2757. "type": "library",
  2758. "autoload": {
  2759. "psr-4": {
  2760. "Matrix\\": "classes/src/"
  2761. },
  2762. "files": [
  2763. "classes/src/Functions/adjoint.php",
  2764. "classes/src/Functions/antidiagonal.php",
  2765. "classes/src/Functions/cofactors.php",
  2766. "classes/src/Functions/determinant.php",
  2767. "classes/src/Functions/diagonal.php",
  2768. "classes/src/Functions/identity.php",
  2769. "classes/src/Functions/inverse.php",
  2770. "classes/src/Functions/minors.php",
  2771. "classes/src/Functions/trace.php",
  2772. "classes/src/Functions/transpose.php",
  2773. "classes/src/Operations/add.php",
  2774. "classes/src/Operations/directsum.php",
  2775. "classes/src/Operations/subtract.php",
  2776. "classes/src/Operations/multiply.php",
  2777. "classes/src/Operations/divideby.php",
  2778. "classes/src/Operations/divideinto.php"
  2779. ]
  2780. },
  2781. "notification-url": "https://packagist.org/downloads/",
  2782. "license": [
  2783. "MIT"
  2784. ],
  2785. "authors": [
  2786. {
  2787. "name": "Mark Baker",
  2788. "email": "[email protected]"
  2789. }
  2790. ],
  2791. "description": "PHP Class for working with matrices",
  2792. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  2793. "keywords": [
  2794. "mathematics",
  2795. "matrix",
  2796. "vector"
  2797. ],
  2798. "support": {
  2799. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  2800. "source": "https://github.com/MarkBaker/PHPMatrix/tree/2.1.3"
  2801. },
  2802. "time": "2021-05-25T15:42:17+00:00"
  2803. },
  2804. {
  2805. "name": "maxmind-db/reader",
  2806. "version": "v1.10.1",
  2807. "source": {
  2808. "type": "git",
  2809. "url": "https://github.com/maxmind/MaxMind-DB-Reader-php.git",
  2810. "reference": "569bd44d97d30a4ec12c7793a33004a76d4caf18"
  2811. },
  2812. "dist": {
  2813. "type": "zip",
  2814. "url": "https://api.github.com/repos/maxmind/MaxMind-DB-Reader-php/zipball/569bd44d97d30a4ec12c7793a33004a76d4caf18",
  2815. "reference": "569bd44d97d30a4ec12c7793a33004a76d4caf18",
  2816. "shasum": ""
  2817. },
  2818. "require": {
  2819. "php": ">=7.2"
  2820. },
  2821. "conflict": {
  2822. "ext-maxminddb": "<1.10.1,>=2.0.0"
  2823. },
  2824. "require-dev": {
  2825. "friendsofphp/php-cs-fixer": "*",
  2826. "php-coveralls/php-coveralls": "^2.1",
  2827. "phpstan/phpstan": "*",
  2828. "phpunit/phpcov": ">=6.0.0",
  2829. "phpunit/phpunit": ">=8.0.0,<10.0.0",
  2830. "squizlabs/php_codesniffer": "3.*"
  2831. },
  2832. "suggest": {
  2833. "ext-bcmath": "bcmath or gmp is required for decoding larger integers with the pure PHP decoder",
  2834. "ext-gmp": "bcmath or gmp is required for decoding larger integers with the pure PHP decoder",
  2835. "ext-maxminddb": "A C-based database decoder that provides significantly faster lookups"
  2836. },
  2837. "type": "library",
  2838. "autoload": {
  2839. "psr-4": {
  2840. "MaxMind\\Db\\": "src/MaxMind/Db"
  2841. }
  2842. },
  2843. "notification-url": "https://packagist.org/downloads/",
  2844. "license": [
  2845. "Apache-2.0"
  2846. ],
  2847. "authors": [
  2848. {
  2849. "name": "Gregory J. Oschwald",
  2850. "email": "[email protected]",
  2851. "homepage": "https://www.maxmind.com/"
  2852. }
  2853. ],
  2854. "description": "MaxMind DB Reader API",
  2855. "homepage": "https://github.com/maxmind/MaxMind-DB-Reader-php",
  2856. "keywords": [
  2857. "database",
  2858. "geoip",
  2859. "geoip2",
  2860. "geolocation",
  2861. "maxmind"
  2862. ],
  2863. "support": {
  2864. "issues": "https://github.com/maxmind/MaxMind-DB-Reader-php/issues",
  2865. "source": "https://github.com/maxmind/MaxMind-DB-Reader-php/tree/v1.10.1"
  2866. },
  2867. "time": "2021-04-14T17:49:35+00:00"
  2868. },
  2869. {
  2870. "name": "maxmind/web-service-common",
  2871. "version": "v0.8.1",
  2872. "source": {
  2873. "type": "git",
  2874. "url": "https://github.com/maxmind/web-service-common-php.git",
  2875. "reference": "32f274051c543fc865e5a84d3a2c703913641ea8"
  2876. },
  2877. "dist": {
  2878. "type": "zip",
  2879. "url": "https://api.github.com/repos/maxmind/web-service-common-php/zipball/32f274051c543fc865e5a84d3a2c703913641ea8",
  2880. "reference": "32f274051c543fc865e5a84d3a2c703913641ea8",
  2881. "shasum": ""
  2882. },
  2883. "require": {
  2884. "composer/ca-bundle": "^1.0.3",
  2885. "ext-curl": "*",
  2886. "ext-json": "*",
  2887. "php": ">=7.2"
  2888. },
  2889. "require-dev": {
  2890. "friendsofphp/php-cs-fixer": "2.*",
  2891. "phpunit/phpunit": "^8.0 || ^9.0",
  2892. "squizlabs/php_codesniffer": "3.*"
  2893. },
  2894. "type": "library",
  2895. "autoload": {
  2896. "psr-4": {
  2897. "MaxMind\\Exception\\": "src/Exception",
  2898. "MaxMind\\WebService\\": "src/WebService"
  2899. }
  2900. },
  2901. "notification-url": "https://packagist.org/downloads/",
  2902. "license": [
  2903. "Apache-2.0"
  2904. ],
  2905. "authors": [
  2906. {
  2907. "name": "Gregory Oschwald",
  2908. "email": "[email protected]"
  2909. }
  2910. ],
  2911. "description": "Internal MaxMind Web Service API",
  2912. "homepage": "https://github.com/maxmind/web-service-common-php",
  2913. "support": {
  2914. "issues": "https://github.com/maxmind/web-service-common-php/issues",
  2915. "source": "https://github.com/maxmind/web-service-common-php/tree/v0.8.1"
  2916. },
  2917. "time": "2020-11-02T17:00:53+00:00"
  2918. },
  2919. {
  2920. "name": "mews/captcha",
  2921. "version": "3.2.6",
  2922. "source": {
  2923. "type": "git",
  2924. "url": "https://github.com/mewebstudio/captcha.git",
  2925. "reference": "42c1b320e4cad1f6ec9a395da36d7eda5b67d122"
  2926. },
  2927. "dist": {
  2928. "type": "zip",
  2929. "url": "https://api.github.com/repos/mewebstudio/captcha/zipball/42c1b320e4cad1f6ec9a395da36d7eda5b67d122",
  2930. "reference": "42c1b320e4cad1f6ec9a395da36d7eda5b67d122",
  2931. "shasum": ""
  2932. },
  2933. "require": {
  2934. "ext-gd": "*",
  2935. "illuminate/config": "~5|^6|^7|^8",
  2936. "illuminate/filesystem": "~5|^6|^7|^8",
  2937. "illuminate/hashing": "~5|^6|^7|^8",
  2938. "illuminate/session": "~5|^6|^7|^8",
  2939. "illuminate/support": "~5|^6|^7|^8",
  2940. "intervention/image": "~2.5",
  2941. "php": "^7.2|^8.0"
  2942. },
  2943. "require-dev": {
  2944. "mockery/mockery": "^1.0",
  2945. "phpunit/phpunit": "^8.5"
  2946. },
  2947. "type": "package",
  2948. "extra": {
  2949. "laravel": {
  2950. "providers": [
  2951. "Mews\\Captcha\\CaptchaServiceProvider"
  2952. ],
  2953. "aliases": {
  2954. "Captcha": "Mews\\Captcha\\Facades\\Captcha"
  2955. }
  2956. }
  2957. },
  2958. "autoload": {
  2959. "psr-4": {
  2960. "Mews\\Captcha\\": "src/"
  2961. },
  2962. "files": [
  2963. "src/helpers.php"
  2964. ]
  2965. },
  2966. "notification-url": "https://packagist.org/downloads/",
  2967. "license": [
  2968. "MIT"
  2969. ],
  2970. "authors": [
  2971. {
  2972. "name": "Muharrem ERİN",
  2973. "email": "[email protected]",
  2974. "homepage": "https://github.com/mewebstudio",
  2975. "role": "Developer"
  2976. }
  2977. ],
  2978. "description": "Laravel 5 & 6 Captcha Package",
  2979. "homepage": "https://github.com/mewebstudio/captcha",
  2980. "keywords": [
  2981. "captcha",
  2982. "laravel5 Security",
  2983. "laravel6 Captcha",
  2984. "laravel6 Security"
  2985. ],
  2986. "support": {
  2987. "issues": "https://github.com/mewebstudio/captcha/issues",
  2988. "source": "https://github.com/mewebstudio/captcha/tree/3.2.6"
  2989. },
  2990. "time": "2021-04-22T18:42:48+00:00"
  2991. },
  2992. {
  2993. "name": "mews/purifier",
  2994. "version": "3.3.5",
  2995. "source": {
  2996. "type": "git",
  2997. "url": "https://github.com/mewebstudio/Purifier.git",
  2998. "reference": "53f2be3b94cf8940d23970f0aeb907ce8c9760f7"
  2999. },
  3000. "dist": {
  3001. "type": "zip",
  3002. "url": "https://api.github.com/repos/mewebstudio/Purifier/zipball/53f2be3b94cf8940d23970f0aeb907ce8c9760f7",
  3003. "reference": "53f2be3b94cf8940d23970f0aeb907ce8c9760f7",
  3004. "shasum": ""
  3005. },
  3006. "require": {
  3007. "ezyang/htmlpurifier": "4.13.*",
  3008. "illuminate/config": "^5.8|^6.0|^7.0|^8.0",
  3009. "illuminate/filesystem": "^5.8|^6.0|^7.0|^8.0",
  3010. "illuminate/support": "^5.8|^6.0|^7.0|^8.0",
  3011. "php": "^7.2|^8.0"
  3012. },
  3013. "require-dev": {
  3014. "graham-campbell/testbench": "^3.2|^5.5.1",
  3015. "mockery/mockery": "^1.3.3",
  3016. "phpunit/phpunit": "^8.0|^9.0"
  3017. },
  3018. "suggest": {
  3019. "laravel/framework": "To test the Laravel bindings",
  3020. "laravel/lumen-framework": "To test the Lumen bindings"
  3021. },
  3022. "type": "package",
  3023. "extra": {
  3024. "laravel": {
  3025. "providers": [
  3026. "Mews\\Purifier\\PurifierServiceProvider"
  3027. ],
  3028. "aliases": {
  3029. "Purifier": "Mews\\Purifier\\Facades\\Purifier"
  3030. }
  3031. }
  3032. },
  3033. "autoload": {
  3034. "psr-4": {
  3035. "Mews\\Purifier\\": "src/"
  3036. },
  3037. "files": [
  3038. "src/helpers.php"
  3039. ]
  3040. },
  3041. "notification-url": "https://packagist.org/downloads/",
  3042. "license": [
  3043. "MIT"
  3044. ],
  3045. "authors": [
  3046. {
  3047. "name": "Muharrem ERİN",
  3048. "email": "[email protected]",
  3049. "homepage": "https://github.com/mewebstudio",
  3050. "role": "Developer"
  3051. }
  3052. ],
  3053. "description": "Laravel 5/6/7 HtmlPurifier Package",
  3054. "homepage": "https://github.com/mewebstudio/purifier",
  3055. "keywords": [
  3056. "Purifier",
  3057. "htmlpurifier",
  3058. "laravel5 HtmlPurifier",
  3059. "laravel5 Purifier",
  3060. "laravel5 Security",
  3061. "laravel6 HtmlPurifier",
  3062. "laravel6 Purifier",
  3063. "laravel6 Security",
  3064. "security",
  3065. "xss"
  3066. ],
  3067. "support": {
  3068. "issues": "https://github.com/mewebstudio/Purifier/issues",
  3069. "source": "https://github.com/mewebstudio/Purifier/tree/3.3.5"
  3070. },
  3071. "time": "2021-05-17T00:17:01+00:00"
  3072. },
  3073. {
  3074. "name": "mobiledetect/mobiledetectlib",
  3075. "version": "2.8.37",
  3076. "source": {
  3077. "type": "git",
  3078. "url": "https://github.com/serbanghita/Mobile-Detect.git",
  3079. "reference": "9841e3c46f5bd0739b53aed8ac677fa712943df7"
  3080. },
  3081. "dist": {
  3082. "type": "zip",
  3083. "url": "https://api.github.com/repos/serbanghita/Mobile-Detect/zipball/9841e3c46f5bd0739b53aed8ac677fa712943df7",
  3084. "reference": "9841e3c46f5bd0739b53aed8ac677fa712943df7",
  3085. "shasum": ""
  3086. },
  3087. "require": {
  3088. "php": ">=5.0.0"
  3089. },
  3090. "require-dev": {
  3091. "phpunit/phpunit": "~4.8.35||~5.7"
  3092. },
  3093. "type": "library",
  3094. "autoload": {
  3095. "classmap": [
  3096. "Mobile_Detect.php"
  3097. ],
  3098. "psr-0": {
  3099. "Detection": "namespaced/"
  3100. }
  3101. },
  3102. "notification-url": "https://packagist.org/downloads/",
  3103. "license": [
  3104. "MIT"
  3105. ],
  3106. "authors": [
  3107. {
  3108. "name": "Serban Ghita",
  3109. "email": "[email protected]",
  3110. "homepage": "http://mobiledetect.net",
  3111. "role": "Developer"
  3112. }
  3113. ],
  3114. "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.",
  3115. "homepage": "https://github.com/serbanghita/Mobile-Detect",
  3116. "keywords": [
  3117. "detect mobile devices",
  3118. "mobile",
  3119. "mobile detect",
  3120. "mobile detector",
  3121. "php mobile detect"
  3122. ],
  3123. "support": {
  3124. "issues": "https://github.com/serbanghita/Mobile-Detect/issues",
  3125. "source": "https://github.com/serbanghita/Mobile-Detect/tree/2.8.37"
  3126. },
  3127. "funding": [
  3128. {
  3129. "url": "https://github.com/serbanghita",
  3130. "type": "github"
  3131. }
  3132. ],
  3133. "time": "2021-02-19T21:22:57+00:00"
  3134. },
  3135. {
  3136. "name": "monolog/monolog",
  3137. "version": "2.2.0",
  3138. "source": {
  3139. "type": "git",
  3140. "url": "https://github.com/Seldaek/monolog.git",
  3141. "reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084"
  3142. },
  3143. "dist": {
  3144. "type": "zip",
  3145. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/1cb1cde8e8dd0f70cc0fe51354a59acad9302084",
  3146. "reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084",
  3147. "shasum": ""
  3148. },
  3149. "require": {
  3150. "php": ">=7.2",
  3151. "psr/log": "^1.0.1"
  3152. },
  3153. "provide": {
  3154. "psr/log-implementation": "1.0.0"
  3155. },
  3156. "require-dev": {
  3157. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  3158. "doctrine/couchdb": "~1.0@dev",
  3159. "elasticsearch/elasticsearch": "^7",
  3160. "graylog2/gelf-php": "^1.4.2",
  3161. "mongodb/mongodb": "^1.8",
  3162. "php-amqplib/php-amqplib": "~2.4",
  3163. "php-console/php-console": "^3.1.3",
  3164. "phpspec/prophecy": "^1.6.1",
  3165. "phpstan/phpstan": "^0.12.59",
  3166. "phpunit/phpunit": "^8.5",
  3167. "predis/predis": "^1.1",
  3168. "rollbar/rollbar": "^1.3",
  3169. "ruflin/elastica": ">=0.90 <7.0.1",
  3170. "swiftmailer/swiftmailer": "^5.3|^6.0"
  3171. },
  3172. "suggest": {
  3173. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  3174. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  3175. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  3176. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  3177. "ext-mbstring": "Allow to work properly with unicode symbols",
  3178. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  3179. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  3180. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  3181. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  3182. "php-console/php-console": "Allow sending log messages to Google Chrome",
  3183. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  3184. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  3185. },
  3186. "type": "library",
  3187. "extra": {
  3188. "branch-alias": {
  3189. "dev-main": "2.x-dev"
  3190. }
  3191. },
  3192. "autoload": {
  3193. "psr-4": {
  3194. "Monolog\\": "src/Monolog"
  3195. }
  3196. },
  3197. "notification-url": "https://packagist.org/downloads/",
  3198. "license": [
  3199. "MIT"
  3200. ],
  3201. "authors": [
  3202. {
  3203. "name": "Jordi Boggiano",
  3204. "email": "[email protected]",
  3205. "homepage": "https://seld.be"
  3206. }
  3207. ],
  3208. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  3209. "homepage": "https://github.com/Seldaek/monolog",
  3210. "keywords": [
  3211. "log",
  3212. "logging",
  3213. "psr-3"
  3214. ],
  3215. "support": {
  3216. "issues": "https://github.com/Seldaek/monolog/issues",
  3217. "source": "https://github.com/Seldaek/monolog/tree/2.2.0"
  3218. },
  3219. "funding": [
  3220. {
  3221. "url": "https://github.com/Seldaek",
  3222. "type": "github"
  3223. },
  3224. {
  3225. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  3226. "type": "tidelift"
  3227. }
  3228. ],
  3229. "time": "2020-12-14T13:15:25+00:00"
  3230. },
  3231. {
  3232. "name": "myclabs/php-enum",
  3233. "version": "1.8.0",
  3234. "source": {
  3235. "type": "git",
  3236. "url": "https://github.com/myclabs/php-enum.git",
  3237. "reference": "46cf3d8498b095bd33727b13fd5707263af99421"
  3238. },
  3239. "dist": {
  3240. "type": "zip",
  3241. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/46cf3d8498b095bd33727b13fd5707263af99421",
  3242. "reference": "46cf3d8498b095bd33727b13fd5707263af99421",
  3243. "shasum": ""
  3244. },
  3245. "require": {
  3246. "ext-json": "*",
  3247. "php": "^7.3 || ^8.0"
  3248. },
  3249. "require-dev": {
  3250. "phpunit/phpunit": "^9.5",
  3251. "squizlabs/php_codesniffer": "1.*",
  3252. "vimeo/psalm": "^4.5.1"
  3253. },
  3254. "type": "library",
  3255. "autoload": {
  3256. "psr-4": {
  3257. "MyCLabs\\Enum\\": "src/"
  3258. }
  3259. },
  3260. "notification-url": "https://packagist.org/downloads/",
  3261. "license": [
  3262. "MIT"
  3263. ],
  3264. "authors": [
  3265. {
  3266. "name": "PHP Enum contributors",
  3267. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  3268. }
  3269. ],
  3270. "description": "PHP Enum implementation",
  3271. "homepage": "http://github.com/myclabs/php-enum",
  3272. "keywords": [
  3273. "enum"
  3274. ],
  3275. "support": {
  3276. "issues": "https://github.com/myclabs/php-enum/issues",
  3277. "source": "https://github.com/myclabs/php-enum/tree/1.8.0"
  3278. },
  3279. "funding": [
  3280. {
  3281. "url": "https://github.com/mnapoli",
  3282. "type": "github"
  3283. },
  3284. {
  3285. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  3286. "type": "tidelift"
  3287. }
  3288. ],
  3289. "time": "2021-02-15T16:11:48+00:00"
  3290. },
  3291. {
  3292. "name": "namshi/jose",
  3293. "version": "7.2.3",
  3294. "source": {
  3295. "type": "git",
  3296. "url": "https://github.com/namshi/jose.git",
  3297. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff"
  3298. },
  3299. "dist": {
  3300. "type": "zip",
  3301. "url": "https://api.github.com/repos/namshi/jose/zipball/89a24d7eb3040e285dd5925fcad992378b82bcff",
  3302. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff",
  3303. "shasum": ""
  3304. },
  3305. "require": {
  3306. "ext-date": "*",
  3307. "ext-hash": "*",
  3308. "ext-json": "*",
  3309. "ext-pcre": "*",
  3310. "ext-spl": "*",
  3311. "php": ">=5.5",
  3312. "symfony/polyfill-php56": "^1.0"
  3313. },
  3314. "require-dev": {
  3315. "phpseclib/phpseclib": "^2.0",
  3316. "phpunit/phpunit": "^4.5|^5.0",
  3317. "satooshi/php-coveralls": "^1.0"
  3318. },
  3319. "suggest": {
  3320. "ext-openssl": "Allows to use OpenSSL as crypto engine.",
  3321. "phpseclib/phpseclib": "Allows to use Phpseclib as crypto engine, use version ^2.0."
  3322. },
  3323. "type": "library",
  3324. "autoload": {
  3325. "psr-4": {
  3326. "Namshi\\JOSE\\": "src/Namshi/JOSE/"
  3327. }
  3328. },
  3329. "notification-url": "https://packagist.org/downloads/",
  3330. "license": [
  3331. "MIT"
  3332. ],
  3333. "authors": [
  3334. {
  3335. "name": "Alessandro Nadalin",
  3336. "email": "[email protected]"
  3337. },
  3338. {
  3339. "name": "Alessandro Cinelli (cirpo)",
  3340. "email": "[email protected]"
  3341. }
  3342. ],
  3343. "description": "JSON Object Signing and Encryption library for PHP.",
  3344. "keywords": [
  3345. "JSON Web Signature",
  3346. "JSON Web Token",
  3347. "JWS",
  3348. "json",
  3349. "jwt",
  3350. "token"
  3351. ],
  3352. "support": {
  3353. "issues": "https://github.com/namshi/jose/issues",
  3354. "source": "https://github.com/namshi/jose/tree/master"
  3355. },
  3356. "time": "2016-12-05T07:27:31+00:00"
  3357. },
  3358. {
  3359. "name": "nesbot/carbon",
  3360. "version": "2.48.1",
  3361. "source": {
  3362. "type": "git",
  3363. "url": "https://github.com/briannesbitt/Carbon.git",
  3364. "reference": "8d1f50f1436fb4b05e7127360483dd9c6e73da16"
  3365. },
  3366. "dist": {
  3367. "type": "zip",
  3368. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/8d1f50f1436fb4b05e7127360483dd9c6e73da16",
  3369. "reference": "8d1f50f1436fb4b05e7127360483dd9c6e73da16",
  3370. "shasum": ""
  3371. },
  3372. "require": {
  3373. "ext-json": "*",
  3374. "php": "^7.1.8 || ^8.0",
  3375. "symfony/polyfill-mbstring": "^1.0",
  3376. "symfony/translation": "^3.4 || ^4.0 || ^5.0"
  3377. },
  3378. "require-dev": {
  3379. "doctrine/orm": "^2.7",
  3380. "friendsofphp/php-cs-fixer": "^2.14 || ^3.0",
  3381. "kylekatarnls/multi-tester": "^2.0",
  3382. "phpmd/phpmd": "^2.9",
  3383. "phpstan/extension-installer": "^1.0",
  3384. "phpstan/phpstan": "^0.12.54",
  3385. "phpunit/phpunit": "^7.5.20 || ^8.5.14",
  3386. "squizlabs/php_codesniffer": "^3.4"
  3387. },
  3388. "bin": [
  3389. "bin/carbon"
  3390. ],
  3391. "type": "library",
  3392. "extra": {
  3393. "branch-alias": {
  3394. "dev-master": "2.x-dev",
  3395. "dev-3.x": "3.x-dev"
  3396. },
  3397. "laravel": {
  3398. "providers": [
  3399. "Carbon\\Laravel\\ServiceProvider"
  3400. ]
  3401. },
  3402. "phpstan": {
  3403. "includes": [
  3404. "extension.neon"
  3405. ]
  3406. }
  3407. },
  3408. "autoload": {
  3409. "psr-4": {
  3410. "Carbon\\": "src/Carbon/"
  3411. }
  3412. },
  3413. "notification-url": "https://packagist.org/downloads/",
  3414. "license": [
  3415. "MIT"
  3416. ],
  3417. "authors": [
  3418. {
  3419. "name": "Brian Nesbitt",
  3420. "email": "[email protected]",
  3421. "homepage": "http://nesbot.com"
  3422. },
  3423. {
  3424. "name": "kylekatarnls",
  3425. "homepage": "http://github.com/kylekatarnls"
  3426. }
  3427. ],
  3428. "description": "An API extension for DateTime that supports 281 different languages.",
  3429. "homepage": "http://carbon.nesbot.com",
  3430. "keywords": [
  3431. "date",
  3432. "datetime",
  3433. "time"
  3434. ],
  3435. "support": {
  3436. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3437. "source": "https://github.com/briannesbitt/Carbon"
  3438. },
  3439. "funding": [
  3440. {
  3441. "url": "https://opencollective.com/Carbon",
  3442. "type": "open_collective"
  3443. },
  3444. {
  3445. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  3446. "type": "tidelift"
  3447. }
  3448. ],
  3449. "time": "2021-05-26T22:08:38+00:00"
  3450. },
  3451. {
  3452. "name": "nikic/php-parser",
  3453. "version": "v4.10.5",
  3454. "source": {
  3455. "type": "git",
  3456. "url": "https://github.com/nikic/PHP-Parser.git",
  3457. "reference": "4432ba399e47c66624bc73c8c0f811e5c109576f"
  3458. },
  3459. "dist": {
  3460. "type": "zip",
  3461. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/4432ba399e47c66624bc73c8c0f811e5c109576f",
  3462. "reference": "4432ba399e47c66624bc73c8c0f811e5c109576f",
  3463. "shasum": ""
  3464. },
  3465. "require": {
  3466. "ext-tokenizer": "*",
  3467. "php": ">=7.0"
  3468. },
  3469. "require-dev": {
  3470. "ircmaxell/php-yacc": "^0.0.7",
  3471. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  3472. },
  3473. "bin": [
  3474. "bin/php-parse"
  3475. ],
  3476. "type": "library",
  3477. "extra": {
  3478. "branch-alias": {
  3479. "dev-master": "4.9-dev"
  3480. }
  3481. },
  3482. "autoload": {
  3483. "psr-4": {
  3484. "PhpParser\\": "lib/PhpParser"
  3485. }
  3486. },
  3487. "notification-url": "https://packagist.org/downloads/",
  3488. "license": [
  3489. "BSD-3-Clause"
  3490. ],
  3491. "authors": [
  3492. {
  3493. "name": "Nikita Popov"
  3494. }
  3495. ],
  3496. "description": "A PHP parser written in PHP",
  3497. "keywords": [
  3498. "parser",
  3499. "php"
  3500. ],
  3501. "support": {
  3502. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3503. "source": "https://github.com/nikic/PHP-Parser/tree/v4.10.5"
  3504. },
  3505. "time": "2021-05-03T19:11:20+00:00"
  3506. },
  3507. {
  3508. "name": "opis/closure",
  3509. "version": "3.6.2",
  3510. "source": {
  3511. "type": "git",
  3512. "url": "https://github.com/opis/closure.git",
  3513. "reference": "06e2ebd25f2869e54a306dda991f7db58066f7f6"
  3514. },
  3515. "dist": {
  3516. "type": "zip",
  3517. "url": "https://api.github.com/repos/opis/closure/zipball/06e2ebd25f2869e54a306dda991f7db58066f7f6",
  3518. "reference": "06e2ebd25f2869e54a306dda991f7db58066f7f6",
  3519. "shasum": ""
  3520. },
  3521. "require": {
  3522. "php": "^5.4 || ^7.0 || ^8.0"
  3523. },
  3524. "require-dev": {
  3525. "jeremeamia/superclosure": "^2.0",
  3526. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  3527. },
  3528. "type": "library",
  3529. "extra": {
  3530. "branch-alias": {
  3531. "dev-master": "3.6.x-dev"
  3532. }
  3533. },
  3534. "autoload": {
  3535. "psr-4": {
  3536. "Opis\\Closure\\": "src/"
  3537. },
  3538. "files": [
  3539. "functions.php"
  3540. ]
  3541. },
  3542. "notification-url": "https://packagist.org/downloads/",
  3543. "license": [
  3544. "MIT"
  3545. ],
  3546. "authors": [
  3547. {
  3548. "name": "Marius Sarca",
  3549. "email": "[email protected]"
  3550. },
  3551. {
  3552. "name": "Sorin Sarca",
  3553. "email": "[email protected]"
  3554. }
  3555. ],
  3556. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  3557. "homepage": "https://opis.io/closure",
  3558. "keywords": [
  3559. "anonymous functions",
  3560. "closure",
  3561. "function",
  3562. "serializable",
  3563. "serialization",
  3564. "serialize"
  3565. ],
  3566. "support": {
  3567. "issues": "https://github.com/opis/closure/issues",
  3568. "source": "https://github.com/opis/closure/tree/3.6.2"
  3569. },
  3570. "time": "2021-04-09T13:42:10+00:00"
  3571. },
  3572. {
  3573. "name": "overtrue/laravel-lang",
  3574. "version": "5.0.0",
  3575. "source": {
  3576. "type": "git",
  3577. "url": "https://github.com/overtrue/laravel-lang.git",
  3578. "reference": "30133b4b97a43368949ca48985cd04968d50ba40"
  3579. },
  3580. "dist": {
  3581. "type": "zip",
  3582. "url": "https://api.github.com/repos/overtrue/laravel-lang/zipball/30133b4b97a43368949ca48985cd04968d50ba40",
  3583. "reference": "30133b4b97a43368949ca48985cd04968d50ba40",
  3584. "shasum": ""
  3585. },
  3586. "require": {
  3587. "ext-json": "*",
  3588. "laravel-lang/lang": "^8.0",
  3589. "symfony/process": "^5.0.0"
  3590. },
  3591. "require-dev": {
  3592. "laravel/framework": "~8.1"
  3593. },
  3594. "type": "library",
  3595. "extra": {
  3596. "laravel": {
  3597. "providers": [
  3598. "Overtrue\\LaravelLang\\TranslationServiceProvider"
  3599. ]
  3600. }
  3601. },
  3602. "autoload": {
  3603. "psr-4": {
  3604. "Overtrue\\LaravelLang\\": "src/"
  3605. }
  3606. },
  3607. "notification-url": "https://packagist.org/downloads/",
  3608. "license": [
  3609. "MIT"
  3610. ],
  3611. "authors": [
  3612. {
  3613. "name": "overtrue",
  3614. "email": "[email protected]"
  3615. }
  3616. ],
  3617. "description": "List of 75 languages for Laravel 4, 5, 6 and 7",
  3618. "keywords": [
  3619. "i18n",
  3620. "languages",
  3621. "laravel",
  3622. "locale",
  3623. "overtrue"
  3624. ],
  3625. "support": {
  3626. "issues": "https://github.com/overtrue/laravel-lang/issues",
  3627. "source": "https://github.com/overtrue/laravel-lang/tree/5.0.0"
  3628. },
  3629. "funding": [
  3630. {
  3631. "url": "https://www.patreon.com/overtrue",
  3632. "type": "patreon"
  3633. }
  3634. ],
  3635. "time": "2021-04-28T03:56:56+00:00"
  3636. },
  3637. {
  3638. "name": "phpoffice/phpspreadsheet",
  3639. "version": "1.18.0",
  3640. "source": {
  3641. "type": "git",
  3642. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  3643. "reference": "418cd304e8e6b417ea79c3b29126a25dc4b1170c"
  3644. },
  3645. "dist": {
  3646. "type": "zip",
  3647. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/418cd304e8e6b417ea79c3b29126a25dc4b1170c",
  3648. "reference": "418cd304e8e6b417ea79c3b29126a25dc4b1170c",
  3649. "shasum": ""
  3650. },
  3651. "require": {
  3652. "ext-ctype": "*",
  3653. "ext-dom": "*",
  3654. "ext-fileinfo": "*",
  3655. "ext-gd": "*",
  3656. "ext-iconv": "*",
  3657. "ext-libxml": "*",
  3658. "ext-mbstring": "*",
  3659. "ext-simplexml": "*",
  3660. "ext-xml": "*",
  3661. "ext-xmlreader": "*",
  3662. "ext-xmlwriter": "*",
  3663. "ext-zip": "*",
  3664. "ext-zlib": "*",
  3665. "ezyang/htmlpurifier": "^4.13",
  3666. "maennchen/zipstream-php": "^2.1",
  3667. "markbaker/complex": "^2.0",
  3668. "markbaker/matrix": "^2.0",
  3669. "php": "^7.2 || ^8.0",
  3670. "psr/http-client": "^1.0",
  3671. "psr/http-factory": "^1.0",
  3672. "psr/simple-cache": "^1.0"
  3673. },
  3674. "require-dev": {
  3675. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  3676. "dompdf/dompdf": "^1.0",
  3677. "friendsofphp/php-cs-fixer": "^2.18",
  3678. "jpgraph/jpgraph": "^4.0",
  3679. "mpdf/mpdf": "^8.0",
  3680. "phpcompatibility/php-compatibility": "^9.3",
  3681. "phpstan/phpstan": "^0.12.82",
  3682. "phpstan/phpstan-phpunit": "^0.12.18",
  3683. "phpunit/phpunit": "^8.5",
  3684. "squizlabs/php_codesniffer": "^3.5",
  3685. "tecnickcom/tcpdf": "^6.3"
  3686. },
  3687. "suggest": {
  3688. "dompdf/dompdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)",
  3689. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  3690. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  3691. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)"
  3692. },
  3693. "type": "library",
  3694. "autoload": {
  3695. "psr-4": {
  3696. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  3697. }
  3698. },
  3699. "notification-url": "https://packagist.org/downloads/",
  3700. "license": [
  3701. "MIT"
  3702. ],
  3703. "authors": [
  3704. {
  3705. "name": "Maarten Balliauw",
  3706. "homepage": "https://blog.maartenballiauw.be"
  3707. },
  3708. {
  3709. "name": "Mark Baker",
  3710. "homepage": "https://markbakeruk.net"
  3711. },
  3712. {
  3713. "name": "Franck Lefevre",
  3714. "homepage": "https://rootslabs.net"
  3715. },
  3716. {
  3717. "name": "Erik Tilt"
  3718. },
  3719. {
  3720. "name": "Adrien Crivelli"
  3721. }
  3722. ],
  3723. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  3724. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  3725. "keywords": [
  3726. "OpenXML",
  3727. "excel",
  3728. "gnumeric",
  3729. "ods",
  3730. "php",
  3731. "spreadsheet",
  3732. "xls",
  3733. "xlsx"
  3734. ],
  3735. "support": {
  3736. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  3737. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.18.0"
  3738. },
  3739. "time": "2021-05-31T18:21:15+00:00"
  3740. },
  3741. {
  3742. "name": "phpoption/phpoption",
  3743. "version": "1.7.5",
  3744. "source": {
  3745. "type": "git",
  3746. "url": "https://github.com/schmittjoh/php-option.git",
  3747. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525"
  3748. },
  3749. "dist": {
  3750. "type": "zip",
  3751. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/994ecccd8f3283ecf5ac33254543eb0ac946d525",
  3752. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525",
  3753. "shasum": ""
  3754. },
  3755. "require": {
  3756. "php": "^5.5.9 || ^7.0 || ^8.0"
  3757. },
  3758. "require-dev": {
  3759. "bamarni/composer-bin-plugin": "^1.4.1",
  3760. "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0 || ^8.0 || ^9.0"
  3761. },
  3762. "type": "library",
  3763. "extra": {
  3764. "branch-alias": {
  3765. "dev-master": "1.7-dev"
  3766. }
  3767. },
  3768. "autoload": {
  3769. "psr-4": {
  3770. "PhpOption\\": "src/PhpOption/"
  3771. }
  3772. },
  3773. "notification-url": "https://packagist.org/downloads/",
  3774. "license": [
  3775. "Apache-2.0"
  3776. ],
  3777. "authors": [
  3778. {
  3779. "name": "Johannes M. Schmitt",
  3780. "email": "[email protected]"
  3781. },
  3782. {
  3783. "name": "Graham Campbell",
  3784. "email": "[email protected]"
  3785. }
  3786. ],
  3787. "description": "Option Type for PHP",
  3788. "keywords": [
  3789. "language",
  3790. "option",
  3791. "php",
  3792. "type"
  3793. ],
  3794. "support": {
  3795. "issues": "https://github.com/schmittjoh/php-option/issues",
  3796. "source": "https://github.com/schmittjoh/php-option/tree/1.7.5"
  3797. },
  3798. "funding": [
  3799. {
  3800. "url": "https://github.com/GrahamCampbell",
  3801. "type": "github"
  3802. },
  3803. {
  3804. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  3805. "type": "tidelift"
  3806. }
  3807. ],
  3808. "time": "2020-07-20T17:29:33+00:00"
  3809. },
  3810. {
  3811. "name": "psr/container",
  3812. "version": "1.1.1",
  3813. "source": {
  3814. "type": "git",
  3815. "url": "https://github.com/php-fig/container.git",
  3816. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
  3817. },
  3818. "dist": {
  3819. "type": "zip",
  3820. "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
  3821. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
  3822. "shasum": ""
  3823. },
  3824. "require": {
  3825. "php": ">=7.2.0"
  3826. },
  3827. "type": "library",
  3828. "autoload": {
  3829. "psr-4": {
  3830. "Psr\\Container\\": "src/"
  3831. }
  3832. },
  3833. "notification-url": "https://packagist.org/downloads/",
  3834. "license": [
  3835. "MIT"
  3836. ],
  3837. "authors": [
  3838. {
  3839. "name": "PHP-FIG",
  3840. "homepage": "https://www.php-fig.org/"
  3841. }
  3842. ],
  3843. "description": "Common Container Interface (PHP FIG PSR-11)",
  3844. "homepage": "https://github.com/php-fig/container",
  3845. "keywords": [
  3846. "PSR-11",
  3847. "container",
  3848. "container-interface",
  3849. "container-interop",
  3850. "psr"
  3851. ],
  3852. "support": {
  3853. "issues": "https://github.com/php-fig/container/issues",
  3854. "source": "https://github.com/php-fig/container/tree/1.1.1"
  3855. },
  3856. "time": "2021-03-05T17:36:06+00:00"
  3857. },
  3858. {
  3859. "name": "psr/event-dispatcher",
  3860. "version": "1.0.0",
  3861. "source": {
  3862. "type": "git",
  3863. "url": "https://github.com/php-fig/event-dispatcher.git",
  3864. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  3865. },
  3866. "dist": {
  3867. "type": "zip",
  3868. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3869. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3870. "shasum": ""
  3871. },
  3872. "require": {
  3873. "php": ">=7.2.0"
  3874. },
  3875. "type": "library",
  3876. "extra": {
  3877. "branch-alias": {
  3878. "dev-master": "1.0.x-dev"
  3879. }
  3880. },
  3881. "autoload": {
  3882. "psr-4": {
  3883. "Psr\\EventDispatcher\\": "src/"
  3884. }
  3885. },
  3886. "notification-url": "https://packagist.org/downloads/",
  3887. "license": [
  3888. "MIT"
  3889. ],
  3890. "authors": [
  3891. {
  3892. "name": "PHP-FIG",
  3893. "homepage": "http://www.php-fig.org/"
  3894. }
  3895. ],
  3896. "description": "Standard interfaces for event handling.",
  3897. "keywords": [
  3898. "events",
  3899. "psr",
  3900. "psr-14"
  3901. ],
  3902. "support": {
  3903. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  3904. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  3905. },
  3906. "time": "2019-01-08T18:20:26+00:00"
  3907. },
  3908. {
  3909. "name": "psr/http-client",
  3910. "version": "1.0.1",
  3911. "source": {
  3912. "type": "git",
  3913. "url": "https://github.com/php-fig/http-client.git",
  3914. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  3915. },
  3916. "dist": {
  3917. "type": "zip",
  3918. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3919. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3920. "shasum": ""
  3921. },
  3922. "require": {
  3923. "php": "^7.0 || ^8.0",
  3924. "psr/http-message": "^1.0"
  3925. },
  3926. "type": "library",
  3927. "extra": {
  3928. "branch-alias": {
  3929. "dev-master": "1.0.x-dev"
  3930. }
  3931. },
  3932. "autoload": {
  3933. "psr-4": {
  3934. "Psr\\Http\\Client\\": "src/"
  3935. }
  3936. },
  3937. "notification-url": "https://packagist.org/downloads/",
  3938. "license": [
  3939. "MIT"
  3940. ],
  3941. "authors": [
  3942. {
  3943. "name": "PHP-FIG",
  3944. "homepage": "http://www.php-fig.org/"
  3945. }
  3946. ],
  3947. "description": "Common interface for HTTP clients",
  3948. "homepage": "https://github.com/php-fig/http-client",
  3949. "keywords": [
  3950. "http",
  3951. "http-client",
  3952. "psr",
  3953. "psr-18"
  3954. ],
  3955. "support": {
  3956. "source": "https://github.com/php-fig/http-client/tree/master"
  3957. },
  3958. "time": "2020-06-29T06:28:15+00:00"
  3959. },
  3960. {
  3961. "name": "psr/http-factory",
  3962. "version": "1.0.1",
  3963. "source": {
  3964. "type": "git",
  3965. "url": "https://github.com/php-fig/http-factory.git",
  3966. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  3967. },
  3968. "dist": {
  3969. "type": "zip",
  3970. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  3971. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  3972. "shasum": ""
  3973. },
  3974. "require": {
  3975. "php": ">=7.0.0",
  3976. "psr/http-message": "^1.0"
  3977. },
  3978. "type": "library",
  3979. "extra": {
  3980. "branch-alias": {
  3981. "dev-master": "1.0.x-dev"
  3982. }
  3983. },
  3984. "autoload": {
  3985. "psr-4": {
  3986. "Psr\\Http\\Message\\": "src/"
  3987. }
  3988. },
  3989. "notification-url": "https://packagist.org/downloads/",
  3990. "license": [
  3991. "MIT"
  3992. ],
  3993. "authors": [
  3994. {
  3995. "name": "PHP-FIG",
  3996. "homepage": "http://www.php-fig.org/"
  3997. }
  3998. ],
  3999. "description": "Common interfaces for PSR-7 HTTP message factories",
  4000. "keywords": [
  4001. "factory",
  4002. "http",
  4003. "message",
  4004. "psr",
  4005. "psr-17",
  4006. "psr-7",
  4007. "request",
  4008. "response"
  4009. ],
  4010. "support": {
  4011. "source": "https://github.com/php-fig/http-factory/tree/master"
  4012. },
  4013. "time": "2019-04-30T12:38:16+00:00"
  4014. },
  4015. {
  4016. "name": "psr/http-message",
  4017. "version": "1.0.1",
  4018. "source": {
  4019. "type": "git",
  4020. "url": "https://github.com/php-fig/http-message.git",
  4021. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  4022. },
  4023. "dist": {
  4024. "type": "zip",
  4025. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  4026. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  4027. "shasum": ""
  4028. },
  4029. "require": {
  4030. "php": ">=5.3.0"
  4031. },
  4032. "type": "library",
  4033. "extra": {
  4034. "branch-alias": {
  4035. "dev-master": "1.0.x-dev"
  4036. }
  4037. },
  4038. "autoload": {
  4039. "psr-4": {
  4040. "Psr\\Http\\Message\\": "src/"
  4041. }
  4042. },
  4043. "notification-url": "https://packagist.org/downloads/",
  4044. "license": [
  4045. "MIT"
  4046. ],
  4047. "authors": [
  4048. {
  4049. "name": "PHP-FIG",
  4050. "homepage": "http://www.php-fig.org/"
  4051. }
  4052. ],
  4053. "description": "Common interface for HTTP messages",
  4054. "homepage": "https://github.com/php-fig/http-message",
  4055. "keywords": [
  4056. "http",
  4057. "http-message",
  4058. "psr",
  4059. "psr-7",
  4060. "request",
  4061. "response"
  4062. ],
  4063. "support": {
  4064. "source": "https://github.com/php-fig/http-message/tree/master"
  4065. },
  4066. "time": "2016-08-06T14:39:51+00:00"
  4067. },
  4068. {
  4069. "name": "psr/log",
  4070. "version": "1.1.4",
  4071. "source": {
  4072. "type": "git",
  4073. "url": "https://github.com/php-fig/log.git",
  4074. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  4075. },
  4076. "dist": {
  4077. "type": "zip",
  4078. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  4079. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  4080. "shasum": ""
  4081. },
  4082. "require": {
  4083. "php": ">=5.3.0"
  4084. },
  4085. "type": "library",
  4086. "extra": {
  4087. "branch-alias": {
  4088. "dev-master": "1.1.x-dev"
  4089. }
  4090. },
  4091. "autoload": {
  4092. "psr-4": {
  4093. "Psr\\Log\\": "Psr/Log/"
  4094. }
  4095. },
  4096. "notification-url": "https://packagist.org/downloads/",
  4097. "license": [
  4098. "MIT"
  4099. ],
  4100. "authors": [
  4101. {
  4102. "name": "PHP-FIG",
  4103. "homepage": "https://www.php-fig.org/"
  4104. }
  4105. ],
  4106. "description": "Common interface for logging libraries",
  4107. "homepage": "https://github.com/php-fig/log",
  4108. "keywords": [
  4109. "log",
  4110. "psr",
  4111. "psr-3"
  4112. ],
  4113. "support": {
  4114. "source": "https://github.com/php-fig/log/tree/1.1.4"
  4115. },
  4116. "time": "2021-05-03T11:20:27+00:00"
  4117. },
  4118. {
  4119. "name": "psr/simple-cache",
  4120. "version": "1.0.1",
  4121. "source": {
  4122. "type": "git",
  4123. "url": "https://github.com/php-fig/simple-cache.git",
  4124. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  4125. },
  4126. "dist": {
  4127. "type": "zip",
  4128. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4129. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4130. "shasum": ""
  4131. },
  4132. "require": {
  4133. "php": ">=5.3.0"
  4134. },
  4135. "type": "library",
  4136. "extra": {
  4137. "branch-alias": {
  4138. "dev-master": "1.0.x-dev"
  4139. }
  4140. },
  4141. "autoload": {
  4142. "psr-4": {
  4143. "Psr\\SimpleCache\\": "src/"
  4144. }
  4145. },
  4146. "notification-url": "https://packagist.org/downloads/",
  4147. "license": [
  4148. "MIT"
  4149. ],
  4150. "authors": [
  4151. {
  4152. "name": "PHP-FIG",
  4153. "homepage": "http://www.php-fig.org/"
  4154. }
  4155. ],
  4156. "description": "Common interfaces for simple caching",
  4157. "keywords": [
  4158. "cache",
  4159. "caching",
  4160. "psr",
  4161. "psr-16",
  4162. "simple-cache"
  4163. ],
  4164. "support": {
  4165. "source": "https://github.com/php-fig/simple-cache/tree/master"
  4166. },
  4167. "time": "2017-10-23T01:57:42+00:00"
  4168. },
  4169. {
  4170. "name": "psy/psysh",
  4171. "version": "v0.10.8",
  4172. "source": {
  4173. "type": "git",
  4174. "url": "https://github.com/bobthecow/psysh.git",
  4175. "reference": "e4573f47750dd6c92dca5aee543fa77513cbd8d3"
  4176. },
  4177. "dist": {
  4178. "type": "zip",
  4179. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/e4573f47750dd6c92dca5aee543fa77513cbd8d3",
  4180. "reference": "e4573f47750dd6c92dca5aee543fa77513cbd8d3",
  4181. "shasum": ""
  4182. },
  4183. "require": {
  4184. "ext-json": "*",
  4185. "ext-tokenizer": "*",
  4186. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  4187. "php": "^8.0 || ^7.0 || ^5.5.9",
  4188. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  4189. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  4190. },
  4191. "require-dev": {
  4192. "bamarni/composer-bin-plugin": "^1.2",
  4193. "hoa/console": "3.17.*"
  4194. },
  4195. "suggest": {
  4196. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4197. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4198. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  4199. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  4200. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  4201. },
  4202. "bin": [
  4203. "bin/psysh"
  4204. ],
  4205. "type": "library",
  4206. "extra": {
  4207. "branch-alias": {
  4208. "dev-main": "0.10.x-dev"
  4209. }
  4210. },
  4211. "autoload": {
  4212. "files": [
  4213. "src/functions.php"
  4214. ],
  4215. "psr-4": {
  4216. "Psy\\": "src/"
  4217. }
  4218. },
  4219. "notification-url": "https://packagist.org/downloads/",
  4220. "license": [
  4221. "MIT"
  4222. ],
  4223. "authors": [
  4224. {
  4225. "name": "Justin Hileman",
  4226. "email": "[email protected]",
  4227. "homepage": "http://justinhileman.com"
  4228. }
  4229. ],
  4230. "description": "An interactive shell for modern PHP.",
  4231. "homepage": "http://psysh.org",
  4232. "keywords": [
  4233. "REPL",
  4234. "console",
  4235. "interactive",
  4236. "shell"
  4237. ],
  4238. "support": {
  4239. "issues": "https://github.com/bobthecow/psysh/issues",
  4240. "source": "https://github.com/bobthecow/psysh/tree/v0.10.8"
  4241. },
  4242. "time": "2021-04-10T16:23:39+00:00"
  4243. },
  4244. {
  4245. "name": "ralouphie/getallheaders",
  4246. "version": "3.0.3",
  4247. "source": {
  4248. "type": "git",
  4249. "url": "https://github.com/ralouphie/getallheaders.git",
  4250. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4251. },
  4252. "dist": {
  4253. "type": "zip",
  4254. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4255. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4256. "shasum": ""
  4257. },
  4258. "require": {
  4259. "php": ">=5.6"
  4260. },
  4261. "require-dev": {
  4262. "php-coveralls/php-coveralls": "^2.1",
  4263. "phpunit/phpunit": "^5 || ^6.5"
  4264. },
  4265. "type": "library",
  4266. "autoload": {
  4267. "files": [
  4268. "src/getallheaders.php"
  4269. ]
  4270. },
  4271. "notification-url": "https://packagist.org/downloads/",
  4272. "license": [
  4273. "MIT"
  4274. ],
  4275. "authors": [
  4276. {
  4277. "name": "Ralph Khattar",
  4278. "email": "[email protected]"
  4279. }
  4280. ],
  4281. "description": "A polyfill for getallheaders.",
  4282. "support": {
  4283. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4284. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4285. },
  4286. "time": "2019-03-08T08:55:37+00:00"
  4287. },
  4288. {
  4289. "name": "ramsey/collection",
  4290. "version": "1.1.3",
  4291. "source": {
  4292. "type": "git",
  4293. "url": "https://github.com/ramsey/collection.git",
  4294. "reference": "28a5c4ab2f5111db6a60b2b4ec84057e0f43b9c1"
  4295. },
  4296. "dist": {
  4297. "type": "zip",
  4298. "url": "https://api.github.com/repos/ramsey/collection/zipball/28a5c4ab2f5111db6a60b2b4ec84057e0f43b9c1",
  4299. "reference": "28a5c4ab2f5111db6a60b2b4ec84057e0f43b9c1",
  4300. "shasum": ""
  4301. },
  4302. "require": {
  4303. "php": "^7.2 || ^8"
  4304. },
  4305. "require-dev": {
  4306. "captainhook/captainhook": "^5.3",
  4307. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4308. "ergebnis/composer-normalize": "^2.6",
  4309. "fakerphp/faker": "^1.5",
  4310. "hamcrest/hamcrest-php": "^2",
  4311. "jangregor/phpstan-prophecy": "^0.8",
  4312. "mockery/mockery": "^1.3",
  4313. "phpstan/extension-installer": "^1",
  4314. "phpstan/phpstan": "^0.12.32",
  4315. "phpstan/phpstan-mockery": "^0.12.5",
  4316. "phpstan/phpstan-phpunit": "^0.12.11",
  4317. "phpunit/phpunit": "^8.5 || ^9",
  4318. "psy/psysh": "^0.10.4",
  4319. "slevomat/coding-standard": "^6.3",
  4320. "squizlabs/php_codesniffer": "^3.5",
  4321. "vimeo/psalm": "^4.4"
  4322. },
  4323. "type": "library",
  4324. "autoload": {
  4325. "psr-4": {
  4326. "Ramsey\\Collection\\": "src/"
  4327. }
  4328. },
  4329. "notification-url": "https://packagist.org/downloads/",
  4330. "license": [
  4331. "MIT"
  4332. ],
  4333. "authors": [
  4334. {
  4335. "name": "Ben Ramsey",
  4336. "email": "[email protected]",
  4337. "homepage": "https://benramsey.com"
  4338. }
  4339. ],
  4340. "description": "A PHP 7.2+ library for representing and manipulating collections.",
  4341. "keywords": [
  4342. "array",
  4343. "collection",
  4344. "hash",
  4345. "map",
  4346. "queue",
  4347. "set"
  4348. ],
  4349. "support": {
  4350. "issues": "https://github.com/ramsey/collection/issues",
  4351. "source": "https://github.com/ramsey/collection/tree/1.1.3"
  4352. },
  4353. "funding": [
  4354. {
  4355. "url": "https://github.com/ramsey",
  4356. "type": "github"
  4357. },
  4358. {
  4359. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4360. "type": "tidelift"
  4361. }
  4362. ],
  4363. "time": "2021-01-21T17:40:04+00:00"
  4364. },
  4365. {
  4366. "name": "ramsey/uuid",
  4367. "version": "4.1.1",
  4368. "source": {
  4369. "type": "git",
  4370. "url": "https://github.com/ramsey/uuid.git",
  4371. "reference": "cd4032040a750077205918c86049aa0f43d22947"
  4372. },
  4373. "dist": {
  4374. "type": "zip",
  4375. "url": "https://api.github.com/repos/ramsey/uuid/zipball/cd4032040a750077205918c86049aa0f43d22947",
  4376. "reference": "cd4032040a750077205918c86049aa0f43d22947",
  4377. "shasum": ""
  4378. },
  4379. "require": {
  4380. "brick/math": "^0.8 || ^0.9",
  4381. "ext-json": "*",
  4382. "php": "^7.2 || ^8",
  4383. "ramsey/collection": "^1.0",
  4384. "symfony/polyfill-ctype": "^1.8"
  4385. },
  4386. "replace": {
  4387. "rhumsaa/uuid": "self.version"
  4388. },
  4389. "require-dev": {
  4390. "codeception/aspect-mock": "^3",
  4391. "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7.0",
  4392. "doctrine/annotations": "^1.8",
  4393. "goaop/framework": "^2",
  4394. "mockery/mockery": "^1.3",
  4395. "moontoast/math": "^1.1",
  4396. "paragonie/random-lib": "^2",
  4397. "php-mock/php-mock-mockery": "^1.3",
  4398. "php-mock/php-mock-phpunit": "^2.5",
  4399. "php-parallel-lint/php-parallel-lint": "^1.1",
  4400. "phpbench/phpbench": "^0.17.1",
  4401. "phpstan/extension-installer": "^1.0",
  4402. "phpstan/phpstan": "^0.12",
  4403. "phpstan/phpstan-mockery": "^0.12",
  4404. "phpstan/phpstan-phpunit": "^0.12",
  4405. "phpunit/phpunit": "^8.5",
  4406. "psy/psysh": "^0.10.0",
  4407. "slevomat/coding-standard": "^6.0",
  4408. "squizlabs/php_codesniffer": "^3.5",
  4409. "vimeo/psalm": "3.9.4"
  4410. },
  4411. "suggest": {
  4412. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4413. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  4414. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4415. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4416. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4417. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4418. },
  4419. "type": "library",
  4420. "extra": {
  4421. "branch-alias": {
  4422. "dev-master": "4.x-dev"
  4423. }
  4424. },
  4425. "autoload": {
  4426. "psr-4": {
  4427. "Ramsey\\Uuid\\": "src/"
  4428. },
  4429. "files": [
  4430. "src/functions.php"
  4431. ]
  4432. },
  4433. "notification-url": "https://packagist.org/downloads/",
  4434. "license": [
  4435. "MIT"
  4436. ],
  4437. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4438. "homepage": "https://github.com/ramsey/uuid",
  4439. "keywords": [
  4440. "guid",
  4441. "identifier",
  4442. "uuid"
  4443. ],
  4444. "support": {
  4445. "issues": "https://github.com/ramsey/uuid/issues",
  4446. "rss": "https://github.com/ramsey/uuid/releases.atom",
  4447. "source": "https://github.com/ramsey/uuid"
  4448. },
  4449. "funding": [
  4450. {
  4451. "url": "https://github.com/ramsey",
  4452. "type": "github"
  4453. }
  4454. ],
  4455. "time": "2020-08-18T17:17:46+00:00"
  4456. },
  4457. {
  4458. "name": "rap2hpoutre/laravel-log-viewer",
  4459. "version": "v1.7.0",
  4460. "source": {
  4461. "type": "git",
  4462. "url": "https://github.com/rap2hpoutre/laravel-log-viewer.git",
  4463. "reference": "27392d29234b6ff38a456454558f4bcc40cc837a"
  4464. },
  4465. "dist": {
  4466. "type": "zip",
  4467. "url": "https://api.github.com/repos/rap2hpoutre/laravel-log-viewer/zipball/27392d29234b6ff38a456454558f4bcc40cc837a",
  4468. "reference": "27392d29234b6ff38a456454558f4bcc40cc837a",
  4469. "shasum": ""
  4470. },
  4471. "require": {
  4472. "illuminate/support": "4.2.*|5.*|^6.0|^7.0|^8.0",
  4473. "php": ">=5.4.0"
  4474. },
  4475. "require-dev": {
  4476. "orchestra/testbench": "3.7.*",
  4477. "phpunit/phpunit": "^7"
  4478. },
  4479. "type": "laravel-package",
  4480. "extra": {
  4481. "laravel": {
  4482. "providers": [
  4483. "Rap2hpoutre\\LaravelLogViewer\\LaravelLogViewerServiceProvider"
  4484. ]
  4485. }
  4486. },
  4487. "autoload": {
  4488. "classmap": [
  4489. "src/controllers"
  4490. ],
  4491. "psr-0": {
  4492. "Rap2hpoutre\\LaravelLogViewer\\": "src/"
  4493. }
  4494. },
  4495. "notification-url": "https://packagist.org/downloads/",
  4496. "license": [
  4497. "MIT"
  4498. ],
  4499. "authors": [
  4500. {
  4501. "name": "rap2hpoutre",
  4502. "email": "[email protected]"
  4503. }
  4504. ],
  4505. "description": "A Laravel log reader",
  4506. "keywords": [
  4507. "laravel",
  4508. "log",
  4509. "log-reader",
  4510. "log-viewer",
  4511. "logging",
  4512. "lumen"
  4513. ],
  4514. "support": {
  4515. "issues": "https://github.com/rap2hpoutre/laravel-log-viewer/issues",
  4516. "source": "https://github.com/rap2hpoutre/laravel-log-viewer/tree/master"
  4517. },
  4518. "time": "2020-09-08T12:21:27+00:00"
  4519. },
  4520. {
  4521. "name": "riverslei/payment",
  4522. "version": "v5.1.0",
  4523. "source": {
  4524. "type": "git",
  4525. "url": "https://github.com/helei112g/payment.git",
  4526. "reference": "77f671b68b0285a6af77dc7c5afa36eabcae35aa"
  4527. },
  4528. "dist": {
  4529. "type": "zip",
  4530. "url": "https://api.github.com/repos/helei112g/payment/zipball/77f671b68b0285a6af77dc7c5afa36eabcae35aa",
  4531. "reference": "77f671b68b0285a6af77dc7c5afa36eabcae35aa",
  4532. "shasum": ""
  4533. },
  4534. "require": {
  4535. "ext-bcmath": "*",
  4536. "ext-json": "*",
  4537. "ext-mbstring": "*",
  4538. "ext-openssl": "*",
  4539. "ext-simplexml": "*",
  4540. "ext-xml": "*",
  4541. "guzzlehttp/guzzle": "~6.0",
  4542. "php": ">=7.0"
  4543. },
  4544. "require-dev": {
  4545. "codeception/codeception": "*"
  4546. },
  4547. "type": "library",
  4548. "autoload": {
  4549. "psr-4": {
  4550. "Payment\\": "src/"
  4551. }
  4552. },
  4553. "notification-url": "https://packagist.org/downloads/",
  4554. "license": [
  4555. "MIT"
  4556. ],
  4557. "authors": [
  4558. {
  4559. "name": "Leo",
  4560. "email": "[email protected]",
  4561. "homepage": "https://dayutalk.cn"
  4562. }
  4563. ],
  4564. "description": "支付宝支付、微信支付、招商一网通支付php SDK。方便快速接入,最完整的开源支付 php sdk",
  4565. "homepage": "http://helei112g.github.io/payment",
  4566. "keywords": [
  4567. "alipay",
  4568. "weixin",
  4569. "一网通",
  4570. "微信支付",
  4571. "招商一网通",
  4572. "支付宝支付",
  4573. "集成支付接口SDK"
  4574. ],
  4575. "support": {
  4576. "issues": "https://github.com/helei112g/payment/issues",
  4577. "source": "https://github.com/helei112g/payment/tree/v5.x"
  4578. },
  4579. "time": "2020-05-04T03:07:17+00:00"
  4580. },
  4581. {
  4582. "name": "spatie/laravel-permission",
  4583. "version": "4.2.0",
  4584. "source": {
  4585. "type": "git",
  4586. "url": "https://github.com/spatie/laravel-permission.git",
  4587. "reference": "a6e4122b65094baba7f98df153af0768ef910c85"
  4588. },
  4589. "dist": {
  4590. "type": "zip",
  4591. "url": "https://api.github.com/repos/spatie/laravel-permission/zipball/a6e4122b65094baba7f98df153af0768ef910c85",
  4592. "reference": "a6e4122b65094baba7f98df153af0768ef910c85",
  4593. "shasum": ""
  4594. },
  4595. "require": {
  4596. "illuminate/auth": "^6.0|^7.0|^8.0",
  4597. "illuminate/container": "^6.0|^7.0|^8.0",
  4598. "illuminate/contracts": "^6.0|^7.0|^8.0",
  4599. "illuminate/database": "^6.0|^7.0|^8.0",
  4600. "php": "^7.2.5|^8.0"
  4601. },
  4602. "require-dev": {
  4603. "orchestra/testbench": "^4.0|^5.0|^6.0",
  4604. "phpunit/phpunit": "^8.0|^9.0",
  4605. "predis/predis": "^1.1"
  4606. },
  4607. "type": "library",
  4608. "extra": {
  4609. "laravel": {
  4610. "providers": [
  4611. "Spatie\\Permission\\PermissionServiceProvider"
  4612. ]
  4613. }
  4614. },
  4615. "autoload": {
  4616. "psr-4": {
  4617. "Spatie\\Permission\\": "src"
  4618. },
  4619. "files": [
  4620. "src/helpers.php"
  4621. ]
  4622. },
  4623. "notification-url": "https://packagist.org/downloads/",
  4624. "license": [
  4625. "MIT"
  4626. ],
  4627. "authors": [
  4628. {
  4629. "name": "Freek Van der Herten",
  4630. "email": "[email protected]",
  4631. "homepage": "https://spatie.be",
  4632. "role": "Developer"
  4633. }
  4634. ],
  4635. "description": "Permission handling for Laravel 6.0 and up",
  4636. "homepage": "https://github.com/spatie/laravel-permission",
  4637. "keywords": [
  4638. "acl",
  4639. "laravel",
  4640. "permission",
  4641. "permissions",
  4642. "rbac",
  4643. "roles",
  4644. "security",
  4645. "spatie"
  4646. ],
  4647. "support": {
  4648. "issues": "https://github.com/spatie/laravel-permission/issues",
  4649. "source": "https://github.com/spatie/laravel-permission/tree/4.2.0"
  4650. },
  4651. "funding": [
  4652. {
  4653. "url": "https://github.com/spatie",
  4654. "type": "github"
  4655. }
  4656. ],
  4657. "time": "2021-06-04T23:47:08+00:00"
  4658. },
  4659. {
  4660. "name": "srmklive/paypal",
  4661. "version": "1.8.0",
  4662. "source": {
  4663. "type": "git",
  4664. "url": "https://github.com/srmklive/laravel-paypal.git",
  4665. "reference": "0c2ae237577f62396d474674cb40f82825a41ffb"
  4666. },
  4667. "dist": {
  4668. "type": "zip",
  4669. "url": "https://api.github.com/repos/srmklive/laravel-paypal/zipball/0c2ae237577f62396d474674cb40f82825a41ffb",
  4670. "reference": "0c2ae237577f62396d474674cb40f82825a41ffb",
  4671. "shasum": ""
  4672. },
  4673. "require": {
  4674. "guzzlehttp/guzzle": "~6.0|~7.0",
  4675. "illuminate/support": "~5.1|~5.2|~5.3|~5.4|~5.5|~5.6|~5.7|~5.8|~6.0|~7.0|~8.0",
  4676. "nesbot/carbon": "~1.0|~2.0"
  4677. },
  4678. "type": "library",
  4679. "extra": {
  4680. "laravel": {
  4681. "providers": [
  4682. "Srmklive\\PayPal\\Providers\\PayPalServiceProvider"
  4683. ],
  4684. "aliases": {
  4685. "PayPal": "Srmklive\\PayPal\\Facades\\PayPal"
  4686. }
  4687. }
  4688. },
  4689. "autoload": {
  4690. "psr-4": {
  4691. "Srmklive\\PayPal\\": "src/"
  4692. }
  4693. },
  4694. "notification-url": "https://packagist.org/downloads/",
  4695. "license": [
  4696. "MIT"
  4697. ],
  4698. "authors": [
  4699. {
  4700. "name": "Raza Mehdi",
  4701. "email": "[email protected]"
  4702. }
  4703. ],
  4704. "description": "Laravel plugin For Processing Payments Through Paypal Express Checkout. Can Be Used Independently With Other Applications.",
  4705. "keywords": [
  4706. "http",
  4707. "laravel paypal",
  4708. "paypal",
  4709. "rest",
  4710. "web service"
  4711. ],
  4712. "support": {
  4713. "issues": "https://github.com/srmklive/laravel-paypal/issues",
  4714. "source": "https://github.com/srmklive/laravel-paypal/tree/v1.0"
  4715. },
  4716. "time": "2020-09-03T07:50:08+00:00"
  4717. },
  4718. {
  4719. "name": "stripe/stripe-php",
  4720. "version": "v7.82.0",
  4721. "source": {
  4722. "type": "git",
  4723. "url": "https://github.com/stripe/stripe-php.git",
  4724. "reference": "218f5296923265fab4692a7f8a083ff2e7e35a21"
  4725. },
  4726. "dist": {
  4727. "type": "zip",
  4728. "url": "https://api.github.com/repos/stripe/stripe-php/zipball/218f5296923265fab4692a7f8a083ff2e7e35a21",
  4729. "reference": "218f5296923265fab4692a7f8a083ff2e7e35a21",
  4730. "shasum": ""
  4731. },
  4732. "require": {
  4733. "ext-curl": "*",
  4734. "ext-json": "*",
  4735. "ext-mbstring": "*",
  4736. "php": ">=5.6.0"
  4737. },
  4738. "require-dev": {
  4739. "friendsofphp/php-cs-fixer": "2.17.1",
  4740. "php-coveralls/php-coveralls": "^2.1",
  4741. "phpunit/phpunit": "^5.7",
  4742. "squizlabs/php_codesniffer": "^3.3",
  4743. "symfony/process": "~3.4"
  4744. },
  4745. "type": "library",
  4746. "extra": {
  4747. "branch-alias": {
  4748. "dev-master": "2.0-dev"
  4749. }
  4750. },
  4751. "autoload": {
  4752. "psr-4": {
  4753. "Stripe\\": "lib/"
  4754. }
  4755. },
  4756. "notification-url": "https://packagist.org/downloads/",
  4757. "license": [
  4758. "MIT"
  4759. ],
  4760. "authors": [
  4761. {
  4762. "name": "Stripe and contributors",
  4763. "homepage": "https://github.com/stripe/stripe-php/contributors"
  4764. }
  4765. ],
  4766. "description": "Stripe PHP Library",
  4767. "homepage": "https://stripe.com/",
  4768. "keywords": [
  4769. "api",
  4770. "payment processing",
  4771. "stripe"
  4772. ],
  4773. "support": {
  4774. "issues": "https://github.com/stripe/stripe-php/issues",
  4775. "source": "https://github.com/stripe/stripe-php/tree/v7.82.0"
  4776. },
  4777. "time": "2021-06-04T23:26:37+00:00"
  4778. },
  4779. {
  4780. "name": "swiftmailer/swiftmailer",
  4781. "version": "v6.2.7",
  4782. "source": {
  4783. "type": "git",
  4784. "url": "https://github.com/swiftmailer/swiftmailer.git",
  4785. "reference": "15f7faf8508e04471f666633addacf54c0ab5933"
  4786. },
  4787. "dist": {
  4788. "type": "zip",
  4789. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/15f7faf8508e04471f666633addacf54c0ab5933",
  4790. "reference": "15f7faf8508e04471f666633addacf54c0ab5933",
  4791. "shasum": ""
  4792. },
  4793. "require": {
  4794. "egulias/email-validator": "^2.0|^3.1",
  4795. "php": ">=7.0.0",
  4796. "symfony/polyfill-iconv": "^1.0",
  4797. "symfony/polyfill-intl-idn": "^1.10",
  4798. "symfony/polyfill-mbstring": "^1.0"
  4799. },
  4800. "require-dev": {
  4801. "mockery/mockery": "^1.0",
  4802. "symfony/phpunit-bridge": "^4.4|^5.0"
  4803. },
  4804. "suggest": {
  4805. "ext-intl": "Needed to support internationalized email addresses"
  4806. },
  4807. "type": "library",
  4808. "extra": {
  4809. "branch-alias": {
  4810. "dev-master": "6.2-dev"
  4811. }
  4812. },
  4813. "autoload": {
  4814. "files": [
  4815. "lib/swift_required.php"
  4816. ]
  4817. },
  4818. "notification-url": "https://packagist.org/downloads/",
  4819. "license": [
  4820. "MIT"
  4821. ],
  4822. "authors": [
  4823. {
  4824. "name": "Chris Corbyn"
  4825. },
  4826. {
  4827. "name": "Fabien Potencier",
  4828. "email": "[email protected]"
  4829. }
  4830. ],
  4831. "description": "Swiftmailer, free feature-rich PHP mailer",
  4832. "homepage": "https://swiftmailer.symfony.com",
  4833. "keywords": [
  4834. "email",
  4835. "mail",
  4836. "mailer"
  4837. ],
  4838. "support": {
  4839. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  4840. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.2.7"
  4841. },
  4842. "funding": [
  4843. {
  4844. "url": "https://github.com/fabpot",
  4845. "type": "github"
  4846. },
  4847. {
  4848. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  4849. "type": "tidelift"
  4850. }
  4851. ],
  4852. "time": "2021-03-09T12:30:35+00:00"
  4853. },
  4854. {
  4855. "name": "symfony/console",
  4856. "version": "v5.3.0",
  4857. "source": {
  4858. "type": "git",
  4859. "url": "https://github.com/symfony/console.git",
  4860. "reference": "058553870f7809087fa80fa734704a21b9bcaeb2"
  4861. },
  4862. "dist": {
  4863. "type": "zip",
  4864. "url": "https://api.github.com/repos/symfony/console/zipball/058553870f7809087fa80fa734704a21b9bcaeb2",
  4865. "reference": "058553870f7809087fa80fa734704a21b9bcaeb2",
  4866. "shasum": ""
  4867. },
  4868. "require": {
  4869. "php": ">=7.2.5",
  4870. "symfony/deprecation-contracts": "^2.1",
  4871. "symfony/polyfill-mbstring": "~1.0",
  4872. "symfony/polyfill-php73": "^1.8",
  4873. "symfony/polyfill-php80": "^1.15",
  4874. "symfony/service-contracts": "^1.1|^2",
  4875. "symfony/string": "^5.1"
  4876. },
  4877. "conflict": {
  4878. "symfony/dependency-injection": "<4.4",
  4879. "symfony/dotenv": "<5.1",
  4880. "symfony/event-dispatcher": "<4.4",
  4881. "symfony/lock": "<4.4",
  4882. "symfony/process": "<4.4"
  4883. },
  4884. "provide": {
  4885. "psr/log-implementation": "1.0"
  4886. },
  4887. "require-dev": {
  4888. "psr/log": "~1.0",
  4889. "symfony/config": "^4.4|^5.0",
  4890. "symfony/dependency-injection": "^4.4|^5.0",
  4891. "symfony/event-dispatcher": "^4.4|^5.0",
  4892. "symfony/lock": "^4.4|^5.0",
  4893. "symfony/process": "^4.4|^5.0",
  4894. "symfony/var-dumper": "^4.4|^5.0"
  4895. },
  4896. "suggest": {
  4897. "psr/log": "For using the console logger",
  4898. "symfony/event-dispatcher": "",
  4899. "symfony/lock": "",
  4900. "symfony/process": ""
  4901. },
  4902. "type": "library",
  4903. "autoload": {
  4904. "psr-4": {
  4905. "Symfony\\Component\\Console\\": ""
  4906. },
  4907. "exclude-from-classmap": [
  4908. "/Tests/"
  4909. ]
  4910. },
  4911. "notification-url": "https://packagist.org/downloads/",
  4912. "license": [
  4913. "MIT"
  4914. ],
  4915. "authors": [
  4916. {
  4917. "name": "Fabien Potencier",
  4918. "email": "[email protected]"
  4919. },
  4920. {
  4921. "name": "Symfony Community",
  4922. "homepage": "https://symfony.com/contributors"
  4923. }
  4924. ],
  4925. "description": "Eases the creation of beautiful and testable command line interfaces",
  4926. "homepage": "https://symfony.com",
  4927. "keywords": [
  4928. "cli",
  4929. "command line",
  4930. "console",
  4931. "terminal"
  4932. ],
  4933. "support": {
  4934. "source": "https://github.com/symfony/console/tree/v5.3.0"
  4935. },
  4936. "funding": [
  4937. {
  4938. "url": "https://symfony.com/sponsor",
  4939. "type": "custom"
  4940. },
  4941. {
  4942. "url": "https://github.com/fabpot",
  4943. "type": "github"
  4944. },
  4945. {
  4946. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4947. "type": "tidelift"
  4948. }
  4949. ],
  4950. "time": "2021-05-26T17:43:10+00:00"
  4951. },
  4952. {
  4953. "name": "symfony/css-selector",
  4954. "version": "v5.3.0",
  4955. "source": {
  4956. "type": "git",
  4957. "url": "https://github.com/symfony/css-selector.git",
  4958. "reference": "fcd0b29a7a0b1bb5bfbedc6231583d77fea04814"
  4959. },
  4960. "dist": {
  4961. "type": "zip",
  4962. "url": "https://api.github.com/repos/symfony/css-selector/zipball/fcd0b29a7a0b1bb5bfbedc6231583d77fea04814",
  4963. "reference": "fcd0b29a7a0b1bb5bfbedc6231583d77fea04814",
  4964. "shasum": ""
  4965. },
  4966. "require": {
  4967. "php": ">=7.2.5"
  4968. },
  4969. "type": "library",
  4970. "autoload": {
  4971. "psr-4": {
  4972. "Symfony\\Component\\CssSelector\\": ""
  4973. },
  4974. "exclude-from-classmap": [
  4975. "/Tests/"
  4976. ]
  4977. },
  4978. "notification-url": "https://packagist.org/downloads/",
  4979. "license": [
  4980. "MIT"
  4981. ],
  4982. "authors": [
  4983. {
  4984. "name": "Fabien Potencier",
  4985. "email": "[email protected]"
  4986. },
  4987. {
  4988. "name": "Jean-François Simon",
  4989. "email": "[email protected]"
  4990. },
  4991. {
  4992. "name": "Symfony Community",
  4993. "homepage": "https://symfony.com/contributors"
  4994. }
  4995. ],
  4996. "description": "Converts CSS selectors to XPath expressions",
  4997. "homepage": "https://symfony.com",
  4998. "support": {
  4999. "source": "https://github.com/symfony/css-selector/tree/v5.3.0"
  5000. },
  5001. "funding": [
  5002. {
  5003. "url": "https://symfony.com/sponsor",
  5004. "type": "custom"
  5005. },
  5006. {
  5007. "url": "https://github.com/fabpot",
  5008. "type": "github"
  5009. },
  5010. {
  5011. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5012. "type": "tidelift"
  5013. }
  5014. ],
  5015. "time": "2021-05-26T17:40:38+00:00"
  5016. },
  5017. {
  5018. "name": "symfony/deprecation-contracts",
  5019. "version": "v2.4.0",
  5020. "source": {
  5021. "type": "git",
  5022. "url": "https://github.com/symfony/deprecation-contracts.git",
  5023. "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627"
  5024. },
  5025. "dist": {
  5026. "type": "zip",
  5027. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5f38c8804a9e97d23e0c8d63341088cd8a22d627",
  5028. "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627",
  5029. "shasum": ""
  5030. },
  5031. "require": {
  5032. "php": ">=7.1"
  5033. },
  5034. "type": "library",
  5035. "extra": {
  5036. "branch-alias": {
  5037. "dev-main": "2.4-dev"
  5038. },
  5039. "thanks": {
  5040. "name": "symfony/contracts",
  5041. "url": "https://github.com/symfony/contracts"
  5042. }
  5043. },
  5044. "autoload": {
  5045. "files": [
  5046. "function.php"
  5047. ]
  5048. },
  5049. "notification-url": "https://packagist.org/downloads/",
  5050. "license": [
  5051. "MIT"
  5052. ],
  5053. "authors": [
  5054. {
  5055. "name": "Nicolas Grekas",
  5056. "email": "[email protected]"
  5057. },
  5058. {
  5059. "name": "Symfony Community",
  5060. "homepage": "https://symfony.com/contributors"
  5061. }
  5062. ],
  5063. "description": "A generic function and convention to trigger deprecation notices",
  5064. "homepage": "https://symfony.com",
  5065. "support": {
  5066. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.4.0"
  5067. },
  5068. "funding": [
  5069. {
  5070. "url": "https://symfony.com/sponsor",
  5071. "type": "custom"
  5072. },
  5073. {
  5074. "url": "https://github.com/fabpot",
  5075. "type": "github"
  5076. },
  5077. {
  5078. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5079. "type": "tidelift"
  5080. }
  5081. ],
  5082. "time": "2021-03-23T23:28:01+00:00"
  5083. },
  5084. {
  5085. "name": "symfony/error-handler",
  5086. "version": "v5.3.0",
  5087. "source": {
  5088. "type": "git",
  5089. "url": "https://github.com/symfony/error-handler.git",
  5090. "reference": "0e6768b8c0dcef26df087df2bbbaa143867a59b2"
  5091. },
  5092. "dist": {
  5093. "type": "zip",
  5094. "url": "https://api.github.com/repos/symfony/error-handler/zipball/0e6768b8c0dcef26df087df2bbbaa143867a59b2",
  5095. "reference": "0e6768b8c0dcef26df087df2bbbaa143867a59b2",
  5096. "shasum": ""
  5097. },
  5098. "require": {
  5099. "php": ">=7.2.5",
  5100. "psr/log": "^1.0",
  5101. "symfony/polyfill-php80": "^1.15",
  5102. "symfony/var-dumper": "^4.4|^5.0"
  5103. },
  5104. "require-dev": {
  5105. "symfony/deprecation-contracts": "^2.1",
  5106. "symfony/http-kernel": "^4.4|^5.0",
  5107. "symfony/serializer": "^4.4|^5.0"
  5108. },
  5109. "type": "library",
  5110. "autoload": {
  5111. "psr-4": {
  5112. "Symfony\\Component\\ErrorHandler\\": ""
  5113. },
  5114. "exclude-from-classmap": [
  5115. "/Tests/"
  5116. ]
  5117. },
  5118. "notification-url": "https://packagist.org/downloads/",
  5119. "license": [
  5120. "MIT"
  5121. ],
  5122. "authors": [
  5123. {
  5124. "name": "Fabien Potencier",
  5125. "email": "[email protected]"
  5126. },
  5127. {
  5128. "name": "Symfony Community",
  5129. "homepage": "https://symfony.com/contributors"
  5130. }
  5131. ],
  5132. "description": "Provides tools to manage errors and ease debugging PHP code",
  5133. "homepage": "https://symfony.com",
  5134. "support": {
  5135. "source": "https://github.com/symfony/error-handler/tree/v5.3.0"
  5136. },
  5137. "funding": [
  5138. {
  5139. "url": "https://symfony.com/sponsor",
  5140. "type": "custom"
  5141. },
  5142. {
  5143. "url": "https://github.com/fabpot",
  5144. "type": "github"
  5145. },
  5146. {
  5147. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5148. "type": "tidelift"
  5149. }
  5150. ],
  5151. "time": "2021-05-26T17:43:10+00:00"
  5152. },
  5153. {
  5154. "name": "symfony/event-dispatcher",
  5155. "version": "v5.3.0",
  5156. "source": {
  5157. "type": "git",
  5158. "url": "https://github.com/symfony/event-dispatcher.git",
  5159. "reference": "67a5f354afa8e2f231081b3fa11a5912f933c3ce"
  5160. },
  5161. "dist": {
  5162. "type": "zip",
  5163. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/67a5f354afa8e2f231081b3fa11a5912f933c3ce",
  5164. "reference": "67a5f354afa8e2f231081b3fa11a5912f933c3ce",
  5165. "shasum": ""
  5166. },
  5167. "require": {
  5168. "php": ">=7.2.5",
  5169. "symfony/deprecation-contracts": "^2.1",
  5170. "symfony/event-dispatcher-contracts": "^2",
  5171. "symfony/polyfill-php80": "^1.15"
  5172. },
  5173. "conflict": {
  5174. "symfony/dependency-injection": "<4.4"
  5175. },
  5176. "provide": {
  5177. "psr/event-dispatcher-implementation": "1.0",
  5178. "symfony/event-dispatcher-implementation": "2.0"
  5179. },
  5180. "require-dev": {
  5181. "psr/log": "~1.0",
  5182. "symfony/config": "^4.4|^5.0",
  5183. "symfony/dependency-injection": "^4.4|^5.0",
  5184. "symfony/error-handler": "^4.4|^5.0",
  5185. "symfony/expression-language": "^4.4|^5.0",
  5186. "symfony/http-foundation": "^4.4|^5.0",
  5187. "symfony/service-contracts": "^1.1|^2",
  5188. "symfony/stopwatch": "^4.4|^5.0"
  5189. },
  5190. "suggest": {
  5191. "symfony/dependency-injection": "",
  5192. "symfony/http-kernel": ""
  5193. },
  5194. "type": "library",
  5195. "autoload": {
  5196. "psr-4": {
  5197. "Symfony\\Component\\EventDispatcher\\": ""
  5198. },
  5199. "exclude-from-classmap": [
  5200. "/Tests/"
  5201. ]
  5202. },
  5203. "notification-url": "https://packagist.org/downloads/",
  5204. "license": [
  5205. "MIT"
  5206. ],
  5207. "authors": [
  5208. {
  5209. "name": "Fabien Potencier",
  5210. "email": "[email protected]"
  5211. },
  5212. {
  5213. "name": "Symfony Community",
  5214. "homepage": "https://symfony.com/contributors"
  5215. }
  5216. ],
  5217. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5218. "homepage": "https://symfony.com",
  5219. "support": {
  5220. "source": "https://github.com/symfony/event-dispatcher/tree/v5.3.0"
  5221. },
  5222. "funding": [
  5223. {
  5224. "url": "https://symfony.com/sponsor",
  5225. "type": "custom"
  5226. },
  5227. {
  5228. "url": "https://github.com/fabpot",
  5229. "type": "github"
  5230. },
  5231. {
  5232. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5233. "type": "tidelift"
  5234. }
  5235. ],
  5236. "time": "2021-05-26T17:43:10+00:00"
  5237. },
  5238. {
  5239. "name": "symfony/event-dispatcher-contracts",
  5240. "version": "v2.4.0",
  5241. "source": {
  5242. "type": "git",
  5243. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5244. "reference": "69fee1ad2332a7cbab3aca13591953da9cdb7a11"
  5245. },
  5246. "dist": {
  5247. "type": "zip",
  5248. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/69fee1ad2332a7cbab3aca13591953da9cdb7a11",
  5249. "reference": "69fee1ad2332a7cbab3aca13591953da9cdb7a11",
  5250. "shasum": ""
  5251. },
  5252. "require": {
  5253. "php": ">=7.2.5",
  5254. "psr/event-dispatcher": "^1"
  5255. },
  5256. "suggest": {
  5257. "symfony/event-dispatcher-implementation": ""
  5258. },
  5259. "type": "library",
  5260. "extra": {
  5261. "branch-alias": {
  5262. "dev-main": "2.4-dev"
  5263. },
  5264. "thanks": {
  5265. "name": "symfony/contracts",
  5266. "url": "https://github.com/symfony/contracts"
  5267. }
  5268. },
  5269. "autoload": {
  5270. "psr-4": {
  5271. "Symfony\\Contracts\\EventDispatcher\\": ""
  5272. }
  5273. },
  5274. "notification-url": "https://packagist.org/downloads/",
  5275. "license": [
  5276. "MIT"
  5277. ],
  5278. "authors": [
  5279. {
  5280. "name": "Nicolas Grekas",
  5281. "email": "[email protected]"
  5282. },
  5283. {
  5284. "name": "Symfony Community",
  5285. "homepage": "https://symfony.com/contributors"
  5286. }
  5287. ],
  5288. "description": "Generic abstractions related to dispatching event",
  5289. "homepage": "https://symfony.com",
  5290. "keywords": [
  5291. "abstractions",
  5292. "contracts",
  5293. "decoupling",
  5294. "interfaces",
  5295. "interoperability",
  5296. "standards"
  5297. ],
  5298. "support": {
  5299. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.4.0"
  5300. },
  5301. "funding": [
  5302. {
  5303. "url": "https://symfony.com/sponsor",
  5304. "type": "custom"
  5305. },
  5306. {
  5307. "url": "https://github.com/fabpot",
  5308. "type": "github"
  5309. },
  5310. {
  5311. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5312. "type": "tidelift"
  5313. }
  5314. ],
  5315. "time": "2021-03-23T23:28:01+00:00"
  5316. },
  5317. {
  5318. "name": "symfony/finder",
  5319. "version": "v5.3.0",
  5320. "source": {
  5321. "type": "git",
  5322. "url": "https://github.com/symfony/finder.git",
  5323. "reference": "0ae3f047bed4edff6fd35b26a9a6bfdc92c953c6"
  5324. },
  5325. "dist": {
  5326. "type": "zip",
  5327. "url": "https://api.github.com/repos/symfony/finder/zipball/0ae3f047bed4edff6fd35b26a9a6bfdc92c953c6",
  5328. "reference": "0ae3f047bed4edff6fd35b26a9a6bfdc92c953c6",
  5329. "shasum": ""
  5330. },
  5331. "require": {
  5332. "php": ">=7.2.5"
  5333. },
  5334. "type": "library",
  5335. "autoload": {
  5336. "psr-4": {
  5337. "Symfony\\Component\\Finder\\": ""
  5338. },
  5339. "exclude-from-classmap": [
  5340. "/Tests/"
  5341. ]
  5342. },
  5343. "notification-url": "https://packagist.org/downloads/",
  5344. "license": [
  5345. "MIT"
  5346. ],
  5347. "authors": [
  5348. {
  5349. "name": "Fabien Potencier",
  5350. "email": "[email protected]"
  5351. },
  5352. {
  5353. "name": "Symfony Community",
  5354. "homepage": "https://symfony.com/contributors"
  5355. }
  5356. ],
  5357. "description": "Finds files and directories via an intuitive fluent interface",
  5358. "homepage": "https://symfony.com",
  5359. "support": {
  5360. "source": "https://github.com/symfony/finder/tree/v5.3.0"
  5361. },
  5362. "funding": [
  5363. {
  5364. "url": "https://symfony.com/sponsor",
  5365. "type": "custom"
  5366. },
  5367. {
  5368. "url": "https://github.com/fabpot",
  5369. "type": "github"
  5370. },
  5371. {
  5372. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5373. "type": "tidelift"
  5374. }
  5375. ],
  5376. "time": "2021-05-26T12:52:38+00:00"
  5377. },
  5378. {
  5379. "name": "symfony/http-client-contracts",
  5380. "version": "v2.4.0",
  5381. "source": {
  5382. "type": "git",
  5383. "url": "https://github.com/symfony/http-client-contracts.git",
  5384. "reference": "7e82f6084d7cae521a75ef2cb5c9457bbda785f4"
  5385. },
  5386. "dist": {
  5387. "type": "zip",
  5388. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/7e82f6084d7cae521a75ef2cb5c9457bbda785f4",
  5389. "reference": "7e82f6084d7cae521a75ef2cb5c9457bbda785f4",
  5390. "shasum": ""
  5391. },
  5392. "require": {
  5393. "php": ">=7.2.5"
  5394. },
  5395. "suggest": {
  5396. "symfony/http-client-implementation": ""
  5397. },
  5398. "type": "library",
  5399. "extra": {
  5400. "branch-alias": {
  5401. "dev-main": "2.4-dev"
  5402. },
  5403. "thanks": {
  5404. "name": "symfony/contracts",
  5405. "url": "https://github.com/symfony/contracts"
  5406. }
  5407. },
  5408. "autoload": {
  5409. "psr-4": {
  5410. "Symfony\\Contracts\\HttpClient\\": ""
  5411. }
  5412. },
  5413. "notification-url": "https://packagist.org/downloads/",
  5414. "license": [
  5415. "MIT"
  5416. ],
  5417. "authors": [
  5418. {
  5419. "name": "Nicolas Grekas",
  5420. "email": "[email protected]"
  5421. },
  5422. {
  5423. "name": "Symfony Community",
  5424. "homepage": "https://symfony.com/contributors"
  5425. }
  5426. ],
  5427. "description": "Generic abstractions related to HTTP clients",
  5428. "homepage": "https://symfony.com",
  5429. "keywords": [
  5430. "abstractions",
  5431. "contracts",
  5432. "decoupling",
  5433. "interfaces",
  5434. "interoperability",
  5435. "standards"
  5436. ],
  5437. "support": {
  5438. "source": "https://github.com/symfony/http-client-contracts/tree/v2.4.0"
  5439. },
  5440. "funding": [
  5441. {
  5442. "url": "https://symfony.com/sponsor",
  5443. "type": "custom"
  5444. },
  5445. {
  5446. "url": "https://github.com/fabpot",
  5447. "type": "github"
  5448. },
  5449. {
  5450. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5451. "type": "tidelift"
  5452. }
  5453. ],
  5454. "time": "2021-04-11T23:07:08+00:00"
  5455. },
  5456. {
  5457. "name": "symfony/http-foundation",
  5458. "version": "v5.3.1",
  5459. "source": {
  5460. "type": "git",
  5461. "url": "https://github.com/symfony/http-foundation.git",
  5462. "reference": "8827b90cf8806e467124ad476acd15216c2fceb6"
  5463. },
  5464. "dist": {
  5465. "type": "zip",
  5466. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/8827b90cf8806e467124ad476acd15216c2fceb6",
  5467. "reference": "8827b90cf8806e467124ad476acd15216c2fceb6",
  5468. "shasum": ""
  5469. },
  5470. "require": {
  5471. "php": ">=7.2.5",
  5472. "symfony/deprecation-contracts": "^2.1",
  5473. "symfony/polyfill-mbstring": "~1.1",
  5474. "symfony/polyfill-php80": "^1.15"
  5475. },
  5476. "require-dev": {
  5477. "predis/predis": "~1.0",
  5478. "symfony/cache": "^4.4|^5.0",
  5479. "symfony/expression-language": "^4.4|^5.0",
  5480. "symfony/mime": "^4.4|^5.0"
  5481. },
  5482. "suggest": {
  5483. "symfony/mime": "To use the file extension guesser"
  5484. },
  5485. "type": "library",
  5486. "autoload": {
  5487. "psr-4": {
  5488. "Symfony\\Component\\HttpFoundation\\": ""
  5489. },
  5490. "exclude-from-classmap": [
  5491. "/Tests/"
  5492. ]
  5493. },
  5494. "notification-url": "https://packagist.org/downloads/",
  5495. "license": [
  5496. "MIT"
  5497. ],
  5498. "authors": [
  5499. {
  5500. "name": "Fabien Potencier",
  5501. "email": "[email protected]"
  5502. },
  5503. {
  5504. "name": "Symfony Community",
  5505. "homepage": "https://symfony.com/contributors"
  5506. }
  5507. ],
  5508. "description": "Defines an object-oriented layer for the HTTP specification",
  5509. "homepage": "https://symfony.com",
  5510. "support": {
  5511. "source": "https://github.com/symfony/http-foundation/tree/v5.3.1"
  5512. },
  5513. "funding": [
  5514. {
  5515. "url": "https://symfony.com/sponsor",
  5516. "type": "custom"
  5517. },
  5518. {
  5519. "url": "https://github.com/fabpot",
  5520. "type": "github"
  5521. },
  5522. {
  5523. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5524. "type": "tidelift"
  5525. }
  5526. ],
  5527. "time": "2021-06-02T09:32:00+00:00"
  5528. },
  5529. {
  5530. "name": "symfony/http-kernel",
  5531. "version": "v5.3.1",
  5532. "source": {
  5533. "type": "git",
  5534. "url": "https://github.com/symfony/http-kernel.git",
  5535. "reference": "74eb022e3bac36b3d3a897951a98759f2b32b864"
  5536. },
  5537. "dist": {
  5538. "type": "zip",
  5539. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/74eb022e3bac36b3d3a897951a98759f2b32b864",
  5540. "reference": "74eb022e3bac36b3d3a897951a98759f2b32b864",
  5541. "shasum": ""
  5542. },
  5543. "require": {
  5544. "php": ">=7.2.5",
  5545. "psr/log": "~1.0",
  5546. "symfony/deprecation-contracts": "^2.1",
  5547. "symfony/error-handler": "^4.4|^5.0",
  5548. "symfony/event-dispatcher": "^5.0",
  5549. "symfony/http-client-contracts": "^1.1|^2",
  5550. "symfony/http-foundation": "^5.3",
  5551. "symfony/polyfill-ctype": "^1.8",
  5552. "symfony/polyfill-php73": "^1.9",
  5553. "symfony/polyfill-php80": "^1.15"
  5554. },
  5555. "conflict": {
  5556. "symfony/browser-kit": "<4.4",
  5557. "symfony/cache": "<5.0",
  5558. "symfony/config": "<5.0",
  5559. "symfony/console": "<4.4",
  5560. "symfony/dependency-injection": "<5.3",
  5561. "symfony/doctrine-bridge": "<5.0",
  5562. "symfony/form": "<5.0",
  5563. "symfony/http-client": "<5.0",
  5564. "symfony/mailer": "<5.0",
  5565. "symfony/messenger": "<5.0",
  5566. "symfony/translation": "<5.0",
  5567. "symfony/twig-bridge": "<5.0",
  5568. "symfony/validator": "<5.0",
  5569. "twig/twig": "<2.13"
  5570. },
  5571. "provide": {
  5572. "psr/log-implementation": "1.0"
  5573. },
  5574. "require-dev": {
  5575. "psr/cache": "^1.0|^2.0|^3.0",
  5576. "symfony/browser-kit": "^4.4|^5.0",
  5577. "symfony/config": "^5.0",
  5578. "symfony/console": "^4.4|^5.0",
  5579. "symfony/css-selector": "^4.4|^5.0",
  5580. "symfony/dependency-injection": "^5.3",
  5581. "symfony/dom-crawler": "^4.4|^5.0",
  5582. "symfony/expression-language": "^4.4|^5.0",
  5583. "symfony/finder": "^4.4|^5.0",
  5584. "symfony/process": "^4.4|^5.0",
  5585. "symfony/routing": "^4.4|^5.0",
  5586. "symfony/stopwatch": "^4.4|^5.0",
  5587. "symfony/translation": "^4.4|^5.0",
  5588. "symfony/translation-contracts": "^1.1|^2",
  5589. "twig/twig": "^2.13|^3.0.4"
  5590. },
  5591. "suggest": {
  5592. "symfony/browser-kit": "",
  5593. "symfony/config": "",
  5594. "symfony/console": "",
  5595. "symfony/dependency-injection": ""
  5596. },
  5597. "type": "library",
  5598. "autoload": {
  5599. "psr-4": {
  5600. "Symfony\\Component\\HttpKernel\\": ""
  5601. },
  5602. "exclude-from-classmap": [
  5603. "/Tests/"
  5604. ]
  5605. },
  5606. "notification-url": "https://packagist.org/downloads/",
  5607. "license": [
  5608. "MIT"
  5609. ],
  5610. "authors": [
  5611. {
  5612. "name": "Fabien Potencier",
  5613. "email": "[email protected]"
  5614. },
  5615. {
  5616. "name": "Symfony Community",
  5617. "homepage": "https://symfony.com/contributors"
  5618. }
  5619. ],
  5620. "description": "Provides a structured process for converting a Request into a Response",
  5621. "homepage": "https://symfony.com",
  5622. "support": {
  5623. "source": "https://github.com/symfony/http-kernel/tree/v5.3.1"
  5624. },
  5625. "funding": [
  5626. {
  5627. "url": "https://symfony.com/sponsor",
  5628. "type": "custom"
  5629. },
  5630. {
  5631. "url": "https://github.com/fabpot",
  5632. "type": "github"
  5633. },
  5634. {
  5635. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5636. "type": "tidelift"
  5637. }
  5638. ],
  5639. "time": "2021-06-02T10:07:12+00:00"
  5640. },
  5641. {
  5642. "name": "symfony/mime",
  5643. "version": "v5.3.0",
  5644. "source": {
  5645. "type": "git",
  5646. "url": "https://github.com/symfony/mime.git",
  5647. "reference": "ed710d297b181f6a7194d8172c9c2423d58e4852"
  5648. },
  5649. "dist": {
  5650. "type": "zip",
  5651. "url": "https://api.github.com/repos/symfony/mime/zipball/ed710d297b181f6a7194d8172c9c2423d58e4852",
  5652. "reference": "ed710d297b181f6a7194d8172c9c2423d58e4852",
  5653. "shasum": ""
  5654. },
  5655. "require": {
  5656. "php": ">=7.2.5",
  5657. "symfony/deprecation-contracts": "^2.1",
  5658. "symfony/polyfill-intl-idn": "^1.10",
  5659. "symfony/polyfill-mbstring": "^1.0",
  5660. "symfony/polyfill-php80": "^1.15"
  5661. },
  5662. "conflict": {
  5663. "egulias/email-validator": "~3.0.0",
  5664. "phpdocumentor/reflection-docblock": "<3.2.2",
  5665. "phpdocumentor/type-resolver": "<1.4.0",
  5666. "symfony/mailer": "<4.4"
  5667. },
  5668. "require-dev": {
  5669. "egulias/email-validator": "^2.1.10|^3.1",
  5670. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5671. "symfony/dependency-injection": "^4.4|^5.0",
  5672. "symfony/property-access": "^4.4|^5.1",
  5673. "symfony/property-info": "^4.4|^5.1",
  5674. "symfony/serializer": "^5.2"
  5675. },
  5676. "type": "library",
  5677. "autoload": {
  5678. "psr-4": {
  5679. "Symfony\\Component\\Mime\\": ""
  5680. },
  5681. "exclude-from-classmap": [
  5682. "/Tests/"
  5683. ]
  5684. },
  5685. "notification-url": "https://packagist.org/downloads/",
  5686. "license": [
  5687. "MIT"
  5688. ],
  5689. "authors": [
  5690. {
  5691. "name": "Fabien Potencier",
  5692. "email": "[email protected]"
  5693. },
  5694. {
  5695. "name": "Symfony Community",
  5696. "homepage": "https://symfony.com/contributors"
  5697. }
  5698. ],
  5699. "description": "Allows manipulating MIME messages",
  5700. "homepage": "https://symfony.com",
  5701. "keywords": [
  5702. "mime",
  5703. "mime-type"
  5704. ],
  5705. "support": {
  5706. "source": "https://github.com/symfony/mime/tree/v5.3.0"
  5707. },
  5708. "funding": [
  5709. {
  5710. "url": "https://symfony.com/sponsor",
  5711. "type": "custom"
  5712. },
  5713. {
  5714. "url": "https://github.com/fabpot",
  5715. "type": "github"
  5716. },
  5717. {
  5718. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5719. "type": "tidelift"
  5720. }
  5721. ],
  5722. "time": "2021-05-26T17:43:10+00:00"
  5723. },
  5724. {
  5725. "name": "symfony/polyfill-ctype",
  5726. "version": "v1.23.0",
  5727. "source": {
  5728. "type": "git",
  5729. "url": "https://github.com/symfony/polyfill-ctype.git",
  5730. "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce"
  5731. },
  5732. "dist": {
  5733. "type": "zip",
  5734. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/46cd95797e9df938fdd2b03693b5fca5e64b01ce",
  5735. "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce",
  5736. "shasum": ""
  5737. },
  5738. "require": {
  5739. "php": ">=7.1"
  5740. },
  5741. "suggest": {
  5742. "ext-ctype": "For best performance"
  5743. },
  5744. "type": "library",
  5745. "extra": {
  5746. "branch-alias": {
  5747. "dev-main": "1.23-dev"
  5748. },
  5749. "thanks": {
  5750. "name": "symfony/polyfill",
  5751. "url": "https://github.com/symfony/polyfill"
  5752. }
  5753. },
  5754. "autoload": {
  5755. "psr-4": {
  5756. "Symfony\\Polyfill\\Ctype\\": ""
  5757. },
  5758. "files": [
  5759. "bootstrap.php"
  5760. ]
  5761. },
  5762. "notification-url": "https://packagist.org/downloads/",
  5763. "license": [
  5764. "MIT"
  5765. ],
  5766. "authors": [
  5767. {
  5768. "name": "Gert de Pagter",
  5769. "email": "[email protected]"
  5770. },
  5771. {
  5772. "name": "Symfony Community",
  5773. "homepage": "https://symfony.com/contributors"
  5774. }
  5775. ],
  5776. "description": "Symfony polyfill for ctype functions",
  5777. "homepage": "https://symfony.com",
  5778. "keywords": [
  5779. "compatibility",
  5780. "ctype",
  5781. "polyfill",
  5782. "portable"
  5783. ],
  5784. "support": {
  5785. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.23.0"
  5786. },
  5787. "funding": [
  5788. {
  5789. "url": "https://symfony.com/sponsor",
  5790. "type": "custom"
  5791. },
  5792. {
  5793. "url": "https://github.com/fabpot",
  5794. "type": "github"
  5795. },
  5796. {
  5797. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5798. "type": "tidelift"
  5799. }
  5800. ],
  5801. "time": "2021-02-19T12:13:01+00:00"
  5802. },
  5803. {
  5804. "name": "symfony/polyfill-iconv",
  5805. "version": "v1.23.0",
  5806. "source": {
  5807. "type": "git",
  5808. "url": "https://github.com/symfony/polyfill-iconv.git",
  5809. "reference": "63b5bb7db83e5673936d6e3b8b3e022ff6474933"
  5810. },
  5811. "dist": {
  5812. "type": "zip",
  5813. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/63b5bb7db83e5673936d6e3b8b3e022ff6474933",
  5814. "reference": "63b5bb7db83e5673936d6e3b8b3e022ff6474933",
  5815. "shasum": ""
  5816. },
  5817. "require": {
  5818. "php": ">=7.1"
  5819. },
  5820. "suggest": {
  5821. "ext-iconv": "For best performance"
  5822. },
  5823. "type": "library",
  5824. "extra": {
  5825. "branch-alias": {
  5826. "dev-main": "1.23-dev"
  5827. },
  5828. "thanks": {
  5829. "name": "symfony/polyfill",
  5830. "url": "https://github.com/symfony/polyfill"
  5831. }
  5832. },
  5833. "autoload": {
  5834. "psr-4": {
  5835. "Symfony\\Polyfill\\Iconv\\": ""
  5836. },
  5837. "files": [
  5838. "bootstrap.php"
  5839. ]
  5840. },
  5841. "notification-url": "https://packagist.org/downloads/",
  5842. "license": [
  5843. "MIT"
  5844. ],
  5845. "authors": [
  5846. {
  5847. "name": "Nicolas Grekas",
  5848. "email": "[email protected]"
  5849. },
  5850. {
  5851. "name": "Symfony Community",
  5852. "homepage": "https://symfony.com/contributors"
  5853. }
  5854. ],
  5855. "description": "Symfony polyfill for the Iconv extension",
  5856. "homepage": "https://symfony.com",
  5857. "keywords": [
  5858. "compatibility",
  5859. "iconv",
  5860. "polyfill",
  5861. "portable",
  5862. "shim"
  5863. ],
  5864. "support": {
  5865. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.23.0"
  5866. },
  5867. "funding": [
  5868. {
  5869. "url": "https://symfony.com/sponsor",
  5870. "type": "custom"
  5871. },
  5872. {
  5873. "url": "https://github.com/fabpot",
  5874. "type": "github"
  5875. },
  5876. {
  5877. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5878. "type": "tidelift"
  5879. }
  5880. ],
  5881. "time": "2021-05-27T09:27:20+00:00"
  5882. },
  5883. {
  5884. "name": "symfony/polyfill-intl-grapheme",
  5885. "version": "v1.23.0",
  5886. "source": {
  5887. "type": "git",
  5888. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5889. "reference": "24b72c6baa32c746a4d0840147c9715e42bb68ab"
  5890. },
  5891. "dist": {
  5892. "type": "zip",
  5893. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/24b72c6baa32c746a4d0840147c9715e42bb68ab",
  5894. "reference": "24b72c6baa32c746a4d0840147c9715e42bb68ab",
  5895. "shasum": ""
  5896. },
  5897. "require": {
  5898. "php": ">=7.1"
  5899. },
  5900. "suggest": {
  5901. "ext-intl": "For best performance"
  5902. },
  5903. "type": "library",
  5904. "extra": {
  5905. "branch-alias": {
  5906. "dev-main": "1.23-dev"
  5907. },
  5908. "thanks": {
  5909. "name": "symfony/polyfill",
  5910. "url": "https://github.com/symfony/polyfill"
  5911. }
  5912. },
  5913. "autoload": {
  5914. "psr-4": {
  5915. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5916. },
  5917. "files": [
  5918. "bootstrap.php"
  5919. ]
  5920. },
  5921. "notification-url": "https://packagist.org/downloads/",
  5922. "license": [
  5923. "MIT"
  5924. ],
  5925. "authors": [
  5926. {
  5927. "name": "Nicolas Grekas",
  5928. "email": "[email protected]"
  5929. },
  5930. {
  5931. "name": "Symfony Community",
  5932. "homepage": "https://symfony.com/contributors"
  5933. }
  5934. ],
  5935. "description": "Symfony polyfill for intl's grapheme_* functions",
  5936. "homepage": "https://symfony.com",
  5937. "keywords": [
  5938. "compatibility",
  5939. "grapheme",
  5940. "intl",
  5941. "polyfill",
  5942. "portable",
  5943. "shim"
  5944. ],
  5945. "support": {
  5946. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.23.0"
  5947. },
  5948. "funding": [
  5949. {
  5950. "url": "https://symfony.com/sponsor",
  5951. "type": "custom"
  5952. },
  5953. {
  5954. "url": "https://github.com/fabpot",
  5955. "type": "github"
  5956. },
  5957. {
  5958. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5959. "type": "tidelift"
  5960. }
  5961. ],
  5962. "time": "2021-05-27T09:17:38+00:00"
  5963. },
  5964. {
  5965. "name": "symfony/polyfill-intl-idn",
  5966. "version": "v1.23.0",
  5967. "source": {
  5968. "type": "git",
  5969. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5970. "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65"
  5971. },
  5972. "dist": {
  5973. "type": "zip",
  5974. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/65bd267525e82759e7d8c4e8ceea44f398838e65",
  5975. "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65",
  5976. "shasum": ""
  5977. },
  5978. "require": {
  5979. "php": ">=7.1",
  5980. "symfony/polyfill-intl-normalizer": "^1.10",
  5981. "symfony/polyfill-php72": "^1.10"
  5982. },
  5983. "suggest": {
  5984. "ext-intl": "For best performance"
  5985. },
  5986. "type": "library",
  5987. "extra": {
  5988. "branch-alias": {
  5989. "dev-main": "1.23-dev"
  5990. },
  5991. "thanks": {
  5992. "name": "symfony/polyfill",
  5993. "url": "https://github.com/symfony/polyfill"
  5994. }
  5995. },
  5996. "autoload": {
  5997. "psr-4": {
  5998. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5999. },
  6000. "files": [
  6001. "bootstrap.php"
  6002. ]
  6003. },
  6004. "notification-url": "https://packagist.org/downloads/",
  6005. "license": [
  6006. "MIT"
  6007. ],
  6008. "authors": [
  6009. {
  6010. "name": "Laurent Bassin",
  6011. "email": "[email protected]"
  6012. },
  6013. {
  6014. "name": "Trevor Rowbotham",
  6015. "email": "[email protected]"
  6016. },
  6017. {
  6018. "name": "Symfony Community",
  6019. "homepage": "https://symfony.com/contributors"
  6020. }
  6021. ],
  6022. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6023. "homepage": "https://symfony.com",
  6024. "keywords": [
  6025. "compatibility",
  6026. "idn",
  6027. "intl",
  6028. "polyfill",
  6029. "portable",
  6030. "shim"
  6031. ],
  6032. "support": {
  6033. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.23.0"
  6034. },
  6035. "funding": [
  6036. {
  6037. "url": "https://symfony.com/sponsor",
  6038. "type": "custom"
  6039. },
  6040. {
  6041. "url": "https://github.com/fabpot",
  6042. "type": "github"
  6043. },
  6044. {
  6045. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6046. "type": "tidelift"
  6047. }
  6048. ],
  6049. "time": "2021-05-27T09:27:20+00:00"
  6050. },
  6051. {
  6052. "name": "symfony/polyfill-intl-normalizer",
  6053. "version": "v1.23.0",
  6054. "source": {
  6055. "type": "git",
  6056. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6057. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8"
  6058. },
  6059. "dist": {
  6060. "type": "zip",
  6061. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8590a5f561694770bdcd3f9b5c69dde6945028e8",
  6062. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8",
  6063. "shasum": ""
  6064. },
  6065. "require": {
  6066. "php": ">=7.1"
  6067. },
  6068. "suggest": {
  6069. "ext-intl": "For best performance"
  6070. },
  6071. "type": "library",
  6072. "extra": {
  6073. "branch-alias": {
  6074. "dev-main": "1.23-dev"
  6075. },
  6076. "thanks": {
  6077. "name": "symfony/polyfill",
  6078. "url": "https://github.com/symfony/polyfill"
  6079. }
  6080. },
  6081. "autoload": {
  6082. "psr-4": {
  6083. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6084. },
  6085. "files": [
  6086. "bootstrap.php"
  6087. ],
  6088. "classmap": [
  6089. "Resources/stubs"
  6090. ]
  6091. },
  6092. "notification-url": "https://packagist.org/downloads/",
  6093. "license": [
  6094. "MIT"
  6095. ],
  6096. "authors": [
  6097. {
  6098. "name": "Nicolas Grekas",
  6099. "email": "[email protected]"
  6100. },
  6101. {
  6102. "name": "Symfony Community",
  6103. "homepage": "https://symfony.com/contributors"
  6104. }
  6105. ],
  6106. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6107. "homepage": "https://symfony.com",
  6108. "keywords": [
  6109. "compatibility",
  6110. "intl",
  6111. "normalizer",
  6112. "polyfill",
  6113. "portable",
  6114. "shim"
  6115. ],
  6116. "support": {
  6117. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.23.0"
  6118. },
  6119. "funding": [
  6120. {
  6121. "url": "https://symfony.com/sponsor",
  6122. "type": "custom"
  6123. },
  6124. {
  6125. "url": "https://github.com/fabpot",
  6126. "type": "github"
  6127. },
  6128. {
  6129. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6130. "type": "tidelift"
  6131. }
  6132. ],
  6133. "time": "2021-02-19T12:13:01+00:00"
  6134. },
  6135. {
  6136. "name": "symfony/polyfill-mbstring",
  6137. "version": "v1.23.0",
  6138. "source": {
  6139. "type": "git",
  6140. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6141. "reference": "2df51500adbaebdc4c38dea4c89a2e131c45c8a1"
  6142. },
  6143. "dist": {
  6144. "type": "zip",
  6145. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/2df51500adbaebdc4c38dea4c89a2e131c45c8a1",
  6146. "reference": "2df51500adbaebdc4c38dea4c89a2e131c45c8a1",
  6147. "shasum": ""
  6148. },
  6149. "require": {
  6150. "php": ">=7.1"
  6151. },
  6152. "suggest": {
  6153. "ext-mbstring": "For best performance"
  6154. },
  6155. "type": "library",
  6156. "extra": {
  6157. "branch-alias": {
  6158. "dev-main": "1.23-dev"
  6159. },
  6160. "thanks": {
  6161. "name": "symfony/polyfill",
  6162. "url": "https://github.com/symfony/polyfill"
  6163. }
  6164. },
  6165. "autoload": {
  6166. "psr-4": {
  6167. "Symfony\\Polyfill\\Mbstring\\": ""
  6168. },
  6169. "files": [
  6170. "bootstrap.php"
  6171. ]
  6172. },
  6173. "notification-url": "https://packagist.org/downloads/",
  6174. "license": [
  6175. "MIT"
  6176. ],
  6177. "authors": [
  6178. {
  6179. "name": "Nicolas Grekas",
  6180. "email": "[email protected]"
  6181. },
  6182. {
  6183. "name": "Symfony Community",
  6184. "homepage": "https://symfony.com/contributors"
  6185. }
  6186. ],
  6187. "description": "Symfony polyfill for the Mbstring extension",
  6188. "homepage": "https://symfony.com",
  6189. "keywords": [
  6190. "compatibility",
  6191. "mbstring",
  6192. "polyfill",
  6193. "portable",
  6194. "shim"
  6195. ],
  6196. "support": {
  6197. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.23.0"
  6198. },
  6199. "funding": [
  6200. {
  6201. "url": "https://symfony.com/sponsor",
  6202. "type": "custom"
  6203. },
  6204. {
  6205. "url": "https://github.com/fabpot",
  6206. "type": "github"
  6207. },
  6208. {
  6209. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6210. "type": "tidelift"
  6211. }
  6212. ],
  6213. "time": "2021-05-27T09:27:20+00:00"
  6214. },
  6215. {
  6216. "name": "symfony/polyfill-php56",
  6217. "version": "v1.20.0",
  6218. "source": {
  6219. "type": "git",
  6220. "url": "https://github.com/symfony/polyfill-php56.git",
  6221. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675"
  6222. },
  6223. "dist": {
  6224. "type": "zip",
  6225. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  6226. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  6227. "shasum": ""
  6228. },
  6229. "require": {
  6230. "php": ">=7.1"
  6231. },
  6232. "type": "metapackage",
  6233. "extra": {
  6234. "branch-alias": {
  6235. "dev-main": "1.20-dev"
  6236. },
  6237. "thanks": {
  6238. "name": "symfony/polyfill",
  6239. "url": "https://github.com/symfony/polyfill"
  6240. }
  6241. },
  6242. "notification-url": "https://packagist.org/downloads/",
  6243. "license": [
  6244. "MIT"
  6245. ],
  6246. "authors": [
  6247. {
  6248. "name": "Nicolas Grekas",
  6249. "email": "[email protected]"
  6250. },
  6251. {
  6252. "name": "Symfony Community",
  6253. "homepage": "https://symfony.com/contributors"
  6254. }
  6255. ],
  6256. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  6257. "homepage": "https://symfony.com",
  6258. "keywords": [
  6259. "compatibility",
  6260. "polyfill",
  6261. "portable",
  6262. "shim"
  6263. ],
  6264. "support": {
  6265. "source": "https://github.com/symfony/polyfill-php56/tree/v1.20.0"
  6266. },
  6267. "funding": [
  6268. {
  6269. "url": "https://symfony.com/sponsor",
  6270. "type": "custom"
  6271. },
  6272. {
  6273. "url": "https://github.com/fabpot",
  6274. "type": "github"
  6275. },
  6276. {
  6277. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6278. "type": "tidelift"
  6279. }
  6280. ],
  6281. "time": "2020-10-23T14:02:19+00:00"
  6282. },
  6283. {
  6284. "name": "symfony/polyfill-php72",
  6285. "version": "v1.23.0",
  6286. "source": {
  6287. "type": "git",
  6288. "url": "https://github.com/symfony/polyfill-php72.git",
  6289. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976"
  6290. },
  6291. "dist": {
  6292. "type": "zip",
  6293. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/9a142215a36a3888e30d0a9eeea9766764e96976",
  6294. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976",
  6295. "shasum": ""
  6296. },
  6297. "require": {
  6298. "php": ">=7.1"
  6299. },
  6300. "type": "library",
  6301. "extra": {
  6302. "branch-alias": {
  6303. "dev-main": "1.23-dev"
  6304. },
  6305. "thanks": {
  6306. "name": "symfony/polyfill",
  6307. "url": "https://github.com/symfony/polyfill"
  6308. }
  6309. },
  6310. "autoload": {
  6311. "psr-4": {
  6312. "Symfony\\Polyfill\\Php72\\": ""
  6313. },
  6314. "files": [
  6315. "bootstrap.php"
  6316. ]
  6317. },
  6318. "notification-url": "https://packagist.org/downloads/",
  6319. "license": [
  6320. "MIT"
  6321. ],
  6322. "authors": [
  6323. {
  6324. "name": "Nicolas Grekas",
  6325. "email": "[email protected]"
  6326. },
  6327. {
  6328. "name": "Symfony Community",
  6329. "homepage": "https://symfony.com/contributors"
  6330. }
  6331. ],
  6332. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  6333. "homepage": "https://symfony.com",
  6334. "keywords": [
  6335. "compatibility",
  6336. "polyfill",
  6337. "portable",
  6338. "shim"
  6339. ],
  6340. "support": {
  6341. "source": "https://github.com/symfony/polyfill-php72/tree/v1.23.0"
  6342. },
  6343. "funding": [
  6344. {
  6345. "url": "https://symfony.com/sponsor",
  6346. "type": "custom"
  6347. },
  6348. {
  6349. "url": "https://github.com/fabpot",
  6350. "type": "github"
  6351. },
  6352. {
  6353. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6354. "type": "tidelift"
  6355. }
  6356. ],
  6357. "time": "2021-05-27T09:17:38+00:00"
  6358. },
  6359. {
  6360. "name": "symfony/polyfill-php73",
  6361. "version": "v1.23.0",
  6362. "source": {
  6363. "type": "git",
  6364. "url": "https://github.com/symfony/polyfill-php73.git",
  6365. "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010"
  6366. },
  6367. "dist": {
  6368. "type": "zip",
  6369. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fba8933c384d6476ab14fb7b8526e5287ca7e010",
  6370. "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010",
  6371. "shasum": ""
  6372. },
  6373. "require": {
  6374. "php": ">=7.1"
  6375. },
  6376. "type": "library",
  6377. "extra": {
  6378. "branch-alias": {
  6379. "dev-main": "1.23-dev"
  6380. },
  6381. "thanks": {
  6382. "name": "symfony/polyfill",
  6383. "url": "https://github.com/symfony/polyfill"
  6384. }
  6385. },
  6386. "autoload": {
  6387. "psr-4": {
  6388. "Symfony\\Polyfill\\Php73\\": ""
  6389. },
  6390. "files": [
  6391. "bootstrap.php"
  6392. ],
  6393. "classmap": [
  6394. "Resources/stubs"
  6395. ]
  6396. },
  6397. "notification-url": "https://packagist.org/downloads/",
  6398. "license": [
  6399. "MIT"
  6400. ],
  6401. "authors": [
  6402. {
  6403. "name": "Nicolas Grekas",
  6404. "email": "[email protected]"
  6405. },
  6406. {
  6407. "name": "Symfony Community",
  6408. "homepage": "https://symfony.com/contributors"
  6409. }
  6410. ],
  6411. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  6412. "homepage": "https://symfony.com",
  6413. "keywords": [
  6414. "compatibility",
  6415. "polyfill",
  6416. "portable",
  6417. "shim"
  6418. ],
  6419. "support": {
  6420. "source": "https://github.com/symfony/polyfill-php73/tree/v1.23.0"
  6421. },
  6422. "funding": [
  6423. {
  6424. "url": "https://symfony.com/sponsor",
  6425. "type": "custom"
  6426. },
  6427. {
  6428. "url": "https://github.com/fabpot",
  6429. "type": "github"
  6430. },
  6431. {
  6432. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6433. "type": "tidelift"
  6434. }
  6435. ],
  6436. "time": "2021-02-19T12:13:01+00:00"
  6437. },
  6438. {
  6439. "name": "symfony/polyfill-php80",
  6440. "version": "v1.23.0",
  6441. "source": {
  6442. "type": "git",
  6443. "url": "https://github.com/symfony/polyfill-php80.git",
  6444. "reference": "eca0bf41ed421bed1b57c4958bab16aa86b757d0"
  6445. },
  6446. "dist": {
  6447. "type": "zip",
  6448. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/eca0bf41ed421bed1b57c4958bab16aa86b757d0",
  6449. "reference": "eca0bf41ed421bed1b57c4958bab16aa86b757d0",
  6450. "shasum": ""
  6451. },
  6452. "require": {
  6453. "php": ">=7.1"
  6454. },
  6455. "type": "library",
  6456. "extra": {
  6457. "branch-alias": {
  6458. "dev-main": "1.23-dev"
  6459. },
  6460. "thanks": {
  6461. "name": "symfony/polyfill",
  6462. "url": "https://github.com/symfony/polyfill"
  6463. }
  6464. },
  6465. "autoload": {
  6466. "psr-4": {
  6467. "Symfony\\Polyfill\\Php80\\": ""
  6468. },
  6469. "files": [
  6470. "bootstrap.php"
  6471. ],
  6472. "classmap": [
  6473. "Resources/stubs"
  6474. ]
  6475. },
  6476. "notification-url": "https://packagist.org/downloads/",
  6477. "license": [
  6478. "MIT"
  6479. ],
  6480. "authors": [
  6481. {
  6482. "name": "Ion Bazan",
  6483. "email": "[email protected]"
  6484. },
  6485. {
  6486. "name": "Nicolas Grekas",
  6487. "email": "[email protected]"
  6488. },
  6489. {
  6490. "name": "Symfony Community",
  6491. "homepage": "https://symfony.com/contributors"
  6492. }
  6493. ],
  6494. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6495. "homepage": "https://symfony.com",
  6496. "keywords": [
  6497. "compatibility",
  6498. "polyfill",
  6499. "portable",
  6500. "shim"
  6501. ],
  6502. "support": {
  6503. "source": "https://github.com/symfony/polyfill-php80/tree/v1.23.0"
  6504. },
  6505. "funding": [
  6506. {
  6507. "url": "https://symfony.com/sponsor",
  6508. "type": "custom"
  6509. },
  6510. {
  6511. "url": "https://github.com/fabpot",
  6512. "type": "github"
  6513. },
  6514. {
  6515. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6516. "type": "tidelift"
  6517. }
  6518. ],
  6519. "time": "2021-02-19T12:13:01+00:00"
  6520. },
  6521. {
  6522. "name": "symfony/process",
  6523. "version": "v5.3.0",
  6524. "source": {
  6525. "type": "git",
  6526. "url": "https://github.com/symfony/process.git",
  6527. "reference": "53e36cb1c160505cdaf1ef201501669c4c317191"
  6528. },
  6529. "dist": {
  6530. "type": "zip",
  6531. "url": "https://api.github.com/repos/symfony/process/zipball/53e36cb1c160505cdaf1ef201501669c4c317191",
  6532. "reference": "53e36cb1c160505cdaf1ef201501669c4c317191",
  6533. "shasum": ""
  6534. },
  6535. "require": {
  6536. "php": ">=7.2.5",
  6537. "symfony/polyfill-php80": "^1.15"
  6538. },
  6539. "type": "library",
  6540. "autoload": {
  6541. "psr-4": {
  6542. "Symfony\\Component\\Process\\": ""
  6543. },
  6544. "exclude-from-classmap": [
  6545. "/Tests/"
  6546. ]
  6547. },
  6548. "notification-url": "https://packagist.org/downloads/",
  6549. "license": [
  6550. "MIT"
  6551. ],
  6552. "authors": [
  6553. {
  6554. "name": "Fabien Potencier",
  6555. "email": "[email protected]"
  6556. },
  6557. {
  6558. "name": "Symfony Community",
  6559. "homepage": "https://symfony.com/contributors"
  6560. }
  6561. ],
  6562. "description": "Executes commands in sub-processes",
  6563. "homepage": "https://symfony.com",
  6564. "support": {
  6565. "source": "https://github.com/symfony/process/tree/v5.3.0"
  6566. },
  6567. "funding": [
  6568. {
  6569. "url": "https://symfony.com/sponsor",
  6570. "type": "custom"
  6571. },
  6572. {
  6573. "url": "https://github.com/fabpot",
  6574. "type": "github"
  6575. },
  6576. {
  6577. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6578. "type": "tidelift"
  6579. }
  6580. ],
  6581. "time": "2021-05-26T12:52:38+00:00"
  6582. },
  6583. {
  6584. "name": "symfony/routing",
  6585. "version": "v5.3.0",
  6586. "source": {
  6587. "type": "git",
  6588. "url": "https://github.com/symfony/routing.git",
  6589. "reference": "368e81376a8e049c37cb80ae87dbfbf411279199"
  6590. },
  6591. "dist": {
  6592. "type": "zip",
  6593. "url": "https://api.github.com/repos/symfony/routing/zipball/368e81376a8e049c37cb80ae87dbfbf411279199",
  6594. "reference": "368e81376a8e049c37cb80ae87dbfbf411279199",
  6595. "shasum": ""
  6596. },
  6597. "require": {
  6598. "php": ">=7.2.5",
  6599. "symfony/deprecation-contracts": "^2.1",
  6600. "symfony/polyfill-php80": "^1.15"
  6601. },
  6602. "conflict": {
  6603. "doctrine/annotations": "<1.12",
  6604. "symfony/config": "<5.3",
  6605. "symfony/dependency-injection": "<4.4",
  6606. "symfony/yaml": "<4.4"
  6607. },
  6608. "require-dev": {
  6609. "doctrine/annotations": "^1.12",
  6610. "psr/log": "~1.0",
  6611. "symfony/config": "^5.3",
  6612. "symfony/dependency-injection": "^4.4|^5.0",
  6613. "symfony/expression-language": "^4.4|^5.0",
  6614. "symfony/http-foundation": "^4.4|^5.0",
  6615. "symfony/yaml": "^4.4|^5.0"
  6616. },
  6617. "suggest": {
  6618. "symfony/config": "For using the all-in-one router or any loader",
  6619. "symfony/expression-language": "For using expression matching",
  6620. "symfony/http-foundation": "For using a Symfony Request object",
  6621. "symfony/yaml": "For using the YAML loader"
  6622. },
  6623. "type": "library",
  6624. "autoload": {
  6625. "psr-4": {
  6626. "Symfony\\Component\\Routing\\": ""
  6627. },
  6628. "exclude-from-classmap": [
  6629. "/Tests/"
  6630. ]
  6631. },
  6632. "notification-url": "https://packagist.org/downloads/",
  6633. "license": [
  6634. "MIT"
  6635. ],
  6636. "authors": [
  6637. {
  6638. "name": "Fabien Potencier",
  6639. "email": "[email protected]"
  6640. },
  6641. {
  6642. "name": "Symfony Community",
  6643. "homepage": "https://symfony.com/contributors"
  6644. }
  6645. ],
  6646. "description": "Maps an HTTP request to a set of configuration variables",
  6647. "homepage": "https://symfony.com",
  6648. "keywords": [
  6649. "router",
  6650. "routing",
  6651. "uri",
  6652. "url"
  6653. ],
  6654. "support": {
  6655. "source": "https://github.com/symfony/routing/tree/v5.3.0"
  6656. },
  6657. "funding": [
  6658. {
  6659. "url": "https://symfony.com/sponsor",
  6660. "type": "custom"
  6661. },
  6662. {
  6663. "url": "https://github.com/fabpot",
  6664. "type": "github"
  6665. },
  6666. {
  6667. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6668. "type": "tidelift"
  6669. }
  6670. ],
  6671. "time": "2021-05-26T17:43:10+00:00"
  6672. },
  6673. {
  6674. "name": "symfony/service-contracts",
  6675. "version": "v2.4.0",
  6676. "source": {
  6677. "type": "git",
  6678. "url": "https://github.com/symfony/service-contracts.git",
  6679. "reference": "f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb"
  6680. },
  6681. "dist": {
  6682. "type": "zip",
  6683. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb",
  6684. "reference": "f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb",
  6685. "shasum": ""
  6686. },
  6687. "require": {
  6688. "php": ">=7.2.5",
  6689. "psr/container": "^1.1"
  6690. },
  6691. "suggest": {
  6692. "symfony/service-implementation": ""
  6693. },
  6694. "type": "library",
  6695. "extra": {
  6696. "branch-alias": {
  6697. "dev-main": "2.4-dev"
  6698. },
  6699. "thanks": {
  6700. "name": "symfony/contracts",
  6701. "url": "https://github.com/symfony/contracts"
  6702. }
  6703. },
  6704. "autoload": {
  6705. "psr-4": {
  6706. "Symfony\\Contracts\\Service\\": ""
  6707. }
  6708. },
  6709. "notification-url": "https://packagist.org/downloads/",
  6710. "license": [
  6711. "MIT"
  6712. ],
  6713. "authors": [
  6714. {
  6715. "name": "Nicolas Grekas",
  6716. "email": "[email protected]"
  6717. },
  6718. {
  6719. "name": "Symfony Community",
  6720. "homepage": "https://symfony.com/contributors"
  6721. }
  6722. ],
  6723. "description": "Generic abstractions related to writing services",
  6724. "homepage": "https://symfony.com",
  6725. "keywords": [
  6726. "abstractions",
  6727. "contracts",
  6728. "decoupling",
  6729. "interfaces",
  6730. "interoperability",
  6731. "standards"
  6732. ],
  6733. "support": {
  6734. "source": "https://github.com/symfony/service-contracts/tree/v2.4.0"
  6735. },
  6736. "funding": [
  6737. {
  6738. "url": "https://symfony.com/sponsor",
  6739. "type": "custom"
  6740. },
  6741. {
  6742. "url": "https://github.com/fabpot",
  6743. "type": "github"
  6744. },
  6745. {
  6746. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6747. "type": "tidelift"
  6748. }
  6749. ],
  6750. "time": "2021-04-01T10:43:52+00:00"
  6751. },
  6752. {
  6753. "name": "symfony/string",
  6754. "version": "v5.3.0",
  6755. "source": {
  6756. "type": "git",
  6757. "url": "https://github.com/symfony/string.git",
  6758. "reference": "a9a0f8b6aafc5d2d1c116dcccd1573a95153515b"
  6759. },
  6760. "dist": {
  6761. "type": "zip",
  6762. "url": "https://api.github.com/repos/symfony/string/zipball/a9a0f8b6aafc5d2d1c116dcccd1573a95153515b",
  6763. "reference": "a9a0f8b6aafc5d2d1c116dcccd1573a95153515b",
  6764. "shasum": ""
  6765. },
  6766. "require": {
  6767. "php": ">=7.2.5",
  6768. "symfony/polyfill-ctype": "~1.8",
  6769. "symfony/polyfill-intl-grapheme": "~1.0",
  6770. "symfony/polyfill-intl-normalizer": "~1.0",
  6771. "symfony/polyfill-mbstring": "~1.0",
  6772. "symfony/polyfill-php80": "~1.15"
  6773. },
  6774. "require-dev": {
  6775. "symfony/error-handler": "^4.4|^5.0",
  6776. "symfony/http-client": "^4.4|^5.0",
  6777. "symfony/translation-contracts": "^1.1|^2",
  6778. "symfony/var-exporter": "^4.4|^5.0"
  6779. },
  6780. "type": "library",
  6781. "autoload": {
  6782. "psr-4": {
  6783. "Symfony\\Component\\String\\": ""
  6784. },
  6785. "files": [
  6786. "Resources/functions.php"
  6787. ],
  6788. "exclude-from-classmap": [
  6789. "/Tests/"
  6790. ]
  6791. },
  6792. "notification-url": "https://packagist.org/downloads/",
  6793. "license": [
  6794. "MIT"
  6795. ],
  6796. "authors": [
  6797. {
  6798. "name": "Nicolas Grekas",
  6799. "email": "[email protected]"
  6800. },
  6801. {
  6802. "name": "Symfony Community",
  6803. "homepage": "https://symfony.com/contributors"
  6804. }
  6805. ],
  6806. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  6807. "homepage": "https://symfony.com",
  6808. "keywords": [
  6809. "grapheme",
  6810. "i18n",
  6811. "string",
  6812. "unicode",
  6813. "utf-8",
  6814. "utf8"
  6815. ],
  6816. "support": {
  6817. "source": "https://github.com/symfony/string/tree/v5.3.0"
  6818. },
  6819. "funding": [
  6820. {
  6821. "url": "https://symfony.com/sponsor",
  6822. "type": "custom"
  6823. },
  6824. {
  6825. "url": "https://github.com/fabpot",
  6826. "type": "github"
  6827. },
  6828. {
  6829. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6830. "type": "tidelift"
  6831. }
  6832. ],
  6833. "time": "2021-05-26T17:43:10+00:00"
  6834. },
  6835. {
  6836. "name": "symfony/translation",
  6837. "version": "v5.3.0",
  6838. "source": {
  6839. "type": "git",
  6840. "url": "https://github.com/symfony/translation.git",
  6841. "reference": "251de0d921c42ef0a81494d8f37405421deefdf6"
  6842. },
  6843. "dist": {
  6844. "type": "zip",
  6845. "url": "https://api.github.com/repos/symfony/translation/zipball/251de0d921c42ef0a81494d8f37405421deefdf6",
  6846. "reference": "251de0d921c42ef0a81494d8f37405421deefdf6",
  6847. "shasum": ""
  6848. },
  6849. "require": {
  6850. "php": ">=7.2.5",
  6851. "symfony/deprecation-contracts": "^2.1",
  6852. "symfony/polyfill-mbstring": "~1.0",
  6853. "symfony/polyfill-php80": "^1.15",
  6854. "symfony/translation-contracts": "^2.3"
  6855. },
  6856. "conflict": {
  6857. "symfony/config": "<4.4",
  6858. "symfony/dependency-injection": "<5.0",
  6859. "symfony/http-kernel": "<5.0",
  6860. "symfony/twig-bundle": "<5.0",
  6861. "symfony/yaml": "<4.4"
  6862. },
  6863. "provide": {
  6864. "symfony/translation-implementation": "2.3"
  6865. },
  6866. "require-dev": {
  6867. "psr/log": "~1.0",
  6868. "symfony/config": "^4.4|^5.0",
  6869. "symfony/console": "^4.4|^5.0",
  6870. "symfony/dependency-injection": "^5.0",
  6871. "symfony/finder": "^4.4|^5.0",
  6872. "symfony/http-kernel": "^5.0",
  6873. "symfony/intl": "^4.4|^5.0",
  6874. "symfony/polyfill-intl-icu": "^1.21",
  6875. "symfony/service-contracts": "^1.1.2|^2",
  6876. "symfony/yaml": "^4.4|^5.0"
  6877. },
  6878. "suggest": {
  6879. "psr/log-implementation": "To use logging capability in translator",
  6880. "symfony/config": "",
  6881. "symfony/yaml": ""
  6882. },
  6883. "type": "library",
  6884. "autoload": {
  6885. "files": [
  6886. "Resources/functions.php"
  6887. ],
  6888. "psr-4": {
  6889. "Symfony\\Component\\Translation\\": ""
  6890. },
  6891. "exclude-from-classmap": [
  6892. "/Tests/"
  6893. ]
  6894. },
  6895. "notification-url": "https://packagist.org/downloads/",
  6896. "license": [
  6897. "MIT"
  6898. ],
  6899. "authors": [
  6900. {
  6901. "name": "Fabien Potencier",
  6902. "email": "[email protected]"
  6903. },
  6904. {
  6905. "name": "Symfony Community",
  6906. "homepage": "https://symfony.com/contributors"
  6907. }
  6908. ],
  6909. "description": "Provides tools to internationalize your application",
  6910. "homepage": "https://symfony.com",
  6911. "support": {
  6912. "source": "https://github.com/symfony/translation/tree/v5.3.0"
  6913. },
  6914. "funding": [
  6915. {
  6916. "url": "https://symfony.com/sponsor",
  6917. "type": "custom"
  6918. },
  6919. {
  6920. "url": "https://github.com/fabpot",
  6921. "type": "github"
  6922. },
  6923. {
  6924. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6925. "type": "tidelift"
  6926. }
  6927. ],
  6928. "time": "2021-05-29T22:28:28+00:00"
  6929. },
  6930. {
  6931. "name": "symfony/translation-contracts",
  6932. "version": "v2.4.0",
  6933. "source": {
  6934. "type": "git",
  6935. "url": "https://github.com/symfony/translation-contracts.git",
  6936. "reference": "95c812666f3e91db75385749fe219c5e494c7f95"
  6937. },
  6938. "dist": {
  6939. "type": "zip",
  6940. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/95c812666f3e91db75385749fe219c5e494c7f95",
  6941. "reference": "95c812666f3e91db75385749fe219c5e494c7f95",
  6942. "shasum": ""
  6943. },
  6944. "require": {
  6945. "php": ">=7.2.5"
  6946. },
  6947. "suggest": {
  6948. "symfony/translation-implementation": ""
  6949. },
  6950. "type": "library",
  6951. "extra": {
  6952. "branch-alias": {
  6953. "dev-main": "2.4-dev"
  6954. },
  6955. "thanks": {
  6956. "name": "symfony/contracts",
  6957. "url": "https://github.com/symfony/contracts"
  6958. }
  6959. },
  6960. "autoload": {
  6961. "psr-4": {
  6962. "Symfony\\Contracts\\Translation\\": ""
  6963. }
  6964. },
  6965. "notification-url": "https://packagist.org/downloads/",
  6966. "license": [
  6967. "MIT"
  6968. ],
  6969. "authors": [
  6970. {
  6971. "name": "Nicolas Grekas",
  6972. "email": "[email protected]"
  6973. },
  6974. {
  6975. "name": "Symfony Community",
  6976. "homepage": "https://symfony.com/contributors"
  6977. }
  6978. ],
  6979. "description": "Generic abstractions related to translation",
  6980. "homepage": "https://symfony.com",
  6981. "keywords": [
  6982. "abstractions",
  6983. "contracts",
  6984. "decoupling",
  6985. "interfaces",
  6986. "interoperability",
  6987. "standards"
  6988. ],
  6989. "support": {
  6990. "source": "https://github.com/symfony/translation-contracts/tree/v2.4.0"
  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": "2021-03-23T23:28:01+00:00"
  7007. },
  7008. {
  7009. "name": "symfony/var-dumper",
  7010. "version": "v5.3.0",
  7011. "source": {
  7012. "type": "git",
  7013. "url": "https://github.com/symfony/var-dumper.git",
  7014. "reference": "1d3953e627fe4b5f6df503f356b6545ada6351f3"
  7015. },
  7016. "dist": {
  7017. "type": "zip",
  7018. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/1d3953e627fe4b5f6df503f356b6545ada6351f3",
  7019. "reference": "1d3953e627fe4b5f6df503f356b6545ada6351f3",
  7020. "shasum": ""
  7021. },
  7022. "require": {
  7023. "php": ">=7.2.5",
  7024. "symfony/polyfill-mbstring": "~1.0",
  7025. "symfony/polyfill-php80": "^1.15"
  7026. },
  7027. "conflict": {
  7028. "phpunit/phpunit": "<5.4.3",
  7029. "symfony/console": "<4.4"
  7030. },
  7031. "require-dev": {
  7032. "ext-iconv": "*",
  7033. "symfony/console": "^4.4|^5.0",
  7034. "symfony/process": "^4.4|^5.0",
  7035. "twig/twig": "^2.13|^3.0.4"
  7036. },
  7037. "suggest": {
  7038. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  7039. "ext-intl": "To show region name in time zone dump",
  7040. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  7041. },
  7042. "bin": [
  7043. "Resources/bin/var-dump-server"
  7044. ],
  7045. "type": "library",
  7046. "autoload": {
  7047. "files": [
  7048. "Resources/functions/dump.php"
  7049. ],
  7050. "psr-4": {
  7051. "Symfony\\Component\\VarDumper\\": ""
  7052. },
  7053. "exclude-from-classmap": [
  7054. "/Tests/"
  7055. ]
  7056. },
  7057. "notification-url": "https://packagist.org/downloads/",
  7058. "license": [
  7059. "MIT"
  7060. ],
  7061. "authors": [
  7062. {
  7063. "name": "Nicolas Grekas",
  7064. "email": "[email protected]"
  7065. },
  7066. {
  7067. "name": "Symfony Community",
  7068. "homepage": "https://symfony.com/contributors"
  7069. }
  7070. ],
  7071. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7072. "homepage": "https://symfony.com",
  7073. "keywords": [
  7074. "debug",
  7075. "dump"
  7076. ],
  7077. "support": {
  7078. "source": "https://github.com/symfony/var-dumper/tree/v5.3.0"
  7079. },
  7080. "funding": [
  7081. {
  7082. "url": "https://symfony.com/sponsor",
  7083. "type": "custom"
  7084. },
  7085. {
  7086. "url": "https://github.com/fabpot",
  7087. "type": "github"
  7088. },
  7089. {
  7090. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7091. "type": "tidelift"
  7092. }
  7093. ],
  7094. "time": "2021-05-27T12:28:50+00:00"
  7095. },
  7096. {
  7097. "name": "symfony/yaml",
  7098. "version": "v5.3.0",
  7099. "source": {
  7100. "type": "git",
  7101. "url": "https://github.com/symfony/yaml.git",
  7102. "reference": "3bbcf262fceb3d8f48175302e6ba0ac96e3a5a11"
  7103. },
  7104. "dist": {
  7105. "type": "zip",
  7106. "url": "https://api.github.com/repos/symfony/yaml/zipball/3bbcf262fceb3d8f48175302e6ba0ac96e3a5a11",
  7107. "reference": "3bbcf262fceb3d8f48175302e6ba0ac96e3a5a11",
  7108. "shasum": ""
  7109. },
  7110. "require": {
  7111. "php": ">=7.2.5",
  7112. "symfony/deprecation-contracts": "^2.1",
  7113. "symfony/polyfill-ctype": "~1.8"
  7114. },
  7115. "conflict": {
  7116. "symfony/console": "<4.4"
  7117. },
  7118. "require-dev": {
  7119. "symfony/console": "^4.4|^5.0"
  7120. },
  7121. "suggest": {
  7122. "symfony/console": "For validating YAML files using the lint command"
  7123. },
  7124. "bin": [
  7125. "Resources/bin/yaml-lint"
  7126. ],
  7127. "type": "library",
  7128. "autoload": {
  7129. "psr-4": {
  7130. "Symfony\\Component\\Yaml\\": ""
  7131. },
  7132. "exclude-from-classmap": [
  7133. "/Tests/"
  7134. ]
  7135. },
  7136. "notification-url": "https://packagist.org/downloads/",
  7137. "license": [
  7138. "MIT"
  7139. ],
  7140. "authors": [
  7141. {
  7142. "name": "Fabien Potencier",
  7143. "email": "[email protected]"
  7144. },
  7145. {
  7146. "name": "Symfony Community",
  7147. "homepage": "https://symfony.com/contributors"
  7148. }
  7149. ],
  7150. "description": "Loads and dumps YAML files",
  7151. "homepage": "https://symfony.com",
  7152. "support": {
  7153. "source": "https://github.com/symfony/yaml/tree/v5.3.0"
  7154. },
  7155. "funding": [
  7156. {
  7157. "url": "https://symfony.com/sponsor",
  7158. "type": "custom"
  7159. },
  7160. {
  7161. "url": "https://github.com/fabpot",
  7162. "type": "github"
  7163. },
  7164. {
  7165. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7166. "type": "tidelift"
  7167. }
  7168. ],
  7169. "time": "2021-05-26T17:43:10+00:00"
  7170. },
  7171. {
  7172. "name": "tijsverkoyen/css-to-inline-styles",
  7173. "version": "2.2.3",
  7174. "source": {
  7175. "type": "git",
  7176. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7177. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5"
  7178. },
  7179. "dist": {
  7180. "type": "zip",
  7181. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/b43b05cf43c1b6d849478965062b6ef73e223bb5",
  7182. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5",
  7183. "shasum": ""
  7184. },
  7185. "require": {
  7186. "ext-dom": "*",
  7187. "ext-libxml": "*",
  7188. "php": "^5.5 || ^7.0 || ^8.0",
  7189. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0"
  7190. },
  7191. "require-dev": {
  7192. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5"
  7193. },
  7194. "type": "library",
  7195. "extra": {
  7196. "branch-alias": {
  7197. "dev-master": "2.2.x-dev"
  7198. }
  7199. },
  7200. "autoload": {
  7201. "psr-4": {
  7202. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  7203. }
  7204. },
  7205. "notification-url": "https://packagist.org/downloads/",
  7206. "license": [
  7207. "BSD-3-Clause"
  7208. ],
  7209. "authors": [
  7210. {
  7211. "name": "Tijs Verkoyen",
  7212. "email": "[email protected]",
  7213. "role": "Developer"
  7214. }
  7215. ],
  7216. "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.",
  7217. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  7218. "support": {
  7219. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  7220. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.3"
  7221. },
  7222. "time": "2020-07-13T06:12:54+00:00"
  7223. },
  7224. {
  7225. "name": "tymon/jwt-auth",
  7226. "version": "1.0.2",
  7227. "source": {
  7228. "type": "git",
  7229. "url": "https://github.com/tymondesigns/jwt-auth.git",
  7230. "reference": "e588cb719539366c0e2f6017f975379cb73e9680"
  7231. },
  7232. "dist": {
  7233. "type": "zip",
  7234. "url": "https://api.github.com/repos/tymondesigns/jwt-auth/zipball/e588cb719539366c0e2f6017f975379cb73e9680",
  7235. "reference": "e588cb719539366c0e2f6017f975379cb73e9680",
  7236. "shasum": ""
  7237. },
  7238. "require": {
  7239. "illuminate/auth": "^5.2|^6|^7|^8",
  7240. "illuminate/contracts": "^5.2|^6|^7|^8",
  7241. "illuminate/http": "^5.2|^6|^7|^8",
  7242. "illuminate/support": "^5.2|^6|^7|^8",
  7243. "lcobucci/jwt": "<3.4",
  7244. "namshi/jose": "^7.0",
  7245. "nesbot/carbon": "^1.0|^2.0",
  7246. "php": "^5.5.9|^7.0"
  7247. },
  7248. "require-dev": {
  7249. "illuminate/console": "^5.2|^6|^7|^8",
  7250. "illuminate/database": "^5.2|^6|^7|^8",
  7251. "illuminate/routing": "^5.2|^6|^7|^8",
  7252. "mockery/mockery": ">=0.9.9",
  7253. "phpunit/phpunit": "~4.8|~6.0"
  7254. },
  7255. "type": "library",
  7256. "extra": {
  7257. "branch-alias": {
  7258. "dev-develop": "1.0-dev"
  7259. },
  7260. "laravel": {
  7261. "aliases": {
  7262. "JWTAuth": "Tymon\\JWTAuth\\Facades\\JWTAuth",
  7263. "JWTFactory": "Tymon\\JWTAuth\\Facades\\JWTFactory"
  7264. },
  7265. "providers": [
  7266. "Tymon\\JWTAuth\\Providers\\LaravelServiceProvider"
  7267. ]
  7268. }
  7269. },
  7270. "autoload": {
  7271. "psr-4": {
  7272. "Tymon\\JWTAuth\\": "src/"
  7273. }
  7274. },
  7275. "notification-url": "https://packagist.org/downloads/",
  7276. "license": [
  7277. "MIT"
  7278. ],
  7279. "authors": [
  7280. {
  7281. "name": "Sean Tymon",
  7282. "email": "[email protected]",
  7283. "homepage": "https://tymon.xyz",
  7284. "role": "Developer"
  7285. }
  7286. ],
  7287. "description": "JSON Web Token Authentication for Laravel and Lumen",
  7288. "homepage": "https://github.com/tymondesigns/jwt-auth",
  7289. "keywords": [
  7290. "Authentication",
  7291. "JSON Web Token",
  7292. "auth",
  7293. "jwt",
  7294. "laravel"
  7295. ],
  7296. "support": {
  7297. "issues": "https://github.com/tymondesigns/jwt-auth/issues",
  7298. "source": "https://github.com/tymondesigns/jwt-auth"
  7299. },
  7300. "funding": [
  7301. {
  7302. "url": "https://www.patreon.com/seantymon",
  7303. "type": "patreon"
  7304. }
  7305. ],
  7306. "time": "2020-11-27T12:32:42+00:00"
  7307. },
  7308. {
  7309. "name": "vlucas/phpdotenv",
  7310. "version": "v4.2.0",
  7311. "source": {
  7312. "type": "git",
  7313. "url": "https://github.com/vlucas/phpdotenv.git",
  7314. "reference": "da64796370fc4eb03cc277088f6fede9fde88482"
  7315. },
  7316. "dist": {
  7317. "type": "zip",
  7318. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/da64796370fc4eb03cc277088f6fede9fde88482",
  7319. "reference": "da64796370fc4eb03cc277088f6fede9fde88482",
  7320. "shasum": ""
  7321. },
  7322. "require": {
  7323. "php": "^5.5.9 || ^7.0 || ^8.0",
  7324. "phpoption/phpoption": "^1.7.3",
  7325. "symfony/polyfill-ctype": "^1.17"
  7326. },
  7327. "require-dev": {
  7328. "bamarni/composer-bin-plugin": "^1.4.1",
  7329. "ext-filter": "*",
  7330. "ext-pcre": "*",
  7331. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20"
  7332. },
  7333. "suggest": {
  7334. "ext-filter": "Required to use the boolean validator.",
  7335. "ext-pcre": "Required to use most of the library."
  7336. },
  7337. "type": "library",
  7338. "extra": {
  7339. "branch-alias": {
  7340. "dev-master": "4.1-dev"
  7341. }
  7342. },
  7343. "autoload": {
  7344. "psr-4": {
  7345. "Dotenv\\": "src/"
  7346. }
  7347. },
  7348. "notification-url": "https://packagist.org/downloads/",
  7349. "license": [
  7350. "BSD-3-Clause"
  7351. ],
  7352. "authors": [
  7353. {
  7354. "name": "Graham Campbell",
  7355. "email": "[email protected]",
  7356. "homepage": "https://gjcampbell.co.uk/"
  7357. },
  7358. {
  7359. "name": "Vance Lucas",
  7360. "email": "[email protected]",
  7361. "homepage": "https://vancelucas.com/"
  7362. }
  7363. ],
  7364. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7365. "keywords": [
  7366. "dotenv",
  7367. "env",
  7368. "environment"
  7369. ],
  7370. "support": {
  7371. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7372. "source": "https://github.com/vlucas/phpdotenv/tree/v4.2.0"
  7373. },
  7374. "funding": [
  7375. {
  7376. "url": "https://github.com/GrahamCampbell",
  7377. "type": "github"
  7378. },
  7379. {
  7380. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7381. "type": "tidelift"
  7382. }
  7383. ],
  7384. "time": "2021-01-20T15:11:48+00:00"
  7385. },
  7386. {
  7387. "name": "voku/portable-ascii",
  7388. "version": "1.5.6",
  7389. "source": {
  7390. "type": "git",
  7391. "url": "https://github.com/voku/portable-ascii.git",
  7392. "reference": "80953678b19901e5165c56752d087fc11526017c"
  7393. },
  7394. "dist": {
  7395. "type": "zip",
  7396. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/80953678b19901e5165c56752d087fc11526017c",
  7397. "reference": "80953678b19901e5165c56752d087fc11526017c",
  7398. "shasum": ""
  7399. },
  7400. "require": {
  7401. "php": ">=7.0.0"
  7402. },
  7403. "require-dev": {
  7404. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  7405. },
  7406. "suggest": {
  7407. "ext-intl": "Use Intl for transliterator_transliterate() support"
  7408. },
  7409. "type": "library",
  7410. "autoload": {
  7411. "psr-4": {
  7412. "voku\\": "src/voku/"
  7413. }
  7414. },
  7415. "notification-url": "https://packagist.org/downloads/",
  7416. "license": [
  7417. "MIT"
  7418. ],
  7419. "authors": [
  7420. {
  7421. "name": "Lars Moelleken",
  7422. "homepage": "http://www.moelleken.org/"
  7423. }
  7424. ],
  7425. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  7426. "homepage": "https://github.com/voku/portable-ascii",
  7427. "keywords": [
  7428. "ascii",
  7429. "clean",
  7430. "php"
  7431. ],
  7432. "support": {
  7433. "issues": "https://github.com/voku/portable-ascii/issues",
  7434. "source": "https://github.com/voku/portable-ascii/tree/1.5.6"
  7435. },
  7436. "funding": [
  7437. {
  7438. "url": "https://www.paypal.me/moelleken",
  7439. "type": "custom"
  7440. },
  7441. {
  7442. "url": "https://github.com/voku",
  7443. "type": "github"
  7444. },
  7445. {
  7446. "url": "https://opencollective.com/portable-ascii",
  7447. "type": "open_collective"
  7448. },
  7449. {
  7450. "url": "https://www.patreon.com/voku",
  7451. "type": "patreon"
  7452. },
  7453. {
  7454. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  7455. "type": "tidelift"
  7456. }
  7457. ],
  7458. "time": "2020-11-12T00:07:28+00:00"
  7459. },
  7460. {
  7461. "name": "xhat/payjs",
  7462. "version": "1.5.0",
  7463. "source": {
  7464. "type": "git",
  7465. "url": "https://github.com/xhat/payjs.git",
  7466. "reference": "d15b678f7fb70fc70bafa82c5a7896fceebad364"
  7467. },
  7468. "dist": {
  7469. "type": "zip",
  7470. "url": "https://api.github.com/repos/xhat/payjs/zipball/d15b678f7fb70fc70bafa82c5a7896fceebad364",
  7471. "reference": "d15b678f7fb70fc70bafa82c5a7896fceebad364",
  7472. "shasum": ""
  7473. },
  7474. "type": "library",
  7475. "autoload": {
  7476. "psr-4": {
  7477. "Xhat\\Payjs\\": "src/"
  7478. }
  7479. },
  7480. "notification-url": "https://packagist.org/downloads/",
  7481. "license": [
  7482. "MIT"
  7483. ],
  7484. "authors": [
  7485. {
  7486. "name": "andy",
  7487. "email": "[email protected]"
  7488. }
  7489. ],
  7490. "description": "本项目是基于 PAYJS 的 API 开发的 Composer Package,可直接用于生产环境 https://payjs.cn",
  7491. "support": {
  7492. "issues": "https://github.com/xhat/payjs/issues",
  7493. "source": "https://github.com/xhat/payjs/tree/1.5.0"
  7494. },
  7495. "funding": [
  7496. {
  7497. "url": "https://payjs.cn/sponsor/dajjxz",
  7498. "type": "custom"
  7499. }
  7500. ],
  7501. "time": "2020-09-11T06:02:42+00:00"
  7502. },
  7503. {
  7504. "name": "zbrettonye/geetest",
  7505. "version": "v1.2.0",
  7506. "source": {
  7507. "type": "git",
  7508. "url": "https://github.com/ZBrettonYe/geetest.git",
  7509. "reference": "ee08e5bee9be831c23df241d3ab75678a8ce5fed"
  7510. },
  7511. "dist": {
  7512. "type": "zip",
  7513. "url": "https://api.github.com/repos/ZBrettonYe/geetest/zipball/ee08e5bee9be831c23df241d3ab75678a8ce5fed",
  7514. "reference": "ee08e5bee9be831c23df241d3ab75678a8ce5fed",
  7515. "shasum": ""
  7516. },
  7517. "require": {
  7518. "ext-json": "*",
  7519. "guzzlehttp/guzzle": "^6.3|^7.0",
  7520. "illuminate/routing": "^6|^7|^8",
  7521. "illuminate/support": "^6|^7|^8",
  7522. "php": "^7.2"
  7523. },
  7524. "require-dev": {
  7525. "mockery/mockery": "^1.3.1",
  7526. "phpunit/phpunit": "^7.5.15|^8.4|^9.0"
  7527. },
  7528. "type": "library",
  7529. "extra": {
  7530. "laravel": {
  7531. "providers": [
  7532. "ZBrettonYe\\Geetest\\GeetestServiceProvider"
  7533. ],
  7534. "aliases": {
  7535. "Geetest": "ZBrettonYe\\Geetest\\Geetest"
  7536. }
  7537. }
  7538. },
  7539. "autoload": {
  7540. "psr-4": {
  7541. "ZBrettonYe\\Geetest\\": "src/"
  7542. }
  7543. },
  7544. "notification-url": "https://packagist.org/downloads/",
  7545. "license": [
  7546. "MIT"
  7547. ],
  7548. "authors": [
  7549. {
  7550. "name": "zbrettonye",
  7551. "email": "[email protected]"
  7552. }
  7553. ],
  7554. "description": "Geetest Package for Laravel6-8",
  7555. "keywords": [
  7556. "geetest",
  7557. "laravel"
  7558. ],
  7559. "support": {
  7560. "source": "https://github.com/ZBrettonYe/geetest/tree/v1.2.0"
  7561. },
  7562. "time": "2020-10-13T20:15:36+00:00"
  7563. },
  7564. {
  7565. "name": "zbrettonye/hcaptcha",
  7566. "version": "V1.1.0",
  7567. "source": {
  7568. "type": "git",
  7569. "url": "https://github.com/ZBrettonYe/hcaptcha.git",
  7570. "reference": "d84cb1bcf754ada345da8baadf7129dbca67d1ee"
  7571. },
  7572. "dist": {
  7573. "type": "zip",
  7574. "url": "https://api.github.com/repos/ZBrettonYe/hcaptcha/zipball/d84cb1bcf754ada345da8baadf7129dbca67d1ee",
  7575. "reference": "d84cb1bcf754ada345da8baadf7129dbca67d1ee",
  7576. "shasum": ""
  7577. },
  7578. "require": {
  7579. "guzzlehttp/guzzle": "^6.2|^7.0",
  7580. "illuminate/support": "^6|^7|^8",
  7581. "php": "^7.2"
  7582. },
  7583. "require-dev": {
  7584. "phpunit/phpunit": "~4.8"
  7585. },
  7586. "type": "library",
  7587. "extra": {
  7588. "laravel": {
  7589. "providers": [
  7590. "ZBrettonYe\\HCaptcha\\HCaptchaServiceProvider"
  7591. ],
  7592. "aliases": {
  7593. "HCaptcha": "ZBrettonYe\\HCaptcha\\Facades\\HCaptcha"
  7594. }
  7595. }
  7596. },
  7597. "autoload": {
  7598. "psr-4": {
  7599. "ZBrettonYe\\HCaptcha\\": "src/"
  7600. }
  7601. },
  7602. "notification-url": "https://packagist.org/downloads/",
  7603. "license": [
  7604. "MIT"
  7605. ],
  7606. "authors": [
  7607. {
  7608. "name": "zbrettonye",
  7609. "email": "[email protected]"
  7610. }
  7611. ],
  7612. "description": "hCaptcha For Laravel6~8",
  7613. "keywords": [
  7614. "captcha",
  7615. "hcaptcha",
  7616. "laravel"
  7617. ],
  7618. "support": {
  7619. "source": "https://github.com/ZBrettonYe/hcaptcha/tree/V1.1.0"
  7620. },
  7621. "time": "2020-10-13T21:22:51+00:00"
  7622. },
  7623. {
  7624. "name": "zbrettonye/no-captcha",
  7625. "version": "v1.1.0",
  7626. "source": {
  7627. "type": "git",
  7628. "url": "https://github.com/ZBrettonYe/no-captcha.git",
  7629. "reference": "4cb229bf5fa9f5726eb5a821e9710c5fc8edad28"
  7630. },
  7631. "dist": {
  7632. "type": "zip",
  7633. "url": "https://api.github.com/repos/ZBrettonYe/no-captcha/zipball/4cb229bf5fa9f5726eb5a821e9710c5fc8edad28",
  7634. "reference": "4cb229bf5fa9f5726eb5a821e9710c5fc8edad28",
  7635. "shasum": ""
  7636. },
  7637. "require": {
  7638. "ext-json": "*",
  7639. "guzzlehttp/guzzle": "^6.2|^7.0",
  7640. "illuminate/support": "^6|^7|^8",
  7641. "php": "^7.2"
  7642. },
  7643. "require-dev": {
  7644. "phpunit/phpunit": "~4.8"
  7645. },
  7646. "type": "library",
  7647. "extra": {
  7648. "laravel": {
  7649. "providers": [
  7650. "ZBrettonYe\\NoCaptcha\\NoCaptchaServiceProvider"
  7651. ],
  7652. "aliases": {
  7653. "NoCaptcha": "ZBrettonYe\\NoCaptcha\\Facades\\NoCaptcha"
  7654. }
  7655. }
  7656. },
  7657. "autoload": {
  7658. "psr-4": {
  7659. "ZBrettonYe\\NoCaptcha\\": "src/"
  7660. }
  7661. },
  7662. "notification-url": "https://packagist.org/downloads/",
  7663. "license": [
  7664. "MIT"
  7665. ],
  7666. "authors": [
  7667. {
  7668. "name": "zbrettonye",
  7669. "email": "[email protected]"
  7670. }
  7671. ],
  7672. "description": "No CAPTCHA reCAPTCHA For Laravel6~8",
  7673. "keywords": [
  7674. "captcha",
  7675. "laravel",
  7676. "no-captcha",
  7677. "recaptcha"
  7678. ],
  7679. "support": {
  7680. "source": "https://github.com/ZBrettonYe/no-captcha/tree/v1.1.0"
  7681. },
  7682. "time": "2020-10-13T21:35:30+00:00"
  7683. },
  7684. {
  7685. "name": "zoujingli/ip2region",
  7686. "version": "v1.0.10",
  7687. "source": {
  7688. "type": "git",
  7689. "url": "https://github.com/zoujingli/ip2region.git",
  7690. "reference": "453480d0ab5b6fdbdf4aa400b7598a10ff2dc5c0"
  7691. },
  7692. "dist": {
  7693. "type": "zip",
  7694. "url": "https://api.github.com/repos/zoujingli/ip2region/zipball/453480d0ab5b6fdbdf4aa400b7598a10ff2dc5c0",
  7695. "reference": "453480d0ab5b6fdbdf4aa400b7598a10ff2dc5c0",
  7696. "shasum": ""
  7697. },
  7698. "require": {
  7699. "php": ">=5.3"
  7700. },
  7701. "type": "library",
  7702. "autoload": {
  7703. "classmap": [
  7704. "Ip2Region.php"
  7705. ]
  7706. },
  7707. "notification-url": "https://packagist.org/downloads/",
  7708. "license": [
  7709. "Apache-2.0"
  7710. ],
  7711. "authors": [
  7712. {
  7713. "name": "Anyon",
  7714. "email": "[email protected]",
  7715. "homepage": "http://ctolog.com"
  7716. }
  7717. ],
  7718. "description": "Ip2Region for PHP",
  7719. "homepage": "https://github.com/zoujingli/Ip2Region",
  7720. "keywords": [
  7721. "Ip2Region"
  7722. ],
  7723. "support": {
  7724. "issues": "https://github.com/zoujingli/ip2region/issues",
  7725. "source": "https://github.com/zoujingli/ip2region/tree/v1.0.10"
  7726. },
  7727. "time": "2021-03-23T10:29:05+00:00"
  7728. }
  7729. ],
  7730. "packages-dev": [
  7731. {
  7732. "name": "arcanedev/laravel-lang",
  7733. "version": "8.2.0",
  7734. "source": {
  7735. "type": "git",
  7736. "url": "https://github.com/ARCANEDEV/LaravelLang.git",
  7737. "reference": "b9a4a6d21aec778befca7594d34b1748354f43a2"
  7738. },
  7739. "dist": {
  7740. "type": "zip",
  7741. "url": "https://api.github.com/repos/ARCANEDEV/LaravelLang/zipball/b9a4a6d21aec778befca7594d34b1748354f43a2",
  7742. "reference": "b9a4a6d21aec778befca7594d34b1748354f43a2",
  7743. "shasum": ""
  7744. },
  7745. "require": {
  7746. "arcanedev/support": "^7.1.2",
  7747. "caouecs/laravel-lang": "^7.0.1",
  7748. "php": "^7.2.5"
  7749. },
  7750. "require-dev": {
  7751. "mockery/mockery": "^1.3.1",
  7752. "orchestra/testbench": "^5.0",
  7753. "phpunit/phpunit": "^8.5"
  7754. },
  7755. "type": "library",
  7756. "extra": {
  7757. "laravel": {
  7758. "providers": [
  7759. "Arcanedev\\LaravelLang\\LaravelLangServiceProvider",
  7760. "Arcanedev\\LaravelLang\\Providers\\DeferredServicesProvider",
  7761. "Arcanedev\\LaravelLang\\Providers\\TranslationServiceProvider"
  7762. ]
  7763. }
  7764. },
  7765. "autoload": {
  7766. "psr-4": {
  7767. "Arcanedev\\LaravelLang\\": "src/"
  7768. }
  7769. },
  7770. "notification-url": "https://packagist.org/downloads/",
  7771. "license": [
  7772. "MIT"
  7773. ],
  7774. "authors": [
  7775. {
  7776. "name": "ARCANEDEV",
  7777. "email": "[email protected]",
  7778. "homepage": "https://github.com/arcanedev-maroc",
  7779. "role": "Developer"
  7780. }
  7781. ],
  7782. "description": "Translations manager and checker for Laravel based on 'caouecs/laravel-lang' package.",
  7783. "homepage": "https://github.com/ARCANEDEV/LaravelLang",
  7784. "keywords": [
  7785. "arcanedev",
  7786. "lang",
  7787. "languages",
  7788. "laravel",
  7789. "localisation",
  7790. "localization",
  7791. "trans",
  7792. "translations",
  7793. "validations"
  7794. ],
  7795. "support": {
  7796. "issues": "https://github.com/ARCANEDEV/LaravelLang/issues",
  7797. "source": "https://github.com/ARCANEDEV/LaravelLang/tree/master"
  7798. },
  7799. "time": "2020-07-14T10:10:34+00:00"
  7800. },
  7801. {
  7802. "name": "arcanedev/support",
  7803. "version": "7.1.2",
  7804. "source": {
  7805. "type": "git",
  7806. "url": "https://github.com/ARCANEDEV/Support.git",
  7807. "reference": "7e4199d30f04c611ba5d895e663f111c217ff5a3"
  7808. },
  7809. "dist": {
  7810. "type": "zip",
  7811. "url": "https://api.github.com/repos/ARCANEDEV/Support/zipball/7e4199d30f04c611ba5d895e663f111c217ff5a3",
  7812. "reference": "7e4199d30f04c611ba5d895e663f111c217ff5a3",
  7813. "shasum": ""
  7814. },
  7815. "require": {
  7816. "illuminate/filesystem": "^7.0",
  7817. "illuminate/support": "^7.0",
  7818. "php": "^7.2.5"
  7819. },
  7820. "require-dev": {
  7821. "orchestra/testbench": "^5.0",
  7822. "phpunit/phpunit": "^8.0|^9.0"
  7823. },
  7824. "type": "library",
  7825. "extra": {
  7826. "branch-alias": {
  7827. "dev-master": "7.x-dev"
  7828. }
  7829. },
  7830. "autoload": {
  7831. "psr-4": {
  7832. "Arcanedev\\Support\\": "src/"
  7833. },
  7834. "files": [
  7835. "helpers.php"
  7836. ]
  7837. },
  7838. "notification-url": "https://packagist.org/downloads/",
  7839. "license": [
  7840. "MIT"
  7841. ],
  7842. "authors": [
  7843. {
  7844. "name": "ARCANEDEV",
  7845. "email": "[email protected]",
  7846. "homepage": "https://github.com/arcanedev-maroc"
  7847. }
  7848. ],
  7849. "description": "ARCANEDEV Support Helpers",
  7850. "homepage": "https://github.com/ARCANEDEV/Support",
  7851. "keywords": [
  7852. "arcanedev",
  7853. "arcanesoft",
  7854. "laravel",
  7855. "support"
  7856. ],
  7857. "support": {
  7858. "issues": "https://github.com/ARCANEDEV/Support/issues",
  7859. "source": "https://github.com/ARCANEDEV/Support/tree/7.1.2"
  7860. },
  7861. "time": "2020-03-12T09:28:19+00:00"
  7862. },
  7863. {
  7864. "name": "barryvdh/laravel-debugbar",
  7865. "version": "v3.6.1",
  7866. "source": {
  7867. "type": "git",
  7868. "url": "https://github.com/barryvdh/laravel-debugbar.git",
  7869. "reference": "f6f0f895a33cac801286a74355d146bb5384a5da"
  7870. },
  7871. "dist": {
  7872. "type": "zip",
  7873. "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/f6f0f895a33cac801286a74355d146bb5384a5da",
  7874. "reference": "f6f0f895a33cac801286a74355d146bb5384a5da",
  7875. "shasum": ""
  7876. },
  7877. "require": {
  7878. "illuminate/routing": "^6|^7|^8",
  7879. "illuminate/session": "^6|^7|^8",
  7880. "illuminate/support": "^6|^7|^8",
  7881. "maximebf/debugbar": "^1.16.3",
  7882. "php": ">=7.2",
  7883. "symfony/debug": "^4.3|^5",
  7884. "symfony/finder": "^4.3|^5"
  7885. },
  7886. "require-dev": {
  7887. "mockery/mockery": "^1.3.3",
  7888. "orchestra/testbench-dusk": "^4|^5|^6",
  7889. "phpunit/phpunit": "^8.5|^9.0",
  7890. "squizlabs/php_codesniffer": "^3.5"
  7891. },
  7892. "type": "library",
  7893. "extra": {
  7894. "branch-alias": {
  7895. "dev-master": "3.5-dev"
  7896. },
  7897. "laravel": {
  7898. "providers": [
  7899. "Barryvdh\\Debugbar\\ServiceProvider"
  7900. ],
  7901. "aliases": {
  7902. "Debugbar": "Barryvdh\\Debugbar\\Facade"
  7903. }
  7904. }
  7905. },
  7906. "autoload": {
  7907. "psr-4": {
  7908. "Barryvdh\\Debugbar\\": "src/"
  7909. },
  7910. "files": [
  7911. "src/helpers.php"
  7912. ]
  7913. },
  7914. "notification-url": "https://packagist.org/downloads/",
  7915. "license": [
  7916. "MIT"
  7917. ],
  7918. "authors": [
  7919. {
  7920. "name": "Barry vd. Heuvel",
  7921. "email": "[email protected]"
  7922. }
  7923. ],
  7924. "description": "PHP Debugbar integration for Laravel",
  7925. "keywords": [
  7926. "debug",
  7927. "debugbar",
  7928. "laravel",
  7929. "profiler",
  7930. "webprofiler"
  7931. ],
  7932. "support": {
  7933. "issues": "https://github.com/barryvdh/laravel-debugbar/issues",
  7934. "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.6.1"
  7935. },
  7936. "funding": [
  7937. {
  7938. "url": "https://github.com/barryvdh",
  7939. "type": "github"
  7940. }
  7941. ],
  7942. "time": "2021-06-02T06:42:22+00:00"
  7943. },
  7944. {
  7945. "name": "barryvdh/laravel-ide-helper",
  7946. "version": "v2.8.2",
  7947. "source": {
  7948. "type": "git",
  7949. "url": "https://github.com/barryvdh/laravel-ide-helper.git",
  7950. "reference": "5515cabea39b9cf55f98980d0f269dc9d85cfcca"
  7951. },
  7952. "dist": {
  7953. "type": "zip",
  7954. "url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/5515cabea39b9cf55f98980d0f269dc9d85cfcca",
  7955. "reference": "5515cabea39b9cf55f98980d0f269dc9d85cfcca",
  7956. "shasum": ""
  7957. },
  7958. "require": {
  7959. "barryvdh/reflection-docblock": "^2.0.6",
  7960. "composer/composer": "^1.6 || ^2",
  7961. "doctrine/dbal": "~2.3",
  7962. "ext-json": "*",
  7963. "illuminate/console": "^6 || ^7 || ^8",
  7964. "illuminate/filesystem": "^6 || ^7 || ^8",
  7965. "illuminate/support": "^6 || ^7 || ^8",
  7966. "php": ">=7.2",
  7967. "phpdocumentor/type-resolver": "^1.1.0"
  7968. },
  7969. "require-dev": {
  7970. "ext-pdo_sqlite": "*",
  7971. "friendsofphp/php-cs-fixer": "^2",
  7972. "illuminate/config": "^6 || ^7 || ^8",
  7973. "illuminate/view": "^6 || ^7 || ^8",
  7974. "mockery/mockery": "^1.3.3",
  7975. "orchestra/testbench": "^4 || ^5 || ^6",
  7976. "phpunit/phpunit": "^8.5 || ^9",
  7977. "spatie/phpunit-snapshot-assertions": "^1.4 || ^2.2 || ^3 || ^4",
  7978. "vimeo/psalm": "^3.12"
  7979. },
  7980. "type": "library",
  7981. "extra": {
  7982. "branch-alias": {
  7983. "dev-master": "2.8-dev"
  7984. },
  7985. "laravel": {
  7986. "providers": [
  7987. "Barryvdh\\LaravelIdeHelper\\IdeHelperServiceProvider"
  7988. ]
  7989. }
  7990. },
  7991. "autoload": {
  7992. "psr-4": {
  7993. "Barryvdh\\LaravelIdeHelper\\": "src"
  7994. }
  7995. },
  7996. "notification-url": "https://packagist.org/downloads/",
  7997. "license": [
  7998. "MIT"
  7999. ],
  8000. "authors": [
  8001. {
  8002. "name": "Barry vd. Heuvel",
  8003. "email": "[email protected]"
  8004. }
  8005. ],
  8006. "description": "Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.",
  8007. "keywords": [
  8008. "autocomplete",
  8009. "codeintel",
  8010. "helper",
  8011. "ide",
  8012. "laravel",
  8013. "netbeans",
  8014. "phpdoc",
  8015. "phpstorm",
  8016. "sublime"
  8017. ],
  8018. "support": {
  8019. "issues": "https://github.com/barryvdh/laravel-ide-helper/issues",
  8020. "source": "https://github.com/barryvdh/laravel-ide-helper/tree/v2.8.2"
  8021. },
  8022. "funding": [
  8023. {
  8024. "url": "https://github.com/barryvdh",
  8025. "type": "github"
  8026. }
  8027. ],
  8028. "time": "2020-12-06T08:55:05+00:00"
  8029. },
  8030. {
  8031. "name": "barryvdh/reflection-docblock",
  8032. "version": "v2.0.6",
  8033. "source": {
  8034. "type": "git",
  8035. "url": "https://github.com/barryvdh/ReflectionDocBlock.git",
  8036. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16"
  8037. },
  8038. "dist": {
  8039. "type": "zip",
  8040. "url": "https://api.github.com/repos/barryvdh/ReflectionDocBlock/zipball/6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  8041. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  8042. "shasum": ""
  8043. },
  8044. "require": {
  8045. "php": ">=5.3.3"
  8046. },
  8047. "require-dev": {
  8048. "phpunit/phpunit": "~4.0,<4.5"
  8049. },
  8050. "suggest": {
  8051. "dflydev/markdown": "~1.0",
  8052. "erusev/parsedown": "~1.0"
  8053. },
  8054. "type": "library",
  8055. "extra": {
  8056. "branch-alias": {
  8057. "dev-master": "2.0.x-dev"
  8058. }
  8059. },
  8060. "autoload": {
  8061. "psr-0": {
  8062. "Barryvdh": [
  8063. "src/"
  8064. ]
  8065. }
  8066. },
  8067. "notification-url": "https://packagist.org/downloads/",
  8068. "license": [
  8069. "MIT"
  8070. ],
  8071. "authors": [
  8072. {
  8073. "name": "Mike van Riel",
  8074. "email": "[email protected]"
  8075. }
  8076. ],
  8077. "support": {
  8078. "source": "https://github.com/barryvdh/ReflectionDocBlock/tree/v2.0.6"
  8079. },
  8080. "time": "2018-12-13T10:34:14+00:00"
  8081. },
  8082. {
  8083. "name": "caouecs/laravel-lang",
  8084. "version": "7.0.3",
  8085. "source": {
  8086. "type": "git",
  8087. "url": "https://github.com/caouecs/lang.git",
  8088. "reference": "2cb9932f781415f1669ce27d29e5b86399ab164a"
  8089. },
  8090. "dist": {
  8091. "type": "zip",
  8092. "url": "https://api.github.com/repos/caouecs/lang/zipball/2cb9932f781415f1669ce27d29e5b86399ab164a",
  8093. "reference": "2cb9932f781415f1669ce27d29e5b86399ab164a",
  8094. "shasum": ""
  8095. },
  8096. "require": {
  8097. "ext-json": "*"
  8098. },
  8099. "suggest": {
  8100. "andrey-helldar/laravel-lang-publisher": "Easy installation and update of translation files for your project",
  8101. "arcanedev/laravel-lang": "Translations manager and checker for Laravel 5",
  8102. "overtrue/laravel-lang": "Command to add languages in your project"
  8103. },
  8104. "type": "library",
  8105. "notification-url": "https://packagist.org/downloads/",
  8106. "license": [
  8107. "MIT"
  8108. ],
  8109. "authors": [
  8110. {
  8111. "name": "caouecs",
  8112. "email": "[email protected]"
  8113. }
  8114. ],
  8115. "description": "Languages for Laravel",
  8116. "keywords": [
  8117. "lang",
  8118. "languages",
  8119. "laravel",
  8120. "lpm"
  8121. ],
  8122. "support": {
  8123. "source": "https://github.com/caouecs/lang/tree/7.0.3"
  8124. },
  8125. "abandoned": "https://github.com/Laravel-Lang/lang",
  8126. "time": "2020-08-23T08:17:21+00:00"
  8127. },
  8128. {
  8129. "name": "composer/composer",
  8130. "version": "2.1.1",
  8131. "source": {
  8132. "type": "git",
  8133. "url": "https://github.com/composer/composer.git",
  8134. "reference": "e338749d4e6cc97e1136c210ce0212d4a59e3a58"
  8135. },
  8136. "dist": {
  8137. "type": "zip",
  8138. "url": "https://api.github.com/repos/composer/composer/zipball/e338749d4e6cc97e1136c210ce0212d4a59e3a58",
  8139. "reference": "e338749d4e6cc97e1136c210ce0212d4a59e3a58",
  8140. "shasum": ""
  8141. },
  8142. "require": {
  8143. "composer/ca-bundle": "^1.0",
  8144. "composer/metadata-minifier": "^1.0",
  8145. "composer/semver": "^3.0",
  8146. "composer/spdx-licenses": "^1.2",
  8147. "composer/xdebug-handler": "^2.0",
  8148. "justinrainbow/json-schema": "^5.2.10",
  8149. "php": "^5.3.2 || ^7.0 || ^8.0",
  8150. "psr/log": "^1.0",
  8151. "react/promise": "^1.2 || ^2.7",
  8152. "seld/jsonlint": "^1.4",
  8153. "seld/phar-utils": "^1.0",
  8154. "symfony/console": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0 || ^6.0",
  8155. "symfony/filesystem": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0 || ^6.0",
  8156. "symfony/finder": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0 || ^6.0",
  8157. "symfony/process": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0 || ^6.0"
  8158. },
  8159. "require-dev": {
  8160. "phpspec/prophecy": "^1.10",
  8161. "symfony/phpunit-bridge": "^4.2 || ^5.0 || ^6.0"
  8162. },
  8163. "suggest": {
  8164. "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages",
  8165. "ext-zip": "Enabling the zip extension allows you to unzip archives",
  8166. "ext-zlib": "Allow gzip compression of HTTP requests"
  8167. },
  8168. "bin": [
  8169. "bin/composer"
  8170. ],
  8171. "type": "library",
  8172. "extra": {
  8173. "branch-alias": {
  8174. "dev-master": "2.1-dev"
  8175. }
  8176. },
  8177. "autoload": {
  8178. "psr-4": {
  8179. "Composer\\": "src/Composer"
  8180. }
  8181. },
  8182. "notification-url": "https://packagist.org/downloads/",
  8183. "license": [
  8184. "MIT"
  8185. ],
  8186. "authors": [
  8187. {
  8188. "name": "Nils Adermann",
  8189. "email": "[email protected]",
  8190. "homepage": "https://www.naderman.de"
  8191. },
  8192. {
  8193. "name": "Jordi Boggiano",
  8194. "email": "[email protected]",
  8195. "homepage": "https://seld.be"
  8196. }
  8197. ],
  8198. "description": "Composer helps you declare, manage and install dependencies of PHP projects. It ensures you have the right stack everywhere.",
  8199. "homepage": "https://getcomposer.org/",
  8200. "keywords": [
  8201. "autoload",
  8202. "dependency",
  8203. "package"
  8204. ],
  8205. "support": {
  8206. "irc": "irc://irc.freenode.org/composer",
  8207. "issues": "https://github.com/composer/composer/issues",
  8208. "source": "https://github.com/composer/composer/tree/2.1.1"
  8209. },
  8210. "funding": [
  8211. {
  8212. "url": "https://packagist.com",
  8213. "type": "custom"
  8214. },
  8215. {
  8216. "url": "https://github.com/composer",
  8217. "type": "github"
  8218. },
  8219. {
  8220. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8221. "type": "tidelift"
  8222. }
  8223. ],
  8224. "time": "2021-06-04T06:46:46+00:00"
  8225. },
  8226. {
  8227. "name": "composer/metadata-minifier",
  8228. "version": "1.0.0",
  8229. "source": {
  8230. "type": "git",
  8231. "url": "https://github.com/composer/metadata-minifier.git",
  8232. "reference": "c549d23829536f0d0e984aaabbf02af91f443207"
  8233. },
  8234. "dist": {
  8235. "type": "zip",
  8236. "url": "https://api.github.com/repos/composer/metadata-minifier/zipball/c549d23829536f0d0e984aaabbf02af91f443207",
  8237. "reference": "c549d23829536f0d0e984aaabbf02af91f443207",
  8238. "shasum": ""
  8239. },
  8240. "require": {
  8241. "php": "^5.3.2 || ^7.0 || ^8.0"
  8242. },
  8243. "require-dev": {
  8244. "composer/composer": "^2",
  8245. "phpstan/phpstan": "^0.12.55",
  8246. "symfony/phpunit-bridge": "^4.2 || ^5"
  8247. },
  8248. "type": "library",
  8249. "extra": {
  8250. "branch-alias": {
  8251. "dev-main": "1.x-dev"
  8252. }
  8253. },
  8254. "autoload": {
  8255. "psr-4": {
  8256. "Composer\\MetadataMinifier\\": "src"
  8257. }
  8258. },
  8259. "notification-url": "https://packagist.org/downloads/",
  8260. "license": [
  8261. "MIT"
  8262. ],
  8263. "authors": [
  8264. {
  8265. "name": "Jordi Boggiano",
  8266. "email": "[email protected]",
  8267. "homepage": "http://seld.be"
  8268. }
  8269. ],
  8270. "description": "Small utility library that handles metadata minification and expansion.",
  8271. "keywords": [
  8272. "composer",
  8273. "compression"
  8274. ],
  8275. "support": {
  8276. "issues": "https://github.com/composer/metadata-minifier/issues",
  8277. "source": "https://github.com/composer/metadata-minifier/tree/1.0.0"
  8278. },
  8279. "funding": [
  8280. {
  8281. "url": "https://packagist.com",
  8282. "type": "custom"
  8283. },
  8284. {
  8285. "url": "https://github.com/composer",
  8286. "type": "github"
  8287. },
  8288. {
  8289. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8290. "type": "tidelift"
  8291. }
  8292. ],
  8293. "time": "2021-04-07T13:37:33+00:00"
  8294. },
  8295. {
  8296. "name": "composer/semver",
  8297. "version": "3.2.5",
  8298. "source": {
  8299. "type": "git",
  8300. "url": "https://github.com/composer/semver.git",
  8301. "reference": "31f3ea725711245195f62e54ffa402d8ef2fdba9"
  8302. },
  8303. "dist": {
  8304. "type": "zip",
  8305. "url": "https://api.github.com/repos/composer/semver/zipball/31f3ea725711245195f62e54ffa402d8ef2fdba9",
  8306. "reference": "31f3ea725711245195f62e54ffa402d8ef2fdba9",
  8307. "shasum": ""
  8308. },
  8309. "require": {
  8310. "php": "^5.3.2 || ^7.0 || ^8.0"
  8311. },
  8312. "require-dev": {
  8313. "phpstan/phpstan": "^0.12.54",
  8314. "symfony/phpunit-bridge": "^4.2 || ^5"
  8315. },
  8316. "type": "library",
  8317. "extra": {
  8318. "branch-alias": {
  8319. "dev-main": "3.x-dev"
  8320. }
  8321. },
  8322. "autoload": {
  8323. "psr-4": {
  8324. "Composer\\Semver\\": "src"
  8325. }
  8326. },
  8327. "notification-url": "https://packagist.org/downloads/",
  8328. "license": [
  8329. "MIT"
  8330. ],
  8331. "authors": [
  8332. {
  8333. "name": "Nils Adermann",
  8334. "email": "[email protected]",
  8335. "homepage": "http://www.naderman.de"
  8336. },
  8337. {
  8338. "name": "Jordi Boggiano",
  8339. "email": "[email protected]",
  8340. "homepage": "http://seld.be"
  8341. },
  8342. {
  8343. "name": "Rob Bast",
  8344. "email": "[email protected]",
  8345. "homepage": "http://robbast.nl"
  8346. }
  8347. ],
  8348. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  8349. "keywords": [
  8350. "semantic",
  8351. "semver",
  8352. "validation",
  8353. "versioning"
  8354. ],
  8355. "support": {
  8356. "irc": "irc://irc.freenode.org/composer",
  8357. "issues": "https://github.com/composer/semver/issues",
  8358. "source": "https://github.com/composer/semver/tree/3.2.5"
  8359. },
  8360. "funding": [
  8361. {
  8362. "url": "https://packagist.com",
  8363. "type": "custom"
  8364. },
  8365. {
  8366. "url": "https://github.com/composer",
  8367. "type": "github"
  8368. },
  8369. {
  8370. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8371. "type": "tidelift"
  8372. }
  8373. ],
  8374. "time": "2021-05-24T12:41:47+00:00"
  8375. },
  8376. {
  8377. "name": "composer/spdx-licenses",
  8378. "version": "1.5.5",
  8379. "source": {
  8380. "type": "git",
  8381. "url": "https://github.com/composer/spdx-licenses.git",
  8382. "reference": "de30328a7af8680efdc03e396aad24befd513200"
  8383. },
  8384. "dist": {
  8385. "type": "zip",
  8386. "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/de30328a7af8680efdc03e396aad24befd513200",
  8387. "reference": "de30328a7af8680efdc03e396aad24befd513200",
  8388. "shasum": ""
  8389. },
  8390. "require": {
  8391. "php": "^5.3.2 || ^7.0 || ^8.0"
  8392. },
  8393. "require-dev": {
  8394. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 7"
  8395. },
  8396. "type": "library",
  8397. "extra": {
  8398. "branch-alias": {
  8399. "dev-main": "1.x-dev"
  8400. }
  8401. },
  8402. "autoload": {
  8403. "psr-4": {
  8404. "Composer\\Spdx\\": "src"
  8405. }
  8406. },
  8407. "notification-url": "https://packagist.org/downloads/",
  8408. "license": [
  8409. "MIT"
  8410. ],
  8411. "authors": [
  8412. {
  8413. "name": "Nils Adermann",
  8414. "email": "[email protected]",
  8415. "homepage": "http://www.naderman.de"
  8416. },
  8417. {
  8418. "name": "Jordi Boggiano",
  8419. "email": "[email protected]",
  8420. "homepage": "http://seld.be"
  8421. },
  8422. {
  8423. "name": "Rob Bast",
  8424. "email": "[email protected]",
  8425. "homepage": "http://robbast.nl"
  8426. }
  8427. ],
  8428. "description": "SPDX licenses list and validation library.",
  8429. "keywords": [
  8430. "license",
  8431. "spdx",
  8432. "validator"
  8433. ],
  8434. "support": {
  8435. "irc": "irc://irc.freenode.org/composer",
  8436. "issues": "https://github.com/composer/spdx-licenses/issues",
  8437. "source": "https://github.com/composer/spdx-licenses/tree/1.5.5"
  8438. },
  8439. "funding": [
  8440. {
  8441. "url": "https://packagist.com",
  8442. "type": "custom"
  8443. },
  8444. {
  8445. "url": "https://github.com/composer",
  8446. "type": "github"
  8447. },
  8448. {
  8449. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8450. "type": "tidelift"
  8451. }
  8452. ],
  8453. "time": "2020-12-03T16:04:16+00:00"
  8454. },
  8455. {
  8456. "name": "composer/xdebug-handler",
  8457. "version": "2.0.1",
  8458. "source": {
  8459. "type": "git",
  8460. "url": "https://github.com/composer/xdebug-handler.git",
  8461. "reference": "964adcdd3a28bf9ed5d9ac6450064e0d71ed7496"
  8462. },
  8463. "dist": {
  8464. "type": "zip",
  8465. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/964adcdd3a28bf9ed5d9ac6450064e0d71ed7496",
  8466. "reference": "964adcdd3a28bf9ed5d9ac6450064e0d71ed7496",
  8467. "shasum": ""
  8468. },
  8469. "require": {
  8470. "php": "^5.3.2 || ^7.0 || ^8.0",
  8471. "psr/log": "^1.0"
  8472. },
  8473. "require-dev": {
  8474. "phpstan/phpstan": "^0.12.55",
  8475. "symfony/phpunit-bridge": "^4.2 || ^5"
  8476. },
  8477. "type": "library",
  8478. "autoload": {
  8479. "psr-4": {
  8480. "Composer\\XdebugHandler\\": "src"
  8481. }
  8482. },
  8483. "notification-url": "https://packagist.org/downloads/",
  8484. "license": [
  8485. "MIT"
  8486. ],
  8487. "authors": [
  8488. {
  8489. "name": "John Stevenson",
  8490. "email": "[email protected]"
  8491. }
  8492. ],
  8493. "description": "Restarts a process without Xdebug.",
  8494. "keywords": [
  8495. "Xdebug",
  8496. "performance"
  8497. ],
  8498. "support": {
  8499. "irc": "irc://irc.freenode.org/composer",
  8500. "issues": "https://github.com/composer/xdebug-handler/issues",
  8501. "source": "https://github.com/composer/xdebug-handler/tree/2.0.1"
  8502. },
  8503. "funding": [
  8504. {
  8505. "url": "https://packagist.com",
  8506. "type": "custom"
  8507. },
  8508. {
  8509. "url": "https://github.com/composer",
  8510. "type": "github"
  8511. },
  8512. {
  8513. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8514. "type": "tidelift"
  8515. }
  8516. ],
  8517. "time": "2021-05-05T19:37:51+00:00"
  8518. },
  8519. {
  8520. "name": "doctrine/instantiator",
  8521. "version": "1.4.0",
  8522. "source": {
  8523. "type": "git",
  8524. "url": "https://github.com/doctrine/instantiator.git",
  8525. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
  8526. },
  8527. "dist": {
  8528. "type": "zip",
  8529. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
  8530. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
  8531. "shasum": ""
  8532. },
  8533. "require": {
  8534. "php": "^7.1 || ^8.0"
  8535. },
  8536. "require-dev": {
  8537. "doctrine/coding-standard": "^8.0",
  8538. "ext-pdo": "*",
  8539. "ext-phar": "*",
  8540. "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
  8541. "phpstan/phpstan": "^0.12",
  8542. "phpstan/phpstan-phpunit": "^0.12",
  8543. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  8544. },
  8545. "type": "library",
  8546. "autoload": {
  8547. "psr-4": {
  8548. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  8549. }
  8550. },
  8551. "notification-url": "https://packagist.org/downloads/",
  8552. "license": [
  8553. "MIT"
  8554. ],
  8555. "authors": [
  8556. {
  8557. "name": "Marco Pivetta",
  8558. "email": "[email protected]",
  8559. "homepage": "https://ocramius.github.io/"
  8560. }
  8561. ],
  8562. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8563. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  8564. "keywords": [
  8565. "constructor",
  8566. "instantiate"
  8567. ],
  8568. "support": {
  8569. "issues": "https://github.com/doctrine/instantiator/issues",
  8570. "source": "https://github.com/doctrine/instantiator/tree/1.4.0"
  8571. },
  8572. "funding": [
  8573. {
  8574. "url": "https://www.doctrine-project.org/sponsorship.html",
  8575. "type": "custom"
  8576. },
  8577. {
  8578. "url": "https://www.patreon.com/phpdoctrine",
  8579. "type": "patreon"
  8580. },
  8581. {
  8582. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  8583. "type": "tidelift"
  8584. }
  8585. ],
  8586. "time": "2020-11-10T18:47:58+00:00"
  8587. },
  8588. {
  8589. "name": "facade/flare-client-php",
  8590. "version": "1.8.1",
  8591. "source": {
  8592. "type": "git",
  8593. "url": "https://github.com/facade/flare-client-php.git",
  8594. "reference": "47b639dc02bcfdfc4ebb83de703856fa01e35f5f"
  8595. },
  8596. "dist": {
  8597. "type": "zip",
  8598. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/47b639dc02bcfdfc4ebb83de703856fa01e35f5f",
  8599. "reference": "47b639dc02bcfdfc4ebb83de703856fa01e35f5f",
  8600. "shasum": ""
  8601. },
  8602. "require": {
  8603. "facade/ignition-contracts": "~1.0",
  8604. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  8605. "php": "^7.1|^8.0",
  8606. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  8607. "symfony/mime": "^3.4|^4.0|^5.1",
  8608. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  8609. },
  8610. "require-dev": {
  8611. "friendsofphp/php-cs-fixer": "^2.14",
  8612. "phpunit/phpunit": "^7.5.16",
  8613. "spatie/phpunit-snapshot-assertions": "^2.0"
  8614. },
  8615. "type": "library",
  8616. "extra": {
  8617. "branch-alias": {
  8618. "dev-master": "1.0-dev"
  8619. }
  8620. },
  8621. "autoload": {
  8622. "psr-4": {
  8623. "Facade\\FlareClient\\": "src"
  8624. },
  8625. "files": [
  8626. "src/helpers.php"
  8627. ]
  8628. },
  8629. "notification-url": "https://packagist.org/downloads/",
  8630. "license": [
  8631. "MIT"
  8632. ],
  8633. "description": "Send PHP errors to Flare",
  8634. "homepage": "https://github.com/facade/flare-client-php",
  8635. "keywords": [
  8636. "exception",
  8637. "facade",
  8638. "flare",
  8639. "reporting"
  8640. ],
  8641. "support": {
  8642. "issues": "https://github.com/facade/flare-client-php/issues",
  8643. "source": "https://github.com/facade/flare-client-php/tree/1.8.1"
  8644. },
  8645. "funding": [
  8646. {
  8647. "url": "https://github.com/spatie",
  8648. "type": "github"
  8649. }
  8650. ],
  8651. "time": "2021-05-31T19:23:29+00:00"
  8652. },
  8653. {
  8654. "name": "facade/ignition",
  8655. "version": "2.10.1",
  8656. "source": {
  8657. "type": "git",
  8658. "url": "https://github.com/facade/ignition.git",
  8659. "reference": "508d80f91de953617977e5666f8953669b6e81f2"
  8660. },
  8661. "dist": {
  8662. "type": "zip",
  8663. "url": "https://api.github.com/repos/facade/ignition/zipball/508d80f91de953617977e5666f8953669b6e81f2",
  8664. "reference": "508d80f91de953617977e5666f8953669b6e81f2",
  8665. "shasum": ""
  8666. },
  8667. "require": {
  8668. "ext-json": "*",
  8669. "ext-mbstring": "*",
  8670. "facade/flare-client-php": "^1.6",
  8671. "facade/ignition-contracts": "^1.0.2",
  8672. "filp/whoops": "^2.4",
  8673. "illuminate/support": "^7.0|^8.0",
  8674. "monolog/monolog": "^2.0",
  8675. "php": "^7.2.5|^8.0",
  8676. "symfony/console": "^5.0",
  8677. "symfony/var-dumper": "^5.0"
  8678. },
  8679. "require-dev": {
  8680. "friendsofphp/php-cs-fixer": "^2.14",
  8681. "mockery/mockery": "^1.3",
  8682. "orchestra/testbench": "^5.0|^6.0",
  8683. "psalm/plugin-laravel": "^1.2"
  8684. },
  8685. "suggest": {
  8686. "laravel/telescope": "^3.1"
  8687. },
  8688. "type": "library",
  8689. "extra": {
  8690. "branch-alias": {
  8691. "dev-master": "2.x-dev"
  8692. },
  8693. "laravel": {
  8694. "providers": [
  8695. "Facade\\Ignition\\IgnitionServiceProvider"
  8696. ],
  8697. "aliases": {
  8698. "Flare": "Facade\\Ignition\\Facades\\Flare"
  8699. }
  8700. }
  8701. },
  8702. "autoload": {
  8703. "psr-4": {
  8704. "Facade\\Ignition\\": "src"
  8705. },
  8706. "files": [
  8707. "src/helpers.php"
  8708. ]
  8709. },
  8710. "notification-url": "https://packagist.org/downloads/",
  8711. "license": [
  8712. "MIT"
  8713. ],
  8714. "description": "A beautiful error page for Laravel applications.",
  8715. "homepage": "https://github.com/facade/ignition",
  8716. "keywords": [
  8717. "error",
  8718. "flare",
  8719. "laravel",
  8720. "page"
  8721. ],
  8722. "support": {
  8723. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  8724. "forum": "https://twitter.com/flareappio",
  8725. "issues": "https://github.com/facade/ignition/issues",
  8726. "source": "https://github.com/facade/ignition"
  8727. },
  8728. "time": "2021-06-03T21:41:42+00:00"
  8729. },
  8730. {
  8731. "name": "facade/ignition-contracts",
  8732. "version": "1.0.2",
  8733. "source": {
  8734. "type": "git",
  8735. "url": "https://github.com/facade/ignition-contracts.git",
  8736. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  8737. },
  8738. "dist": {
  8739. "type": "zip",
  8740. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8741. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8742. "shasum": ""
  8743. },
  8744. "require": {
  8745. "php": "^7.3|^8.0"
  8746. },
  8747. "require-dev": {
  8748. "friendsofphp/php-cs-fixer": "^v2.15.8",
  8749. "phpunit/phpunit": "^9.3.11",
  8750. "vimeo/psalm": "^3.17.1"
  8751. },
  8752. "type": "library",
  8753. "autoload": {
  8754. "psr-4": {
  8755. "Facade\\IgnitionContracts\\": "src"
  8756. }
  8757. },
  8758. "notification-url": "https://packagist.org/downloads/",
  8759. "license": [
  8760. "MIT"
  8761. ],
  8762. "authors": [
  8763. {
  8764. "name": "Freek Van der Herten",
  8765. "email": "[email protected]",
  8766. "homepage": "https://flareapp.io",
  8767. "role": "Developer"
  8768. }
  8769. ],
  8770. "description": "Solution contracts for Ignition",
  8771. "homepage": "https://github.com/facade/ignition-contracts",
  8772. "keywords": [
  8773. "contracts",
  8774. "flare",
  8775. "ignition"
  8776. ],
  8777. "support": {
  8778. "issues": "https://github.com/facade/ignition-contracts/issues",
  8779. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  8780. },
  8781. "time": "2020-10-16T08:27:54+00:00"
  8782. },
  8783. {
  8784. "name": "fakerphp/faker",
  8785. "version": "v1.14.1",
  8786. "source": {
  8787. "type": "git",
  8788. "url": "https://github.com/FakerPHP/Faker.git",
  8789. "reference": "ed22aee8d17c7b396f74a58b1e7fefa4f90d5ef1"
  8790. },
  8791. "dist": {
  8792. "type": "zip",
  8793. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/ed22aee8d17c7b396f74a58b1e7fefa4f90d5ef1",
  8794. "reference": "ed22aee8d17c7b396f74a58b1e7fefa4f90d5ef1",
  8795. "shasum": ""
  8796. },
  8797. "require": {
  8798. "php": "^7.1 || ^8.0",
  8799. "psr/container": "^1.0",
  8800. "symfony/deprecation-contracts": "^2.2"
  8801. },
  8802. "conflict": {
  8803. "fzaninotto/faker": "*"
  8804. },
  8805. "require-dev": {
  8806. "bamarni/composer-bin-plugin": "^1.4.1",
  8807. "ext-intl": "*",
  8808. "symfony/phpunit-bridge": "^4.4 || ^5.2"
  8809. },
  8810. "suggest": {
  8811. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  8812. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  8813. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  8814. "ext-mbstring": "Required for multibyte Unicode string functionality."
  8815. },
  8816. "type": "library",
  8817. "extra": {
  8818. "branch-alias": {
  8819. "dev-main": "v1.15-dev"
  8820. }
  8821. },
  8822. "autoload": {
  8823. "psr-4": {
  8824. "Faker\\": "src/Faker/"
  8825. }
  8826. },
  8827. "notification-url": "https://packagist.org/downloads/",
  8828. "license": [
  8829. "MIT"
  8830. ],
  8831. "authors": [
  8832. {
  8833. "name": "François Zaninotto"
  8834. }
  8835. ],
  8836. "description": "Faker is a PHP library that generates fake data for you.",
  8837. "keywords": [
  8838. "data",
  8839. "faker",
  8840. "fixtures"
  8841. ],
  8842. "support": {
  8843. "issues": "https://github.com/FakerPHP/Faker/issues",
  8844. "source": "https://github.com/FakerPHP/Faker/tree/v.1.14.1"
  8845. },
  8846. "time": "2021-03-30T06:27:33+00:00"
  8847. },
  8848. {
  8849. "name": "filp/whoops",
  8850. "version": "2.13.0",
  8851. "source": {
  8852. "type": "git",
  8853. "url": "https://github.com/filp/whoops.git",
  8854. "reference": "2edbc73a4687d9085c8f20f398eebade844e8424"
  8855. },
  8856. "dist": {
  8857. "type": "zip",
  8858. "url": "https://api.github.com/repos/filp/whoops/zipball/2edbc73a4687d9085c8f20f398eebade844e8424",
  8859. "reference": "2edbc73a4687d9085c8f20f398eebade844e8424",
  8860. "shasum": ""
  8861. },
  8862. "require": {
  8863. "php": "^5.5.9 || ^7.0 || ^8.0",
  8864. "psr/log": "^1.0.1"
  8865. },
  8866. "require-dev": {
  8867. "mockery/mockery": "^0.9 || ^1.0",
  8868. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  8869. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  8870. },
  8871. "suggest": {
  8872. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  8873. "whoops/soap": "Formats errors as SOAP responses"
  8874. },
  8875. "type": "library",
  8876. "extra": {
  8877. "branch-alias": {
  8878. "dev-master": "2.7-dev"
  8879. }
  8880. },
  8881. "autoload": {
  8882. "psr-4": {
  8883. "Whoops\\": "src/Whoops/"
  8884. }
  8885. },
  8886. "notification-url": "https://packagist.org/downloads/",
  8887. "license": [
  8888. "MIT"
  8889. ],
  8890. "authors": [
  8891. {
  8892. "name": "Filipe Dobreira",
  8893. "homepage": "https://github.com/filp",
  8894. "role": "Developer"
  8895. }
  8896. ],
  8897. "description": "php error handling for cool kids",
  8898. "homepage": "https://filp.github.io/whoops/",
  8899. "keywords": [
  8900. "error",
  8901. "exception",
  8902. "handling",
  8903. "library",
  8904. "throwable",
  8905. "whoops"
  8906. ],
  8907. "support": {
  8908. "issues": "https://github.com/filp/whoops/issues",
  8909. "source": "https://github.com/filp/whoops/tree/2.13.0"
  8910. },
  8911. "funding": [
  8912. {
  8913. "url": "https://github.com/denis-sokolov",
  8914. "type": "github"
  8915. }
  8916. ],
  8917. "time": "2021-06-04T12:00:00+00:00"
  8918. },
  8919. {
  8920. "name": "hamcrest/hamcrest-php",
  8921. "version": "v2.0.1",
  8922. "source": {
  8923. "type": "git",
  8924. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8925. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8926. },
  8927. "dist": {
  8928. "type": "zip",
  8929. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8930. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8931. "shasum": ""
  8932. },
  8933. "require": {
  8934. "php": "^5.3|^7.0|^8.0"
  8935. },
  8936. "replace": {
  8937. "cordoval/hamcrest-php": "*",
  8938. "davedevelopment/hamcrest-php": "*",
  8939. "kodova/hamcrest-php": "*"
  8940. },
  8941. "require-dev": {
  8942. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8943. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8944. },
  8945. "type": "library",
  8946. "extra": {
  8947. "branch-alias": {
  8948. "dev-master": "2.1-dev"
  8949. }
  8950. },
  8951. "autoload": {
  8952. "classmap": [
  8953. "hamcrest"
  8954. ]
  8955. },
  8956. "notification-url": "https://packagist.org/downloads/",
  8957. "license": [
  8958. "BSD-3-Clause"
  8959. ],
  8960. "description": "This is the PHP port of Hamcrest Matchers",
  8961. "keywords": [
  8962. "test"
  8963. ],
  8964. "support": {
  8965. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8966. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8967. },
  8968. "time": "2020-07-09T08:09:16+00:00"
  8969. },
  8970. {
  8971. "name": "justinrainbow/json-schema",
  8972. "version": "5.2.10",
  8973. "source": {
  8974. "type": "git",
  8975. "url": "https://github.com/justinrainbow/json-schema.git",
  8976. "reference": "2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b"
  8977. },
  8978. "dist": {
  8979. "type": "zip",
  8980. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b",
  8981. "reference": "2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b",
  8982. "shasum": ""
  8983. },
  8984. "require": {
  8985. "php": ">=5.3.3"
  8986. },
  8987. "require-dev": {
  8988. "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1",
  8989. "json-schema/json-schema-test-suite": "1.2.0",
  8990. "phpunit/phpunit": "^4.8.35"
  8991. },
  8992. "bin": [
  8993. "bin/validate-json"
  8994. ],
  8995. "type": "library",
  8996. "extra": {
  8997. "branch-alias": {
  8998. "dev-master": "5.0.x-dev"
  8999. }
  9000. },
  9001. "autoload": {
  9002. "psr-4": {
  9003. "JsonSchema\\": "src/JsonSchema/"
  9004. }
  9005. },
  9006. "notification-url": "https://packagist.org/downloads/",
  9007. "license": [
  9008. "MIT"
  9009. ],
  9010. "authors": [
  9011. {
  9012. "name": "Bruno Prieto Reis",
  9013. "email": "[email protected]"
  9014. },
  9015. {
  9016. "name": "Justin Rainbow",
  9017. "email": "[email protected]"
  9018. },
  9019. {
  9020. "name": "Igor Wiedler",
  9021. "email": "[email protected]"
  9022. },
  9023. {
  9024. "name": "Robert Schönthal",
  9025. "email": "[email protected]"
  9026. }
  9027. ],
  9028. "description": "A library to validate a json schema.",
  9029. "homepage": "https://github.com/justinrainbow/json-schema",
  9030. "keywords": [
  9031. "json",
  9032. "schema"
  9033. ],
  9034. "support": {
  9035. "issues": "https://github.com/justinrainbow/json-schema/issues",
  9036. "source": "https://github.com/justinrainbow/json-schema/tree/5.2.10"
  9037. },
  9038. "time": "2020-05-27T16:41:55+00:00"
  9039. },
  9040. {
  9041. "name": "laravel/telescope",
  9042. "version": "v3.5.1",
  9043. "source": {
  9044. "type": "git",
  9045. "url": "https://github.com/laravel/telescope.git",
  9046. "reference": "a8d2e1106ba655006fde47a0b7ed53851c6398f5"
  9047. },
  9048. "dist": {
  9049. "type": "zip",
  9050. "url": "https://api.github.com/repos/laravel/telescope/zipball/a8d2e1106ba655006fde47a0b7ed53851c6398f5",
  9051. "reference": "a8d2e1106ba655006fde47a0b7ed53851c6398f5",
  9052. "shasum": ""
  9053. },
  9054. "require": {
  9055. "ext-json": "*",
  9056. "laravel/framework": "^6.0|^7.0",
  9057. "moontoast/math": "^1.1",
  9058. "php": "^7.2",
  9059. "symfony/var-dumper": "^4.4|^5.0"
  9060. },
  9061. "require-dev": {
  9062. "ext-gd": "*",
  9063. "orchestra/testbench": "^4.0|^5.0"
  9064. },
  9065. "type": "library",
  9066. "extra": {
  9067. "branch-alias": {
  9068. "dev-master": "3.x-dev"
  9069. },
  9070. "laravel": {
  9071. "providers": [
  9072. "Laravel\\Telescope\\TelescopeServiceProvider"
  9073. ]
  9074. }
  9075. },
  9076. "autoload": {
  9077. "psr-4": {
  9078. "Laravel\\Telescope\\": "src/"
  9079. }
  9080. },
  9081. "notification-url": "https://packagist.org/downloads/",
  9082. "license": [
  9083. "MIT"
  9084. ],
  9085. "authors": [
  9086. {
  9087. "name": "Taylor Otwell",
  9088. "email": "[email protected]"
  9089. },
  9090. {
  9091. "name": "Mohamed Said",
  9092. "email": "[email protected]"
  9093. }
  9094. ],
  9095. "description": "An elegant debug assistant for the Laravel framework.",
  9096. "keywords": [
  9097. "debugging",
  9098. "laravel",
  9099. "monitoring"
  9100. ],
  9101. "support": {
  9102. "issues": "https://github.com/laravel/telescope/issues",
  9103. "source": "https://github.com/laravel/telescope/tree/v3.5.1"
  9104. },
  9105. "time": "2020-07-28T19:12:33+00:00"
  9106. },
  9107. {
  9108. "name": "maximebf/debugbar",
  9109. "version": "v1.16.5",
  9110. "source": {
  9111. "type": "git",
  9112. "url": "https://github.com/maximebf/php-debugbar.git",
  9113. "reference": "6d51ee9e94cff14412783785e79a4e7ef97b9d62"
  9114. },
  9115. "dist": {
  9116. "type": "zip",
  9117. "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/6d51ee9e94cff14412783785e79a4e7ef97b9d62",
  9118. "reference": "6d51ee9e94cff14412783785e79a4e7ef97b9d62",
  9119. "shasum": ""
  9120. },
  9121. "require": {
  9122. "php": "^7.1|^8",
  9123. "psr/log": "^1.0",
  9124. "symfony/var-dumper": "^2.6|^3|^4|^5"
  9125. },
  9126. "require-dev": {
  9127. "phpunit/phpunit": "^7.5.20 || ^9.4.2"
  9128. },
  9129. "suggest": {
  9130. "kriswallsmith/assetic": "The best way to manage assets",
  9131. "monolog/monolog": "Log using Monolog",
  9132. "predis/predis": "Redis storage"
  9133. },
  9134. "type": "library",
  9135. "extra": {
  9136. "branch-alias": {
  9137. "dev-master": "1.16-dev"
  9138. }
  9139. },
  9140. "autoload": {
  9141. "psr-4": {
  9142. "DebugBar\\": "src/DebugBar/"
  9143. }
  9144. },
  9145. "notification-url": "https://packagist.org/downloads/",
  9146. "license": [
  9147. "MIT"
  9148. ],
  9149. "authors": [
  9150. {
  9151. "name": "Maxime Bouroumeau-Fuseau",
  9152. "email": "[email protected]",
  9153. "homepage": "http://maximebf.com"
  9154. },
  9155. {
  9156. "name": "Barry vd. Heuvel",
  9157. "email": "[email protected]"
  9158. }
  9159. ],
  9160. "description": "Debug bar in the browser for php application",
  9161. "homepage": "https://github.com/maximebf/php-debugbar",
  9162. "keywords": [
  9163. "debug",
  9164. "debugbar"
  9165. ],
  9166. "support": {
  9167. "issues": "https://github.com/maximebf/php-debugbar/issues",
  9168. "source": "https://github.com/maximebf/php-debugbar/tree/v1.16.5"
  9169. },
  9170. "time": "2020-12-07T11:07:24+00:00"
  9171. },
  9172. {
  9173. "name": "mockery/mockery",
  9174. "version": "1.4.3",
  9175. "source": {
  9176. "type": "git",
  9177. "url": "https://github.com/mockery/mockery.git",
  9178. "reference": "d1339f64479af1bee0e82a0413813fe5345a54ea"
  9179. },
  9180. "dist": {
  9181. "type": "zip",
  9182. "url": "https://api.github.com/repos/mockery/mockery/zipball/d1339f64479af1bee0e82a0413813fe5345a54ea",
  9183. "reference": "d1339f64479af1bee0e82a0413813fe5345a54ea",
  9184. "shasum": ""
  9185. },
  9186. "require": {
  9187. "hamcrest/hamcrest-php": "^2.0.1",
  9188. "lib-pcre": ">=7.0",
  9189. "php": "^7.3 || ^8.0"
  9190. },
  9191. "conflict": {
  9192. "phpunit/phpunit": "<8.0"
  9193. },
  9194. "require-dev": {
  9195. "phpunit/phpunit": "^8.5 || ^9.3"
  9196. },
  9197. "type": "library",
  9198. "extra": {
  9199. "branch-alias": {
  9200. "dev-master": "1.4.x-dev"
  9201. }
  9202. },
  9203. "autoload": {
  9204. "psr-0": {
  9205. "Mockery": "library/"
  9206. }
  9207. },
  9208. "notification-url": "https://packagist.org/downloads/",
  9209. "license": [
  9210. "BSD-3-Clause"
  9211. ],
  9212. "authors": [
  9213. {
  9214. "name": "Pádraic Brady",
  9215. "email": "[email protected]",
  9216. "homepage": "http://blog.astrumfutura.com"
  9217. },
  9218. {
  9219. "name": "Dave Marshall",
  9220. "email": "[email protected]",
  9221. "homepage": "http://davedevelopment.co.uk"
  9222. }
  9223. ],
  9224. "description": "Mockery is a simple yet flexible PHP mock object framework",
  9225. "homepage": "https://github.com/mockery/mockery",
  9226. "keywords": [
  9227. "BDD",
  9228. "TDD",
  9229. "library",
  9230. "mock",
  9231. "mock objects",
  9232. "mockery",
  9233. "stub",
  9234. "test",
  9235. "test double",
  9236. "testing"
  9237. ],
  9238. "support": {
  9239. "issues": "https://github.com/mockery/mockery/issues",
  9240. "source": "https://github.com/mockery/mockery/tree/1.4.3"
  9241. },
  9242. "time": "2021-02-24T09:51:49+00:00"
  9243. },
  9244. {
  9245. "name": "moontoast/math",
  9246. "version": "1.2.1",
  9247. "source": {
  9248. "type": "git",
  9249. "url": "https://github.com/ramsey/moontoast-math.git",
  9250. "reference": "5f47d34c87767dbcc08b30377a9827df71de91fa"
  9251. },
  9252. "dist": {
  9253. "type": "zip",
  9254. "url": "https://api.github.com/repos/ramsey/moontoast-math/zipball/5f47d34c87767dbcc08b30377a9827df71de91fa",
  9255. "reference": "5f47d34c87767dbcc08b30377a9827df71de91fa",
  9256. "shasum": ""
  9257. },
  9258. "require": {
  9259. "php": ">=5.3.3",
  9260. "phpseclib/bcmath_compat": ">=1.0.3"
  9261. },
  9262. "require-dev": {
  9263. "jakub-onderka/php-parallel-lint": "^0.9.0",
  9264. "phpunit/phpunit": "^4.8 || ^5.5 || ^6.5 || ^7.0",
  9265. "satooshi/php-coveralls": "^0.6.1",
  9266. "squizlabs/php_codesniffer": "^2.3"
  9267. },
  9268. "type": "library",
  9269. "autoload": {
  9270. "psr-4": {
  9271. "Moontoast\\Math\\": "src/Moontoast/Math",
  9272. "Moontoast\\Math\\Exception\\": "src/Moontoast/Math/Exception"
  9273. }
  9274. },
  9275. "notification-url": "https://packagist.org/downloads/",
  9276. "license": [
  9277. "Apache-2.0"
  9278. ],
  9279. "authors": [
  9280. {
  9281. "name": "Ben Ramsey",
  9282. "email": "[email protected]",
  9283. "homepage": "https://benramsey.com"
  9284. }
  9285. ],
  9286. "description": "A mathematics library, providing functionality for large numbers",
  9287. "homepage": "https://github.com/ramsey/moontoast-math",
  9288. "keywords": [
  9289. "bcmath",
  9290. "math"
  9291. ],
  9292. "support": {
  9293. "issues": "https://github.com/ramsey/moontoast-math/issues",
  9294. "source": "https://github.com/ramsey/moontoast-math"
  9295. },
  9296. "abandoned": "brick/math",
  9297. "time": "2020-01-05T04:49:34+00:00"
  9298. },
  9299. {
  9300. "name": "myclabs/deep-copy",
  9301. "version": "1.10.2",
  9302. "source": {
  9303. "type": "git",
  9304. "url": "https://github.com/myclabs/DeepCopy.git",
  9305. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
  9306. },
  9307. "dist": {
  9308. "type": "zip",
  9309. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
  9310. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
  9311. "shasum": ""
  9312. },
  9313. "require": {
  9314. "php": "^7.1 || ^8.0"
  9315. },
  9316. "replace": {
  9317. "myclabs/deep-copy": "self.version"
  9318. },
  9319. "require-dev": {
  9320. "doctrine/collections": "^1.0",
  9321. "doctrine/common": "^2.6",
  9322. "phpunit/phpunit": "^7.1"
  9323. },
  9324. "type": "library",
  9325. "autoload": {
  9326. "psr-4": {
  9327. "DeepCopy\\": "src/DeepCopy/"
  9328. },
  9329. "files": [
  9330. "src/DeepCopy/deep_copy.php"
  9331. ]
  9332. },
  9333. "notification-url": "https://packagist.org/downloads/",
  9334. "license": [
  9335. "MIT"
  9336. ],
  9337. "description": "Create deep copies (clones) of your objects",
  9338. "keywords": [
  9339. "clone",
  9340. "copy",
  9341. "duplicate",
  9342. "object",
  9343. "object graph"
  9344. ],
  9345. "support": {
  9346. "issues": "https://github.com/myclabs/DeepCopy/issues",
  9347. "source": "https://github.com/myclabs/DeepCopy/tree/1.10.2"
  9348. },
  9349. "funding": [
  9350. {
  9351. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  9352. "type": "tidelift"
  9353. }
  9354. ],
  9355. "time": "2020-11-13T09:40:50+00:00"
  9356. },
  9357. {
  9358. "name": "nunomaduro/collision",
  9359. "version": "v4.3.0",
  9360. "source": {
  9361. "type": "git",
  9362. "url": "https://github.com/nunomaduro/collision.git",
  9363. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e"
  9364. },
  9365. "dist": {
  9366. "type": "zip",
  9367. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/7c125dc2463f3e144ddc7e05e63077109508c94e",
  9368. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e",
  9369. "shasum": ""
  9370. },
  9371. "require": {
  9372. "facade/ignition-contracts": "^1.0",
  9373. "filp/whoops": "^2.4",
  9374. "php": "^7.2.5 || ^8.0",
  9375. "symfony/console": "^5.0"
  9376. },
  9377. "require-dev": {
  9378. "facade/ignition": "^2.0",
  9379. "fideloper/proxy": "^4.2",
  9380. "friendsofphp/php-cs-fixer": "^2.16",
  9381. "fruitcake/laravel-cors": "^1.0",
  9382. "laravel/framework": "^7.0",
  9383. "laravel/tinker": "^2.0",
  9384. "nunomaduro/larastan": "^0.6",
  9385. "orchestra/testbench": "^5.0",
  9386. "phpstan/phpstan": "^0.12.3",
  9387. "phpunit/phpunit": "^8.5.1 || ^9.0"
  9388. },
  9389. "type": "library",
  9390. "extra": {
  9391. "laravel": {
  9392. "providers": [
  9393. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  9394. ]
  9395. }
  9396. },
  9397. "autoload": {
  9398. "psr-4": {
  9399. "NunoMaduro\\Collision\\": "src/"
  9400. }
  9401. },
  9402. "notification-url": "https://packagist.org/downloads/",
  9403. "license": [
  9404. "MIT"
  9405. ],
  9406. "authors": [
  9407. {
  9408. "name": "Nuno Maduro",
  9409. "email": "[email protected]"
  9410. }
  9411. ],
  9412. "description": "Cli error handling for console/command-line PHP applications.",
  9413. "keywords": [
  9414. "artisan",
  9415. "cli",
  9416. "command-line",
  9417. "console",
  9418. "error",
  9419. "handling",
  9420. "laravel",
  9421. "laravel-zero",
  9422. "php",
  9423. "symfony"
  9424. ],
  9425. "support": {
  9426. "issues": "https://github.com/nunomaduro/collision/issues",
  9427. "source": "https://github.com/nunomaduro/collision"
  9428. },
  9429. "funding": [
  9430. {
  9431. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  9432. "type": "custom"
  9433. },
  9434. {
  9435. "url": "https://github.com/nunomaduro",
  9436. "type": "github"
  9437. },
  9438. {
  9439. "url": "https://www.patreon.com/nunomaduro",
  9440. "type": "patreon"
  9441. }
  9442. ],
  9443. "time": "2020-10-29T15:12:23+00:00"
  9444. },
  9445. {
  9446. "name": "paragonie/constant_time_encoding",
  9447. "version": "v2.4.0",
  9448. "source": {
  9449. "type": "git",
  9450. "url": "https://github.com/paragonie/constant_time_encoding.git",
  9451. "reference": "f34c2b11eb9d2c9318e13540a1dbc2a3afbd939c"
  9452. },
  9453. "dist": {
  9454. "type": "zip",
  9455. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/f34c2b11eb9d2c9318e13540a1dbc2a3afbd939c",
  9456. "reference": "f34c2b11eb9d2c9318e13540a1dbc2a3afbd939c",
  9457. "shasum": ""
  9458. },
  9459. "require": {
  9460. "php": "^7|^8"
  9461. },
  9462. "require-dev": {
  9463. "phpunit/phpunit": "^6|^7|^8|^9",
  9464. "vimeo/psalm": "^1|^2|^3|^4"
  9465. },
  9466. "type": "library",
  9467. "autoload": {
  9468. "psr-4": {
  9469. "ParagonIE\\ConstantTime\\": "src/"
  9470. }
  9471. },
  9472. "notification-url": "https://packagist.org/downloads/",
  9473. "license": [
  9474. "MIT"
  9475. ],
  9476. "authors": [
  9477. {
  9478. "name": "Paragon Initiative Enterprises",
  9479. "email": "[email protected]",
  9480. "homepage": "https://paragonie.com",
  9481. "role": "Maintainer"
  9482. },
  9483. {
  9484. "name": "Steve 'Sc00bz' Thomas",
  9485. "email": "[email protected]",
  9486. "homepage": "https://www.tobtu.com",
  9487. "role": "Original Developer"
  9488. }
  9489. ],
  9490. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  9491. "keywords": [
  9492. "base16",
  9493. "base32",
  9494. "base32_decode",
  9495. "base32_encode",
  9496. "base64",
  9497. "base64_decode",
  9498. "base64_encode",
  9499. "bin2hex",
  9500. "encoding",
  9501. "hex",
  9502. "hex2bin",
  9503. "rfc4648"
  9504. ],
  9505. "support": {
  9506. "email": "[email protected]",
  9507. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  9508. "source": "https://github.com/paragonie/constant_time_encoding"
  9509. },
  9510. "time": "2020-12-06T15:14:20+00:00"
  9511. },
  9512. {
  9513. "name": "paragonie/random_compat",
  9514. "version": "v9.99.100",
  9515. "source": {
  9516. "type": "git",
  9517. "url": "https://github.com/paragonie/random_compat.git",
  9518. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  9519. },
  9520. "dist": {
  9521. "type": "zip",
  9522. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  9523. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  9524. "shasum": ""
  9525. },
  9526. "require": {
  9527. "php": ">= 7"
  9528. },
  9529. "require-dev": {
  9530. "phpunit/phpunit": "4.*|5.*",
  9531. "vimeo/psalm": "^1"
  9532. },
  9533. "suggest": {
  9534. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  9535. },
  9536. "type": "library",
  9537. "notification-url": "https://packagist.org/downloads/",
  9538. "license": [
  9539. "MIT"
  9540. ],
  9541. "authors": [
  9542. {
  9543. "name": "Paragon Initiative Enterprises",
  9544. "email": "[email protected]",
  9545. "homepage": "https://paragonie.com"
  9546. }
  9547. ],
  9548. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  9549. "keywords": [
  9550. "csprng",
  9551. "polyfill",
  9552. "pseudorandom",
  9553. "random"
  9554. ],
  9555. "support": {
  9556. "email": "[email protected]",
  9557. "issues": "https://github.com/paragonie/random_compat/issues",
  9558. "source": "https://github.com/paragonie/random_compat"
  9559. },
  9560. "time": "2020-10-15T08:29:30+00:00"
  9561. },
  9562. {
  9563. "name": "phar-io/manifest",
  9564. "version": "2.0.1",
  9565. "source": {
  9566. "type": "git",
  9567. "url": "https://github.com/phar-io/manifest.git",
  9568. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133"
  9569. },
  9570. "dist": {
  9571. "type": "zip",
  9572. "url": "https://api.github.com/repos/phar-io/manifest/zipball/85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  9573. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  9574. "shasum": ""
  9575. },
  9576. "require": {
  9577. "ext-dom": "*",
  9578. "ext-phar": "*",
  9579. "ext-xmlwriter": "*",
  9580. "phar-io/version": "^3.0.1",
  9581. "php": "^7.2 || ^8.0"
  9582. },
  9583. "type": "library",
  9584. "extra": {
  9585. "branch-alias": {
  9586. "dev-master": "2.0.x-dev"
  9587. }
  9588. },
  9589. "autoload": {
  9590. "classmap": [
  9591. "src/"
  9592. ]
  9593. },
  9594. "notification-url": "https://packagist.org/downloads/",
  9595. "license": [
  9596. "BSD-3-Clause"
  9597. ],
  9598. "authors": [
  9599. {
  9600. "name": "Arne Blankerts",
  9601. "email": "[email protected]",
  9602. "role": "Developer"
  9603. },
  9604. {
  9605. "name": "Sebastian Heuer",
  9606. "email": "[email protected]",
  9607. "role": "Developer"
  9608. },
  9609. {
  9610. "name": "Sebastian Bergmann",
  9611. "email": "[email protected]",
  9612. "role": "Developer"
  9613. }
  9614. ],
  9615. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9616. "support": {
  9617. "issues": "https://github.com/phar-io/manifest/issues",
  9618. "source": "https://github.com/phar-io/manifest/tree/master"
  9619. },
  9620. "time": "2020-06-27T14:33:11+00:00"
  9621. },
  9622. {
  9623. "name": "phar-io/version",
  9624. "version": "3.1.0",
  9625. "source": {
  9626. "type": "git",
  9627. "url": "https://github.com/phar-io/version.git",
  9628. "reference": "bae7c545bef187884426f042434e561ab1ddb182"
  9629. },
  9630. "dist": {
  9631. "type": "zip",
  9632. "url": "https://api.github.com/repos/phar-io/version/zipball/bae7c545bef187884426f042434e561ab1ddb182",
  9633. "reference": "bae7c545bef187884426f042434e561ab1ddb182",
  9634. "shasum": ""
  9635. },
  9636. "require": {
  9637. "php": "^7.2 || ^8.0"
  9638. },
  9639. "type": "library",
  9640. "autoload": {
  9641. "classmap": [
  9642. "src/"
  9643. ]
  9644. },
  9645. "notification-url": "https://packagist.org/downloads/",
  9646. "license": [
  9647. "BSD-3-Clause"
  9648. ],
  9649. "authors": [
  9650. {
  9651. "name": "Arne Blankerts",
  9652. "email": "[email protected]",
  9653. "role": "Developer"
  9654. },
  9655. {
  9656. "name": "Sebastian Heuer",
  9657. "email": "[email protected]",
  9658. "role": "Developer"
  9659. },
  9660. {
  9661. "name": "Sebastian Bergmann",
  9662. "email": "[email protected]",
  9663. "role": "Developer"
  9664. }
  9665. ],
  9666. "description": "Library for handling version information and constraints",
  9667. "support": {
  9668. "issues": "https://github.com/phar-io/version/issues",
  9669. "source": "https://github.com/phar-io/version/tree/3.1.0"
  9670. },
  9671. "time": "2021-02-23T14:00:09+00:00"
  9672. },
  9673. {
  9674. "name": "phpdocumentor/reflection-common",
  9675. "version": "2.2.0",
  9676. "source": {
  9677. "type": "git",
  9678. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  9679. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  9680. },
  9681. "dist": {
  9682. "type": "zip",
  9683. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  9684. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  9685. "shasum": ""
  9686. },
  9687. "require": {
  9688. "php": "^7.2 || ^8.0"
  9689. },
  9690. "type": "library",
  9691. "extra": {
  9692. "branch-alias": {
  9693. "dev-2.x": "2.x-dev"
  9694. }
  9695. },
  9696. "autoload": {
  9697. "psr-4": {
  9698. "phpDocumentor\\Reflection\\": "src/"
  9699. }
  9700. },
  9701. "notification-url": "https://packagist.org/downloads/",
  9702. "license": [
  9703. "MIT"
  9704. ],
  9705. "authors": [
  9706. {
  9707. "name": "Jaap van Otterdijk",
  9708. "email": "[email protected]"
  9709. }
  9710. ],
  9711. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  9712. "homepage": "http://www.phpdoc.org",
  9713. "keywords": [
  9714. "FQSEN",
  9715. "phpDocumentor",
  9716. "phpdoc",
  9717. "reflection",
  9718. "static analysis"
  9719. ],
  9720. "support": {
  9721. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  9722. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  9723. },
  9724. "time": "2020-06-27T09:03:43+00:00"
  9725. },
  9726. {
  9727. "name": "phpdocumentor/reflection-docblock",
  9728. "version": "5.2.2",
  9729. "source": {
  9730. "type": "git",
  9731. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  9732. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556"
  9733. },
  9734. "dist": {
  9735. "type": "zip",
  9736. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556",
  9737. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556",
  9738. "shasum": ""
  9739. },
  9740. "require": {
  9741. "ext-filter": "*",
  9742. "php": "^7.2 || ^8.0",
  9743. "phpdocumentor/reflection-common": "^2.2",
  9744. "phpdocumentor/type-resolver": "^1.3",
  9745. "webmozart/assert": "^1.9.1"
  9746. },
  9747. "require-dev": {
  9748. "mockery/mockery": "~1.3.2"
  9749. },
  9750. "type": "library",
  9751. "extra": {
  9752. "branch-alias": {
  9753. "dev-master": "5.x-dev"
  9754. }
  9755. },
  9756. "autoload": {
  9757. "psr-4": {
  9758. "phpDocumentor\\Reflection\\": "src"
  9759. }
  9760. },
  9761. "notification-url": "https://packagist.org/downloads/",
  9762. "license": [
  9763. "MIT"
  9764. ],
  9765. "authors": [
  9766. {
  9767. "name": "Mike van Riel",
  9768. "email": "[email protected]"
  9769. },
  9770. {
  9771. "name": "Jaap van Otterdijk",
  9772. "email": "[email protected]"
  9773. }
  9774. ],
  9775. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  9776. "support": {
  9777. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  9778. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/master"
  9779. },
  9780. "time": "2020-09-03T19:13:55+00:00"
  9781. },
  9782. {
  9783. "name": "phpdocumentor/type-resolver",
  9784. "version": "1.4.0",
  9785. "source": {
  9786. "type": "git",
  9787. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  9788. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0"
  9789. },
  9790. "dist": {
  9791. "type": "zip",
  9792. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  9793. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  9794. "shasum": ""
  9795. },
  9796. "require": {
  9797. "php": "^7.2 || ^8.0",
  9798. "phpdocumentor/reflection-common": "^2.0"
  9799. },
  9800. "require-dev": {
  9801. "ext-tokenizer": "*"
  9802. },
  9803. "type": "library",
  9804. "extra": {
  9805. "branch-alias": {
  9806. "dev-1.x": "1.x-dev"
  9807. }
  9808. },
  9809. "autoload": {
  9810. "psr-4": {
  9811. "phpDocumentor\\Reflection\\": "src"
  9812. }
  9813. },
  9814. "notification-url": "https://packagist.org/downloads/",
  9815. "license": [
  9816. "MIT"
  9817. ],
  9818. "authors": [
  9819. {
  9820. "name": "Mike van Riel",
  9821. "email": "[email protected]"
  9822. }
  9823. ],
  9824. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  9825. "support": {
  9826. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  9827. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.4.0"
  9828. },
  9829. "time": "2020-09-17T18:55:26+00:00"
  9830. },
  9831. {
  9832. "name": "phpseclib/bcmath_compat",
  9833. "version": "2.0.0",
  9834. "source": {
  9835. "type": "git",
  9836. "url": "https://github.com/phpseclib/bcmath_compat.git",
  9837. "reference": "fd896dfceffc13d8cf45d2ee3470777a70026f3c"
  9838. },
  9839. "dist": {
  9840. "type": "zip",
  9841. "url": "https://api.github.com/repos/phpseclib/bcmath_compat/zipball/fd896dfceffc13d8cf45d2ee3470777a70026f3c",
  9842. "reference": "fd896dfceffc13d8cf45d2ee3470777a70026f3c",
  9843. "shasum": ""
  9844. },
  9845. "require": {
  9846. "phpseclib/phpseclib": "^3.0"
  9847. },
  9848. "provide": {
  9849. "ext-bcmath": "8.0.0"
  9850. },
  9851. "require-dev": {
  9852. "phpunit/phpunit": "^4.8.35|^5.7|^6.0|^9.4",
  9853. "squizlabs/php_codesniffer": "^3.0"
  9854. },
  9855. "suggest": {
  9856. "ext-gmp": "Will enable faster math operations"
  9857. },
  9858. "type": "library",
  9859. "autoload": {
  9860. "files": [
  9861. "lib/bcmath.php"
  9862. ],
  9863. "psr-4": {
  9864. "bcmath_compat\\": "src"
  9865. }
  9866. },
  9867. "notification-url": "https://packagist.org/downloads/",
  9868. "license": [
  9869. "MIT"
  9870. ],
  9871. "authors": [
  9872. {
  9873. "name": "Jim Wigginton",
  9874. "email": "[email protected]",
  9875. "homepage": "http://phpseclib.sourceforge.net"
  9876. }
  9877. ],
  9878. "description": "PHP 5.x/7.x polyfill for bcmath extension",
  9879. "keywords": [
  9880. "BigInteger",
  9881. "bcmath",
  9882. "bigdecimal",
  9883. "math",
  9884. "polyfill"
  9885. ],
  9886. "support": {
  9887. "email": "[email protected]",
  9888. "issues": "https://github.com/phpseclib/bcmath_compat/issues",
  9889. "source": "https://github.com/phpseclib/bcmath_compat"
  9890. },
  9891. "time": "2020-12-22T16:38:51+00:00"
  9892. },
  9893. {
  9894. "name": "phpseclib/phpseclib",
  9895. "version": "3.0.8",
  9896. "source": {
  9897. "type": "git",
  9898. "url": "https://github.com/phpseclib/phpseclib.git",
  9899. "reference": "d9615a6fb970d9933866ca8b4036ec3407b020b6"
  9900. },
  9901. "dist": {
  9902. "type": "zip",
  9903. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/d9615a6fb970d9933866ca8b4036ec3407b020b6",
  9904. "reference": "d9615a6fb970d9933866ca8b4036ec3407b020b6",
  9905. "shasum": ""
  9906. },
  9907. "require": {
  9908. "paragonie/constant_time_encoding": "^1|^2",
  9909. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  9910. "php": ">=5.6.1"
  9911. },
  9912. "require-dev": {
  9913. "phing/phing": "~2.7",
  9914. "phpunit/phpunit": "^5.7|^6.0|^9.4",
  9915. "squizlabs/php_codesniffer": "~2.0"
  9916. },
  9917. "suggest": {
  9918. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  9919. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  9920. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  9921. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  9922. },
  9923. "type": "library",
  9924. "autoload": {
  9925. "files": [
  9926. "phpseclib/bootstrap.php"
  9927. ],
  9928. "psr-4": {
  9929. "phpseclib3\\": "phpseclib/"
  9930. }
  9931. },
  9932. "notification-url": "https://packagist.org/downloads/",
  9933. "license": [
  9934. "MIT"
  9935. ],
  9936. "authors": [
  9937. {
  9938. "name": "Jim Wigginton",
  9939. "email": "[email protected]",
  9940. "role": "Lead Developer"
  9941. },
  9942. {
  9943. "name": "Patrick Monnerat",
  9944. "email": "[email protected]",
  9945. "role": "Developer"
  9946. },
  9947. {
  9948. "name": "Andreas Fischer",
  9949. "email": "[email protected]",
  9950. "role": "Developer"
  9951. },
  9952. {
  9953. "name": "Hans-Jürgen Petrich",
  9954. "email": "[email protected]",
  9955. "role": "Developer"
  9956. },
  9957. {
  9958. "name": "Graham Campbell",
  9959. "email": "[email protected]",
  9960. "role": "Developer"
  9961. }
  9962. ],
  9963. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  9964. "homepage": "http://phpseclib.sourceforge.net",
  9965. "keywords": [
  9966. "BigInteger",
  9967. "aes",
  9968. "asn.1",
  9969. "asn1",
  9970. "blowfish",
  9971. "crypto",
  9972. "cryptography",
  9973. "encryption",
  9974. "rsa",
  9975. "security",
  9976. "sftp",
  9977. "signature",
  9978. "signing",
  9979. "ssh",
  9980. "twofish",
  9981. "x.509",
  9982. "x509"
  9983. ],
  9984. "support": {
  9985. "issues": "https://github.com/phpseclib/phpseclib/issues",
  9986. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.8"
  9987. },
  9988. "funding": [
  9989. {
  9990. "url": "https://github.com/terrafrost",
  9991. "type": "github"
  9992. },
  9993. {
  9994. "url": "https://www.patreon.com/phpseclib",
  9995. "type": "patreon"
  9996. },
  9997. {
  9998. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  9999. "type": "tidelift"
  10000. }
  10001. ],
  10002. "time": "2021-04-19T03:20:48+00:00"
  10003. },
  10004. {
  10005. "name": "phpspec/prophecy",
  10006. "version": "1.13.0",
  10007. "source": {
  10008. "type": "git",
  10009. "url": "https://github.com/phpspec/prophecy.git",
  10010. "reference": "be1996ed8adc35c3fd795488a653f4b518be70ea"
  10011. },
  10012. "dist": {
  10013. "type": "zip",
  10014. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/be1996ed8adc35c3fd795488a653f4b518be70ea",
  10015. "reference": "be1996ed8adc35c3fd795488a653f4b518be70ea",
  10016. "shasum": ""
  10017. },
  10018. "require": {
  10019. "doctrine/instantiator": "^1.2",
  10020. "php": "^7.2 || ~8.0, <8.1",
  10021. "phpdocumentor/reflection-docblock": "^5.2",
  10022. "sebastian/comparator": "^3.0 || ^4.0",
  10023. "sebastian/recursion-context": "^3.0 || ^4.0"
  10024. },
  10025. "require-dev": {
  10026. "phpspec/phpspec": "^6.0",
  10027. "phpunit/phpunit": "^8.0 || ^9.0"
  10028. },
  10029. "type": "library",
  10030. "extra": {
  10031. "branch-alias": {
  10032. "dev-master": "1.11.x-dev"
  10033. }
  10034. },
  10035. "autoload": {
  10036. "psr-4": {
  10037. "Prophecy\\": "src/Prophecy"
  10038. }
  10039. },
  10040. "notification-url": "https://packagist.org/downloads/",
  10041. "license": [
  10042. "MIT"
  10043. ],
  10044. "authors": [
  10045. {
  10046. "name": "Konstantin Kudryashov",
  10047. "email": "[email protected]",
  10048. "homepage": "http://everzet.com"
  10049. },
  10050. {
  10051. "name": "Marcello Duarte",
  10052. "email": "[email protected]"
  10053. }
  10054. ],
  10055. "description": "Highly opinionated mocking framework for PHP 5.3+",
  10056. "homepage": "https://github.com/phpspec/prophecy",
  10057. "keywords": [
  10058. "Double",
  10059. "Dummy",
  10060. "fake",
  10061. "mock",
  10062. "spy",
  10063. "stub"
  10064. ],
  10065. "support": {
  10066. "issues": "https://github.com/phpspec/prophecy/issues",
  10067. "source": "https://github.com/phpspec/prophecy/tree/1.13.0"
  10068. },
  10069. "time": "2021-03-17T13:42:18+00:00"
  10070. },
  10071. {
  10072. "name": "phpunit/php-code-coverage",
  10073. "version": "9.2.6",
  10074. "source": {
  10075. "type": "git",
  10076. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  10077. "reference": "f6293e1b30a2354e8428e004689671b83871edde"
  10078. },
  10079. "dist": {
  10080. "type": "zip",
  10081. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f6293e1b30a2354e8428e004689671b83871edde",
  10082. "reference": "f6293e1b30a2354e8428e004689671b83871edde",
  10083. "shasum": ""
  10084. },
  10085. "require": {
  10086. "ext-dom": "*",
  10087. "ext-libxml": "*",
  10088. "ext-xmlwriter": "*",
  10089. "nikic/php-parser": "^4.10.2",
  10090. "php": ">=7.3",
  10091. "phpunit/php-file-iterator": "^3.0.3",
  10092. "phpunit/php-text-template": "^2.0.2",
  10093. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  10094. "sebastian/complexity": "^2.0",
  10095. "sebastian/environment": "^5.1.2",
  10096. "sebastian/lines-of-code": "^1.0.3",
  10097. "sebastian/version": "^3.0.1",
  10098. "theseer/tokenizer": "^1.2.0"
  10099. },
  10100. "require-dev": {
  10101. "phpunit/phpunit": "^9.3"
  10102. },
  10103. "suggest": {
  10104. "ext-pcov": "*",
  10105. "ext-xdebug": "*"
  10106. },
  10107. "type": "library",
  10108. "extra": {
  10109. "branch-alias": {
  10110. "dev-master": "9.2-dev"
  10111. }
  10112. },
  10113. "autoload": {
  10114. "classmap": [
  10115. "src/"
  10116. ]
  10117. },
  10118. "notification-url": "https://packagist.org/downloads/",
  10119. "license": [
  10120. "BSD-3-Clause"
  10121. ],
  10122. "authors": [
  10123. {
  10124. "name": "Sebastian Bergmann",
  10125. "email": "[email protected]",
  10126. "role": "lead"
  10127. }
  10128. ],
  10129. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  10130. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  10131. "keywords": [
  10132. "coverage",
  10133. "testing",
  10134. "xunit"
  10135. ],
  10136. "support": {
  10137. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  10138. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.6"
  10139. },
  10140. "funding": [
  10141. {
  10142. "url": "https://github.com/sebastianbergmann",
  10143. "type": "github"
  10144. }
  10145. ],
  10146. "time": "2021-03-28T07:26:59+00:00"
  10147. },
  10148. {
  10149. "name": "phpunit/php-file-iterator",
  10150. "version": "3.0.5",
  10151. "source": {
  10152. "type": "git",
  10153. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  10154. "reference": "aa4be8575f26070b100fccb67faabb28f21f66f8"
  10155. },
  10156. "dist": {
  10157. "type": "zip",
  10158. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/aa4be8575f26070b100fccb67faabb28f21f66f8",
  10159. "reference": "aa4be8575f26070b100fccb67faabb28f21f66f8",
  10160. "shasum": ""
  10161. },
  10162. "require": {
  10163. "php": ">=7.3"
  10164. },
  10165. "require-dev": {
  10166. "phpunit/phpunit": "^9.3"
  10167. },
  10168. "type": "library",
  10169. "extra": {
  10170. "branch-alias": {
  10171. "dev-master": "3.0-dev"
  10172. }
  10173. },
  10174. "autoload": {
  10175. "classmap": [
  10176. "src/"
  10177. ]
  10178. },
  10179. "notification-url": "https://packagist.org/downloads/",
  10180. "license": [
  10181. "BSD-3-Clause"
  10182. ],
  10183. "authors": [
  10184. {
  10185. "name": "Sebastian Bergmann",
  10186. "email": "[email protected]",
  10187. "role": "lead"
  10188. }
  10189. ],
  10190. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  10191. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  10192. "keywords": [
  10193. "filesystem",
  10194. "iterator"
  10195. ],
  10196. "support": {
  10197. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  10198. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.5"
  10199. },
  10200. "funding": [
  10201. {
  10202. "url": "https://github.com/sebastianbergmann",
  10203. "type": "github"
  10204. }
  10205. ],
  10206. "time": "2020-09-28T05:57:25+00:00"
  10207. },
  10208. {
  10209. "name": "phpunit/php-invoker",
  10210. "version": "3.1.1",
  10211. "source": {
  10212. "type": "git",
  10213. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  10214. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  10215. },
  10216. "dist": {
  10217. "type": "zip",
  10218. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  10219. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  10220. "shasum": ""
  10221. },
  10222. "require": {
  10223. "php": ">=7.3"
  10224. },
  10225. "require-dev": {
  10226. "ext-pcntl": "*",
  10227. "phpunit/phpunit": "^9.3"
  10228. },
  10229. "suggest": {
  10230. "ext-pcntl": "*"
  10231. },
  10232. "type": "library",
  10233. "extra": {
  10234. "branch-alias": {
  10235. "dev-master": "3.1-dev"
  10236. }
  10237. },
  10238. "autoload": {
  10239. "classmap": [
  10240. "src/"
  10241. ]
  10242. },
  10243. "notification-url": "https://packagist.org/downloads/",
  10244. "license": [
  10245. "BSD-3-Clause"
  10246. ],
  10247. "authors": [
  10248. {
  10249. "name": "Sebastian Bergmann",
  10250. "email": "[email protected]",
  10251. "role": "lead"
  10252. }
  10253. ],
  10254. "description": "Invoke callables with a timeout",
  10255. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  10256. "keywords": [
  10257. "process"
  10258. ],
  10259. "support": {
  10260. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  10261. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  10262. },
  10263. "funding": [
  10264. {
  10265. "url": "https://github.com/sebastianbergmann",
  10266. "type": "github"
  10267. }
  10268. ],
  10269. "time": "2020-09-28T05:58:55+00:00"
  10270. },
  10271. {
  10272. "name": "phpunit/php-text-template",
  10273. "version": "2.0.4",
  10274. "source": {
  10275. "type": "git",
  10276. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  10277. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  10278. },
  10279. "dist": {
  10280. "type": "zip",
  10281. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  10282. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  10283. "shasum": ""
  10284. },
  10285. "require": {
  10286. "php": ">=7.3"
  10287. },
  10288. "require-dev": {
  10289. "phpunit/phpunit": "^9.3"
  10290. },
  10291. "type": "library",
  10292. "extra": {
  10293. "branch-alias": {
  10294. "dev-master": "2.0-dev"
  10295. }
  10296. },
  10297. "autoload": {
  10298. "classmap": [
  10299. "src/"
  10300. ]
  10301. },
  10302. "notification-url": "https://packagist.org/downloads/",
  10303. "license": [
  10304. "BSD-3-Clause"
  10305. ],
  10306. "authors": [
  10307. {
  10308. "name": "Sebastian Bergmann",
  10309. "email": "[email protected]",
  10310. "role": "lead"
  10311. }
  10312. ],
  10313. "description": "Simple template engine.",
  10314. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  10315. "keywords": [
  10316. "template"
  10317. ],
  10318. "support": {
  10319. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  10320. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  10321. },
  10322. "funding": [
  10323. {
  10324. "url": "https://github.com/sebastianbergmann",
  10325. "type": "github"
  10326. }
  10327. ],
  10328. "time": "2020-10-26T05:33:50+00:00"
  10329. },
  10330. {
  10331. "name": "phpunit/php-timer",
  10332. "version": "5.0.3",
  10333. "source": {
  10334. "type": "git",
  10335. "url": "https://github.com/sebastianbergmann/php-timer.git",
  10336. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  10337. },
  10338. "dist": {
  10339. "type": "zip",
  10340. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  10341. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  10342. "shasum": ""
  10343. },
  10344. "require": {
  10345. "php": ">=7.3"
  10346. },
  10347. "require-dev": {
  10348. "phpunit/phpunit": "^9.3"
  10349. },
  10350. "type": "library",
  10351. "extra": {
  10352. "branch-alias": {
  10353. "dev-master": "5.0-dev"
  10354. }
  10355. },
  10356. "autoload": {
  10357. "classmap": [
  10358. "src/"
  10359. ]
  10360. },
  10361. "notification-url": "https://packagist.org/downloads/",
  10362. "license": [
  10363. "BSD-3-Clause"
  10364. ],
  10365. "authors": [
  10366. {
  10367. "name": "Sebastian Bergmann",
  10368. "email": "[email protected]",
  10369. "role": "lead"
  10370. }
  10371. ],
  10372. "description": "Utility class for timing",
  10373. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  10374. "keywords": [
  10375. "timer"
  10376. ],
  10377. "support": {
  10378. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  10379. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  10380. },
  10381. "funding": [
  10382. {
  10383. "url": "https://github.com/sebastianbergmann",
  10384. "type": "github"
  10385. }
  10386. ],
  10387. "time": "2020-10-26T13:16:10+00:00"
  10388. },
  10389. {
  10390. "name": "phpunit/phpunit",
  10391. "version": "9.5.5",
  10392. "source": {
  10393. "type": "git",
  10394. "url": "https://github.com/sebastianbergmann/phpunit.git",
  10395. "reference": "89ff45ea9d70e35522fb6654a2ebc221158de276"
  10396. },
  10397. "dist": {
  10398. "type": "zip",
  10399. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/89ff45ea9d70e35522fb6654a2ebc221158de276",
  10400. "reference": "89ff45ea9d70e35522fb6654a2ebc221158de276",
  10401. "shasum": ""
  10402. },
  10403. "require": {
  10404. "doctrine/instantiator": "^1.3.1",
  10405. "ext-dom": "*",
  10406. "ext-json": "*",
  10407. "ext-libxml": "*",
  10408. "ext-mbstring": "*",
  10409. "ext-xml": "*",
  10410. "ext-xmlwriter": "*",
  10411. "myclabs/deep-copy": "^1.10.1",
  10412. "phar-io/manifest": "^2.0.1",
  10413. "phar-io/version": "^3.0.2",
  10414. "php": ">=7.3",
  10415. "phpspec/prophecy": "^1.12.1",
  10416. "phpunit/php-code-coverage": "^9.2.3",
  10417. "phpunit/php-file-iterator": "^3.0.5",
  10418. "phpunit/php-invoker": "^3.1.1",
  10419. "phpunit/php-text-template": "^2.0.3",
  10420. "phpunit/php-timer": "^5.0.2",
  10421. "sebastian/cli-parser": "^1.0.1",
  10422. "sebastian/code-unit": "^1.0.6",
  10423. "sebastian/comparator": "^4.0.5",
  10424. "sebastian/diff": "^4.0.3",
  10425. "sebastian/environment": "^5.1.3",
  10426. "sebastian/exporter": "^4.0.3",
  10427. "sebastian/global-state": "^5.0.1",
  10428. "sebastian/object-enumerator": "^4.0.3",
  10429. "sebastian/resource-operations": "^3.0.3",
  10430. "sebastian/type": "^2.3.2",
  10431. "sebastian/version": "^3.0.2"
  10432. },
  10433. "require-dev": {
  10434. "ext-pdo": "*",
  10435. "phpspec/prophecy-phpunit": "^2.0.1"
  10436. },
  10437. "suggest": {
  10438. "ext-soap": "*",
  10439. "ext-xdebug": "*"
  10440. },
  10441. "bin": [
  10442. "phpunit"
  10443. ],
  10444. "type": "library",
  10445. "extra": {
  10446. "branch-alias": {
  10447. "dev-master": "9.5-dev"
  10448. }
  10449. },
  10450. "autoload": {
  10451. "classmap": [
  10452. "src/"
  10453. ],
  10454. "files": [
  10455. "src/Framework/Assert/Functions.php"
  10456. ]
  10457. },
  10458. "notification-url": "https://packagist.org/downloads/",
  10459. "license": [
  10460. "BSD-3-Clause"
  10461. ],
  10462. "authors": [
  10463. {
  10464. "name": "Sebastian Bergmann",
  10465. "email": "[email protected]",
  10466. "role": "lead"
  10467. }
  10468. ],
  10469. "description": "The PHP Unit Testing framework.",
  10470. "homepage": "https://phpunit.de/",
  10471. "keywords": [
  10472. "phpunit",
  10473. "testing",
  10474. "xunit"
  10475. ],
  10476. "support": {
  10477. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  10478. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.5"
  10479. },
  10480. "funding": [
  10481. {
  10482. "url": "https://phpunit.de/donate.html",
  10483. "type": "custom"
  10484. },
  10485. {
  10486. "url": "https://github.com/sebastianbergmann",
  10487. "type": "github"
  10488. }
  10489. ],
  10490. "time": "2021-06-05T04:49:07+00:00"
  10491. },
  10492. {
  10493. "name": "react/promise",
  10494. "version": "v2.8.0",
  10495. "source": {
  10496. "type": "git",
  10497. "url": "https://github.com/reactphp/promise.git",
  10498. "reference": "f3cff96a19736714524ca0dd1d4130de73dbbbc4"
  10499. },
  10500. "dist": {
  10501. "type": "zip",
  10502. "url": "https://api.github.com/repos/reactphp/promise/zipball/f3cff96a19736714524ca0dd1d4130de73dbbbc4",
  10503. "reference": "f3cff96a19736714524ca0dd1d4130de73dbbbc4",
  10504. "shasum": ""
  10505. },
  10506. "require": {
  10507. "php": ">=5.4.0"
  10508. },
  10509. "require-dev": {
  10510. "phpunit/phpunit": "^7.0 || ^6.5 || ^5.7 || ^4.8.36"
  10511. },
  10512. "type": "library",
  10513. "autoload": {
  10514. "psr-4": {
  10515. "React\\Promise\\": "src/"
  10516. },
  10517. "files": [
  10518. "src/functions_include.php"
  10519. ]
  10520. },
  10521. "notification-url": "https://packagist.org/downloads/",
  10522. "license": [
  10523. "MIT"
  10524. ],
  10525. "authors": [
  10526. {
  10527. "name": "Jan Sorgalla",
  10528. "email": "[email protected]"
  10529. }
  10530. ],
  10531. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  10532. "keywords": [
  10533. "promise",
  10534. "promises"
  10535. ],
  10536. "support": {
  10537. "issues": "https://github.com/reactphp/promise/issues",
  10538. "source": "https://github.com/reactphp/promise/tree/v2.8.0"
  10539. },
  10540. "time": "2020-05-12T15:16:56+00:00"
  10541. },
  10542. {
  10543. "name": "sebastian/cli-parser",
  10544. "version": "1.0.1",
  10545. "source": {
  10546. "type": "git",
  10547. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  10548. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  10549. },
  10550. "dist": {
  10551. "type": "zip",
  10552. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  10553. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  10554. "shasum": ""
  10555. },
  10556. "require": {
  10557. "php": ">=7.3"
  10558. },
  10559. "require-dev": {
  10560. "phpunit/phpunit": "^9.3"
  10561. },
  10562. "type": "library",
  10563. "extra": {
  10564. "branch-alias": {
  10565. "dev-master": "1.0-dev"
  10566. }
  10567. },
  10568. "autoload": {
  10569. "classmap": [
  10570. "src/"
  10571. ]
  10572. },
  10573. "notification-url": "https://packagist.org/downloads/",
  10574. "license": [
  10575. "BSD-3-Clause"
  10576. ],
  10577. "authors": [
  10578. {
  10579. "name": "Sebastian Bergmann",
  10580. "email": "[email protected]",
  10581. "role": "lead"
  10582. }
  10583. ],
  10584. "description": "Library for parsing CLI options",
  10585. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  10586. "support": {
  10587. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  10588. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  10589. },
  10590. "funding": [
  10591. {
  10592. "url": "https://github.com/sebastianbergmann",
  10593. "type": "github"
  10594. }
  10595. ],
  10596. "time": "2020-09-28T06:08:49+00:00"
  10597. },
  10598. {
  10599. "name": "sebastian/code-unit",
  10600. "version": "1.0.8",
  10601. "source": {
  10602. "type": "git",
  10603. "url": "https://github.com/sebastianbergmann/code-unit.git",
  10604. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  10605. },
  10606. "dist": {
  10607. "type": "zip",
  10608. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  10609. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  10610. "shasum": ""
  10611. },
  10612. "require": {
  10613. "php": ">=7.3"
  10614. },
  10615. "require-dev": {
  10616. "phpunit/phpunit": "^9.3"
  10617. },
  10618. "type": "library",
  10619. "extra": {
  10620. "branch-alias": {
  10621. "dev-master": "1.0-dev"
  10622. }
  10623. },
  10624. "autoload": {
  10625. "classmap": [
  10626. "src/"
  10627. ]
  10628. },
  10629. "notification-url": "https://packagist.org/downloads/",
  10630. "license": [
  10631. "BSD-3-Clause"
  10632. ],
  10633. "authors": [
  10634. {
  10635. "name": "Sebastian Bergmann",
  10636. "email": "[email protected]",
  10637. "role": "lead"
  10638. }
  10639. ],
  10640. "description": "Collection of value objects that represent the PHP code units",
  10641. "homepage": "https://github.com/sebastianbergmann/code-unit",
  10642. "support": {
  10643. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  10644. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  10645. },
  10646. "funding": [
  10647. {
  10648. "url": "https://github.com/sebastianbergmann",
  10649. "type": "github"
  10650. }
  10651. ],
  10652. "time": "2020-10-26T13:08:54+00:00"
  10653. },
  10654. {
  10655. "name": "sebastian/code-unit-reverse-lookup",
  10656. "version": "2.0.3",
  10657. "source": {
  10658. "type": "git",
  10659. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  10660. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  10661. },
  10662. "dist": {
  10663. "type": "zip",
  10664. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  10665. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  10666. "shasum": ""
  10667. },
  10668. "require": {
  10669. "php": ">=7.3"
  10670. },
  10671. "require-dev": {
  10672. "phpunit/phpunit": "^9.3"
  10673. },
  10674. "type": "library",
  10675. "extra": {
  10676. "branch-alias": {
  10677. "dev-master": "2.0-dev"
  10678. }
  10679. },
  10680. "autoload": {
  10681. "classmap": [
  10682. "src/"
  10683. ]
  10684. },
  10685. "notification-url": "https://packagist.org/downloads/",
  10686. "license": [
  10687. "BSD-3-Clause"
  10688. ],
  10689. "authors": [
  10690. {
  10691. "name": "Sebastian Bergmann",
  10692. "email": "[email protected]"
  10693. }
  10694. ],
  10695. "description": "Looks up which function or method a line of code belongs to",
  10696. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  10697. "support": {
  10698. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  10699. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  10700. },
  10701. "funding": [
  10702. {
  10703. "url": "https://github.com/sebastianbergmann",
  10704. "type": "github"
  10705. }
  10706. ],
  10707. "time": "2020-09-28T05:30:19+00:00"
  10708. },
  10709. {
  10710. "name": "sebastian/comparator",
  10711. "version": "4.0.6",
  10712. "source": {
  10713. "type": "git",
  10714. "url": "https://github.com/sebastianbergmann/comparator.git",
  10715. "reference": "55f4261989e546dc112258c7a75935a81a7ce382"
  10716. },
  10717. "dist": {
  10718. "type": "zip",
  10719. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/55f4261989e546dc112258c7a75935a81a7ce382",
  10720. "reference": "55f4261989e546dc112258c7a75935a81a7ce382",
  10721. "shasum": ""
  10722. },
  10723. "require": {
  10724. "php": ">=7.3",
  10725. "sebastian/diff": "^4.0",
  10726. "sebastian/exporter": "^4.0"
  10727. },
  10728. "require-dev": {
  10729. "phpunit/phpunit": "^9.3"
  10730. },
  10731. "type": "library",
  10732. "extra": {
  10733. "branch-alias": {
  10734. "dev-master": "4.0-dev"
  10735. }
  10736. },
  10737. "autoload": {
  10738. "classmap": [
  10739. "src/"
  10740. ]
  10741. },
  10742. "notification-url": "https://packagist.org/downloads/",
  10743. "license": [
  10744. "BSD-3-Clause"
  10745. ],
  10746. "authors": [
  10747. {
  10748. "name": "Sebastian Bergmann",
  10749. "email": "[email protected]"
  10750. },
  10751. {
  10752. "name": "Jeff Welch",
  10753. "email": "[email protected]"
  10754. },
  10755. {
  10756. "name": "Volker Dusch",
  10757. "email": "[email protected]"
  10758. },
  10759. {
  10760. "name": "Bernhard Schussek",
  10761. "email": "[email protected]"
  10762. }
  10763. ],
  10764. "description": "Provides the functionality to compare PHP values for equality",
  10765. "homepage": "https://github.com/sebastianbergmann/comparator",
  10766. "keywords": [
  10767. "comparator",
  10768. "compare",
  10769. "equality"
  10770. ],
  10771. "support": {
  10772. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  10773. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.6"
  10774. },
  10775. "funding": [
  10776. {
  10777. "url": "https://github.com/sebastianbergmann",
  10778. "type": "github"
  10779. }
  10780. ],
  10781. "time": "2020-10-26T15:49:45+00:00"
  10782. },
  10783. {
  10784. "name": "sebastian/complexity",
  10785. "version": "2.0.2",
  10786. "source": {
  10787. "type": "git",
  10788. "url": "https://github.com/sebastianbergmann/complexity.git",
  10789. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  10790. },
  10791. "dist": {
  10792. "type": "zip",
  10793. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  10794. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  10795. "shasum": ""
  10796. },
  10797. "require": {
  10798. "nikic/php-parser": "^4.7",
  10799. "php": ">=7.3"
  10800. },
  10801. "require-dev": {
  10802. "phpunit/phpunit": "^9.3"
  10803. },
  10804. "type": "library",
  10805. "extra": {
  10806. "branch-alias": {
  10807. "dev-master": "2.0-dev"
  10808. }
  10809. },
  10810. "autoload": {
  10811. "classmap": [
  10812. "src/"
  10813. ]
  10814. },
  10815. "notification-url": "https://packagist.org/downloads/",
  10816. "license": [
  10817. "BSD-3-Clause"
  10818. ],
  10819. "authors": [
  10820. {
  10821. "name": "Sebastian Bergmann",
  10822. "email": "[email protected]",
  10823. "role": "lead"
  10824. }
  10825. ],
  10826. "description": "Library for calculating the complexity of PHP code units",
  10827. "homepage": "https://github.com/sebastianbergmann/complexity",
  10828. "support": {
  10829. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  10830. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  10831. },
  10832. "funding": [
  10833. {
  10834. "url": "https://github.com/sebastianbergmann",
  10835. "type": "github"
  10836. }
  10837. ],
  10838. "time": "2020-10-26T15:52:27+00:00"
  10839. },
  10840. {
  10841. "name": "sebastian/diff",
  10842. "version": "4.0.4",
  10843. "source": {
  10844. "type": "git",
  10845. "url": "https://github.com/sebastianbergmann/diff.git",
  10846. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  10847. },
  10848. "dist": {
  10849. "type": "zip",
  10850. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  10851. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  10852. "shasum": ""
  10853. },
  10854. "require": {
  10855. "php": ">=7.3"
  10856. },
  10857. "require-dev": {
  10858. "phpunit/phpunit": "^9.3",
  10859. "symfony/process": "^4.2 || ^5"
  10860. },
  10861. "type": "library",
  10862. "extra": {
  10863. "branch-alias": {
  10864. "dev-master": "4.0-dev"
  10865. }
  10866. },
  10867. "autoload": {
  10868. "classmap": [
  10869. "src/"
  10870. ]
  10871. },
  10872. "notification-url": "https://packagist.org/downloads/",
  10873. "license": [
  10874. "BSD-3-Clause"
  10875. ],
  10876. "authors": [
  10877. {
  10878. "name": "Sebastian Bergmann",
  10879. "email": "[email protected]"
  10880. },
  10881. {
  10882. "name": "Kore Nordmann",
  10883. "email": "[email protected]"
  10884. }
  10885. ],
  10886. "description": "Diff implementation",
  10887. "homepage": "https://github.com/sebastianbergmann/diff",
  10888. "keywords": [
  10889. "diff",
  10890. "udiff",
  10891. "unidiff",
  10892. "unified diff"
  10893. ],
  10894. "support": {
  10895. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10896. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  10897. },
  10898. "funding": [
  10899. {
  10900. "url": "https://github.com/sebastianbergmann",
  10901. "type": "github"
  10902. }
  10903. ],
  10904. "time": "2020-10-26T13:10:38+00:00"
  10905. },
  10906. {
  10907. "name": "sebastian/environment",
  10908. "version": "5.1.3",
  10909. "source": {
  10910. "type": "git",
  10911. "url": "https://github.com/sebastianbergmann/environment.git",
  10912. "reference": "388b6ced16caa751030f6a69e588299fa09200ac"
  10913. },
  10914. "dist": {
  10915. "type": "zip",
  10916. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/388b6ced16caa751030f6a69e588299fa09200ac",
  10917. "reference": "388b6ced16caa751030f6a69e588299fa09200ac",
  10918. "shasum": ""
  10919. },
  10920. "require": {
  10921. "php": ">=7.3"
  10922. },
  10923. "require-dev": {
  10924. "phpunit/phpunit": "^9.3"
  10925. },
  10926. "suggest": {
  10927. "ext-posix": "*"
  10928. },
  10929. "type": "library",
  10930. "extra": {
  10931. "branch-alias": {
  10932. "dev-master": "5.1-dev"
  10933. }
  10934. },
  10935. "autoload": {
  10936. "classmap": [
  10937. "src/"
  10938. ]
  10939. },
  10940. "notification-url": "https://packagist.org/downloads/",
  10941. "license": [
  10942. "BSD-3-Clause"
  10943. ],
  10944. "authors": [
  10945. {
  10946. "name": "Sebastian Bergmann",
  10947. "email": "[email protected]"
  10948. }
  10949. ],
  10950. "description": "Provides functionality to handle HHVM/PHP environments",
  10951. "homepage": "http://www.github.com/sebastianbergmann/environment",
  10952. "keywords": [
  10953. "Xdebug",
  10954. "environment",
  10955. "hhvm"
  10956. ],
  10957. "support": {
  10958. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10959. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.3"
  10960. },
  10961. "funding": [
  10962. {
  10963. "url": "https://github.com/sebastianbergmann",
  10964. "type": "github"
  10965. }
  10966. ],
  10967. "time": "2020-09-28T05:52:38+00:00"
  10968. },
  10969. {
  10970. "name": "sebastian/exporter",
  10971. "version": "4.0.3",
  10972. "source": {
  10973. "type": "git",
  10974. "url": "https://github.com/sebastianbergmann/exporter.git",
  10975. "reference": "d89cc98761b8cb5a1a235a6b703ae50d34080e65"
  10976. },
  10977. "dist": {
  10978. "type": "zip",
  10979. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/d89cc98761b8cb5a1a235a6b703ae50d34080e65",
  10980. "reference": "d89cc98761b8cb5a1a235a6b703ae50d34080e65",
  10981. "shasum": ""
  10982. },
  10983. "require": {
  10984. "php": ">=7.3",
  10985. "sebastian/recursion-context": "^4.0"
  10986. },
  10987. "require-dev": {
  10988. "ext-mbstring": "*",
  10989. "phpunit/phpunit": "^9.3"
  10990. },
  10991. "type": "library",
  10992. "extra": {
  10993. "branch-alias": {
  10994. "dev-master": "4.0-dev"
  10995. }
  10996. },
  10997. "autoload": {
  10998. "classmap": [
  10999. "src/"
  11000. ]
  11001. },
  11002. "notification-url": "https://packagist.org/downloads/",
  11003. "license": [
  11004. "BSD-3-Clause"
  11005. ],
  11006. "authors": [
  11007. {
  11008. "name": "Sebastian Bergmann",
  11009. "email": "[email protected]"
  11010. },
  11011. {
  11012. "name": "Jeff Welch",
  11013. "email": "[email protected]"
  11014. },
  11015. {
  11016. "name": "Volker Dusch",
  11017. "email": "[email protected]"
  11018. },
  11019. {
  11020. "name": "Adam Harvey",
  11021. "email": "[email protected]"
  11022. },
  11023. {
  11024. "name": "Bernhard Schussek",
  11025. "email": "[email protected]"
  11026. }
  11027. ],
  11028. "description": "Provides the functionality to export PHP variables for visualization",
  11029. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  11030. "keywords": [
  11031. "export",
  11032. "exporter"
  11033. ],
  11034. "support": {
  11035. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  11036. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.3"
  11037. },
  11038. "funding": [
  11039. {
  11040. "url": "https://github.com/sebastianbergmann",
  11041. "type": "github"
  11042. }
  11043. ],
  11044. "time": "2020-09-28T05:24:23+00:00"
  11045. },
  11046. {
  11047. "name": "sebastian/global-state",
  11048. "version": "5.0.2",
  11049. "source": {
  11050. "type": "git",
  11051. "url": "https://github.com/sebastianbergmann/global-state.git",
  11052. "reference": "a90ccbddffa067b51f574dea6eb25d5680839455"
  11053. },
  11054. "dist": {
  11055. "type": "zip",
  11056. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/a90ccbddffa067b51f574dea6eb25d5680839455",
  11057. "reference": "a90ccbddffa067b51f574dea6eb25d5680839455",
  11058. "shasum": ""
  11059. },
  11060. "require": {
  11061. "php": ">=7.3",
  11062. "sebastian/object-reflector": "^2.0",
  11063. "sebastian/recursion-context": "^4.0"
  11064. },
  11065. "require-dev": {
  11066. "ext-dom": "*",
  11067. "phpunit/phpunit": "^9.3"
  11068. },
  11069. "suggest": {
  11070. "ext-uopz": "*"
  11071. },
  11072. "type": "library",
  11073. "extra": {
  11074. "branch-alias": {
  11075. "dev-master": "5.0-dev"
  11076. }
  11077. },
  11078. "autoload": {
  11079. "classmap": [
  11080. "src/"
  11081. ]
  11082. },
  11083. "notification-url": "https://packagist.org/downloads/",
  11084. "license": [
  11085. "BSD-3-Clause"
  11086. ],
  11087. "authors": [
  11088. {
  11089. "name": "Sebastian Bergmann",
  11090. "email": "[email protected]"
  11091. }
  11092. ],
  11093. "description": "Snapshotting of global state",
  11094. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  11095. "keywords": [
  11096. "global state"
  11097. ],
  11098. "support": {
  11099. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  11100. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.2"
  11101. },
  11102. "funding": [
  11103. {
  11104. "url": "https://github.com/sebastianbergmann",
  11105. "type": "github"
  11106. }
  11107. ],
  11108. "time": "2020-10-26T15:55:19+00:00"
  11109. },
  11110. {
  11111. "name": "sebastian/lines-of-code",
  11112. "version": "1.0.3",
  11113. "source": {
  11114. "type": "git",
  11115. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  11116. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  11117. },
  11118. "dist": {
  11119. "type": "zip",
  11120. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  11121. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  11122. "shasum": ""
  11123. },
  11124. "require": {
  11125. "nikic/php-parser": "^4.6",
  11126. "php": ">=7.3"
  11127. },
  11128. "require-dev": {
  11129. "phpunit/phpunit": "^9.3"
  11130. },
  11131. "type": "library",
  11132. "extra": {
  11133. "branch-alias": {
  11134. "dev-master": "1.0-dev"
  11135. }
  11136. },
  11137. "autoload": {
  11138. "classmap": [
  11139. "src/"
  11140. ]
  11141. },
  11142. "notification-url": "https://packagist.org/downloads/",
  11143. "license": [
  11144. "BSD-3-Clause"
  11145. ],
  11146. "authors": [
  11147. {
  11148. "name": "Sebastian Bergmann",
  11149. "email": "[email protected]",
  11150. "role": "lead"
  11151. }
  11152. ],
  11153. "description": "Library for counting the lines of code in PHP source code",
  11154. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  11155. "support": {
  11156. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  11157. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  11158. },
  11159. "funding": [
  11160. {
  11161. "url": "https://github.com/sebastianbergmann",
  11162. "type": "github"
  11163. }
  11164. ],
  11165. "time": "2020-11-28T06:42:11+00:00"
  11166. },
  11167. {
  11168. "name": "sebastian/object-enumerator",
  11169. "version": "4.0.4",
  11170. "source": {
  11171. "type": "git",
  11172. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  11173. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  11174. },
  11175. "dist": {
  11176. "type": "zip",
  11177. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  11178. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  11179. "shasum": ""
  11180. },
  11181. "require": {
  11182. "php": ">=7.3",
  11183. "sebastian/object-reflector": "^2.0",
  11184. "sebastian/recursion-context": "^4.0"
  11185. },
  11186. "require-dev": {
  11187. "phpunit/phpunit": "^9.3"
  11188. },
  11189. "type": "library",
  11190. "extra": {
  11191. "branch-alias": {
  11192. "dev-master": "4.0-dev"
  11193. }
  11194. },
  11195. "autoload": {
  11196. "classmap": [
  11197. "src/"
  11198. ]
  11199. },
  11200. "notification-url": "https://packagist.org/downloads/",
  11201. "license": [
  11202. "BSD-3-Clause"
  11203. ],
  11204. "authors": [
  11205. {
  11206. "name": "Sebastian Bergmann",
  11207. "email": "[email protected]"
  11208. }
  11209. ],
  11210. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  11211. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  11212. "support": {
  11213. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  11214. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  11215. },
  11216. "funding": [
  11217. {
  11218. "url": "https://github.com/sebastianbergmann",
  11219. "type": "github"
  11220. }
  11221. ],
  11222. "time": "2020-10-26T13:12:34+00:00"
  11223. },
  11224. {
  11225. "name": "sebastian/object-reflector",
  11226. "version": "2.0.4",
  11227. "source": {
  11228. "type": "git",
  11229. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  11230. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  11231. },
  11232. "dist": {
  11233. "type": "zip",
  11234. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  11235. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  11236. "shasum": ""
  11237. },
  11238. "require": {
  11239. "php": ">=7.3"
  11240. },
  11241. "require-dev": {
  11242. "phpunit/phpunit": "^9.3"
  11243. },
  11244. "type": "library",
  11245. "extra": {
  11246. "branch-alias": {
  11247. "dev-master": "2.0-dev"
  11248. }
  11249. },
  11250. "autoload": {
  11251. "classmap": [
  11252. "src/"
  11253. ]
  11254. },
  11255. "notification-url": "https://packagist.org/downloads/",
  11256. "license": [
  11257. "BSD-3-Clause"
  11258. ],
  11259. "authors": [
  11260. {
  11261. "name": "Sebastian Bergmann",
  11262. "email": "[email protected]"
  11263. }
  11264. ],
  11265. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  11266. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  11267. "support": {
  11268. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  11269. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  11270. },
  11271. "funding": [
  11272. {
  11273. "url": "https://github.com/sebastianbergmann",
  11274. "type": "github"
  11275. }
  11276. ],
  11277. "time": "2020-10-26T13:14:26+00:00"
  11278. },
  11279. {
  11280. "name": "sebastian/recursion-context",
  11281. "version": "4.0.4",
  11282. "source": {
  11283. "type": "git",
  11284. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  11285. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172"
  11286. },
  11287. "dist": {
  11288. "type": "zip",
  11289. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172",
  11290. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172",
  11291. "shasum": ""
  11292. },
  11293. "require": {
  11294. "php": ">=7.3"
  11295. },
  11296. "require-dev": {
  11297. "phpunit/phpunit": "^9.3"
  11298. },
  11299. "type": "library",
  11300. "extra": {
  11301. "branch-alias": {
  11302. "dev-master": "4.0-dev"
  11303. }
  11304. },
  11305. "autoload": {
  11306. "classmap": [
  11307. "src/"
  11308. ]
  11309. },
  11310. "notification-url": "https://packagist.org/downloads/",
  11311. "license": [
  11312. "BSD-3-Clause"
  11313. ],
  11314. "authors": [
  11315. {
  11316. "name": "Sebastian Bergmann",
  11317. "email": "[email protected]"
  11318. },
  11319. {
  11320. "name": "Jeff Welch",
  11321. "email": "[email protected]"
  11322. },
  11323. {
  11324. "name": "Adam Harvey",
  11325. "email": "[email protected]"
  11326. }
  11327. ],
  11328. "description": "Provides functionality to recursively process PHP variables",
  11329. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  11330. "support": {
  11331. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  11332. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4"
  11333. },
  11334. "funding": [
  11335. {
  11336. "url": "https://github.com/sebastianbergmann",
  11337. "type": "github"
  11338. }
  11339. ],
  11340. "time": "2020-10-26T13:17:30+00:00"
  11341. },
  11342. {
  11343. "name": "sebastian/resource-operations",
  11344. "version": "3.0.3",
  11345. "source": {
  11346. "type": "git",
  11347. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  11348. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  11349. },
  11350. "dist": {
  11351. "type": "zip",
  11352. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  11353. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  11354. "shasum": ""
  11355. },
  11356. "require": {
  11357. "php": ">=7.3"
  11358. },
  11359. "require-dev": {
  11360. "phpunit/phpunit": "^9.0"
  11361. },
  11362. "type": "library",
  11363. "extra": {
  11364. "branch-alias": {
  11365. "dev-master": "3.0-dev"
  11366. }
  11367. },
  11368. "autoload": {
  11369. "classmap": [
  11370. "src/"
  11371. ]
  11372. },
  11373. "notification-url": "https://packagist.org/downloads/",
  11374. "license": [
  11375. "BSD-3-Clause"
  11376. ],
  11377. "authors": [
  11378. {
  11379. "name": "Sebastian Bergmann",
  11380. "email": "[email protected]"
  11381. }
  11382. ],
  11383. "description": "Provides a list of PHP built-in functions that operate on resources",
  11384. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  11385. "support": {
  11386. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  11387. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  11388. },
  11389. "funding": [
  11390. {
  11391. "url": "https://github.com/sebastianbergmann",
  11392. "type": "github"
  11393. }
  11394. ],
  11395. "time": "2020-09-28T06:45:17+00:00"
  11396. },
  11397. {
  11398. "name": "sebastian/type",
  11399. "version": "2.3.2",
  11400. "source": {
  11401. "type": "git",
  11402. "url": "https://github.com/sebastianbergmann/type.git",
  11403. "reference": "0d1c587401514d17e8f9258a27e23527cb1b06c1"
  11404. },
  11405. "dist": {
  11406. "type": "zip",
  11407. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/0d1c587401514d17e8f9258a27e23527cb1b06c1",
  11408. "reference": "0d1c587401514d17e8f9258a27e23527cb1b06c1",
  11409. "shasum": ""
  11410. },
  11411. "require": {
  11412. "php": ">=7.3"
  11413. },
  11414. "require-dev": {
  11415. "phpunit/phpunit": "^9.3"
  11416. },
  11417. "type": "library",
  11418. "extra": {
  11419. "branch-alias": {
  11420. "dev-master": "2.3-dev"
  11421. }
  11422. },
  11423. "autoload": {
  11424. "classmap": [
  11425. "src/"
  11426. ]
  11427. },
  11428. "notification-url": "https://packagist.org/downloads/",
  11429. "license": [
  11430. "BSD-3-Clause"
  11431. ],
  11432. "authors": [
  11433. {
  11434. "name": "Sebastian Bergmann",
  11435. "email": "[email protected]",
  11436. "role": "lead"
  11437. }
  11438. ],
  11439. "description": "Collection of value objects that represent the types of the PHP type system",
  11440. "homepage": "https://github.com/sebastianbergmann/type",
  11441. "support": {
  11442. "issues": "https://github.com/sebastianbergmann/type/issues",
  11443. "source": "https://github.com/sebastianbergmann/type/tree/2.3.2"
  11444. },
  11445. "funding": [
  11446. {
  11447. "url": "https://github.com/sebastianbergmann",
  11448. "type": "github"
  11449. }
  11450. ],
  11451. "time": "2021-06-04T13:02:07+00:00"
  11452. },
  11453. {
  11454. "name": "sebastian/version",
  11455. "version": "3.0.2",
  11456. "source": {
  11457. "type": "git",
  11458. "url": "https://github.com/sebastianbergmann/version.git",
  11459. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  11460. },
  11461. "dist": {
  11462. "type": "zip",
  11463. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  11464. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  11465. "shasum": ""
  11466. },
  11467. "require": {
  11468. "php": ">=7.3"
  11469. },
  11470. "type": "library",
  11471. "extra": {
  11472. "branch-alias": {
  11473. "dev-master": "3.0-dev"
  11474. }
  11475. },
  11476. "autoload": {
  11477. "classmap": [
  11478. "src/"
  11479. ]
  11480. },
  11481. "notification-url": "https://packagist.org/downloads/",
  11482. "license": [
  11483. "BSD-3-Clause"
  11484. ],
  11485. "authors": [
  11486. {
  11487. "name": "Sebastian Bergmann",
  11488. "email": "[email protected]",
  11489. "role": "lead"
  11490. }
  11491. ],
  11492. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  11493. "homepage": "https://github.com/sebastianbergmann/version",
  11494. "support": {
  11495. "issues": "https://github.com/sebastianbergmann/version/issues",
  11496. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  11497. },
  11498. "funding": [
  11499. {
  11500. "url": "https://github.com/sebastianbergmann",
  11501. "type": "github"
  11502. }
  11503. ],
  11504. "time": "2020-09-28T06:39:44+00:00"
  11505. },
  11506. {
  11507. "name": "seld/jsonlint",
  11508. "version": "1.8.3",
  11509. "source": {
  11510. "type": "git",
  11511. "url": "https://github.com/Seldaek/jsonlint.git",
  11512. "reference": "9ad6ce79c342fbd44df10ea95511a1b24dee5b57"
  11513. },
  11514. "dist": {
  11515. "type": "zip",
  11516. "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/9ad6ce79c342fbd44df10ea95511a1b24dee5b57",
  11517. "reference": "9ad6ce79c342fbd44df10ea95511a1b24dee5b57",
  11518. "shasum": ""
  11519. },
  11520. "require": {
  11521. "php": "^5.3 || ^7.0 || ^8.0"
  11522. },
  11523. "require-dev": {
  11524. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  11525. },
  11526. "bin": [
  11527. "bin/jsonlint"
  11528. ],
  11529. "type": "library",
  11530. "autoload": {
  11531. "psr-4": {
  11532. "Seld\\JsonLint\\": "src/Seld/JsonLint/"
  11533. }
  11534. },
  11535. "notification-url": "https://packagist.org/downloads/",
  11536. "license": [
  11537. "MIT"
  11538. ],
  11539. "authors": [
  11540. {
  11541. "name": "Jordi Boggiano",
  11542. "email": "[email protected]",
  11543. "homepage": "http://seld.be"
  11544. }
  11545. ],
  11546. "description": "JSON Linter",
  11547. "keywords": [
  11548. "json",
  11549. "linter",
  11550. "parser",
  11551. "validator"
  11552. ],
  11553. "support": {
  11554. "issues": "https://github.com/Seldaek/jsonlint/issues",
  11555. "source": "https://github.com/Seldaek/jsonlint/tree/1.8.3"
  11556. },
  11557. "funding": [
  11558. {
  11559. "url": "https://github.com/Seldaek",
  11560. "type": "github"
  11561. },
  11562. {
  11563. "url": "https://tidelift.com/funding/github/packagist/seld/jsonlint",
  11564. "type": "tidelift"
  11565. }
  11566. ],
  11567. "time": "2020-11-11T09:19:24+00:00"
  11568. },
  11569. {
  11570. "name": "seld/phar-utils",
  11571. "version": "1.1.1",
  11572. "source": {
  11573. "type": "git",
  11574. "url": "https://github.com/Seldaek/phar-utils.git",
  11575. "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796"
  11576. },
  11577. "dist": {
  11578. "type": "zip",
  11579. "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/8674b1d84ffb47cc59a101f5d5a3b61e87d23796",
  11580. "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796",
  11581. "shasum": ""
  11582. },
  11583. "require": {
  11584. "php": ">=5.3"
  11585. },
  11586. "type": "library",
  11587. "extra": {
  11588. "branch-alias": {
  11589. "dev-master": "1.x-dev"
  11590. }
  11591. },
  11592. "autoload": {
  11593. "psr-4": {
  11594. "Seld\\PharUtils\\": "src/"
  11595. }
  11596. },
  11597. "notification-url": "https://packagist.org/downloads/",
  11598. "license": [
  11599. "MIT"
  11600. ],
  11601. "authors": [
  11602. {
  11603. "name": "Jordi Boggiano",
  11604. "email": "[email protected]"
  11605. }
  11606. ],
  11607. "description": "PHAR file format utilities, for when PHP phars you up",
  11608. "keywords": [
  11609. "phar"
  11610. ],
  11611. "support": {
  11612. "issues": "https://github.com/Seldaek/phar-utils/issues",
  11613. "source": "https://github.com/Seldaek/phar-utils/tree/master"
  11614. },
  11615. "time": "2020-07-07T18:42:57+00:00"
  11616. },
  11617. {
  11618. "name": "symfony/debug",
  11619. "version": "v4.4.25",
  11620. "source": {
  11621. "type": "git",
  11622. "url": "https://github.com/symfony/debug.git",
  11623. "reference": "a8d2d5c94438548bff9f998ca874e202bb29d07f"
  11624. },
  11625. "dist": {
  11626. "type": "zip",
  11627. "url": "https://api.github.com/repos/symfony/debug/zipball/a8d2d5c94438548bff9f998ca874e202bb29d07f",
  11628. "reference": "a8d2d5c94438548bff9f998ca874e202bb29d07f",
  11629. "shasum": ""
  11630. },
  11631. "require": {
  11632. "php": ">=7.1.3",
  11633. "psr/log": "~1.0",
  11634. "symfony/polyfill-php80": "^1.15"
  11635. },
  11636. "conflict": {
  11637. "symfony/http-kernel": "<3.4"
  11638. },
  11639. "require-dev": {
  11640. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  11641. },
  11642. "type": "library",
  11643. "autoload": {
  11644. "psr-4": {
  11645. "Symfony\\Component\\Debug\\": ""
  11646. },
  11647. "exclude-from-classmap": [
  11648. "/Tests/"
  11649. ]
  11650. },
  11651. "notification-url": "https://packagist.org/downloads/",
  11652. "license": [
  11653. "MIT"
  11654. ],
  11655. "authors": [
  11656. {
  11657. "name": "Fabien Potencier",
  11658. "email": "[email protected]"
  11659. },
  11660. {
  11661. "name": "Symfony Community",
  11662. "homepage": "https://symfony.com/contributors"
  11663. }
  11664. ],
  11665. "description": "Provides tools to ease debugging PHP code",
  11666. "homepage": "https://symfony.com",
  11667. "support": {
  11668. "source": "https://github.com/symfony/debug/tree/v4.4.25"
  11669. },
  11670. "funding": [
  11671. {
  11672. "url": "https://symfony.com/sponsor",
  11673. "type": "custom"
  11674. },
  11675. {
  11676. "url": "https://github.com/fabpot",
  11677. "type": "github"
  11678. },
  11679. {
  11680. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11681. "type": "tidelift"
  11682. }
  11683. ],
  11684. "time": "2021-05-26T17:39:37+00:00"
  11685. },
  11686. {
  11687. "name": "symfony/filesystem",
  11688. "version": "v5.3.0",
  11689. "source": {
  11690. "type": "git",
  11691. "url": "https://github.com/symfony/filesystem.git",
  11692. "reference": "348116319d7fb7d1faa781d26a48922428013eb2"
  11693. },
  11694. "dist": {
  11695. "type": "zip",
  11696. "url": "https://api.github.com/repos/symfony/filesystem/zipball/348116319d7fb7d1faa781d26a48922428013eb2",
  11697. "reference": "348116319d7fb7d1faa781d26a48922428013eb2",
  11698. "shasum": ""
  11699. },
  11700. "require": {
  11701. "php": ">=7.2.5",
  11702. "symfony/polyfill-ctype": "~1.8"
  11703. },
  11704. "type": "library",
  11705. "autoload": {
  11706. "psr-4": {
  11707. "Symfony\\Component\\Filesystem\\": ""
  11708. },
  11709. "exclude-from-classmap": [
  11710. "/Tests/"
  11711. ]
  11712. },
  11713. "notification-url": "https://packagist.org/downloads/",
  11714. "license": [
  11715. "MIT"
  11716. ],
  11717. "authors": [
  11718. {
  11719. "name": "Fabien Potencier",
  11720. "email": "[email protected]"
  11721. },
  11722. {
  11723. "name": "Symfony Community",
  11724. "homepage": "https://symfony.com/contributors"
  11725. }
  11726. ],
  11727. "description": "Provides basic utilities for the filesystem",
  11728. "homepage": "https://symfony.com",
  11729. "support": {
  11730. "source": "https://github.com/symfony/filesystem/tree/v5.3.0"
  11731. },
  11732. "funding": [
  11733. {
  11734. "url": "https://symfony.com/sponsor",
  11735. "type": "custom"
  11736. },
  11737. {
  11738. "url": "https://github.com/fabpot",
  11739. "type": "github"
  11740. },
  11741. {
  11742. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11743. "type": "tidelift"
  11744. }
  11745. ],
  11746. "time": "2021-05-26T17:43:10+00:00"
  11747. },
  11748. {
  11749. "name": "theseer/tokenizer",
  11750. "version": "1.2.0",
  11751. "source": {
  11752. "type": "git",
  11753. "url": "https://github.com/theseer/tokenizer.git",
  11754. "reference": "75a63c33a8577608444246075ea0af0d052e452a"
  11755. },
  11756. "dist": {
  11757. "type": "zip",
  11758. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a",
  11759. "reference": "75a63c33a8577608444246075ea0af0d052e452a",
  11760. "shasum": ""
  11761. },
  11762. "require": {
  11763. "ext-dom": "*",
  11764. "ext-tokenizer": "*",
  11765. "ext-xmlwriter": "*",
  11766. "php": "^7.2 || ^8.0"
  11767. },
  11768. "type": "library",
  11769. "autoload": {
  11770. "classmap": [
  11771. "src/"
  11772. ]
  11773. },
  11774. "notification-url": "https://packagist.org/downloads/",
  11775. "license": [
  11776. "BSD-3-Clause"
  11777. ],
  11778. "authors": [
  11779. {
  11780. "name": "Arne Blankerts",
  11781. "email": "[email protected]",
  11782. "role": "Developer"
  11783. }
  11784. ],
  11785. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11786. "support": {
  11787. "issues": "https://github.com/theseer/tokenizer/issues",
  11788. "source": "https://github.com/theseer/tokenizer/tree/master"
  11789. },
  11790. "funding": [
  11791. {
  11792. "url": "https://github.com/theseer",
  11793. "type": "github"
  11794. }
  11795. ],
  11796. "time": "2020-07-12T23:59:07+00:00"
  11797. },
  11798. {
  11799. "name": "webmozart/assert",
  11800. "version": "1.10.0",
  11801. "source": {
  11802. "type": "git",
  11803. "url": "https://github.com/webmozarts/assert.git",
  11804. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
  11805. },
  11806. "dist": {
  11807. "type": "zip",
  11808. "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
  11809. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
  11810. "shasum": ""
  11811. },
  11812. "require": {
  11813. "php": "^7.2 || ^8.0",
  11814. "symfony/polyfill-ctype": "^1.8"
  11815. },
  11816. "conflict": {
  11817. "phpstan/phpstan": "<0.12.20",
  11818. "vimeo/psalm": "<4.6.1 || 4.6.2"
  11819. },
  11820. "require-dev": {
  11821. "phpunit/phpunit": "^8.5.13"
  11822. },
  11823. "type": "library",
  11824. "extra": {
  11825. "branch-alias": {
  11826. "dev-master": "1.10-dev"
  11827. }
  11828. },
  11829. "autoload": {
  11830. "psr-4": {
  11831. "Webmozart\\Assert\\": "src/"
  11832. }
  11833. },
  11834. "notification-url": "https://packagist.org/downloads/",
  11835. "license": [
  11836. "MIT"
  11837. ],
  11838. "authors": [
  11839. {
  11840. "name": "Bernhard Schussek",
  11841. "email": "[email protected]"
  11842. }
  11843. ],
  11844. "description": "Assertions to validate method input/output with nice error messages.",
  11845. "keywords": [
  11846. "assert",
  11847. "check",
  11848. "validate"
  11849. ],
  11850. "support": {
  11851. "issues": "https://github.com/webmozarts/assert/issues",
  11852. "source": "https://github.com/webmozarts/assert/tree/1.10.0"
  11853. },
  11854. "time": "2021-03-09T10:59:23+00:00"
  11855. }
  11856. ],
  11857. "aliases": [],
  11858. "minimum-stability": "dev",
  11859. "stability-flags": [],
  11860. "prefer-stable": true,
  11861. "prefer-lowest": false,
  11862. "platform": {
  11863. "php": "^7.2.5|^8.0",
  11864. "ext-json": "*",
  11865. "ext-mbstring": "*",
  11866. "ext-openssl": "*",
  11867. "ext-simplexml": "*"
  11868. },
  11869. "platform-dev": [],
  11870. "plugin-api-version": "2.0.0"
  11871. }