composer.lock 399 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184
  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": "e238ecae1978980ec9886ddabeba916d",
  8. "packages": [
  9. {
  10. "name": "asm89/stack-cors",
  11. "version": "v2.0.2",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/asm89/stack-cors.git",
  15. "reference": "8d8f88b3b3830916be94292c1fbce84433efb1aa"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/8d8f88b3b3830916be94292c1fbce84433efb1aa",
  20. "reference": "8d8f88b3b3830916be94292c1fbce84433efb1aa",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^7.0|^8.0",
  25. "symfony/http-foundation": "~2.7|~3.0|~4.0|~5.0",
  26. "symfony/http-kernel": "~2.7|~3.0|~4.0|~5.0"
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "^6|^7|^8|^9",
  30. "squizlabs/php_codesniffer": "^3.5"
  31. },
  32. "type": "library",
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "2.0-dev"
  36. }
  37. },
  38. "autoload": {
  39. "psr-4": {
  40. "Asm89\\Stack\\": "src/"
  41. }
  42. },
  43. "notification-url": "https://packagist.org/downloads/",
  44. "license": [
  45. "MIT"
  46. ],
  47. "authors": [
  48. {
  49. "name": "Alexander",
  50. "email": "iam.asm89@gmail.com"
  51. }
  52. ],
  53. "description": "Cross-origin resource sharing library and stack middleware",
  54. "homepage": "https://github.com/asm89/stack-cors",
  55. "keywords": [
  56. "cors",
  57. "stack"
  58. ],
  59. "support": {
  60. "issues": "https://github.com/asm89/stack-cors/issues",
  61. "source": "https://github.com/asm89/stack-cors/tree/v2.0.2"
  62. },
  63. "time": "2020-10-29T16:03:21+00:00"
  64. },
  65. {
  66. "name": "brick/math",
  67. "version": "0.9.1",
  68. "source": {
  69. "type": "git",
  70. "url": "https://github.com/brick/math.git",
  71. "reference": "283a40c901101e66de7061bd359252c013dcc43c"
  72. },
  73. "dist": {
  74. "type": "zip",
  75. "url": "https://api.github.com/repos/brick/math/zipball/283a40c901101e66de7061bd359252c013dcc43c",
  76. "reference": "283a40c901101e66de7061bd359252c013dcc43c",
  77. "shasum": ""
  78. },
  79. "require": {
  80. "ext-json": "*",
  81. "php": "^7.1|^8.0"
  82. },
  83. "require-dev": {
  84. "php-coveralls/php-coveralls": "^2.2",
  85. "phpunit/phpunit": "^7.5.15|^8.5",
  86. "vimeo/psalm": "^3.5"
  87. },
  88. "type": "library",
  89. "autoload": {
  90. "psr-4": {
  91. "Brick\\Math\\": "src/"
  92. }
  93. },
  94. "notification-url": "https://packagist.org/downloads/",
  95. "license": [
  96. "MIT"
  97. ],
  98. "description": "Arbitrary-precision arithmetic library",
  99. "keywords": [
  100. "Arbitrary-precision",
  101. "BigInteger",
  102. "BigRational",
  103. "arithmetic",
  104. "bigdecimal",
  105. "bignum",
  106. "brick",
  107. "math"
  108. ],
  109. "support": {
  110. "issues": "https://github.com/brick/math/issues",
  111. "source": "https://github.com/brick/math/tree/master"
  112. },
  113. "funding": [
  114. {
  115. "url": "https://tidelift.com/funding/github/packagist/brick/math",
  116. "type": "tidelift"
  117. }
  118. ],
  119. "time": "2020-08-18T23:57:15+00:00"
  120. },
  121. {
  122. "name": "composer/ca-bundle",
  123. "version": "1.2.8",
  124. "source": {
  125. "type": "git",
  126. "url": "https://github.com/composer/ca-bundle.git",
  127. "reference": "8a7ecad675253e4654ea05505233285377405215"
  128. },
  129. "dist": {
  130. "type": "zip",
  131. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/8a7ecad675253e4654ea05505233285377405215",
  132. "reference": "8a7ecad675253e4654ea05505233285377405215",
  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. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8",
  142. "psr/log": "^1.0",
  143. "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0"
  144. },
  145. "type": "library",
  146. "extra": {
  147. "branch-alias": {
  148. "dev-master": "1.x-dev"
  149. }
  150. },
  151. "autoload": {
  152. "psr-4": {
  153. "Composer\\CaBundle\\": "src"
  154. }
  155. },
  156. "notification-url": "https://packagist.org/downloads/",
  157. "license": [
  158. "MIT"
  159. ],
  160. "authors": [
  161. {
  162. "name": "Jordi Boggiano",
  163. "email": "j.boggiano@seld.be",
  164. "homepage": "http://seld.be"
  165. }
  166. ],
  167. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  168. "keywords": [
  169. "cabundle",
  170. "cacert",
  171. "certificate",
  172. "ssl",
  173. "tls"
  174. ],
  175. "support": {
  176. "irc": "irc://irc.freenode.org/composer",
  177. "issues": "https://github.com/composer/ca-bundle/issues",
  178. "source": "https://github.com/composer/ca-bundle/tree/1.2.8"
  179. },
  180. "funding": [
  181. {
  182. "url": "https://packagist.com",
  183. "type": "custom"
  184. },
  185. {
  186. "url": "https://github.com/composer",
  187. "type": "github"
  188. },
  189. {
  190. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  191. "type": "tidelift"
  192. }
  193. ],
  194. "time": "2020-08-23T12:54:47+00:00"
  195. },
  196. {
  197. "name": "dnoegel/php-xdg-base-dir",
  198. "version": "v0.1.1",
  199. "source": {
  200. "type": "git",
  201. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  202. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd"
  203. },
  204. "dist": {
  205. "type": "zip",
  206. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  207. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  208. "shasum": ""
  209. },
  210. "require": {
  211. "php": ">=5.3.2"
  212. },
  213. "require-dev": {
  214. "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
  215. },
  216. "type": "library",
  217. "autoload": {
  218. "psr-4": {
  219. "XdgBaseDir\\": "src/"
  220. }
  221. },
  222. "notification-url": "https://packagist.org/downloads/",
  223. "license": [
  224. "MIT"
  225. ],
  226. "description": "implementation of xdg base directory specification for php",
  227. "support": {
  228. "issues": "https://github.com/dnoegel/php-xdg-base-dir/issues",
  229. "source": "https://github.com/dnoegel/php-xdg-base-dir/tree/v0.1.1"
  230. },
  231. "time": "2019-12-04T15:06:13+00:00"
  232. },
  233. {
  234. "name": "doctrine/cache",
  235. "version": "1.10.2",
  236. "source": {
  237. "type": "git",
  238. "url": "https://github.com/doctrine/cache.git",
  239. "reference": "13e3381b25847283a91948d04640543941309727"
  240. },
  241. "dist": {
  242. "type": "zip",
  243. "url": "https://api.github.com/repos/doctrine/cache/zipball/13e3381b25847283a91948d04640543941309727",
  244. "reference": "13e3381b25847283a91948d04640543941309727",
  245. "shasum": ""
  246. },
  247. "require": {
  248. "php": "~7.1 || ^8.0"
  249. },
  250. "conflict": {
  251. "doctrine/common": ">2.2,<2.4"
  252. },
  253. "require-dev": {
  254. "alcaeus/mongo-php-adapter": "^1.1",
  255. "doctrine/coding-standard": "^6.0",
  256. "mongodb/mongodb": "^1.1",
  257. "phpunit/phpunit": "^7.0",
  258. "predis/predis": "~1.0"
  259. },
  260. "suggest": {
  261. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  262. },
  263. "type": "library",
  264. "extra": {
  265. "branch-alias": {
  266. "dev-master": "1.9.x-dev"
  267. }
  268. },
  269. "autoload": {
  270. "psr-4": {
  271. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  272. }
  273. },
  274. "notification-url": "https://packagist.org/downloads/",
  275. "license": [
  276. "MIT"
  277. ],
  278. "authors": [
  279. {
  280. "name": "Guilherme Blanco",
  281. "email": "guilhermeblanco@gmail.com"
  282. },
  283. {
  284. "name": "Roman Borschel",
  285. "email": "roman@code-factory.org"
  286. },
  287. {
  288. "name": "Benjamin Eberlei",
  289. "email": "kontakt@beberlei.de"
  290. },
  291. {
  292. "name": "Jonathan Wage",
  293. "email": "jonwage@gmail.com"
  294. },
  295. {
  296. "name": "Johannes Schmitt",
  297. "email": "schmittjoh@gmail.com"
  298. }
  299. ],
  300. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  301. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  302. "keywords": [
  303. "abstraction",
  304. "apcu",
  305. "cache",
  306. "caching",
  307. "couchdb",
  308. "memcached",
  309. "php",
  310. "redis",
  311. "xcache"
  312. ],
  313. "support": {
  314. "issues": "https://github.com/doctrine/cache/issues",
  315. "source": "https://github.com/doctrine/cache/tree/1.10.x"
  316. },
  317. "funding": [
  318. {
  319. "url": "https://www.doctrine-project.org/sponsorship.html",
  320. "type": "custom"
  321. },
  322. {
  323. "url": "https://www.patreon.com/phpdoctrine",
  324. "type": "patreon"
  325. },
  326. {
  327. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  328. "type": "tidelift"
  329. }
  330. ],
  331. "time": "2020-07-07T18:54:01+00:00"
  332. },
  333. {
  334. "name": "doctrine/dbal",
  335. "version": "2.12.1",
  336. "source": {
  337. "type": "git",
  338. "url": "https://github.com/doctrine/dbal.git",
  339. "reference": "adce7a954a1c2f14f85e94aed90c8489af204086"
  340. },
  341. "dist": {
  342. "type": "zip",
  343. "url": "https://api.github.com/repos/doctrine/dbal/zipball/adce7a954a1c2f14f85e94aed90c8489af204086",
  344. "reference": "adce7a954a1c2f14f85e94aed90c8489af204086",
  345. "shasum": ""
  346. },
  347. "require": {
  348. "doctrine/cache": "^1.0",
  349. "doctrine/event-manager": "^1.0",
  350. "ext-pdo": "*",
  351. "php": "^7.3 || ^8"
  352. },
  353. "require-dev": {
  354. "doctrine/coding-standard": "^8.1",
  355. "jetbrains/phpstorm-stubs": "^2019.1",
  356. "phpstan/phpstan": "^0.12.40",
  357. "phpunit/phpunit": "^9.4",
  358. "psalm/plugin-phpunit": "^0.10.0",
  359. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
  360. "vimeo/psalm": "^3.17.2"
  361. },
  362. "suggest": {
  363. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  364. },
  365. "bin": [
  366. "bin/doctrine-dbal"
  367. ],
  368. "type": "library",
  369. "extra": {
  370. "branch-alias": {
  371. "dev-master": "4.0.x-dev"
  372. }
  373. },
  374. "autoload": {
  375. "psr-4": {
  376. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  377. }
  378. },
  379. "notification-url": "https://packagist.org/downloads/",
  380. "license": [
  381. "MIT"
  382. ],
  383. "authors": [
  384. {
  385. "name": "Guilherme Blanco",
  386. "email": "guilhermeblanco@gmail.com"
  387. },
  388. {
  389. "name": "Roman Borschel",
  390. "email": "roman@code-factory.org"
  391. },
  392. {
  393. "name": "Benjamin Eberlei",
  394. "email": "kontakt@beberlei.de"
  395. },
  396. {
  397. "name": "Jonathan Wage",
  398. "email": "jonwage@gmail.com"
  399. }
  400. ],
  401. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  402. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  403. "keywords": [
  404. "abstraction",
  405. "database",
  406. "db2",
  407. "dbal",
  408. "mariadb",
  409. "mssql",
  410. "mysql",
  411. "oci8",
  412. "oracle",
  413. "pdo",
  414. "pgsql",
  415. "postgresql",
  416. "queryobject",
  417. "sasql",
  418. "sql",
  419. "sqlanywhere",
  420. "sqlite",
  421. "sqlserver",
  422. "sqlsrv"
  423. ],
  424. "support": {
  425. "issues": "https://github.com/doctrine/dbal/issues",
  426. "source": "https://github.com/doctrine/dbal/tree/2.12.1"
  427. },
  428. "funding": [
  429. {
  430. "url": "https://www.doctrine-project.org/sponsorship.html",
  431. "type": "custom"
  432. },
  433. {
  434. "url": "https://www.patreon.com/phpdoctrine",
  435. "type": "patreon"
  436. },
  437. {
  438. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  439. "type": "tidelift"
  440. }
  441. ],
  442. "time": "2020-11-14T20:26:58+00:00"
  443. },
  444. {
  445. "name": "doctrine/event-manager",
  446. "version": "1.1.1",
  447. "source": {
  448. "type": "git",
  449. "url": "https://github.com/doctrine/event-manager.git",
  450. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  451. },
  452. "dist": {
  453. "type": "zip",
  454. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  455. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  456. "shasum": ""
  457. },
  458. "require": {
  459. "php": "^7.1 || ^8.0"
  460. },
  461. "conflict": {
  462. "doctrine/common": "<2.9@dev"
  463. },
  464. "require-dev": {
  465. "doctrine/coding-standard": "^6.0",
  466. "phpunit/phpunit": "^7.0"
  467. },
  468. "type": "library",
  469. "extra": {
  470. "branch-alias": {
  471. "dev-master": "1.0.x-dev"
  472. }
  473. },
  474. "autoload": {
  475. "psr-4": {
  476. "Doctrine\\Common\\": "lib/Doctrine/Common"
  477. }
  478. },
  479. "notification-url": "https://packagist.org/downloads/",
  480. "license": [
  481. "MIT"
  482. ],
  483. "authors": [
  484. {
  485. "name": "Guilherme Blanco",
  486. "email": "guilhermeblanco@gmail.com"
  487. },
  488. {
  489. "name": "Roman Borschel",
  490. "email": "roman@code-factory.org"
  491. },
  492. {
  493. "name": "Benjamin Eberlei",
  494. "email": "kontakt@beberlei.de"
  495. },
  496. {
  497. "name": "Jonathan Wage",
  498. "email": "jonwage@gmail.com"
  499. },
  500. {
  501. "name": "Johannes Schmitt",
  502. "email": "schmittjoh@gmail.com"
  503. },
  504. {
  505. "name": "Marco Pivetta",
  506. "email": "ocramius@gmail.com"
  507. }
  508. ],
  509. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  510. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  511. "keywords": [
  512. "event",
  513. "event dispatcher",
  514. "event manager",
  515. "event system",
  516. "events"
  517. ],
  518. "support": {
  519. "issues": "https://github.com/doctrine/event-manager/issues",
  520. "source": "https://github.com/doctrine/event-manager/tree/1.1.x"
  521. },
  522. "funding": [
  523. {
  524. "url": "https://www.doctrine-project.org/sponsorship.html",
  525. "type": "custom"
  526. },
  527. {
  528. "url": "https://www.patreon.com/phpdoctrine",
  529. "type": "patreon"
  530. },
  531. {
  532. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  533. "type": "tidelift"
  534. }
  535. ],
  536. "time": "2020-05-29T18:28:51+00:00"
  537. },
  538. {
  539. "name": "doctrine/inflector",
  540. "version": "2.0.3",
  541. "source": {
  542. "type": "git",
  543. "url": "https://github.com/doctrine/inflector.git",
  544. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210"
  545. },
  546. "dist": {
  547. "type": "zip",
  548. "url": "https://api.github.com/repos/doctrine/inflector/zipball/9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  549. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  550. "shasum": ""
  551. },
  552. "require": {
  553. "php": "^7.2 || ^8.0"
  554. },
  555. "require-dev": {
  556. "doctrine/coding-standard": "^7.0",
  557. "phpstan/phpstan": "^0.11",
  558. "phpstan/phpstan-phpunit": "^0.11",
  559. "phpstan/phpstan-strict-rules": "^0.11",
  560. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  561. },
  562. "type": "library",
  563. "extra": {
  564. "branch-alias": {
  565. "dev-master": "2.0.x-dev"
  566. }
  567. },
  568. "autoload": {
  569. "psr-4": {
  570. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  571. }
  572. },
  573. "notification-url": "https://packagist.org/downloads/",
  574. "license": [
  575. "MIT"
  576. ],
  577. "authors": [
  578. {
  579. "name": "Guilherme Blanco",
  580. "email": "guilhermeblanco@gmail.com"
  581. },
  582. {
  583. "name": "Roman Borschel",
  584. "email": "roman@code-factory.org"
  585. },
  586. {
  587. "name": "Benjamin Eberlei",
  588. "email": "kontakt@beberlei.de"
  589. },
  590. {
  591. "name": "Jonathan Wage",
  592. "email": "jonwage@gmail.com"
  593. },
  594. {
  595. "name": "Johannes Schmitt",
  596. "email": "schmittjoh@gmail.com"
  597. }
  598. ],
  599. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  600. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  601. "keywords": [
  602. "inflection",
  603. "inflector",
  604. "lowercase",
  605. "manipulation",
  606. "php",
  607. "plural",
  608. "singular",
  609. "strings",
  610. "uppercase",
  611. "words"
  612. ],
  613. "support": {
  614. "issues": "https://github.com/doctrine/inflector/issues",
  615. "source": "https://github.com/doctrine/inflector/tree/2.0.x"
  616. },
  617. "funding": [
  618. {
  619. "url": "https://www.doctrine-project.org/sponsorship.html",
  620. "type": "custom"
  621. },
  622. {
  623. "url": "https://www.patreon.com/phpdoctrine",
  624. "type": "patreon"
  625. },
  626. {
  627. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  628. "type": "tidelift"
  629. }
  630. ],
  631. "time": "2020-05-29T15:13:26+00:00"
  632. },
  633. {
  634. "name": "doctrine/lexer",
  635. "version": "1.2.1",
  636. "source": {
  637. "type": "git",
  638. "url": "https://github.com/doctrine/lexer.git",
  639. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  640. },
  641. "dist": {
  642. "type": "zip",
  643. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  644. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  645. "shasum": ""
  646. },
  647. "require": {
  648. "php": "^7.2 || ^8.0"
  649. },
  650. "require-dev": {
  651. "doctrine/coding-standard": "^6.0",
  652. "phpstan/phpstan": "^0.11.8",
  653. "phpunit/phpunit": "^8.2"
  654. },
  655. "type": "library",
  656. "extra": {
  657. "branch-alias": {
  658. "dev-master": "1.2.x-dev"
  659. }
  660. },
  661. "autoload": {
  662. "psr-4": {
  663. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  664. }
  665. },
  666. "notification-url": "https://packagist.org/downloads/",
  667. "license": [
  668. "MIT"
  669. ],
  670. "authors": [
  671. {
  672. "name": "Guilherme Blanco",
  673. "email": "guilhermeblanco@gmail.com"
  674. },
  675. {
  676. "name": "Roman Borschel",
  677. "email": "roman@code-factory.org"
  678. },
  679. {
  680. "name": "Johannes Schmitt",
  681. "email": "schmittjoh@gmail.com"
  682. }
  683. ],
  684. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  685. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  686. "keywords": [
  687. "annotations",
  688. "docblock",
  689. "lexer",
  690. "parser",
  691. "php"
  692. ],
  693. "support": {
  694. "issues": "https://github.com/doctrine/lexer/issues",
  695. "source": "https://github.com/doctrine/lexer/tree/1.2.1"
  696. },
  697. "funding": [
  698. {
  699. "url": "https://www.doctrine-project.org/sponsorship.html",
  700. "type": "custom"
  701. },
  702. {
  703. "url": "https://www.patreon.com/phpdoctrine",
  704. "type": "patreon"
  705. },
  706. {
  707. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  708. "type": "tidelift"
  709. }
  710. ],
  711. "time": "2020-05-25T17:44:05+00:00"
  712. },
  713. {
  714. "name": "dragonmantank/cron-expression",
  715. "version": "v2.3.1",
  716. "source": {
  717. "type": "git",
  718. "url": "https://github.com/dragonmantank/cron-expression.git",
  719. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2"
  720. },
  721. "dist": {
  722. "type": "zip",
  723. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/65b2d8ee1f10915efb3b55597da3404f096acba2",
  724. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2",
  725. "shasum": ""
  726. },
  727. "require": {
  728. "php": "^7.0|^8.0"
  729. },
  730. "require-dev": {
  731. "phpunit/phpunit": "^6.4|^7.0|^8.0|^9.0"
  732. },
  733. "type": "library",
  734. "extra": {
  735. "branch-alias": {
  736. "dev-master": "2.3-dev"
  737. }
  738. },
  739. "autoload": {
  740. "psr-4": {
  741. "Cron\\": "src/Cron/"
  742. }
  743. },
  744. "notification-url": "https://packagist.org/downloads/",
  745. "license": [
  746. "MIT"
  747. ],
  748. "authors": [
  749. {
  750. "name": "Michael Dowling",
  751. "email": "mtdowling@gmail.com",
  752. "homepage": "https://github.com/mtdowling"
  753. },
  754. {
  755. "name": "Chris Tankersley",
  756. "email": "chris@ctankersley.com",
  757. "homepage": "https://github.com/dragonmantank"
  758. }
  759. ],
  760. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  761. "keywords": [
  762. "cron",
  763. "schedule"
  764. ],
  765. "support": {
  766. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  767. "source": "https://github.com/dragonmantank/cron-expression/tree/v2.3.1"
  768. },
  769. "funding": [
  770. {
  771. "url": "https://github.com/dragonmantank",
  772. "type": "github"
  773. }
  774. ],
  775. "time": "2020-10-13T00:52:37+00:00"
  776. },
  777. {
  778. "name": "egulias/email-validator",
  779. "version": "2.1.24",
  780. "source": {
  781. "type": "git",
  782. "url": "https://github.com/egulias/EmailValidator.git",
  783. "reference": "ca90a3291eee1538cd48ff25163240695bd95448"
  784. },
  785. "dist": {
  786. "type": "zip",
  787. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ca90a3291eee1538cd48ff25163240695bd95448",
  788. "reference": "ca90a3291eee1538cd48ff25163240695bd95448",
  789. "shasum": ""
  790. },
  791. "require": {
  792. "doctrine/lexer": "^1.0.1",
  793. "php": ">=5.5",
  794. "symfony/polyfill-intl-idn": "^1.10"
  795. },
  796. "require-dev": {
  797. "dominicsayers/isemail": "^3.0.7",
  798. "phpunit/phpunit": "^4.8.36|^7.5.15",
  799. "satooshi/php-coveralls": "^1.0.1"
  800. },
  801. "suggest": {
  802. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  803. },
  804. "type": "library",
  805. "extra": {
  806. "branch-alias": {
  807. "dev-master": "2.1.x-dev"
  808. }
  809. },
  810. "autoload": {
  811. "psr-4": {
  812. "Egulias\\EmailValidator\\": "src"
  813. }
  814. },
  815. "notification-url": "https://packagist.org/downloads/",
  816. "license": [
  817. "MIT"
  818. ],
  819. "authors": [
  820. {
  821. "name": "Eduardo Gulias Davis"
  822. }
  823. ],
  824. "description": "A library for validating emails against several RFCs",
  825. "homepage": "https://github.com/egulias/EmailValidator",
  826. "keywords": [
  827. "email",
  828. "emailvalidation",
  829. "emailvalidator",
  830. "validation",
  831. "validator"
  832. ],
  833. "support": {
  834. "issues": "https://github.com/egulias/EmailValidator/issues",
  835. "source": "https://github.com/egulias/EmailValidator/tree/2.1.24"
  836. },
  837. "funding": [
  838. {
  839. "url": "https://github.com/egulias",
  840. "type": "github"
  841. }
  842. ],
  843. "time": "2020-11-14T15:56:27+00:00"
  844. },
  845. {
  846. "name": "ezyang/htmlpurifier",
  847. "version": "v4.13.0",
  848. "source": {
  849. "type": "git",
  850. "url": "https://github.com/ezyang/htmlpurifier.git",
  851. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75"
  852. },
  853. "dist": {
  854. "type": "zip",
  855. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  856. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  857. "shasum": ""
  858. },
  859. "require": {
  860. "php": ">=5.2"
  861. },
  862. "require-dev": {
  863. "simpletest/simpletest": "dev-master#72de02a7b80c6bb8864ef9bf66d41d2f58f826bd"
  864. },
  865. "type": "library",
  866. "autoload": {
  867. "psr-0": {
  868. "HTMLPurifier": "library/"
  869. },
  870. "files": [
  871. "library/HTMLPurifier.composer.php"
  872. ],
  873. "exclude-from-classmap": [
  874. "/library/HTMLPurifier/Language/"
  875. ]
  876. },
  877. "notification-url": "https://packagist.org/downloads/",
  878. "license": [
  879. "LGPL-2.1-or-later"
  880. ],
  881. "authors": [
  882. {
  883. "name": "Edward Z. Yang",
  884. "email": "admin@htmlpurifier.org",
  885. "homepage": "http://ezyang.com"
  886. }
  887. ],
  888. "description": "Standards compliant HTML filter written in PHP",
  889. "homepage": "http://htmlpurifier.org/",
  890. "keywords": [
  891. "html"
  892. ],
  893. "support": {
  894. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  895. "source": "https://github.com/ezyang/htmlpurifier/tree/master"
  896. },
  897. "time": "2020-06-29T00:56:53+00:00"
  898. },
  899. {
  900. "name": "fideloper/proxy",
  901. "version": "4.4.1",
  902. "source": {
  903. "type": "git",
  904. "url": "https://github.com/fideloper/TrustedProxy.git",
  905. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0"
  906. },
  907. "dist": {
  908. "type": "zip",
  909. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  910. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  911. "shasum": ""
  912. },
  913. "require": {
  914. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  915. "php": ">=5.4.0"
  916. },
  917. "require-dev": {
  918. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  919. "mockery/mockery": "^1.0",
  920. "phpunit/phpunit": "^6.0"
  921. },
  922. "type": "library",
  923. "extra": {
  924. "laravel": {
  925. "providers": [
  926. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  927. ]
  928. }
  929. },
  930. "autoload": {
  931. "psr-4": {
  932. "Fideloper\\Proxy\\": "src/"
  933. }
  934. },
  935. "notification-url": "https://packagist.org/downloads/",
  936. "license": [
  937. "MIT"
  938. ],
  939. "authors": [
  940. {
  941. "name": "Chris Fidao",
  942. "email": "fideloper@gmail.com"
  943. }
  944. ],
  945. "description": "Set trusted proxies for Laravel",
  946. "keywords": [
  947. "load balancing",
  948. "proxy",
  949. "trusted proxy"
  950. ],
  951. "support": {
  952. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  953. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.1"
  954. },
  955. "time": "2020-10-22T13:48:01+00:00"
  956. },
  957. {
  958. "name": "fruitcake/laravel-cors",
  959. "version": "v2.0.3",
  960. "source": {
  961. "type": "git",
  962. "url": "https://github.com/fruitcake/laravel-cors.git",
  963. "reference": "01de0fe5f71c70d1930ee9a80385f9cc28e0f63a"
  964. },
  965. "dist": {
  966. "type": "zip",
  967. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/01de0fe5f71c70d1930ee9a80385f9cc28e0f63a",
  968. "reference": "01de0fe5f71c70d1930ee9a80385f9cc28e0f63a",
  969. "shasum": ""
  970. },
  971. "require": {
  972. "asm89/stack-cors": "^2.0.1",
  973. "illuminate/contracts": "^6|^7|^8|^9",
  974. "illuminate/support": "^6|^7|^8|^9",
  975. "php": ">=7.2",
  976. "symfony/http-foundation": "^4|^5",
  977. "symfony/http-kernel": "^4.3.4|^5"
  978. },
  979. "require-dev": {
  980. "laravel/framework": "^6|^7|^8",
  981. "orchestra/testbench-dusk": "^4|^5|^6",
  982. "phpunit/phpunit": "^6|^7|^8",
  983. "squizlabs/php_codesniffer": "^3.5"
  984. },
  985. "type": "library",
  986. "extra": {
  987. "branch-alias": {
  988. "dev-master": "2.0-dev"
  989. },
  990. "laravel": {
  991. "providers": [
  992. "Fruitcake\\Cors\\CorsServiceProvider"
  993. ]
  994. }
  995. },
  996. "autoload": {
  997. "psr-4": {
  998. "Fruitcake\\Cors\\": "src/"
  999. }
  1000. },
  1001. "notification-url": "https://packagist.org/downloads/",
  1002. "license": [
  1003. "MIT"
  1004. ],
  1005. "authors": [
  1006. {
  1007. "name": "Fruitcake",
  1008. "homepage": "https://fruitcake.nl"
  1009. },
  1010. {
  1011. "name": "Barry vd. Heuvel",
  1012. "email": "barryvdh@gmail.com"
  1013. }
  1014. ],
  1015. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  1016. "keywords": [
  1017. "api",
  1018. "cors",
  1019. "crossdomain",
  1020. "laravel"
  1021. ],
  1022. "support": {
  1023. "issues": "https://github.com/fruitcake/laravel-cors/issues",
  1024. "source": "https://github.com/fruitcake/laravel-cors/tree/v2.0.3"
  1025. },
  1026. "funding": [
  1027. {
  1028. "url": "https://github.com/barryvdh",
  1029. "type": "github"
  1030. }
  1031. ],
  1032. "time": "2020-10-22T13:57:20+00:00"
  1033. },
  1034. {
  1035. "name": "geoip2/geoip2",
  1036. "version": "v2.11.0",
  1037. "source": {
  1038. "type": "git",
  1039. "url": "https://github.com/maxmind/GeoIP2-php.git",
  1040. "reference": "d01be5894a5c1a3381c58c9b1795cd07f96c30f7"
  1041. },
  1042. "dist": {
  1043. "type": "zip",
  1044. "url": "https://api.github.com/repos/maxmind/GeoIP2-php/zipball/d01be5894a5c1a3381c58c9b1795cd07f96c30f7",
  1045. "reference": "d01be5894a5c1a3381c58c9b1795cd07f96c30f7",
  1046. "shasum": ""
  1047. },
  1048. "require": {
  1049. "ext-json": "*",
  1050. "maxmind-db/reader": "~1.8",
  1051. "maxmind/web-service-common": "~0.8",
  1052. "php": ">=7.2"
  1053. },
  1054. "require-dev": {
  1055. "friendsofphp/php-cs-fixer": "2.*",
  1056. "phpunit/phpunit": "^8.0 || ^9.0",
  1057. "squizlabs/php_codesniffer": "3.*"
  1058. },
  1059. "type": "library",
  1060. "autoload": {
  1061. "psr-4": {
  1062. "GeoIp2\\": "src"
  1063. }
  1064. },
  1065. "notification-url": "https://packagist.org/downloads/",
  1066. "license": [
  1067. "Apache-2.0"
  1068. ],
  1069. "authors": [
  1070. {
  1071. "name": "Gregory J. Oschwald",
  1072. "email": "goschwald@maxmind.com",
  1073. "homepage": "https://www.maxmind.com/"
  1074. }
  1075. ],
  1076. "description": "MaxMind GeoIP2 PHP API",
  1077. "homepage": "https://github.com/maxmind/GeoIP2-php",
  1078. "keywords": [
  1079. "IP",
  1080. "geoip",
  1081. "geoip2",
  1082. "geolocation",
  1083. "maxmind"
  1084. ],
  1085. "support": {
  1086. "issues": "https://github.com/maxmind/GeoIP2-php/issues",
  1087. "source": "https://github.com/maxmind/GeoIP2-php/tree/v2.11.0"
  1088. },
  1089. "time": "2020-10-01T18:48:34+00:00"
  1090. },
  1091. {
  1092. "name": "guzzlehttp/guzzle",
  1093. "version": "6.5.5",
  1094. "source": {
  1095. "type": "git",
  1096. "url": "https://github.com/guzzle/guzzle.git",
  1097. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
  1098. },
  1099. "dist": {
  1100. "type": "zip",
  1101. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1102. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1103. "shasum": ""
  1104. },
  1105. "require": {
  1106. "ext-json": "*",
  1107. "guzzlehttp/promises": "^1.0",
  1108. "guzzlehttp/psr7": "^1.6.1",
  1109. "php": ">=5.5",
  1110. "symfony/polyfill-intl-idn": "^1.17.0"
  1111. },
  1112. "require-dev": {
  1113. "ext-curl": "*",
  1114. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  1115. "psr/log": "^1.1"
  1116. },
  1117. "suggest": {
  1118. "psr/log": "Required for using the Log middleware"
  1119. },
  1120. "type": "library",
  1121. "extra": {
  1122. "branch-alias": {
  1123. "dev-master": "6.5-dev"
  1124. }
  1125. },
  1126. "autoload": {
  1127. "psr-4": {
  1128. "GuzzleHttp\\": "src/"
  1129. },
  1130. "files": [
  1131. "src/functions_include.php"
  1132. ]
  1133. },
  1134. "notification-url": "https://packagist.org/downloads/",
  1135. "license": [
  1136. "MIT"
  1137. ],
  1138. "authors": [
  1139. {
  1140. "name": "Michael Dowling",
  1141. "email": "mtdowling@gmail.com",
  1142. "homepage": "https://github.com/mtdowling"
  1143. }
  1144. ],
  1145. "description": "Guzzle is a PHP HTTP client library",
  1146. "homepage": "http://guzzlephp.org/",
  1147. "keywords": [
  1148. "client",
  1149. "curl",
  1150. "framework",
  1151. "http",
  1152. "http client",
  1153. "rest",
  1154. "web service"
  1155. ],
  1156. "support": {
  1157. "issues": "https://github.com/guzzle/guzzle/issues",
  1158. "source": "https://github.com/guzzle/guzzle/tree/6.5"
  1159. },
  1160. "time": "2020-06-16T21:01:06+00:00"
  1161. },
  1162. {
  1163. "name": "guzzlehttp/promises",
  1164. "version": "1.4.0",
  1165. "source": {
  1166. "type": "git",
  1167. "url": "https://github.com/guzzle/promises.git",
  1168. "reference": "60d379c243457e073cff02bc323a2a86cb355631"
  1169. },
  1170. "dist": {
  1171. "type": "zip",
  1172. "url": "https://api.github.com/repos/guzzle/promises/zipball/60d379c243457e073cff02bc323a2a86cb355631",
  1173. "reference": "60d379c243457e073cff02bc323a2a86cb355631",
  1174. "shasum": ""
  1175. },
  1176. "require": {
  1177. "php": ">=5.5"
  1178. },
  1179. "require-dev": {
  1180. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  1181. },
  1182. "type": "library",
  1183. "extra": {
  1184. "branch-alias": {
  1185. "dev-master": "1.4-dev"
  1186. }
  1187. },
  1188. "autoload": {
  1189. "psr-4": {
  1190. "GuzzleHttp\\Promise\\": "src/"
  1191. },
  1192. "files": [
  1193. "src/functions_include.php"
  1194. ]
  1195. },
  1196. "notification-url": "https://packagist.org/downloads/",
  1197. "license": [
  1198. "MIT"
  1199. ],
  1200. "authors": [
  1201. {
  1202. "name": "Michael Dowling",
  1203. "email": "mtdowling@gmail.com",
  1204. "homepage": "https://github.com/mtdowling"
  1205. }
  1206. ],
  1207. "description": "Guzzle promises library",
  1208. "keywords": [
  1209. "promise"
  1210. ],
  1211. "support": {
  1212. "issues": "https://github.com/guzzle/promises/issues",
  1213. "source": "https://github.com/guzzle/promises/tree/1.4.0"
  1214. },
  1215. "time": "2020-09-30T07:37:28+00:00"
  1216. },
  1217. {
  1218. "name": "guzzlehttp/psr7",
  1219. "version": "1.7.0",
  1220. "source": {
  1221. "type": "git",
  1222. "url": "https://github.com/guzzle/psr7.git",
  1223. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3"
  1224. },
  1225. "dist": {
  1226. "type": "zip",
  1227. "url": "https://api.github.com/repos/guzzle/psr7/zipball/53330f47520498c0ae1f61f7e2c90f55690c06a3",
  1228. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3",
  1229. "shasum": ""
  1230. },
  1231. "require": {
  1232. "php": ">=5.4.0",
  1233. "psr/http-message": "~1.0",
  1234. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  1235. },
  1236. "provide": {
  1237. "psr/http-message-implementation": "1.0"
  1238. },
  1239. "require-dev": {
  1240. "ext-zlib": "*",
  1241. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  1242. },
  1243. "suggest": {
  1244. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1245. },
  1246. "type": "library",
  1247. "extra": {
  1248. "branch-alias": {
  1249. "dev-master": "1.7-dev"
  1250. }
  1251. },
  1252. "autoload": {
  1253. "psr-4": {
  1254. "GuzzleHttp\\Psr7\\": "src/"
  1255. },
  1256. "files": [
  1257. "src/functions_include.php"
  1258. ]
  1259. },
  1260. "notification-url": "https://packagist.org/downloads/",
  1261. "license": [
  1262. "MIT"
  1263. ],
  1264. "authors": [
  1265. {
  1266. "name": "Michael Dowling",
  1267. "email": "mtdowling@gmail.com",
  1268. "homepage": "https://github.com/mtdowling"
  1269. },
  1270. {
  1271. "name": "Tobias Schultze",
  1272. "homepage": "https://github.com/Tobion"
  1273. }
  1274. ],
  1275. "description": "PSR-7 message implementation that also provides common utility methods",
  1276. "keywords": [
  1277. "http",
  1278. "message",
  1279. "psr-7",
  1280. "request",
  1281. "response",
  1282. "stream",
  1283. "uri",
  1284. "url"
  1285. ],
  1286. "support": {
  1287. "issues": "https://github.com/guzzle/psr7/issues",
  1288. "source": "https://github.com/guzzle/psr7/tree/1.7.0"
  1289. },
  1290. "time": "2020-09-30T07:37:11+00:00"
  1291. },
  1292. {
  1293. "name": "intervention/image",
  1294. "version": "2.5.1",
  1295. "source": {
  1296. "type": "git",
  1297. "url": "https://github.com/Intervention/image.git",
  1298. "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e"
  1299. },
  1300. "dist": {
  1301. "type": "zip",
  1302. "url": "https://api.github.com/repos/Intervention/image/zipball/abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
  1303. "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
  1304. "shasum": ""
  1305. },
  1306. "require": {
  1307. "ext-fileinfo": "*",
  1308. "guzzlehttp/psr7": "~1.1",
  1309. "php": ">=5.4.0"
  1310. },
  1311. "require-dev": {
  1312. "mockery/mockery": "~0.9.2",
  1313. "phpunit/phpunit": "^4.8 || ^5.7"
  1314. },
  1315. "suggest": {
  1316. "ext-gd": "to use GD library based image processing.",
  1317. "ext-imagick": "to use Imagick based image processing.",
  1318. "intervention/imagecache": "Caching extension for the Intervention Image library"
  1319. },
  1320. "type": "library",
  1321. "extra": {
  1322. "branch-alias": {
  1323. "dev-master": "2.4-dev"
  1324. },
  1325. "laravel": {
  1326. "providers": [
  1327. "Intervention\\Image\\ImageServiceProvider"
  1328. ],
  1329. "aliases": {
  1330. "Image": "Intervention\\Image\\Facades\\Image"
  1331. }
  1332. }
  1333. },
  1334. "autoload": {
  1335. "psr-4": {
  1336. "Intervention\\Image\\": "src/Intervention/Image"
  1337. }
  1338. },
  1339. "notification-url": "https://packagist.org/downloads/",
  1340. "license": [
  1341. "MIT"
  1342. ],
  1343. "authors": [
  1344. {
  1345. "name": "Oliver Vogel",
  1346. "email": "oliver@olivervogel.com",
  1347. "homepage": "http://olivervogel.com/"
  1348. }
  1349. ],
  1350. "description": "Image handling and manipulation library with support for Laravel integration",
  1351. "homepage": "http://image.intervention.io/",
  1352. "keywords": [
  1353. "gd",
  1354. "image",
  1355. "imagick",
  1356. "laravel",
  1357. "thumbnail",
  1358. "watermark"
  1359. ],
  1360. "support": {
  1361. "issues": "https://github.com/Intervention/image/issues",
  1362. "source": "https://github.com/Intervention/image/tree/master"
  1363. },
  1364. "time": "2019-11-02T09:15:47+00:00"
  1365. },
  1366. {
  1367. "name": "ip2location/ip2location-laravel",
  1368. "version": "1.2.0",
  1369. "source": {
  1370. "type": "git",
  1371. "url": "https://github.com/ip2location/ip2location-laravel.git",
  1372. "reference": "56b0da66e12982ef6db0e2fe3b231659c5e76a9b"
  1373. },
  1374. "dist": {
  1375. "type": "zip",
  1376. "url": "https://api.github.com/repos/ip2location/ip2location-laravel/zipball/56b0da66e12982ef6db0e2fe3b231659c5e76a9b",
  1377. "reference": "56b0da66e12982ef6db0e2fe3b231659c5e76a9b",
  1378. "shasum": ""
  1379. },
  1380. "require": {
  1381. "ip2location/ip2location-php": "8.*",
  1382. "php": ">=5.4"
  1383. },
  1384. "type": "library",
  1385. "autoload": {
  1386. "psr-4": {
  1387. "Ip2location\\IP2LocationLaravel\\": "src/"
  1388. }
  1389. },
  1390. "notification-url": "https://packagist.org/downloads/",
  1391. "license": [
  1392. "MIT"
  1393. ],
  1394. "authors": [
  1395. {
  1396. "name": "IP2Location",
  1397. "email": "support@ip2location.com"
  1398. }
  1399. ],
  1400. "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.",
  1401. "keywords": [
  1402. "geolocation",
  1403. "ip2location",
  1404. "laravel",
  1405. "laravel 5",
  1406. "laravel 7"
  1407. ],
  1408. "support": {
  1409. "issues": "https://github.com/ip2location/ip2location-laravel/issues",
  1410. "source": "https://github.com/ip2location/ip2location-laravel/tree/master"
  1411. },
  1412. "time": "2020-08-27T07:47:55+00:00"
  1413. },
  1414. {
  1415. "name": "ip2location/ip2location-php",
  1416. "version": "8.3.0",
  1417. "source": {
  1418. "type": "git",
  1419. "url": "https://github.com/chrislim2888/IP2Location-PHP-Module.git",
  1420. "reference": "4c501aa1f666ae85eab84d4df9d19399f2e6ce15"
  1421. },
  1422. "dist": {
  1423. "type": "zip",
  1424. "url": "https://api.github.com/repos/chrislim2888/IP2Location-PHP-Module/zipball/4c501aa1f666ae85eab84d4df9d19399f2e6ce15",
  1425. "reference": "4c501aa1f666ae85eab84d4df9d19399f2e6ce15",
  1426. "shasum": ""
  1427. },
  1428. "type": "library",
  1429. "autoload": {
  1430. "classmap": [
  1431. "IP2Location.php"
  1432. ]
  1433. },
  1434. "notification-url": "https://packagist.org/downloads/",
  1435. "license": [
  1436. "MIT"
  1437. ],
  1438. "authors": [
  1439. {
  1440. "name": "IP2Location",
  1441. "email": "support@ip2location.com",
  1442. "homepage": "http://www.ip2location.com"
  1443. }
  1444. ],
  1445. "description": "[Official Release] IP2Location PHP API to get location info from IPv4 and IPv6 address.",
  1446. "homepage": "http://www.ip2location.com",
  1447. "keywords": [
  1448. "geolocation",
  1449. "ip2location",
  1450. "ip2locationlite"
  1451. ],
  1452. "support": {
  1453. "issues": "https://github.com/chrislim2888/IP2Location-PHP-Module/issues",
  1454. "source": "https://github.com/chrislim2888/IP2Location-PHP-Module/tree/8.3.0"
  1455. },
  1456. "time": "2020-11-23T04:30:39+00:00"
  1457. },
  1458. {
  1459. "name": "ipip/db",
  1460. "version": "v1.0.0",
  1461. "source": {
  1462. "type": "git",
  1463. "url": "https://github.com/ipipdotnet/ipdb-php.git",
  1464. "reference": "af42bf28b37dc76beccd7bbe2b0b0572e21f42cf"
  1465. },
  1466. "dist": {
  1467. "type": "zip",
  1468. "url": "https://api.github.com/repos/ipipdotnet/ipdb-php/zipball/af42bf28b37dc76beccd7bbe2b0b0572e21f42cf",
  1469. "reference": "af42bf28b37dc76beccd7bbe2b0b0572e21f42cf",
  1470. "shasum": ""
  1471. },
  1472. "require": {
  1473. "php": ">=5.4.0"
  1474. },
  1475. "type": "library",
  1476. "autoload": {
  1477. "psr-4": {
  1478. "ipip\\db\\": "src/ipip/db/"
  1479. }
  1480. },
  1481. "notification-url": "https://packagist.org/downloads/",
  1482. "license": [
  1483. "Apache-2.0"
  1484. ],
  1485. "authors": [
  1486. {
  1487. "name": "IPIP.net",
  1488. "email": "frk@ipip.net",
  1489. "homepage": "https://www.ipip.net"
  1490. }
  1491. ],
  1492. "description": "IPIP.net officially supported IP database ipdb format parsing library",
  1493. "homepage": "https://www.ipip.net",
  1494. "keywords": [
  1495. "IP",
  1496. "geo",
  1497. "geoip",
  1498. "geolocation",
  1499. "ipdb",
  1500. "ipip.net"
  1501. ],
  1502. "support": {
  1503. "issues": "https://github.com/ipipdotnet/ipdb-php/issues",
  1504. "source": "https://github.com/ipipdotnet/ipdb-php/tree/v1.0.0"
  1505. },
  1506. "time": "2018-11-01T08:07:04+00:00"
  1507. },
  1508. {
  1509. "name": "jaybizzle/crawler-detect",
  1510. "version": "v1.2.103",
  1511. "source": {
  1512. "type": "git",
  1513. "url": "https://github.com/JayBizzle/Crawler-Detect.git",
  1514. "reference": "3efa2860959cc971f17624b40bf0699823f9d0f3"
  1515. },
  1516. "dist": {
  1517. "type": "zip",
  1518. "url": "https://api.github.com/repos/JayBizzle/Crawler-Detect/zipball/3efa2860959cc971f17624b40bf0699823f9d0f3",
  1519. "reference": "3efa2860959cc971f17624b40bf0699823f9d0f3",
  1520. "shasum": ""
  1521. },
  1522. "require": {
  1523. "php": ">=5.3.0"
  1524. },
  1525. "require-dev": {
  1526. "phpunit/phpunit": "^4.8|^5.5|^6.5"
  1527. },
  1528. "type": "library",
  1529. "autoload": {
  1530. "psr-4": {
  1531. "Jaybizzle\\CrawlerDetect\\": "src/"
  1532. }
  1533. },
  1534. "notification-url": "https://packagist.org/downloads/",
  1535. "license": [
  1536. "MIT"
  1537. ],
  1538. "authors": [
  1539. {
  1540. "name": "Mark Beech",
  1541. "email": "m@rkbee.ch",
  1542. "role": "Developer"
  1543. }
  1544. ],
  1545. "description": "CrawlerDetect is a PHP class for detecting bots/crawlers/spiders via the user agent",
  1546. "homepage": "https://github.com/JayBizzle/Crawler-Detect/",
  1547. "keywords": [
  1548. "crawler",
  1549. "crawler detect",
  1550. "crawler detector",
  1551. "crawlerdetect",
  1552. "php crawler detect"
  1553. ],
  1554. "support": {
  1555. "issues": "https://github.com/JayBizzle/Crawler-Detect/issues",
  1556. "source": "https://github.com/JayBizzle/Crawler-Detect/tree/v1.2.103"
  1557. },
  1558. "time": "2020-11-23T19:49:25+00:00"
  1559. },
  1560. {
  1561. "name": "jenssegers/agent",
  1562. "version": "v2.6.4",
  1563. "source": {
  1564. "type": "git",
  1565. "url": "https://github.com/jenssegers/agent.git",
  1566. "reference": "daa11c43729510b3700bc34d414664966b03bffe"
  1567. },
  1568. "dist": {
  1569. "type": "zip",
  1570. "url": "https://api.github.com/repos/jenssegers/agent/zipball/daa11c43729510b3700bc34d414664966b03bffe",
  1571. "reference": "daa11c43729510b3700bc34d414664966b03bffe",
  1572. "shasum": ""
  1573. },
  1574. "require": {
  1575. "jaybizzle/crawler-detect": "^1.2",
  1576. "mobiledetect/mobiledetectlib": "^2.7.6",
  1577. "php": ">=5.6"
  1578. },
  1579. "require-dev": {
  1580. "php-coveralls/php-coveralls": "^2.1",
  1581. "phpunit/phpunit": "^5.0|^6.0|^7.0"
  1582. },
  1583. "suggest": {
  1584. "illuminate/support": "Required for laravel service providers"
  1585. },
  1586. "type": "library",
  1587. "extra": {
  1588. "branch-alias": {
  1589. "dev-master": "3.0-dev"
  1590. },
  1591. "laravel": {
  1592. "providers": [
  1593. "Jenssegers\\Agent\\AgentServiceProvider"
  1594. ],
  1595. "aliases": {
  1596. "Agent": "Jenssegers\\Agent\\Facades\\Agent"
  1597. }
  1598. }
  1599. },
  1600. "autoload": {
  1601. "psr-4": {
  1602. "Jenssegers\\Agent\\": "src/"
  1603. }
  1604. },
  1605. "notification-url": "https://packagist.org/downloads/",
  1606. "license": [
  1607. "MIT"
  1608. ],
  1609. "authors": [
  1610. {
  1611. "name": "Jens Segers",
  1612. "homepage": "https://jenssegers.com"
  1613. }
  1614. ],
  1615. "description": "Desktop/mobile user agent parser with support for Laravel, based on Mobiledetect",
  1616. "homepage": "https://github.com/jenssegers/agent",
  1617. "keywords": [
  1618. "Agent",
  1619. "browser",
  1620. "desktop",
  1621. "laravel",
  1622. "mobile",
  1623. "platform",
  1624. "user agent",
  1625. "useragent"
  1626. ],
  1627. "support": {
  1628. "issues": "https://github.com/jenssegers/agent/issues",
  1629. "source": "https://github.com/jenssegers/agent/tree/v2.6.4"
  1630. },
  1631. "funding": [
  1632. {
  1633. "url": "https://github.com/jenssegers",
  1634. "type": "github"
  1635. },
  1636. {
  1637. "url": "https://tidelift.com/funding/github/packagist/jenssegers/agent",
  1638. "type": "tidelift"
  1639. }
  1640. ],
  1641. "time": "2020-06-13T08:05:20+00:00"
  1642. },
  1643. {
  1644. "name": "laravel-lang/lang",
  1645. "version": "7.0.9",
  1646. "source": {
  1647. "type": "git",
  1648. "url": "https://github.com/Laravel-Lang/lang.git",
  1649. "reference": "679a65755db37b35acd36a5e0ca51e055815a00a"
  1650. },
  1651. "dist": {
  1652. "type": "zip",
  1653. "url": "https://api.github.com/repos/Laravel-Lang/lang/zipball/679a65755db37b35acd36a5e0ca51e055815a00a",
  1654. "reference": "679a65755db37b35acd36a5e0ca51e055815a00a",
  1655. "shasum": ""
  1656. },
  1657. "require": {
  1658. "ext-json": "*"
  1659. },
  1660. "suggest": {
  1661. "andrey-helldar/laravel-lang-publisher": "Easy installation and update of translation files for your project",
  1662. "arcanedev/laravel-lang": "Translations manager and checker for Laravel 5",
  1663. "overtrue/laravel-lang": "Command to add languages in your project"
  1664. },
  1665. "type": "library",
  1666. "notification-url": "https://packagist.org/downloads/",
  1667. "license": [
  1668. "MIT"
  1669. ],
  1670. "authors": [
  1671. {
  1672. "name": "Laravel-Lang Team"
  1673. }
  1674. ],
  1675. "description": "Languages for Laravel",
  1676. "keywords": [
  1677. "lang",
  1678. "languages",
  1679. "laravel",
  1680. "lpm"
  1681. ],
  1682. "support": {
  1683. "issues": "https://github.com/Laravel-Lang/lang/issues",
  1684. "source": "https://github.com/Laravel-Lang/lang/tree/7.0.9"
  1685. },
  1686. "time": "2020-11-30T20:35:41+00:00"
  1687. },
  1688. {
  1689. "name": "laravel/framework",
  1690. "version": "v7.30.0",
  1691. "source": {
  1692. "type": "git",
  1693. "url": "https://github.com/laravel/framework.git",
  1694. "reference": "629c36a0fe87b66d8dccd3c82927950d0f59d3f9"
  1695. },
  1696. "dist": {
  1697. "type": "zip",
  1698. "url": "https://api.github.com/repos/laravel/framework/zipball/629c36a0fe87b66d8dccd3c82927950d0f59d3f9",
  1699. "reference": "629c36a0fe87b66d8dccd3c82927950d0f59d3f9",
  1700. "shasum": ""
  1701. },
  1702. "require": {
  1703. "doctrine/inflector": "^1.4|^2.0",
  1704. "dragonmantank/cron-expression": "^2.3.1",
  1705. "egulias/email-validator": "^2.1.10",
  1706. "ext-json": "*",
  1707. "ext-mbstring": "*",
  1708. "ext-openssl": "*",
  1709. "league/commonmark": "^1.3",
  1710. "league/flysystem": "^1.1",
  1711. "monolog/monolog": "^2.0",
  1712. "nesbot/carbon": "^2.31",
  1713. "opis/closure": "^3.6",
  1714. "php": "^7.2.5|^8.0",
  1715. "psr/container": "^1.0",
  1716. "psr/simple-cache": "^1.0",
  1717. "ramsey/uuid": "^3.7|^4.0",
  1718. "swiftmailer/swiftmailer": "^6.0",
  1719. "symfony/console": "^5.0",
  1720. "symfony/error-handler": "^5.0",
  1721. "symfony/finder": "^5.0",
  1722. "symfony/http-foundation": "^5.0",
  1723. "symfony/http-kernel": "^5.0",
  1724. "symfony/mime": "^5.0",
  1725. "symfony/polyfill-php73": "^1.17",
  1726. "symfony/process": "^5.0",
  1727. "symfony/routing": "^5.0",
  1728. "symfony/var-dumper": "^5.0",
  1729. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  1730. "vlucas/phpdotenv": "^4.0",
  1731. "voku/portable-ascii": "^1.4.8"
  1732. },
  1733. "conflict": {
  1734. "tightenco/collect": "<5.5.33"
  1735. },
  1736. "provide": {
  1737. "psr/container-implementation": "1.0"
  1738. },
  1739. "replace": {
  1740. "illuminate/auth": "self.version",
  1741. "illuminate/broadcasting": "self.version",
  1742. "illuminate/bus": "self.version",
  1743. "illuminate/cache": "self.version",
  1744. "illuminate/config": "self.version",
  1745. "illuminate/console": "self.version",
  1746. "illuminate/container": "self.version",
  1747. "illuminate/contracts": "self.version",
  1748. "illuminate/cookie": "self.version",
  1749. "illuminate/database": "self.version",
  1750. "illuminate/encryption": "self.version",
  1751. "illuminate/events": "self.version",
  1752. "illuminate/filesystem": "self.version",
  1753. "illuminate/hashing": "self.version",
  1754. "illuminate/http": "self.version",
  1755. "illuminate/log": "self.version",
  1756. "illuminate/mail": "self.version",
  1757. "illuminate/notifications": "self.version",
  1758. "illuminate/pagination": "self.version",
  1759. "illuminate/pipeline": "self.version",
  1760. "illuminate/queue": "self.version",
  1761. "illuminate/redis": "self.version",
  1762. "illuminate/routing": "self.version",
  1763. "illuminate/session": "self.version",
  1764. "illuminate/support": "self.version",
  1765. "illuminate/testing": "self.version",
  1766. "illuminate/translation": "self.version",
  1767. "illuminate/validation": "self.version",
  1768. "illuminate/view": "self.version"
  1769. },
  1770. "require-dev": {
  1771. "aws/aws-sdk-php": "^3.155",
  1772. "doctrine/dbal": "^2.6",
  1773. "filp/whoops": "^2.8",
  1774. "guzzlehttp/guzzle": "^6.3.1|^7.0.1",
  1775. "league/flysystem-cached-adapter": "^1.0",
  1776. "mockery/mockery": "~1.3.3|^1.4.2",
  1777. "moontoast/math": "^1.1",
  1778. "orchestra/testbench-core": "^5.8",
  1779. "pda/pheanstalk": "^4.0",
  1780. "phpunit/phpunit": "^8.4|^9.3.3",
  1781. "predis/predis": "^1.1.1",
  1782. "symfony/cache": "^5.0"
  1783. },
  1784. "suggest": {
  1785. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.155).",
  1786. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
  1787. "ext-ftp": "Required to use the Flysystem FTP driver.",
  1788. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  1789. "ext-memcached": "Required to use the memcache cache driver.",
  1790. "ext-pcntl": "Required to use all features of the queue worker.",
  1791. "ext-posix": "Required to use all features of the queue worker.",
  1792. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  1793. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  1794. "filp/whoops": "Required for friendly error pages in development (^2.8).",
  1795. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.3.1|^7.0.1).",
  1796. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  1797. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  1798. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  1799. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  1800. "mockery/mockery": "Required to use mocking (~1.3.3|^1.4.2).",
  1801. "moontoast/math": "Required to use ordered UUIDs (^1.1).",
  1802. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  1803. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  1804. "phpunit/phpunit": "Required to use assertions and run tests (^8.4|^9.3.3).",
  1805. "predis/predis": "Required to use the predis connector (^1.1.2).",
  1806. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  1807. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0).",
  1808. "symfony/cache": "Required to PSR-6 cache bridge (^5.0).",
  1809. "symfony/filesystem": "Required to create relative storage directory symbolic links (^5.0).",
  1810. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  1811. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  1812. },
  1813. "type": "library",
  1814. "extra": {
  1815. "branch-alias": {
  1816. "dev-master": "7.x-dev"
  1817. }
  1818. },
  1819. "autoload": {
  1820. "files": [
  1821. "src/Illuminate/Foundation/helpers.php",
  1822. "src/Illuminate/Support/helpers.php"
  1823. ],
  1824. "psr-4": {
  1825. "Illuminate\\": "src/Illuminate/"
  1826. }
  1827. },
  1828. "notification-url": "https://packagist.org/downloads/",
  1829. "license": [
  1830. "MIT"
  1831. ],
  1832. "authors": [
  1833. {
  1834. "name": "Taylor Otwell",
  1835. "email": "taylor@laravel.com"
  1836. }
  1837. ],
  1838. "description": "The Laravel Framework.",
  1839. "homepage": "https://laravel.com",
  1840. "keywords": [
  1841. "framework",
  1842. "laravel"
  1843. ],
  1844. "support": {
  1845. "issues": "https://github.com/laravel/framework/issues",
  1846. "source": "https://github.com/laravel/framework"
  1847. },
  1848. "time": "2020-12-01T15:01:25+00:00"
  1849. },
  1850. {
  1851. "name": "laravel/tinker",
  1852. "version": "v2.5.0",
  1853. "source": {
  1854. "type": "git",
  1855. "url": "https://github.com/laravel/tinker.git",
  1856. "reference": "45884b526e10a88a1b179fa1a1a24d5468c668c2"
  1857. },
  1858. "dist": {
  1859. "type": "zip",
  1860. "url": "https://api.github.com/repos/laravel/tinker/zipball/45884b526e10a88a1b179fa1a1a24d5468c668c2",
  1861. "reference": "45884b526e10a88a1b179fa1a1a24d5468c668c2",
  1862. "shasum": ""
  1863. },
  1864. "require": {
  1865. "illuminate/console": "^6.0|^7.0|^8.0",
  1866. "illuminate/contracts": "^6.0|^7.0|^8.0",
  1867. "illuminate/support": "^6.0|^7.0|^8.0",
  1868. "php": "^7.2.5|^8.0",
  1869. "psy/psysh": "^0.10.4",
  1870. "symfony/var-dumper": "^4.3.4|^5.0"
  1871. },
  1872. "require-dev": {
  1873. "mockery/mockery": "~1.3.3|^1.4.2",
  1874. "phpunit/phpunit": "^8.5.8|^9.3.3"
  1875. },
  1876. "suggest": {
  1877. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0)."
  1878. },
  1879. "type": "library",
  1880. "extra": {
  1881. "branch-alias": {
  1882. "dev-master": "2.x-dev"
  1883. },
  1884. "laravel": {
  1885. "providers": [
  1886. "Laravel\\Tinker\\TinkerServiceProvider"
  1887. ]
  1888. }
  1889. },
  1890. "autoload": {
  1891. "psr-4": {
  1892. "Laravel\\Tinker\\": "src/"
  1893. }
  1894. },
  1895. "notification-url": "https://packagist.org/downloads/",
  1896. "license": [
  1897. "MIT"
  1898. ],
  1899. "authors": [
  1900. {
  1901. "name": "Taylor Otwell",
  1902. "email": "taylor@laravel.com"
  1903. }
  1904. ],
  1905. "description": "Powerful REPL for the Laravel framework.",
  1906. "keywords": [
  1907. "REPL",
  1908. "Tinker",
  1909. "laravel",
  1910. "psysh"
  1911. ],
  1912. "support": {
  1913. "issues": "https://github.com/laravel/tinker/issues",
  1914. "source": "https://github.com/laravel/tinker/tree/v2.5.0"
  1915. },
  1916. "time": "2020-10-29T13:07:12+00:00"
  1917. },
  1918. {
  1919. "name": "league/commonmark",
  1920. "version": "1.5.7",
  1921. "source": {
  1922. "type": "git",
  1923. "url": "https://github.com/thephpleague/commonmark.git",
  1924. "reference": "11df9b36fd4f1d2b727a73bf14931d81373b9a54"
  1925. },
  1926. "dist": {
  1927. "type": "zip",
  1928. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/11df9b36fd4f1d2b727a73bf14931d81373b9a54",
  1929. "reference": "11df9b36fd4f1d2b727a73bf14931d81373b9a54",
  1930. "shasum": ""
  1931. },
  1932. "require": {
  1933. "ext-mbstring": "*",
  1934. "php": "^7.1 || ^8.0"
  1935. },
  1936. "conflict": {
  1937. "scrutinizer/ocular": "1.7.*"
  1938. },
  1939. "require-dev": {
  1940. "cebe/markdown": "~1.0",
  1941. "commonmark/commonmark.js": "0.29.2",
  1942. "erusev/parsedown": "~1.0",
  1943. "ext-json": "*",
  1944. "github/gfm": "0.29.0",
  1945. "michelf/php-markdown": "~1.4",
  1946. "mikehaertl/php-shellcommand": "^1.4",
  1947. "phpstan/phpstan": "^0.12",
  1948. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.2",
  1949. "scrutinizer/ocular": "^1.5",
  1950. "symfony/finder": "^4.2"
  1951. },
  1952. "bin": [
  1953. "bin/commonmark"
  1954. ],
  1955. "type": "library",
  1956. "autoload": {
  1957. "psr-4": {
  1958. "League\\CommonMark\\": "src"
  1959. }
  1960. },
  1961. "notification-url": "https://packagist.org/downloads/",
  1962. "license": [
  1963. "BSD-3-Clause"
  1964. ],
  1965. "authors": [
  1966. {
  1967. "name": "Colin O'Dell",
  1968. "email": "colinodell@gmail.com",
  1969. "homepage": "https://www.colinodell.com",
  1970. "role": "Lead Developer"
  1971. }
  1972. ],
  1973. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and Github-Flavored Markdown (GFM)",
  1974. "homepage": "https://commonmark.thephpleague.com",
  1975. "keywords": [
  1976. "commonmark",
  1977. "flavored",
  1978. "gfm",
  1979. "github",
  1980. "github-flavored",
  1981. "markdown",
  1982. "md",
  1983. "parser"
  1984. ],
  1985. "support": {
  1986. "docs": "https://commonmark.thephpleague.com/",
  1987. "issues": "https://github.com/thephpleague/commonmark/issues",
  1988. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  1989. "source": "https://github.com/thephpleague/commonmark"
  1990. },
  1991. "funding": [
  1992. {
  1993. "url": "https://enjoy.gitstore.app/repositories/thephpleague/commonmark",
  1994. "type": "custom"
  1995. },
  1996. {
  1997. "url": "https://www.colinodell.com/sponsor",
  1998. "type": "custom"
  1999. },
  2000. {
  2001. "url": "https://www.paypal.me/colinpodell/10.00",
  2002. "type": "custom"
  2003. },
  2004. {
  2005. "url": "https://github.com/colinodell",
  2006. "type": "github"
  2007. },
  2008. {
  2009. "url": "https://www.patreon.com/colinodell",
  2010. "type": "patreon"
  2011. },
  2012. {
  2013. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2014. "type": "tidelift"
  2015. }
  2016. ],
  2017. "time": "2020-10-31T13:49:32+00:00"
  2018. },
  2019. {
  2020. "name": "league/flysystem",
  2021. "version": "1.1.3",
  2022. "source": {
  2023. "type": "git",
  2024. "url": "https://github.com/thephpleague/flysystem.git",
  2025. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a"
  2026. },
  2027. "dist": {
  2028. "type": "zip",
  2029. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/9be3b16c877d477357c015cec057548cf9b2a14a",
  2030. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a",
  2031. "shasum": ""
  2032. },
  2033. "require": {
  2034. "ext-fileinfo": "*",
  2035. "league/mime-type-detection": "^1.3",
  2036. "php": "^7.2.5 || ^8.0"
  2037. },
  2038. "conflict": {
  2039. "league/flysystem-sftp": "<1.0.6"
  2040. },
  2041. "require-dev": {
  2042. "phpspec/prophecy": "^1.11.1",
  2043. "phpunit/phpunit": "^8.5.8"
  2044. },
  2045. "suggest": {
  2046. "ext-fileinfo": "Required for MimeType",
  2047. "ext-ftp": "Allows you to use FTP server storage",
  2048. "ext-openssl": "Allows you to use FTPS server storage",
  2049. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  2050. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  2051. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  2052. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2053. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  2054. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2055. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  2056. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2057. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2058. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2059. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2060. },
  2061. "type": "library",
  2062. "extra": {
  2063. "branch-alias": {
  2064. "dev-master": "1.1-dev"
  2065. }
  2066. },
  2067. "autoload": {
  2068. "psr-4": {
  2069. "League\\Flysystem\\": "src/"
  2070. }
  2071. },
  2072. "notification-url": "https://packagist.org/downloads/",
  2073. "license": [
  2074. "MIT"
  2075. ],
  2076. "authors": [
  2077. {
  2078. "name": "Frank de Jonge",
  2079. "email": "info@frenky.net"
  2080. }
  2081. ],
  2082. "description": "Filesystem abstraction: Many filesystems, one API.",
  2083. "keywords": [
  2084. "Cloud Files",
  2085. "WebDAV",
  2086. "abstraction",
  2087. "aws",
  2088. "cloud",
  2089. "copy.com",
  2090. "dropbox",
  2091. "file systems",
  2092. "files",
  2093. "filesystem",
  2094. "filesystems",
  2095. "ftp",
  2096. "rackspace",
  2097. "remote",
  2098. "s3",
  2099. "sftp",
  2100. "storage"
  2101. ],
  2102. "support": {
  2103. "issues": "https://github.com/thephpleague/flysystem/issues",
  2104. "source": "https://github.com/thephpleague/flysystem/tree/1.x"
  2105. },
  2106. "funding": [
  2107. {
  2108. "url": "https://offset.earth/frankdejonge",
  2109. "type": "other"
  2110. }
  2111. ],
  2112. "time": "2020-08-23T07:39:11+00:00"
  2113. },
  2114. {
  2115. "name": "league/mime-type-detection",
  2116. "version": "1.5.1",
  2117. "source": {
  2118. "type": "git",
  2119. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2120. "reference": "353f66d7555d8a90781f6f5e7091932f9a4250aa"
  2121. },
  2122. "dist": {
  2123. "type": "zip",
  2124. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/353f66d7555d8a90781f6f5e7091932f9a4250aa",
  2125. "reference": "353f66d7555d8a90781f6f5e7091932f9a4250aa",
  2126. "shasum": ""
  2127. },
  2128. "require": {
  2129. "ext-fileinfo": "*",
  2130. "php": "^7.2 || ^8.0"
  2131. },
  2132. "require-dev": {
  2133. "phpstan/phpstan": "^0.12.36",
  2134. "phpunit/phpunit": "^8.5.8"
  2135. },
  2136. "type": "library",
  2137. "autoload": {
  2138. "psr-4": {
  2139. "League\\MimeTypeDetection\\": "src"
  2140. }
  2141. },
  2142. "notification-url": "https://packagist.org/downloads/",
  2143. "license": [
  2144. "MIT"
  2145. ],
  2146. "authors": [
  2147. {
  2148. "name": "Frank de Jonge",
  2149. "email": "info@frankdejonge.nl"
  2150. }
  2151. ],
  2152. "description": "Mime-type detection for Flysystem",
  2153. "support": {
  2154. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2155. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.5.1"
  2156. },
  2157. "funding": [
  2158. {
  2159. "url": "https://github.com/frankdejonge",
  2160. "type": "github"
  2161. },
  2162. {
  2163. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2164. "type": "tidelift"
  2165. }
  2166. ],
  2167. "time": "2020-10-18T11:50:25+00:00"
  2168. },
  2169. {
  2170. "name": "maennchen/zipstream-php",
  2171. "version": "2.1.0",
  2172. "source": {
  2173. "type": "git",
  2174. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  2175. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58"
  2176. },
  2177. "dist": {
  2178. "type": "zip",
  2179. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2180. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2181. "shasum": ""
  2182. },
  2183. "require": {
  2184. "myclabs/php-enum": "^1.5",
  2185. "php": ">= 7.1",
  2186. "psr/http-message": "^1.0",
  2187. "symfony/polyfill-mbstring": "^1.0"
  2188. },
  2189. "require-dev": {
  2190. "ext-zip": "*",
  2191. "guzzlehttp/guzzle": ">= 6.3",
  2192. "mikey179/vfsstream": "^1.6",
  2193. "phpunit/phpunit": ">= 7.5"
  2194. },
  2195. "type": "library",
  2196. "autoload": {
  2197. "psr-4": {
  2198. "ZipStream\\": "src/"
  2199. }
  2200. },
  2201. "notification-url": "https://packagist.org/downloads/",
  2202. "license": [
  2203. "MIT"
  2204. ],
  2205. "authors": [
  2206. {
  2207. "name": "Paul Duncan",
  2208. "email": "pabs@pablotron.org"
  2209. },
  2210. {
  2211. "name": "Jonatan Männchen",
  2212. "email": "jonatan@maennchen.ch"
  2213. },
  2214. {
  2215. "name": "Jesse Donat",
  2216. "email": "donatj@gmail.com"
  2217. },
  2218. {
  2219. "name": "András Kolesár",
  2220. "email": "kolesar@kolesar.hu"
  2221. }
  2222. ],
  2223. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  2224. "keywords": [
  2225. "stream",
  2226. "zip"
  2227. ],
  2228. "support": {
  2229. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  2230. "source": "https://github.com/maennchen/ZipStream-PHP/tree/master"
  2231. },
  2232. "funding": [
  2233. {
  2234. "url": "https://opencollective.com/zipstream",
  2235. "type": "open_collective"
  2236. }
  2237. ],
  2238. "time": "2020-05-30T13:11:16+00:00"
  2239. },
  2240. {
  2241. "name": "markbaker/complex",
  2242. "version": "2.0.0",
  2243. "source": {
  2244. "type": "git",
  2245. "url": "https://github.com/MarkBaker/PHPComplex.git",
  2246. "reference": "9999f1432fae467bc93c53f357105b4c31bb994c"
  2247. },
  2248. "dist": {
  2249. "type": "zip",
  2250. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/9999f1432fae467bc93c53f357105b4c31bb994c",
  2251. "reference": "9999f1432fae467bc93c53f357105b4c31bb994c",
  2252. "shasum": ""
  2253. },
  2254. "require": {
  2255. "php": "^7.2 || ^8.0"
  2256. },
  2257. "require-dev": {
  2258. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2259. "phpcompatibility/php-compatibility": "^9.0",
  2260. "phpdocumentor/phpdocumentor": "2.*",
  2261. "phploc/phploc": "^4.0",
  2262. "phpmd/phpmd": "2.*",
  2263. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  2264. "sebastian/phpcpd": "^4.0",
  2265. "squizlabs/php_codesniffer": "^3.4"
  2266. },
  2267. "type": "library",
  2268. "autoload": {
  2269. "psr-4": {
  2270. "Complex\\": "classes/src/"
  2271. },
  2272. "files": [
  2273. "classes/src/functions/abs.php",
  2274. "classes/src/functions/acos.php",
  2275. "classes/src/functions/acosh.php",
  2276. "classes/src/functions/acot.php",
  2277. "classes/src/functions/acoth.php",
  2278. "classes/src/functions/acsc.php",
  2279. "classes/src/functions/acsch.php",
  2280. "classes/src/functions/argument.php",
  2281. "classes/src/functions/asec.php",
  2282. "classes/src/functions/asech.php",
  2283. "classes/src/functions/asin.php",
  2284. "classes/src/functions/asinh.php",
  2285. "classes/src/functions/atan.php",
  2286. "classes/src/functions/atanh.php",
  2287. "classes/src/functions/conjugate.php",
  2288. "classes/src/functions/cos.php",
  2289. "classes/src/functions/cosh.php",
  2290. "classes/src/functions/cot.php",
  2291. "classes/src/functions/coth.php",
  2292. "classes/src/functions/csc.php",
  2293. "classes/src/functions/csch.php",
  2294. "classes/src/functions/exp.php",
  2295. "classes/src/functions/inverse.php",
  2296. "classes/src/functions/ln.php",
  2297. "classes/src/functions/log2.php",
  2298. "classes/src/functions/log10.php",
  2299. "classes/src/functions/negative.php",
  2300. "classes/src/functions/pow.php",
  2301. "classes/src/functions/rho.php",
  2302. "classes/src/functions/sec.php",
  2303. "classes/src/functions/sech.php",
  2304. "classes/src/functions/sin.php",
  2305. "classes/src/functions/sinh.php",
  2306. "classes/src/functions/sqrt.php",
  2307. "classes/src/functions/tan.php",
  2308. "classes/src/functions/tanh.php",
  2309. "classes/src/functions/theta.php",
  2310. "classes/src/operations/add.php",
  2311. "classes/src/operations/subtract.php",
  2312. "classes/src/operations/multiply.php",
  2313. "classes/src/operations/divideby.php",
  2314. "classes/src/operations/divideinto.php"
  2315. ]
  2316. },
  2317. "notification-url": "https://packagist.org/downloads/",
  2318. "license": [
  2319. "MIT"
  2320. ],
  2321. "authors": [
  2322. {
  2323. "name": "Mark Baker",
  2324. "email": "mark@lange.demon.co.uk"
  2325. }
  2326. ],
  2327. "description": "PHP Class for working with complex numbers",
  2328. "homepage": "https://github.com/MarkBaker/PHPComplex",
  2329. "keywords": [
  2330. "complex",
  2331. "mathematics"
  2332. ],
  2333. "support": {
  2334. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  2335. "source": "https://github.com/MarkBaker/PHPComplex/tree/PHP8"
  2336. },
  2337. "time": "2020-08-26T10:42:07+00:00"
  2338. },
  2339. {
  2340. "name": "markbaker/matrix",
  2341. "version": "2.0.0",
  2342. "source": {
  2343. "type": "git",
  2344. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  2345. "reference": "9567d9c4c519fbe40de01dbd1e4469dbbb66f46a"
  2346. },
  2347. "dist": {
  2348. "type": "zip",
  2349. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/9567d9c4c519fbe40de01dbd1e4469dbbb66f46a",
  2350. "reference": "9567d9c4c519fbe40de01dbd1e4469dbbb66f46a",
  2351. "shasum": ""
  2352. },
  2353. "require": {
  2354. "php": "^7.2 || ^8.0"
  2355. },
  2356. "require-dev": {
  2357. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2358. "phpcompatibility/php-compatibility": "^9.0",
  2359. "phpdocumentor/phpdocumentor": "2.*",
  2360. "phploc/phploc": "^4.0",
  2361. "phpmd/phpmd": "2.*",
  2362. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  2363. "sebastian/phpcpd": "^4.0",
  2364. "squizlabs/php_codesniffer": "^3.4"
  2365. },
  2366. "type": "library",
  2367. "autoload": {
  2368. "psr-4": {
  2369. "Matrix\\": "classes/src/"
  2370. },
  2371. "files": [
  2372. "classes/src/functions/adjoint.php",
  2373. "classes/src/functions/antidiagonal.php",
  2374. "classes/src/functions/cofactors.php",
  2375. "classes/src/functions/determinant.php",
  2376. "classes/src/functions/diagonal.php",
  2377. "classes/src/functions/identity.php",
  2378. "classes/src/functions/inverse.php",
  2379. "classes/src/functions/minors.php",
  2380. "classes/src/functions/trace.php",
  2381. "classes/src/functions/transpose.php",
  2382. "classes/src/operations/add.php",
  2383. "classes/src/operations/directsum.php",
  2384. "classes/src/operations/subtract.php",
  2385. "classes/src/operations/multiply.php",
  2386. "classes/src/operations/divideby.php",
  2387. "classes/src/operations/divideinto.php"
  2388. ]
  2389. },
  2390. "notification-url": "https://packagist.org/downloads/",
  2391. "license": [
  2392. "MIT"
  2393. ],
  2394. "authors": [
  2395. {
  2396. "name": "Mark Baker",
  2397. "email": "mark@demon-angel.eu"
  2398. }
  2399. ],
  2400. "description": "PHP Class for working with matrices",
  2401. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  2402. "keywords": [
  2403. "mathematics",
  2404. "matrix",
  2405. "vector"
  2406. ],
  2407. "support": {
  2408. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  2409. "source": "https://github.com/MarkBaker/PHPMatrix/tree/PHP8"
  2410. },
  2411. "time": "2020-08-28T17:11:00+00:00"
  2412. },
  2413. {
  2414. "name": "maxmind-db/reader",
  2415. "version": "v1.8.0",
  2416. "source": {
  2417. "type": "git",
  2418. "url": "https://github.com/maxmind/MaxMind-DB-Reader-php.git",
  2419. "reference": "b566d429ac9aec10594b0935be8ff38302f8d5c8"
  2420. },
  2421. "dist": {
  2422. "type": "zip",
  2423. "url": "https://api.github.com/repos/maxmind/MaxMind-DB-Reader-php/zipball/b566d429ac9aec10594b0935be8ff38302f8d5c8",
  2424. "reference": "b566d429ac9aec10594b0935be8ff38302f8d5c8",
  2425. "shasum": ""
  2426. },
  2427. "require": {
  2428. "php": ">=7.2"
  2429. },
  2430. "conflict": {
  2431. "ext-maxminddb": "<1.8.0,>=2.0.0"
  2432. },
  2433. "require-dev": {
  2434. "friendsofphp/php-cs-fixer": "2.*",
  2435. "php-coveralls/php-coveralls": "^2.1",
  2436. "phpunit/phpcov": ">=6.0.0",
  2437. "phpunit/phpunit": ">=8.0.0,<10.0.0",
  2438. "squizlabs/php_codesniffer": "3.*"
  2439. },
  2440. "suggest": {
  2441. "ext-bcmath": "bcmath or gmp is required for decoding larger integers with the pure PHP decoder",
  2442. "ext-gmp": "bcmath or gmp is required for decoding larger integers with the pure PHP decoder",
  2443. "ext-maxminddb": "A C-based database decoder that provides significantly faster lookups"
  2444. },
  2445. "type": "library",
  2446. "autoload": {
  2447. "psr-4": {
  2448. "MaxMind\\Db\\": "src/MaxMind/Db"
  2449. }
  2450. },
  2451. "notification-url": "https://packagist.org/downloads/",
  2452. "license": [
  2453. "Apache-2.0"
  2454. ],
  2455. "authors": [
  2456. {
  2457. "name": "Gregory J. Oschwald",
  2458. "email": "goschwald@maxmind.com",
  2459. "homepage": "https://www.maxmind.com/"
  2460. }
  2461. ],
  2462. "description": "MaxMind DB Reader API",
  2463. "homepage": "https://github.com/maxmind/MaxMind-DB-Reader-php",
  2464. "keywords": [
  2465. "database",
  2466. "geoip",
  2467. "geoip2",
  2468. "geolocation",
  2469. "maxmind"
  2470. ],
  2471. "support": {
  2472. "issues": "https://github.com/maxmind/MaxMind-DB-Reader-php/issues",
  2473. "source": "https://github.com/maxmind/MaxMind-DB-Reader-php/tree/v1.8.0"
  2474. },
  2475. "time": "2020-10-01T17:30:21+00:00"
  2476. },
  2477. {
  2478. "name": "maxmind/web-service-common",
  2479. "version": "v0.8.1",
  2480. "source": {
  2481. "type": "git",
  2482. "url": "https://github.com/maxmind/web-service-common-php.git",
  2483. "reference": "32f274051c543fc865e5a84d3a2c703913641ea8"
  2484. },
  2485. "dist": {
  2486. "type": "zip",
  2487. "url": "https://api.github.com/repos/maxmind/web-service-common-php/zipball/32f274051c543fc865e5a84d3a2c703913641ea8",
  2488. "reference": "32f274051c543fc865e5a84d3a2c703913641ea8",
  2489. "shasum": ""
  2490. },
  2491. "require": {
  2492. "composer/ca-bundle": "^1.0.3",
  2493. "ext-curl": "*",
  2494. "ext-json": "*",
  2495. "php": ">=7.2"
  2496. },
  2497. "require-dev": {
  2498. "friendsofphp/php-cs-fixer": "2.*",
  2499. "phpunit/phpunit": "^8.0 || ^9.0",
  2500. "squizlabs/php_codesniffer": "3.*"
  2501. },
  2502. "type": "library",
  2503. "autoload": {
  2504. "psr-4": {
  2505. "MaxMind\\Exception\\": "src/Exception",
  2506. "MaxMind\\WebService\\": "src/WebService"
  2507. }
  2508. },
  2509. "notification-url": "https://packagist.org/downloads/",
  2510. "license": [
  2511. "Apache-2.0"
  2512. ],
  2513. "authors": [
  2514. {
  2515. "name": "Gregory Oschwald",
  2516. "email": "goschwald@maxmind.com"
  2517. }
  2518. ],
  2519. "description": "Internal MaxMind Web Service API",
  2520. "homepage": "https://github.com/maxmind/web-service-common-php",
  2521. "support": {
  2522. "issues": "https://github.com/maxmind/web-service-common-php/issues",
  2523. "source": "https://github.com/maxmind/web-service-common-php/tree/v0.8.1"
  2524. },
  2525. "time": "2020-11-02T17:00:53+00:00"
  2526. },
  2527. {
  2528. "name": "mews/captcha",
  2529. "version": "3.2.3",
  2530. "source": {
  2531. "type": "git",
  2532. "url": "https://github.com/mewebstudio/captcha.git",
  2533. "reference": "b5549a90110ec6c32a93073aba3ea9ade288c6f7"
  2534. },
  2535. "dist": {
  2536. "type": "zip",
  2537. "url": "https://api.github.com/repos/mewebstudio/captcha/zipball/b5549a90110ec6c32a93073aba3ea9ade288c6f7",
  2538. "reference": "b5549a90110ec6c32a93073aba3ea9ade288c6f7",
  2539. "shasum": ""
  2540. },
  2541. "require": {
  2542. "ext-gd": "*",
  2543. "illuminate/config": "~5|^6|^7|^8",
  2544. "illuminate/filesystem": "~5|^6|^7|^8",
  2545. "illuminate/hashing": "~5|^6|^7|^8",
  2546. "illuminate/session": "~5|^6|^7|^8",
  2547. "illuminate/support": "~5|^6|^7|^8",
  2548. "intervention/image": "~2.5",
  2549. "php": "^7.2"
  2550. },
  2551. "require-dev": {
  2552. "mockery/mockery": "^1.0",
  2553. "phpunit/phpunit": "^8.5"
  2554. },
  2555. "type": "package",
  2556. "extra": {
  2557. "laravel": {
  2558. "providers": [
  2559. "Mews\\Captcha\\CaptchaServiceProvider"
  2560. ],
  2561. "aliases": {
  2562. "Captcha": "Mews\\Captcha\\Facades\\Captcha"
  2563. }
  2564. }
  2565. },
  2566. "autoload": {
  2567. "psr-4": {
  2568. "Mews\\Captcha\\": "src/"
  2569. },
  2570. "files": [
  2571. "src/helpers.php"
  2572. ]
  2573. },
  2574. "notification-url": "https://packagist.org/downloads/",
  2575. "license": [
  2576. "MIT"
  2577. ],
  2578. "authors": [
  2579. {
  2580. "name": "Muharrem ERİN",
  2581. "email": "me@mewebstudio.com",
  2582. "homepage": "https://github.com/mewebstudio",
  2583. "role": "Developer"
  2584. }
  2585. ],
  2586. "description": "Laravel 5 & 6 Captcha Package",
  2587. "homepage": "https://github.com/mewebstudio/captcha",
  2588. "keywords": [
  2589. "captcha",
  2590. "laravel5 Security",
  2591. "laravel6 Captcha",
  2592. "laravel6 Security"
  2593. ],
  2594. "support": {
  2595. "issues": "https://github.com/mewebstudio/captcha/issues",
  2596. "source": "https://github.com/mewebstudio/captcha/tree/3.2.3"
  2597. },
  2598. "time": "2020-11-03T19:44:37+00:00"
  2599. },
  2600. {
  2601. "name": "mews/purifier",
  2602. "version": "3.3.3",
  2603. "source": {
  2604. "type": "git",
  2605. "url": "https://github.com/mewebstudio/Purifier.git",
  2606. "reference": "8e0b3d87c79b38b8d88aeb3c0ba8b000a393a74c"
  2607. },
  2608. "dist": {
  2609. "type": "zip",
  2610. "url": "https://api.github.com/repos/mewebstudio/Purifier/zipball/8e0b3d87c79b38b8d88aeb3c0ba8b000a393a74c",
  2611. "reference": "8e0b3d87c79b38b8d88aeb3c0ba8b000a393a74c",
  2612. "shasum": ""
  2613. },
  2614. "require": {
  2615. "ezyang/htmlpurifier": "4.13.*",
  2616. "illuminate/config": "^5.8|^6.0|^7.0|^8.0",
  2617. "illuminate/filesystem": "^5.8|^6.0|^7.0|^8.0",
  2618. "illuminate/support": "^5.8|^6.0|^7.0|^8.0",
  2619. "php": "^7.2|^8.0"
  2620. },
  2621. "require-dev": {
  2622. "graham-campbell/testbench": "^3.2|^5.5.1",
  2623. "mockery/mockery": "^1.3.3",
  2624. "phpunit/phpunit": "^8.0|^9.0"
  2625. },
  2626. "suggest": {
  2627. "laravel/framework": "To test the Laravel bindings",
  2628. "laravel/lumen-framework": "To test the Lumen bindings"
  2629. },
  2630. "type": "package",
  2631. "extra": {
  2632. "laravel": {
  2633. "providers": [
  2634. "Mews\\Purifier\\PurifierServiceProvider"
  2635. ],
  2636. "aliases": {
  2637. "Purifier": "Mews\\Purifier\\Facades\\Purifier"
  2638. }
  2639. }
  2640. },
  2641. "autoload": {
  2642. "psr-4": {
  2643. "Mews\\Purifier\\": "src/"
  2644. },
  2645. "files": [
  2646. "src/helpers.php"
  2647. ]
  2648. },
  2649. "notification-url": "https://packagist.org/downloads/",
  2650. "license": [
  2651. "MIT"
  2652. ],
  2653. "authors": [
  2654. {
  2655. "name": "Muharrem ERİN",
  2656. "email": "me@mewebstudio.com",
  2657. "homepage": "https://github.com/mewebstudio",
  2658. "role": "Developer"
  2659. }
  2660. ],
  2661. "description": "Laravel 5/6/7 HtmlPurifier Package",
  2662. "homepage": "https://github.com/mewebstudio/purifier",
  2663. "keywords": [
  2664. "Purifier",
  2665. "htmlpurifier",
  2666. "laravel5 HtmlPurifier",
  2667. "laravel5 Purifier",
  2668. "laravel5 Security",
  2669. "laravel6 HtmlPurifier",
  2670. "laravel6 Purifier",
  2671. "laravel6 Security",
  2672. "security",
  2673. "xss"
  2674. ],
  2675. "support": {
  2676. "issues": "https://github.com/mewebstudio/Purifier/issues",
  2677. "source": "https://github.com/mewebstudio/Purifier/tree/3.3.3"
  2678. },
  2679. "time": "2020-11-03T19:46:27+00:00"
  2680. },
  2681. {
  2682. "name": "mobiledetect/mobiledetectlib",
  2683. "version": "2.8.34",
  2684. "source": {
  2685. "type": "git",
  2686. "url": "https://github.com/serbanghita/Mobile-Detect.git",
  2687. "reference": "6f8113f57a508494ca36acbcfa2dc2d923c7ed5b"
  2688. },
  2689. "dist": {
  2690. "type": "zip",
  2691. "url": "https://api.github.com/repos/serbanghita/Mobile-Detect/zipball/6f8113f57a508494ca36acbcfa2dc2d923c7ed5b",
  2692. "reference": "6f8113f57a508494ca36acbcfa2dc2d923c7ed5b",
  2693. "shasum": ""
  2694. },
  2695. "require": {
  2696. "php": ">=5.0.0"
  2697. },
  2698. "require-dev": {
  2699. "phpunit/phpunit": "~4.8.35||~5.7"
  2700. },
  2701. "type": "library",
  2702. "autoload": {
  2703. "classmap": [
  2704. "Mobile_Detect.php"
  2705. ],
  2706. "psr-0": {
  2707. "Detection": "namespaced/"
  2708. }
  2709. },
  2710. "notification-url": "https://packagist.org/downloads/",
  2711. "license": [
  2712. "MIT"
  2713. ],
  2714. "authors": [
  2715. {
  2716. "name": "Serban Ghita",
  2717. "email": "serbanghita@gmail.com",
  2718. "homepage": "http://mobiledetect.net",
  2719. "role": "Developer"
  2720. }
  2721. ],
  2722. "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.",
  2723. "homepage": "https://github.com/serbanghita/Mobile-Detect",
  2724. "keywords": [
  2725. "detect mobile devices",
  2726. "mobile",
  2727. "mobile detect",
  2728. "mobile detector",
  2729. "php mobile detect"
  2730. ],
  2731. "support": {
  2732. "issues": "https://github.com/serbanghita/Mobile-Detect/issues",
  2733. "source": "https://github.com/serbanghita/Mobile-Detect/tree/2.8.34"
  2734. },
  2735. "time": "2019-09-18T18:44:20+00:00"
  2736. },
  2737. {
  2738. "name": "monolog/monolog",
  2739. "version": "2.1.1",
  2740. "source": {
  2741. "type": "git",
  2742. "url": "https://github.com/Seldaek/monolog.git",
  2743. "reference": "f9eee5cec93dfb313a38b6b288741e84e53f02d5"
  2744. },
  2745. "dist": {
  2746. "type": "zip",
  2747. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f9eee5cec93dfb313a38b6b288741e84e53f02d5",
  2748. "reference": "f9eee5cec93dfb313a38b6b288741e84e53f02d5",
  2749. "shasum": ""
  2750. },
  2751. "require": {
  2752. "php": ">=7.2",
  2753. "psr/log": "^1.0.1"
  2754. },
  2755. "provide": {
  2756. "psr/log-implementation": "1.0.0"
  2757. },
  2758. "require-dev": {
  2759. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2760. "doctrine/couchdb": "~1.0@dev",
  2761. "elasticsearch/elasticsearch": "^6.0",
  2762. "graylog2/gelf-php": "^1.4.2",
  2763. "php-amqplib/php-amqplib": "~2.4",
  2764. "php-console/php-console": "^3.1.3",
  2765. "php-parallel-lint/php-parallel-lint": "^1.0",
  2766. "phpspec/prophecy": "^1.6.1",
  2767. "phpunit/phpunit": "^8.5",
  2768. "predis/predis": "^1.1",
  2769. "rollbar/rollbar": "^1.3",
  2770. "ruflin/elastica": ">=0.90 <3.0",
  2771. "swiftmailer/swiftmailer": "^5.3|^6.0"
  2772. },
  2773. "suggest": {
  2774. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2775. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2776. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2777. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2778. "ext-mbstring": "Allow to work properly with unicode symbols",
  2779. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2780. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2781. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2782. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2783. "php-console/php-console": "Allow sending log messages to Google Chrome",
  2784. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2785. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2786. },
  2787. "type": "library",
  2788. "extra": {
  2789. "branch-alias": {
  2790. "dev-master": "2.x-dev"
  2791. }
  2792. },
  2793. "autoload": {
  2794. "psr-4": {
  2795. "Monolog\\": "src/Monolog"
  2796. }
  2797. },
  2798. "notification-url": "https://packagist.org/downloads/",
  2799. "license": [
  2800. "MIT"
  2801. ],
  2802. "authors": [
  2803. {
  2804. "name": "Jordi Boggiano",
  2805. "email": "j.boggiano@seld.be",
  2806. "homepage": "http://seld.be"
  2807. }
  2808. ],
  2809. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2810. "homepage": "http://github.com/Seldaek/monolog",
  2811. "keywords": [
  2812. "log",
  2813. "logging",
  2814. "psr-3"
  2815. ],
  2816. "support": {
  2817. "issues": "https://github.com/Seldaek/monolog/issues",
  2818. "source": "https://github.com/Seldaek/monolog/tree/2.1.1"
  2819. },
  2820. "funding": [
  2821. {
  2822. "url": "https://github.com/Seldaek",
  2823. "type": "github"
  2824. },
  2825. {
  2826. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2827. "type": "tidelift"
  2828. }
  2829. ],
  2830. "time": "2020-07-23T08:41:23+00:00"
  2831. },
  2832. {
  2833. "name": "myclabs/php-enum",
  2834. "version": "1.7.7",
  2835. "source": {
  2836. "type": "git",
  2837. "url": "https://github.com/myclabs/php-enum.git",
  2838. "reference": "d178027d1e679832db9f38248fcc7200647dc2b7"
  2839. },
  2840. "dist": {
  2841. "type": "zip",
  2842. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/d178027d1e679832db9f38248fcc7200647dc2b7",
  2843. "reference": "d178027d1e679832db9f38248fcc7200647dc2b7",
  2844. "shasum": ""
  2845. },
  2846. "require": {
  2847. "ext-json": "*",
  2848. "php": ">=7.1"
  2849. },
  2850. "require-dev": {
  2851. "phpunit/phpunit": "^7",
  2852. "squizlabs/php_codesniffer": "1.*",
  2853. "vimeo/psalm": "^3.8"
  2854. },
  2855. "type": "library",
  2856. "autoload": {
  2857. "psr-4": {
  2858. "MyCLabs\\Enum\\": "src/"
  2859. }
  2860. },
  2861. "notification-url": "https://packagist.org/downloads/",
  2862. "license": [
  2863. "MIT"
  2864. ],
  2865. "authors": [
  2866. {
  2867. "name": "PHP Enum contributors",
  2868. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  2869. }
  2870. ],
  2871. "description": "PHP Enum implementation",
  2872. "homepage": "http://github.com/myclabs/php-enum",
  2873. "keywords": [
  2874. "enum"
  2875. ],
  2876. "support": {
  2877. "issues": "https://github.com/myclabs/php-enum/issues",
  2878. "source": "https://github.com/myclabs/php-enum/tree/1.7.7"
  2879. },
  2880. "funding": [
  2881. {
  2882. "url": "https://github.com/mnapoli",
  2883. "type": "github"
  2884. },
  2885. {
  2886. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  2887. "type": "tidelift"
  2888. }
  2889. ],
  2890. "time": "2020-11-14T18:14:52+00:00"
  2891. },
  2892. {
  2893. "name": "nesbot/carbon",
  2894. "version": "2.42.0",
  2895. "source": {
  2896. "type": "git",
  2897. "url": "https://github.com/briannesbitt/Carbon.git",
  2898. "reference": "d0463779663437392fe42ff339ebc0213bd55498"
  2899. },
  2900. "dist": {
  2901. "type": "zip",
  2902. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/d0463779663437392fe42ff339ebc0213bd55498",
  2903. "reference": "d0463779663437392fe42ff339ebc0213bd55498",
  2904. "shasum": ""
  2905. },
  2906. "require": {
  2907. "ext-json": "*",
  2908. "php": "^7.1.8 || ^8.0",
  2909. "symfony/polyfill-mbstring": "^1.0",
  2910. "symfony/translation": "^3.4 || ^4.0 || ^5.0"
  2911. },
  2912. "require-dev": {
  2913. "doctrine/orm": "^2.7",
  2914. "friendsofphp/php-cs-fixer": "^2.14 || ^3.0",
  2915. "kylekatarnls/multi-tester": "^2.0",
  2916. "phpmd/phpmd": "^2.9",
  2917. "phpstan/extension-installer": "^1.0",
  2918. "phpstan/phpstan": "^0.12.54",
  2919. "phpunit/phpunit": "^7.5 || ^8.0",
  2920. "squizlabs/php_codesniffer": "^3.4"
  2921. },
  2922. "bin": [
  2923. "bin/carbon"
  2924. ],
  2925. "type": "library",
  2926. "extra": {
  2927. "branch-alias": {
  2928. "dev-master": "2.x-dev",
  2929. "dev-3.x": "3.x-dev"
  2930. },
  2931. "laravel": {
  2932. "providers": [
  2933. "Carbon\\Laravel\\ServiceProvider"
  2934. ]
  2935. },
  2936. "phpstan": {
  2937. "includes": [
  2938. "extension.neon"
  2939. ]
  2940. }
  2941. },
  2942. "autoload": {
  2943. "psr-4": {
  2944. "Carbon\\": "src/Carbon/"
  2945. }
  2946. },
  2947. "notification-url": "https://packagist.org/downloads/",
  2948. "license": [
  2949. "MIT"
  2950. ],
  2951. "authors": [
  2952. {
  2953. "name": "Brian Nesbitt",
  2954. "email": "brian@nesbot.com",
  2955. "homepage": "http://nesbot.com"
  2956. },
  2957. {
  2958. "name": "kylekatarnls",
  2959. "homepage": "http://github.com/kylekatarnls"
  2960. }
  2961. ],
  2962. "description": "An API extension for DateTime that supports 281 different languages.",
  2963. "homepage": "http://carbon.nesbot.com",
  2964. "keywords": [
  2965. "date",
  2966. "datetime",
  2967. "time"
  2968. ],
  2969. "support": {
  2970. "issues": "https://github.com/briannesbitt/Carbon/issues",
  2971. "source": "https://github.com/briannesbitt/Carbon"
  2972. },
  2973. "funding": [
  2974. {
  2975. "url": "https://opencollective.com/Carbon",
  2976. "type": "open_collective"
  2977. },
  2978. {
  2979. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  2980. "type": "tidelift"
  2981. }
  2982. ],
  2983. "time": "2020-11-28T14:25:28+00:00"
  2984. },
  2985. {
  2986. "name": "nikic/php-parser",
  2987. "version": "v4.10.3",
  2988. "source": {
  2989. "type": "git",
  2990. "url": "https://github.com/nikic/PHP-Parser.git",
  2991. "reference": "dbe56d23de8fcb157bbc0cfb3ad7c7de0cfb0984"
  2992. },
  2993. "dist": {
  2994. "type": "zip",
  2995. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/dbe56d23de8fcb157bbc0cfb3ad7c7de0cfb0984",
  2996. "reference": "dbe56d23de8fcb157bbc0cfb3ad7c7de0cfb0984",
  2997. "shasum": ""
  2998. },
  2999. "require": {
  3000. "ext-tokenizer": "*",
  3001. "php": ">=7.0"
  3002. },
  3003. "require-dev": {
  3004. "ircmaxell/php-yacc": "^0.0.7",
  3005. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  3006. },
  3007. "bin": [
  3008. "bin/php-parse"
  3009. ],
  3010. "type": "library",
  3011. "extra": {
  3012. "branch-alias": {
  3013. "dev-master": "4.9-dev"
  3014. }
  3015. },
  3016. "autoload": {
  3017. "psr-4": {
  3018. "PhpParser\\": "lib/PhpParser"
  3019. }
  3020. },
  3021. "notification-url": "https://packagist.org/downloads/",
  3022. "license": [
  3023. "BSD-3-Clause"
  3024. ],
  3025. "authors": [
  3026. {
  3027. "name": "Nikita Popov"
  3028. }
  3029. ],
  3030. "description": "A PHP parser written in PHP",
  3031. "keywords": [
  3032. "parser",
  3033. "php"
  3034. ],
  3035. "support": {
  3036. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3037. "source": "https://github.com/nikic/PHP-Parser/tree/v4.10.3"
  3038. },
  3039. "time": "2020-12-03T17:45:45+00:00"
  3040. },
  3041. {
  3042. "name": "opis/closure",
  3043. "version": "3.6.1",
  3044. "source": {
  3045. "type": "git",
  3046. "url": "https://github.com/opis/closure.git",
  3047. "reference": "943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5"
  3048. },
  3049. "dist": {
  3050. "type": "zip",
  3051. "url": "https://api.github.com/repos/opis/closure/zipball/943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5",
  3052. "reference": "943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5",
  3053. "shasum": ""
  3054. },
  3055. "require": {
  3056. "php": "^5.4 || ^7.0 || ^8.0"
  3057. },
  3058. "require-dev": {
  3059. "jeremeamia/superclosure": "^2.0",
  3060. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  3061. },
  3062. "type": "library",
  3063. "extra": {
  3064. "branch-alias": {
  3065. "dev-master": "3.6.x-dev"
  3066. }
  3067. },
  3068. "autoload": {
  3069. "psr-4": {
  3070. "Opis\\Closure\\": "src/"
  3071. },
  3072. "files": [
  3073. "functions.php"
  3074. ]
  3075. },
  3076. "notification-url": "https://packagist.org/downloads/",
  3077. "license": [
  3078. "MIT"
  3079. ],
  3080. "authors": [
  3081. {
  3082. "name": "Marius Sarca",
  3083. "email": "marius.sarca@gmail.com"
  3084. },
  3085. {
  3086. "name": "Sorin Sarca",
  3087. "email": "sarca_sorin@hotmail.com"
  3088. }
  3089. ],
  3090. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  3091. "homepage": "https://opis.io/closure",
  3092. "keywords": [
  3093. "anonymous functions",
  3094. "closure",
  3095. "function",
  3096. "serializable",
  3097. "serialization",
  3098. "serialize"
  3099. ],
  3100. "support": {
  3101. "issues": "https://github.com/opis/closure/issues",
  3102. "source": "https://github.com/opis/closure/tree/3.6.1"
  3103. },
  3104. "time": "2020-11-07T02:01:34+00:00"
  3105. },
  3106. {
  3107. "name": "overtrue/laravel-lang",
  3108. "version": "4.2.1",
  3109. "source": {
  3110. "type": "git",
  3111. "url": "https://github.com/overtrue/laravel-lang.git",
  3112. "reference": "653189caa6eac682fa5d15482f271489721231c7"
  3113. },
  3114. "dist": {
  3115. "type": "zip",
  3116. "url": "https://api.github.com/repos/overtrue/laravel-lang/zipball/653189caa6eac682fa5d15482f271489721231c7",
  3117. "reference": "653189caa6eac682fa5d15482f271489721231c7",
  3118. "shasum": ""
  3119. },
  3120. "require": {
  3121. "ext-json": "*",
  3122. "laravel-lang/lang": "^7.0",
  3123. "symfony/process": "^5.0.0"
  3124. },
  3125. "require-dev": {
  3126. "laravel/framework": "~8.1"
  3127. },
  3128. "type": "library",
  3129. "extra": {
  3130. "laravel": {
  3131. "providers": [
  3132. "Overtrue\\LaravelLang\\TranslationServiceProvider"
  3133. ]
  3134. }
  3135. },
  3136. "autoload": {
  3137. "psr-4": {
  3138. "Overtrue\\LaravelLang\\": "src/"
  3139. }
  3140. },
  3141. "notification-url": "https://packagist.org/downloads/",
  3142. "license": [
  3143. "MIT"
  3144. ],
  3145. "authors": [
  3146. {
  3147. "name": "overtrue",
  3148. "email": "anzhengchao@gmail.com"
  3149. }
  3150. ],
  3151. "description": "List of 75 languages for Laravel 4, 5, 6 and 7",
  3152. "keywords": [
  3153. "i18n",
  3154. "languages",
  3155. "laravel",
  3156. "locale",
  3157. "overtrue"
  3158. ],
  3159. "support": {
  3160. "issues": "https://github.com/overtrue/laravel-lang/issues",
  3161. "source": "https://github.com/overtrue/laravel-lang/tree/4.2.1"
  3162. },
  3163. "funding": [
  3164. {
  3165. "url": "https://www.patreon.com/overtrue",
  3166. "type": "patreon"
  3167. }
  3168. ],
  3169. "time": "2020-11-12T01:44:31+00:00"
  3170. },
  3171. {
  3172. "name": "phpoffice/phpspreadsheet",
  3173. "version": "1.15.0",
  3174. "source": {
  3175. "type": "git",
  3176. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  3177. "reference": "a8e8068b31b8119e1daa5b1eb5715a3a8ea8305f"
  3178. },
  3179. "dist": {
  3180. "type": "zip",
  3181. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/a8e8068b31b8119e1daa5b1eb5715a3a8ea8305f",
  3182. "reference": "a8e8068b31b8119e1daa5b1eb5715a3a8ea8305f",
  3183. "shasum": ""
  3184. },
  3185. "require": {
  3186. "ext-ctype": "*",
  3187. "ext-dom": "*",
  3188. "ext-fileinfo": "*",
  3189. "ext-gd": "*",
  3190. "ext-iconv": "*",
  3191. "ext-libxml": "*",
  3192. "ext-mbstring": "*",
  3193. "ext-simplexml": "*",
  3194. "ext-xml": "*",
  3195. "ext-xmlreader": "*",
  3196. "ext-xmlwriter": "*",
  3197. "ext-zip": "*",
  3198. "ext-zlib": "*",
  3199. "maennchen/zipstream-php": "^2.1",
  3200. "markbaker/complex": "^1.5|^2.0",
  3201. "markbaker/matrix": "^1.2|^2.0",
  3202. "php": "^7.2|^8.0",
  3203. "psr/http-client": "^1.0",
  3204. "psr/http-factory": "^1.0",
  3205. "psr/simple-cache": "^1.0"
  3206. },
  3207. "require-dev": {
  3208. "dompdf/dompdf": "^0.8.5",
  3209. "friendsofphp/php-cs-fixer": "^2.16",
  3210. "jpgraph/jpgraph": "^4.0",
  3211. "mpdf/mpdf": "^8.0",
  3212. "phpcompatibility/php-compatibility": "^9.3",
  3213. "phpunit/phpunit": "^8.5|^9.3",
  3214. "squizlabs/php_codesniffer": "^3.5",
  3215. "tecnickcom/tcpdf": "^6.3"
  3216. },
  3217. "suggest": {
  3218. "dompdf/dompdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)",
  3219. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  3220. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  3221. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)"
  3222. },
  3223. "type": "library",
  3224. "autoload": {
  3225. "psr-4": {
  3226. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  3227. }
  3228. },
  3229. "notification-url": "https://packagist.org/downloads/",
  3230. "license": [
  3231. "MIT"
  3232. ],
  3233. "authors": [
  3234. {
  3235. "name": "Maarten Balliauw",
  3236. "homepage": "https://blog.maartenballiauw.be"
  3237. },
  3238. {
  3239. "name": "Mark Baker",
  3240. "homepage": "https://markbakeruk.net"
  3241. },
  3242. {
  3243. "name": "Franck Lefevre",
  3244. "homepage": "https://rootslabs.net"
  3245. },
  3246. {
  3247. "name": "Erik Tilt"
  3248. },
  3249. {
  3250. "name": "Adrien Crivelli"
  3251. }
  3252. ],
  3253. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  3254. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  3255. "keywords": [
  3256. "OpenXML",
  3257. "excel",
  3258. "gnumeric",
  3259. "ods",
  3260. "php",
  3261. "spreadsheet",
  3262. "xls",
  3263. "xlsx"
  3264. ],
  3265. "support": {
  3266. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  3267. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.15.0"
  3268. },
  3269. "time": "2020-10-11T13:20:59+00:00"
  3270. },
  3271. {
  3272. "name": "phpoption/phpoption",
  3273. "version": "1.7.5",
  3274. "source": {
  3275. "type": "git",
  3276. "url": "https://github.com/schmittjoh/php-option.git",
  3277. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525"
  3278. },
  3279. "dist": {
  3280. "type": "zip",
  3281. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/994ecccd8f3283ecf5ac33254543eb0ac946d525",
  3282. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525",
  3283. "shasum": ""
  3284. },
  3285. "require": {
  3286. "php": "^5.5.9 || ^7.0 || ^8.0"
  3287. },
  3288. "require-dev": {
  3289. "bamarni/composer-bin-plugin": "^1.4.1",
  3290. "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0 || ^8.0 || ^9.0"
  3291. },
  3292. "type": "library",
  3293. "extra": {
  3294. "branch-alias": {
  3295. "dev-master": "1.7-dev"
  3296. }
  3297. },
  3298. "autoload": {
  3299. "psr-4": {
  3300. "PhpOption\\": "src/PhpOption/"
  3301. }
  3302. },
  3303. "notification-url": "https://packagist.org/downloads/",
  3304. "license": [
  3305. "Apache-2.0"
  3306. ],
  3307. "authors": [
  3308. {
  3309. "name": "Johannes M. Schmitt",
  3310. "email": "schmittjoh@gmail.com"
  3311. },
  3312. {
  3313. "name": "Graham Campbell",
  3314. "email": "graham@alt-three.com"
  3315. }
  3316. ],
  3317. "description": "Option Type for PHP",
  3318. "keywords": [
  3319. "language",
  3320. "option",
  3321. "php",
  3322. "type"
  3323. ],
  3324. "support": {
  3325. "issues": "https://github.com/schmittjoh/php-option/issues",
  3326. "source": "https://github.com/schmittjoh/php-option/tree/1.7.5"
  3327. },
  3328. "funding": [
  3329. {
  3330. "url": "https://github.com/GrahamCampbell",
  3331. "type": "github"
  3332. },
  3333. {
  3334. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  3335. "type": "tidelift"
  3336. }
  3337. ],
  3338. "time": "2020-07-20T17:29:33+00:00"
  3339. },
  3340. {
  3341. "name": "psr/container",
  3342. "version": "1.0.0",
  3343. "source": {
  3344. "type": "git",
  3345. "url": "https://github.com/php-fig/container.git",
  3346. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  3347. },
  3348. "dist": {
  3349. "type": "zip",
  3350. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  3351. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  3352. "shasum": ""
  3353. },
  3354. "require": {
  3355. "php": ">=5.3.0"
  3356. },
  3357. "type": "library",
  3358. "extra": {
  3359. "branch-alias": {
  3360. "dev-master": "1.0.x-dev"
  3361. }
  3362. },
  3363. "autoload": {
  3364. "psr-4": {
  3365. "Psr\\Container\\": "src/"
  3366. }
  3367. },
  3368. "notification-url": "https://packagist.org/downloads/",
  3369. "license": [
  3370. "MIT"
  3371. ],
  3372. "authors": [
  3373. {
  3374. "name": "PHP-FIG",
  3375. "homepage": "http://www.php-fig.org/"
  3376. }
  3377. ],
  3378. "description": "Common Container Interface (PHP FIG PSR-11)",
  3379. "homepage": "https://github.com/php-fig/container",
  3380. "keywords": [
  3381. "PSR-11",
  3382. "container",
  3383. "container-interface",
  3384. "container-interop",
  3385. "psr"
  3386. ],
  3387. "support": {
  3388. "issues": "https://github.com/php-fig/container/issues",
  3389. "source": "https://github.com/php-fig/container/tree/master"
  3390. },
  3391. "time": "2017-02-14T16:28:37+00:00"
  3392. },
  3393. {
  3394. "name": "psr/event-dispatcher",
  3395. "version": "1.0.0",
  3396. "source": {
  3397. "type": "git",
  3398. "url": "https://github.com/php-fig/event-dispatcher.git",
  3399. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  3400. },
  3401. "dist": {
  3402. "type": "zip",
  3403. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3404. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3405. "shasum": ""
  3406. },
  3407. "require": {
  3408. "php": ">=7.2.0"
  3409. },
  3410. "type": "library",
  3411. "extra": {
  3412. "branch-alias": {
  3413. "dev-master": "1.0.x-dev"
  3414. }
  3415. },
  3416. "autoload": {
  3417. "psr-4": {
  3418. "Psr\\EventDispatcher\\": "src/"
  3419. }
  3420. },
  3421. "notification-url": "https://packagist.org/downloads/",
  3422. "license": [
  3423. "MIT"
  3424. ],
  3425. "authors": [
  3426. {
  3427. "name": "PHP-FIG",
  3428. "homepage": "http://www.php-fig.org/"
  3429. }
  3430. ],
  3431. "description": "Standard interfaces for event handling.",
  3432. "keywords": [
  3433. "events",
  3434. "psr",
  3435. "psr-14"
  3436. ],
  3437. "support": {
  3438. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  3439. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  3440. },
  3441. "time": "2019-01-08T18:20:26+00:00"
  3442. },
  3443. {
  3444. "name": "psr/http-client",
  3445. "version": "1.0.1",
  3446. "source": {
  3447. "type": "git",
  3448. "url": "https://github.com/php-fig/http-client.git",
  3449. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  3450. },
  3451. "dist": {
  3452. "type": "zip",
  3453. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3454. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3455. "shasum": ""
  3456. },
  3457. "require": {
  3458. "php": "^7.0 || ^8.0",
  3459. "psr/http-message": "^1.0"
  3460. },
  3461. "type": "library",
  3462. "extra": {
  3463. "branch-alias": {
  3464. "dev-master": "1.0.x-dev"
  3465. }
  3466. },
  3467. "autoload": {
  3468. "psr-4": {
  3469. "Psr\\Http\\Client\\": "src/"
  3470. }
  3471. },
  3472. "notification-url": "https://packagist.org/downloads/",
  3473. "license": [
  3474. "MIT"
  3475. ],
  3476. "authors": [
  3477. {
  3478. "name": "PHP-FIG",
  3479. "homepage": "http://www.php-fig.org/"
  3480. }
  3481. ],
  3482. "description": "Common interface for HTTP clients",
  3483. "homepage": "https://github.com/php-fig/http-client",
  3484. "keywords": [
  3485. "http",
  3486. "http-client",
  3487. "psr",
  3488. "psr-18"
  3489. ],
  3490. "support": {
  3491. "source": "https://github.com/php-fig/http-client/tree/master"
  3492. },
  3493. "time": "2020-06-29T06:28:15+00:00"
  3494. },
  3495. {
  3496. "name": "psr/http-factory",
  3497. "version": "1.0.1",
  3498. "source": {
  3499. "type": "git",
  3500. "url": "https://github.com/php-fig/http-factory.git",
  3501. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  3502. },
  3503. "dist": {
  3504. "type": "zip",
  3505. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  3506. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  3507. "shasum": ""
  3508. },
  3509. "require": {
  3510. "php": ">=7.0.0",
  3511. "psr/http-message": "^1.0"
  3512. },
  3513. "type": "library",
  3514. "extra": {
  3515. "branch-alias": {
  3516. "dev-master": "1.0.x-dev"
  3517. }
  3518. },
  3519. "autoload": {
  3520. "psr-4": {
  3521. "Psr\\Http\\Message\\": "src/"
  3522. }
  3523. },
  3524. "notification-url": "https://packagist.org/downloads/",
  3525. "license": [
  3526. "MIT"
  3527. ],
  3528. "authors": [
  3529. {
  3530. "name": "PHP-FIG",
  3531. "homepage": "http://www.php-fig.org/"
  3532. }
  3533. ],
  3534. "description": "Common interfaces for PSR-7 HTTP message factories",
  3535. "keywords": [
  3536. "factory",
  3537. "http",
  3538. "message",
  3539. "psr",
  3540. "psr-17",
  3541. "psr-7",
  3542. "request",
  3543. "response"
  3544. ],
  3545. "support": {
  3546. "source": "https://github.com/php-fig/http-factory/tree/master"
  3547. },
  3548. "time": "2019-04-30T12:38:16+00:00"
  3549. },
  3550. {
  3551. "name": "psr/http-message",
  3552. "version": "1.0.1",
  3553. "source": {
  3554. "type": "git",
  3555. "url": "https://github.com/php-fig/http-message.git",
  3556. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  3557. },
  3558. "dist": {
  3559. "type": "zip",
  3560. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  3561. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  3562. "shasum": ""
  3563. },
  3564. "require": {
  3565. "php": ">=5.3.0"
  3566. },
  3567. "type": "library",
  3568. "extra": {
  3569. "branch-alias": {
  3570. "dev-master": "1.0.x-dev"
  3571. }
  3572. },
  3573. "autoload": {
  3574. "psr-4": {
  3575. "Psr\\Http\\Message\\": "src/"
  3576. }
  3577. },
  3578. "notification-url": "https://packagist.org/downloads/",
  3579. "license": [
  3580. "MIT"
  3581. ],
  3582. "authors": [
  3583. {
  3584. "name": "PHP-FIG",
  3585. "homepage": "http://www.php-fig.org/"
  3586. }
  3587. ],
  3588. "description": "Common interface for HTTP messages",
  3589. "homepage": "https://github.com/php-fig/http-message",
  3590. "keywords": [
  3591. "http",
  3592. "http-message",
  3593. "psr",
  3594. "psr-7",
  3595. "request",
  3596. "response"
  3597. ],
  3598. "support": {
  3599. "source": "https://github.com/php-fig/http-message/tree/master"
  3600. },
  3601. "time": "2016-08-06T14:39:51+00:00"
  3602. },
  3603. {
  3604. "name": "psr/log",
  3605. "version": "1.1.3",
  3606. "source": {
  3607. "type": "git",
  3608. "url": "https://github.com/php-fig/log.git",
  3609. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  3610. },
  3611. "dist": {
  3612. "type": "zip",
  3613. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  3614. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  3615. "shasum": ""
  3616. },
  3617. "require": {
  3618. "php": ">=5.3.0"
  3619. },
  3620. "type": "library",
  3621. "extra": {
  3622. "branch-alias": {
  3623. "dev-master": "1.1.x-dev"
  3624. }
  3625. },
  3626. "autoload": {
  3627. "psr-4": {
  3628. "Psr\\Log\\": "Psr/Log/"
  3629. }
  3630. },
  3631. "notification-url": "https://packagist.org/downloads/",
  3632. "license": [
  3633. "MIT"
  3634. ],
  3635. "authors": [
  3636. {
  3637. "name": "PHP-FIG",
  3638. "homepage": "http://www.php-fig.org/"
  3639. }
  3640. ],
  3641. "description": "Common interface for logging libraries",
  3642. "homepage": "https://github.com/php-fig/log",
  3643. "keywords": [
  3644. "log",
  3645. "psr",
  3646. "psr-3"
  3647. ],
  3648. "support": {
  3649. "source": "https://github.com/php-fig/log/tree/1.1.3"
  3650. },
  3651. "time": "2020-03-23T09:12:05+00:00"
  3652. },
  3653. {
  3654. "name": "psr/simple-cache",
  3655. "version": "1.0.1",
  3656. "source": {
  3657. "type": "git",
  3658. "url": "https://github.com/php-fig/simple-cache.git",
  3659. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  3660. },
  3661. "dist": {
  3662. "type": "zip",
  3663. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3664. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3665. "shasum": ""
  3666. },
  3667. "require": {
  3668. "php": ">=5.3.0"
  3669. },
  3670. "type": "library",
  3671. "extra": {
  3672. "branch-alias": {
  3673. "dev-master": "1.0.x-dev"
  3674. }
  3675. },
  3676. "autoload": {
  3677. "psr-4": {
  3678. "Psr\\SimpleCache\\": "src/"
  3679. }
  3680. },
  3681. "notification-url": "https://packagist.org/downloads/",
  3682. "license": [
  3683. "MIT"
  3684. ],
  3685. "authors": [
  3686. {
  3687. "name": "PHP-FIG",
  3688. "homepage": "http://www.php-fig.org/"
  3689. }
  3690. ],
  3691. "description": "Common interfaces for simple caching",
  3692. "keywords": [
  3693. "cache",
  3694. "caching",
  3695. "psr",
  3696. "psr-16",
  3697. "simple-cache"
  3698. ],
  3699. "support": {
  3700. "source": "https://github.com/php-fig/simple-cache/tree/master"
  3701. },
  3702. "time": "2017-10-23T01:57:42+00:00"
  3703. },
  3704. {
  3705. "name": "psy/psysh",
  3706. "version": "v0.10.5",
  3707. "source": {
  3708. "type": "git",
  3709. "url": "https://github.com/bobthecow/psysh.git",
  3710. "reference": "7c710551d4a2653afa259c544508dc18a9098956"
  3711. },
  3712. "dist": {
  3713. "type": "zip",
  3714. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/7c710551d4a2653afa259c544508dc18a9098956",
  3715. "reference": "7c710551d4a2653afa259c544508dc18a9098956",
  3716. "shasum": ""
  3717. },
  3718. "require": {
  3719. "dnoegel/php-xdg-base-dir": "0.1.*",
  3720. "ext-json": "*",
  3721. "ext-tokenizer": "*",
  3722. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  3723. "php": "^8.0 || ^7.0 || ^5.5.9",
  3724. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  3725. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  3726. },
  3727. "require-dev": {
  3728. "bamarni/composer-bin-plugin": "^1.2",
  3729. "hoa/console": "3.17.*"
  3730. },
  3731. "suggest": {
  3732. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  3733. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  3734. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  3735. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  3736. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  3737. },
  3738. "bin": [
  3739. "bin/psysh"
  3740. ],
  3741. "type": "library",
  3742. "extra": {
  3743. "branch-alias": {
  3744. "dev-master": "0.10.x-dev"
  3745. }
  3746. },
  3747. "autoload": {
  3748. "files": [
  3749. "src/functions.php"
  3750. ],
  3751. "psr-4": {
  3752. "Psy\\": "src/"
  3753. }
  3754. },
  3755. "notification-url": "https://packagist.org/downloads/",
  3756. "license": [
  3757. "MIT"
  3758. ],
  3759. "authors": [
  3760. {
  3761. "name": "Justin Hileman",
  3762. "email": "justin@justinhileman.info",
  3763. "homepage": "http://justinhileman.com"
  3764. }
  3765. ],
  3766. "description": "An interactive shell for modern PHP.",
  3767. "homepage": "http://psysh.org",
  3768. "keywords": [
  3769. "REPL",
  3770. "console",
  3771. "interactive",
  3772. "shell"
  3773. ],
  3774. "support": {
  3775. "issues": "https://github.com/bobthecow/psysh/issues",
  3776. "source": "https://github.com/bobthecow/psysh/tree/v0.10.5"
  3777. },
  3778. "time": "2020-12-04T02:51:30+00:00"
  3779. },
  3780. {
  3781. "name": "ralouphie/getallheaders",
  3782. "version": "3.0.3",
  3783. "source": {
  3784. "type": "git",
  3785. "url": "https://github.com/ralouphie/getallheaders.git",
  3786. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  3787. },
  3788. "dist": {
  3789. "type": "zip",
  3790. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  3791. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  3792. "shasum": ""
  3793. },
  3794. "require": {
  3795. "php": ">=5.6"
  3796. },
  3797. "require-dev": {
  3798. "php-coveralls/php-coveralls": "^2.1",
  3799. "phpunit/phpunit": "^5 || ^6.5"
  3800. },
  3801. "type": "library",
  3802. "autoload": {
  3803. "files": [
  3804. "src/getallheaders.php"
  3805. ]
  3806. },
  3807. "notification-url": "https://packagist.org/downloads/",
  3808. "license": [
  3809. "MIT"
  3810. ],
  3811. "authors": [
  3812. {
  3813. "name": "Ralph Khattar",
  3814. "email": "ralph.khattar@gmail.com"
  3815. }
  3816. ],
  3817. "description": "A polyfill for getallheaders.",
  3818. "support": {
  3819. "issues": "https://github.com/ralouphie/getallheaders/issues",
  3820. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  3821. },
  3822. "time": "2019-03-08T08:55:37+00:00"
  3823. },
  3824. {
  3825. "name": "ramsey/collection",
  3826. "version": "1.1.1",
  3827. "source": {
  3828. "type": "git",
  3829. "url": "https://github.com/ramsey/collection.git",
  3830. "reference": "24d93aefb2cd786b7edd9f45b554aea20b28b9b1"
  3831. },
  3832. "dist": {
  3833. "type": "zip",
  3834. "url": "https://api.github.com/repos/ramsey/collection/zipball/24d93aefb2cd786b7edd9f45b554aea20b28b9b1",
  3835. "reference": "24d93aefb2cd786b7edd9f45b554aea20b28b9b1",
  3836. "shasum": ""
  3837. },
  3838. "require": {
  3839. "php": "^7.2 || ^8"
  3840. },
  3841. "require-dev": {
  3842. "captainhook/captainhook": "^5.3",
  3843. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  3844. "ergebnis/composer-normalize": "^2.6",
  3845. "fzaninotto/faker": "^1.5",
  3846. "hamcrest/hamcrest-php": "^2",
  3847. "jangregor/phpstan-prophecy": "^0.6",
  3848. "mockery/mockery": "^1.3",
  3849. "phpstan/extension-installer": "^1",
  3850. "phpstan/phpstan": "^0.12.32",
  3851. "phpstan/phpstan-mockery": "^0.12.5",
  3852. "phpstan/phpstan-phpunit": "^0.12.11",
  3853. "phpunit/phpunit": "^8.5",
  3854. "psy/psysh": "^0.10.4",
  3855. "slevomat/coding-standard": "^6.3",
  3856. "squizlabs/php_codesniffer": "^3.5",
  3857. "vimeo/psalm": "^3.12.2"
  3858. },
  3859. "type": "library",
  3860. "autoload": {
  3861. "psr-4": {
  3862. "Ramsey\\Collection\\": "src/"
  3863. }
  3864. },
  3865. "notification-url": "https://packagist.org/downloads/",
  3866. "license": [
  3867. "MIT"
  3868. ],
  3869. "authors": [
  3870. {
  3871. "name": "Ben Ramsey",
  3872. "email": "ben@benramsey.com",
  3873. "homepage": "https://benramsey.com"
  3874. }
  3875. ],
  3876. "description": "A PHP 7.2+ library for representing and manipulating collections.",
  3877. "keywords": [
  3878. "array",
  3879. "collection",
  3880. "hash",
  3881. "map",
  3882. "queue",
  3883. "set"
  3884. ],
  3885. "support": {
  3886. "issues": "https://github.com/ramsey/collection/issues",
  3887. "source": "https://github.com/ramsey/collection/tree/1.1.1"
  3888. },
  3889. "funding": [
  3890. {
  3891. "url": "https://github.com/ramsey",
  3892. "type": "github"
  3893. }
  3894. ],
  3895. "time": "2020-09-10T20:58:17+00:00"
  3896. },
  3897. {
  3898. "name": "ramsey/uuid",
  3899. "version": "4.1.1",
  3900. "source": {
  3901. "type": "git",
  3902. "url": "https://github.com/ramsey/uuid.git",
  3903. "reference": "cd4032040a750077205918c86049aa0f43d22947"
  3904. },
  3905. "dist": {
  3906. "type": "zip",
  3907. "url": "https://api.github.com/repos/ramsey/uuid/zipball/cd4032040a750077205918c86049aa0f43d22947",
  3908. "reference": "cd4032040a750077205918c86049aa0f43d22947",
  3909. "shasum": ""
  3910. },
  3911. "require": {
  3912. "brick/math": "^0.8 || ^0.9",
  3913. "ext-json": "*",
  3914. "php": "^7.2 || ^8",
  3915. "ramsey/collection": "^1.0",
  3916. "symfony/polyfill-ctype": "^1.8"
  3917. },
  3918. "replace": {
  3919. "rhumsaa/uuid": "self.version"
  3920. },
  3921. "require-dev": {
  3922. "codeception/aspect-mock": "^3",
  3923. "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7.0",
  3924. "doctrine/annotations": "^1.8",
  3925. "goaop/framework": "^2",
  3926. "mockery/mockery": "^1.3",
  3927. "moontoast/math": "^1.1",
  3928. "paragonie/random-lib": "^2",
  3929. "php-mock/php-mock-mockery": "^1.3",
  3930. "php-mock/php-mock-phpunit": "^2.5",
  3931. "php-parallel-lint/php-parallel-lint": "^1.1",
  3932. "phpbench/phpbench": "^0.17.1",
  3933. "phpstan/extension-installer": "^1.0",
  3934. "phpstan/phpstan": "^0.12",
  3935. "phpstan/phpstan-mockery": "^0.12",
  3936. "phpstan/phpstan-phpunit": "^0.12",
  3937. "phpunit/phpunit": "^8.5",
  3938. "psy/psysh": "^0.10.0",
  3939. "slevomat/coding-standard": "^6.0",
  3940. "squizlabs/php_codesniffer": "^3.5",
  3941. "vimeo/psalm": "3.9.4"
  3942. },
  3943. "suggest": {
  3944. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  3945. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  3946. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  3947. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  3948. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  3949. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  3950. },
  3951. "type": "library",
  3952. "extra": {
  3953. "branch-alias": {
  3954. "dev-master": "4.x-dev"
  3955. }
  3956. },
  3957. "autoload": {
  3958. "psr-4": {
  3959. "Ramsey\\Uuid\\": "src/"
  3960. },
  3961. "files": [
  3962. "src/functions.php"
  3963. ]
  3964. },
  3965. "notification-url": "https://packagist.org/downloads/",
  3966. "license": [
  3967. "MIT"
  3968. ],
  3969. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  3970. "homepage": "https://github.com/ramsey/uuid",
  3971. "keywords": [
  3972. "guid",
  3973. "identifier",
  3974. "uuid"
  3975. ],
  3976. "support": {
  3977. "issues": "https://github.com/ramsey/uuid/issues",
  3978. "rss": "https://github.com/ramsey/uuid/releases.atom",
  3979. "source": "https://github.com/ramsey/uuid"
  3980. },
  3981. "funding": [
  3982. {
  3983. "url": "https://github.com/ramsey",
  3984. "type": "github"
  3985. }
  3986. ],
  3987. "time": "2020-08-18T17:17:46+00:00"
  3988. },
  3989. {
  3990. "name": "rap2hpoutre/laravel-log-viewer",
  3991. "version": "v1.7.0",
  3992. "source": {
  3993. "type": "git",
  3994. "url": "https://github.com/rap2hpoutre/laravel-log-viewer.git",
  3995. "reference": "27392d29234b6ff38a456454558f4bcc40cc837a"
  3996. },
  3997. "dist": {
  3998. "type": "zip",
  3999. "url": "https://api.github.com/repos/rap2hpoutre/laravel-log-viewer/zipball/27392d29234b6ff38a456454558f4bcc40cc837a",
  4000. "reference": "27392d29234b6ff38a456454558f4bcc40cc837a",
  4001. "shasum": ""
  4002. },
  4003. "require": {
  4004. "illuminate/support": "4.2.*|5.*|^6.0|^7.0|^8.0",
  4005. "php": ">=5.4.0"
  4006. },
  4007. "require-dev": {
  4008. "orchestra/testbench": "3.7.*",
  4009. "phpunit/phpunit": "^7"
  4010. },
  4011. "type": "laravel-package",
  4012. "extra": {
  4013. "laravel": {
  4014. "providers": [
  4015. "Rap2hpoutre\\LaravelLogViewer\\LaravelLogViewerServiceProvider"
  4016. ]
  4017. }
  4018. },
  4019. "autoload": {
  4020. "classmap": [
  4021. "src/controllers"
  4022. ],
  4023. "psr-0": {
  4024. "Rap2hpoutre\\LaravelLogViewer\\": "src/"
  4025. }
  4026. },
  4027. "notification-url": "https://packagist.org/downloads/",
  4028. "license": [
  4029. "MIT"
  4030. ],
  4031. "authors": [
  4032. {
  4033. "name": "rap2hpoutre",
  4034. "email": "raphaelht@gmail.com"
  4035. }
  4036. ],
  4037. "description": "A Laravel log reader",
  4038. "keywords": [
  4039. "laravel",
  4040. "log",
  4041. "log-reader",
  4042. "log-viewer",
  4043. "logging",
  4044. "lumen"
  4045. ],
  4046. "support": {
  4047. "issues": "https://github.com/rap2hpoutre/laravel-log-viewer/issues",
  4048. "source": "https://github.com/rap2hpoutre/laravel-log-viewer/tree/master"
  4049. },
  4050. "time": "2020-09-08T12:21:27+00:00"
  4051. },
  4052. {
  4053. "name": "riverslei/payment",
  4054. "version": "v5.1.0",
  4055. "source": {
  4056. "type": "git",
  4057. "url": "https://github.com/helei112g/payment.git",
  4058. "reference": "77f671b68b0285a6af77dc7c5afa36eabcae35aa"
  4059. },
  4060. "dist": {
  4061. "type": "zip",
  4062. "url": "https://api.github.com/repos/helei112g/payment/zipball/77f671b68b0285a6af77dc7c5afa36eabcae35aa",
  4063. "reference": "77f671b68b0285a6af77dc7c5afa36eabcae35aa",
  4064. "shasum": ""
  4065. },
  4066. "require": {
  4067. "ext-bcmath": "*",
  4068. "ext-json": "*",
  4069. "ext-mbstring": "*",
  4070. "ext-openssl": "*",
  4071. "ext-simplexml": "*",
  4072. "ext-xml": "*",
  4073. "guzzlehttp/guzzle": "~6.0",
  4074. "php": ">=7.0"
  4075. },
  4076. "require-dev": {
  4077. "codeception/codeception": "*"
  4078. },
  4079. "type": "library",
  4080. "autoload": {
  4081. "psr-4": {
  4082. "Payment\\": "src/"
  4083. }
  4084. },
  4085. "notification-url": "https://packagist.org/downloads/",
  4086. "license": [
  4087. "MIT"
  4088. ],
  4089. "authors": [
  4090. {
  4091. "name": "Leo",
  4092. "email": "dayugog@gmail.com",
  4093. "homepage": "https://dayutalk.cn"
  4094. }
  4095. ],
  4096. "description": "支付宝支付、微信支付、招商一网通支付php SDK。方便快速接入,最完整的开源支付 php sdk",
  4097. "homepage": "http://helei112g.github.io/payment",
  4098. "keywords": [
  4099. "alipay",
  4100. "weixin",
  4101. "一网通",
  4102. "微信支付",
  4103. "招商一网通",
  4104. "支付宝支付",
  4105. "集成支付接口SDK"
  4106. ],
  4107. "support": {
  4108. "issues": "https://github.com/helei112g/payment/issues",
  4109. "source": "https://github.com/helei112g/payment/tree/v5.x"
  4110. },
  4111. "time": "2020-05-04T03:07:17+00:00"
  4112. },
  4113. {
  4114. "name": "spatie/laravel-permission",
  4115. "version": "3.18.0",
  4116. "source": {
  4117. "type": "git",
  4118. "url": "https://github.com/spatie/laravel-permission.git",
  4119. "reference": "1c51a5fa12131565fe3860705163e53d7a26258a"
  4120. },
  4121. "dist": {
  4122. "type": "zip",
  4123. "url": "https://api.github.com/repos/spatie/laravel-permission/zipball/1c51a5fa12131565fe3860705163e53d7a26258a",
  4124. "reference": "1c51a5fa12131565fe3860705163e53d7a26258a",
  4125. "shasum": ""
  4126. },
  4127. "require": {
  4128. "illuminate/auth": "^5.8|^6.0|^7.0|^8.0",
  4129. "illuminate/container": "^5.8|^6.0|^7.0|^8.0",
  4130. "illuminate/contracts": "^5.8|^6.0|^7.0|^8.0",
  4131. "illuminate/database": "^5.8|^6.0|^7.0|^8.0",
  4132. "php": "^7.2.5|^8.0"
  4133. },
  4134. "require-dev": {
  4135. "orchestra/testbench": "^3.8|^4.0|^5.0|^6.0",
  4136. "phpunit/phpunit": "^8.0|^9.0",
  4137. "predis/predis": "^1.1"
  4138. },
  4139. "type": "library",
  4140. "extra": {
  4141. "laravel": {
  4142. "providers": [
  4143. "Spatie\\Permission\\PermissionServiceProvider"
  4144. ]
  4145. }
  4146. },
  4147. "autoload": {
  4148. "psr-4": {
  4149. "Spatie\\Permission\\": "src"
  4150. },
  4151. "files": [
  4152. "src/helpers.php"
  4153. ]
  4154. },
  4155. "notification-url": "https://packagist.org/downloads/",
  4156. "license": [
  4157. "MIT"
  4158. ],
  4159. "authors": [
  4160. {
  4161. "name": "Freek Van der Herten",
  4162. "email": "freek@spatie.be",
  4163. "homepage": "https://spatie.be",
  4164. "role": "Developer"
  4165. }
  4166. ],
  4167. "description": "Permission handling for Laravel 5.8 and up",
  4168. "homepage": "https://github.com/spatie/laravel-permission",
  4169. "keywords": [
  4170. "acl",
  4171. "laravel",
  4172. "permission",
  4173. "permissions",
  4174. "rbac",
  4175. "roles",
  4176. "security",
  4177. "spatie"
  4178. ],
  4179. "support": {
  4180. "issues": "https://github.com/spatie/laravel-permission/issues",
  4181. "source": "https://github.com/spatie/laravel-permission/tree/3.18.0"
  4182. },
  4183. "funding": [
  4184. {
  4185. "url": "https://github.com/spatie",
  4186. "type": "github"
  4187. }
  4188. ],
  4189. "time": "2020-11-09T14:08:36+00:00"
  4190. },
  4191. {
  4192. "name": "srmklive/paypal",
  4193. "version": "1.8.0",
  4194. "source": {
  4195. "type": "git",
  4196. "url": "https://github.com/srmklive/laravel-paypal.git",
  4197. "reference": "0c2ae237577f62396d474674cb40f82825a41ffb"
  4198. },
  4199. "dist": {
  4200. "type": "zip",
  4201. "url": "https://api.github.com/repos/srmklive/laravel-paypal/zipball/0c2ae237577f62396d474674cb40f82825a41ffb",
  4202. "reference": "0c2ae237577f62396d474674cb40f82825a41ffb",
  4203. "shasum": ""
  4204. },
  4205. "require": {
  4206. "guzzlehttp/guzzle": "~6.0|~7.0",
  4207. "illuminate/support": "~5.1|~5.2|~5.3|~5.4|~5.5|~5.6|~5.7|~5.8|~6.0|~7.0|~8.0",
  4208. "nesbot/carbon": "~1.0|~2.0"
  4209. },
  4210. "type": "library",
  4211. "extra": {
  4212. "laravel": {
  4213. "providers": [
  4214. "Srmklive\\PayPal\\Providers\\PayPalServiceProvider"
  4215. ],
  4216. "aliases": {
  4217. "PayPal": "Srmklive\\PayPal\\Facades\\PayPal"
  4218. }
  4219. }
  4220. },
  4221. "autoload": {
  4222. "psr-4": {
  4223. "Srmklive\\PayPal\\": "src/"
  4224. }
  4225. },
  4226. "notification-url": "https://packagist.org/downloads/",
  4227. "license": [
  4228. "MIT"
  4229. ],
  4230. "authors": [
  4231. {
  4232. "name": "Raza Mehdi",
  4233. "email": "srmk@outlook.com"
  4234. }
  4235. ],
  4236. "description": "Laravel plugin For Processing Payments Through Paypal Express Checkout. Can Be Used Independently With Other Applications.",
  4237. "keywords": [
  4238. "http",
  4239. "laravel paypal",
  4240. "paypal",
  4241. "rest",
  4242. "web service"
  4243. ],
  4244. "support": {
  4245. "issues": "https://github.com/srmklive/laravel-paypal/issues",
  4246. "source": "https://github.com/srmklive/laravel-paypal/tree/v1.0"
  4247. },
  4248. "time": "2020-09-03T07:50:08+00:00"
  4249. },
  4250. {
  4251. "name": "stripe/stripe-php",
  4252. "version": "v7.66.1",
  4253. "source": {
  4254. "type": "git",
  4255. "url": "https://github.com/stripe/stripe-php.git",
  4256. "reference": "a2ebaa272a8797b21e81afaf8d5ba0953ff15e13"
  4257. },
  4258. "dist": {
  4259. "type": "zip",
  4260. "url": "https://api.github.com/repos/stripe/stripe-php/zipball/a2ebaa272a8797b21e81afaf8d5ba0953ff15e13",
  4261. "reference": "a2ebaa272a8797b21e81afaf8d5ba0953ff15e13",
  4262. "shasum": ""
  4263. },
  4264. "require": {
  4265. "ext-curl": "*",
  4266. "ext-json": "*",
  4267. "ext-mbstring": "*",
  4268. "php": ">=5.6.0"
  4269. },
  4270. "require-dev": {
  4271. "friendsofphp/php-cs-fixer": "2.16.5",
  4272. "php-coveralls/php-coveralls": "^2.1",
  4273. "phpunit/phpunit": "^5.7",
  4274. "squizlabs/php_codesniffer": "^3.3",
  4275. "symfony/process": "~3.4"
  4276. },
  4277. "type": "library",
  4278. "extra": {
  4279. "branch-alias": {
  4280. "dev-master": "2.0-dev"
  4281. }
  4282. },
  4283. "autoload": {
  4284. "psr-4": {
  4285. "Stripe\\": "lib/"
  4286. }
  4287. },
  4288. "notification-url": "https://packagist.org/downloads/",
  4289. "license": [
  4290. "MIT"
  4291. ],
  4292. "authors": [
  4293. {
  4294. "name": "Stripe and contributors",
  4295. "homepage": "https://github.com/stripe/stripe-php/contributors"
  4296. }
  4297. ],
  4298. "description": "Stripe PHP Library",
  4299. "homepage": "https://stripe.com/",
  4300. "keywords": [
  4301. "api",
  4302. "payment processing",
  4303. "stripe"
  4304. ],
  4305. "support": {
  4306. "issues": "https://github.com/stripe/stripe-php/issues",
  4307. "source": "https://github.com/stripe/stripe-php/tree/v7.66.1"
  4308. },
  4309. "time": "2020-12-01T18:44:12+00:00"
  4310. },
  4311. {
  4312. "name": "swiftmailer/swiftmailer",
  4313. "version": "v6.2.3",
  4314. "source": {
  4315. "type": "git",
  4316. "url": "https://github.com/swiftmailer/swiftmailer.git",
  4317. "reference": "149cfdf118b169f7840bbe3ef0d4bc795d1780c9"
  4318. },
  4319. "dist": {
  4320. "type": "zip",
  4321. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/149cfdf118b169f7840bbe3ef0d4bc795d1780c9",
  4322. "reference": "149cfdf118b169f7840bbe3ef0d4bc795d1780c9",
  4323. "shasum": ""
  4324. },
  4325. "require": {
  4326. "egulias/email-validator": "~2.0",
  4327. "php": ">=7.0.0",
  4328. "symfony/polyfill-iconv": "^1.0",
  4329. "symfony/polyfill-intl-idn": "^1.10",
  4330. "symfony/polyfill-mbstring": "^1.0"
  4331. },
  4332. "require-dev": {
  4333. "mockery/mockery": "~0.9.1",
  4334. "symfony/phpunit-bridge": "^3.4.19|^4.1.8"
  4335. },
  4336. "suggest": {
  4337. "ext-intl": "Needed to support internationalized email addresses",
  4338. "true/punycode": "Needed to support internationalized email addresses, if ext-intl is not installed"
  4339. },
  4340. "type": "library",
  4341. "extra": {
  4342. "branch-alias": {
  4343. "dev-master": "6.2-dev"
  4344. }
  4345. },
  4346. "autoload": {
  4347. "files": [
  4348. "lib/swift_required.php"
  4349. ]
  4350. },
  4351. "notification-url": "https://packagist.org/downloads/",
  4352. "license": [
  4353. "MIT"
  4354. ],
  4355. "authors": [
  4356. {
  4357. "name": "Chris Corbyn"
  4358. },
  4359. {
  4360. "name": "Fabien Potencier",
  4361. "email": "fabien@symfony.com"
  4362. }
  4363. ],
  4364. "description": "Swiftmailer, free feature-rich PHP mailer",
  4365. "homepage": "https://swiftmailer.symfony.com",
  4366. "keywords": [
  4367. "email",
  4368. "mail",
  4369. "mailer"
  4370. ],
  4371. "support": {
  4372. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  4373. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.2.3"
  4374. },
  4375. "time": "2019-11-12T09:31:26+00:00"
  4376. },
  4377. {
  4378. "name": "symfony/console",
  4379. "version": "v5.2.0",
  4380. "source": {
  4381. "type": "git",
  4382. "url": "https://github.com/symfony/console.git",
  4383. "reference": "3e0564fb08d44a98bd5f1960204c958e57bd586b"
  4384. },
  4385. "dist": {
  4386. "type": "zip",
  4387. "url": "https://api.github.com/repos/symfony/console/zipball/3e0564fb08d44a98bd5f1960204c958e57bd586b",
  4388. "reference": "3e0564fb08d44a98bd5f1960204c958e57bd586b",
  4389. "shasum": ""
  4390. },
  4391. "require": {
  4392. "php": ">=7.2.5",
  4393. "symfony/polyfill-mbstring": "~1.0",
  4394. "symfony/polyfill-php73": "^1.8",
  4395. "symfony/polyfill-php80": "^1.15",
  4396. "symfony/service-contracts": "^1.1|^2",
  4397. "symfony/string": "^5.1"
  4398. },
  4399. "conflict": {
  4400. "symfony/dependency-injection": "<4.4",
  4401. "symfony/dotenv": "<5.1",
  4402. "symfony/event-dispatcher": "<4.4",
  4403. "symfony/lock": "<4.4",
  4404. "symfony/process": "<4.4"
  4405. },
  4406. "provide": {
  4407. "psr/log-implementation": "1.0"
  4408. },
  4409. "require-dev": {
  4410. "psr/log": "~1.0",
  4411. "symfony/config": "^4.4|^5.0",
  4412. "symfony/dependency-injection": "^4.4|^5.0",
  4413. "symfony/event-dispatcher": "^4.4|^5.0",
  4414. "symfony/lock": "^4.4|^5.0",
  4415. "symfony/process": "^4.4|^5.0",
  4416. "symfony/var-dumper": "^4.4|^5.0"
  4417. },
  4418. "suggest": {
  4419. "psr/log": "For using the console logger",
  4420. "symfony/event-dispatcher": "",
  4421. "symfony/lock": "",
  4422. "symfony/process": ""
  4423. },
  4424. "type": "library",
  4425. "autoload": {
  4426. "psr-4": {
  4427. "Symfony\\Component\\Console\\": ""
  4428. },
  4429. "exclude-from-classmap": [
  4430. "/Tests/"
  4431. ]
  4432. },
  4433. "notification-url": "https://packagist.org/downloads/",
  4434. "license": [
  4435. "MIT"
  4436. ],
  4437. "authors": [
  4438. {
  4439. "name": "Fabien Potencier",
  4440. "email": "fabien@symfony.com"
  4441. },
  4442. {
  4443. "name": "Symfony Community",
  4444. "homepage": "https://symfony.com/contributors"
  4445. }
  4446. ],
  4447. "description": "Symfony Console Component",
  4448. "homepage": "https://symfony.com",
  4449. "keywords": [
  4450. "cli",
  4451. "command line",
  4452. "console",
  4453. "terminal"
  4454. ],
  4455. "support": {
  4456. "source": "https://github.com/symfony/console/tree/v5.2.0"
  4457. },
  4458. "funding": [
  4459. {
  4460. "url": "https://symfony.com/sponsor",
  4461. "type": "custom"
  4462. },
  4463. {
  4464. "url": "https://github.com/fabpot",
  4465. "type": "github"
  4466. },
  4467. {
  4468. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4469. "type": "tidelift"
  4470. }
  4471. ],
  4472. "time": "2020-11-28T11:24:18+00:00"
  4473. },
  4474. {
  4475. "name": "symfony/css-selector",
  4476. "version": "v5.2.0",
  4477. "source": {
  4478. "type": "git",
  4479. "url": "https://github.com/symfony/css-selector.git",
  4480. "reference": "b8d8eb06b0942e84a69e7acebc3e9c1e6e6e7256"
  4481. },
  4482. "dist": {
  4483. "type": "zip",
  4484. "url": "https://api.github.com/repos/symfony/css-selector/zipball/b8d8eb06b0942e84a69e7acebc3e9c1e6e6e7256",
  4485. "reference": "b8d8eb06b0942e84a69e7acebc3e9c1e6e6e7256",
  4486. "shasum": ""
  4487. },
  4488. "require": {
  4489. "php": ">=7.2.5"
  4490. },
  4491. "type": "library",
  4492. "autoload": {
  4493. "psr-4": {
  4494. "Symfony\\Component\\CssSelector\\": ""
  4495. },
  4496. "exclude-from-classmap": [
  4497. "/Tests/"
  4498. ]
  4499. },
  4500. "notification-url": "https://packagist.org/downloads/",
  4501. "license": [
  4502. "MIT"
  4503. ],
  4504. "authors": [
  4505. {
  4506. "name": "Fabien Potencier",
  4507. "email": "fabien@symfony.com"
  4508. },
  4509. {
  4510. "name": "Jean-François Simon",
  4511. "email": "jeanfrancois.simon@sensiolabs.com"
  4512. },
  4513. {
  4514. "name": "Symfony Community",
  4515. "homepage": "https://symfony.com/contributors"
  4516. }
  4517. ],
  4518. "description": "Symfony CssSelector Component",
  4519. "homepage": "https://symfony.com",
  4520. "support": {
  4521. "source": "https://github.com/symfony/css-selector/tree/v5.2.0"
  4522. },
  4523. "funding": [
  4524. {
  4525. "url": "https://symfony.com/sponsor",
  4526. "type": "custom"
  4527. },
  4528. {
  4529. "url": "https://github.com/fabpot",
  4530. "type": "github"
  4531. },
  4532. {
  4533. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4534. "type": "tidelift"
  4535. }
  4536. ],
  4537. "time": "2020-10-28T21:31:18+00:00"
  4538. },
  4539. {
  4540. "name": "symfony/deprecation-contracts",
  4541. "version": "v2.2.0",
  4542. "source": {
  4543. "type": "git",
  4544. "url": "https://github.com/symfony/deprecation-contracts.git",
  4545. "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665"
  4546. },
  4547. "dist": {
  4548. "type": "zip",
  4549. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5fa56b4074d1ae755beb55617ddafe6f5d78f665",
  4550. "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665",
  4551. "shasum": ""
  4552. },
  4553. "require": {
  4554. "php": ">=7.1"
  4555. },
  4556. "type": "library",
  4557. "extra": {
  4558. "branch-alias": {
  4559. "dev-master": "2.2-dev"
  4560. },
  4561. "thanks": {
  4562. "name": "symfony/contracts",
  4563. "url": "https://github.com/symfony/contracts"
  4564. }
  4565. },
  4566. "autoload": {
  4567. "files": [
  4568. "function.php"
  4569. ]
  4570. },
  4571. "notification-url": "https://packagist.org/downloads/",
  4572. "license": [
  4573. "MIT"
  4574. ],
  4575. "authors": [
  4576. {
  4577. "name": "Nicolas Grekas",
  4578. "email": "p@tchwork.com"
  4579. },
  4580. {
  4581. "name": "Symfony Community",
  4582. "homepage": "https://symfony.com/contributors"
  4583. }
  4584. ],
  4585. "description": "A generic function and convention to trigger deprecation notices",
  4586. "homepage": "https://symfony.com",
  4587. "support": {
  4588. "source": "https://github.com/symfony/deprecation-contracts/tree/master"
  4589. },
  4590. "funding": [
  4591. {
  4592. "url": "https://symfony.com/sponsor",
  4593. "type": "custom"
  4594. },
  4595. {
  4596. "url": "https://github.com/fabpot",
  4597. "type": "github"
  4598. },
  4599. {
  4600. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4601. "type": "tidelift"
  4602. }
  4603. ],
  4604. "time": "2020-09-07T11:33:47+00:00"
  4605. },
  4606. {
  4607. "name": "symfony/error-handler",
  4608. "version": "v5.2.0",
  4609. "source": {
  4610. "type": "git",
  4611. "url": "https://github.com/symfony/error-handler.git",
  4612. "reference": "289008c5be039e39908d33ae0a8ac99be1210bba"
  4613. },
  4614. "dist": {
  4615. "type": "zip",
  4616. "url": "https://api.github.com/repos/symfony/error-handler/zipball/289008c5be039e39908d33ae0a8ac99be1210bba",
  4617. "reference": "289008c5be039e39908d33ae0a8ac99be1210bba",
  4618. "shasum": ""
  4619. },
  4620. "require": {
  4621. "php": ">=7.2.5",
  4622. "psr/log": "^1.0",
  4623. "symfony/polyfill-php80": "^1.15",
  4624. "symfony/var-dumper": "^4.4|^5.0"
  4625. },
  4626. "require-dev": {
  4627. "symfony/deprecation-contracts": "^2.1",
  4628. "symfony/http-kernel": "^4.4|^5.0",
  4629. "symfony/serializer": "^4.4|^5.0"
  4630. },
  4631. "type": "library",
  4632. "autoload": {
  4633. "psr-4": {
  4634. "Symfony\\Component\\ErrorHandler\\": ""
  4635. },
  4636. "exclude-from-classmap": [
  4637. "/Tests/"
  4638. ]
  4639. },
  4640. "notification-url": "https://packagist.org/downloads/",
  4641. "license": [
  4642. "MIT"
  4643. ],
  4644. "authors": [
  4645. {
  4646. "name": "Fabien Potencier",
  4647. "email": "fabien@symfony.com"
  4648. },
  4649. {
  4650. "name": "Symfony Community",
  4651. "homepage": "https://symfony.com/contributors"
  4652. }
  4653. ],
  4654. "description": "Symfony ErrorHandler Component",
  4655. "homepage": "https://symfony.com",
  4656. "support": {
  4657. "source": "https://github.com/symfony/error-handler/tree/v5.2.0"
  4658. },
  4659. "funding": [
  4660. {
  4661. "url": "https://symfony.com/sponsor",
  4662. "type": "custom"
  4663. },
  4664. {
  4665. "url": "https://github.com/fabpot",
  4666. "type": "github"
  4667. },
  4668. {
  4669. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4670. "type": "tidelift"
  4671. }
  4672. ],
  4673. "time": "2020-10-28T21:46:03+00:00"
  4674. },
  4675. {
  4676. "name": "symfony/event-dispatcher",
  4677. "version": "v5.2.0",
  4678. "source": {
  4679. "type": "git",
  4680. "url": "https://github.com/symfony/event-dispatcher.git",
  4681. "reference": "aa13a09811e6d2ad43f8fb336bebdb7691d85d3c"
  4682. },
  4683. "dist": {
  4684. "type": "zip",
  4685. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/aa13a09811e6d2ad43f8fb336bebdb7691d85d3c",
  4686. "reference": "aa13a09811e6d2ad43f8fb336bebdb7691d85d3c",
  4687. "shasum": ""
  4688. },
  4689. "require": {
  4690. "php": ">=7.2.5",
  4691. "symfony/deprecation-contracts": "^2.1",
  4692. "symfony/event-dispatcher-contracts": "^2",
  4693. "symfony/polyfill-php80": "^1.15"
  4694. },
  4695. "conflict": {
  4696. "symfony/dependency-injection": "<4.4"
  4697. },
  4698. "provide": {
  4699. "psr/event-dispatcher-implementation": "1.0",
  4700. "symfony/event-dispatcher-implementation": "2.0"
  4701. },
  4702. "require-dev": {
  4703. "psr/log": "~1.0",
  4704. "symfony/config": "^4.4|^5.0",
  4705. "symfony/dependency-injection": "^4.4|^5.0",
  4706. "symfony/error-handler": "^4.4|^5.0",
  4707. "symfony/expression-language": "^4.4|^5.0",
  4708. "symfony/http-foundation": "^4.4|^5.0",
  4709. "symfony/service-contracts": "^1.1|^2",
  4710. "symfony/stopwatch": "^4.4|^5.0"
  4711. },
  4712. "suggest": {
  4713. "symfony/dependency-injection": "",
  4714. "symfony/http-kernel": ""
  4715. },
  4716. "type": "library",
  4717. "autoload": {
  4718. "psr-4": {
  4719. "Symfony\\Component\\EventDispatcher\\": ""
  4720. },
  4721. "exclude-from-classmap": [
  4722. "/Tests/"
  4723. ]
  4724. },
  4725. "notification-url": "https://packagist.org/downloads/",
  4726. "license": [
  4727. "MIT"
  4728. ],
  4729. "authors": [
  4730. {
  4731. "name": "Fabien Potencier",
  4732. "email": "fabien@symfony.com"
  4733. },
  4734. {
  4735. "name": "Symfony Community",
  4736. "homepage": "https://symfony.com/contributors"
  4737. }
  4738. ],
  4739. "description": "Symfony EventDispatcher Component",
  4740. "homepage": "https://symfony.com",
  4741. "support": {
  4742. "source": "https://github.com/symfony/event-dispatcher/tree/v5.2.0"
  4743. },
  4744. "funding": [
  4745. {
  4746. "url": "https://symfony.com/sponsor",
  4747. "type": "custom"
  4748. },
  4749. {
  4750. "url": "https://github.com/fabpot",
  4751. "type": "github"
  4752. },
  4753. {
  4754. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4755. "type": "tidelift"
  4756. }
  4757. ],
  4758. "time": "2020-11-01T16:14:45+00:00"
  4759. },
  4760. {
  4761. "name": "symfony/event-dispatcher-contracts",
  4762. "version": "v2.2.0",
  4763. "source": {
  4764. "type": "git",
  4765. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  4766. "reference": "0ba7d54483095a198fa51781bc608d17e84dffa2"
  4767. },
  4768. "dist": {
  4769. "type": "zip",
  4770. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/0ba7d54483095a198fa51781bc608d17e84dffa2",
  4771. "reference": "0ba7d54483095a198fa51781bc608d17e84dffa2",
  4772. "shasum": ""
  4773. },
  4774. "require": {
  4775. "php": ">=7.2.5",
  4776. "psr/event-dispatcher": "^1"
  4777. },
  4778. "suggest": {
  4779. "symfony/event-dispatcher-implementation": ""
  4780. },
  4781. "type": "library",
  4782. "extra": {
  4783. "branch-alias": {
  4784. "dev-master": "2.2-dev"
  4785. },
  4786. "thanks": {
  4787. "name": "symfony/contracts",
  4788. "url": "https://github.com/symfony/contracts"
  4789. }
  4790. },
  4791. "autoload": {
  4792. "psr-4": {
  4793. "Symfony\\Contracts\\EventDispatcher\\": ""
  4794. }
  4795. },
  4796. "notification-url": "https://packagist.org/downloads/",
  4797. "license": [
  4798. "MIT"
  4799. ],
  4800. "authors": [
  4801. {
  4802. "name": "Nicolas Grekas",
  4803. "email": "p@tchwork.com"
  4804. },
  4805. {
  4806. "name": "Symfony Community",
  4807. "homepage": "https://symfony.com/contributors"
  4808. }
  4809. ],
  4810. "description": "Generic abstractions related to dispatching event",
  4811. "homepage": "https://symfony.com",
  4812. "keywords": [
  4813. "abstractions",
  4814. "contracts",
  4815. "decoupling",
  4816. "interfaces",
  4817. "interoperability",
  4818. "standards"
  4819. ],
  4820. "support": {
  4821. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.2.0"
  4822. },
  4823. "funding": [
  4824. {
  4825. "url": "https://symfony.com/sponsor",
  4826. "type": "custom"
  4827. },
  4828. {
  4829. "url": "https://github.com/fabpot",
  4830. "type": "github"
  4831. },
  4832. {
  4833. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4834. "type": "tidelift"
  4835. }
  4836. ],
  4837. "time": "2020-09-07T11:33:47+00:00"
  4838. },
  4839. {
  4840. "name": "symfony/finder",
  4841. "version": "v5.2.0",
  4842. "source": {
  4843. "type": "git",
  4844. "url": "https://github.com/symfony/finder.git",
  4845. "reference": "fd8305521692f27eae3263895d1ef1571c71a78d"
  4846. },
  4847. "dist": {
  4848. "type": "zip",
  4849. "url": "https://api.github.com/repos/symfony/finder/zipball/fd8305521692f27eae3263895d1ef1571c71a78d",
  4850. "reference": "fd8305521692f27eae3263895d1ef1571c71a78d",
  4851. "shasum": ""
  4852. },
  4853. "require": {
  4854. "php": ">=7.2.5"
  4855. },
  4856. "type": "library",
  4857. "autoload": {
  4858. "psr-4": {
  4859. "Symfony\\Component\\Finder\\": ""
  4860. },
  4861. "exclude-from-classmap": [
  4862. "/Tests/"
  4863. ]
  4864. },
  4865. "notification-url": "https://packagist.org/downloads/",
  4866. "license": [
  4867. "MIT"
  4868. ],
  4869. "authors": [
  4870. {
  4871. "name": "Fabien Potencier",
  4872. "email": "fabien@symfony.com"
  4873. },
  4874. {
  4875. "name": "Symfony Community",
  4876. "homepage": "https://symfony.com/contributors"
  4877. }
  4878. ],
  4879. "description": "Symfony Finder Component",
  4880. "homepage": "https://symfony.com",
  4881. "support": {
  4882. "source": "https://github.com/symfony/finder/tree/v5.2.0"
  4883. },
  4884. "funding": [
  4885. {
  4886. "url": "https://symfony.com/sponsor",
  4887. "type": "custom"
  4888. },
  4889. {
  4890. "url": "https://github.com/fabpot",
  4891. "type": "github"
  4892. },
  4893. {
  4894. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4895. "type": "tidelift"
  4896. }
  4897. ],
  4898. "time": "2020-11-18T09:42:36+00:00"
  4899. },
  4900. {
  4901. "name": "symfony/http-client-contracts",
  4902. "version": "v2.3.1",
  4903. "source": {
  4904. "type": "git",
  4905. "url": "https://github.com/symfony/http-client-contracts.git",
  4906. "reference": "41db680a15018f9c1d4b23516059633ce280ca33"
  4907. },
  4908. "dist": {
  4909. "type": "zip",
  4910. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/41db680a15018f9c1d4b23516059633ce280ca33",
  4911. "reference": "41db680a15018f9c1d4b23516059633ce280ca33",
  4912. "shasum": ""
  4913. },
  4914. "require": {
  4915. "php": ">=7.2.5"
  4916. },
  4917. "suggest": {
  4918. "symfony/http-client-implementation": ""
  4919. },
  4920. "type": "library",
  4921. "extra": {
  4922. "branch-version": "2.3",
  4923. "branch-alias": {
  4924. "dev-main": "2.3-dev"
  4925. },
  4926. "thanks": {
  4927. "name": "symfony/contracts",
  4928. "url": "https://github.com/symfony/contracts"
  4929. }
  4930. },
  4931. "autoload": {
  4932. "psr-4": {
  4933. "Symfony\\Contracts\\HttpClient\\": ""
  4934. }
  4935. },
  4936. "notification-url": "https://packagist.org/downloads/",
  4937. "license": [
  4938. "MIT"
  4939. ],
  4940. "authors": [
  4941. {
  4942. "name": "Nicolas Grekas",
  4943. "email": "p@tchwork.com"
  4944. },
  4945. {
  4946. "name": "Symfony Community",
  4947. "homepage": "https://symfony.com/contributors"
  4948. }
  4949. ],
  4950. "description": "Generic abstractions related to HTTP clients",
  4951. "homepage": "https://symfony.com",
  4952. "keywords": [
  4953. "abstractions",
  4954. "contracts",
  4955. "decoupling",
  4956. "interfaces",
  4957. "interoperability",
  4958. "standards"
  4959. ],
  4960. "support": {
  4961. "source": "https://github.com/symfony/http-client-contracts/tree/v2.3.1"
  4962. },
  4963. "funding": [
  4964. {
  4965. "url": "https://symfony.com/sponsor",
  4966. "type": "custom"
  4967. },
  4968. {
  4969. "url": "https://github.com/fabpot",
  4970. "type": "github"
  4971. },
  4972. {
  4973. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4974. "type": "tidelift"
  4975. }
  4976. ],
  4977. "time": "2020-10-14T17:08:19+00:00"
  4978. },
  4979. {
  4980. "name": "symfony/http-foundation",
  4981. "version": "v5.2.0",
  4982. "source": {
  4983. "type": "git",
  4984. "url": "https://github.com/symfony/http-foundation.git",
  4985. "reference": "e4576271ee99123aa59a40564c7b5405f0ebd1e6"
  4986. },
  4987. "dist": {
  4988. "type": "zip",
  4989. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/e4576271ee99123aa59a40564c7b5405f0ebd1e6",
  4990. "reference": "e4576271ee99123aa59a40564c7b5405f0ebd1e6",
  4991. "shasum": ""
  4992. },
  4993. "require": {
  4994. "php": ">=7.2.5",
  4995. "symfony/deprecation-contracts": "^2.1",
  4996. "symfony/polyfill-mbstring": "~1.1",
  4997. "symfony/polyfill-php80": "^1.15"
  4998. },
  4999. "require-dev": {
  5000. "predis/predis": "~1.0",
  5001. "symfony/cache": "^4.4|^5.0",
  5002. "symfony/expression-language": "^4.4|^5.0",
  5003. "symfony/mime": "^4.4|^5.0"
  5004. },
  5005. "suggest": {
  5006. "symfony/mime": "To use the file extension guesser"
  5007. },
  5008. "type": "library",
  5009. "autoload": {
  5010. "psr-4": {
  5011. "Symfony\\Component\\HttpFoundation\\": ""
  5012. },
  5013. "exclude-from-classmap": [
  5014. "/Tests/"
  5015. ]
  5016. },
  5017. "notification-url": "https://packagist.org/downloads/",
  5018. "license": [
  5019. "MIT"
  5020. ],
  5021. "authors": [
  5022. {
  5023. "name": "Fabien Potencier",
  5024. "email": "fabien@symfony.com"
  5025. },
  5026. {
  5027. "name": "Symfony Community",
  5028. "homepage": "https://symfony.com/contributors"
  5029. }
  5030. ],
  5031. "description": "Symfony HttpFoundation Component",
  5032. "homepage": "https://symfony.com",
  5033. "support": {
  5034. "source": "https://github.com/symfony/http-foundation/tree/v5.2.0"
  5035. },
  5036. "funding": [
  5037. {
  5038. "url": "https://symfony.com/sponsor",
  5039. "type": "custom"
  5040. },
  5041. {
  5042. "url": "https://github.com/fabpot",
  5043. "type": "github"
  5044. },
  5045. {
  5046. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5047. "type": "tidelift"
  5048. }
  5049. ],
  5050. "time": "2020-11-27T06:13:25+00:00"
  5051. },
  5052. {
  5053. "name": "symfony/http-kernel",
  5054. "version": "v5.2.0",
  5055. "source": {
  5056. "type": "git",
  5057. "url": "https://github.com/symfony/http-kernel.git",
  5058. "reference": "38907e5ccb2d9d371191a946734afc83c7a03160"
  5059. },
  5060. "dist": {
  5061. "type": "zip",
  5062. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/38907e5ccb2d9d371191a946734afc83c7a03160",
  5063. "reference": "38907e5ccb2d9d371191a946734afc83c7a03160",
  5064. "shasum": ""
  5065. },
  5066. "require": {
  5067. "php": ">=7.2.5",
  5068. "psr/log": "~1.0",
  5069. "symfony/deprecation-contracts": "^2.1",
  5070. "symfony/error-handler": "^4.4|^5.0",
  5071. "symfony/event-dispatcher": "^5.0",
  5072. "symfony/http-client-contracts": "^1.1|^2",
  5073. "symfony/http-foundation": "^4.4|^5.0",
  5074. "symfony/polyfill-ctype": "^1.8",
  5075. "symfony/polyfill-php73": "^1.9",
  5076. "symfony/polyfill-php80": "^1.15"
  5077. },
  5078. "conflict": {
  5079. "symfony/browser-kit": "<4.4",
  5080. "symfony/cache": "<5.0",
  5081. "symfony/config": "<5.0",
  5082. "symfony/console": "<4.4",
  5083. "symfony/dependency-injection": "<5.1.8",
  5084. "symfony/doctrine-bridge": "<5.0",
  5085. "symfony/form": "<5.0",
  5086. "symfony/http-client": "<5.0",
  5087. "symfony/mailer": "<5.0",
  5088. "symfony/messenger": "<5.0",
  5089. "symfony/translation": "<5.0",
  5090. "symfony/twig-bridge": "<5.0",
  5091. "symfony/validator": "<5.0",
  5092. "twig/twig": "<2.4"
  5093. },
  5094. "provide": {
  5095. "psr/log-implementation": "1.0"
  5096. },
  5097. "require-dev": {
  5098. "psr/cache": "~1.0",
  5099. "symfony/browser-kit": "^4.4|^5.0",
  5100. "symfony/config": "^5.0",
  5101. "symfony/console": "^4.4|^5.0",
  5102. "symfony/css-selector": "^4.4|^5.0",
  5103. "symfony/dependency-injection": "^5.1.8",
  5104. "symfony/dom-crawler": "^4.4|^5.0",
  5105. "symfony/expression-language": "^4.4|^5.0",
  5106. "symfony/finder": "^4.4|^5.0",
  5107. "symfony/process": "^4.4|^5.0",
  5108. "symfony/routing": "^4.4|^5.0",
  5109. "symfony/stopwatch": "^4.4|^5.0",
  5110. "symfony/translation": "^4.4|^5.0",
  5111. "symfony/translation-contracts": "^1.1|^2",
  5112. "twig/twig": "^2.4|^3.0"
  5113. },
  5114. "suggest": {
  5115. "symfony/browser-kit": "",
  5116. "symfony/config": "",
  5117. "symfony/console": "",
  5118. "symfony/dependency-injection": ""
  5119. },
  5120. "type": "library",
  5121. "autoload": {
  5122. "psr-4": {
  5123. "Symfony\\Component\\HttpKernel\\": ""
  5124. },
  5125. "exclude-from-classmap": [
  5126. "/Tests/"
  5127. ]
  5128. },
  5129. "notification-url": "https://packagist.org/downloads/",
  5130. "license": [
  5131. "MIT"
  5132. ],
  5133. "authors": [
  5134. {
  5135. "name": "Fabien Potencier",
  5136. "email": "fabien@symfony.com"
  5137. },
  5138. {
  5139. "name": "Symfony Community",
  5140. "homepage": "https://symfony.com/contributors"
  5141. }
  5142. ],
  5143. "description": "Symfony HttpKernel Component",
  5144. "homepage": "https://symfony.com",
  5145. "support": {
  5146. "source": "https://github.com/symfony/http-kernel/tree/v5.2.0"
  5147. },
  5148. "funding": [
  5149. {
  5150. "url": "https://symfony.com/sponsor",
  5151. "type": "custom"
  5152. },
  5153. {
  5154. "url": "https://github.com/fabpot",
  5155. "type": "github"
  5156. },
  5157. {
  5158. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5159. "type": "tidelift"
  5160. }
  5161. ],
  5162. "time": "2020-11-30T05:54:18+00:00"
  5163. },
  5164. {
  5165. "name": "symfony/mime",
  5166. "version": "v5.2.0",
  5167. "source": {
  5168. "type": "git",
  5169. "url": "https://github.com/symfony/mime.git",
  5170. "reference": "05f667e8fa029568964fd3bec6bc17765b853cc5"
  5171. },
  5172. "dist": {
  5173. "type": "zip",
  5174. "url": "https://api.github.com/repos/symfony/mime/zipball/05f667e8fa029568964fd3bec6bc17765b853cc5",
  5175. "reference": "05f667e8fa029568964fd3bec6bc17765b853cc5",
  5176. "shasum": ""
  5177. },
  5178. "require": {
  5179. "php": ">=7.2.5",
  5180. "symfony/deprecation-contracts": "^2.1",
  5181. "symfony/polyfill-intl-idn": "^1.10",
  5182. "symfony/polyfill-mbstring": "^1.0",
  5183. "symfony/polyfill-php80": "^1.15"
  5184. },
  5185. "conflict": {
  5186. "symfony/mailer": "<4.4"
  5187. },
  5188. "require-dev": {
  5189. "egulias/email-validator": "^2.1.10",
  5190. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5191. "symfony/dependency-injection": "^4.4|^5.0",
  5192. "symfony/property-access": "^4.4|^5.1",
  5193. "symfony/property-info": "^4.4|^5.1",
  5194. "symfony/serializer": "^5.2"
  5195. },
  5196. "type": "library",
  5197. "autoload": {
  5198. "psr-4": {
  5199. "Symfony\\Component\\Mime\\": ""
  5200. },
  5201. "exclude-from-classmap": [
  5202. "/Tests/"
  5203. ]
  5204. },
  5205. "notification-url": "https://packagist.org/downloads/",
  5206. "license": [
  5207. "MIT"
  5208. ],
  5209. "authors": [
  5210. {
  5211. "name": "Fabien Potencier",
  5212. "email": "fabien@symfony.com"
  5213. },
  5214. {
  5215. "name": "Symfony Community",
  5216. "homepage": "https://symfony.com/contributors"
  5217. }
  5218. ],
  5219. "description": "A library to manipulate MIME messages",
  5220. "homepage": "https://symfony.com",
  5221. "keywords": [
  5222. "mime",
  5223. "mime-type"
  5224. ],
  5225. "support": {
  5226. "source": "https://github.com/symfony/mime/tree/v5.2.0"
  5227. },
  5228. "funding": [
  5229. {
  5230. "url": "https://symfony.com/sponsor",
  5231. "type": "custom"
  5232. },
  5233. {
  5234. "url": "https://github.com/fabpot",
  5235. "type": "github"
  5236. },
  5237. {
  5238. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5239. "type": "tidelift"
  5240. }
  5241. ],
  5242. "time": "2020-10-30T14:55:39+00:00"
  5243. },
  5244. {
  5245. "name": "symfony/polyfill-ctype",
  5246. "version": "v1.20.0",
  5247. "source": {
  5248. "type": "git",
  5249. "url": "https://github.com/symfony/polyfill-ctype.git",
  5250. "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41"
  5251. },
  5252. "dist": {
  5253. "type": "zip",
  5254. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/f4ba089a5b6366e453971d3aad5fe8e897b37f41",
  5255. "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41",
  5256. "shasum": ""
  5257. },
  5258. "require": {
  5259. "php": ">=7.1"
  5260. },
  5261. "suggest": {
  5262. "ext-ctype": "For best performance"
  5263. },
  5264. "type": "library",
  5265. "extra": {
  5266. "branch-alias": {
  5267. "dev-main": "1.20-dev"
  5268. },
  5269. "thanks": {
  5270. "name": "symfony/polyfill",
  5271. "url": "https://github.com/symfony/polyfill"
  5272. }
  5273. },
  5274. "autoload": {
  5275. "psr-4": {
  5276. "Symfony\\Polyfill\\Ctype\\": ""
  5277. },
  5278. "files": [
  5279. "bootstrap.php"
  5280. ]
  5281. },
  5282. "notification-url": "https://packagist.org/downloads/",
  5283. "license": [
  5284. "MIT"
  5285. ],
  5286. "authors": [
  5287. {
  5288. "name": "Gert de Pagter",
  5289. "email": "BackEndTea@gmail.com"
  5290. },
  5291. {
  5292. "name": "Symfony Community",
  5293. "homepage": "https://symfony.com/contributors"
  5294. }
  5295. ],
  5296. "description": "Symfony polyfill for ctype functions",
  5297. "homepage": "https://symfony.com",
  5298. "keywords": [
  5299. "compatibility",
  5300. "ctype",
  5301. "polyfill",
  5302. "portable"
  5303. ],
  5304. "support": {
  5305. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.20.0"
  5306. },
  5307. "funding": [
  5308. {
  5309. "url": "https://symfony.com/sponsor",
  5310. "type": "custom"
  5311. },
  5312. {
  5313. "url": "https://github.com/fabpot",
  5314. "type": "github"
  5315. },
  5316. {
  5317. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5318. "type": "tidelift"
  5319. }
  5320. ],
  5321. "time": "2020-10-23T14:02:19+00:00"
  5322. },
  5323. {
  5324. "name": "symfony/polyfill-iconv",
  5325. "version": "v1.20.0",
  5326. "source": {
  5327. "type": "git",
  5328. "url": "https://github.com/symfony/polyfill-iconv.git",
  5329. "reference": "c536646fdb4f29104dd26effc2fdcb9a5b085024"
  5330. },
  5331. "dist": {
  5332. "type": "zip",
  5333. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/c536646fdb4f29104dd26effc2fdcb9a5b085024",
  5334. "reference": "c536646fdb4f29104dd26effc2fdcb9a5b085024",
  5335. "shasum": ""
  5336. },
  5337. "require": {
  5338. "php": ">=7.1"
  5339. },
  5340. "suggest": {
  5341. "ext-iconv": "For best performance"
  5342. },
  5343. "type": "library",
  5344. "extra": {
  5345. "branch-alias": {
  5346. "dev-main": "1.20-dev"
  5347. },
  5348. "thanks": {
  5349. "name": "symfony/polyfill",
  5350. "url": "https://github.com/symfony/polyfill"
  5351. }
  5352. },
  5353. "autoload": {
  5354. "psr-4": {
  5355. "Symfony\\Polyfill\\Iconv\\": ""
  5356. },
  5357. "files": [
  5358. "bootstrap.php"
  5359. ]
  5360. },
  5361. "notification-url": "https://packagist.org/downloads/",
  5362. "license": [
  5363. "MIT"
  5364. ],
  5365. "authors": [
  5366. {
  5367. "name": "Nicolas Grekas",
  5368. "email": "p@tchwork.com"
  5369. },
  5370. {
  5371. "name": "Symfony Community",
  5372. "homepage": "https://symfony.com/contributors"
  5373. }
  5374. ],
  5375. "description": "Symfony polyfill for the Iconv extension",
  5376. "homepage": "https://symfony.com",
  5377. "keywords": [
  5378. "compatibility",
  5379. "iconv",
  5380. "polyfill",
  5381. "portable",
  5382. "shim"
  5383. ],
  5384. "support": {
  5385. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.20.0"
  5386. },
  5387. "funding": [
  5388. {
  5389. "url": "https://symfony.com/sponsor",
  5390. "type": "custom"
  5391. },
  5392. {
  5393. "url": "https://github.com/fabpot",
  5394. "type": "github"
  5395. },
  5396. {
  5397. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5398. "type": "tidelift"
  5399. }
  5400. ],
  5401. "time": "2020-10-23T14:02:19+00:00"
  5402. },
  5403. {
  5404. "name": "symfony/polyfill-intl-grapheme",
  5405. "version": "v1.20.0",
  5406. "source": {
  5407. "type": "git",
  5408. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5409. "reference": "c7cf3f858ec7d70b89559d6e6eb1f7c2517d479c"
  5410. },
  5411. "dist": {
  5412. "type": "zip",
  5413. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/c7cf3f858ec7d70b89559d6e6eb1f7c2517d479c",
  5414. "reference": "c7cf3f858ec7d70b89559d6e6eb1f7c2517d479c",
  5415. "shasum": ""
  5416. },
  5417. "require": {
  5418. "php": ">=7.1"
  5419. },
  5420. "suggest": {
  5421. "ext-intl": "For best performance"
  5422. },
  5423. "type": "library",
  5424. "extra": {
  5425. "branch-alias": {
  5426. "dev-main": "1.20-dev"
  5427. },
  5428. "thanks": {
  5429. "name": "symfony/polyfill",
  5430. "url": "https://github.com/symfony/polyfill"
  5431. }
  5432. },
  5433. "autoload": {
  5434. "psr-4": {
  5435. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5436. },
  5437. "files": [
  5438. "bootstrap.php"
  5439. ]
  5440. },
  5441. "notification-url": "https://packagist.org/downloads/",
  5442. "license": [
  5443. "MIT"
  5444. ],
  5445. "authors": [
  5446. {
  5447. "name": "Nicolas Grekas",
  5448. "email": "p@tchwork.com"
  5449. },
  5450. {
  5451. "name": "Symfony Community",
  5452. "homepage": "https://symfony.com/contributors"
  5453. }
  5454. ],
  5455. "description": "Symfony polyfill for intl's grapheme_* functions",
  5456. "homepage": "https://symfony.com",
  5457. "keywords": [
  5458. "compatibility",
  5459. "grapheme",
  5460. "intl",
  5461. "polyfill",
  5462. "portable",
  5463. "shim"
  5464. ],
  5465. "support": {
  5466. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.20.0"
  5467. },
  5468. "funding": [
  5469. {
  5470. "url": "https://symfony.com/sponsor",
  5471. "type": "custom"
  5472. },
  5473. {
  5474. "url": "https://github.com/fabpot",
  5475. "type": "github"
  5476. },
  5477. {
  5478. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5479. "type": "tidelift"
  5480. }
  5481. ],
  5482. "time": "2020-10-23T14:02:19+00:00"
  5483. },
  5484. {
  5485. "name": "symfony/polyfill-intl-idn",
  5486. "version": "v1.20.0",
  5487. "source": {
  5488. "type": "git",
  5489. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5490. "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117"
  5491. },
  5492. "dist": {
  5493. "type": "zip",
  5494. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/3b75acd829741c768bc8b1f84eb33265e7cc5117",
  5495. "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117",
  5496. "shasum": ""
  5497. },
  5498. "require": {
  5499. "php": ">=7.1",
  5500. "symfony/polyfill-intl-normalizer": "^1.10",
  5501. "symfony/polyfill-php72": "^1.10"
  5502. },
  5503. "suggest": {
  5504. "ext-intl": "For best performance"
  5505. },
  5506. "type": "library",
  5507. "extra": {
  5508. "branch-alias": {
  5509. "dev-main": "1.20-dev"
  5510. },
  5511. "thanks": {
  5512. "name": "symfony/polyfill",
  5513. "url": "https://github.com/symfony/polyfill"
  5514. }
  5515. },
  5516. "autoload": {
  5517. "psr-4": {
  5518. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5519. },
  5520. "files": [
  5521. "bootstrap.php"
  5522. ]
  5523. },
  5524. "notification-url": "https://packagist.org/downloads/",
  5525. "license": [
  5526. "MIT"
  5527. ],
  5528. "authors": [
  5529. {
  5530. "name": "Laurent Bassin",
  5531. "email": "laurent@bassin.info"
  5532. },
  5533. {
  5534. "name": "Trevor Rowbotham",
  5535. "email": "trevor.rowbotham@pm.me"
  5536. },
  5537. {
  5538. "name": "Symfony Community",
  5539. "homepage": "https://symfony.com/contributors"
  5540. }
  5541. ],
  5542. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5543. "homepage": "https://symfony.com",
  5544. "keywords": [
  5545. "compatibility",
  5546. "idn",
  5547. "intl",
  5548. "polyfill",
  5549. "portable",
  5550. "shim"
  5551. ],
  5552. "support": {
  5553. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.20.0"
  5554. },
  5555. "funding": [
  5556. {
  5557. "url": "https://symfony.com/sponsor",
  5558. "type": "custom"
  5559. },
  5560. {
  5561. "url": "https://github.com/fabpot",
  5562. "type": "github"
  5563. },
  5564. {
  5565. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5566. "type": "tidelift"
  5567. }
  5568. ],
  5569. "time": "2020-10-23T14:02:19+00:00"
  5570. },
  5571. {
  5572. "name": "symfony/polyfill-intl-normalizer",
  5573. "version": "v1.20.0",
  5574. "source": {
  5575. "type": "git",
  5576. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5577. "reference": "727d1096295d807c309fb01a851577302394c897"
  5578. },
  5579. "dist": {
  5580. "type": "zip",
  5581. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/727d1096295d807c309fb01a851577302394c897",
  5582. "reference": "727d1096295d807c309fb01a851577302394c897",
  5583. "shasum": ""
  5584. },
  5585. "require": {
  5586. "php": ">=7.1"
  5587. },
  5588. "suggest": {
  5589. "ext-intl": "For best performance"
  5590. },
  5591. "type": "library",
  5592. "extra": {
  5593. "branch-alias": {
  5594. "dev-main": "1.20-dev"
  5595. },
  5596. "thanks": {
  5597. "name": "symfony/polyfill",
  5598. "url": "https://github.com/symfony/polyfill"
  5599. }
  5600. },
  5601. "autoload": {
  5602. "psr-4": {
  5603. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5604. },
  5605. "files": [
  5606. "bootstrap.php"
  5607. ],
  5608. "classmap": [
  5609. "Resources/stubs"
  5610. ]
  5611. },
  5612. "notification-url": "https://packagist.org/downloads/",
  5613. "license": [
  5614. "MIT"
  5615. ],
  5616. "authors": [
  5617. {
  5618. "name": "Nicolas Grekas",
  5619. "email": "p@tchwork.com"
  5620. },
  5621. {
  5622. "name": "Symfony Community",
  5623. "homepage": "https://symfony.com/contributors"
  5624. }
  5625. ],
  5626. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5627. "homepage": "https://symfony.com",
  5628. "keywords": [
  5629. "compatibility",
  5630. "intl",
  5631. "normalizer",
  5632. "polyfill",
  5633. "portable",
  5634. "shim"
  5635. ],
  5636. "support": {
  5637. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.20.0"
  5638. },
  5639. "funding": [
  5640. {
  5641. "url": "https://symfony.com/sponsor",
  5642. "type": "custom"
  5643. },
  5644. {
  5645. "url": "https://github.com/fabpot",
  5646. "type": "github"
  5647. },
  5648. {
  5649. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5650. "type": "tidelift"
  5651. }
  5652. ],
  5653. "time": "2020-10-23T14:02:19+00:00"
  5654. },
  5655. {
  5656. "name": "symfony/polyfill-mbstring",
  5657. "version": "v1.20.0",
  5658. "source": {
  5659. "type": "git",
  5660. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5661. "reference": "39d483bdf39be819deabf04ec872eb0b2410b531"
  5662. },
  5663. "dist": {
  5664. "type": "zip",
  5665. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/39d483bdf39be819deabf04ec872eb0b2410b531",
  5666. "reference": "39d483bdf39be819deabf04ec872eb0b2410b531",
  5667. "shasum": ""
  5668. },
  5669. "require": {
  5670. "php": ">=7.1"
  5671. },
  5672. "suggest": {
  5673. "ext-mbstring": "For best performance"
  5674. },
  5675. "type": "library",
  5676. "extra": {
  5677. "branch-alias": {
  5678. "dev-main": "1.20-dev"
  5679. },
  5680. "thanks": {
  5681. "name": "symfony/polyfill",
  5682. "url": "https://github.com/symfony/polyfill"
  5683. }
  5684. },
  5685. "autoload": {
  5686. "psr-4": {
  5687. "Symfony\\Polyfill\\Mbstring\\": ""
  5688. },
  5689. "files": [
  5690. "bootstrap.php"
  5691. ]
  5692. },
  5693. "notification-url": "https://packagist.org/downloads/",
  5694. "license": [
  5695. "MIT"
  5696. ],
  5697. "authors": [
  5698. {
  5699. "name": "Nicolas Grekas",
  5700. "email": "p@tchwork.com"
  5701. },
  5702. {
  5703. "name": "Symfony Community",
  5704. "homepage": "https://symfony.com/contributors"
  5705. }
  5706. ],
  5707. "description": "Symfony polyfill for the Mbstring extension",
  5708. "homepage": "https://symfony.com",
  5709. "keywords": [
  5710. "compatibility",
  5711. "mbstring",
  5712. "polyfill",
  5713. "portable",
  5714. "shim"
  5715. ],
  5716. "support": {
  5717. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.20.0"
  5718. },
  5719. "funding": [
  5720. {
  5721. "url": "https://symfony.com/sponsor",
  5722. "type": "custom"
  5723. },
  5724. {
  5725. "url": "https://github.com/fabpot",
  5726. "type": "github"
  5727. },
  5728. {
  5729. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5730. "type": "tidelift"
  5731. }
  5732. ],
  5733. "time": "2020-10-23T14:02:19+00:00"
  5734. },
  5735. {
  5736. "name": "symfony/polyfill-php72",
  5737. "version": "v1.20.0",
  5738. "source": {
  5739. "type": "git",
  5740. "url": "https://github.com/symfony/polyfill-php72.git",
  5741. "reference": "cede45fcdfabdd6043b3592e83678e42ec69e930"
  5742. },
  5743. "dist": {
  5744. "type": "zip",
  5745. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/cede45fcdfabdd6043b3592e83678e42ec69e930",
  5746. "reference": "cede45fcdfabdd6043b3592e83678e42ec69e930",
  5747. "shasum": ""
  5748. },
  5749. "require": {
  5750. "php": ">=7.1"
  5751. },
  5752. "type": "library",
  5753. "extra": {
  5754. "branch-alias": {
  5755. "dev-main": "1.20-dev"
  5756. },
  5757. "thanks": {
  5758. "name": "symfony/polyfill",
  5759. "url": "https://github.com/symfony/polyfill"
  5760. }
  5761. },
  5762. "autoload": {
  5763. "psr-4": {
  5764. "Symfony\\Polyfill\\Php72\\": ""
  5765. },
  5766. "files": [
  5767. "bootstrap.php"
  5768. ]
  5769. },
  5770. "notification-url": "https://packagist.org/downloads/",
  5771. "license": [
  5772. "MIT"
  5773. ],
  5774. "authors": [
  5775. {
  5776. "name": "Nicolas Grekas",
  5777. "email": "p@tchwork.com"
  5778. },
  5779. {
  5780. "name": "Symfony Community",
  5781. "homepage": "https://symfony.com/contributors"
  5782. }
  5783. ],
  5784. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  5785. "homepage": "https://symfony.com",
  5786. "keywords": [
  5787. "compatibility",
  5788. "polyfill",
  5789. "portable",
  5790. "shim"
  5791. ],
  5792. "support": {
  5793. "source": "https://github.com/symfony/polyfill-php72/tree/v1.20.0"
  5794. },
  5795. "funding": [
  5796. {
  5797. "url": "https://symfony.com/sponsor",
  5798. "type": "custom"
  5799. },
  5800. {
  5801. "url": "https://github.com/fabpot",
  5802. "type": "github"
  5803. },
  5804. {
  5805. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5806. "type": "tidelift"
  5807. }
  5808. ],
  5809. "time": "2020-10-23T14:02:19+00:00"
  5810. },
  5811. {
  5812. "name": "symfony/polyfill-php73",
  5813. "version": "v1.20.0",
  5814. "source": {
  5815. "type": "git",
  5816. "url": "https://github.com/symfony/polyfill-php73.git",
  5817. "reference": "8ff431c517be11c78c48a39a66d37431e26a6bed"
  5818. },
  5819. "dist": {
  5820. "type": "zip",
  5821. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/8ff431c517be11c78c48a39a66d37431e26a6bed",
  5822. "reference": "8ff431c517be11c78c48a39a66d37431e26a6bed",
  5823. "shasum": ""
  5824. },
  5825. "require": {
  5826. "php": ">=7.1"
  5827. },
  5828. "type": "library",
  5829. "extra": {
  5830. "branch-alias": {
  5831. "dev-main": "1.20-dev"
  5832. },
  5833. "thanks": {
  5834. "name": "symfony/polyfill",
  5835. "url": "https://github.com/symfony/polyfill"
  5836. }
  5837. },
  5838. "autoload": {
  5839. "psr-4": {
  5840. "Symfony\\Polyfill\\Php73\\": ""
  5841. },
  5842. "files": [
  5843. "bootstrap.php"
  5844. ],
  5845. "classmap": [
  5846. "Resources/stubs"
  5847. ]
  5848. },
  5849. "notification-url": "https://packagist.org/downloads/",
  5850. "license": [
  5851. "MIT"
  5852. ],
  5853. "authors": [
  5854. {
  5855. "name": "Nicolas Grekas",
  5856. "email": "p@tchwork.com"
  5857. },
  5858. {
  5859. "name": "Symfony Community",
  5860. "homepage": "https://symfony.com/contributors"
  5861. }
  5862. ],
  5863. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  5864. "homepage": "https://symfony.com",
  5865. "keywords": [
  5866. "compatibility",
  5867. "polyfill",
  5868. "portable",
  5869. "shim"
  5870. ],
  5871. "support": {
  5872. "source": "https://github.com/symfony/polyfill-php73/tree/v1.20.0"
  5873. },
  5874. "funding": [
  5875. {
  5876. "url": "https://symfony.com/sponsor",
  5877. "type": "custom"
  5878. },
  5879. {
  5880. "url": "https://github.com/fabpot",
  5881. "type": "github"
  5882. },
  5883. {
  5884. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5885. "type": "tidelift"
  5886. }
  5887. ],
  5888. "time": "2020-10-23T14:02:19+00:00"
  5889. },
  5890. {
  5891. "name": "symfony/polyfill-php80",
  5892. "version": "v1.20.0",
  5893. "source": {
  5894. "type": "git",
  5895. "url": "https://github.com/symfony/polyfill-php80.git",
  5896. "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de"
  5897. },
  5898. "dist": {
  5899. "type": "zip",
  5900. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/e70aa8b064c5b72d3df2abd5ab1e90464ad009de",
  5901. "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de",
  5902. "shasum": ""
  5903. },
  5904. "require": {
  5905. "php": ">=7.1"
  5906. },
  5907. "type": "library",
  5908. "extra": {
  5909. "branch-alias": {
  5910. "dev-main": "1.20-dev"
  5911. },
  5912. "thanks": {
  5913. "name": "symfony/polyfill",
  5914. "url": "https://github.com/symfony/polyfill"
  5915. }
  5916. },
  5917. "autoload": {
  5918. "psr-4": {
  5919. "Symfony\\Polyfill\\Php80\\": ""
  5920. },
  5921. "files": [
  5922. "bootstrap.php"
  5923. ],
  5924. "classmap": [
  5925. "Resources/stubs"
  5926. ]
  5927. },
  5928. "notification-url": "https://packagist.org/downloads/",
  5929. "license": [
  5930. "MIT"
  5931. ],
  5932. "authors": [
  5933. {
  5934. "name": "Ion Bazan",
  5935. "email": "ion.bazan@gmail.com"
  5936. },
  5937. {
  5938. "name": "Nicolas Grekas",
  5939. "email": "p@tchwork.com"
  5940. },
  5941. {
  5942. "name": "Symfony Community",
  5943. "homepage": "https://symfony.com/contributors"
  5944. }
  5945. ],
  5946. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  5947. "homepage": "https://symfony.com",
  5948. "keywords": [
  5949. "compatibility",
  5950. "polyfill",
  5951. "portable",
  5952. "shim"
  5953. ],
  5954. "support": {
  5955. "source": "https://github.com/symfony/polyfill-php80/tree/v1.20.0"
  5956. },
  5957. "funding": [
  5958. {
  5959. "url": "https://symfony.com/sponsor",
  5960. "type": "custom"
  5961. },
  5962. {
  5963. "url": "https://github.com/fabpot",
  5964. "type": "github"
  5965. },
  5966. {
  5967. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5968. "type": "tidelift"
  5969. }
  5970. ],
  5971. "time": "2020-10-23T14:02:19+00:00"
  5972. },
  5973. {
  5974. "name": "symfony/process",
  5975. "version": "v5.2.0",
  5976. "source": {
  5977. "type": "git",
  5978. "url": "https://github.com/symfony/process.git",
  5979. "reference": "240e74140d4d956265048f3025c0aecbbc302d54"
  5980. },
  5981. "dist": {
  5982. "type": "zip",
  5983. "url": "https://api.github.com/repos/symfony/process/zipball/240e74140d4d956265048f3025c0aecbbc302d54",
  5984. "reference": "240e74140d4d956265048f3025c0aecbbc302d54",
  5985. "shasum": ""
  5986. },
  5987. "require": {
  5988. "php": ">=7.2.5",
  5989. "symfony/polyfill-php80": "^1.15"
  5990. },
  5991. "type": "library",
  5992. "autoload": {
  5993. "psr-4": {
  5994. "Symfony\\Component\\Process\\": ""
  5995. },
  5996. "exclude-from-classmap": [
  5997. "/Tests/"
  5998. ]
  5999. },
  6000. "notification-url": "https://packagist.org/downloads/",
  6001. "license": [
  6002. "MIT"
  6003. ],
  6004. "authors": [
  6005. {
  6006. "name": "Fabien Potencier",
  6007. "email": "fabien@symfony.com"
  6008. },
  6009. {
  6010. "name": "Symfony Community",
  6011. "homepage": "https://symfony.com/contributors"
  6012. }
  6013. ],
  6014. "description": "Symfony Process Component",
  6015. "homepage": "https://symfony.com",
  6016. "support": {
  6017. "source": "https://github.com/symfony/process/tree/v5.2.0"
  6018. },
  6019. "funding": [
  6020. {
  6021. "url": "https://symfony.com/sponsor",
  6022. "type": "custom"
  6023. },
  6024. {
  6025. "url": "https://github.com/fabpot",
  6026. "type": "github"
  6027. },
  6028. {
  6029. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6030. "type": "tidelift"
  6031. }
  6032. ],
  6033. "time": "2020-11-02T15:47:15+00:00"
  6034. },
  6035. {
  6036. "name": "symfony/routing",
  6037. "version": "v5.2.0",
  6038. "source": {
  6039. "type": "git",
  6040. "url": "https://github.com/symfony/routing.git",
  6041. "reference": "130ac5175ad2fd417978baebd8062e2e6b2bc28b"
  6042. },
  6043. "dist": {
  6044. "type": "zip",
  6045. "url": "https://api.github.com/repos/symfony/routing/zipball/130ac5175ad2fd417978baebd8062e2e6b2bc28b",
  6046. "reference": "130ac5175ad2fd417978baebd8062e2e6b2bc28b",
  6047. "shasum": ""
  6048. },
  6049. "require": {
  6050. "php": ">=7.2.5",
  6051. "symfony/deprecation-contracts": "^2.1",
  6052. "symfony/polyfill-php80": "^1.15"
  6053. },
  6054. "conflict": {
  6055. "symfony/config": "<5.0",
  6056. "symfony/dependency-injection": "<4.4",
  6057. "symfony/yaml": "<4.4"
  6058. },
  6059. "require-dev": {
  6060. "doctrine/annotations": "^1.7",
  6061. "psr/log": "~1.0",
  6062. "symfony/config": "^5.0",
  6063. "symfony/dependency-injection": "^4.4|^5.0",
  6064. "symfony/expression-language": "^4.4|^5.0",
  6065. "symfony/http-foundation": "^4.4|^5.0",
  6066. "symfony/yaml": "^4.4|^5.0"
  6067. },
  6068. "suggest": {
  6069. "doctrine/annotations": "For using the annotation loader",
  6070. "symfony/config": "For using the all-in-one router or any loader",
  6071. "symfony/expression-language": "For using expression matching",
  6072. "symfony/http-foundation": "For using a Symfony Request object",
  6073. "symfony/yaml": "For using the YAML loader"
  6074. },
  6075. "type": "library",
  6076. "autoload": {
  6077. "psr-4": {
  6078. "Symfony\\Component\\Routing\\": ""
  6079. },
  6080. "exclude-from-classmap": [
  6081. "/Tests/"
  6082. ]
  6083. },
  6084. "notification-url": "https://packagist.org/downloads/",
  6085. "license": [
  6086. "MIT"
  6087. ],
  6088. "authors": [
  6089. {
  6090. "name": "Fabien Potencier",
  6091. "email": "fabien@symfony.com"
  6092. },
  6093. {
  6094. "name": "Symfony Community",
  6095. "homepage": "https://symfony.com/contributors"
  6096. }
  6097. ],
  6098. "description": "Symfony Routing Component",
  6099. "homepage": "https://symfony.com",
  6100. "keywords": [
  6101. "router",
  6102. "routing",
  6103. "uri",
  6104. "url"
  6105. ],
  6106. "support": {
  6107. "source": "https://github.com/symfony/routing/tree/v5.2.0"
  6108. },
  6109. "funding": [
  6110. {
  6111. "url": "https://symfony.com/sponsor",
  6112. "type": "custom"
  6113. },
  6114. {
  6115. "url": "https://github.com/fabpot",
  6116. "type": "github"
  6117. },
  6118. {
  6119. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6120. "type": "tidelift"
  6121. }
  6122. ],
  6123. "time": "2020-11-27T00:39:34+00:00"
  6124. },
  6125. {
  6126. "name": "symfony/service-contracts",
  6127. "version": "v2.2.0",
  6128. "source": {
  6129. "type": "git",
  6130. "url": "https://github.com/symfony/service-contracts.git",
  6131. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1"
  6132. },
  6133. "dist": {
  6134. "type": "zip",
  6135. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  6136. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  6137. "shasum": ""
  6138. },
  6139. "require": {
  6140. "php": ">=7.2.5",
  6141. "psr/container": "^1.0"
  6142. },
  6143. "suggest": {
  6144. "symfony/service-implementation": ""
  6145. },
  6146. "type": "library",
  6147. "extra": {
  6148. "branch-alias": {
  6149. "dev-master": "2.2-dev"
  6150. },
  6151. "thanks": {
  6152. "name": "symfony/contracts",
  6153. "url": "https://github.com/symfony/contracts"
  6154. }
  6155. },
  6156. "autoload": {
  6157. "psr-4": {
  6158. "Symfony\\Contracts\\Service\\": ""
  6159. }
  6160. },
  6161. "notification-url": "https://packagist.org/downloads/",
  6162. "license": [
  6163. "MIT"
  6164. ],
  6165. "authors": [
  6166. {
  6167. "name": "Nicolas Grekas",
  6168. "email": "p@tchwork.com"
  6169. },
  6170. {
  6171. "name": "Symfony Community",
  6172. "homepage": "https://symfony.com/contributors"
  6173. }
  6174. ],
  6175. "description": "Generic abstractions related to writing services",
  6176. "homepage": "https://symfony.com",
  6177. "keywords": [
  6178. "abstractions",
  6179. "contracts",
  6180. "decoupling",
  6181. "interfaces",
  6182. "interoperability",
  6183. "standards"
  6184. ],
  6185. "support": {
  6186. "source": "https://github.com/symfony/service-contracts/tree/master"
  6187. },
  6188. "funding": [
  6189. {
  6190. "url": "https://symfony.com/sponsor",
  6191. "type": "custom"
  6192. },
  6193. {
  6194. "url": "https://github.com/fabpot",
  6195. "type": "github"
  6196. },
  6197. {
  6198. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6199. "type": "tidelift"
  6200. }
  6201. ],
  6202. "time": "2020-09-07T11:33:47+00:00"
  6203. },
  6204. {
  6205. "name": "symfony/string",
  6206. "version": "v5.2.0",
  6207. "source": {
  6208. "type": "git",
  6209. "url": "https://github.com/symfony/string.git",
  6210. "reference": "40e975edadd4e32cd16f3753b3bad65d9ac48242"
  6211. },
  6212. "dist": {
  6213. "type": "zip",
  6214. "url": "https://api.github.com/repos/symfony/string/zipball/40e975edadd4e32cd16f3753b3bad65d9ac48242",
  6215. "reference": "40e975edadd4e32cd16f3753b3bad65d9ac48242",
  6216. "shasum": ""
  6217. },
  6218. "require": {
  6219. "php": ">=7.2.5",
  6220. "symfony/polyfill-ctype": "~1.8",
  6221. "symfony/polyfill-intl-grapheme": "~1.0",
  6222. "symfony/polyfill-intl-normalizer": "~1.0",
  6223. "symfony/polyfill-mbstring": "~1.0",
  6224. "symfony/polyfill-php80": "~1.15"
  6225. },
  6226. "require-dev": {
  6227. "symfony/error-handler": "^4.4|^5.0",
  6228. "symfony/http-client": "^4.4|^5.0",
  6229. "symfony/translation-contracts": "^1.1|^2",
  6230. "symfony/var-exporter": "^4.4|^5.0"
  6231. },
  6232. "type": "library",
  6233. "autoload": {
  6234. "psr-4": {
  6235. "Symfony\\Component\\String\\": ""
  6236. },
  6237. "files": [
  6238. "Resources/functions.php"
  6239. ],
  6240. "exclude-from-classmap": [
  6241. "/Tests/"
  6242. ]
  6243. },
  6244. "notification-url": "https://packagist.org/downloads/",
  6245. "license": [
  6246. "MIT"
  6247. ],
  6248. "authors": [
  6249. {
  6250. "name": "Nicolas Grekas",
  6251. "email": "p@tchwork.com"
  6252. },
  6253. {
  6254. "name": "Symfony Community",
  6255. "homepage": "https://symfony.com/contributors"
  6256. }
  6257. ],
  6258. "description": "Symfony String component",
  6259. "homepage": "https://symfony.com",
  6260. "keywords": [
  6261. "grapheme",
  6262. "i18n",
  6263. "string",
  6264. "unicode",
  6265. "utf-8",
  6266. "utf8"
  6267. ],
  6268. "support": {
  6269. "source": "https://github.com/symfony/string/tree/v5.2.0"
  6270. },
  6271. "funding": [
  6272. {
  6273. "url": "https://symfony.com/sponsor",
  6274. "type": "custom"
  6275. },
  6276. {
  6277. "url": "https://github.com/fabpot",
  6278. "type": "github"
  6279. },
  6280. {
  6281. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6282. "type": "tidelift"
  6283. }
  6284. ],
  6285. "time": "2020-10-24T12:08:07+00:00"
  6286. },
  6287. {
  6288. "name": "symfony/translation",
  6289. "version": "v5.2.0",
  6290. "source": {
  6291. "type": "git",
  6292. "url": "https://github.com/symfony/translation.git",
  6293. "reference": "52f486a707510884450df461b5a6429dd7a67379"
  6294. },
  6295. "dist": {
  6296. "type": "zip",
  6297. "url": "https://api.github.com/repos/symfony/translation/zipball/52f486a707510884450df461b5a6429dd7a67379",
  6298. "reference": "52f486a707510884450df461b5a6429dd7a67379",
  6299. "shasum": ""
  6300. },
  6301. "require": {
  6302. "php": ">=7.2.5",
  6303. "symfony/polyfill-mbstring": "~1.0",
  6304. "symfony/polyfill-php80": "^1.15",
  6305. "symfony/translation-contracts": "^2.3"
  6306. },
  6307. "conflict": {
  6308. "symfony/config": "<4.4",
  6309. "symfony/dependency-injection": "<5.0",
  6310. "symfony/http-kernel": "<5.0",
  6311. "symfony/twig-bundle": "<5.0",
  6312. "symfony/yaml": "<4.4"
  6313. },
  6314. "provide": {
  6315. "symfony/translation-implementation": "2.0"
  6316. },
  6317. "require-dev": {
  6318. "psr/log": "~1.0",
  6319. "symfony/config": "^4.4|^5.0",
  6320. "symfony/console": "^4.4|^5.0",
  6321. "symfony/dependency-injection": "^5.0",
  6322. "symfony/finder": "^4.4|^5.0",
  6323. "symfony/http-kernel": "^5.0",
  6324. "symfony/intl": "^4.4|^5.0",
  6325. "symfony/service-contracts": "^1.1.2|^2",
  6326. "symfony/yaml": "^4.4|^5.0"
  6327. },
  6328. "suggest": {
  6329. "psr/log-implementation": "To use logging capability in translator",
  6330. "symfony/config": "",
  6331. "symfony/yaml": ""
  6332. },
  6333. "type": "library",
  6334. "autoload": {
  6335. "files": [
  6336. "Resources/functions.php"
  6337. ],
  6338. "psr-4": {
  6339. "Symfony\\Component\\Translation\\": ""
  6340. },
  6341. "exclude-from-classmap": [
  6342. "/Tests/"
  6343. ]
  6344. },
  6345. "notification-url": "https://packagist.org/downloads/",
  6346. "license": [
  6347. "MIT"
  6348. ],
  6349. "authors": [
  6350. {
  6351. "name": "Fabien Potencier",
  6352. "email": "fabien@symfony.com"
  6353. },
  6354. {
  6355. "name": "Symfony Community",
  6356. "homepage": "https://symfony.com/contributors"
  6357. }
  6358. ],
  6359. "description": "Symfony Translation Component",
  6360. "homepage": "https://symfony.com",
  6361. "support": {
  6362. "source": "https://github.com/symfony/translation/tree/v5.2.0"
  6363. },
  6364. "funding": [
  6365. {
  6366. "url": "https://symfony.com/sponsor",
  6367. "type": "custom"
  6368. },
  6369. {
  6370. "url": "https://github.com/fabpot",
  6371. "type": "github"
  6372. },
  6373. {
  6374. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6375. "type": "tidelift"
  6376. }
  6377. ],
  6378. "time": "2020-11-28T11:24:18+00:00"
  6379. },
  6380. {
  6381. "name": "symfony/translation-contracts",
  6382. "version": "v2.3.0",
  6383. "source": {
  6384. "type": "git",
  6385. "url": "https://github.com/symfony/translation-contracts.git",
  6386. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105"
  6387. },
  6388. "dist": {
  6389. "type": "zip",
  6390. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  6391. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  6392. "shasum": ""
  6393. },
  6394. "require": {
  6395. "php": ">=7.2.5"
  6396. },
  6397. "suggest": {
  6398. "symfony/translation-implementation": ""
  6399. },
  6400. "type": "library",
  6401. "extra": {
  6402. "branch-alias": {
  6403. "dev-master": "2.3-dev"
  6404. },
  6405. "thanks": {
  6406. "name": "symfony/contracts",
  6407. "url": "https://github.com/symfony/contracts"
  6408. }
  6409. },
  6410. "autoload": {
  6411. "psr-4": {
  6412. "Symfony\\Contracts\\Translation\\": ""
  6413. }
  6414. },
  6415. "notification-url": "https://packagist.org/downloads/",
  6416. "license": [
  6417. "MIT"
  6418. ],
  6419. "authors": [
  6420. {
  6421. "name": "Nicolas Grekas",
  6422. "email": "p@tchwork.com"
  6423. },
  6424. {
  6425. "name": "Symfony Community",
  6426. "homepage": "https://symfony.com/contributors"
  6427. }
  6428. ],
  6429. "description": "Generic abstractions related to translation",
  6430. "homepage": "https://symfony.com",
  6431. "keywords": [
  6432. "abstractions",
  6433. "contracts",
  6434. "decoupling",
  6435. "interfaces",
  6436. "interoperability",
  6437. "standards"
  6438. ],
  6439. "support": {
  6440. "source": "https://github.com/symfony/translation-contracts/tree/v2.3.0"
  6441. },
  6442. "funding": [
  6443. {
  6444. "url": "https://symfony.com/sponsor",
  6445. "type": "custom"
  6446. },
  6447. {
  6448. "url": "https://github.com/fabpot",
  6449. "type": "github"
  6450. },
  6451. {
  6452. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6453. "type": "tidelift"
  6454. }
  6455. ],
  6456. "time": "2020-09-28T13:05:58+00:00"
  6457. },
  6458. {
  6459. "name": "symfony/var-dumper",
  6460. "version": "v5.2.0",
  6461. "source": {
  6462. "type": "git",
  6463. "url": "https://github.com/symfony/var-dumper.git",
  6464. "reference": "173a79c462b1c81e1fa26129f71e41333d846b26"
  6465. },
  6466. "dist": {
  6467. "type": "zip",
  6468. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/173a79c462b1c81e1fa26129f71e41333d846b26",
  6469. "reference": "173a79c462b1c81e1fa26129f71e41333d846b26",
  6470. "shasum": ""
  6471. },
  6472. "require": {
  6473. "php": ">=7.2.5",
  6474. "symfony/polyfill-mbstring": "~1.0",
  6475. "symfony/polyfill-php80": "^1.15"
  6476. },
  6477. "conflict": {
  6478. "phpunit/phpunit": "<5.4.3",
  6479. "symfony/console": "<4.4"
  6480. },
  6481. "require-dev": {
  6482. "ext-iconv": "*",
  6483. "symfony/console": "^4.4|^5.0",
  6484. "symfony/process": "^4.4|^5.0",
  6485. "twig/twig": "^2.4|^3.0"
  6486. },
  6487. "suggest": {
  6488. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  6489. "ext-intl": "To show region name in time zone dump",
  6490. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  6491. },
  6492. "bin": [
  6493. "Resources/bin/var-dump-server"
  6494. ],
  6495. "type": "library",
  6496. "autoload": {
  6497. "files": [
  6498. "Resources/functions/dump.php"
  6499. ],
  6500. "psr-4": {
  6501. "Symfony\\Component\\VarDumper\\": ""
  6502. },
  6503. "exclude-from-classmap": [
  6504. "/Tests/"
  6505. ]
  6506. },
  6507. "notification-url": "https://packagist.org/downloads/",
  6508. "license": [
  6509. "MIT"
  6510. ],
  6511. "authors": [
  6512. {
  6513. "name": "Nicolas Grekas",
  6514. "email": "p@tchwork.com"
  6515. },
  6516. {
  6517. "name": "Symfony Community",
  6518. "homepage": "https://symfony.com/contributors"
  6519. }
  6520. ],
  6521. "description": "Symfony mechanism for exploring and dumping PHP variables",
  6522. "homepage": "https://symfony.com",
  6523. "keywords": [
  6524. "debug",
  6525. "dump"
  6526. ],
  6527. "support": {
  6528. "source": "https://github.com/symfony/var-dumper/tree/v5.2.0"
  6529. },
  6530. "funding": [
  6531. {
  6532. "url": "https://symfony.com/sponsor",
  6533. "type": "custom"
  6534. },
  6535. {
  6536. "url": "https://github.com/fabpot",
  6537. "type": "github"
  6538. },
  6539. {
  6540. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6541. "type": "tidelift"
  6542. }
  6543. ],
  6544. "time": "2020-11-27T00:39:34+00:00"
  6545. },
  6546. {
  6547. "name": "tijsverkoyen/css-to-inline-styles",
  6548. "version": "2.2.3",
  6549. "source": {
  6550. "type": "git",
  6551. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  6552. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5"
  6553. },
  6554. "dist": {
  6555. "type": "zip",
  6556. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/b43b05cf43c1b6d849478965062b6ef73e223bb5",
  6557. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5",
  6558. "shasum": ""
  6559. },
  6560. "require": {
  6561. "ext-dom": "*",
  6562. "ext-libxml": "*",
  6563. "php": "^5.5 || ^7.0 || ^8.0",
  6564. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0"
  6565. },
  6566. "require-dev": {
  6567. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5"
  6568. },
  6569. "type": "library",
  6570. "extra": {
  6571. "branch-alias": {
  6572. "dev-master": "2.2.x-dev"
  6573. }
  6574. },
  6575. "autoload": {
  6576. "psr-4": {
  6577. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  6578. }
  6579. },
  6580. "notification-url": "https://packagist.org/downloads/",
  6581. "license": [
  6582. "BSD-3-Clause"
  6583. ],
  6584. "authors": [
  6585. {
  6586. "name": "Tijs Verkoyen",
  6587. "email": "css_to_inline_styles@verkoyen.eu",
  6588. "role": "Developer"
  6589. }
  6590. ],
  6591. "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.",
  6592. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  6593. "support": {
  6594. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  6595. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.3"
  6596. },
  6597. "time": "2020-07-13T06:12:54+00:00"
  6598. },
  6599. {
  6600. "name": "vlucas/phpdotenv",
  6601. "version": "v4.1.8",
  6602. "source": {
  6603. "type": "git",
  6604. "url": "https://github.com/vlucas/phpdotenv.git",
  6605. "reference": "572af79d913627a9d70374d27a6f5d689a35de32"
  6606. },
  6607. "dist": {
  6608. "type": "zip",
  6609. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/572af79d913627a9d70374d27a6f5d689a35de32",
  6610. "reference": "572af79d913627a9d70374d27a6f5d689a35de32",
  6611. "shasum": ""
  6612. },
  6613. "require": {
  6614. "php": "^5.5.9 || ^7.0 || ^8.0",
  6615. "phpoption/phpoption": "^1.7.3",
  6616. "symfony/polyfill-ctype": "^1.17"
  6617. },
  6618. "require-dev": {
  6619. "bamarni/composer-bin-plugin": "^1.4.1",
  6620. "ext-filter": "*",
  6621. "ext-pcre": "*",
  6622. "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0"
  6623. },
  6624. "suggest": {
  6625. "ext-filter": "Required to use the boolean validator.",
  6626. "ext-pcre": "Required to use most of the library."
  6627. },
  6628. "type": "library",
  6629. "extra": {
  6630. "branch-alias": {
  6631. "dev-master": "4.1-dev"
  6632. }
  6633. },
  6634. "autoload": {
  6635. "psr-4": {
  6636. "Dotenv\\": "src/"
  6637. }
  6638. },
  6639. "notification-url": "https://packagist.org/downloads/",
  6640. "license": [
  6641. "BSD-3-Clause"
  6642. ],
  6643. "authors": [
  6644. {
  6645. "name": "Graham Campbell",
  6646. "email": "graham@alt-three.com",
  6647. "homepage": "https://gjcampbell.co.uk/"
  6648. },
  6649. {
  6650. "name": "Vance Lucas",
  6651. "email": "vance@vancelucas.com",
  6652. "homepage": "https://vancelucas.com/"
  6653. }
  6654. ],
  6655. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  6656. "keywords": [
  6657. "dotenv",
  6658. "env",
  6659. "environment"
  6660. ],
  6661. "support": {
  6662. "issues": "https://github.com/vlucas/phpdotenv/issues",
  6663. "source": "https://github.com/vlucas/phpdotenv/tree/4.1"
  6664. },
  6665. "funding": [
  6666. {
  6667. "url": "https://github.com/GrahamCampbell",
  6668. "type": "github"
  6669. },
  6670. {
  6671. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  6672. "type": "tidelift"
  6673. }
  6674. ],
  6675. "time": "2020-07-14T19:22:52+00:00"
  6676. },
  6677. {
  6678. "name": "voku/portable-ascii",
  6679. "version": "1.5.6",
  6680. "source": {
  6681. "type": "git",
  6682. "url": "https://github.com/voku/portable-ascii.git",
  6683. "reference": "80953678b19901e5165c56752d087fc11526017c"
  6684. },
  6685. "dist": {
  6686. "type": "zip",
  6687. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/80953678b19901e5165c56752d087fc11526017c",
  6688. "reference": "80953678b19901e5165c56752d087fc11526017c",
  6689. "shasum": ""
  6690. },
  6691. "require": {
  6692. "php": ">=7.0.0"
  6693. },
  6694. "require-dev": {
  6695. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  6696. },
  6697. "suggest": {
  6698. "ext-intl": "Use Intl for transliterator_transliterate() support"
  6699. },
  6700. "type": "library",
  6701. "autoload": {
  6702. "psr-4": {
  6703. "voku\\": "src/voku/"
  6704. }
  6705. },
  6706. "notification-url": "https://packagist.org/downloads/",
  6707. "license": [
  6708. "MIT"
  6709. ],
  6710. "authors": [
  6711. {
  6712. "name": "Lars Moelleken",
  6713. "homepage": "http://www.moelleken.org/"
  6714. }
  6715. ],
  6716. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  6717. "homepage": "https://github.com/voku/portable-ascii",
  6718. "keywords": [
  6719. "ascii",
  6720. "clean",
  6721. "php"
  6722. ],
  6723. "support": {
  6724. "issues": "https://github.com/voku/portable-ascii/issues",
  6725. "source": "https://github.com/voku/portable-ascii/tree/1.5.6"
  6726. },
  6727. "funding": [
  6728. {
  6729. "url": "https://www.paypal.me/moelleken",
  6730. "type": "custom"
  6731. },
  6732. {
  6733. "url": "https://github.com/voku",
  6734. "type": "github"
  6735. },
  6736. {
  6737. "url": "https://opencollective.com/portable-ascii",
  6738. "type": "open_collective"
  6739. },
  6740. {
  6741. "url": "https://www.patreon.com/voku",
  6742. "type": "patreon"
  6743. },
  6744. {
  6745. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  6746. "type": "tidelift"
  6747. }
  6748. ],
  6749. "time": "2020-11-12T00:07:28+00:00"
  6750. },
  6751. {
  6752. "name": "xhat/payjs",
  6753. "version": "1.5.0",
  6754. "source": {
  6755. "type": "git",
  6756. "url": "https://github.com/xhat/payjs.git",
  6757. "reference": "d15b678f7fb70fc70bafa82c5a7896fceebad364"
  6758. },
  6759. "dist": {
  6760. "type": "zip",
  6761. "url": "https://api.github.com/repos/xhat/payjs/zipball/d15b678f7fb70fc70bafa82c5a7896fceebad364",
  6762. "reference": "d15b678f7fb70fc70bafa82c5a7896fceebad364",
  6763. "shasum": ""
  6764. },
  6765. "type": "library",
  6766. "autoload": {
  6767. "psr-4": {
  6768. "Xhat\\Payjs\\": "src/"
  6769. }
  6770. },
  6771. "notification-url": "https://packagist.org/downloads/",
  6772. "license": [
  6773. "MIT"
  6774. ],
  6775. "authors": [
  6776. {
  6777. "name": "andy",
  6778. "email": "andy@popfeng.com"
  6779. }
  6780. ],
  6781. "description": "本项目是基于 PAYJS 的 API 开发的 Composer Package,可直接用于生产环境 https://payjs.cn",
  6782. "support": {
  6783. "issues": "https://github.com/xhat/payjs/issues",
  6784. "source": "https://github.com/xhat/payjs/tree/1.5.0"
  6785. },
  6786. "funding": [
  6787. {
  6788. "url": "https://payjs.cn/sponsor/dajjxz",
  6789. "type": "custom"
  6790. }
  6791. ],
  6792. "time": "2020-09-11T06:02:42+00:00"
  6793. },
  6794. {
  6795. "name": "zbrettonye/geetest",
  6796. "version": "v1.2.0",
  6797. "source": {
  6798. "type": "git",
  6799. "url": "https://github.com/ZBrettonYe/geetest.git",
  6800. "reference": "ee08e5bee9be831c23df241d3ab75678a8ce5fed"
  6801. },
  6802. "dist": {
  6803. "type": "zip",
  6804. "url": "https://api.github.com/repos/ZBrettonYe/geetest/zipball/ee08e5bee9be831c23df241d3ab75678a8ce5fed",
  6805. "reference": "ee08e5bee9be831c23df241d3ab75678a8ce5fed",
  6806. "shasum": ""
  6807. },
  6808. "require": {
  6809. "ext-json": "*",
  6810. "guzzlehttp/guzzle": "^6.3|^7.0",
  6811. "illuminate/routing": "^6|^7|^8",
  6812. "illuminate/support": "^6|^7|^8",
  6813. "php": "^7.2"
  6814. },
  6815. "require-dev": {
  6816. "mockery/mockery": "^1.3.1",
  6817. "phpunit/phpunit": "^7.5.15|^8.4|^9.0"
  6818. },
  6819. "type": "library",
  6820. "extra": {
  6821. "laravel": {
  6822. "providers": [
  6823. "ZBrettonYe\\Geetest\\GeetestServiceProvider"
  6824. ],
  6825. "aliases": {
  6826. "Geetest": "ZBrettonYe\\Geetest\\Geetest"
  6827. }
  6828. }
  6829. },
  6830. "autoload": {
  6831. "psr-4": {
  6832. "ZBrettonYe\\Geetest\\": "src/"
  6833. }
  6834. },
  6835. "notification-url": "https://packagist.org/downloads/",
  6836. "license": [
  6837. "MIT"
  6838. ],
  6839. "authors": [
  6840. {
  6841. "name": "zbrettonye",
  6842. "email": "monkeyblacktech97@gmail.com"
  6843. }
  6844. ],
  6845. "description": "Geetest Package for Laravel6-8",
  6846. "keywords": [
  6847. "geetest",
  6848. "laravel"
  6849. ],
  6850. "support": {
  6851. "source": "https://github.com/ZBrettonYe/geetest/tree/v1.2.0"
  6852. },
  6853. "time": "2020-10-13T20:15:36+00:00"
  6854. },
  6855. {
  6856. "name": "zbrettonye/hcaptcha",
  6857. "version": "V1.1.0",
  6858. "source": {
  6859. "type": "git",
  6860. "url": "https://github.com/ZBrettonYe/hcaptcha.git",
  6861. "reference": "d84cb1bcf754ada345da8baadf7129dbca67d1ee"
  6862. },
  6863. "dist": {
  6864. "type": "zip",
  6865. "url": "https://api.github.com/repos/ZBrettonYe/hcaptcha/zipball/d84cb1bcf754ada345da8baadf7129dbca67d1ee",
  6866. "reference": "d84cb1bcf754ada345da8baadf7129dbca67d1ee",
  6867. "shasum": ""
  6868. },
  6869. "require": {
  6870. "guzzlehttp/guzzle": "^6.2|^7.0",
  6871. "illuminate/support": "^6|^7|^8",
  6872. "php": "^7.2"
  6873. },
  6874. "require-dev": {
  6875. "phpunit/phpunit": "~4.8"
  6876. },
  6877. "type": "library",
  6878. "extra": {
  6879. "laravel": {
  6880. "providers": [
  6881. "ZBrettonYe\\HCaptcha\\HCaptchaServiceProvider"
  6882. ],
  6883. "aliases": {
  6884. "HCaptcha": "ZBrettonYe\\HCaptcha\\Facades\\HCaptcha"
  6885. }
  6886. }
  6887. },
  6888. "autoload": {
  6889. "psr-4": {
  6890. "ZBrettonYe\\HCaptcha\\": "src/"
  6891. }
  6892. },
  6893. "notification-url": "https://packagist.org/downloads/",
  6894. "license": [
  6895. "MIT"
  6896. ],
  6897. "authors": [
  6898. {
  6899. "name": "zbrettonye",
  6900. "email": "monkeyblacktech97@gmail.com"
  6901. }
  6902. ],
  6903. "description": "hCaptcha For Laravel6~8",
  6904. "keywords": [
  6905. "captcha",
  6906. "hcaptcha",
  6907. "laravel"
  6908. ],
  6909. "support": {
  6910. "source": "https://github.com/ZBrettonYe/hcaptcha/tree/V1.1.0"
  6911. },
  6912. "time": "2020-10-13T21:22:51+00:00"
  6913. },
  6914. {
  6915. "name": "zbrettonye/no-captcha",
  6916. "version": "v1.1.0",
  6917. "source": {
  6918. "type": "git",
  6919. "url": "https://github.com/ZBrettonYe/no-captcha.git",
  6920. "reference": "4cb229bf5fa9f5726eb5a821e9710c5fc8edad28"
  6921. },
  6922. "dist": {
  6923. "type": "zip",
  6924. "url": "https://api.github.com/repos/ZBrettonYe/no-captcha/zipball/4cb229bf5fa9f5726eb5a821e9710c5fc8edad28",
  6925. "reference": "4cb229bf5fa9f5726eb5a821e9710c5fc8edad28",
  6926. "shasum": ""
  6927. },
  6928. "require": {
  6929. "ext-json": "*",
  6930. "guzzlehttp/guzzle": "^6.2|^7.0",
  6931. "illuminate/support": "^6|^7|^8",
  6932. "php": "^7.2"
  6933. },
  6934. "require-dev": {
  6935. "phpunit/phpunit": "~4.8"
  6936. },
  6937. "type": "library",
  6938. "extra": {
  6939. "laravel": {
  6940. "providers": [
  6941. "ZBrettonYe\\NoCaptcha\\NoCaptchaServiceProvider"
  6942. ],
  6943. "aliases": {
  6944. "NoCaptcha": "ZBrettonYe\\NoCaptcha\\Facades\\NoCaptcha"
  6945. }
  6946. }
  6947. },
  6948. "autoload": {
  6949. "psr-4": {
  6950. "ZBrettonYe\\NoCaptcha\\": "src/"
  6951. }
  6952. },
  6953. "notification-url": "https://packagist.org/downloads/",
  6954. "license": [
  6955. "MIT"
  6956. ],
  6957. "authors": [
  6958. {
  6959. "name": "zbrettonye",
  6960. "email": "monkeyblacktech97@gmail.com"
  6961. }
  6962. ],
  6963. "description": "No CAPTCHA reCAPTCHA For Laravel6~8",
  6964. "keywords": [
  6965. "captcha",
  6966. "laravel",
  6967. "no-captcha",
  6968. "recaptcha"
  6969. ],
  6970. "support": {
  6971. "source": "https://github.com/ZBrettonYe/no-captcha/tree/v1.1.0"
  6972. },
  6973. "time": "2020-10-13T21:35:30+00:00"
  6974. },
  6975. {
  6976. "name": "zoujingli/ip2region",
  6977. "version": "v1.0.9",
  6978. "source": {
  6979. "type": "git",
  6980. "url": "https://github.com/zoujingli/ip2region.git",
  6981. "reference": "e48f9122f50dd3b79295e35b4acdd0dcd2608ca8"
  6982. },
  6983. "dist": {
  6984. "type": "zip",
  6985. "url": "https://api.github.com/repos/zoujingli/ip2region/zipball/e48f9122f50dd3b79295e35b4acdd0dcd2608ca8",
  6986. "reference": "e48f9122f50dd3b79295e35b4acdd0dcd2608ca8",
  6987. "shasum": ""
  6988. },
  6989. "require": {
  6990. "php": ">=5.3"
  6991. },
  6992. "type": "library",
  6993. "autoload": {
  6994. "classmap": [
  6995. "Ip2Region.php"
  6996. ]
  6997. },
  6998. "notification-url": "https://packagist.org/downloads/",
  6999. "license": [
  7000. "Apache-2.0"
  7001. ],
  7002. "authors": [
  7003. {
  7004. "name": "Anyon",
  7005. "email": "zoujingli@qq.com",
  7006. "homepage": "http://ctolog.com"
  7007. }
  7008. ],
  7009. "description": "Ip2Region for PHP",
  7010. "homepage": "https://github.com/zoujingli/Ip2Region",
  7011. "keywords": [
  7012. "Ip2Region"
  7013. ],
  7014. "support": {
  7015. "issues": "https://github.com/zoujingli/ip2region/issues",
  7016. "source": "https://github.com/zoujingli/ip2region/tree/v1.0.9"
  7017. },
  7018. "time": "2020-11-06T07:21:55+00:00"
  7019. }
  7020. ],
  7021. "packages-dev": [
  7022. {
  7023. "name": "andrey-helldar/laravel-lang-publisher",
  7024. "version": "v6.2.0",
  7025. "source": {
  7026. "type": "git",
  7027. "url": "https://github.com/andrey-helldar/laravel-lang-publisher.git",
  7028. "reference": "950458ca9d43dbbd0a8ec228a26b670c8f93cf94"
  7029. },
  7030. "dist": {
  7031. "type": "zip",
  7032. "url": "https://api.github.com/repos/andrey-helldar/laravel-lang-publisher/zipball/950458ca9d43dbbd0a8ec228a26b670c8f93cf94",
  7033. "reference": "950458ca9d43dbbd0a8ec228a26b670c8f93cf94",
  7034. "shasum": ""
  7035. },
  7036. "require": {
  7037. "andrey-helldar/pretty-array": "^1.4.2",
  7038. "andrey-helldar/support": "^1.4.1",
  7039. "ext-json": "*",
  7040. "illuminate/console": "^7.0|^8.0",
  7041. "illuminate/support": "^7.0|^8.0",
  7042. "laravel-lang/lang": "^7.0",
  7043. "php": "^7.2.5|^8.0"
  7044. },
  7045. "require-dev": {
  7046. "mockery/mockery": "^1.3.1",
  7047. "orchestra/testbench": "^5.0|^6.0",
  7048. "phpunit/phpunit": "^8.4|^9.0"
  7049. },
  7050. "suggest": {
  7051. "andrey-helldar/lang-translations": "Translation of main messages",
  7052. "laravel/jetstream": "Tailwind scaffolding for the Laravel framework.",
  7053. "symfony/thanks": "Give thanks (in the form of a GitHub) to your fellow PHP package maintainers"
  7054. },
  7055. "type": "library",
  7056. "extra": {
  7057. "laravel": {
  7058. "providers": [
  7059. "Helldar\\LaravelLangPublisher\\ServiceProvider"
  7060. ]
  7061. }
  7062. },
  7063. "autoload": {
  7064. "psr-4": {
  7065. "Helldar\\LaravelLangPublisher\\": "src"
  7066. }
  7067. },
  7068. "notification-url": "https://packagist.org/downloads/",
  7069. "license": [
  7070. "MIT"
  7071. ],
  7072. "authors": [
  7073. {
  7074. "name": "Andrey Helldar",
  7075. "email": "helldar@ai-rus.com"
  7076. }
  7077. ],
  7078. "description": "Publisher lang files for the Laravel Framework + Laravel Jetstream from Laravel-Lang/lang",
  7079. "keywords": [
  7080. "fortify",
  7081. "i18n",
  7082. "jetstream",
  7083. "lang",
  7084. "languages",
  7085. "laravel",
  7086. "locale",
  7087. "localization",
  7088. "lpm",
  7089. "lumen",
  7090. "publisher",
  7091. "trans",
  7092. "translations",
  7093. "validations"
  7094. ],
  7095. "support": {
  7096. "issues": "https://github.com/andrey-helldar/laravel-lang-publisher/issues",
  7097. "source": "https://github.com/andrey-helldar/laravel-lang-publisher"
  7098. },
  7099. "funding": [
  7100. {
  7101. "url": "https://money.yandex.ru/to/410012115955701",
  7102. "type": "custom"
  7103. },
  7104. {
  7105. "url": "https://paypal.me/helldar",
  7106. "type": "custom"
  7107. }
  7108. ],
  7109. "time": "2020-11-30T10:15:29+00:00"
  7110. },
  7111. {
  7112. "name": "andrey-helldar/pretty-array",
  7113. "version": "v1.5.0",
  7114. "source": {
  7115. "type": "git",
  7116. "url": "https://github.com/andrey-helldar/pretty-array.git",
  7117. "reference": "925db552d4f7f9c0a31cbce0f58518260d80e543"
  7118. },
  7119. "dist": {
  7120. "type": "zip",
  7121. "url": "https://api.github.com/repos/andrey-helldar/pretty-array/zipball/925db552d4f7f9c0a31cbce0f58518260d80e543",
  7122. "reference": "925db552d4f7f9c0a31cbce0f58518260d80e543",
  7123. "shasum": ""
  7124. },
  7125. "require": {
  7126. "andrey-helldar/support": "^1.16.0",
  7127. "ext-dom": "*",
  7128. "ext-mbstring": "*",
  7129. "php": "^7.1.3|^8.0"
  7130. },
  7131. "require-dev": {
  7132. "phpstan/phpstan": "^0.12.7",
  7133. "phpunit/phpunit": "^7.0|^8.0"
  7134. },
  7135. "suggest": {
  7136. "symfony/thanks": "Give thanks (in the form of a GitHub) to your fellow PHP package maintainers"
  7137. },
  7138. "type": "library",
  7139. "autoload": {
  7140. "psr-4": {
  7141. "Helldar\\PrettyArray\\": "src/"
  7142. }
  7143. },
  7144. "notification-url": "https://packagist.org/downloads/",
  7145. "license": [
  7146. "MIT"
  7147. ],
  7148. "authors": [
  7149. {
  7150. "name": "Andrey Helldar",
  7151. "email": "helldar@ai-rus.com"
  7152. }
  7153. ],
  7154. "description": "Simple conversion of an array to a pretty view.",
  7155. "keywords": [
  7156. "array",
  7157. "pretty",
  7158. "pretty array"
  7159. ],
  7160. "support": {
  7161. "issues": "https://github.com/andrey-helldar/pretty-array/issues",
  7162. "source": "https://github.com/andrey-helldar/pretty-array"
  7163. },
  7164. "funding": [
  7165. {
  7166. "url": "https://money.yandex.ru/to/410012115955701",
  7167. "type": "custom"
  7168. },
  7169. {
  7170. "url": "https://paypal.me/helldar",
  7171. "type": "custom"
  7172. }
  7173. ],
  7174. "time": "2020-11-30T10:28:20+00:00"
  7175. },
  7176. {
  7177. "name": "andrey-helldar/support",
  7178. "version": "v1.26.0",
  7179. "source": {
  7180. "type": "git",
  7181. "url": "https://github.com/andrey-helldar/support.git",
  7182. "reference": "608895d7324d44167a97a88ebec766e99dee92c7"
  7183. },
  7184. "dist": {
  7185. "type": "zip",
  7186. "url": "https://api.github.com/repos/andrey-helldar/support/zipball/608895d7324d44167a97a88ebec766e99dee92c7",
  7187. "reference": "608895d7324d44167a97a88ebec766e99dee92c7",
  7188. "shasum": ""
  7189. },
  7190. "require": {
  7191. "ext-ctype": "*",
  7192. "ext-dom": "*",
  7193. "ext-json": "*",
  7194. "ext-mbstring": "*",
  7195. "php": "^7.1.3|^8.0"
  7196. },
  7197. "require-dev": {
  7198. "ext-bcmath": "*",
  7199. "phpunit/phpunit": "^9.0"
  7200. },
  7201. "suggest": {
  7202. "andrey-helldar/laravel-support": "Various helper files for the Laravel and Lumen frameworks",
  7203. "ext-bcmath": "Require the extension if you will be using Helldar\\Support\\Facades\\Digit.",
  7204. "symfony/thanks": "Give thanks (in the form of a GitHub) to your fellow PHP package maintainers"
  7205. },
  7206. "type": "library",
  7207. "extra": {
  7208. "laravel": {
  7209. "providers": [
  7210. "Helldar\\Support\\ServiceProvider"
  7211. ]
  7212. }
  7213. },
  7214. "autoload": {
  7215. "psr-4": {
  7216. "Helldar\\Support\\": "src/"
  7217. },
  7218. "files": [
  7219. "src/helpers/digit.php",
  7220. "src/helpers/dumper.php",
  7221. "src/helpers/http.php",
  7222. "src/helpers/strings.php"
  7223. ]
  7224. },
  7225. "notification-url": "https://packagist.org/downloads/",
  7226. "license": [
  7227. "MIT"
  7228. ],
  7229. "authors": [
  7230. {
  7231. "name": "Andrey Helldar",
  7232. "email": "helldar@ai-rus.com"
  7233. }
  7234. ],
  7235. "description": "Support package is a collection of helpers and tools for projects.",
  7236. "keywords": [
  7237. "framework",
  7238. "laravel",
  7239. "support",
  7240. "symfony",
  7241. "yii",
  7242. "yii2"
  7243. ],
  7244. "support": {
  7245. "issues": "https://github.com/andrey-helldar/support/issues",
  7246. "source": "https://github.com/andrey-helldar/support"
  7247. },
  7248. "funding": [
  7249. {
  7250. "url": "https://money.yandex.ru/to/410012115955701",
  7251. "type": "custom"
  7252. },
  7253. {
  7254. "url": "https://paypal.me/helldar",
  7255. "type": "custom"
  7256. }
  7257. ],
  7258. "time": "2020-11-30T12:10:47+00:00"
  7259. },
  7260. {
  7261. "name": "arcanedev/laravel-lang",
  7262. "version": "8.0.0",
  7263. "source": {
  7264. "type": "git",
  7265. "url": "https://github.com/ARCANEDEV/LaravelLang.git",
  7266. "reference": "8b1711a37bbab081973920ad19a729dc0df2ca4b"
  7267. },
  7268. "dist": {
  7269. "type": "zip",
  7270. "url": "https://api.github.com/repos/ARCANEDEV/LaravelLang/zipball/8b1711a37bbab081973920ad19a729dc0df2ca4b",
  7271. "reference": "8b1711a37bbab081973920ad19a729dc0df2ca4b",
  7272. "shasum": ""
  7273. },
  7274. "require": {
  7275. "arcanedev/support": "^7.1.2",
  7276. "caouecs/laravel-lang": "^6.0",
  7277. "php": "^7.2.5"
  7278. },
  7279. "require-dev": {
  7280. "mockery/mockery": "^1.3.1",
  7281. "orchestra/testbench": "^5.0",
  7282. "phpunit/phpunit": "^8.5|^9.0"
  7283. },
  7284. "type": "library",
  7285. "extra": {
  7286. "laravel": {
  7287. "providers": [
  7288. "Arcanedev\\LaravelLang\\LaravelLangServiceProvider",
  7289. "Arcanedev\\LaravelLang\\Providers\\DeferredServicesProvider",
  7290. "Arcanedev\\LaravelLang\\Providers\\TranslationServiceProvider"
  7291. ]
  7292. }
  7293. },
  7294. "autoload": {
  7295. "psr-4": {
  7296. "Arcanedev\\LaravelLang\\": "src/"
  7297. }
  7298. },
  7299. "notification-url": "https://packagist.org/downloads/",
  7300. "license": [
  7301. "MIT"
  7302. ],
  7303. "authors": [
  7304. {
  7305. "name": "ARCANEDEV",
  7306. "email": "arcanedev.maroc@gmail.com",
  7307. "homepage": "https://github.com/arcanedev-maroc",
  7308. "role": "Developer"
  7309. }
  7310. ],
  7311. "description": "Translations manager and checker for Laravel 5 based on 'caouecs/laravel4-lang' package.",
  7312. "homepage": "https://github.com/ARCANEDEV/LaravelLang",
  7313. "keywords": [
  7314. "arcanedev",
  7315. "lang",
  7316. "languages",
  7317. "laravel",
  7318. "localisation",
  7319. "localization",
  7320. "trans",
  7321. "translations",
  7322. "validations"
  7323. ],
  7324. "support": {
  7325. "issues": "https://github.com/ARCANEDEV/LaravelLang/issues",
  7326. "source": "https://github.com/ARCANEDEV/LaravelLang/tree/master"
  7327. },
  7328. "time": "2020-03-21T21:29:29+00:00"
  7329. },
  7330. {
  7331. "name": "arcanedev/support",
  7332. "version": "7.1.2",
  7333. "source": {
  7334. "type": "git",
  7335. "url": "https://github.com/ARCANEDEV/Support.git",
  7336. "reference": "7e4199d30f04c611ba5d895e663f111c217ff5a3"
  7337. },
  7338. "dist": {
  7339. "type": "zip",
  7340. "url": "https://api.github.com/repos/ARCANEDEV/Support/zipball/7e4199d30f04c611ba5d895e663f111c217ff5a3",
  7341. "reference": "7e4199d30f04c611ba5d895e663f111c217ff5a3",
  7342. "shasum": ""
  7343. },
  7344. "require": {
  7345. "illuminate/filesystem": "^7.0",
  7346. "illuminate/support": "^7.0",
  7347. "php": "^7.2.5"
  7348. },
  7349. "require-dev": {
  7350. "orchestra/testbench": "^5.0",
  7351. "phpunit/phpunit": "^8.0|^9.0"
  7352. },
  7353. "type": "library",
  7354. "extra": {
  7355. "branch-alias": {
  7356. "dev-master": "7.x-dev"
  7357. }
  7358. },
  7359. "autoload": {
  7360. "psr-4": {
  7361. "Arcanedev\\Support\\": "src/"
  7362. },
  7363. "files": [
  7364. "helpers.php"
  7365. ]
  7366. },
  7367. "notification-url": "https://packagist.org/downloads/",
  7368. "license": [
  7369. "MIT"
  7370. ],
  7371. "authors": [
  7372. {
  7373. "name": "ARCANEDEV",
  7374. "email": "arcanedev.maroc@gmail.com",
  7375. "homepage": "https://github.com/arcanedev-maroc"
  7376. }
  7377. ],
  7378. "description": "ARCANEDEV Support Helpers",
  7379. "homepage": "https://github.com/ARCANEDEV/Support",
  7380. "keywords": [
  7381. "arcanedev",
  7382. "arcanesoft",
  7383. "laravel",
  7384. "support"
  7385. ],
  7386. "support": {
  7387. "issues": "https://github.com/ARCANEDEV/Support/issues",
  7388. "source": "https://github.com/ARCANEDEV/Support/tree/7.1.2"
  7389. },
  7390. "time": "2020-03-12T09:28:19+00:00"
  7391. },
  7392. {
  7393. "name": "barryvdh/laravel-debugbar",
  7394. "version": "v3.5.1",
  7395. "source": {
  7396. "type": "git",
  7397. "url": "https://github.com/barryvdh/laravel-debugbar.git",
  7398. "reference": "233c10688f4c1a6e66ed2ef123038b1363d1bedc"
  7399. },
  7400. "dist": {
  7401. "type": "zip",
  7402. "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/233c10688f4c1a6e66ed2ef123038b1363d1bedc",
  7403. "reference": "233c10688f4c1a6e66ed2ef123038b1363d1bedc",
  7404. "shasum": ""
  7405. },
  7406. "require": {
  7407. "illuminate/routing": "^6|^7|^8",
  7408. "illuminate/session": "^6|^7|^8",
  7409. "illuminate/support": "^6|^7|^8",
  7410. "maximebf/debugbar": "^1.16.3",
  7411. "php": ">=7.2",
  7412. "symfony/debug": "^4.3|^5",
  7413. "symfony/finder": "^4.3|^5"
  7414. },
  7415. "require-dev": {
  7416. "orchestra/testbench-dusk": "^4|^5|^6",
  7417. "phpunit/phpunit": "^8.5|^9.0",
  7418. "squizlabs/php_codesniffer": "^3.5"
  7419. },
  7420. "type": "library",
  7421. "extra": {
  7422. "branch-alias": {
  7423. "dev-master": "3.5-dev"
  7424. },
  7425. "laravel": {
  7426. "providers": [
  7427. "Barryvdh\\Debugbar\\ServiceProvider"
  7428. ],
  7429. "aliases": {
  7430. "Debugbar": "Barryvdh\\Debugbar\\Facade"
  7431. }
  7432. }
  7433. },
  7434. "autoload": {
  7435. "psr-4": {
  7436. "Barryvdh\\Debugbar\\": "src/"
  7437. },
  7438. "files": [
  7439. "src/helpers.php"
  7440. ]
  7441. },
  7442. "notification-url": "https://packagist.org/downloads/",
  7443. "license": [
  7444. "MIT"
  7445. ],
  7446. "authors": [
  7447. {
  7448. "name": "Barry vd. Heuvel",
  7449. "email": "barryvdh@gmail.com"
  7450. }
  7451. ],
  7452. "description": "PHP Debugbar integration for Laravel",
  7453. "keywords": [
  7454. "debug",
  7455. "debugbar",
  7456. "laravel",
  7457. "profiler",
  7458. "webprofiler"
  7459. ],
  7460. "support": {
  7461. "issues": "https://github.com/barryvdh/laravel-debugbar/issues",
  7462. "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.5.1"
  7463. },
  7464. "funding": [
  7465. {
  7466. "url": "https://github.com/barryvdh",
  7467. "type": "github"
  7468. }
  7469. ],
  7470. "time": "2020-09-07T19:32:39+00:00"
  7471. },
  7472. {
  7473. "name": "barryvdh/laravel-ide-helper",
  7474. "version": "v2.8.1",
  7475. "source": {
  7476. "type": "git",
  7477. "url": "https://github.com/barryvdh/laravel-ide-helper.git",
  7478. "reference": "affa55122f83575888d4ebf1728992686e8223de"
  7479. },
  7480. "dist": {
  7481. "type": "zip",
  7482. "url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/affa55122f83575888d4ebf1728992686e8223de",
  7483. "reference": "affa55122f83575888d4ebf1728992686e8223de",
  7484. "shasum": ""
  7485. },
  7486. "require": {
  7487. "barryvdh/reflection-docblock": "^2.0.6",
  7488. "composer/composer": "^1.6 || ^2.0@dev",
  7489. "doctrine/dbal": "~2.3",
  7490. "ext-json": "*",
  7491. "illuminate/console": "^6 || ^7 || ^8",
  7492. "illuminate/filesystem": "^6 || ^7 || ^8",
  7493. "illuminate/support": "^6 || ^7 || ^8",
  7494. "php": ">=7.2",
  7495. "phpdocumentor/type-resolver": "^1.1.0"
  7496. },
  7497. "require-dev": {
  7498. "friendsofphp/php-cs-fixer": "^2",
  7499. "illuminate/config": "^6 || ^7 || ^8",
  7500. "illuminate/view": "^6 || ^7 || ^8",
  7501. "mockery/mockery": "^1.3",
  7502. "orchestra/testbench": "^4 || ^5 || ^6",
  7503. "phpunit/phpunit": "^8.5 || ^9",
  7504. "spatie/phpunit-snapshot-assertions": "^1.4 || ^2.2 || ^3",
  7505. "vimeo/psalm": "^3.12"
  7506. },
  7507. "type": "library",
  7508. "extra": {
  7509. "branch-alias": {
  7510. "dev-master": "2.8-dev"
  7511. },
  7512. "laravel": {
  7513. "providers": [
  7514. "Barryvdh\\LaravelIdeHelper\\IdeHelperServiceProvider"
  7515. ]
  7516. }
  7517. },
  7518. "autoload": {
  7519. "psr-4": {
  7520. "Barryvdh\\LaravelIdeHelper\\": "src"
  7521. }
  7522. },
  7523. "notification-url": "https://packagist.org/downloads/",
  7524. "license": [
  7525. "MIT"
  7526. ],
  7527. "authors": [
  7528. {
  7529. "name": "Barry vd. Heuvel",
  7530. "email": "barryvdh@gmail.com"
  7531. }
  7532. ],
  7533. "description": "Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.",
  7534. "keywords": [
  7535. "autocomplete",
  7536. "codeintel",
  7537. "helper",
  7538. "ide",
  7539. "laravel",
  7540. "netbeans",
  7541. "phpdoc",
  7542. "phpstorm",
  7543. "sublime"
  7544. ],
  7545. "support": {
  7546. "issues": "https://github.com/barryvdh/laravel-ide-helper/issues",
  7547. "source": "https://github.com/barryvdh/laravel-ide-helper/tree/master"
  7548. },
  7549. "funding": [
  7550. {
  7551. "url": "https://github.com/barryvdh",
  7552. "type": "github"
  7553. }
  7554. ],
  7555. "time": "2020-09-07T07:36:37+00:00"
  7556. },
  7557. {
  7558. "name": "barryvdh/reflection-docblock",
  7559. "version": "v2.0.6",
  7560. "source": {
  7561. "type": "git",
  7562. "url": "https://github.com/barryvdh/ReflectionDocBlock.git",
  7563. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16"
  7564. },
  7565. "dist": {
  7566. "type": "zip",
  7567. "url": "https://api.github.com/repos/barryvdh/ReflectionDocBlock/zipball/6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  7568. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  7569. "shasum": ""
  7570. },
  7571. "require": {
  7572. "php": ">=5.3.3"
  7573. },
  7574. "require-dev": {
  7575. "phpunit/phpunit": "~4.0,<4.5"
  7576. },
  7577. "suggest": {
  7578. "dflydev/markdown": "~1.0",
  7579. "erusev/parsedown": "~1.0"
  7580. },
  7581. "type": "library",
  7582. "extra": {
  7583. "branch-alias": {
  7584. "dev-master": "2.0.x-dev"
  7585. }
  7586. },
  7587. "autoload": {
  7588. "psr-0": {
  7589. "Barryvdh": [
  7590. "src/"
  7591. ]
  7592. }
  7593. },
  7594. "notification-url": "https://packagist.org/downloads/",
  7595. "license": [
  7596. "MIT"
  7597. ],
  7598. "authors": [
  7599. {
  7600. "name": "Mike van Riel",
  7601. "email": "mike.vanriel@naenius.com"
  7602. }
  7603. ],
  7604. "support": {
  7605. "source": "https://github.com/barryvdh/ReflectionDocBlock/tree/v2.0.6"
  7606. },
  7607. "time": "2018-12-13T10:34:14+00:00"
  7608. },
  7609. {
  7610. "name": "caouecs/laravel-lang",
  7611. "version": "6.1.4",
  7612. "source": {
  7613. "type": "git",
  7614. "url": "https://github.com/caouecs/lang.git",
  7615. "reference": "18a7845e813e737a56a7f164301d5014b536950c"
  7616. },
  7617. "dist": {
  7618. "type": "zip",
  7619. "url": "https://api.github.com/repos/caouecs/lang/zipball/18a7845e813e737a56a7f164301d5014b536950c",
  7620. "reference": "18a7845e813e737a56a7f164301d5014b536950c",
  7621. "shasum": ""
  7622. },
  7623. "require": {
  7624. "ext-json": "*"
  7625. },
  7626. "suggest": {
  7627. "andrey-helldar/laravel-lang-publisher": "Easy installation and update of translation files for your project",
  7628. "arcanedev/laravel-lang": "Translations manager and checker for Laravel 5",
  7629. "overtrue/laravel-lang": "Command to add languages in your project"
  7630. },
  7631. "type": "library",
  7632. "notification-url": "https://packagist.org/downloads/",
  7633. "license": [
  7634. "MIT"
  7635. ],
  7636. "authors": [
  7637. {
  7638. "name": "caouecs",
  7639. "email": "caouecs@caouecs.net"
  7640. }
  7641. ],
  7642. "description": "Languages for Laravel",
  7643. "keywords": [
  7644. "lang",
  7645. "languages",
  7646. "laravel",
  7647. "lpm"
  7648. ],
  7649. "support": {
  7650. "source": "https://github.com/caouecs/lang/tree/6.1.4"
  7651. },
  7652. "abandoned": "https://github.com/Laravel-Lang/lang",
  7653. "time": "2020-07-13T14:35:32+00:00"
  7654. },
  7655. {
  7656. "name": "composer/composer",
  7657. "version": "2.0.8",
  7658. "source": {
  7659. "type": "git",
  7660. "url": "https://github.com/composer/composer.git",
  7661. "reference": "62139b2806178adb979d76bd3437534a1a9fd490"
  7662. },
  7663. "dist": {
  7664. "type": "zip",
  7665. "url": "https://api.github.com/repos/composer/composer/zipball/62139b2806178adb979d76bd3437534a1a9fd490",
  7666. "reference": "62139b2806178adb979d76bd3437534a1a9fd490",
  7667. "shasum": ""
  7668. },
  7669. "require": {
  7670. "composer/ca-bundle": "^1.0",
  7671. "composer/semver": "^3.0",
  7672. "composer/spdx-licenses": "^1.2",
  7673. "composer/xdebug-handler": "^1.1",
  7674. "justinrainbow/json-schema": "^5.2.10",
  7675. "php": "^5.3.2 || ^7.0 || ^8.0",
  7676. "psr/log": "^1.0",
  7677. "react/promise": "^1.2 || ^2.7",
  7678. "seld/jsonlint": "^1.4",
  7679. "seld/phar-utils": "^1.0",
  7680. "symfony/console": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0",
  7681. "symfony/filesystem": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0",
  7682. "symfony/finder": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0",
  7683. "symfony/process": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0"
  7684. },
  7685. "require-dev": {
  7686. "phpspec/prophecy": "^1.10",
  7687. "symfony/phpunit-bridge": "^4.2 || ^5.0"
  7688. },
  7689. "suggest": {
  7690. "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages",
  7691. "ext-zip": "Enabling the zip extension allows you to unzip archives",
  7692. "ext-zlib": "Allow gzip compression of HTTP requests"
  7693. },
  7694. "bin": [
  7695. "bin/composer"
  7696. ],
  7697. "type": "library",
  7698. "extra": {
  7699. "branch-alias": {
  7700. "dev-master": "2.0-dev"
  7701. }
  7702. },
  7703. "autoload": {
  7704. "psr-4": {
  7705. "Composer\\": "src/Composer"
  7706. }
  7707. },
  7708. "notification-url": "https://packagist.org/downloads/",
  7709. "license": [
  7710. "MIT"
  7711. ],
  7712. "authors": [
  7713. {
  7714. "name": "Nils Adermann",
  7715. "email": "naderman@naderman.de",
  7716. "homepage": "https://www.naderman.de"
  7717. },
  7718. {
  7719. "name": "Jordi Boggiano",
  7720. "email": "j.boggiano@seld.be",
  7721. "homepage": "https://seld.be"
  7722. }
  7723. ],
  7724. "description": "Composer helps you declare, manage and install dependencies of PHP projects. It ensures you have the right stack everywhere.",
  7725. "homepage": "https://getcomposer.org/",
  7726. "keywords": [
  7727. "autoload",
  7728. "dependency",
  7729. "package"
  7730. ],
  7731. "support": {
  7732. "irc": "irc://irc.freenode.org/composer",
  7733. "issues": "https://github.com/composer/composer/issues",
  7734. "source": "https://github.com/composer/composer/tree/2.0.8"
  7735. },
  7736. "funding": [
  7737. {
  7738. "url": "https://packagist.com",
  7739. "type": "custom"
  7740. },
  7741. {
  7742. "url": "https://github.com/composer",
  7743. "type": "github"
  7744. },
  7745. {
  7746. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7747. "type": "tidelift"
  7748. }
  7749. ],
  7750. "time": "2020-12-03T16:20:39+00:00"
  7751. },
  7752. {
  7753. "name": "composer/semver",
  7754. "version": "3.2.4",
  7755. "source": {
  7756. "type": "git",
  7757. "url": "https://github.com/composer/semver.git",
  7758. "reference": "a02fdf930a3c1c3ed3a49b5f63859c0c20e10464"
  7759. },
  7760. "dist": {
  7761. "type": "zip",
  7762. "url": "https://api.github.com/repos/composer/semver/zipball/a02fdf930a3c1c3ed3a49b5f63859c0c20e10464",
  7763. "reference": "a02fdf930a3c1c3ed3a49b5f63859c0c20e10464",
  7764. "shasum": ""
  7765. },
  7766. "require": {
  7767. "php": "^5.3.2 || ^7.0 || ^8.0"
  7768. },
  7769. "require-dev": {
  7770. "phpstan/phpstan": "^0.12.54",
  7771. "symfony/phpunit-bridge": "^4.2 || ^5"
  7772. },
  7773. "type": "library",
  7774. "extra": {
  7775. "branch-alias": {
  7776. "dev-main": "3.x-dev"
  7777. }
  7778. },
  7779. "autoload": {
  7780. "psr-4": {
  7781. "Composer\\Semver\\": "src"
  7782. }
  7783. },
  7784. "notification-url": "https://packagist.org/downloads/",
  7785. "license": [
  7786. "MIT"
  7787. ],
  7788. "authors": [
  7789. {
  7790. "name": "Nils Adermann",
  7791. "email": "naderman@naderman.de",
  7792. "homepage": "http://www.naderman.de"
  7793. },
  7794. {
  7795. "name": "Jordi Boggiano",
  7796. "email": "j.boggiano@seld.be",
  7797. "homepage": "http://seld.be"
  7798. },
  7799. {
  7800. "name": "Rob Bast",
  7801. "email": "rob.bast@gmail.com",
  7802. "homepage": "http://robbast.nl"
  7803. }
  7804. ],
  7805. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  7806. "keywords": [
  7807. "semantic",
  7808. "semver",
  7809. "validation",
  7810. "versioning"
  7811. ],
  7812. "support": {
  7813. "irc": "irc://irc.freenode.org/composer",
  7814. "issues": "https://github.com/composer/semver/issues",
  7815. "source": "https://github.com/composer/semver/tree/3.2.4"
  7816. },
  7817. "funding": [
  7818. {
  7819. "url": "https://packagist.com",
  7820. "type": "custom"
  7821. },
  7822. {
  7823. "url": "https://github.com/composer",
  7824. "type": "github"
  7825. },
  7826. {
  7827. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7828. "type": "tidelift"
  7829. }
  7830. ],
  7831. "time": "2020-11-13T08:59:24+00:00"
  7832. },
  7833. {
  7834. "name": "composer/spdx-licenses",
  7835. "version": "1.5.5",
  7836. "source": {
  7837. "type": "git",
  7838. "url": "https://github.com/composer/spdx-licenses.git",
  7839. "reference": "de30328a7af8680efdc03e396aad24befd513200"
  7840. },
  7841. "dist": {
  7842. "type": "zip",
  7843. "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/de30328a7af8680efdc03e396aad24befd513200",
  7844. "reference": "de30328a7af8680efdc03e396aad24befd513200",
  7845. "shasum": ""
  7846. },
  7847. "require": {
  7848. "php": "^5.3.2 || ^7.0 || ^8.0"
  7849. },
  7850. "require-dev": {
  7851. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 7"
  7852. },
  7853. "type": "library",
  7854. "extra": {
  7855. "branch-alias": {
  7856. "dev-main": "1.x-dev"
  7857. }
  7858. },
  7859. "autoload": {
  7860. "psr-4": {
  7861. "Composer\\Spdx\\": "src"
  7862. }
  7863. },
  7864. "notification-url": "https://packagist.org/downloads/",
  7865. "license": [
  7866. "MIT"
  7867. ],
  7868. "authors": [
  7869. {
  7870. "name": "Nils Adermann",
  7871. "email": "naderman@naderman.de",
  7872. "homepage": "http://www.naderman.de"
  7873. },
  7874. {
  7875. "name": "Jordi Boggiano",
  7876. "email": "j.boggiano@seld.be",
  7877. "homepage": "http://seld.be"
  7878. },
  7879. {
  7880. "name": "Rob Bast",
  7881. "email": "rob.bast@gmail.com",
  7882. "homepage": "http://robbast.nl"
  7883. }
  7884. ],
  7885. "description": "SPDX licenses list and validation library.",
  7886. "keywords": [
  7887. "license",
  7888. "spdx",
  7889. "validator"
  7890. ],
  7891. "support": {
  7892. "irc": "irc://irc.freenode.org/composer",
  7893. "issues": "https://github.com/composer/spdx-licenses/issues",
  7894. "source": "https://github.com/composer/spdx-licenses/tree/1.5.5"
  7895. },
  7896. "funding": [
  7897. {
  7898. "url": "https://packagist.com",
  7899. "type": "custom"
  7900. },
  7901. {
  7902. "url": "https://github.com/composer",
  7903. "type": "github"
  7904. },
  7905. {
  7906. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7907. "type": "tidelift"
  7908. }
  7909. ],
  7910. "time": "2020-12-03T16:04:16+00:00"
  7911. },
  7912. {
  7913. "name": "composer/xdebug-handler",
  7914. "version": "1.4.5",
  7915. "source": {
  7916. "type": "git",
  7917. "url": "https://github.com/composer/xdebug-handler.git",
  7918. "reference": "f28d44c286812c714741478d968104c5e604a1d4"
  7919. },
  7920. "dist": {
  7921. "type": "zip",
  7922. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/f28d44c286812c714741478d968104c5e604a1d4",
  7923. "reference": "f28d44c286812c714741478d968104c5e604a1d4",
  7924. "shasum": ""
  7925. },
  7926. "require": {
  7927. "php": "^5.3.2 || ^7.0 || ^8.0",
  7928. "psr/log": "^1.0"
  7929. },
  7930. "require-dev": {
  7931. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8"
  7932. },
  7933. "type": "library",
  7934. "autoload": {
  7935. "psr-4": {
  7936. "Composer\\XdebugHandler\\": "src"
  7937. }
  7938. },
  7939. "notification-url": "https://packagist.org/downloads/",
  7940. "license": [
  7941. "MIT"
  7942. ],
  7943. "authors": [
  7944. {
  7945. "name": "John Stevenson",
  7946. "email": "john-stevenson@blueyonder.co.uk"
  7947. }
  7948. ],
  7949. "description": "Restarts a process without Xdebug.",
  7950. "keywords": [
  7951. "Xdebug",
  7952. "performance"
  7953. ],
  7954. "support": {
  7955. "irc": "irc://irc.freenode.org/composer",
  7956. "issues": "https://github.com/composer/xdebug-handler/issues",
  7957. "source": "https://github.com/composer/xdebug-handler/tree/1.4.5"
  7958. },
  7959. "funding": [
  7960. {
  7961. "url": "https://packagist.com",
  7962. "type": "custom"
  7963. },
  7964. {
  7965. "url": "https://github.com/composer",
  7966. "type": "github"
  7967. },
  7968. {
  7969. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7970. "type": "tidelift"
  7971. }
  7972. ],
  7973. "time": "2020-11-13T08:04:11+00:00"
  7974. },
  7975. {
  7976. "name": "doctrine/instantiator",
  7977. "version": "1.4.0",
  7978. "source": {
  7979. "type": "git",
  7980. "url": "https://github.com/doctrine/instantiator.git",
  7981. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
  7982. },
  7983. "dist": {
  7984. "type": "zip",
  7985. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
  7986. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
  7987. "shasum": ""
  7988. },
  7989. "require": {
  7990. "php": "^7.1 || ^8.0"
  7991. },
  7992. "require-dev": {
  7993. "doctrine/coding-standard": "^8.0",
  7994. "ext-pdo": "*",
  7995. "ext-phar": "*",
  7996. "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
  7997. "phpstan/phpstan": "^0.12",
  7998. "phpstan/phpstan-phpunit": "^0.12",
  7999. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  8000. },
  8001. "type": "library",
  8002. "autoload": {
  8003. "psr-4": {
  8004. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  8005. }
  8006. },
  8007. "notification-url": "https://packagist.org/downloads/",
  8008. "license": [
  8009. "MIT"
  8010. ],
  8011. "authors": [
  8012. {
  8013. "name": "Marco Pivetta",
  8014. "email": "ocramius@gmail.com",
  8015. "homepage": "https://ocramius.github.io/"
  8016. }
  8017. ],
  8018. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8019. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  8020. "keywords": [
  8021. "constructor",
  8022. "instantiate"
  8023. ],
  8024. "support": {
  8025. "issues": "https://github.com/doctrine/instantiator/issues",
  8026. "source": "https://github.com/doctrine/instantiator/tree/1.4.0"
  8027. },
  8028. "funding": [
  8029. {
  8030. "url": "https://www.doctrine-project.org/sponsorship.html",
  8031. "type": "custom"
  8032. },
  8033. {
  8034. "url": "https://www.patreon.com/phpdoctrine",
  8035. "type": "patreon"
  8036. },
  8037. {
  8038. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  8039. "type": "tidelift"
  8040. }
  8041. ],
  8042. "time": "2020-11-10T18:47:58+00:00"
  8043. },
  8044. {
  8045. "name": "facade/flare-client-php",
  8046. "version": "1.3.7",
  8047. "source": {
  8048. "type": "git",
  8049. "url": "https://github.com/facade/flare-client-php.git",
  8050. "reference": "fd688d3c06658f2b3b5f7bb19f051ee4ddf02492"
  8051. },
  8052. "dist": {
  8053. "type": "zip",
  8054. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/fd688d3c06658f2b3b5f7bb19f051ee4ddf02492",
  8055. "reference": "fd688d3c06658f2b3b5f7bb19f051ee4ddf02492",
  8056. "shasum": ""
  8057. },
  8058. "require": {
  8059. "facade/ignition-contracts": "~1.0",
  8060. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  8061. "php": "^7.1|^8.0",
  8062. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  8063. "symfony/mime": "^3.4|^4.0|^5.1",
  8064. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  8065. },
  8066. "require-dev": {
  8067. "friendsofphp/php-cs-fixer": "^2.14",
  8068. "phpunit/phpunit": "^7.5.16",
  8069. "spatie/phpunit-snapshot-assertions": "^2.0"
  8070. },
  8071. "type": "library",
  8072. "extra": {
  8073. "branch-alias": {
  8074. "dev-master": "1.0-dev"
  8075. }
  8076. },
  8077. "autoload": {
  8078. "psr-4": {
  8079. "Facade\\FlareClient\\": "src"
  8080. },
  8081. "files": [
  8082. "src/helpers.php"
  8083. ]
  8084. },
  8085. "notification-url": "https://packagist.org/downloads/",
  8086. "license": [
  8087. "MIT"
  8088. ],
  8089. "description": "Send PHP errors to Flare",
  8090. "homepage": "https://github.com/facade/flare-client-php",
  8091. "keywords": [
  8092. "exception",
  8093. "facade",
  8094. "flare",
  8095. "reporting"
  8096. ],
  8097. "support": {
  8098. "issues": "https://github.com/facade/flare-client-php/issues",
  8099. "source": "https://github.com/facade/flare-client-php/tree/1.3.7"
  8100. },
  8101. "funding": [
  8102. {
  8103. "url": "https://github.com/spatie",
  8104. "type": "github"
  8105. }
  8106. ],
  8107. "time": "2020-10-21T16:02:39+00:00"
  8108. },
  8109. {
  8110. "name": "facade/ignition",
  8111. "version": "2.5.2",
  8112. "source": {
  8113. "type": "git",
  8114. "url": "https://github.com/facade/ignition.git",
  8115. "reference": "08668034beb185fa2ac6f09b1034eaa440952ace"
  8116. },
  8117. "dist": {
  8118. "type": "zip",
  8119. "url": "https://api.github.com/repos/facade/ignition/zipball/08668034beb185fa2ac6f09b1034eaa440952ace",
  8120. "reference": "08668034beb185fa2ac6f09b1034eaa440952ace",
  8121. "shasum": ""
  8122. },
  8123. "require": {
  8124. "ext-json": "*",
  8125. "ext-mbstring": "*",
  8126. "facade/flare-client-php": "^1.3.7",
  8127. "facade/ignition-contracts": "^1.0.2",
  8128. "filp/whoops": "^2.4",
  8129. "illuminate/support": "^7.0|^8.0",
  8130. "monolog/monolog": "^2.0",
  8131. "php": "^7.2.5|^8.0",
  8132. "symfony/console": "^5.0",
  8133. "symfony/var-dumper": "^5.0"
  8134. },
  8135. "require-dev": {
  8136. "friendsofphp/php-cs-fixer": "^2.14",
  8137. "mockery/mockery": "^1.3",
  8138. "orchestra/testbench": "^5.0|^6.0",
  8139. "psalm/plugin-laravel": "^1.2"
  8140. },
  8141. "suggest": {
  8142. "laravel/telescope": "^3.1"
  8143. },
  8144. "type": "library",
  8145. "extra": {
  8146. "branch-alias": {
  8147. "dev-master": "2.x-dev"
  8148. },
  8149. "laravel": {
  8150. "providers": [
  8151. "Facade\\Ignition\\IgnitionServiceProvider"
  8152. ],
  8153. "aliases": {
  8154. "Flare": "Facade\\Ignition\\Facades\\Flare"
  8155. }
  8156. }
  8157. },
  8158. "autoload": {
  8159. "psr-4": {
  8160. "Facade\\Ignition\\": "src"
  8161. },
  8162. "files": [
  8163. "src/helpers.php"
  8164. ]
  8165. },
  8166. "notification-url": "https://packagist.org/downloads/",
  8167. "license": [
  8168. "MIT"
  8169. ],
  8170. "description": "A beautiful error page for Laravel applications.",
  8171. "homepage": "https://github.com/facade/ignition",
  8172. "keywords": [
  8173. "error",
  8174. "flare",
  8175. "laravel",
  8176. "page"
  8177. ],
  8178. "support": {
  8179. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  8180. "forum": "https://twitter.com/flareappio",
  8181. "issues": "https://github.com/facade/ignition/issues",
  8182. "source": "https://github.com/facade/ignition"
  8183. },
  8184. "time": "2020-11-17T09:18:51+00:00"
  8185. },
  8186. {
  8187. "name": "facade/ignition-contracts",
  8188. "version": "1.0.2",
  8189. "source": {
  8190. "type": "git",
  8191. "url": "https://github.com/facade/ignition-contracts.git",
  8192. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  8193. },
  8194. "dist": {
  8195. "type": "zip",
  8196. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8197. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8198. "shasum": ""
  8199. },
  8200. "require": {
  8201. "php": "^7.3|^8.0"
  8202. },
  8203. "require-dev": {
  8204. "friendsofphp/php-cs-fixer": "^v2.15.8",
  8205. "phpunit/phpunit": "^9.3.11",
  8206. "vimeo/psalm": "^3.17.1"
  8207. },
  8208. "type": "library",
  8209. "autoload": {
  8210. "psr-4": {
  8211. "Facade\\IgnitionContracts\\": "src"
  8212. }
  8213. },
  8214. "notification-url": "https://packagist.org/downloads/",
  8215. "license": [
  8216. "MIT"
  8217. ],
  8218. "authors": [
  8219. {
  8220. "name": "Freek Van der Herten",
  8221. "email": "freek@spatie.be",
  8222. "homepage": "https://flareapp.io",
  8223. "role": "Developer"
  8224. }
  8225. ],
  8226. "description": "Solution contracts for Ignition",
  8227. "homepage": "https://github.com/facade/ignition-contracts",
  8228. "keywords": [
  8229. "contracts",
  8230. "flare",
  8231. "ignition"
  8232. ],
  8233. "support": {
  8234. "issues": "https://github.com/facade/ignition-contracts/issues",
  8235. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  8236. },
  8237. "time": "2020-10-16T08:27:54+00:00"
  8238. },
  8239. {
  8240. "name": "fakerphp/faker",
  8241. "version": "v1.12.0",
  8242. "source": {
  8243. "type": "git",
  8244. "url": "https://github.com/FakerPHP/Faker.git",
  8245. "reference": "9aa6c9e289860951e6b4d010c7a841802d015cd8"
  8246. },
  8247. "dist": {
  8248. "type": "zip",
  8249. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/9aa6c9e289860951e6b4d010c7a841802d015cd8",
  8250. "reference": "9aa6c9e289860951e6b4d010c7a841802d015cd8",
  8251. "shasum": ""
  8252. },
  8253. "require": {
  8254. "php": "^7.1 || ^8.0"
  8255. },
  8256. "conflict": {
  8257. "fzaninotto/faker": "*"
  8258. },
  8259. "require-dev": {
  8260. "bamarni/composer-bin-plugin": "^1.4.1",
  8261. "ext-intl": "*",
  8262. "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.4.2"
  8263. },
  8264. "type": "library",
  8265. "autoload": {
  8266. "psr-4": {
  8267. "Faker\\": "src/Faker/"
  8268. }
  8269. },
  8270. "notification-url": "https://packagist.org/downloads/",
  8271. "license": [
  8272. "MIT"
  8273. ],
  8274. "authors": [
  8275. {
  8276. "name": "François Zaninotto"
  8277. }
  8278. ],
  8279. "description": "Faker is a PHP library that generates fake data for you.",
  8280. "keywords": [
  8281. "data",
  8282. "faker",
  8283. "fixtures"
  8284. ],
  8285. "support": {
  8286. "issues": "https://github.com/FakerPHP/Faker/issues",
  8287. "source": "https://github.com/FakerPHP/Faker/tree/v1.12.0"
  8288. },
  8289. "time": "2020-11-23T09:33:08+00:00"
  8290. },
  8291. {
  8292. "name": "filp/whoops",
  8293. "version": "2.9.1",
  8294. "source": {
  8295. "type": "git",
  8296. "url": "https://github.com/filp/whoops.git",
  8297. "reference": "307fb34a5ab697461ec4c9db865b20ff2fd40771"
  8298. },
  8299. "dist": {
  8300. "type": "zip",
  8301. "url": "https://api.github.com/repos/filp/whoops/zipball/307fb34a5ab697461ec4c9db865b20ff2fd40771",
  8302. "reference": "307fb34a5ab697461ec4c9db865b20ff2fd40771",
  8303. "shasum": ""
  8304. },
  8305. "require": {
  8306. "php": "^5.5.9 || ^7.0 || ^8.0",
  8307. "psr/log": "^1.0.1"
  8308. },
  8309. "require-dev": {
  8310. "mockery/mockery": "^0.9 || ^1.0",
  8311. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  8312. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  8313. },
  8314. "suggest": {
  8315. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  8316. "whoops/soap": "Formats errors as SOAP responses"
  8317. },
  8318. "type": "library",
  8319. "extra": {
  8320. "branch-alias": {
  8321. "dev-master": "2.7-dev"
  8322. }
  8323. },
  8324. "autoload": {
  8325. "psr-4": {
  8326. "Whoops\\": "src/Whoops/"
  8327. }
  8328. },
  8329. "notification-url": "https://packagist.org/downloads/",
  8330. "license": [
  8331. "MIT"
  8332. ],
  8333. "authors": [
  8334. {
  8335. "name": "Filipe Dobreira",
  8336. "homepage": "https://github.com/filp",
  8337. "role": "Developer"
  8338. }
  8339. ],
  8340. "description": "php error handling for cool kids",
  8341. "homepage": "https://filp.github.io/whoops/",
  8342. "keywords": [
  8343. "error",
  8344. "exception",
  8345. "handling",
  8346. "library",
  8347. "throwable",
  8348. "whoops"
  8349. ],
  8350. "support": {
  8351. "issues": "https://github.com/filp/whoops/issues",
  8352. "source": "https://github.com/filp/whoops/tree/2.9.1"
  8353. },
  8354. "time": "2020-11-01T12:00:00+00:00"
  8355. },
  8356. {
  8357. "name": "hamcrest/hamcrest-php",
  8358. "version": "v2.0.1",
  8359. "source": {
  8360. "type": "git",
  8361. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8362. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8363. },
  8364. "dist": {
  8365. "type": "zip",
  8366. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8367. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8368. "shasum": ""
  8369. },
  8370. "require": {
  8371. "php": "^5.3|^7.0|^8.0"
  8372. },
  8373. "replace": {
  8374. "cordoval/hamcrest-php": "*",
  8375. "davedevelopment/hamcrest-php": "*",
  8376. "kodova/hamcrest-php": "*"
  8377. },
  8378. "require-dev": {
  8379. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8380. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8381. },
  8382. "type": "library",
  8383. "extra": {
  8384. "branch-alias": {
  8385. "dev-master": "2.1-dev"
  8386. }
  8387. },
  8388. "autoload": {
  8389. "classmap": [
  8390. "hamcrest"
  8391. ]
  8392. },
  8393. "notification-url": "https://packagist.org/downloads/",
  8394. "license": [
  8395. "BSD-3-Clause"
  8396. ],
  8397. "description": "This is the PHP port of Hamcrest Matchers",
  8398. "keywords": [
  8399. "test"
  8400. ],
  8401. "support": {
  8402. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8403. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8404. },
  8405. "time": "2020-07-09T08:09:16+00:00"
  8406. },
  8407. {
  8408. "name": "justinrainbow/json-schema",
  8409. "version": "5.2.10",
  8410. "source": {
  8411. "type": "git",
  8412. "url": "https://github.com/justinrainbow/json-schema.git",
  8413. "reference": "2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b"
  8414. },
  8415. "dist": {
  8416. "type": "zip",
  8417. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b",
  8418. "reference": "2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b",
  8419. "shasum": ""
  8420. },
  8421. "require": {
  8422. "php": ">=5.3.3"
  8423. },
  8424. "require-dev": {
  8425. "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1",
  8426. "json-schema/json-schema-test-suite": "1.2.0",
  8427. "phpunit/phpunit": "^4.8.35"
  8428. },
  8429. "bin": [
  8430. "bin/validate-json"
  8431. ],
  8432. "type": "library",
  8433. "extra": {
  8434. "branch-alias": {
  8435. "dev-master": "5.0.x-dev"
  8436. }
  8437. },
  8438. "autoload": {
  8439. "psr-4": {
  8440. "JsonSchema\\": "src/JsonSchema/"
  8441. }
  8442. },
  8443. "notification-url": "https://packagist.org/downloads/",
  8444. "license": [
  8445. "MIT"
  8446. ],
  8447. "authors": [
  8448. {
  8449. "name": "Bruno Prieto Reis",
  8450. "email": "bruno.p.reis@gmail.com"
  8451. },
  8452. {
  8453. "name": "Justin Rainbow",
  8454. "email": "justin.rainbow@gmail.com"
  8455. },
  8456. {
  8457. "name": "Igor Wiedler",
  8458. "email": "igor@wiedler.ch"
  8459. },
  8460. {
  8461. "name": "Robert Schönthal",
  8462. "email": "seroscho@googlemail.com"
  8463. }
  8464. ],
  8465. "description": "A library to validate a json schema.",
  8466. "homepage": "https://github.com/justinrainbow/json-schema",
  8467. "keywords": [
  8468. "json",
  8469. "schema"
  8470. ],
  8471. "support": {
  8472. "issues": "https://github.com/justinrainbow/json-schema/issues",
  8473. "source": "https://github.com/justinrainbow/json-schema/tree/5.2.10"
  8474. },
  8475. "time": "2020-05-27T16:41:55+00:00"
  8476. },
  8477. {
  8478. "name": "laravel/telescope",
  8479. "version": "v3.5.1",
  8480. "source": {
  8481. "type": "git",
  8482. "url": "https://github.com/laravel/telescope.git",
  8483. "reference": "a8d2e1106ba655006fde47a0b7ed53851c6398f5"
  8484. },
  8485. "dist": {
  8486. "type": "zip",
  8487. "url": "https://api.github.com/repos/laravel/telescope/zipball/a8d2e1106ba655006fde47a0b7ed53851c6398f5",
  8488. "reference": "a8d2e1106ba655006fde47a0b7ed53851c6398f5",
  8489. "shasum": ""
  8490. },
  8491. "require": {
  8492. "ext-json": "*",
  8493. "laravel/framework": "^6.0|^7.0",
  8494. "moontoast/math": "^1.1",
  8495. "php": "^7.2",
  8496. "symfony/var-dumper": "^4.4|^5.0"
  8497. },
  8498. "require-dev": {
  8499. "ext-gd": "*",
  8500. "orchestra/testbench": "^4.0|^5.0"
  8501. },
  8502. "type": "library",
  8503. "extra": {
  8504. "branch-alias": {
  8505. "dev-master": "3.x-dev"
  8506. },
  8507. "laravel": {
  8508. "providers": [
  8509. "Laravel\\Telescope\\TelescopeServiceProvider"
  8510. ]
  8511. }
  8512. },
  8513. "autoload": {
  8514. "psr-4": {
  8515. "Laravel\\Telescope\\": "src/"
  8516. }
  8517. },
  8518. "notification-url": "https://packagist.org/downloads/",
  8519. "license": [
  8520. "MIT"
  8521. ],
  8522. "authors": [
  8523. {
  8524. "name": "Taylor Otwell",
  8525. "email": "taylor@laravel.com"
  8526. },
  8527. {
  8528. "name": "Mohamed Said",
  8529. "email": "mohamed@laravel.com"
  8530. }
  8531. ],
  8532. "description": "An elegant debug assistant for the Laravel framework.",
  8533. "keywords": [
  8534. "debugging",
  8535. "laravel",
  8536. "monitoring"
  8537. ],
  8538. "support": {
  8539. "issues": "https://github.com/laravel/telescope/issues",
  8540. "source": "https://github.com/laravel/telescope/tree/v3.5.1"
  8541. },
  8542. "time": "2020-07-28T19:12:33+00:00"
  8543. },
  8544. {
  8545. "name": "maximebf/debugbar",
  8546. "version": "v1.16.3",
  8547. "source": {
  8548. "type": "git",
  8549. "url": "https://github.com/maximebf/php-debugbar.git",
  8550. "reference": "1a1605b8e9bacb34cc0c6278206d699772e1d372"
  8551. },
  8552. "dist": {
  8553. "type": "zip",
  8554. "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/1a1605b8e9bacb34cc0c6278206d699772e1d372",
  8555. "reference": "1a1605b8e9bacb34cc0c6278206d699772e1d372",
  8556. "shasum": ""
  8557. },
  8558. "require": {
  8559. "php": "^7.1",
  8560. "psr/log": "^1.0",
  8561. "symfony/var-dumper": "^2.6|^3|^4|^5"
  8562. },
  8563. "require-dev": {
  8564. "phpunit/phpunit": "^5"
  8565. },
  8566. "suggest": {
  8567. "kriswallsmith/assetic": "The best way to manage assets",
  8568. "monolog/monolog": "Log using Monolog",
  8569. "predis/predis": "Redis storage"
  8570. },
  8571. "type": "library",
  8572. "extra": {
  8573. "branch-alias": {
  8574. "dev-master": "1.16-dev"
  8575. }
  8576. },
  8577. "autoload": {
  8578. "psr-4": {
  8579. "DebugBar\\": "src/DebugBar/"
  8580. }
  8581. },
  8582. "notification-url": "https://packagist.org/downloads/",
  8583. "license": [
  8584. "MIT"
  8585. ],
  8586. "authors": [
  8587. {
  8588. "name": "Maxime Bouroumeau-Fuseau",
  8589. "email": "maxime.bouroumeau@gmail.com",
  8590. "homepage": "http://maximebf.com"
  8591. },
  8592. {
  8593. "name": "Barry vd. Heuvel",
  8594. "email": "barryvdh@gmail.com"
  8595. }
  8596. ],
  8597. "description": "Debug bar in the browser for php application",
  8598. "homepage": "https://github.com/maximebf/php-debugbar",
  8599. "keywords": [
  8600. "debug",
  8601. "debugbar"
  8602. ],
  8603. "support": {
  8604. "issues": "https://github.com/maximebf/php-debugbar/issues",
  8605. "source": "https://github.com/maximebf/php-debugbar/tree/v1.16.3"
  8606. },
  8607. "time": "2020-05-06T07:06:27+00:00"
  8608. },
  8609. {
  8610. "name": "mockery/mockery",
  8611. "version": "1.4.2",
  8612. "source": {
  8613. "type": "git",
  8614. "url": "https://github.com/mockery/mockery.git",
  8615. "reference": "20cab678faed06fac225193be281ea0fddb43b93"
  8616. },
  8617. "dist": {
  8618. "type": "zip",
  8619. "url": "https://api.github.com/repos/mockery/mockery/zipball/20cab678faed06fac225193be281ea0fddb43b93",
  8620. "reference": "20cab678faed06fac225193be281ea0fddb43b93",
  8621. "shasum": ""
  8622. },
  8623. "require": {
  8624. "hamcrest/hamcrest-php": "^2.0.1",
  8625. "lib-pcre": ">=7.0",
  8626. "php": "^7.3 || ^8.0"
  8627. },
  8628. "conflict": {
  8629. "phpunit/phpunit": "<8.0"
  8630. },
  8631. "require-dev": {
  8632. "phpunit/phpunit": "^8.5 || ^9.3"
  8633. },
  8634. "type": "library",
  8635. "extra": {
  8636. "branch-alias": {
  8637. "dev-master": "1.4.x-dev"
  8638. }
  8639. },
  8640. "autoload": {
  8641. "psr-0": {
  8642. "Mockery": "library/"
  8643. }
  8644. },
  8645. "notification-url": "https://packagist.org/downloads/",
  8646. "license": [
  8647. "BSD-3-Clause"
  8648. ],
  8649. "authors": [
  8650. {
  8651. "name": "Pádraic Brady",
  8652. "email": "padraic.brady@gmail.com",
  8653. "homepage": "http://blog.astrumfutura.com"
  8654. },
  8655. {
  8656. "name": "Dave Marshall",
  8657. "email": "dave.marshall@atstsolutions.co.uk",
  8658. "homepage": "http://davedevelopment.co.uk"
  8659. }
  8660. ],
  8661. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8662. "homepage": "https://github.com/mockery/mockery",
  8663. "keywords": [
  8664. "BDD",
  8665. "TDD",
  8666. "library",
  8667. "mock",
  8668. "mock objects",
  8669. "mockery",
  8670. "stub",
  8671. "test",
  8672. "test double",
  8673. "testing"
  8674. ],
  8675. "support": {
  8676. "issues": "https://github.com/mockery/mockery/issues",
  8677. "source": "https://github.com/mockery/mockery/tree/master"
  8678. },
  8679. "time": "2020-08-11T18:10:13+00:00"
  8680. },
  8681. {
  8682. "name": "moontoast/math",
  8683. "version": "1.2.1",
  8684. "source": {
  8685. "type": "git",
  8686. "url": "https://github.com/ramsey/moontoast-math.git",
  8687. "reference": "5f47d34c87767dbcc08b30377a9827df71de91fa"
  8688. },
  8689. "dist": {
  8690. "type": "zip",
  8691. "url": "https://api.github.com/repos/ramsey/moontoast-math/zipball/5f47d34c87767dbcc08b30377a9827df71de91fa",
  8692. "reference": "5f47d34c87767dbcc08b30377a9827df71de91fa",
  8693. "shasum": ""
  8694. },
  8695. "require": {
  8696. "php": ">=5.3.3",
  8697. "phpseclib/bcmath_compat": ">=1.0.3"
  8698. },
  8699. "require-dev": {
  8700. "jakub-onderka/php-parallel-lint": "^0.9.0",
  8701. "phpunit/phpunit": "^4.8 || ^5.5 || ^6.5 || ^7.0",
  8702. "satooshi/php-coveralls": "^0.6.1",
  8703. "squizlabs/php_codesniffer": "^2.3"
  8704. },
  8705. "type": "library",
  8706. "autoload": {
  8707. "psr-4": {
  8708. "Moontoast\\Math\\": "src/Moontoast/Math",
  8709. "Moontoast\\Math\\Exception\\": "src/Moontoast/Math/Exception"
  8710. }
  8711. },
  8712. "notification-url": "https://packagist.org/downloads/",
  8713. "license": [
  8714. "Apache-2.0"
  8715. ],
  8716. "authors": [
  8717. {
  8718. "name": "Ben Ramsey",
  8719. "email": "ben@benramsey.com",
  8720. "homepage": "https://benramsey.com"
  8721. }
  8722. ],
  8723. "description": "A mathematics library, providing functionality for large numbers",
  8724. "homepage": "https://github.com/ramsey/moontoast-math",
  8725. "keywords": [
  8726. "bcmath",
  8727. "math"
  8728. ],
  8729. "support": {
  8730. "issues": "https://github.com/ramsey/moontoast-math/issues",
  8731. "source": "https://github.com/ramsey/moontoast-math"
  8732. },
  8733. "abandoned": "brick/math",
  8734. "time": "2020-01-05T04:49:34+00:00"
  8735. },
  8736. {
  8737. "name": "myclabs/deep-copy",
  8738. "version": "1.10.2",
  8739. "source": {
  8740. "type": "git",
  8741. "url": "https://github.com/myclabs/DeepCopy.git",
  8742. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
  8743. },
  8744. "dist": {
  8745. "type": "zip",
  8746. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
  8747. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
  8748. "shasum": ""
  8749. },
  8750. "require": {
  8751. "php": "^7.1 || ^8.0"
  8752. },
  8753. "replace": {
  8754. "myclabs/deep-copy": "self.version"
  8755. },
  8756. "require-dev": {
  8757. "doctrine/collections": "^1.0",
  8758. "doctrine/common": "^2.6",
  8759. "phpunit/phpunit": "^7.1"
  8760. },
  8761. "type": "library",
  8762. "autoload": {
  8763. "psr-4": {
  8764. "DeepCopy\\": "src/DeepCopy/"
  8765. },
  8766. "files": [
  8767. "src/DeepCopy/deep_copy.php"
  8768. ]
  8769. },
  8770. "notification-url": "https://packagist.org/downloads/",
  8771. "license": [
  8772. "MIT"
  8773. ],
  8774. "description": "Create deep copies (clones) of your objects",
  8775. "keywords": [
  8776. "clone",
  8777. "copy",
  8778. "duplicate",
  8779. "object",
  8780. "object graph"
  8781. ],
  8782. "support": {
  8783. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8784. "source": "https://github.com/myclabs/DeepCopy/tree/1.10.2"
  8785. },
  8786. "funding": [
  8787. {
  8788. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8789. "type": "tidelift"
  8790. }
  8791. ],
  8792. "time": "2020-11-13T09:40:50+00:00"
  8793. },
  8794. {
  8795. "name": "nunomaduro/collision",
  8796. "version": "v4.3.0",
  8797. "source": {
  8798. "type": "git",
  8799. "url": "https://github.com/nunomaduro/collision.git",
  8800. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e"
  8801. },
  8802. "dist": {
  8803. "type": "zip",
  8804. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/7c125dc2463f3e144ddc7e05e63077109508c94e",
  8805. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e",
  8806. "shasum": ""
  8807. },
  8808. "require": {
  8809. "facade/ignition-contracts": "^1.0",
  8810. "filp/whoops": "^2.4",
  8811. "php": "^7.2.5 || ^8.0",
  8812. "symfony/console": "^5.0"
  8813. },
  8814. "require-dev": {
  8815. "facade/ignition": "^2.0",
  8816. "fideloper/proxy": "^4.2",
  8817. "friendsofphp/php-cs-fixer": "^2.16",
  8818. "fruitcake/laravel-cors": "^1.0",
  8819. "laravel/framework": "^7.0",
  8820. "laravel/tinker": "^2.0",
  8821. "nunomaduro/larastan": "^0.6",
  8822. "orchestra/testbench": "^5.0",
  8823. "phpstan/phpstan": "^0.12.3",
  8824. "phpunit/phpunit": "^8.5.1 || ^9.0"
  8825. },
  8826. "type": "library",
  8827. "extra": {
  8828. "laravel": {
  8829. "providers": [
  8830. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  8831. ]
  8832. }
  8833. },
  8834. "autoload": {
  8835. "psr-4": {
  8836. "NunoMaduro\\Collision\\": "src/"
  8837. }
  8838. },
  8839. "notification-url": "https://packagist.org/downloads/",
  8840. "license": [
  8841. "MIT"
  8842. ],
  8843. "authors": [
  8844. {
  8845. "name": "Nuno Maduro",
  8846. "email": "enunomaduro@gmail.com"
  8847. }
  8848. ],
  8849. "description": "Cli error handling for console/command-line PHP applications.",
  8850. "keywords": [
  8851. "artisan",
  8852. "cli",
  8853. "command-line",
  8854. "console",
  8855. "error",
  8856. "handling",
  8857. "laravel",
  8858. "laravel-zero",
  8859. "php",
  8860. "symfony"
  8861. ],
  8862. "support": {
  8863. "issues": "https://github.com/nunomaduro/collision/issues",
  8864. "source": "https://github.com/nunomaduro/collision"
  8865. },
  8866. "funding": [
  8867. {
  8868. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  8869. "type": "custom"
  8870. },
  8871. {
  8872. "url": "https://github.com/nunomaduro",
  8873. "type": "github"
  8874. },
  8875. {
  8876. "url": "https://www.patreon.com/nunomaduro",
  8877. "type": "patreon"
  8878. }
  8879. ],
  8880. "time": "2020-10-29T15:12:23+00:00"
  8881. },
  8882. {
  8883. "name": "phar-io/manifest",
  8884. "version": "2.0.1",
  8885. "source": {
  8886. "type": "git",
  8887. "url": "https://github.com/phar-io/manifest.git",
  8888. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133"
  8889. },
  8890. "dist": {
  8891. "type": "zip",
  8892. "url": "https://api.github.com/repos/phar-io/manifest/zipball/85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  8893. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  8894. "shasum": ""
  8895. },
  8896. "require": {
  8897. "ext-dom": "*",
  8898. "ext-phar": "*",
  8899. "ext-xmlwriter": "*",
  8900. "phar-io/version": "^3.0.1",
  8901. "php": "^7.2 || ^8.0"
  8902. },
  8903. "type": "library",
  8904. "extra": {
  8905. "branch-alias": {
  8906. "dev-master": "2.0.x-dev"
  8907. }
  8908. },
  8909. "autoload": {
  8910. "classmap": [
  8911. "src/"
  8912. ]
  8913. },
  8914. "notification-url": "https://packagist.org/downloads/",
  8915. "license": [
  8916. "BSD-3-Clause"
  8917. ],
  8918. "authors": [
  8919. {
  8920. "name": "Arne Blankerts",
  8921. "email": "arne@blankerts.de",
  8922. "role": "Developer"
  8923. },
  8924. {
  8925. "name": "Sebastian Heuer",
  8926. "email": "sebastian@phpeople.de",
  8927. "role": "Developer"
  8928. },
  8929. {
  8930. "name": "Sebastian Bergmann",
  8931. "email": "sebastian@phpunit.de",
  8932. "role": "Developer"
  8933. }
  8934. ],
  8935. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8936. "support": {
  8937. "issues": "https://github.com/phar-io/manifest/issues",
  8938. "source": "https://github.com/phar-io/manifest/tree/master"
  8939. },
  8940. "time": "2020-06-27T14:33:11+00:00"
  8941. },
  8942. {
  8943. "name": "phar-io/version",
  8944. "version": "3.0.3",
  8945. "source": {
  8946. "type": "git",
  8947. "url": "https://github.com/phar-io/version.git",
  8948. "reference": "726c026815142e4f8677b7cb7f2249c9ffb7ecae"
  8949. },
  8950. "dist": {
  8951. "type": "zip",
  8952. "url": "https://api.github.com/repos/phar-io/version/zipball/726c026815142e4f8677b7cb7f2249c9ffb7ecae",
  8953. "reference": "726c026815142e4f8677b7cb7f2249c9ffb7ecae",
  8954. "shasum": ""
  8955. },
  8956. "require": {
  8957. "php": "^7.2 || ^8.0"
  8958. },
  8959. "type": "library",
  8960. "autoload": {
  8961. "classmap": [
  8962. "src/"
  8963. ]
  8964. },
  8965. "notification-url": "https://packagist.org/downloads/",
  8966. "license": [
  8967. "BSD-3-Clause"
  8968. ],
  8969. "authors": [
  8970. {
  8971. "name": "Arne Blankerts",
  8972. "email": "arne@blankerts.de",
  8973. "role": "Developer"
  8974. },
  8975. {
  8976. "name": "Sebastian Heuer",
  8977. "email": "sebastian@phpeople.de",
  8978. "role": "Developer"
  8979. },
  8980. {
  8981. "name": "Sebastian Bergmann",
  8982. "email": "sebastian@phpunit.de",
  8983. "role": "Developer"
  8984. }
  8985. ],
  8986. "description": "Library for handling version information and constraints",
  8987. "support": {
  8988. "issues": "https://github.com/phar-io/version/issues",
  8989. "source": "https://github.com/phar-io/version/tree/3.0.3"
  8990. },
  8991. "time": "2020-11-30T09:21:21+00:00"
  8992. },
  8993. {
  8994. "name": "phpdocumentor/reflection-common",
  8995. "version": "2.2.0",
  8996. "source": {
  8997. "type": "git",
  8998. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  8999. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  9000. },
  9001. "dist": {
  9002. "type": "zip",
  9003. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  9004. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  9005. "shasum": ""
  9006. },
  9007. "require": {
  9008. "php": "^7.2 || ^8.0"
  9009. },
  9010. "type": "library",
  9011. "extra": {
  9012. "branch-alias": {
  9013. "dev-2.x": "2.x-dev"
  9014. }
  9015. },
  9016. "autoload": {
  9017. "psr-4": {
  9018. "phpDocumentor\\Reflection\\": "src/"
  9019. }
  9020. },
  9021. "notification-url": "https://packagist.org/downloads/",
  9022. "license": [
  9023. "MIT"
  9024. ],
  9025. "authors": [
  9026. {
  9027. "name": "Jaap van Otterdijk",
  9028. "email": "opensource@ijaap.nl"
  9029. }
  9030. ],
  9031. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  9032. "homepage": "http://www.phpdoc.org",
  9033. "keywords": [
  9034. "FQSEN",
  9035. "phpDocumentor",
  9036. "phpdoc",
  9037. "reflection",
  9038. "static analysis"
  9039. ],
  9040. "support": {
  9041. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  9042. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  9043. },
  9044. "time": "2020-06-27T09:03:43+00:00"
  9045. },
  9046. {
  9047. "name": "phpdocumentor/reflection-docblock",
  9048. "version": "5.2.2",
  9049. "source": {
  9050. "type": "git",
  9051. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  9052. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556"
  9053. },
  9054. "dist": {
  9055. "type": "zip",
  9056. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556",
  9057. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556",
  9058. "shasum": ""
  9059. },
  9060. "require": {
  9061. "ext-filter": "*",
  9062. "php": "^7.2 || ^8.0",
  9063. "phpdocumentor/reflection-common": "^2.2",
  9064. "phpdocumentor/type-resolver": "^1.3",
  9065. "webmozart/assert": "^1.9.1"
  9066. },
  9067. "require-dev": {
  9068. "mockery/mockery": "~1.3.2"
  9069. },
  9070. "type": "library",
  9071. "extra": {
  9072. "branch-alias": {
  9073. "dev-master": "5.x-dev"
  9074. }
  9075. },
  9076. "autoload": {
  9077. "psr-4": {
  9078. "phpDocumentor\\Reflection\\": "src"
  9079. }
  9080. },
  9081. "notification-url": "https://packagist.org/downloads/",
  9082. "license": [
  9083. "MIT"
  9084. ],
  9085. "authors": [
  9086. {
  9087. "name": "Mike van Riel",
  9088. "email": "me@mikevanriel.com"
  9089. },
  9090. {
  9091. "name": "Jaap van Otterdijk",
  9092. "email": "account@ijaap.nl"
  9093. }
  9094. ],
  9095. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  9096. "support": {
  9097. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  9098. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/master"
  9099. },
  9100. "time": "2020-09-03T19:13:55+00:00"
  9101. },
  9102. {
  9103. "name": "phpdocumentor/type-resolver",
  9104. "version": "1.4.0",
  9105. "source": {
  9106. "type": "git",
  9107. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  9108. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0"
  9109. },
  9110. "dist": {
  9111. "type": "zip",
  9112. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  9113. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  9114. "shasum": ""
  9115. },
  9116. "require": {
  9117. "php": "^7.2 || ^8.0",
  9118. "phpdocumentor/reflection-common": "^2.0"
  9119. },
  9120. "require-dev": {
  9121. "ext-tokenizer": "*"
  9122. },
  9123. "type": "library",
  9124. "extra": {
  9125. "branch-alias": {
  9126. "dev-1.x": "1.x-dev"
  9127. }
  9128. },
  9129. "autoload": {
  9130. "psr-4": {
  9131. "phpDocumentor\\Reflection\\": "src"
  9132. }
  9133. },
  9134. "notification-url": "https://packagist.org/downloads/",
  9135. "license": [
  9136. "MIT"
  9137. ],
  9138. "authors": [
  9139. {
  9140. "name": "Mike van Riel",
  9141. "email": "me@mikevanriel.com"
  9142. }
  9143. ],
  9144. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  9145. "support": {
  9146. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  9147. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.4.0"
  9148. },
  9149. "time": "2020-09-17T18:55:26+00:00"
  9150. },
  9151. {
  9152. "name": "phpseclib/bcmath_compat",
  9153. "version": "1.0.5",
  9154. "source": {
  9155. "type": "git",
  9156. "url": "https://github.com/phpseclib/bcmath_compat.git",
  9157. "reference": "89cbb63742a32730b7187773a60b6b12b9db4479"
  9158. },
  9159. "dist": {
  9160. "type": "zip",
  9161. "url": "https://api.github.com/repos/phpseclib/bcmath_compat/zipball/89cbb63742a32730b7187773a60b6b12b9db4479",
  9162. "reference": "89cbb63742a32730b7187773a60b6b12b9db4479",
  9163. "shasum": ""
  9164. },
  9165. "require": {
  9166. "phpseclib/phpseclib": ">=2.0.19"
  9167. },
  9168. "provide": {
  9169. "ext-bcmath": "7.3.5"
  9170. },
  9171. "require-dev": {
  9172. "phpunit/phpunit": "^4.8.35|^5.7|^6.0",
  9173. "squizlabs/php_codesniffer": "^3.0"
  9174. },
  9175. "suggest": {
  9176. "ext-gmp": "Will enable faster math operations"
  9177. },
  9178. "type": "library",
  9179. "autoload": {
  9180. "files": [
  9181. "lib/bcmath.php"
  9182. ],
  9183. "psr-4": {
  9184. "bcmath_compat\\": "src"
  9185. }
  9186. },
  9187. "notification-url": "https://packagist.org/downloads/",
  9188. "license": [
  9189. "MIT"
  9190. ],
  9191. "authors": [
  9192. {
  9193. "name": "Jim Wigginton",
  9194. "email": "terrafrost@php.net",
  9195. "homepage": "http://phpseclib.sourceforge.net"
  9196. }
  9197. ],
  9198. "description": "PHP 5.x/7.x polyfill for bcmath extension",
  9199. "keywords": [
  9200. "BigInteger",
  9201. "bcmath",
  9202. "bigdecimal",
  9203. "math",
  9204. "polyfill"
  9205. ],
  9206. "support": {
  9207. "email": "terrafrost@php.net",
  9208. "issues": "https://github.com/phpseclib/bcmath_compat/issues",
  9209. "source": "https://github.com/phpseclib/bcmath_compat"
  9210. },
  9211. "time": "2020-04-26T16:34:33+00:00"
  9212. },
  9213. {
  9214. "name": "phpseclib/phpseclib",
  9215. "version": "2.0.29",
  9216. "source": {
  9217. "type": "git",
  9218. "url": "https://github.com/phpseclib/phpseclib.git",
  9219. "reference": "497856a8d997f640b4a516062f84228a772a48a8"
  9220. },
  9221. "dist": {
  9222. "type": "zip",
  9223. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/497856a8d997f640b4a516062f84228a772a48a8",
  9224. "reference": "497856a8d997f640b4a516062f84228a772a48a8",
  9225. "shasum": ""
  9226. },
  9227. "require": {
  9228. "php": ">=5.3.3"
  9229. },
  9230. "require-dev": {
  9231. "phing/phing": "~2.7",
  9232. "phpunit/phpunit": "^4.8.35|^5.7|^6.0",
  9233. "squizlabs/php_codesniffer": "~2.0"
  9234. },
  9235. "suggest": {
  9236. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  9237. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  9238. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  9239. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  9240. },
  9241. "type": "library",
  9242. "autoload": {
  9243. "files": [
  9244. "phpseclib/bootstrap.php"
  9245. ],
  9246. "psr-4": {
  9247. "phpseclib\\": "phpseclib/"
  9248. }
  9249. },
  9250. "notification-url": "https://packagist.org/downloads/",
  9251. "license": [
  9252. "MIT"
  9253. ],
  9254. "authors": [
  9255. {
  9256. "name": "Jim Wigginton",
  9257. "email": "terrafrost@php.net",
  9258. "role": "Lead Developer"
  9259. },
  9260. {
  9261. "name": "Patrick Monnerat",
  9262. "email": "pm@datasphere.ch",
  9263. "role": "Developer"
  9264. },
  9265. {
  9266. "name": "Andreas Fischer",
  9267. "email": "bantu@phpbb.com",
  9268. "role": "Developer"
  9269. },
  9270. {
  9271. "name": "Hans-Jürgen Petrich",
  9272. "email": "petrich@tronic-media.com",
  9273. "role": "Developer"
  9274. },
  9275. {
  9276. "name": "Graham Campbell",
  9277. "email": "graham@alt-three.com",
  9278. "role": "Developer"
  9279. }
  9280. ],
  9281. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  9282. "homepage": "http://phpseclib.sourceforge.net",
  9283. "keywords": [
  9284. "BigInteger",
  9285. "aes",
  9286. "asn.1",
  9287. "asn1",
  9288. "blowfish",
  9289. "crypto",
  9290. "cryptography",
  9291. "encryption",
  9292. "rsa",
  9293. "security",
  9294. "sftp",
  9295. "signature",
  9296. "signing",
  9297. "ssh",
  9298. "twofish",
  9299. "x.509",
  9300. "x509"
  9301. ],
  9302. "support": {
  9303. "issues": "https://github.com/phpseclib/phpseclib/issues",
  9304. "source": "https://github.com/phpseclib/phpseclib/tree/2.0"
  9305. },
  9306. "funding": [
  9307. {
  9308. "url": "https://github.com/terrafrost",
  9309. "type": "github"
  9310. },
  9311. {
  9312. "url": "https://www.patreon.com/phpseclib",
  9313. "type": "patreon"
  9314. },
  9315. {
  9316. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  9317. "type": "tidelift"
  9318. }
  9319. ],
  9320. "time": "2020-09-08T04:24:43+00:00"
  9321. },
  9322. {
  9323. "name": "phpspec/prophecy",
  9324. "version": "1.12.1",
  9325. "source": {
  9326. "type": "git",
  9327. "url": "https://github.com/phpspec/prophecy.git",
  9328. "reference": "8ce87516be71aae9b956f81906aaf0338e0d8a2d"
  9329. },
  9330. "dist": {
  9331. "type": "zip",
  9332. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/8ce87516be71aae9b956f81906aaf0338e0d8a2d",
  9333. "reference": "8ce87516be71aae9b956f81906aaf0338e0d8a2d",
  9334. "shasum": ""
  9335. },
  9336. "require": {
  9337. "doctrine/instantiator": "^1.2",
  9338. "php": "^7.2 || ~8.0, <8.1",
  9339. "phpdocumentor/reflection-docblock": "^5.2",
  9340. "sebastian/comparator": "^3.0 || ^4.0",
  9341. "sebastian/recursion-context": "^3.0 || ^4.0"
  9342. },
  9343. "require-dev": {
  9344. "phpspec/phpspec": "^6.0",
  9345. "phpunit/phpunit": "^8.0 || ^9.0 <9.3"
  9346. },
  9347. "type": "library",
  9348. "extra": {
  9349. "branch-alias": {
  9350. "dev-master": "1.11.x-dev"
  9351. }
  9352. },
  9353. "autoload": {
  9354. "psr-4": {
  9355. "Prophecy\\": "src/Prophecy"
  9356. }
  9357. },
  9358. "notification-url": "https://packagist.org/downloads/",
  9359. "license": [
  9360. "MIT"
  9361. ],
  9362. "authors": [
  9363. {
  9364. "name": "Konstantin Kudryashov",
  9365. "email": "ever.zet@gmail.com",
  9366. "homepage": "http://everzet.com"
  9367. },
  9368. {
  9369. "name": "Marcello Duarte",
  9370. "email": "marcello.duarte@gmail.com"
  9371. }
  9372. ],
  9373. "description": "Highly opinionated mocking framework for PHP 5.3+",
  9374. "homepage": "https://github.com/phpspec/prophecy",
  9375. "keywords": [
  9376. "Double",
  9377. "Dummy",
  9378. "fake",
  9379. "mock",
  9380. "spy",
  9381. "stub"
  9382. ],
  9383. "support": {
  9384. "issues": "https://github.com/phpspec/prophecy/issues",
  9385. "source": "https://github.com/phpspec/prophecy/tree/1.12.1"
  9386. },
  9387. "time": "2020-09-29T09:10:42+00:00"
  9388. },
  9389. {
  9390. "name": "phpunit/php-code-coverage",
  9391. "version": "9.2.5",
  9392. "source": {
  9393. "type": "git",
  9394. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9395. "reference": "f3e026641cc91909d421802dd3ac7827ebfd97e1"
  9396. },
  9397. "dist": {
  9398. "type": "zip",
  9399. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f3e026641cc91909d421802dd3ac7827ebfd97e1",
  9400. "reference": "f3e026641cc91909d421802dd3ac7827ebfd97e1",
  9401. "shasum": ""
  9402. },
  9403. "require": {
  9404. "ext-dom": "*",
  9405. "ext-libxml": "*",
  9406. "ext-xmlwriter": "*",
  9407. "nikic/php-parser": "^4.10.2",
  9408. "php": ">=7.3",
  9409. "phpunit/php-file-iterator": "^3.0.3",
  9410. "phpunit/php-text-template": "^2.0.2",
  9411. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  9412. "sebastian/complexity": "^2.0",
  9413. "sebastian/environment": "^5.1.2",
  9414. "sebastian/lines-of-code": "^1.0.3",
  9415. "sebastian/version": "^3.0.1",
  9416. "theseer/tokenizer": "^1.2.0"
  9417. },
  9418. "require-dev": {
  9419. "phpunit/phpunit": "^9.3"
  9420. },
  9421. "suggest": {
  9422. "ext-pcov": "*",
  9423. "ext-xdebug": "*"
  9424. },
  9425. "type": "library",
  9426. "extra": {
  9427. "branch-alias": {
  9428. "dev-master": "9.2-dev"
  9429. }
  9430. },
  9431. "autoload": {
  9432. "classmap": [
  9433. "src/"
  9434. ]
  9435. },
  9436. "notification-url": "https://packagist.org/downloads/",
  9437. "license": [
  9438. "BSD-3-Clause"
  9439. ],
  9440. "authors": [
  9441. {
  9442. "name": "Sebastian Bergmann",
  9443. "email": "sebastian@phpunit.de",
  9444. "role": "lead"
  9445. }
  9446. ],
  9447. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9448. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9449. "keywords": [
  9450. "coverage",
  9451. "testing",
  9452. "xunit"
  9453. ],
  9454. "support": {
  9455. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9456. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.5"
  9457. },
  9458. "funding": [
  9459. {
  9460. "url": "https://github.com/sebastianbergmann",
  9461. "type": "github"
  9462. }
  9463. ],
  9464. "time": "2020-11-28T06:44:49+00:00"
  9465. },
  9466. {
  9467. "name": "phpunit/php-file-iterator",
  9468. "version": "3.0.5",
  9469. "source": {
  9470. "type": "git",
  9471. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9472. "reference": "aa4be8575f26070b100fccb67faabb28f21f66f8"
  9473. },
  9474. "dist": {
  9475. "type": "zip",
  9476. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/aa4be8575f26070b100fccb67faabb28f21f66f8",
  9477. "reference": "aa4be8575f26070b100fccb67faabb28f21f66f8",
  9478. "shasum": ""
  9479. },
  9480. "require": {
  9481. "php": ">=7.3"
  9482. },
  9483. "require-dev": {
  9484. "phpunit/phpunit": "^9.3"
  9485. },
  9486. "type": "library",
  9487. "extra": {
  9488. "branch-alias": {
  9489. "dev-master": "3.0-dev"
  9490. }
  9491. },
  9492. "autoload": {
  9493. "classmap": [
  9494. "src/"
  9495. ]
  9496. },
  9497. "notification-url": "https://packagist.org/downloads/",
  9498. "license": [
  9499. "BSD-3-Clause"
  9500. ],
  9501. "authors": [
  9502. {
  9503. "name": "Sebastian Bergmann",
  9504. "email": "sebastian@phpunit.de",
  9505. "role": "lead"
  9506. }
  9507. ],
  9508. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9509. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9510. "keywords": [
  9511. "filesystem",
  9512. "iterator"
  9513. ],
  9514. "support": {
  9515. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9516. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.5"
  9517. },
  9518. "funding": [
  9519. {
  9520. "url": "https://github.com/sebastianbergmann",
  9521. "type": "github"
  9522. }
  9523. ],
  9524. "time": "2020-09-28T05:57:25+00:00"
  9525. },
  9526. {
  9527. "name": "phpunit/php-invoker",
  9528. "version": "3.1.1",
  9529. "source": {
  9530. "type": "git",
  9531. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9532. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  9533. },
  9534. "dist": {
  9535. "type": "zip",
  9536. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9537. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9538. "shasum": ""
  9539. },
  9540. "require": {
  9541. "php": ">=7.3"
  9542. },
  9543. "require-dev": {
  9544. "ext-pcntl": "*",
  9545. "phpunit/phpunit": "^9.3"
  9546. },
  9547. "suggest": {
  9548. "ext-pcntl": "*"
  9549. },
  9550. "type": "library",
  9551. "extra": {
  9552. "branch-alias": {
  9553. "dev-master": "3.1-dev"
  9554. }
  9555. },
  9556. "autoload": {
  9557. "classmap": [
  9558. "src/"
  9559. ]
  9560. },
  9561. "notification-url": "https://packagist.org/downloads/",
  9562. "license": [
  9563. "BSD-3-Clause"
  9564. ],
  9565. "authors": [
  9566. {
  9567. "name": "Sebastian Bergmann",
  9568. "email": "sebastian@phpunit.de",
  9569. "role": "lead"
  9570. }
  9571. ],
  9572. "description": "Invoke callables with a timeout",
  9573. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9574. "keywords": [
  9575. "process"
  9576. ],
  9577. "support": {
  9578. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9579. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  9580. },
  9581. "funding": [
  9582. {
  9583. "url": "https://github.com/sebastianbergmann",
  9584. "type": "github"
  9585. }
  9586. ],
  9587. "time": "2020-09-28T05:58:55+00:00"
  9588. },
  9589. {
  9590. "name": "phpunit/php-text-template",
  9591. "version": "2.0.4",
  9592. "source": {
  9593. "type": "git",
  9594. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9595. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  9596. },
  9597. "dist": {
  9598. "type": "zip",
  9599. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9600. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9601. "shasum": ""
  9602. },
  9603. "require": {
  9604. "php": ">=7.3"
  9605. },
  9606. "require-dev": {
  9607. "phpunit/phpunit": "^9.3"
  9608. },
  9609. "type": "library",
  9610. "extra": {
  9611. "branch-alias": {
  9612. "dev-master": "2.0-dev"
  9613. }
  9614. },
  9615. "autoload": {
  9616. "classmap": [
  9617. "src/"
  9618. ]
  9619. },
  9620. "notification-url": "https://packagist.org/downloads/",
  9621. "license": [
  9622. "BSD-3-Clause"
  9623. ],
  9624. "authors": [
  9625. {
  9626. "name": "Sebastian Bergmann",
  9627. "email": "sebastian@phpunit.de",
  9628. "role": "lead"
  9629. }
  9630. ],
  9631. "description": "Simple template engine.",
  9632. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9633. "keywords": [
  9634. "template"
  9635. ],
  9636. "support": {
  9637. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9638. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  9639. },
  9640. "funding": [
  9641. {
  9642. "url": "https://github.com/sebastianbergmann",
  9643. "type": "github"
  9644. }
  9645. ],
  9646. "time": "2020-10-26T05:33:50+00:00"
  9647. },
  9648. {
  9649. "name": "phpunit/php-timer",
  9650. "version": "5.0.3",
  9651. "source": {
  9652. "type": "git",
  9653. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9654. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  9655. },
  9656. "dist": {
  9657. "type": "zip",
  9658. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9659. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9660. "shasum": ""
  9661. },
  9662. "require": {
  9663. "php": ">=7.3"
  9664. },
  9665. "require-dev": {
  9666. "phpunit/phpunit": "^9.3"
  9667. },
  9668. "type": "library",
  9669. "extra": {
  9670. "branch-alias": {
  9671. "dev-master": "5.0-dev"
  9672. }
  9673. },
  9674. "autoload": {
  9675. "classmap": [
  9676. "src/"
  9677. ]
  9678. },
  9679. "notification-url": "https://packagist.org/downloads/",
  9680. "license": [
  9681. "BSD-3-Clause"
  9682. ],
  9683. "authors": [
  9684. {
  9685. "name": "Sebastian Bergmann",
  9686. "email": "sebastian@phpunit.de",
  9687. "role": "lead"
  9688. }
  9689. ],
  9690. "description": "Utility class for timing",
  9691. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9692. "keywords": [
  9693. "timer"
  9694. ],
  9695. "support": {
  9696. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9697. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  9698. },
  9699. "funding": [
  9700. {
  9701. "url": "https://github.com/sebastianbergmann",
  9702. "type": "github"
  9703. }
  9704. ],
  9705. "time": "2020-10-26T13:16:10+00:00"
  9706. },
  9707. {
  9708. "name": "phpunit/phpunit",
  9709. "version": "9.5.0",
  9710. "source": {
  9711. "type": "git",
  9712. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9713. "reference": "8e16c225d57c3d6808014df6b1dd7598d0a5bbbe"
  9714. },
  9715. "dist": {
  9716. "type": "zip",
  9717. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/8e16c225d57c3d6808014df6b1dd7598d0a5bbbe",
  9718. "reference": "8e16c225d57c3d6808014df6b1dd7598d0a5bbbe",
  9719. "shasum": ""
  9720. },
  9721. "require": {
  9722. "doctrine/instantiator": "^1.3.1",
  9723. "ext-dom": "*",
  9724. "ext-json": "*",
  9725. "ext-libxml": "*",
  9726. "ext-mbstring": "*",
  9727. "ext-xml": "*",
  9728. "ext-xmlwriter": "*",
  9729. "myclabs/deep-copy": "^1.10.1",
  9730. "phar-io/manifest": "^2.0.1",
  9731. "phar-io/version": "^3.0.2",
  9732. "php": ">=7.3",
  9733. "phpspec/prophecy": "^1.12.1",
  9734. "phpunit/php-code-coverage": "^9.2.3",
  9735. "phpunit/php-file-iterator": "^3.0.5",
  9736. "phpunit/php-invoker": "^3.1.1",
  9737. "phpunit/php-text-template": "^2.0.3",
  9738. "phpunit/php-timer": "^5.0.2",
  9739. "sebastian/cli-parser": "^1.0.1",
  9740. "sebastian/code-unit": "^1.0.6",
  9741. "sebastian/comparator": "^4.0.5",
  9742. "sebastian/diff": "^4.0.3",
  9743. "sebastian/environment": "^5.1.3",
  9744. "sebastian/exporter": "^4.0.3",
  9745. "sebastian/global-state": "^5.0.1",
  9746. "sebastian/object-enumerator": "^4.0.3",
  9747. "sebastian/resource-operations": "^3.0.3",
  9748. "sebastian/type": "^2.3",
  9749. "sebastian/version": "^3.0.2"
  9750. },
  9751. "require-dev": {
  9752. "ext-pdo": "*",
  9753. "phpspec/prophecy-phpunit": "^2.0.1"
  9754. },
  9755. "suggest": {
  9756. "ext-soap": "*",
  9757. "ext-xdebug": "*"
  9758. },
  9759. "bin": [
  9760. "phpunit"
  9761. ],
  9762. "type": "library",
  9763. "extra": {
  9764. "branch-alias": {
  9765. "dev-master": "9.5-dev"
  9766. }
  9767. },
  9768. "autoload": {
  9769. "classmap": [
  9770. "src/"
  9771. ],
  9772. "files": [
  9773. "src/Framework/Assert/Functions.php"
  9774. ]
  9775. },
  9776. "notification-url": "https://packagist.org/downloads/",
  9777. "license": [
  9778. "BSD-3-Clause"
  9779. ],
  9780. "authors": [
  9781. {
  9782. "name": "Sebastian Bergmann",
  9783. "email": "sebastian@phpunit.de",
  9784. "role": "lead"
  9785. }
  9786. ],
  9787. "description": "The PHP Unit Testing framework.",
  9788. "homepage": "https://phpunit.de/",
  9789. "keywords": [
  9790. "phpunit",
  9791. "testing",
  9792. "xunit"
  9793. ],
  9794. "support": {
  9795. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9796. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.0"
  9797. },
  9798. "funding": [
  9799. {
  9800. "url": "https://phpunit.de/donate.html",
  9801. "type": "custom"
  9802. },
  9803. {
  9804. "url": "https://github.com/sebastianbergmann",
  9805. "type": "github"
  9806. }
  9807. ],
  9808. "time": "2020-12-04T05:05:53+00:00"
  9809. },
  9810. {
  9811. "name": "react/promise",
  9812. "version": "v2.8.0",
  9813. "source": {
  9814. "type": "git",
  9815. "url": "https://github.com/reactphp/promise.git",
  9816. "reference": "f3cff96a19736714524ca0dd1d4130de73dbbbc4"
  9817. },
  9818. "dist": {
  9819. "type": "zip",
  9820. "url": "https://api.github.com/repos/reactphp/promise/zipball/f3cff96a19736714524ca0dd1d4130de73dbbbc4",
  9821. "reference": "f3cff96a19736714524ca0dd1d4130de73dbbbc4",
  9822. "shasum": ""
  9823. },
  9824. "require": {
  9825. "php": ">=5.4.0"
  9826. },
  9827. "require-dev": {
  9828. "phpunit/phpunit": "^7.0 || ^6.5 || ^5.7 || ^4.8.36"
  9829. },
  9830. "type": "library",
  9831. "autoload": {
  9832. "psr-4": {
  9833. "React\\Promise\\": "src/"
  9834. },
  9835. "files": [
  9836. "src/functions_include.php"
  9837. ]
  9838. },
  9839. "notification-url": "https://packagist.org/downloads/",
  9840. "license": [
  9841. "MIT"
  9842. ],
  9843. "authors": [
  9844. {
  9845. "name": "Jan Sorgalla",
  9846. "email": "jsorgalla@gmail.com"
  9847. }
  9848. ],
  9849. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  9850. "keywords": [
  9851. "promise",
  9852. "promises"
  9853. ],
  9854. "support": {
  9855. "issues": "https://github.com/reactphp/promise/issues",
  9856. "source": "https://github.com/reactphp/promise/tree/v2.8.0"
  9857. },
  9858. "time": "2020-05-12T15:16:56+00:00"
  9859. },
  9860. {
  9861. "name": "sebastian/cli-parser",
  9862. "version": "1.0.1",
  9863. "source": {
  9864. "type": "git",
  9865. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9866. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  9867. },
  9868. "dist": {
  9869. "type": "zip",
  9870. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  9871. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  9872. "shasum": ""
  9873. },
  9874. "require": {
  9875. "php": ">=7.3"
  9876. },
  9877. "require-dev": {
  9878. "phpunit/phpunit": "^9.3"
  9879. },
  9880. "type": "library",
  9881. "extra": {
  9882. "branch-alias": {
  9883. "dev-master": "1.0-dev"
  9884. }
  9885. },
  9886. "autoload": {
  9887. "classmap": [
  9888. "src/"
  9889. ]
  9890. },
  9891. "notification-url": "https://packagist.org/downloads/",
  9892. "license": [
  9893. "BSD-3-Clause"
  9894. ],
  9895. "authors": [
  9896. {
  9897. "name": "Sebastian Bergmann",
  9898. "email": "sebastian@phpunit.de",
  9899. "role": "lead"
  9900. }
  9901. ],
  9902. "description": "Library for parsing CLI options",
  9903. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9904. "support": {
  9905. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9906. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  9907. },
  9908. "funding": [
  9909. {
  9910. "url": "https://github.com/sebastianbergmann",
  9911. "type": "github"
  9912. }
  9913. ],
  9914. "time": "2020-09-28T06:08:49+00:00"
  9915. },
  9916. {
  9917. "name": "sebastian/code-unit",
  9918. "version": "1.0.8",
  9919. "source": {
  9920. "type": "git",
  9921. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9922. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  9923. },
  9924. "dist": {
  9925. "type": "zip",
  9926. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9927. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9928. "shasum": ""
  9929. },
  9930. "require": {
  9931. "php": ">=7.3"
  9932. },
  9933. "require-dev": {
  9934. "phpunit/phpunit": "^9.3"
  9935. },
  9936. "type": "library",
  9937. "extra": {
  9938. "branch-alias": {
  9939. "dev-master": "1.0-dev"
  9940. }
  9941. },
  9942. "autoload": {
  9943. "classmap": [
  9944. "src/"
  9945. ]
  9946. },
  9947. "notification-url": "https://packagist.org/downloads/",
  9948. "license": [
  9949. "BSD-3-Clause"
  9950. ],
  9951. "authors": [
  9952. {
  9953. "name": "Sebastian Bergmann",
  9954. "email": "sebastian@phpunit.de",
  9955. "role": "lead"
  9956. }
  9957. ],
  9958. "description": "Collection of value objects that represent the PHP code units",
  9959. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9960. "support": {
  9961. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9962. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  9963. },
  9964. "funding": [
  9965. {
  9966. "url": "https://github.com/sebastianbergmann",
  9967. "type": "github"
  9968. }
  9969. ],
  9970. "time": "2020-10-26T13:08:54+00:00"
  9971. },
  9972. {
  9973. "name": "sebastian/code-unit-reverse-lookup",
  9974. "version": "2.0.3",
  9975. "source": {
  9976. "type": "git",
  9977. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9978. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  9979. },
  9980. "dist": {
  9981. "type": "zip",
  9982. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9983. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9984. "shasum": ""
  9985. },
  9986. "require": {
  9987. "php": ">=7.3"
  9988. },
  9989. "require-dev": {
  9990. "phpunit/phpunit": "^9.3"
  9991. },
  9992. "type": "library",
  9993. "extra": {
  9994. "branch-alias": {
  9995. "dev-master": "2.0-dev"
  9996. }
  9997. },
  9998. "autoload": {
  9999. "classmap": [
  10000. "src/"
  10001. ]
  10002. },
  10003. "notification-url": "https://packagist.org/downloads/",
  10004. "license": [
  10005. "BSD-3-Clause"
  10006. ],
  10007. "authors": [
  10008. {
  10009. "name": "Sebastian Bergmann",
  10010. "email": "sebastian@phpunit.de"
  10011. }
  10012. ],
  10013. "description": "Looks up which function or method a line of code belongs to",
  10014. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  10015. "support": {
  10016. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  10017. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  10018. },
  10019. "funding": [
  10020. {
  10021. "url": "https://github.com/sebastianbergmann",
  10022. "type": "github"
  10023. }
  10024. ],
  10025. "time": "2020-09-28T05:30:19+00:00"
  10026. },
  10027. {
  10028. "name": "sebastian/comparator",
  10029. "version": "4.0.6",
  10030. "source": {
  10031. "type": "git",
  10032. "url": "https://github.com/sebastianbergmann/comparator.git",
  10033. "reference": "55f4261989e546dc112258c7a75935a81a7ce382"
  10034. },
  10035. "dist": {
  10036. "type": "zip",
  10037. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/55f4261989e546dc112258c7a75935a81a7ce382",
  10038. "reference": "55f4261989e546dc112258c7a75935a81a7ce382",
  10039. "shasum": ""
  10040. },
  10041. "require": {
  10042. "php": ">=7.3",
  10043. "sebastian/diff": "^4.0",
  10044. "sebastian/exporter": "^4.0"
  10045. },
  10046. "require-dev": {
  10047. "phpunit/phpunit": "^9.3"
  10048. },
  10049. "type": "library",
  10050. "extra": {
  10051. "branch-alias": {
  10052. "dev-master": "4.0-dev"
  10053. }
  10054. },
  10055. "autoload": {
  10056. "classmap": [
  10057. "src/"
  10058. ]
  10059. },
  10060. "notification-url": "https://packagist.org/downloads/",
  10061. "license": [
  10062. "BSD-3-Clause"
  10063. ],
  10064. "authors": [
  10065. {
  10066. "name": "Sebastian Bergmann",
  10067. "email": "sebastian@phpunit.de"
  10068. },
  10069. {
  10070. "name": "Jeff Welch",
  10071. "email": "whatthejeff@gmail.com"
  10072. },
  10073. {
  10074. "name": "Volker Dusch",
  10075. "email": "github@wallbash.com"
  10076. },
  10077. {
  10078. "name": "Bernhard Schussek",
  10079. "email": "bschussek@2bepublished.at"
  10080. }
  10081. ],
  10082. "description": "Provides the functionality to compare PHP values for equality",
  10083. "homepage": "https://github.com/sebastianbergmann/comparator",
  10084. "keywords": [
  10085. "comparator",
  10086. "compare",
  10087. "equality"
  10088. ],
  10089. "support": {
  10090. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  10091. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.6"
  10092. },
  10093. "funding": [
  10094. {
  10095. "url": "https://github.com/sebastianbergmann",
  10096. "type": "github"
  10097. }
  10098. ],
  10099. "time": "2020-10-26T15:49:45+00:00"
  10100. },
  10101. {
  10102. "name": "sebastian/complexity",
  10103. "version": "2.0.2",
  10104. "source": {
  10105. "type": "git",
  10106. "url": "https://github.com/sebastianbergmann/complexity.git",
  10107. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  10108. },
  10109. "dist": {
  10110. "type": "zip",
  10111. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  10112. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  10113. "shasum": ""
  10114. },
  10115. "require": {
  10116. "nikic/php-parser": "^4.7",
  10117. "php": ">=7.3"
  10118. },
  10119. "require-dev": {
  10120. "phpunit/phpunit": "^9.3"
  10121. },
  10122. "type": "library",
  10123. "extra": {
  10124. "branch-alias": {
  10125. "dev-master": "2.0-dev"
  10126. }
  10127. },
  10128. "autoload": {
  10129. "classmap": [
  10130. "src/"
  10131. ]
  10132. },
  10133. "notification-url": "https://packagist.org/downloads/",
  10134. "license": [
  10135. "BSD-3-Clause"
  10136. ],
  10137. "authors": [
  10138. {
  10139. "name": "Sebastian Bergmann",
  10140. "email": "sebastian@phpunit.de",
  10141. "role": "lead"
  10142. }
  10143. ],
  10144. "description": "Library for calculating the complexity of PHP code units",
  10145. "homepage": "https://github.com/sebastianbergmann/complexity",
  10146. "support": {
  10147. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  10148. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  10149. },
  10150. "funding": [
  10151. {
  10152. "url": "https://github.com/sebastianbergmann",
  10153. "type": "github"
  10154. }
  10155. ],
  10156. "time": "2020-10-26T15:52:27+00:00"
  10157. },
  10158. {
  10159. "name": "sebastian/diff",
  10160. "version": "4.0.4",
  10161. "source": {
  10162. "type": "git",
  10163. "url": "https://github.com/sebastianbergmann/diff.git",
  10164. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  10165. },
  10166. "dist": {
  10167. "type": "zip",
  10168. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  10169. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  10170. "shasum": ""
  10171. },
  10172. "require": {
  10173. "php": ">=7.3"
  10174. },
  10175. "require-dev": {
  10176. "phpunit/phpunit": "^9.3",
  10177. "symfony/process": "^4.2 || ^5"
  10178. },
  10179. "type": "library",
  10180. "extra": {
  10181. "branch-alias": {
  10182. "dev-master": "4.0-dev"
  10183. }
  10184. },
  10185. "autoload": {
  10186. "classmap": [
  10187. "src/"
  10188. ]
  10189. },
  10190. "notification-url": "https://packagist.org/downloads/",
  10191. "license": [
  10192. "BSD-3-Clause"
  10193. ],
  10194. "authors": [
  10195. {
  10196. "name": "Sebastian Bergmann",
  10197. "email": "sebastian@phpunit.de"
  10198. },
  10199. {
  10200. "name": "Kore Nordmann",
  10201. "email": "mail@kore-nordmann.de"
  10202. }
  10203. ],
  10204. "description": "Diff implementation",
  10205. "homepage": "https://github.com/sebastianbergmann/diff",
  10206. "keywords": [
  10207. "diff",
  10208. "udiff",
  10209. "unidiff",
  10210. "unified diff"
  10211. ],
  10212. "support": {
  10213. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10214. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  10215. },
  10216. "funding": [
  10217. {
  10218. "url": "https://github.com/sebastianbergmann",
  10219. "type": "github"
  10220. }
  10221. ],
  10222. "time": "2020-10-26T13:10:38+00:00"
  10223. },
  10224. {
  10225. "name": "sebastian/environment",
  10226. "version": "5.1.3",
  10227. "source": {
  10228. "type": "git",
  10229. "url": "https://github.com/sebastianbergmann/environment.git",
  10230. "reference": "388b6ced16caa751030f6a69e588299fa09200ac"
  10231. },
  10232. "dist": {
  10233. "type": "zip",
  10234. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/388b6ced16caa751030f6a69e588299fa09200ac",
  10235. "reference": "388b6ced16caa751030f6a69e588299fa09200ac",
  10236. "shasum": ""
  10237. },
  10238. "require": {
  10239. "php": ">=7.3"
  10240. },
  10241. "require-dev": {
  10242. "phpunit/phpunit": "^9.3"
  10243. },
  10244. "suggest": {
  10245. "ext-posix": "*"
  10246. },
  10247. "type": "library",
  10248. "extra": {
  10249. "branch-alias": {
  10250. "dev-master": "5.1-dev"
  10251. }
  10252. },
  10253. "autoload": {
  10254. "classmap": [
  10255. "src/"
  10256. ]
  10257. },
  10258. "notification-url": "https://packagist.org/downloads/",
  10259. "license": [
  10260. "BSD-3-Clause"
  10261. ],
  10262. "authors": [
  10263. {
  10264. "name": "Sebastian Bergmann",
  10265. "email": "sebastian@phpunit.de"
  10266. }
  10267. ],
  10268. "description": "Provides functionality to handle HHVM/PHP environments",
  10269. "homepage": "http://www.github.com/sebastianbergmann/environment",
  10270. "keywords": [
  10271. "Xdebug",
  10272. "environment",
  10273. "hhvm"
  10274. ],
  10275. "support": {
  10276. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10277. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.3"
  10278. },
  10279. "funding": [
  10280. {
  10281. "url": "https://github.com/sebastianbergmann",
  10282. "type": "github"
  10283. }
  10284. ],
  10285. "time": "2020-09-28T05:52:38+00:00"
  10286. },
  10287. {
  10288. "name": "sebastian/exporter",
  10289. "version": "4.0.3",
  10290. "source": {
  10291. "type": "git",
  10292. "url": "https://github.com/sebastianbergmann/exporter.git",
  10293. "reference": "d89cc98761b8cb5a1a235a6b703ae50d34080e65"
  10294. },
  10295. "dist": {
  10296. "type": "zip",
  10297. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/d89cc98761b8cb5a1a235a6b703ae50d34080e65",
  10298. "reference": "d89cc98761b8cb5a1a235a6b703ae50d34080e65",
  10299. "shasum": ""
  10300. },
  10301. "require": {
  10302. "php": ">=7.3",
  10303. "sebastian/recursion-context": "^4.0"
  10304. },
  10305. "require-dev": {
  10306. "ext-mbstring": "*",
  10307. "phpunit/phpunit": "^9.3"
  10308. },
  10309. "type": "library",
  10310. "extra": {
  10311. "branch-alias": {
  10312. "dev-master": "4.0-dev"
  10313. }
  10314. },
  10315. "autoload": {
  10316. "classmap": [
  10317. "src/"
  10318. ]
  10319. },
  10320. "notification-url": "https://packagist.org/downloads/",
  10321. "license": [
  10322. "BSD-3-Clause"
  10323. ],
  10324. "authors": [
  10325. {
  10326. "name": "Sebastian Bergmann",
  10327. "email": "sebastian@phpunit.de"
  10328. },
  10329. {
  10330. "name": "Jeff Welch",
  10331. "email": "whatthejeff@gmail.com"
  10332. },
  10333. {
  10334. "name": "Volker Dusch",
  10335. "email": "github@wallbash.com"
  10336. },
  10337. {
  10338. "name": "Adam Harvey",
  10339. "email": "aharvey@php.net"
  10340. },
  10341. {
  10342. "name": "Bernhard Schussek",
  10343. "email": "bschussek@gmail.com"
  10344. }
  10345. ],
  10346. "description": "Provides the functionality to export PHP variables for visualization",
  10347. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  10348. "keywords": [
  10349. "export",
  10350. "exporter"
  10351. ],
  10352. "support": {
  10353. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10354. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.3"
  10355. },
  10356. "funding": [
  10357. {
  10358. "url": "https://github.com/sebastianbergmann",
  10359. "type": "github"
  10360. }
  10361. ],
  10362. "time": "2020-09-28T05:24:23+00:00"
  10363. },
  10364. {
  10365. "name": "sebastian/global-state",
  10366. "version": "5.0.2",
  10367. "source": {
  10368. "type": "git",
  10369. "url": "https://github.com/sebastianbergmann/global-state.git",
  10370. "reference": "a90ccbddffa067b51f574dea6eb25d5680839455"
  10371. },
  10372. "dist": {
  10373. "type": "zip",
  10374. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/a90ccbddffa067b51f574dea6eb25d5680839455",
  10375. "reference": "a90ccbddffa067b51f574dea6eb25d5680839455",
  10376. "shasum": ""
  10377. },
  10378. "require": {
  10379. "php": ">=7.3",
  10380. "sebastian/object-reflector": "^2.0",
  10381. "sebastian/recursion-context": "^4.0"
  10382. },
  10383. "require-dev": {
  10384. "ext-dom": "*",
  10385. "phpunit/phpunit": "^9.3"
  10386. },
  10387. "suggest": {
  10388. "ext-uopz": "*"
  10389. },
  10390. "type": "library",
  10391. "extra": {
  10392. "branch-alias": {
  10393. "dev-master": "5.0-dev"
  10394. }
  10395. },
  10396. "autoload": {
  10397. "classmap": [
  10398. "src/"
  10399. ]
  10400. },
  10401. "notification-url": "https://packagist.org/downloads/",
  10402. "license": [
  10403. "BSD-3-Clause"
  10404. ],
  10405. "authors": [
  10406. {
  10407. "name": "Sebastian Bergmann",
  10408. "email": "sebastian@phpunit.de"
  10409. }
  10410. ],
  10411. "description": "Snapshotting of global state",
  10412. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  10413. "keywords": [
  10414. "global state"
  10415. ],
  10416. "support": {
  10417. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10418. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.2"
  10419. },
  10420. "funding": [
  10421. {
  10422. "url": "https://github.com/sebastianbergmann",
  10423. "type": "github"
  10424. }
  10425. ],
  10426. "time": "2020-10-26T15:55:19+00:00"
  10427. },
  10428. {
  10429. "name": "sebastian/lines-of-code",
  10430. "version": "1.0.3",
  10431. "source": {
  10432. "type": "git",
  10433. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10434. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  10435. },
  10436. "dist": {
  10437. "type": "zip",
  10438. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  10439. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  10440. "shasum": ""
  10441. },
  10442. "require": {
  10443. "nikic/php-parser": "^4.6",
  10444. "php": ">=7.3"
  10445. },
  10446. "require-dev": {
  10447. "phpunit/phpunit": "^9.3"
  10448. },
  10449. "type": "library",
  10450. "extra": {
  10451. "branch-alias": {
  10452. "dev-master": "1.0-dev"
  10453. }
  10454. },
  10455. "autoload": {
  10456. "classmap": [
  10457. "src/"
  10458. ]
  10459. },
  10460. "notification-url": "https://packagist.org/downloads/",
  10461. "license": [
  10462. "BSD-3-Clause"
  10463. ],
  10464. "authors": [
  10465. {
  10466. "name": "Sebastian Bergmann",
  10467. "email": "sebastian@phpunit.de",
  10468. "role": "lead"
  10469. }
  10470. ],
  10471. "description": "Library for counting the lines of code in PHP source code",
  10472. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10473. "support": {
  10474. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10475. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  10476. },
  10477. "funding": [
  10478. {
  10479. "url": "https://github.com/sebastianbergmann",
  10480. "type": "github"
  10481. }
  10482. ],
  10483. "time": "2020-11-28T06:42:11+00:00"
  10484. },
  10485. {
  10486. "name": "sebastian/object-enumerator",
  10487. "version": "4.0.4",
  10488. "source": {
  10489. "type": "git",
  10490. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10491. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  10492. },
  10493. "dist": {
  10494. "type": "zip",
  10495. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  10496. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  10497. "shasum": ""
  10498. },
  10499. "require": {
  10500. "php": ">=7.3",
  10501. "sebastian/object-reflector": "^2.0",
  10502. "sebastian/recursion-context": "^4.0"
  10503. },
  10504. "require-dev": {
  10505. "phpunit/phpunit": "^9.3"
  10506. },
  10507. "type": "library",
  10508. "extra": {
  10509. "branch-alias": {
  10510. "dev-master": "4.0-dev"
  10511. }
  10512. },
  10513. "autoload": {
  10514. "classmap": [
  10515. "src/"
  10516. ]
  10517. },
  10518. "notification-url": "https://packagist.org/downloads/",
  10519. "license": [
  10520. "BSD-3-Clause"
  10521. ],
  10522. "authors": [
  10523. {
  10524. "name": "Sebastian Bergmann",
  10525. "email": "sebastian@phpunit.de"
  10526. }
  10527. ],
  10528. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10529. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10530. "support": {
  10531. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10532. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  10533. },
  10534. "funding": [
  10535. {
  10536. "url": "https://github.com/sebastianbergmann",
  10537. "type": "github"
  10538. }
  10539. ],
  10540. "time": "2020-10-26T13:12:34+00:00"
  10541. },
  10542. {
  10543. "name": "sebastian/object-reflector",
  10544. "version": "2.0.4",
  10545. "source": {
  10546. "type": "git",
  10547. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10548. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  10549. },
  10550. "dist": {
  10551. "type": "zip",
  10552. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10553. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  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": "2.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": "sebastian@phpunit.de"
  10581. }
  10582. ],
  10583. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10584. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10585. "support": {
  10586. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10587. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  10588. },
  10589. "funding": [
  10590. {
  10591. "url": "https://github.com/sebastianbergmann",
  10592. "type": "github"
  10593. }
  10594. ],
  10595. "time": "2020-10-26T13:14:26+00:00"
  10596. },
  10597. {
  10598. "name": "sebastian/recursion-context",
  10599. "version": "4.0.4",
  10600. "source": {
  10601. "type": "git",
  10602. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10603. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172"
  10604. },
  10605. "dist": {
  10606. "type": "zip",
  10607. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172",
  10608. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172",
  10609. "shasum": ""
  10610. },
  10611. "require": {
  10612. "php": ">=7.3"
  10613. },
  10614. "require-dev": {
  10615. "phpunit/phpunit": "^9.3"
  10616. },
  10617. "type": "library",
  10618. "extra": {
  10619. "branch-alias": {
  10620. "dev-master": "4.0-dev"
  10621. }
  10622. },
  10623. "autoload": {
  10624. "classmap": [
  10625. "src/"
  10626. ]
  10627. },
  10628. "notification-url": "https://packagist.org/downloads/",
  10629. "license": [
  10630. "BSD-3-Clause"
  10631. ],
  10632. "authors": [
  10633. {
  10634. "name": "Sebastian Bergmann",
  10635. "email": "sebastian@phpunit.de"
  10636. },
  10637. {
  10638. "name": "Jeff Welch",
  10639. "email": "whatthejeff@gmail.com"
  10640. },
  10641. {
  10642. "name": "Adam Harvey",
  10643. "email": "aharvey@php.net"
  10644. }
  10645. ],
  10646. "description": "Provides functionality to recursively process PHP variables",
  10647. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  10648. "support": {
  10649. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10650. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4"
  10651. },
  10652. "funding": [
  10653. {
  10654. "url": "https://github.com/sebastianbergmann",
  10655. "type": "github"
  10656. }
  10657. ],
  10658. "time": "2020-10-26T13:17:30+00:00"
  10659. },
  10660. {
  10661. "name": "sebastian/resource-operations",
  10662. "version": "3.0.3",
  10663. "source": {
  10664. "type": "git",
  10665. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  10666. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  10667. },
  10668. "dist": {
  10669. "type": "zip",
  10670. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  10671. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  10672. "shasum": ""
  10673. },
  10674. "require": {
  10675. "php": ">=7.3"
  10676. },
  10677. "require-dev": {
  10678. "phpunit/phpunit": "^9.0"
  10679. },
  10680. "type": "library",
  10681. "extra": {
  10682. "branch-alias": {
  10683. "dev-master": "3.0-dev"
  10684. }
  10685. },
  10686. "autoload": {
  10687. "classmap": [
  10688. "src/"
  10689. ]
  10690. },
  10691. "notification-url": "https://packagist.org/downloads/",
  10692. "license": [
  10693. "BSD-3-Clause"
  10694. ],
  10695. "authors": [
  10696. {
  10697. "name": "Sebastian Bergmann",
  10698. "email": "sebastian@phpunit.de"
  10699. }
  10700. ],
  10701. "description": "Provides a list of PHP built-in functions that operate on resources",
  10702. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  10703. "support": {
  10704. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  10705. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  10706. },
  10707. "funding": [
  10708. {
  10709. "url": "https://github.com/sebastianbergmann",
  10710. "type": "github"
  10711. }
  10712. ],
  10713. "time": "2020-09-28T06:45:17+00:00"
  10714. },
  10715. {
  10716. "name": "sebastian/type",
  10717. "version": "2.3.1",
  10718. "source": {
  10719. "type": "git",
  10720. "url": "https://github.com/sebastianbergmann/type.git",
  10721. "reference": "81cd61ab7bbf2de744aba0ea61fae32f721df3d2"
  10722. },
  10723. "dist": {
  10724. "type": "zip",
  10725. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/81cd61ab7bbf2de744aba0ea61fae32f721df3d2",
  10726. "reference": "81cd61ab7bbf2de744aba0ea61fae32f721df3d2",
  10727. "shasum": ""
  10728. },
  10729. "require": {
  10730. "php": ">=7.3"
  10731. },
  10732. "require-dev": {
  10733. "phpunit/phpunit": "^9.3"
  10734. },
  10735. "type": "library",
  10736. "extra": {
  10737. "branch-alias": {
  10738. "dev-master": "2.3-dev"
  10739. }
  10740. },
  10741. "autoload": {
  10742. "classmap": [
  10743. "src/"
  10744. ]
  10745. },
  10746. "notification-url": "https://packagist.org/downloads/",
  10747. "license": [
  10748. "BSD-3-Clause"
  10749. ],
  10750. "authors": [
  10751. {
  10752. "name": "Sebastian Bergmann",
  10753. "email": "sebastian@phpunit.de",
  10754. "role": "lead"
  10755. }
  10756. ],
  10757. "description": "Collection of value objects that represent the types of the PHP type system",
  10758. "homepage": "https://github.com/sebastianbergmann/type",
  10759. "support": {
  10760. "issues": "https://github.com/sebastianbergmann/type/issues",
  10761. "source": "https://github.com/sebastianbergmann/type/tree/2.3.1"
  10762. },
  10763. "funding": [
  10764. {
  10765. "url": "https://github.com/sebastianbergmann",
  10766. "type": "github"
  10767. }
  10768. ],
  10769. "time": "2020-10-26T13:18:59+00:00"
  10770. },
  10771. {
  10772. "name": "sebastian/version",
  10773. "version": "3.0.2",
  10774. "source": {
  10775. "type": "git",
  10776. "url": "https://github.com/sebastianbergmann/version.git",
  10777. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  10778. },
  10779. "dist": {
  10780. "type": "zip",
  10781. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  10782. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  10783. "shasum": ""
  10784. },
  10785. "require": {
  10786. "php": ">=7.3"
  10787. },
  10788. "type": "library",
  10789. "extra": {
  10790. "branch-alias": {
  10791. "dev-master": "3.0-dev"
  10792. }
  10793. },
  10794. "autoload": {
  10795. "classmap": [
  10796. "src/"
  10797. ]
  10798. },
  10799. "notification-url": "https://packagist.org/downloads/",
  10800. "license": [
  10801. "BSD-3-Clause"
  10802. ],
  10803. "authors": [
  10804. {
  10805. "name": "Sebastian Bergmann",
  10806. "email": "sebastian@phpunit.de",
  10807. "role": "lead"
  10808. }
  10809. ],
  10810. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10811. "homepage": "https://github.com/sebastianbergmann/version",
  10812. "support": {
  10813. "issues": "https://github.com/sebastianbergmann/version/issues",
  10814. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  10815. },
  10816. "funding": [
  10817. {
  10818. "url": "https://github.com/sebastianbergmann",
  10819. "type": "github"
  10820. }
  10821. ],
  10822. "time": "2020-09-28T06:39:44+00:00"
  10823. },
  10824. {
  10825. "name": "seld/jsonlint",
  10826. "version": "1.8.3",
  10827. "source": {
  10828. "type": "git",
  10829. "url": "https://github.com/Seldaek/jsonlint.git",
  10830. "reference": "9ad6ce79c342fbd44df10ea95511a1b24dee5b57"
  10831. },
  10832. "dist": {
  10833. "type": "zip",
  10834. "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/9ad6ce79c342fbd44df10ea95511a1b24dee5b57",
  10835. "reference": "9ad6ce79c342fbd44df10ea95511a1b24dee5b57",
  10836. "shasum": ""
  10837. },
  10838. "require": {
  10839. "php": "^5.3 || ^7.0 || ^8.0"
  10840. },
  10841. "require-dev": {
  10842. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  10843. },
  10844. "bin": [
  10845. "bin/jsonlint"
  10846. ],
  10847. "type": "library",
  10848. "autoload": {
  10849. "psr-4": {
  10850. "Seld\\JsonLint\\": "src/Seld/JsonLint/"
  10851. }
  10852. },
  10853. "notification-url": "https://packagist.org/downloads/",
  10854. "license": [
  10855. "MIT"
  10856. ],
  10857. "authors": [
  10858. {
  10859. "name": "Jordi Boggiano",
  10860. "email": "j.boggiano@seld.be",
  10861. "homepage": "http://seld.be"
  10862. }
  10863. ],
  10864. "description": "JSON Linter",
  10865. "keywords": [
  10866. "json",
  10867. "linter",
  10868. "parser",
  10869. "validator"
  10870. ],
  10871. "support": {
  10872. "issues": "https://github.com/Seldaek/jsonlint/issues",
  10873. "source": "https://github.com/Seldaek/jsonlint/tree/1.8.3"
  10874. },
  10875. "funding": [
  10876. {
  10877. "url": "https://github.com/Seldaek",
  10878. "type": "github"
  10879. },
  10880. {
  10881. "url": "https://tidelift.com/funding/github/packagist/seld/jsonlint",
  10882. "type": "tidelift"
  10883. }
  10884. ],
  10885. "time": "2020-11-11T09:19:24+00:00"
  10886. },
  10887. {
  10888. "name": "seld/phar-utils",
  10889. "version": "1.1.1",
  10890. "source": {
  10891. "type": "git",
  10892. "url": "https://github.com/Seldaek/phar-utils.git",
  10893. "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796"
  10894. },
  10895. "dist": {
  10896. "type": "zip",
  10897. "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/8674b1d84ffb47cc59a101f5d5a3b61e87d23796",
  10898. "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796",
  10899. "shasum": ""
  10900. },
  10901. "require": {
  10902. "php": ">=5.3"
  10903. },
  10904. "type": "library",
  10905. "extra": {
  10906. "branch-alias": {
  10907. "dev-master": "1.x-dev"
  10908. }
  10909. },
  10910. "autoload": {
  10911. "psr-4": {
  10912. "Seld\\PharUtils\\": "src/"
  10913. }
  10914. },
  10915. "notification-url": "https://packagist.org/downloads/",
  10916. "license": [
  10917. "MIT"
  10918. ],
  10919. "authors": [
  10920. {
  10921. "name": "Jordi Boggiano",
  10922. "email": "j.boggiano@seld.be"
  10923. }
  10924. ],
  10925. "description": "PHAR file format utilities, for when PHP phars you up",
  10926. "keywords": [
  10927. "phar"
  10928. ],
  10929. "support": {
  10930. "issues": "https://github.com/Seldaek/phar-utils/issues",
  10931. "source": "https://github.com/Seldaek/phar-utils/tree/master"
  10932. },
  10933. "time": "2020-07-07T18:42:57+00:00"
  10934. },
  10935. {
  10936. "name": "symfony/debug",
  10937. "version": "v4.4.17",
  10938. "source": {
  10939. "type": "git",
  10940. "url": "https://github.com/symfony/debug.git",
  10941. "reference": "65fe7b49868378319b82da3035fb30801b931c47"
  10942. },
  10943. "dist": {
  10944. "type": "zip",
  10945. "url": "https://api.github.com/repos/symfony/debug/zipball/65fe7b49868378319b82da3035fb30801b931c47",
  10946. "reference": "65fe7b49868378319b82da3035fb30801b931c47",
  10947. "shasum": ""
  10948. },
  10949. "require": {
  10950. "php": ">=7.1.3",
  10951. "psr/log": "~1.0",
  10952. "symfony/polyfill-php80": "^1.15"
  10953. },
  10954. "conflict": {
  10955. "symfony/http-kernel": "<3.4"
  10956. },
  10957. "require-dev": {
  10958. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  10959. },
  10960. "type": "library",
  10961. "autoload": {
  10962. "psr-4": {
  10963. "Symfony\\Component\\Debug\\": ""
  10964. },
  10965. "exclude-from-classmap": [
  10966. "/Tests/"
  10967. ]
  10968. },
  10969. "notification-url": "https://packagist.org/downloads/",
  10970. "license": [
  10971. "MIT"
  10972. ],
  10973. "authors": [
  10974. {
  10975. "name": "Fabien Potencier",
  10976. "email": "fabien@symfony.com"
  10977. },
  10978. {
  10979. "name": "Symfony Community",
  10980. "homepage": "https://symfony.com/contributors"
  10981. }
  10982. ],
  10983. "description": "Symfony Debug Component",
  10984. "homepage": "https://symfony.com",
  10985. "support": {
  10986. "source": "https://github.com/symfony/debug/tree/v4.4.17"
  10987. },
  10988. "funding": [
  10989. {
  10990. "url": "https://symfony.com/sponsor",
  10991. "type": "custom"
  10992. },
  10993. {
  10994. "url": "https://github.com/fabpot",
  10995. "type": "github"
  10996. },
  10997. {
  10998. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10999. "type": "tidelift"
  11000. }
  11001. ],
  11002. "time": "2020-10-28T20:42:29+00:00"
  11003. },
  11004. {
  11005. "name": "symfony/filesystem",
  11006. "version": "v5.2.0",
  11007. "source": {
  11008. "type": "git",
  11009. "url": "https://github.com/symfony/filesystem.git",
  11010. "reference": "bb92ba7f38b037e531908590a858a04d85c0e238"
  11011. },
  11012. "dist": {
  11013. "type": "zip",
  11014. "url": "https://api.github.com/repos/symfony/filesystem/zipball/bb92ba7f38b037e531908590a858a04d85c0e238",
  11015. "reference": "bb92ba7f38b037e531908590a858a04d85c0e238",
  11016. "shasum": ""
  11017. },
  11018. "require": {
  11019. "php": ">=7.2.5",
  11020. "symfony/polyfill-ctype": "~1.8"
  11021. },
  11022. "type": "library",
  11023. "autoload": {
  11024. "psr-4": {
  11025. "Symfony\\Component\\Filesystem\\": ""
  11026. },
  11027. "exclude-from-classmap": [
  11028. "/Tests/"
  11029. ]
  11030. },
  11031. "notification-url": "https://packagist.org/downloads/",
  11032. "license": [
  11033. "MIT"
  11034. ],
  11035. "authors": [
  11036. {
  11037. "name": "Fabien Potencier",
  11038. "email": "fabien@symfony.com"
  11039. },
  11040. {
  11041. "name": "Symfony Community",
  11042. "homepage": "https://symfony.com/contributors"
  11043. }
  11044. ],
  11045. "description": "Symfony Filesystem Component",
  11046. "homepage": "https://symfony.com",
  11047. "support": {
  11048. "source": "https://github.com/symfony/filesystem/tree/v5.2.0"
  11049. },
  11050. "funding": [
  11051. {
  11052. "url": "https://symfony.com/sponsor",
  11053. "type": "custom"
  11054. },
  11055. {
  11056. "url": "https://github.com/fabpot",
  11057. "type": "github"
  11058. },
  11059. {
  11060. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11061. "type": "tidelift"
  11062. }
  11063. ],
  11064. "time": "2020-11-12T09:58:18+00:00"
  11065. },
  11066. {
  11067. "name": "theseer/tokenizer",
  11068. "version": "1.2.0",
  11069. "source": {
  11070. "type": "git",
  11071. "url": "https://github.com/theseer/tokenizer.git",
  11072. "reference": "75a63c33a8577608444246075ea0af0d052e452a"
  11073. },
  11074. "dist": {
  11075. "type": "zip",
  11076. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a",
  11077. "reference": "75a63c33a8577608444246075ea0af0d052e452a",
  11078. "shasum": ""
  11079. },
  11080. "require": {
  11081. "ext-dom": "*",
  11082. "ext-tokenizer": "*",
  11083. "ext-xmlwriter": "*",
  11084. "php": "^7.2 || ^8.0"
  11085. },
  11086. "type": "library",
  11087. "autoload": {
  11088. "classmap": [
  11089. "src/"
  11090. ]
  11091. },
  11092. "notification-url": "https://packagist.org/downloads/",
  11093. "license": [
  11094. "BSD-3-Clause"
  11095. ],
  11096. "authors": [
  11097. {
  11098. "name": "Arne Blankerts",
  11099. "email": "arne@blankerts.de",
  11100. "role": "Developer"
  11101. }
  11102. ],
  11103. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11104. "support": {
  11105. "issues": "https://github.com/theseer/tokenizer/issues",
  11106. "source": "https://github.com/theseer/tokenizer/tree/master"
  11107. },
  11108. "funding": [
  11109. {
  11110. "url": "https://github.com/theseer",
  11111. "type": "github"
  11112. }
  11113. ],
  11114. "time": "2020-07-12T23:59:07+00:00"
  11115. },
  11116. {
  11117. "name": "webmozart/assert",
  11118. "version": "1.9.1",
  11119. "source": {
  11120. "type": "git",
  11121. "url": "https://github.com/webmozart/assert.git",
  11122. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389"
  11123. },
  11124. "dist": {
  11125. "type": "zip",
  11126. "url": "https://api.github.com/repos/webmozart/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389",
  11127. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389",
  11128. "shasum": ""
  11129. },
  11130. "require": {
  11131. "php": "^5.3.3 || ^7.0 || ^8.0",
  11132. "symfony/polyfill-ctype": "^1.8"
  11133. },
  11134. "conflict": {
  11135. "phpstan/phpstan": "<0.12.20",
  11136. "vimeo/psalm": "<3.9.1"
  11137. },
  11138. "require-dev": {
  11139. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  11140. },
  11141. "type": "library",
  11142. "autoload": {
  11143. "psr-4": {
  11144. "Webmozart\\Assert\\": "src/"
  11145. }
  11146. },
  11147. "notification-url": "https://packagist.org/downloads/",
  11148. "license": [
  11149. "MIT"
  11150. ],
  11151. "authors": [
  11152. {
  11153. "name": "Bernhard Schussek",
  11154. "email": "bschussek@gmail.com"
  11155. }
  11156. ],
  11157. "description": "Assertions to validate method input/output with nice error messages.",
  11158. "keywords": [
  11159. "assert",
  11160. "check",
  11161. "validate"
  11162. ],
  11163. "support": {
  11164. "issues": "https://github.com/webmozart/assert/issues",
  11165. "source": "https://github.com/webmozart/assert/tree/master"
  11166. },
  11167. "time": "2020-07-08T17:02:28+00:00"
  11168. }
  11169. ],
  11170. "aliases": [],
  11171. "minimum-stability": "dev",
  11172. "stability-flags": [],
  11173. "prefer-stable": true,
  11174. "prefer-lowest": false,
  11175. "platform": {
  11176. "php": "^7.2.5|^8.0",
  11177. "ext-json": "*",
  11178. "ext-mbstring": "*",
  11179. "ext-openssl": "*",
  11180. "ext-simplexml": "*"
  11181. },
  11182. "platform-dev": [],
  11183. "plugin-api-version": "2.0.0"
  11184. }