composer.lock 398 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169
  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.2.3",
  1417. "source": {
  1418. "type": "git",
  1419. "url": "https://github.com/chrislim2888/IP2Location-PHP-Module.git",
  1420. "reference": "532749399c73b664ca8b24770b40b6c479131870"
  1421. },
  1422. "dist": {
  1423. "type": "zip",
  1424. "url": "https://api.github.com/repos/chrislim2888/IP2Location-PHP-Module/zipball/532749399c73b664ca8b24770b40b6c479131870",
  1425. "reference": "532749399c73b664ca8b24770b40b6c479131870",
  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.2.3"
  1455. },
  1456. "time": "2020-09-23T23:04:28+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.102",
  1511. "source": {
  1512. "type": "git",
  1513. "url": "https://github.com/JayBizzle/Crawler-Detect.git",
  1514. "reference": "346cfd72d11bb41f15e82654e532dc55360612ac"
  1515. },
  1516. "dist": {
  1517. "type": "zip",
  1518. "url": "https://api.github.com/repos/JayBizzle/Crawler-Detect/zipball/346cfd72d11bb41f15e82654e532dc55360612ac",
  1519. "reference": "346cfd72d11bb41f15e82654e532dc55360612ac",
  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.102"
  1557. },
  1558. "time": "2020-11-04T19:23:01+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.8",
  1646. "source": {
  1647. "type": "git",
  1648. "url": "https://github.com/Laravel-Lang/lang.git",
  1649. "reference": "c1519eb78139869ab8829912adde5f58ca09552f"
  1650. },
  1651. "dist": {
  1652. "type": "zip",
  1653. "url": "https://api.github.com/repos/Laravel-Lang/lang/zipball/c1519eb78139869ab8829912adde5f58ca09552f",
  1654. "reference": "c1519eb78139869ab8829912adde5f58ca09552f",
  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.8"
  1685. },
  1686. "time": "2020-10-11T08:55:55+00:00"
  1687. },
  1688. {
  1689. "name": "laravel/framework",
  1690. "version": "v7.29.3",
  1691. "source": {
  1692. "type": "git",
  1693. "url": "https://github.com/laravel/framework.git",
  1694. "reference": "93f6d565a07045baa0e4b941ae1f733cd5984d65"
  1695. },
  1696. "dist": {
  1697. "type": "zip",
  1698. "url": "https://api.github.com/repos/laravel/framework/zipball/93f6d565a07045baa0e4b941ae1f733cd5984d65",
  1699. "reference": "93f6d565a07045baa0e4b941ae1f733cd5984d65",
  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.0",
  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.0).",
  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-11-03T14:12:58+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.41.5",
  2895. "source": {
  2896. "type": "git",
  2897. "url": "https://github.com/briannesbitt/Carbon.git",
  2898. "reference": "c4a9caf97cfc53adfc219043bcecf42bc663acee"
  2899. },
  2900. "dist": {
  2901. "type": "zip",
  2902. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/c4a9caf97cfc53adfc219043bcecf42bc663acee",
  2903. "reference": "c4a9caf97cfc53adfc219043bcecf42bc663acee",
  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.35",
  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-10-23T06:02:30+00:00"
  2984. },
  2985. {
  2986. "name": "nikic/php-parser",
  2987. "version": "v4.10.2",
  2988. "source": {
  2989. "type": "git",
  2990. "url": "https://github.com/nikic/PHP-Parser.git",
  2991. "reference": "658f1be311a230e0907f5dfe0213742aff0596de"
  2992. },
  2993. "dist": {
  2994. "type": "zip",
  2995. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/658f1be311a230e0907f5dfe0213742aff0596de",
  2996. "reference": "658f1be311a230e0907f5dfe0213742aff0596de",
  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.2"
  3038. },
  3039. "time": "2020-09-26T10:30:38+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.4",
  3707. "source": {
  3708. "type": "git",
  3709. "url": "https://github.com/bobthecow/psysh.git",
  3710. "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560"
  3711. },
  3712. "dist": {
  3713. "type": "zip",
  3714. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/a8aec1b2981ab66882a01cce36a49b6317dc3560",
  3715. "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560",
  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/master"
  3777. },
  3778. "time": "2020-05-03T19:32:03+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.17.0",
  4116. "source": {
  4117. "type": "git",
  4118. "url": "https://github.com/spatie/laravel-permission.git",
  4119. "reference": "35d40a45e49f5713f477823b571e05ef6a3a0394"
  4120. },
  4121. "dist": {
  4122. "type": "zip",
  4123. "url": "https://api.github.com/repos/spatie/laravel-permission/zipball/35d40a45e49f5713f477823b571e05ef6a3a0394",
  4124. "reference": "35d40a45e49f5713f477823b571e05ef6a3a0394",
  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"
  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.17.0"
  4182. },
  4183. "funding": [
  4184. {
  4185. "url": "https://spatie.be/open-source/support-us",
  4186. "type": "custom"
  4187. }
  4188. ],
  4189. "time": "2020-09-16T16:47:18+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.62.0",
  4253. "source": {
  4254. "type": "git",
  4255. "url": "https://github.com/stripe/stripe-php.git",
  4256. "reference": "9c2fc846d5b2719945e825228474f15314c0fed6"
  4257. },
  4258. "dist": {
  4259. "type": "zip",
  4260. "url": "https://api.github.com/repos/stripe/stripe-php/zipball/9c2fc846d5b2719945e825228474f15314c0fed6",
  4261. "reference": "9c2fc846d5b2719945e825228474f15314c0fed6",
  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.62.0"
  4308. },
  4309. "time": "2020-11-09T16:57:44+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.1.8",
  4380. "source": {
  4381. "type": "git",
  4382. "url": "https://github.com/symfony/console.git",
  4383. "reference": "e0b2c29c0fa6a69089209bbe8fcff4df2a313d0e"
  4384. },
  4385. "dist": {
  4386. "type": "zip",
  4387. "url": "https://api.github.com/repos/symfony/console/zipball/e0b2c29c0fa6a69089209bbe8fcff4df2a313d0e",
  4388. "reference": "e0b2c29c0fa6a69089209bbe8fcff4df2a313d0e",
  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. "support": {
  4450. "source": "https://github.com/symfony/console/tree/v5.1.8"
  4451. },
  4452. "funding": [
  4453. {
  4454. "url": "https://symfony.com/sponsor",
  4455. "type": "custom"
  4456. },
  4457. {
  4458. "url": "https://github.com/fabpot",
  4459. "type": "github"
  4460. },
  4461. {
  4462. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4463. "type": "tidelift"
  4464. }
  4465. ],
  4466. "time": "2020-10-24T12:01:57+00:00"
  4467. },
  4468. {
  4469. "name": "symfony/css-selector",
  4470. "version": "v5.1.8",
  4471. "source": {
  4472. "type": "git",
  4473. "url": "https://github.com/symfony/css-selector.git",
  4474. "reference": "6cbebda22ffc0d4bb8fea0c1311c2ca54c4c8fa0"
  4475. },
  4476. "dist": {
  4477. "type": "zip",
  4478. "url": "https://api.github.com/repos/symfony/css-selector/zipball/6cbebda22ffc0d4bb8fea0c1311c2ca54c4c8fa0",
  4479. "reference": "6cbebda22ffc0d4bb8fea0c1311c2ca54c4c8fa0",
  4480. "shasum": ""
  4481. },
  4482. "require": {
  4483. "php": ">=7.2.5"
  4484. },
  4485. "type": "library",
  4486. "autoload": {
  4487. "psr-4": {
  4488. "Symfony\\Component\\CssSelector\\": ""
  4489. },
  4490. "exclude-from-classmap": [
  4491. "/Tests/"
  4492. ]
  4493. },
  4494. "notification-url": "https://packagist.org/downloads/",
  4495. "license": [
  4496. "MIT"
  4497. ],
  4498. "authors": [
  4499. {
  4500. "name": "Fabien Potencier",
  4501. "email": "fabien@symfony.com"
  4502. },
  4503. {
  4504. "name": "Jean-François Simon",
  4505. "email": "jeanfrancois.simon@sensiolabs.com"
  4506. },
  4507. {
  4508. "name": "Symfony Community",
  4509. "homepage": "https://symfony.com/contributors"
  4510. }
  4511. ],
  4512. "description": "Symfony CssSelector Component",
  4513. "homepage": "https://symfony.com",
  4514. "support": {
  4515. "source": "https://github.com/symfony/css-selector/tree/v5.1.8"
  4516. },
  4517. "funding": [
  4518. {
  4519. "url": "https://symfony.com/sponsor",
  4520. "type": "custom"
  4521. },
  4522. {
  4523. "url": "https://github.com/fabpot",
  4524. "type": "github"
  4525. },
  4526. {
  4527. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4528. "type": "tidelift"
  4529. }
  4530. ],
  4531. "time": "2020-10-24T12:01:57+00:00"
  4532. },
  4533. {
  4534. "name": "symfony/deprecation-contracts",
  4535. "version": "v2.2.0",
  4536. "source": {
  4537. "type": "git",
  4538. "url": "https://github.com/symfony/deprecation-contracts.git",
  4539. "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665"
  4540. },
  4541. "dist": {
  4542. "type": "zip",
  4543. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5fa56b4074d1ae755beb55617ddafe6f5d78f665",
  4544. "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665",
  4545. "shasum": ""
  4546. },
  4547. "require": {
  4548. "php": ">=7.1"
  4549. },
  4550. "type": "library",
  4551. "extra": {
  4552. "branch-alias": {
  4553. "dev-master": "2.2-dev"
  4554. },
  4555. "thanks": {
  4556. "name": "symfony/contracts",
  4557. "url": "https://github.com/symfony/contracts"
  4558. }
  4559. },
  4560. "autoload": {
  4561. "files": [
  4562. "function.php"
  4563. ]
  4564. },
  4565. "notification-url": "https://packagist.org/downloads/",
  4566. "license": [
  4567. "MIT"
  4568. ],
  4569. "authors": [
  4570. {
  4571. "name": "Nicolas Grekas",
  4572. "email": "p@tchwork.com"
  4573. },
  4574. {
  4575. "name": "Symfony Community",
  4576. "homepage": "https://symfony.com/contributors"
  4577. }
  4578. ],
  4579. "description": "A generic function and convention to trigger deprecation notices",
  4580. "homepage": "https://symfony.com",
  4581. "support": {
  4582. "source": "https://github.com/symfony/deprecation-contracts/tree/master"
  4583. },
  4584. "funding": [
  4585. {
  4586. "url": "https://symfony.com/sponsor",
  4587. "type": "custom"
  4588. },
  4589. {
  4590. "url": "https://github.com/fabpot",
  4591. "type": "github"
  4592. },
  4593. {
  4594. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4595. "type": "tidelift"
  4596. }
  4597. ],
  4598. "time": "2020-09-07T11:33:47+00:00"
  4599. },
  4600. {
  4601. "name": "symfony/error-handler",
  4602. "version": "v5.1.8",
  4603. "source": {
  4604. "type": "git",
  4605. "url": "https://github.com/symfony/error-handler.git",
  4606. "reference": "a154f2b12fd1ec708559ba73ed58bd1304e55718"
  4607. },
  4608. "dist": {
  4609. "type": "zip",
  4610. "url": "https://api.github.com/repos/symfony/error-handler/zipball/a154f2b12fd1ec708559ba73ed58bd1304e55718",
  4611. "reference": "a154f2b12fd1ec708559ba73ed58bd1304e55718",
  4612. "shasum": ""
  4613. },
  4614. "require": {
  4615. "php": ">=7.2.5",
  4616. "psr/log": "^1.0",
  4617. "symfony/polyfill-php80": "^1.15",
  4618. "symfony/var-dumper": "^4.4|^5.0"
  4619. },
  4620. "require-dev": {
  4621. "symfony/deprecation-contracts": "^2.1",
  4622. "symfony/http-kernel": "^4.4|^5.0",
  4623. "symfony/serializer": "^4.4|^5.0"
  4624. },
  4625. "type": "library",
  4626. "autoload": {
  4627. "psr-4": {
  4628. "Symfony\\Component\\ErrorHandler\\": ""
  4629. },
  4630. "exclude-from-classmap": [
  4631. "/Tests/"
  4632. ]
  4633. },
  4634. "notification-url": "https://packagist.org/downloads/",
  4635. "license": [
  4636. "MIT"
  4637. ],
  4638. "authors": [
  4639. {
  4640. "name": "Fabien Potencier",
  4641. "email": "fabien@symfony.com"
  4642. },
  4643. {
  4644. "name": "Symfony Community",
  4645. "homepage": "https://symfony.com/contributors"
  4646. }
  4647. ],
  4648. "description": "Symfony ErrorHandler Component",
  4649. "homepage": "https://symfony.com",
  4650. "support": {
  4651. "source": "https://github.com/symfony/error-handler/tree/v5.1.8"
  4652. },
  4653. "funding": [
  4654. {
  4655. "url": "https://symfony.com/sponsor",
  4656. "type": "custom"
  4657. },
  4658. {
  4659. "url": "https://github.com/fabpot",
  4660. "type": "github"
  4661. },
  4662. {
  4663. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4664. "type": "tidelift"
  4665. }
  4666. ],
  4667. "time": "2020-10-24T12:01:57+00:00"
  4668. },
  4669. {
  4670. "name": "symfony/event-dispatcher",
  4671. "version": "v5.1.8",
  4672. "source": {
  4673. "type": "git",
  4674. "url": "https://github.com/symfony/event-dispatcher.git",
  4675. "reference": "26f4edae48c913fc183a3da0553fe63bdfbd361a"
  4676. },
  4677. "dist": {
  4678. "type": "zip",
  4679. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/26f4edae48c913fc183a3da0553fe63bdfbd361a",
  4680. "reference": "26f4edae48c913fc183a3da0553fe63bdfbd361a",
  4681. "shasum": ""
  4682. },
  4683. "require": {
  4684. "php": ">=7.2.5",
  4685. "symfony/deprecation-contracts": "^2.1",
  4686. "symfony/event-dispatcher-contracts": "^2",
  4687. "symfony/polyfill-php80": "^1.15"
  4688. },
  4689. "conflict": {
  4690. "symfony/dependency-injection": "<4.4"
  4691. },
  4692. "provide": {
  4693. "psr/event-dispatcher-implementation": "1.0",
  4694. "symfony/event-dispatcher-implementation": "2.0"
  4695. },
  4696. "require-dev": {
  4697. "psr/log": "~1.0",
  4698. "symfony/config": "^4.4|^5.0",
  4699. "symfony/dependency-injection": "^4.4|^5.0",
  4700. "symfony/error-handler": "^4.4|^5.0",
  4701. "symfony/expression-language": "^4.4|^5.0",
  4702. "symfony/http-foundation": "^4.4|^5.0",
  4703. "symfony/service-contracts": "^1.1|^2",
  4704. "symfony/stopwatch": "^4.4|^5.0"
  4705. },
  4706. "suggest": {
  4707. "symfony/dependency-injection": "",
  4708. "symfony/http-kernel": ""
  4709. },
  4710. "type": "library",
  4711. "autoload": {
  4712. "psr-4": {
  4713. "Symfony\\Component\\EventDispatcher\\": ""
  4714. },
  4715. "exclude-from-classmap": [
  4716. "/Tests/"
  4717. ]
  4718. },
  4719. "notification-url": "https://packagist.org/downloads/",
  4720. "license": [
  4721. "MIT"
  4722. ],
  4723. "authors": [
  4724. {
  4725. "name": "Fabien Potencier",
  4726. "email": "fabien@symfony.com"
  4727. },
  4728. {
  4729. "name": "Symfony Community",
  4730. "homepage": "https://symfony.com/contributors"
  4731. }
  4732. ],
  4733. "description": "Symfony EventDispatcher Component",
  4734. "homepage": "https://symfony.com",
  4735. "support": {
  4736. "source": "https://github.com/symfony/event-dispatcher/tree/v5.1.8"
  4737. },
  4738. "funding": [
  4739. {
  4740. "url": "https://symfony.com/sponsor",
  4741. "type": "custom"
  4742. },
  4743. {
  4744. "url": "https://github.com/fabpot",
  4745. "type": "github"
  4746. },
  4747. {
  4748. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4749. "type": "tidelift"
  4750. }
  4751. ],
  4752. "time": "2020-10-24T12:01:57+00:00"
  4753. },
  4754. {
  4755. "name": "symfony/event-dispatcher-contracts",
  4756. "version": "v2.2.0",
  4757. "source": {
  4758. "type": "git",
  4759. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  4760. "reference": "0ba7d54483095a198fa51781bc608d17e84dffa2"
  4761. },
  4762. "dist": {
  4763. "type": "zip",
  4764. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/0ba7d54483095a198fa51781bc608d17e84dffa2",
  4765. "reference": "0ba7d54483095a198fa51781bc608d17e84dffa2",
  4766. "shasum": ""
  4767. },
  4768. "require": {
  4769. "php": ">=7.2.5",
  4770. "psr/event-dispatcher": "^1"
  4771. },
  4772. "suggest": {
  4773. "symfony/event-dispatcher-implementation": ""
  4774. },
  4775. "type": "library",
  4776. "extra": {
  4777. "branch-alias": {
  4778. "dev-master": "2.2-dev"
  4779. },
  4780. "thanks": {
  4781. "name": "symfony/contracts",
  4782. "url": "https://github.com/symfony/contracts"
  4783. }
  4784. },
  4785. "autoload": {
  4786. "psr-4": {
  4787. "Symfony\\Contracts\\EventDispatcher\\": ""
  4788. }
  4789. },
  4790. "notification-url": "https://packagist.org/downloads/",
  4791. "license": [
  4792. "MIT"
  4793. ],
  4794. "authors": [
  4795. {
  4796. "name": "Nicolas Grekas",
  4797. "email": "p@tchwork.com"
  4798. },
  4799. {
  4800. "name": "Symfony Community",
  4801. "homepage": "https://symfony.com/contributors"
  4802. }
  4803. ],
  4804. "description": "Generic abstractions related to dispatching event",
  4805. "homepage": "https://symfony.com",
  4806. "keywords": [
  4807. "abstractions",
  4808. "contracts",
  4809. "decoupling",
  4810. "interfaces",
  4811. "interoperability",
  4812. "standards"
  4813. ],
  4814. "support": {
  4815. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.2.0"
  4816. },
  4817. "funding": [
  4818. {
  4819. "url": "https://symfony.com/sponsor",
  4820. "type": "custom"
  4821. },
  4822. {
  4823. "url": "https://github.com/fabpot",
  4824. "type": "github"
  4825. },
  4826. {
  4827. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4828. "type": "tidelift"
  4829. }
  4830. ],
  4831. "time": "2020-09-07T11:33:47+00:00"
  4832. },
  4833. {
  4834. "name": "symfony/finder",
  4835. "version": "v5.1.8",
  4836. "source": {
  4837. "type": "git",
  4838. "url": "https://github.com/symfony/finder.git",
  4839. "reference": "e70eb5a69c2ff61ea135a13d2266e8914a67b3a0"
  4840. },
  4841. "dist": {
  4842. "type": "zip",
  4843. "url": "https://api.github.com/repos/symfony/finder/zipball/e70eb5a69c2ff61ea135a13d2266e8914a67b3a0",
  4844. "reference": "e70eb5a69c2ff61ea135a13d2266e8914a67b3a0",
  4845. "shasum": ""
  4846. },
  4847. "require": {
  4848. "php": ">=7.2.5"
  4849. },
  4850. "type": "library",
  4851. "autoload": {
  4852. "psr-4": {
  4853. "Symfony\\Component\\Finder\\": ""
  4854. },
  4855. "exclude-from-classmap": [
  4856. "/Tests/"
  4857. ]
  4858. },
  4859. "notification-url": "https://packagist.org/downloads/",
  4860. "license": [
  4861. "MIT"
  4862. ],
  4863. "authors": [
  4864. {
  4865. "name": "Fabien Potencier",
  4866. "email": "fabien@symfony.com"
  4867. },
  4868. {
  4869. "name": "Symfony Community",
  4870. "homepage": "https://symfony.com/contributors"
  4871. }
  4872. ],
  4873. "description": "Symfony Finder Component",
  4874. "homepage": "https://symfony.com",
  4875. "support": {
  4876. "source": "https://github.com/symfony/finder/tree/v5.1.8"
  4877. },
  4878. "funding": [
  4879. {
  4880. "url": "https://symfony.com/sponsor",
  4881. "type": "custom"
  4882. },
  4883. {
  4884. "url": "https://github.com/fabpot",
  4885. "type": "github"
  4886. },
  4887. {
  4888. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4889. "type": "tidelift"
  4890. }
  4891. ],
  4892. "time": "2020-10-24T12:01:57+00:00"
  4893. },
  4894. {
  4895. "name": "symfony/http-client-contracts",
  4896. "version": "v2.3.1",
  4897. "source": {
  4898. "type": "git",
  4899. "url": "https://github.com/symfony/http-client-contracts.git",
  4900. "reference": "41db680a15018f9c1d4b23516059633ce280ca33"
  4901. },
  4902. "dist": {
  4903. "type": "zip",
  4904. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/41db680a15018f9c1d4b23516059633ce280ca33",
  4905. "reference": "41db680a15018f9c1d4b23516059633ce280ca33",
  4906. "shasum": ""
  4907. },
  4908. "require": {
  4909. "php": ">=7.2.5"
  4910. },
  4911. "suggest": {
  4912. "symfony/http-client-implementation": ""
  4913. },
  4914. "type": "library",
  4915. "extra": {
  4916. "branch-version": "2.3",
  4917. "branch-alias": {
  4918. "dev-main": "2.3-dev"
  4919. },
  4920. "thanks": {
  4921. "name": "symfony/contracts",
  4922. "url": "https://github.com/symfony/contracts"
  4923. }
  4924. },
  4925. "autoload": {
  4926. "psr-4": {
  4927. "Symfony\\Contracts\\HttpClient\\": ""
  4928. }
  4929. },
  4930. "notification-url": "https://packagist.org/downloads/",
  4931. "license": [
  4932. "MIT"
  4933. ],
  4934. "authors": [
  4935. {
  4936. "name": "Nicolas Grekas",
  4937. "email": "p@tchwork.com"
  4938. },
  4939. {
  4940. "name": "Symfony Community",
  4941. "homepage": "https://symfony.com/contributors"
  4942. }
  4943. ],
  4944. "description": "Generic abstractions related to HTTP clients",
  4945. "homepage": "https://symfony.com",
  4946. "keywords": [
  4947. "abstractions",
  4948. "contracts",
  4949. "decoupling",
  4950. "interfaces",
  4951. "interoperability",
  4952. "standards"
  4953. ],
  4954. "support": {
  4955. "source": "https://github.com/symfony/http-client-contracts/tree/v2.3.1"
  4956. },
  4957. "funding": [
  4958. {
  4959. "url": "https://symfony.com/sponsor",
  4960. "type": "custom"
  4961. },
  4962. {
  4963. "url": "https://github.com/fabpot",
  4964. "type": "github"
  4965. },
  4966. {
  4967. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4968. "type": "tidelift"
  4969. }
  4970. ],
  4971. "time": "2020-10-14T17:08:19+00:00"
  4972. },
  4973. {
  4974. "name": "symfony/http-foundation",
  4975. "version": "v5.1.8",
  4976. "source": {
  4977. "type": "git",
  4978. "url": "https://github.com/symfony/http-foundation.git",
  4979. "reference": "a2860ec970404b0233ab1e59e0568d3277d32b6f"
  4980. },
  4981. "dist": {
  4982. "type": "zip",
  4983. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/a2860ec970404b0233ab1e59e0568d3277d32b6f",
  4984. "reference": "a2860ec970404b0233ab1e59e0568d3277d32b6f",
  4985. "shasum": ""
  4986. },
  4987. "require": {
  4988. "php": ">=7.2.5",
  4989. "symfony/deprecation-contracts": "^2.1",
  4990. "symfony/polyfill-mbstring": "~1.1",
  4991. "symfony/polyfill-php80": "^1.15"
  4992. },
  4993. "require-dev": {
  4994. "predis/predis": "~1.0",
  4995. "symfony/cache": "^4.4|^5.0",
  4996. "symfony/expression-language": "^4.4|^5.0",
  4997. "symfony/mime": "^4.4|^5.0"
  4998. },
  4999. "suggest": {
  5000. "symfony/mime": "To use the file extension guesser"
  5001. },
  5002. "type": "library",
  5003. "autoload": {
  5004. "psr-4": {
  5005. "Symfony\\Component\\HttpFoundation\\": ""
  5006. },
  5007. "exclude-from-classmap": [
  5008. "/Tests/"
  5009. ]
  5010. },
  5011. "notification-url": "https://packagist.org/downloads/",
  5012. "license": [
  5013. "MIT"
  5014. ],
  5015. "authors": [
  5016. {
  5017. "name": "Fabien Potencier",
  5018. "email": "fabien@symfony.com"
  5019. },
  5020. {
  5021. "name": "Symfony Community",
  5022. "homepage": "https://symfony.com/contributors"
  5023. }
  5024. ],
  5025. "description": "Symfony HttpFoundation Component",
  5026. "homepage": "https://symfony.com",
  5027. "support": {
  5028. "source": "https://github.com/symfony/http-foundation/tree/v5.1.8"
  5029. },
  5030. "funding": [
  5031. {
  5032. "url": "https://symfony.com/sponsor",
  5033. "type": "custom"
  5034. },
  5035. {
  5036. "url": "https://github.com/fabpot",
  5037. "type": "github"
  5038. },
  5039. {
  5040. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5041. "type": "tidelift"
  5042. }
  5043. ],
  5044. "time": "2020-10-24T12:01:57+00:00"
  5045. },
  5046. {
  5047. "name": "symfony/http-kernel",
  5048. "version": "v5.1.8",
  5049. "source": {
  5050. "type": "git",
  5051. "url": "https://github.com/symfony/http-kernel.git",
  5052. "reference": "a13b3c4d994a4fd051f4c6800c5e33c9508091dd"
  5053. },
  5054. "dist": {
  5055. "type": "zip",
  5056. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/a13b3c4d994a4fd051f4c6800c5e33c9508091dd",
  5057. "reference": "a13b3c4d994a4fd051f4c6800c5e33c9508091dd",
  5058. "shasum": ""
  5059. },
  5060. "require": {
  5061. "php": ">=7.2.5",
  5062. "psr/log": "~1.0",
  5063. "symfony/deprecation-contracts": "^2.1",
  5064. "symfony/error-handler": "^4.4|^5.0",
  5065. "symfony/event-dispatcher": "^5.0",
  5066. "symfony/http-client-contracts": "^1.1|^2",
  5067. "symfony/http-foundation": "^4.4|^5.0",
  5068. "symfony/polyfill-ctype": "^1.8",
  5069. "symfony/polyfill-php73": "^1.9",
  5070. "symfony/polyfill-php80": "^1.15"
  5071. },
  5072. "conflict": {
  5073. "symfony/browser-kit": "<4.4",
  5074. "symfony/cache": "<5.0",
  5075. "symfony/config": "<5.0",
  5076. "symfony/console": "<4.4",
  5077. "symfony/dependency-injection": "<4.4",
  5078. "symfony/doctrine-bridge": "<5.0",
  5079. "symfony/form": "<5.0",
  5080. "symfony/http-client": "<5.0",
  5081. "symfony/mailer": "<5.0",
  5082. "symfony/messenger": "<5.0",
  5083. "symfony/translation": "<5.0",
  5084. "symfony/twig-bridge": "<5.0",
  5085. "symfony/validator": "<5.0",
  5086. "twig/twig": "<2.4"
  5087. },
  5088. "provide": {
  5089. "psr/log-implementation": "1.0"
  5090. },
  5091. "require-dev": {
  5092. "psr/cache": "~1.0",
  5093. "symfony/browser-kit": "^4.4|^5.0",
  5094. "symfony/config": "^5.0",
  5095. "symfony/console": "^4.4|^5.0",
  5096. "symfony/css-selector": "^4.4|^5.0",
  5097. "symfony/dependency-injection": "^4.4|^5.0",
  5098. "symfony/dom-crawler": "^4.4|^5.0",
  5099. "symfony/expression-language": "^4.4|^5.0",
  5100. "symfony/finder": "^4.4|^5.0",
  5101. "symfony/process": "^4.4|^5.0",
  5102. "symfony/routing": "^4.4|^5.0",
  5103. "symfony/stopwatch": "^4.4|^5.0",
  5104. "symfony/translation": "^4.4|^5.0",
  5105. "symfony/translation-contracts": "^1.1|^2",
  5106. "twig/twig": "^2.4|^3.0"
  5107. },
  5108. "suggest": {
  5109. "symfony/browser-kit": "",
  5110. "symfony/config": "",
  5111. "symfony/console": "",
  5112. "symfony/dependency-injection": ""
  5113. },
  5114. "type": "library",
  5115. "autoload": {
  5116. "psr-4": {
  5117. "Symfony\\Component\\HttpKernel\\": ""
  5118. },
  5119. "exclude-from-classmap": [
  5120. "/Tests/"
  5121. ]
  5122. },
  5123. "notification-url": "https://packagist.org/downloads/",
  5124. "license": [
  5125. "MIT"
  5126. ],
  5127. "authors": [
  5128. {
  5129. "name": "Fabien Potencier",
  5130. "email": "fabien@symfony.com"
  5131. },
  5132. {
  5133. "name": "Symfony Community",
  5134. "homepage": "https://symfony.com/contributors"
  5135. }
  5136. ],
  5137. "description": "Symfony HttpKernel Component",
  5138. "homepage": "https://symfony.com",
  5139. "support": {
  5140. "source": "https://github.com/symfony/http-kernel/tree/v5.1.8"
  5141. },
  5142. "funding": [
  5143. {
  5144. "url": "https://symfony.com/sponsor",
  5145. "type": "custom"
  5146. },
  5147. {
  5148. "url": "https://github.com/fabpot",
  5149. "type": "github"
  5150. },
  5151. {
  5152. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5153. "type": "tidelift"
  5154. }
  5155. ],
  5156. "time": "2020-10-28T05:55:23+00:00"
  5157. },
  5158. {
  5159. "name": "symfony/mime",
  5160. "version": "v5.1.8",
  5161. "source": {
  5162. "type": "git",
  5163. "url": "https://github.com/symfony/mime.git",
  5164. "reference": "f5485a92c24d4bcfc2f3fc648744fb398482ff1b"
  5165. },
  5166. "dist": {
  5167. "type": "zip",
  5168. "url": "https://api.github.com/repos/symfony/mime/zipball/f5485a92c24d4bcfc2f3fc648744fb398482ff1b",
  5169. "reference": "f5485a92c24d4bcfc2f3fc648744fb398482ff1b",
  5170. "shasum": ""
  5171. },
  5172. "require": {
  5173. "php": ">=7.2.5",
  5174. "symfony/polyfill-intl-idn": "^1.10",
  5175. "symfony/polyfill-mbstring": "^1.0",
  5176. "symfony/polyfill-php80": "^1.15"
  5177. },
  5178. "conflict": {
  5179. "symfony/mailer": "<4.4"
  5180. },
  5181. "require-dev": {
  5182. "egulias/email-validator": "^2.1.10",
  5183. "symfony/dependency-injection": "^4.4|^5.0"
  5184. },
  5185. "type": "library",
  5186. "autoload": {
  5187. "psr-4": {
  5188. "Symfony\\Component\\Mime\\": ""
  5189. },
  5190. "exclude-from-classmap": [
  5191. "/Tests/"
  5192. ]
  5193. },
  5194. "notification-url": "https://packagist.org/downloads/",
  5195. "license": [
  5196. "MIT"
  5197. ],
  5198. "authors": [
  5199. {
  5200. "name": "Fabien Potencier",
  5201. "email": "fabien@symfony.com"
  5202. },
  5203. {
  5204. "name": "Symfony Community",
  5205. "homepage": "https://symfony.com/contributors"
  5206. }
  5207. ],
  5208. "description": "A library to manipulate MIME messages",
  5209. "homepage": "https://symfony.com",
  5210. "keywords": [
  5211. "mime",
  5212. "mime-type"
  5213. ],
  5214. "support": {
  5215. "source": "https://github.com/symfony/mime/tree/v5.1.8"
  5216. },
  5217. "funding": [
  5218. {
  5219. "url": "https://symfony.com/sponsor",
  5220. "type": "custom"
  5221. },
  5222. {
  5223. "url": "https://github.com/fabpot",
  5224. "type": "github"
  5225. },
  5226. {
  5227. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5228. "type": "tidelift"
  5229. }
  5230. ],
  5231. "time": "2020-10-24T12:01:57+00:00"
  5232. },
  5233. {
  5234. "name": "symfony/polyfill-ctype",
  5235. "version": "v1.20.0",
  5236. "source": {
  5237. "type": "git",
  5238. "url": "https://github.com/symfony/polyfill-ctype.git",
  5239. "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41"
  5240. },
  5241. "dist": {
  5242. "type": "zip",
  5243. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/f4ba089a5b6366e453971d3aad5fe8e897b37f41",
  5244. "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41",
  5245. "shasum": ""
  5246. },
  5247. "require": {
  5248. "php": ">=7.1"
  5249. },
  5250. "suggest": {
  5251. "ext-ctype": "For best performance"
  5252. },
  5253. "type": "library",
  5254. "extra": {
  5255. "branch-alias": {
  5256. "dev-main": "1.20-dev"
  5257. },
  5258. "thanks": {
  5259. "name": "symfony/polyfill",
  5260. "url": "https://github.com/symfony/polyfill"
  5261. }
  5262. },
  5263. "autoload": {
  5264. "psr-4": {
  5265. "Symfony\\Polyfill\\Ctype\\": ""
  5266. },
  5267. "files": [
  5268. "bootstrap.php"
  5269. ]
  5270. },
  5271. "notification-url": "https://packagist.org/downloads/",
  5272. "license": [
  5273. "MIT"
  5274. ],
  5275. "authors": [
  5276. {
  5277. "name": "Gert de Pagter",
  5278. "email": "BackEndTea@gmail.com"
  5279. },
  5280. {
  5281. "name": "Symfony Community",
  5282. "homepage": "https://symfony.com/contributors"
  5283. }
  5284. ],
  5285. "description": "Symfony polyfill for ctype functions",
  5286. "homepage": "https://symfony.com",
  5287. "keywords": [
  5288. "compatibility",
  5289. "ctype",
  5290. "polyfill",
  5291. "portable"
  5292. ],
  5293. "support": {
  5294. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.20.0"
  5295. },
  5296. "funding": [
  5297. {
  5298. "url": "https://symfony.com/sponsor",
  5299. "type": "custom"
  5300. },
  5301. {
  5302. "url": "https://github.com/fabpot",
  5303. "type": "github"
  5304. },
  5305. {
  5306. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5307. "type": "tidelift"
  5308. }
  5309. ],
  5310. "time": "2020-10-23T14:02:19+00:00"
  5311. },
  5312. {
  5313. "name": "symfony/polyfill-iconv",
  5314. "version": "v1.20.0",
  5315. "source": {
  5316. "type": "git",
  5317. "url": "https://github.com/symfony/polyfill-iconv.git",
  5318. "reference": "c536646fdb4f29104dd26effc2fdcb9a5b085024"
  5319. },
  5320. "dist": {
  5321. "type": "zip",
  5322. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/c536646fdb4f29104dd26effc2fdcb9a5b085024",
  5323. "reference": "c536646fdb4f29104dd26effc2fdcb9a5b085024",
  5324. "shasum": ""
  5325. },
  5326. "require": {
  5327. "php": ">=7.1"
  5328. },
  5329. "suggest": {
  5330. "ext-iconv": "For best performance"
  5331. },
  5332. "type": "library",
  5333. "extra": {
  5334. "branch-alias": {
  5335. "dev-main": "1.20-dev"
  5336. },
  5337. "thanks": {
  5338. "name": "symfony/polyfill",
  5339. "url": "https://github.com/symfony/polyfill"
  5340. }
  5341. },
  5342. "autoload": {
  5343. "psr-4": {
  5344. "Symfony\\Polyfill\\Iconv\\": ""
  5345. },
  5346. "files": [
  5347. "bootstrap.php"
  5348. ]
  5349. },
  5350. "notification-url": "https://packagist.org/downloads/",
  5351. "license": [
  5352. "MIT"
  5353. ],
  5354. "authors": [
  5355. {
  5356. "name": "Nicolas Grekas",
  5357. "email": "p@tchwork.com"
  5358. },
  5359. {
  5360. "name": "Symfony Community",
  5361. "homepage": "https://symfony.com/contributors"
  5362. }
  5363. ],
  5364. "description": "Symfony polyfill for the Iconv extension",
  5365. "homepage": "https://symfony.com",
  5366. "keywords": [
  5367. "compatibility",
  5368. "iconv",
  5369. "polyfill",
  5370. "portable",
  5371. "shim"
  5372. ],
  5373. "support": {
  5374. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.20.0"
  5375. },
  5376. "funding": [
  5377. {
  5378. "url": "https://symfony.com/sponsor",
  5379. "type": "custom"
  5380. },
  5381. {
  5382. "url": "https://github.com/fabpot",
  5383. "type": "github"
  5384. },
  5385. {
  5386. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5387. "type": "tidelift"
  5388. }
  5389. ],
  5390. "time": "2020-10-23T14:02:19+00:00"
  5391. },
  5392. {
  5393. "name": "symfony/polyfill-intl-grapheme",
  5394. "version": "v1.20.0",
  5395. "source": {
  5396. "type": "git",
  5397. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5398. "reference": "c7cf3f858ec7d70b89559d6e6eb1f7c2517d479c"
  5399. },
  5400. "dist": {
  5401. "type": "zip",
  5402. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/c7cf3f858ec7d70b89559d6e6eb1f7c2517d479c",
  5403. "reference": "c7cf3f858ec7d70b89559d6e6eb1f7c2517d479c",
  5404. "shasum": ""
  5405. },
  5406. "require": {
  5407. "php": ">=7.1"
  5408. },
  5409. "suggest": {
  5410. "ext-intl": "For best performance"
  5411. },
  5412. "type": "library",
  5413. "extra": {
  5414. "branch-alias": {
  5415. "dev-main": "1.20-dev"
  5416. },
  5417. "thanks": {
  5418. "name": "symfony/polyfill",
  5419. "url": "https://github.com/symfony/polyfill"
  5420. }
  5421. },
  5422. "autoload": {
  5423. "psr-4": {
  5424. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5425. },
  5426. "files": [
  5427. "bootstrap.php"
  5428. ]
  5429. },
  5430. "notification-url": "https://packagist.org/downloads/",
  5431. "license": [
  5432. "MIT"
  5433. ],
  5434. "authors": [
  5435. {
  5436. "name": "Nicolas Grekas",
  5437. "email": "p@tchwork.com"
  5438. },
  5439. {
  5440. "name": "Symfony Community",
  5441. "homepage": "https://symfony.com/contributors"
  5442. }
  5443. ],
  5444. "description": "Symfony polyfill for intl's grapheme_* functions",
  5445. "homepage": "https://symfony.com",
  5446. "keywords": [
  5447. "compatibility",
  5448. "grapheme",
  5449. "intl",
  5450. "polyfill",
  5451. "portable",
  5452. "shim"
  5453. ],
  5454. "support": {
  5455. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.20.0"
  5456. },
  5457. "funding": [
  5458. {
  5459. "url": "https://symfony.com/sponsor",
  5460. "type": "custom"
  5461. },
  5462. {
  5463. "url": "https://github.com/fabpot",
  5464. "type": "github"
  5465. },
  5466. {
  5467. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5468. "type": "tidelift"
  5469. }
  5470. ],
  5471. "time": "2020-10-23T14:02:19+00:00"
  5472. },
  5473. {
  5474. "name": "symfony/polyfill-intl-idn",
  5475. "version": "v1.20.0",
  5476. "source": {
  5477. "type": "git",
  5478. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5479. "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117"
  5480. },
  5481. "dist": {
  5482. "type": "zip",
  5483. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/3b75acd829741c768bc8b1f84eb33265e7cc5117",
  5484. "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117",
  5485. "shasum": ""
  5486. },
  5487. "require": {
  5488. "php": ">=7.1",
  5489. "symfony/polyfill-intl-normalizer": "^1.10",
  5490. "symfony/polyfill-php72": "^1.10"
  5491. },
  5492. "suggest": {
  5493. "ext-intl": "For best performance"
  5494. },
  5495. "type": "library",
  5496. "extra": {
  5497. "branch-alias": {
  5498. "dev-main": "1.20-dev"
  5499. },
  5500. "thanks": {
  5501. "name": "symfony/polyfill",
  5502. "url": "https://github.com/symfony/polyfill"
  5503. }
  5504. },
  5505. "autoload": {
  5506. "psr-4": {
  5507. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5508. },
  5509. "files": [
  5510. "bootstrap.php"
  5511. ]
  5512. },
  5513. "notification-url": "https://packagist.org/downloads/",
  5514. "license": [
  5515. "MIT"
  5516. ],
  5517. "authors": [
  5518. {
  5519. "name": "Laurent Bassin",
  5520. "email": "laurent@bassin.info"
  5521. },
  5522. {
  5523. "name": "Trevor Rowbotham",
  5524. "email": "trevor.rowbotham@pm.me"
  5525. },
  5526. {
  5527. "name": "Symfony Community",
  5528. "homepage": "https://symfony.com/contributors"
  5529. }
  5530. ],
  5531. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5532. "homepage": "https://symfony.com",
  5533. "keywords": [
  5534. "compatibility",
  5535. "idn",
  5536. "intl",
  5537. "polyfill",
  5538. "portable",
  5539. "shim"
  5540. ],
  5541. "support": {
  5542. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.20.0"
  5543. },
  5544. "funding": [
  5545. {
  5546. "url": "https://symfony.com/sponsor",
  5547. "type": "custom"
  5548. },
  5549. {
  5550. "url": "https://github.com/fabpot",
  5551. "type": "github"
  5552. },
  5553. {
  5554. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5555. "type": "tidelift"
  5556. }
  5557. ],
  5558. "time": "2020-10-23T14:02:19+00:00"
  5559. },
  5560. {
  5561. "name": "symfony/polyfill-intl-normalizer",
  5562. "version": "v1.20.0",
  5563. "source": {
  5564. "type": "git",
  5565. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5566. "reference": "727d1096295d807c309fb01a851577302394c897"
  5567. },
  5568. "dist": {
  5569. "type": "zip",
  5570. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/727d1096295d807c309fb01a851577302394c897",
  5571. "reference": "727d1096295d807c309fb01a851577302394c897",
  5572. "shasum": ""
  5573. },
  5574. "require": {
  5575. "php": ">=7.1"
  5576. },
  5577. "suggest": {
  5578. "ext-intl": "For best performance"
  5579. },
  5580. "type": "library",
  5581. "extra": {
  5582. "branch-alias": {
  5583. "dev-main": "1.20-dev"
  5584. },
  5585. "thanks": {
  5586. "name": "symfony/polyfill",
  5587. "url": "https://github.com/symfony/polyfill"
  5588. }
  5589. },
  5590. "autoload": {
  5591. "psr-4": {
  5592. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5593. },
  5594. "files": [
  5595. "bootstrap.php"
  5596. ],
  5597. "classmap": [
  5598. "Resources/stubs"
  5599. ]
  5600. },
  5601. "notification-url": "https://packagist.org/downloads/",
  5602. "license": [
  5603. "MIT"
  5604. ],
  5605. "authors": [
  5606. {
  5607. "name": "Nicolas Grekas",
  5608. "email": "p@tchwork.com"
  5609. },
  5610. {
  5611. "name": "Symfony Community",
  5612. "homepage": "https://symfony.com/contributors"
  5613. }
  5614. ],
  5615. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5616. "homepage": "https://symfony.com",
  5617. "keywords": [
  5618. "compatibility",
  5619. "intl",
  5620. "normalizer",
  5621. "polyfill",
  5622. "portable",
  5623. "shim"
  5624. ],
  5625. "support": {
  5626. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.20.0"
  5627. },
  5628. "funding": [
  5629. {
  5630. "url": "https://symfony.com/sponsor",
  5631. "type": "custom"
  5632. },
  5633. {
  5634. "url": "https://github.com/fabpot",
  5635. "type": "github"
  5636. },
  5637. {
  5638. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5639. "type": "tidelift"
  5640. }
  5641. ],
  5642. "time": "2020-10-23T14:02:19+00:00"
  5643. },
  5644. {
  5645. "name": "symfony/polyfill-mbstring",
  5646. "version": "v1.20.0",
  5647. "source": {
  5648. "type": "git",
  5649. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5650. "reference": "39d483bdf39be819deabf04ec872eb0b2410b531"
  5651. },
  5652. "dist": {
  5653. "type": "zip",
  5654. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/39d483bdf39be819deabf04ec872eb0b2410b531",
  5655. "reference": "39d483bdf39be819deabf04ec872eb0b2410b531",
  5656. "shasum": ""
  5657. },
  5658. "require": {
  5659. "php": ">=7.1"
  5660. },
  5661. "suggest": {
  5662. "ext-mbstring": "For best performance"
  5663. },
  5664. "type": "library",
  5665. "extra": {
  5666. "branch-alias": {
  5667. "dev-main": "1.20-dev"
  5668. },
  5669. "thanks": {
  5670. "name": "symfony/polyfill",
  5671. "url": "https://github.com/symfony/polyfill"
  5672. }
  5673. },
  5674. "autoload": {
  5675. "psr-4": {
  5676. "Symfony\\Polyfill\\Mbstring\\": ""
  5677. },
  5678. "files": [
  5679. "bootstrap.php"
  5680. ]
  5681. },
  5682. "notification-url": "https://packagist.org/downloads/",
  5683. "license": [
  5684. "MIT"
  5685. ],
  5686. "authors": [
  5687. {
  5688. "name": "Nicolas Grekas",
  5689. "email": "p@tchwork.com"
  5690. },
  5691. {
  5692. "name": "Symfony Community",
  5693. "homepage": "https://symfony.com/contributors"
  5694. }
  5695. ],
  5696. "description": "Symfony polyfill for the Mbstring extension",
  5697. "homepage": "https://symfony.com",
  5698. "keywords": [
  5699. "compatibility",
  5700. "mbstring",
  5701. "polyfill",
  5702. "portable",
  5703. "shim"
  5704. ],
  5705. "support": {
  5706. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.20.0"
  5707. },
  5708. "funding": [
  5709. {
  5710. "url": "https://symfony.com/sponsor",
  5711. "type": "custom"
  5712. },
  5713. {
  5714. "url": "https://github.com/fabpot",
  5715. "type": "github"
  5716. },
  5717. {
  5718. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5719. "type": "tidelift"
  5720. }
  5721. ],
  5722. "time": "2020-10-23T14:02:19+00:00"
  5723. },
  5724. {
  5725. "name": "symfony/polyfill-php72",
  5726. "version": "v1.20.0",
  5727. "source": {
  5728. "type": "git",
  5729. "url": "https://github.com/symfony/polyfill-php72.git",
  5730. "reference": "cede45fcdfabdd6043b3592e83678e42ec69e930"
  5731. },
  5732. "dist": {
  5733. "type": "zip",
  5734. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/cede45fcdfabdd6043b3592e83678e42ec69e930",
  5735. "reference": "cede45fcdfabdd6043b3592e83678e42ec69e930",
  5736. "shasum": ""
  5737. },
  5738. "require": {
  5739. "php": ">=7.1"
  5740. },
  5741. "type": "library",
  5742. "extra": {
  5743. "branch-alias": {
  5744. "dev-main": "1.20-dev"
  5745. },
  5746. "thanks": {
  5747. "name": "symfony/polyfill",
  5748. "url": "https://github.com/symfony/polyfill"
  5749. }
  5750. },
  5751. "autoload": {
  5752. "psr-4": {
  5753. "Symfony\\Polyfill\\Php72\\": ""
  5754. },
  5755. "files": [
  5756. "bootstrap.php"
  5757. ]
  5758. },
  5759. "notification-url": "https://packagist.org/downloads/",
  5760. "license": [
  5761. "MIT"
  5762. ],
  5763. "authors": [
  5764. {
  5765. "name": "Nicolas Grekas",
  5766. "email": "p@tchwork.com"
  5767. },
  5768. {
  5769. "name": "Symfony Community",
  5770. "homepage": "https://symfony.com/contributors"
  5771. }
  5772. ],
  5773. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  5774. "homepage": "https://symfony.com",
  5775. "keywords": [
  5776. "compatibility",
  5777. "polyfill",
  5778. "portable",
  5779. "shim"
  5780. ],
  5781. "support": {
  5782. "source": "https://github.com/symfony/polyfill-php72/tree/v1.20.0"
  5783. },
  5784. "funding": [
  5785. {
  5786. "url": "https://symfony.com/sponsor",
  5787. "type": "custom"
  5788. },
  5789. {
  5790. "url": "https://github.com/fabpot",
  5791. "type": "github"
  5792. },
  5793. {
  5794. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5795. "type": "tidelift"
  5796. }
  5797. ],
  5798. "time": "2020-10-23T14:02:19+00:00"
  5799. },
  5800. {
  5801. "name": "symfony/polyfill-php73",
  5802. "version": "v1.20.0",
  5803. "source": {
  5804. "type": "git",
  5805. "url": "https://github.com/symfony/polyfill-php73.git",
  5806. "reference": "8ff431c517be11c78c48a39a66d37431e26a6bed"
  5807. },
  5808. "dist": {
  5809. "type": "zip",
  5810. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/8ff431c517be11c78c48a39a66d37431e26a6bed",
  5811. "reference": "8ff431c517be11c78c48a39a66d37431e26a6bed",
  5812. "shasum": ""
  5813. },
  5814. "require": {
  5815. "php": ">=7.1"
  5816. },
  5817. "type": "library",
  5818. "extra": {
  5819. "branch-alias": {
  5820. "dev-main": "1.20-dev"
  5821. },
  5822. "thanks": {
  5823. "name": "symfony/polyfill",
  5824. "url": "https://github.com/symfony/polyfill"
  5825. }
  5826. },
  5827. "autoload": {
  5828. "psr-4": {
  5829. "Symfony\\Polyfill\\Php73\\": ""
  5830. },
  5831. "files": [
  5832. "bootstrap.php"
  5833. ],
  5834. "classmap": [
  5835. "Resources/stubs"
  5836. ]
  5837. },
  5838. "notification-url": "https://packagist.org/downloads/",
  5839. "license": [
  5840. "MIT"
  5841. ],
  5842. "authors": [
  5843. {
  5844. "name": "Nicolas Grekas",
  5845. "email": "p@tchwork.com"
  5846. },
  5847. {
  5848. "name": "Symfony Community",
  5849. "homepage": "https://symfony.com/contributors"
  5850. }
  5851. ],
  5852. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  5853. "homepage": "https://symfony.com",
  5854. "keywords": [
  5855. "compatibility",
  5856. "polyfill",
  5857. "portable",
  5858. "shim"
  5859. ],
  5860. "support": {
  5861. "source": "https://github.com/symfony/polyfill-php73/tree/v1.20.0"
  5862. },
  5863. "funding": [
  5864. {
  5865. "url": "https://symfony.com/sponsor",
  5866. "type": "custom"
  5867. },
  5868. {
  5869. "url": "https://github.com/fabpot",
  5870. "type": "github"
  5871. },
  5872. {
  5873. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5874. "type": "tidelift"
  5875. }
  5876. ],
  5877. "time": "2020-10-23T14:02:19+00:00"
  5878. },
  5879. {
  5880. "name": "symfony/polyfill-php80",
  5881. "version": "v1.20.0",
  5882. "source": {
  5883. "type": "git",
  5884. "url": "https://github.com/symfony/polyfill-php80.git",
  5885. "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de"
  5886. },
  5887. "dist": {
  5888. "type": "zip",
  5889. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/e70aa8b064c5b72d3df2abd5ab1e90464ad009de",
  5890. "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de",
  5891. "shasum": ""
  5892. },
  5893. "require": {
  5894. "php": ">=7.1"
  5895. },
  5896. "type": "library",
  5897. "extra": {
  5898. "branch-alias": {
  5899. "dev-main": "1.20-dev"
  5900. },
  5901. "thanks": {
  5902. "name": "symfony/polyfill",
  5903. "url": "https://github.com/symfony/polyfill"
  5904. }
  5905. },
  5906. "autoload": {
  5907. "psr-4": {
  5908. "Symfony\\Polyfill\\Php80\\": ""
  5909. },
  5910. "files": [
  5911. "bootstrap.php"
  5912. ],
  5913. "classmap": [
  5914. "Resources/stubs"
  5915. ]
  5916. },
  5917. "notification-url": "https://packagist.org/downloads/",
  5918. "license": [
  5919. "MIT"
  5920. ],
  5921. "authors": [
  5922. {
  5923. "name": "Ion Bazan",
  5924. "email": "ion.bazan@gmail.com"
  5925. },
  5926. {
  5927. "name": "Nicolas Grekas",
  5928. "email": "p@tchwork.com"
  5929. },
  5930. {
  5931. "name": "Symfony Community",
  5932. "homepage": "https://symfony.com/contributors"
  5933. }
  5934. ],
  5935. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  5936. "homepage": "https://symfony.com",
  5937. "keywords": [
  5938. "compatibility",
  5939. "polyfill",
  5940. "portable",
  5941. "shim"
  5942. ],
  5943. "support": {
  5944. "source": "https://github.com/symfony/polyfill-php80/tree/v1.20.0"
  5945. },
  5946. "funding": [
  5947. {
  5948. "url": "https://symfony.com/sponsor",
  5949. "type": "custom"
  5950. },
  5951. {
  5952. "url": "https://github.com/fabpot",
  5953. "type": "github"
  5954. },
  5955. {
  5956. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5957. "type": "tidelift"
  5958. }
  5959. ],
  5960. "time": "2020-10-23T14:02:19+00:00"
  5961. },
  5962. {
  5963. "name": "symfony/process",
  5964. "version": "v5.1.8",
  5965. "source": {
  5966. "type": "git",
  5967. "url": "https://github.com/symfony/process.git",
  5968. "reference": "f00872c3f6804150d6a0f73b4151daab96248101"
  5969. },
  5970. "dist": {
  5971. "type": "zip",
  5972. "url": "https://api.github.com/repos/symfony/process/zipball/f00872c3f6804150d6a0f73b4151daab96248101",
  5973. "reference": "f00872c3f6804150d6a0f73b4151daab96248101",
  5974. "shasum": ""
  5975. },
  5976. "require": {
  5977. "php": ">=7.2.5",
  5978. "symfony/polyfill-php80": "^1.15"
  5979. },
  5980. "type": "library",
  5981. "autoload": {
  5982. "psr-4": {
  5983. "Symfony\\Component\\Process\\": ""
  5984. },
  5985. "exclude-from-classmap": [
  5986. "/Tests/"
  5987. ]
  5988. },
  5989. "notification-url": "https://packagist.org/downloads/",
  5990. "license": [
  5991. "MIT"
  5992. ],
  5993. "authors": [
  5994. {
  5995. "name": "Fabien Potencier",
  5996. "email": "fabien@symfony.com"
  5997. },
  5998. {
  5999. "name": "Symfony Community",
  6000. "homepage": "https://symfony.com/contributors"
  6001. }
  6002. ],
  6003. "description": "Symfony Process Component",
  6004. "homepage": "https://symfony.com",
  6005. "support": {
  6006. "source": "https://github.com/symfony/process/tree/v5.1.8"
  6007. },
  6008. "funding": [
  6009. {
  6010. "url": "https://symfony.com/sponsor",
  6011. "type": "custom"
  6012. },
  6013. {
  6014. "url": "https://github.com/fabpot",
  6015. "type": "github"
  6016. },
  6017. {
  6018. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6019. "type": "tidelift"
  6020. }
  6021. ],
  6022. "time": "2020-10-24T12:01:57+00:00"
  6023. },
  6024. {
  6025. "name": "symfony/routing",
  6026. "version": "v5.1.8",
  6027. "source": {
  6028. "type": "git",
  6029. "url": "https://github.com/symfony/routing.git",
  6030. "reference": "d6ceee2a37b61b41079005207bf37746d1bfe71f"
  6031. },
  6032. "dist": {
  6033. "type": "zip",
  6034. "url": "https://api.github.com/repos/symfony/routing/zipball/d6ceee2a37b61b41079005207bf37746d1bfe71f",
  6035. "reference": "d6ceee2a37b61b41079005207bf37746d1bfe71f",
  6036. "shasum": ""
  6037. },
  6038. "require": {
  6039. "php": ">=7.2.5",
  6040. "symfony/deprecation-contracts": "^2.1",
  6041. "symfony/polyfill-php80": "^1.15"
  6042. },
  6043. "conflict": {
  6044. "symfony/config": "<5.0",
  6045. "symfony/dependency-injection": "<4.4",
  6046. "symfony/yaml": "<4.4"
  6047. },
  6048. "require-dev": {
  6049. "doctrine/annotations": "~1.2",
  6050. "psr/log": "~1.0",
  6051. "symfony/config": "^5.0",
  6052. "symfony/dependency-injection": "^4.4|^5.0",
  6053. "symfony/expression-language": "^4.4|^5.0",
  6054. "symfony/http-foundation": "^4.4|^5.0",
  6055. "symfony/yaml": "^4.4|^5.0"
  6056. },
  6057. "suggest": {
  6058. "doctrine/annotations": "For using the annotation loader",
  6059. "symfony/config": "For using the all-in-one router or any loader",
  6060. "symfony/expression-language": "For using expression matching",
  6061. "symfony/http-foundation": "For using a Symfony Request object",
  6062. "symfony/yaml": "For using the YAML loader"
  6063. },
  6064. "type": "library",
  6065. "autoload": {
  6066. "psr-4": {
  6067. "Symfony\\Component\\Routing\\": ""
  6068. },
  6069. "exclude-from-classmap": [
  6070. "/Tests/"
  6071. ]
  6072. },
  6073. "notification-url": "https://packagist.org/downloads/",
  6074. "license": [
  6075. "MIT"
  6076. ],
  6077. "authors": [
  6078. {
  6079. "name": "Fabien Potencier",
  6080. "email": "fabien@symfony.com"
  6081. },
  6082. {
  6083. "name": "Symfony Community",
  6084. "homepage": "https://symfony.com/contributors"
  6085. }
  6086. ],
  6087. "description": "Symfony Routing Component",
  6088. "homepage": "https://symfony.com",
  6089. "keywords": [
  6090. "router",
  6091. "routing",
  6092. "uri",
  6093. "url"
  6094. ],
  6095. "support": {
  6096. "source": "https://github.com/symfony/routing/tree/v5.1.8"
  6097. },
  6098. "funding": [
  6099. {
  6100. "url": "https://symfony.com/sponsor",
  6101. "type": "custom"
  6102. },
  6103. {
  6104. "url": "https://github.com/fabpot",
  6105. "type": "github"
  6106. },
  6107. {
  6108. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6109. "type": "tidelift"
  6110. }
  6111. ],
  6112. "time": "2020-10-24T12:01:57+00:00"
  6113. },
  6114. {
  6115. "name": "symfony/service-contracts",
  6116. "version": "v2.2.0",
  6117. "source": {
  6118. "type": "git",
  6119. "url": "https://github.com/symfony/service-contracts.git",
  6120. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1"
  6121. },
  6122. "dist": {
  6123. "type": "zip",
  6124. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  6125. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  6126. "shasum": ""
  6127. },
  6128. "require": {
  6129. "php": ">=7.2.5",
  6130. "psr/container": "^1.0"
  6131. },
  6132. "suggest": {
  6133. "symfony/service-implementation": ""
  6134. },
  6135. "type": "library",
  6136. "extra": {
  6137. "branch-alias": {
  6138. "dev-master": "2.2-dev"
  6139. },
  6140. "thanks": {
  6141. "name": "symfony/contracts",
  6142. "url": "https://github.com/symfony/contracts"
  6143. }
  6144. },
  6145. "autoload": {
  6146. "psr-4": {
  6147. "Symfony\\Contracts\\Service\\": ""
  6148. }
  6149. },
  6150. "notification-url": "https://packagist.org/downloads/",
  6151. "license": [
  6152. "MIT"
  6153. ],
  6154. "authors": [
  6155. {
  6156. "name": "Nicolas Grekas",
  6157. "email": "p@tchwork.com"
  6158. },
  6159. {
  6160. "name": "Symfony Community",
  6161. "homepage": "https://symfony.com/contributors"
  6162. }
  6163. ],
  6164. "description": "Generic abstractions related to writing services",
  6165. "homepage": "https://symfony.com",
  6166. "keywords": [
  6167. "abstractions",
  6168. "contracts",
  6169. "decoupling",
  6170. "interfaces",
  6171. "interoperability",
  6172. "standards"
  6173. ],
  6174. "support": {
  6175. "source": "https://github.com/symfony/service-contracts/tree/master"
  6176. },
  6177. "funding": [
  6178. {
  6179. "url": "https://symfony.com/sponsor",
  6180. "type": "custom"
  6181. },
  6182. {
  6183. "url": "https://github.com/fabpot",
  6184. "type": "github"
  6185. },
  6186. {
  6187. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6188. "type": "tidelift"
  6189. }
  6190. ],
  6191. "time": "2020-09-07T11:33:47+00:00"
  6192. },
  6193. {
  6194. "name": "symfony/string",
  6195. "version": "v5.1.8",
  6196. "source": {
  6197. "type": "git",
  6198. "url": "https://github.com/symfony/string.git",
  6199. "reference": "a97573e960303db71be0dd8fda9be3bca5e0feea"
  6200. },
  6201. "dist": {
  6202. "type": "zip",
  6203. "url": "https://api.github.com/repos/symfony/string/zipball/a97573e960303db71be0dd8fda9be3bca5e0feea",
  6204. "reference": "a97573e960303db71be0dd8fda9be3bca5e0feea",
  6205. "shasum": ""
  6206. },
  6207. "require": {
  6208. "php": ">=7.2.5",
  6209. "symfony/polyfill-ctype": "~1.8",
  6210. "symfony/polyfill-intl-grapheme": "~1.0",
  6211. "symfony/polyfill-intl-normalizer": "~1.0",
  6212. "symfony/polyfill-mbstring": "~1.0",
  6213. "symfony/polyfill-php80": "~1.15"
  6214. },
  6215. "require-dev": {
  6216. "symfony/error-handler": "^4.4|^5.0",
  6217. "symfony/http-client": "^4.4|^5.0",
  6218. "symfony/translation-contracts": "^1.1|^2",
  6219. "symfony/var-exporter": "^4.4|^5.0"
  6220. },
  6221. "type": "library",
  6222. "autoload": {
  6223. "psr-4": {
  6224. "Symfony\\Component\\String\\": ""
  6225. },
  6226. "files": [
  6227. "Resources/functions.php"
  6228. ],
  6229. "exclude-from-classmap": [
  6230. "/Tests/"
  6231. ]
  6232. },
  6233. "notification-url": "https://packagist.org/downloads/",
  6234. "license": [
  6235. "MIT"
  6236. ],
  6237. "authors": [
  6238. {
  6239. "name": "Nicolas Grekas",
  6240. "email": "p@tchwork.com"
  6241. },
  6242. {
  6243. "name": "Symfony Community",
  6244. "homepage": "https://symfony.com/contributors"
  6245. }
  6246. ],
  6247. "description": "Symfony String component",
  6248. "homepage": "https://symfony.com",
  6249. "keywords": [
  6250. "grapheme",
  6251. "i18n",
  6252. "string",
  6253. "unicode",
  6254. "utf-8",
  6255. "utf8"
  6256. ],
  6257. "support": {
  6258. "source": "https://github.com/symfony/string/tree/v5.1.8"
  6259. },
  6260. "funding": [
  6261. {
  6262. "url": "https://symfony.com/sponsor",
  6263. "type": "custom"
  6264. },
  6265. {
  6266. "url": "https://github.com/fabpot",
  6267. "type": "github"
  6268. },
  6269. {
  6270. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6271. "type": "tidelift"
  6272. }
  6273. ],
  6274. "time": "2020-10-24T12:01:57+00:00"
  6275. },
  6276. {
  6277. "name": "symfony/translation",
  6278. "version": "v5.1.8",
  6279. "source": {
  6280. "type": "git",
  6281. "url": "https://github.com/symfony/translation.git",
  6282. "reference": "27980838fd261e04379fa91e94e81e662fe5a1b6"
  6283. },
  6284. "dist": {
  6285. "type": "zip",
  6286. "url": "https://api.github.com/repos/symfony/translation/zipball/27980838fd261e04379fa91e94e81e662fe5a1b6",
  6287. "reference": "27980838fd261e04379fa91e94e81e662fe5a1b6",
  6288. "shasum": ""
  6289. },
  6290. "require": {
  6291. "php": ">=7.2.5",
  6292. "symfony/polyfill-mbstring": "~1.0",
  6293. "symfony/polyfill-php80": "^1.15",
  6294. "symfony/translation-contracts": "^2"
  6295. },
  6296. "conflict": {
  6297. "symfony/config": "<4.4",
  6298. "symfony/dependency-injection": "<5.0",
  6299. "symfony/http-kernel": "<5.0",
  6300. "symfony/twig-bundle": "<5.0",
  6301. "symfony/yaml": "<4.4"
  6302. },
  6303. "provide": {
  6304. "symfony/translation-implementation": "2.0"
  6305. },
  6306. "require-dev": {
  6307. "psr/log": "~1.0",
  6308. "symfony/config": "^4.4|^5.0",
  6309. "symfony/console": "^4.4|^5.0",
  6310. "symfony/dependency-injection": "^5.0",
  6311. "symfony/finder": "^4.4|^5.0",
  6312. "symfony/http-kernel": "^5.0",
  6313. "symfony/intl": "^4.4|^5.0",
  6314. "symfony/service-contracts": "^1.1.2|^2",
  6315. "symfony/yaml": "^4.4|^5.0"
  6316. },
  6317. "suggest": {
  6318. "psr/log-implementation": "To use logging capability in translator",
  6319. "symfony/config": "",
  6320. "symfony/yaml": ""
  6321. },
  6322. "type": "library",
  6323. "autoload": {
  6324. "psr-4": {
  6325. "Symfony\\Component\\Translation\\": ""
  6326. },
  6327. "exclude-from-classmap": [
  6328. "/Tests/"
  6329. ]
  6330. },
  6331. "notification-url": "https://packagist.org/downloads/",
  6332. "license": [
  6333. "MIT"
  6334. ],
  6335. "authors": [
  6336. {
  6337. "name": "Fabien Potencier",
  6338. "email": "fabien@symfony.com"
  6339. },
  6340. {
  6341. "name": "Symfony Community",
  6342. "homepage": "https://symfony.com/contributors"
  6343. }
  6344. ],
  6345. "description": "Symfony Translation Component",
  6346. "homepage": "https://symfony.com",
  6347. "support": {
  6348. "source": "https://github.com/symfony/translation/tree/v5.1.8"
  6349. },
  6350. "funding": [
  6351. {
  6352. "url": "https://symfony.com/sponsor",
  6353. "type": "custom"
  6354. },
  6355. {
  6356. "url": "https://github.com/fabpot",
  6357. "type": "github"
  6358. },
  6359. {
  6360. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6361. "type": "tidelift"
  6362. }
  6363. ],
  6364. "time": "2020-10-24T12:01:57+00:00"
  6365. },
  6366. {
  6367. "name": "symfony/translation-contracts",
  6368. "version": "v2.3.0",
  6369. "source": {
  6370. "type": "git",
  6371. "url": "https://github.com/symfony/translation-contracts.git",
  6372. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105"
  6373. },
  6374. "dist": {
  6375. "type": "zip",
  6376. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  6377. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  6378. "shasum": ""
  6379. },
  6380. "require": {
  6381. "php": ">=7.2.5"
  6382. },
  6383. "suggest": {
  6384. "symfony/translation-implementation": ""
  6385. },
  6386. "type": "library",
  6387. "extra": {
  6388. "branch-alias": {
  6389. "dev-master": "2.3-dev"
  6390. },
  6391. "thanks": {
  6392. "name": "symfony/contracts",
  6393. "url": "https://github.com/symfony/contracts"
  6394. }
  6395. },
  6396. "autoload": {
  6397. "psr-4": {
  6398. "Symfony\\Contracts\\Translation\\": ""
  6399. }
  6400. },
  6401. "notification-url": "https://packagist.org/downloads/",
  6402. "license": [
  6403. "MIT"
  6404. ],
  6405. "authors": [
  6406. {
  6407. "name": "Nicolas Grekas",
  6408. "email": "p@tchwork.com"
  6409. },
  6410. {
  6411. "name": "Symfony Community",
  6412. "homepage": "https://symfony.com/contributors"
  6413. }
  6414. ],
  6415. "description": "Generic abstractions related to translation",
  6416. "homepage": "https://symfony.com",
  6417. "keywords": [
  6418. "abstractions",
  6419. "contracts",
  6420. "decoupling",
  6421. "interfaces",
  6422. "interoperability",
  6423. "standards"
  6424. ],
  6425. "support": {
  6426. "source": "https://github.com/symfony/translation-contracts/tree/v2.3.0"
  6427. },
  6428. "funding": [
  6429. {
  6430. "url": "https://symfony.com/sponsor",
  6431. "type": "custom"
  6432. },
  6433. {
  6434. "url": "https://github.com/fabpot",
  6435. "type": "github"
  6436. },
  6437. {
  6438. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6439. "type": "tidelift"
  6440. }
  6441. ],
  6442. "time": "2020-09-28T13:05:58+00:00"
  6443. },
  6444. {
  6445. "name": "symfony/var-dumper",
  6446. "version": "v5.1.8",
  6447. "source": {
  6448. "type": "git",
  6449. "url": "https://github.com/symfony/var-dumper.git",
  6450. "reference": "4e13f3fcefb1fcaaa5efb5403581406f4e840b9a"
  6451. },
  6452. "dist": {
  6453. "type": "zip",
  6454. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/4e13f3fcefb1fcaaa5efb5403581406f4e840b9a",
  6455. "reference": "4e13f3fcefb1fcaaa5efb5403581406f4e840b9a",
  6456. "shasum": ""
  6457. },
  6458. "require": {
  6459. "php": ">=7.2.5",
  6460. "symfony/polyfill-mbstring": "~1.0",
  6461. "symfony/polyfill-php80": "^1.15"
  6462. },
  6463. "conflict": {
  6464. "phpunit/phpunit": "<5.4.3",
  6465. "symfony/console": "<4.4"
  6466. },
  6467. "require-dev": {
  6468. "ext-iconv": "*",
  6469. "symfony/console": "^4.4|^5.0",
  6470. "symfony/process": "^4.4|^5.0",
  6471. "twig/twig": "^2.4|^3.0"
  6472. },
  6473. "suggest": {
  6474. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  6475. "ext-intl": "To show region name in time zone dump",
  6476. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  6477. },
  6478. "bin": [
  6479. "Resources/bin/var-dump-server"
  6480. ],
  6481. "type": "library",
  6482. "autoload": {
  6483. "files": [
  6484. "Resources/functions/dump.php"
  6485. ],
  6486. "psr-4": {
  6487. "Symfony\\Component\\VarDumper\\": ""
  6488. },
  6489. "exclude-from-classmap": [
  6490. "/Tests/"
  6491. ]
  6492. },
  6493. "notification-url": "https://packagist.org/downloads/",
  6494. "license": [
  6495. "MIT"
  6496. ],
  6497. "authors": [
  6498. {
  6499. "name": "Nicolas Grekas",
  6500. "email": "p@tchwork.com"
  6501. },
  6502. {
  6503. "name": "Symfony Community",
  6504. "homepage": "https://symfony.com/contributors"
  6505. }
  6506. ],
  6507. "description": "Symfony mechanism for exploring and dumping PHP variables",
  6508. "homepage": "https://symfony.com",
  6509. "keywords": [
  6510. "debug",
  6511. "dump"
  6512. ],
  6513. "support": {
  6514. "source": "https://github.com/symfony/var-dumper/tree/v5.1.8"
  6515. },
  6516. "funding": [
  6517. {
  6518. "url": "https://symfony.com/sponsor",
  6519. "type": "custom"
  6520. },
  6521. {
  6522. "url": "https://github.com/fabpot",
  6523. "type": "github"
  6524. },
  6525. {
  6526. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6527. "type": "tidelift"
  6528. }
  6529. ],
  6530. "time": "2020-10-27T10:11:13+00:00"
  6531. },
  6532. {
  6533. "name": "tijsverkoyen/css-to-inline-styles",
  6534. "version": "2.2.3",
  6535. "source": {
  6536. "type": "git",
  6537. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  6538. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5"
  6539. },
  6540. "dist": {
  6541. "type": "zip",
  6542. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/b43b05cf43c1b6d849478965062b6ef73e223bb5",
  6543. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5",
  6544. "shasum": ""
  6545. },
  6546. "require": {
  6547. "ext-dom": "*",
  6548. "ext-libxml": "*",
  6549. "php": "^5.5 || ^7.0 || ^8.0",
  6550. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0"
  6551. },
  6552. "require-dev": {
  6553. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5"
  6554. },
  6555. "type": "library",
  6556. "extra": {
  6557. "branch-alias": {
  6558. "dev-master": "2.2.x-dev"
  6559. }
  6560. },
  6561. "autoload": {
  6562. "psr-4": {
  6563. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  6564. }
  6565. },
  6566. "notification-url": "https://packagist.org/downloads/",
  6567. "license": [
  6568. "BSD-3-Clause"
  6569. ],
  6570. "authors": [
  6571. {
  6572. "name": "Tijs Verkoyen",
  6573. "email": "css_to_inline_styles@verkoyen.eu",
  6574. "role": "Developer"
  6575. }
  6576. ],
  6577. "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.",
  6578. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  6579. "support": {
  6580. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  6581. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.3"
  6582. },
  6583. "time": "2020-07-13T06:12:54+00:00"
  6584. },
  6585. {
  6586. "name": "vlucas/phpdotenv",
  6587. "version": "v4.1.8",
  6588. "source": {
  6589. "type": "git",
  6590. "url": "https://github.com/vlucas/phpdotenv.git",
  6591. "reference": "572af79d913627a9d70374d27a6f5d689a35de32"
  6592. },
  6593. "dist": {
  6594. "type": "zip",
  6595. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/572af79d913627a9d70374d27a6f5d689a35de32",
  6596. "reference": "572af79d913627a9d70374d27a6f5d689a35de32",
  6597. "shasum": ""
  6598. },
  6599. "require": {
  6600. "php": "^5.5.9 || ^7.0 || ^8.0",
  6601. "phpoption/phpoption": "^1.7.3",
  6602. "symfony/polyfill-ctype": "^1.17"
  6603. },
  6604. "require-dev": {
  6605. "bamarni/composer-bin-plugin": "^1.4.1",
  6606. "ext-filter": "*",
  6607. "ext-pcre": "*",
  6608. "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0"
  6609. },
  6610. "suggest": {
  6611. "ext-filter": "Required to use the boolean validator.",
  6612. "ext-pcre": "Required to use most of the library."
  6613. },
  6614. "type": "library",
  6615. "extra": {
  6616. "branch-alias": {
  6617. "dev-master": "4.1-dev"
  6618. }
  6619. },
  6620. "autoload": {
  6621. "psr-4": {
  6622. "Dotenv\\": "src/"
  6623. }
  6624. },
  6625. "notification-url": "https://packagist.org/downloads/",
  6626. "license": [
  6627. "BSD-3-Clause"
  6628. ],
  6629. "authors": [
  6630. {
  6631. "name": "Graham Campbell",
  6632. "email": "graham@alt-three.com",
  6633. "homepage": "https://gjcampbell.co.uk/"
  6634. },
  6635. {
  6636. "name": "Vance Lucas",
  6637. "email": "vance@vancelucas.com",
  6638. "homepage": "https://vancelucas.com/"
  6639. }
  6640. ],
  6641. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  6642. "keywords": [
  6643. "dotenv",
  6644. "env",
  6645. "environment"
  6646. ],
  6647. "support": {
  6648. "issues": "https://github.com/vlucas/phpdotenv/issues",
  6649. "source": "https://github.com/vlucas/phpdotenv/tree/4.1"
  6650. },
  6651. "funding": [
  6652. {
  6653. "url": "https://github.com/GrahamCampbell",
  6654. "type": "github"
  6655. },
  6656. {
  6657. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  6658. "type": "tidelift"
  6659. }
  6660. ],
  6661. "time": "2020-07-14T19:22:52+00:00"
  6662. },
  6663. {
  6664. "name": "voku/portable-ascii",
  6665. "version": "1.5.6",
  6666. "source": {
  6667. "type": "git",
  6668. "url": "https://github.com/voku/portable-ascii.git",
  6669. "reference": "80953678b19901e5165c56752d087fc11526017c"
  6670. },
  6671. "dist": {
  6672. "type": "zip",
  6673. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/80953678b19901e5165c56752d087fc11526017c",
  6674. "reference": "80953678b19901e5165c56752d087fc11526017c",
  6675. "shasum": ""
  6676. },
  6677. "require": {
  6678. "php": ">=7.0.0"
  6679. },
  6680. "require-dev": {
  6681. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  6682. },
  6683. "suggest": {
  6684. "ext-intl": "Use Intl for transliterator_transliterate() support"
  6685. },
  6686. "type": "library",
  6687. "autoload": {
  6688. "psr-4": {
  6689. "voku\\": "src/voku/"
  6690. }
  6691. },
  6692. "notification-url": "https://packagist.org/downloads/",
  6693. "license": [
  6694. "MIT"
  6695. ],
  6696. "authors": [
  6697. {
  6698. "name": "Lars Moelleken",
  6699. "homepage": "http://www.moelleken.org/"
  6700. }
  6701. ],
  6702. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  6703. "homepage": "https://github.com/voku/portable-ascii",
  6704. "keywords": [
  6705. "ascii",
  6706. "clean",
  6707. "php"
  6708. ],
  6709. "support": {
  6710. "issues": "https://github.com/voku/portable-ascii/issues",
  6711. "source": "https://github.com/voku/portable-ascii/tree/1.5.6"
  6712. },
  6713. "funding": [
  6714. {
  6715. "url": "https://www.paypal.me/moelleken",
  6716. "type": "custom"
  6717. },
  6718. {
  6719. "url": "https://github.com/voku",
  6720. "type": "github"
  6721. },
  6722. {
  6723. "url": "https://opencollective.com/portable-ascii",
  6724. "type": "open_collective"
  6725. },
  6726. {
  6727. "url": "https://www.patreon.com/voku",
  6728. "type": "patreon"
  6729. },
  6730. {
  6731. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  6732. "type": "tidelift"
  6733. }
  6734. ],
  6735. "time": "2020-11-12T00:07:28+00:00"
  6736. },
  6737. {
  6738. "name": "xhat/payjs",
  6739. "version": "1.5.0",
  6740. "source": {
  6741. "type": "git",
  6742. "url": "https://github.com/xhat/payjs.git",
  6743. "reference": "d15b678f7fb70fc70bafa82c5a7896fceebad364"
  6744. },
  6745. "dist": {
  6746. "type": "zip",
  6747. "url": "https://api.github.com/repos/xhat/payjs/zipball/d15b678f7fb70fc70bafa82c5a7896fceebad364",
  6748. "reference": "d15b678f7fb70fc70bafa82c5a7896fceebad364",
  6749. "shasum": ""
  6750. },
  6751. "type": "library",
  6752. "autoload": {
  6753. "psr-4": {
  6754. "Xhat\\Payjs\\": "src/"
  6755. }
  6756. },
  6757. "notification-url": "https://packagist.org/downloads/",
  6758. "license": [
  6759. "MIT"
  6760. ],
  6761. "authors": [
  6762. {
  6763. "name": "andy",
  6764. "email": "andy@popfeng.com"
  6765. }
  6766. ],
  6767. "description": "本项目是基于 PAYJS 的 API 开发的 Composer Package,可直接用于生产环境 https://payjs.cn",
  6768. "support": {
  6769. "issues": "https://github.com/xhat/payjs/issues",
  6770. "source": "https://github.com/xhat/payjs/tree/1.5.0"
  6771. },
  6772. "funding": [
  6773. {
  6774. "url": "https://payjs.cn/sponsor/dajjxz",
  6775. "type": "custom"
  6776. }
  6777. ],
  6778. "time": "2020-09-11T06:02:42+00:00"
  6779. },
  6780. {
  6781. "name": "zbrettonye/geetest",
  6782. "version": "v1.2.0",
  6783. "source": {
  6784. "type": "git",
  6785. "url": "https://github.com/ZBrettonYe/geetest.git",
  6786. "reference": "ee08e5bee9be831c23df241d3ab75678a8ce5fed"
  6787. },
  6788. "dist": {
  6789. "type": "zip",
  6790. "url": "https://api.github.com/repos/ZBrettonYe/geetest/zipball/ee08e5bee9be831c23df241d3ab75678a8ce5fed",
  6791. "reference": "ee08e5bee9be831c23df241d3ab75678a8ce5fed",
  6792. "shasum": ""
  6793. },
  6794. "require": {
  6795. "ext-json": "*",
  6796. "guzzlehttp/guzzle": "^6.3|^7.0",
  6797. "illuminate/routing": "^6|^7|^8",
  6798. "illuminate/support": "^6|^7|^8",
  6799. "php": "^7.2"
  6800. },
  6801. "require-dev": {
  6802. "mockery/mockery": "^1.3.1",
  6803. "phpunit/phpunit": "^7.5.15|^8.4|^9.0"
  6804. },
  6805. "type": "library",
  6806. "extra": {
  6807. "laravel": {
  6808. "providers": [
  6809. "ZBrettonYe\\Geetest\\GeetestServiceProvider"
  6810. ],
  6811. "aliases": {
  6812. "Geetest": "ZBrettonYe\\Geetest\\Geetest"
  6813. }
  6814. }
  6815. },
  6816. "autoload": {
  6817. "psr-4": {
  6818. "ZBrettonYe\\Geetest\\": "src/"
  6819. }
  6820. },
  6821. "notification-url": "https://packagist.org/downloads/",
  6822. "license": [
  6823. "MIT"
  6824. ],
  6825. "authors": [
  6826. {
  6827. "name": "zbrettonye",
  6828. "email": "monkeyblacktech97@gmail.com"
  6829. }
  6830. ],
  6831. "description": "Geetest Package for Laravel6-8",
  6832. "keywords": [
  6833. "geetest",
  6834. "laravel"
  6835. ],
  6836. "support": {
  6837. "source": "https://github.com/ZBrettonYe/geetest/tree/v1.2.0"
  6838. },
  6839. "time": "2020-10-13T20:15:36+00:00"
  6840. },
  6841. {
  6842. "name": "zbrettonye/hcaptcha",
  6843. "version": "V1.1.0",
  6844. "source": {
  6845. "type": "git",
  6846. "url": "https://github.com/ZBrettonYe/hcaptcha.git",
  6847. "reference": "d84cb1bcf754ada345da8baadf7129dbca67d1ee"
  6848. },
  6849. "dist": {
  6850. "type": "zip",
  6851. "url": "https://api.github.com/repos/ZBrettonYe/hcaptcha/zipball/d84cb1bcf754ada345da8baadf7129dbca67d1ee",
  6852. "reference": "d84cb1bcf754ada345da8baadf7129dbca67d1ee",
  6853. "shasum": ""
  6854. },
  6855. "require": {
  6856. "guzzlehttp/guzzle": "^6.2|^7.0",
  6857. "illuminate/support": "^6|^7|^8",
  6858. "php": "^7.2"
  6859. },
  6860. "require-dev": {
  6861. "phpunit/phpunit": "~4.8"
  6862. },
  6863. "type": "library",
  6864. "extra": {
  6865. "laravel": {
  6866. "providers": [
  6867. "ZBrettonYe\\HCaptcha\\HCaptchaServiceProvider"
  6868. ],
  6869. "aliases": {
  6870. "HCaptcha": "ZBrettonYe\\HCaptcha\\Facades\\HCaptcha"
  6871. }
  6872. }
  6873. },
  6874. "autoload": {
  6875. "psr-4": {
  6876. "ZBrettonYe\\HCaptcha\\": "src/"
  6877. }
  6878. },
  6879. "notification-url": "https://packagist.org/downloads/",
  6880. "license": [
  6881. "MIT"
  6882. ],
  6883. "authors": [
  6884. {
  6885. "name": "zbrettonye",
  6886. "email": "monkeyblacktech97@gmail.com"
  6887. }
  6888. ],
  6889. "description": "hCaptcha For Laravel6~8",
  6890. "keywords": [
  6891. "captcha",
  6892. "hcaptcha",
  6893. "laravel"
  6894. ],
  6895. "support": {
  6896. "source": "https://github.com/ZBrettonYe/hcaptcha/tree/V1.1.0"
  6897. },
  6898. "time": "2020-10-13T21:22:51+00:00"
  6899. },
  6900. {
  6901. "name": "zbrettonye/no-captcha",
  6902. "version": "v1.1.0",
  6903. "source": {
  6904. "type": "git",
  6905. "url": "https://github.com/ZBrettonYe/no-captcha.git",
  6906. "reference": "4cb229bf5fa9f5726eb5a821e9710c5fc8edad28"
  6907. },
  6908. "dist": {
  6909. "type": "zip",
  6910. "url": "https://api.github.com/repos/ZBrettonYe/no-captcha/zipball/4cb229bf5fa9f5726eb5a821e9710c5fc8edad28",
  6911. "reference": "4cb229bf5fa9f5726eb5a821e9710c5fc8edad28",
  6912. "shasum": ""
  6913. },
  6914. "require": {
  6915. "ext-json": "*",
  6916. "guzzlehttp/guzzle": "^6.2|^7.0",
  6917. "illuminate/support": "^6|^7|^8",
  6918. "php": "^7.2"
  6919. },
  6920. "require-dev": {
  6921. "phpunit/phpunit": "~4.8"
  6922. },
  6923. "type": "library",
  6924. "extra": {
  6925. "laravel": {
  6926. "providers": [
  6927. "ZBrettonYe\\NoCaptcha\\NoCaptchaServiceProvider"
  6928. ],
  6929. "aliases": {
  6930. "NoCaptcha": "ZBrettonYe\\NoCaptcha\\Facades\\NoCaptcha"
  6931. }
  6932. }
  6933. },
  6934. "autoload": {
  6935. "psr-4": {
  6936. "ZBrettonYe\\NoCaptcha\\": "src/"
  6937. }
  6938. },
  6939. "notification-url": "https://packagist.org/downloads/",
  6940. "license": [
  6941. "MIT"
  6942. ],
  6943. "authors": [
  6944. {
  6945. "name": "zbrettonye",
  6946. "email": "monkeyblacktech97@gmail.com"
  6947. }
  6948. ],
  6949. "description": "No CAPTCHA reCAPTCHA For Laravel6~8",
  6950. "keywords": [
  6951. "captcha",
  6952. "laravel",
  6953. "no-captcha",
  6954. "recaptcha"
  6955. ],
  6956. "support": {
  6957. "source": "https://github.com/ZBrettonYe/no-captcha/tree/v1.1.0"
  6958. },
  6959. "time": "2020-10-13T21:35:30+00:00"
  6960. },
  6961. {
  6962. "name": "zoujingli/ip2region",
  6963. "version": "v1.0.9",
  6964. "source": {
  6965. "type": "git",
  6966. "url": "https://github.com/zoujingli/ip2region.git",
  6967. "reference": "e48f9122f50dd3b79295e35b4acdd0dcd2608ca8"
  6968. },
  6969. "dist": {
  6970. "type": "zip",
  6971. "url": "https://api.github.com/repos/zoujingli/ip2region/zipball/e48f9122f50dd3b79295e35b4acdd0dcd2608ca8",
  6972. "reference": "e48f9122f50dd3b79295e35b4acdd0dcd2608ca8",
  6973. "shasum": ""
  6974. },
  6975. "require": {
  6976. "php": ">=5.3"
  6977. },
  6978. "type": "library",
  6979. "autoload": {
  6980. "classmap": [
  6981. "Ip2Region.php"
  6982. ]
  6983. },
  6984. "notification-url": "https://packagist.org/downloads/",
  6985. "license": [
  6986. "Apache-2.0"
  6987. ],
  6988. "authors": [
  6989. {
  6990. "name": "Anyon",
  6991. "email": "zoujingli@qq.com",
  6992. "homepage": "http://ctolog.com"
  6993. }
  6994. ],
  6995. "description": "Ip2Region for PHP",
  6996. "homepage": "https://github.com/zoujingli/Ip2Region",
  6997. "keywords": [
  6998. "Ip2Region"
  6999. ],
  7000. "support": {
  7001. "issues": "https://github.com/zoujingli/ip2region/issues",
  7002. "source": "https://github.com/zoujingli/ip2region/tree/v1.0.9"
  7003. },
  7004. "time": "2020-11-06T07:21:55+00:00"
  7005. }
  7006. ],
  7007. "packages-dev": [
  7008. {
  7009. "name": "andrey-helldar/laravel-lang-publisher",
  7010. "version": "v6.1.0",
  7011. "source": {
  7012. "type": "git",
  7013. "url": "https://github.com/andrey-helldar/laravel-lang-publisher.git",
  7014. "reference": "f139c43e615c1256f5493c6a465aef06089b451e"
  7015. },
  7016. "dist": {
  7017. "type": "zip",
  7018. "url": "https://api.github.com/repos/andrey-helldar/laravel-lang-publisher/zipball/f139c43e615c1256f5493c6a465aef06089b451e",
  7019. "reference": "f139c43e615c1256f5493c6a465aef06089b451e",
  7020. "shasum": ""
  7021. },
  7022. "require": {
  7023. "andrey-helldar/pretty-array": "^1.4.2",
  7024. "andrey-helldar/support": "^1.4.1",
  7025. "ext-json": "*",
  7026. "illuminate/console": "^7.0|^8.0",
  7027. "illuminate/support": "^7.0|^8.0",
  7028. "laravel-lang/lang": "^7.0",
  7029. "php": "^7.2.5"
  7030. },
  7031. "require-dev": {
  7032. "mockery/mockery": "^1.3.1",
  7033. "orchestra/testbench": "^5.0|^6.0",
  7034. "phpunit/phpunit": "^8.4|^9.0"
  7035. },
  7036. "suggest": {
  7037. "andrey-helldar/lang-translations": "Translation of main messages",
  7038. "laravel/jetstream": "Tailwind scaffolding for the Laravel framework.",
  7039. "symfony/thanks": "Give thanks (in the form of a GitHub) to your fellow PHP package maintainers"
  7040. },
  7041. "type": "library",
  7042. "extra": {
  7043. "laravel": {
  7044. "providers": [
  7045. "Helldar\\LaravelLangPublisher\\ServiceProvider"
  7046. ]
  7047. }
  7048. },
  7049. "autoload": {
  7050. "psr-4": {
  7051. "Helldar\\LaravelLangPublisher\\": "src"
  7052. }
  7053. },
  7054. "notification-url": "https://packagist.org/downloads/",
  7055. "license": [
  7056. "MIT"
  7057. ],
  7058. "authors": [
  7059. {
  7060. "name": "Andrey Helldar",
  7061. "email": "helldar@ai-rus.com"
  7062. }
  7063. ],
  7064. "description": "Publisher lang files for the Laravel Framework + Laravel Jetstream from Laravel-Lang/lang",
  7065. "keywords": [
  7066. "i18n",
  7067. "jetstream",
  7068. "lang",
  7069. "languages",
  7070. "laravel",
  7071. "locale",
  7072. "localisation",
  7073. "localization",
  7074. "lpm",
  7075. "lumen",
  7076. "publisher",
  7077. "trans",
  7078. "translations",
  7079. "validations"
  7080. ],
  7081. "support": {
  7082. "issues": "https://github.com/andrey-helldar/laravel-lang-publisher/issues",
  7083. "source": "https://github.com/andrey-helldar/laravel-lang-publisher"
  7084. },
  7085. "funding": [
  7086. {
  7087. "url": "https://money.yandex.ru/to/410012115955701",
  7088. "type": "custom"
  7089. },
  7090. {
  7091. "url": "https://paypal.me/helldar",
  7092. "type": "custom"
  7093. }
  7094. ],
  7095. "time": "2020-10-04T14:48:29+00:00"
  7096. },
  7097. {
  7098. "name": "andrey-helldar/pretty-array",
  7099. "version": "v1.4.3",
  7100. "source": {
  7101. "type": "git",
  7102. "url": "https://github.com/andrey-helldar/pretty-array.git",
  7103. "reference": "9a173df74949d8206a03d96999f0c838ca4e82c4"
  7104. },
  7105. "dist": {
  7106. "type": "zip",
  7107. "url": "https://api.github.com/repos/andrey-helldar/pretty-array/zipball/9a173df74949d8206a03d96999f0c838ca4e82c4",
  7108. "reference": "9a173df74949d8206a03d96999f0c838ca4e82c4",
  7109. "shasum": ""
  7110. },
  7111. "require": {
  7112. "andrey-helldar/support": "^1.16.0",
  7113. "ext-dom": "*",
  7114. "ext-mbstring": "*",
  7115. "php": "^7.1.3"
  7116. },
  7117. "require-dev": {
  7118. "phpstan/phpstan": "^0.12.7",
  7119. "phpunit/phpunit": "^7.0|^8.0"
  7120. },
  7121. "suggest": {
  7122. "symfony/thanks": "Give thanks (in the form of a GitHub) to your fellow PHP package maintainers"
  7123. },
  7124. "type": "library",
  7125. "autoload": {
  7126. "psr-4": {
  7127. "Helldar\\PrettyArray\\": "src/"
  7128. }
  7129. },
  7130. "notification-url": "https://packagist.org/downloads/",
  7131. "license": [
  7132. "MIT"
  7133. ],
  7134. "authors": [
  7135. {
  7136. "name": "Andrey Helldar",
  7137. "email": "helldar@ai-rus.com"
  7138. }
  7139. ],
  7140. "description": "Simple conversion of an array to a pretty view.",
  7141. "keywords": [
  7142. "array",
  7143. "pretty",
  7144. "pretty array"
  7145. ],
  7146. "support": {
  7147. "issues": "https://github.com/andrey-helldar/pretty-array/issues",
  7148. "source": "https://github.com/andrey-helldar/pretty-array"
  7149. },
  7150. "funding": [
  7151. {
  7152. "url": "https://money.yandex.ru/to/410012115955701",
  7153. "type": "custom"
  7154. },
  7155. {
  7156. "url": "https://paypal.me/helldar",
  7157. "type": "custom"
  7158. }
  7159. ],
  7160. "time": "2020-07-24T15:19:50+00:00"
  7161. },
  7162. {
  7163. "name": "andrey-helldar/support",
  7164. "version": "v1.24.0",
  7165. "source": {
  7166. "type": "git",
  7167. "url": "https://github.com/andrey-helldar/support.git",
  7168. "reference": "158cca57e0a11432151b5da17c92053c61f5e93c"
  7169. },
  7170. "dist": {
  7171. "type": "zip",
  7172. "url": "https://api.github.com/repos/andrey-helldar/support/zipball/158cca57e0a11432151b5da17c92053c61f5e93c",
  7173. "reference": "158cca57e0a11432151b5da17c92053c61f5e93c",
  7174. "shasum": ""
  7175. },
  7176. "require": {
  7177. "ext-ctype": "*",
  7178. "ext-dom": "*",
  7179. "ext-json": "*",
  7180. "ext-mbstring": "*",
  7181. "php": "^7.1.3"
  7182. },
  7183. "require-dev": {
  7184. "ext-bcmath": "*",
  7185. "phpunit/phpunit": "^9.0"
  7186. },
  7187. "suggest": {
  7188. "andrey-helldar/laravel-support": "Various helper files for the Laravel and Lumen frameworks",
  7189. "ext-bcmath": "Require the extension if you will be using Helldar\\Support\\Facades\\Digit.",
  7190. "symfony/thanks": "Give thanks (in the form of a GitHub) to your fellow PHP package maintainers"
  7191. },
  7192. "type": "library",
  7193. "extra": {
  7194. "laravel": {
  7195. "providers": [
  7196. "Helldar\\Support\\ServiceProvider"
  7197. ]
  7198. }
  7199. },
  7200. "autoload": {
  7201. "psr-4": {
  7202. "Helldar\\Support\\": "src/"
  7203. },
  7204. "files": [
  7205. "src/helpers/digit.php",
  7206. "src/helpers/dumper.php",
  7207. "src/helpers/http.php",
  7208. "src/helpers/strings.php"
  7209. ]
  7210. },
  7211. "notification-url": "https://packagist.org/downloads/",
  7212. "license": [
  7213. "MIT"
  7214. ],
  7215. "authors": [
  7216. {
  7217. "name": "Andrey Helldar",
  7218. "email": "helldar@ai-rus.com"
  7219. }
  7220. ],
  7221. "description": "Support package is a collection of helpers and tools for projects.",
  7222. "keywords": [
  7223. "framework",
  7224. "laravel",
  7225. "support",
  7226. "symfony",
  7227. "yii",
  7228. "yii2"
  7229. ],
  7230. "support": {
  7231. "issues": "https://github.com/andrey-helldar/support/issues",
  7232. "source": "https://github.com/andrey-helldar/support"
  7233. },
  7234. "funding": [
  7235. {
  7236. "url": "https://money.yandex.ru/to/410012115955701",
  7237. "type": "custom"
  7238. },
  7239. {
  7240. "url": "https://paypal.me/helldar",
  7241. "type": "custom"
  7242. }
  7243. ],
  7244. "time": "2020-11-06T11:56:55+00:00"
  7245. },
  7246. {
  7247. "name": "arcanedev/laravel-lang",
  7248. "version": "8.0.0",
  7249. "source": {
  7250. "type": "git",
  7251. "url": "https://github.com/ARCANEDEV/LaravelLang.git",
  7252. "reference": "8b1711a37bbab081973920ad19a729dc0df2ca4b"
  7253. },
  7254. "dist": {
  7255. "type": "zip",
  7256. "url": "https://api.github.com/repos/ARCANEDEV/LaravelLang/zipball/8b1711a37bbab081973920ad19a729dc0df2ca4b",
  7257. "reference": "8b1711a37bbab081973920ad19a729dc0df2ca4b",
  7258. "shasum": ""
  7259. },
  7260. "require": {
  7261. "arcanedev/support": "^7.1.2",
  7262. "caouecs/laravel-lang": "^6.0",
  7263. "php": "^7.2.5"
  7264. },
  7265. "require-dev": {
  7266. "mockery/mockery": "^1.3.1",
  7267. "orchestra/testbench": "^5.0",
  7268. "phpunit/phpunit": "^8.5|^9.0"
  7269. },
  7270. "type": "library",
  7271. "extra": {
  7272. "laravel": {
  7273. "providers": [
  7274. "Arcanedev\\LaravelLang\\LaravelLangServiceProvider",
  7275. "Arcanedev\\LaravelLang\\Providers\\DeferredServicesProvider",
  7276. "Arcanedev\\LaravelLang\\Providers\\TranslationServiceProvider"
  7277. ]
  7278. }
  7279. },
  7280. "autoload": {
  7281. "psr-4": {
  7282. "Arcanedev\\LaravelLang\\": "src/"
  7283. }
  7284. },
  7285. "notification-url": "https://packagist.org/downloads/",
  7286. "license": [
  7287. "MIT"
  7288. ],
  7289. "authors": [
  7290. {
  7291. "name": "ARCANEDEV",
  7292. "email": "arcanedev.maroc@gmail.com",
  7293. "homepage": "https://github.com/arcanedev-maroc",
  7294. "role": "Developer"
  7295. }
  7296. ],
  7297. "description": "Translations manager and checker for Laravel 5 based on 'caouecs/laravel4-lang' package.",
  7298. "homepage": "https://github.com/ARCANEDEV/LaravelLang",
  7299. "keywords": [
  7300. "arcanedev",
  7301. "lang",
  7302. "languages",
  7303. "laravel",
  7304. "localisation",
  7305. "localization",
  7306. "trans",
  7307. "translations",
  7308. "validations"
  7309. ],
  7310. "support": {
  7311. "issues": "https://github.com/ARCANEDEV/LaravelLang/issues",
  7312. "source": "https://github.com/ARCANEDEV/LaravelLang/tree/master"
  7313. },
  7314. "time": "2020-03-21T21:29:29+00:00"
  7315. },
  7316. {
  7317. "name": "arcanedev/support",
  7318. "version": "7.1.2",
  7319. "source": {
  7320. "type": "git",
  7321. "url": "https://github.com/ARCANEDEV/Support.git",
  7322. "reference": "7e4199d30f04c611ba5d895e663f111c217ff5a3"
  7323. },
  7324. "dist": {
  7325. "type": "zip",
  7326. "url": "https://api.github.com/repos/ARCANEDEV/Support/zipball/7e4199d30f04c611ba5d895e663f111c217ff5a3",
  7327. "reference": "7e4199d30f04c611ba5d895e663f111c217ff5a3",
  7328. "shasum": ""
  7329. },
  7330. "require": {
  7331. "illuminate/filesystem": "^7.0",
  7332. "illuminate/support": "^7.0",
  7333. "php": "^7.2.5"
  7334. },
  7335. "require-dev": {
  7336. "orchestra/testbench": "^5.0",
  7337. "phpunit/phpunit": "^8.0|^9.0"
  7338. },
  7339. "type": "library",
  7340. "extra": {
  7341. "branch-alias": {
  7342. "dev-master": "7.x-dev"
  7343. }
  7344. },
  7345. "autoload": {
  7346. "psr-4": {
  7347. "Arcanedev\\Support\\": "src/"
  7348. },
  7349. "files": [
  7350. "helpers.php"
  7351. ]
  7352. },
  7353. "notification-url": "https://packagist.org/downloads/",
  7354. "license": [
  7355. "MIT"
  7356. ],
  7357. "authors": [
  7358. {
  7359. "name": "ARCANEDEV",
  7360. "email": "arcanedev.maroc@gmail.com",
  7361. "homepage": "https://github.com/arcanedev-maroc"
  7362. }
  7363. ],
  7364. "description": "ARCANEDEV Support Helpers",
  7365. "homepage": "https://github.com/ARCANEDEV/Support",
  7366. "keywords": [
  7367. "arcanedev",
  7368. "arcanesoft",
  7369. "laravel",
  7370. "support"
  7371. ],
  7372. "support": {
  7373. "issues": "https://github.com/ARCANEDEV/Support/issues",
  7374. "source": "https://github.com/ARCANEDEV/Support/tree/7.1.2"
  7375. },
  7376. "time": "2020-03-12T09:28:19+00:00"
  7377. },
  7378. {
  7379. "name": "barryvdh/laravel-debugbar",
  7380. "version": "v3.5.1",
  7381. "source": {
  7382. "type": "git",
  7383. "url": "https://github.com/barryvdh/laravel-debugbar.git",
  7384. "reference": "233c10688f4c1a6e66ed2ef123038b1363d1bedc"
  7385. },
  7386. "dist": {
  7387. "type": "zip",
  7388. "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/233c10688f4c1a6e66ed2ef123038b1363d1bedc",
  7389. "reference": "233c10688f4c1a6e66ed2ef123038b1363d1bedc",
  7390. "shasum": ""
  7391. },
  7392. "require": {
  7393. "illuminate/routing": "^6|^7|^8",
  7394. "illuminate/session": "^6|^7|^8",
  7395. "illuminate/support": "^6|^7|^8",
  7396. "maximebf/debugbar": "^1.16.3",
  7397. "php": ">=7.2",
  7398. "symfony/debug": "^4.3|^5",
  7399. "symfony/finder": "^4.3|^5"
  7400. },
  7401. "require-dev": {
  7402. "orchestra/testbench-dusk": "^4|^5|^6",
  7403. "phpunit/phpunit": "^8.5|^9.0",
  7404. "squizlabs/php_codesniffer": "^3.5"
  7405. },
  7406. "type": "library",
  7407. "extra": {
  7408. "branch-alias": {
  7409. "dev-master": "3.5-dev"
  7410. },
  7411. "laravel": {
  7412. "providers": [
  7413. "Barryvdh\\Debugbar\\ServiceProvider"
  7414. ],
  7415. "aliases": {
  7416. "Debugbar": "Barryvdh\\Debugbar\\Facade"
  7417. }
  7418. }
  7419. },
  7420. "autoload": {
  7421. "psr-4": {
  7422. "Barryvdh\\Debugbar\\": "src/"
  7423. },
  7424. "files": [
  7425. "src/helpers.php"
  7426. ]
  7427. },
  7428. "notification-url": "https://packagist.org/downloads/",
  7429. "license": [
  7430. "MIT"
  7431. ],
  7432. "authors": [
  7433. {
  7434. "name": "Barry vd. Heuvel",
  7435. "email": "barryvdh@gmail.com"
  7436. }
  7437. ],
  7438. "description": "PHP Debugbar integration for Laravel",
  7439. "keywords": [
  7440. "debug",
  7441. "debugbar",
  7442. "laravel",
  7443. "profiler",
  7444. "webprofiler"
  7445. ],
  7446. "support": {
  7447. "issues": "https://github.com/barryvdh/laravel-debugbar/issues",
  7448. "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.5.1"
  7449. },
  7450. "funding": [
  7451. {
  7452. "url": "https://github.com/barryvdh",
  7453. "type": "github"
  7454. }
  7455. ],
  7456. "time": "2020-09-07T19:32:39+00:00"
  7457. },
  7458. {
  7459. "name": "barryvdh/laravel-ide-helper",
  7460. "version": "v2.8.1",
  7461. "source": {
  7462. "type": "git",
  7463. "url": "https://github.com/barryvdh/laravel-ide-helper.git",
  7464. "reference": "affa55122f83575888d4ebf1728992686e8223de"
  7465. },
  7466. "dist": {
  7467. "type": "zip",
  7468. "url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/affa55122f83575888d4ebf1728992686e8223de",
  7469. "reference": "affa55122f83575888d4ebf1728992686e8223de",
  7470. "shasum": ""
  7471. },
  7472. "require": {
  7473. "barryvdh/reflection-docblock": "^2.0.6",
  7474. "composer/composer": "^1.6 || ^2.0@dev",
  7475. "doctrine/dbal": "~2.3",
  7476. "ext-json": "*",
  7477. "illuminate/console": "^6 || ^7 || ^8",
  7478. "illuminate/filesystem": "^6 || ^7 || ^8",
  7479. "illuminate/support": "^6 || ^7 || ^8",
  7480. "php": ">=7.2",
  7481. "phpdocumentor/type-resolver": "^1.1.0"
  7482. },
  7483. "require-dev": {
  7484. "friendsofphp/php-cs-fixer": "^2",
  7485. "illuminate/config": "^6 || ^7 || ^8",
  7486. "illuminate/view": "^6 || ^7 || ^8",
  7487. "mockery/mockery": "^1.3",
  7488. "orchestra/testbench": "^4 || ^5 || ^6",
  7489. "phpunit/phpunit": "^8.5 || ^9",
  7490. "spatie/phpunit-snapshot-assertions": "^1.4 || ^2.2 || ^3",
  7491. "vimeo/psalm": "^3.12"
  7492. },
  7493. "type": "library",
  7494. "extra": {
  7495. "branch-alias": {
  7496. "dev-master": "2.8-dev"
  7497. },
  7498. "laravel": {
  7499. "providers": [
  7500. "Barryvdh\\LaravelIdeHelper\\IdeHelperServiceProvider"
  7501. ]
  7502. }
  7503. },
  7504. "autoload": {
  7505. "psr-4": {
  7506. "Barryvdh\\LaravelIdeHelper\\": "src"
  7507. }
  7508. },
  7509. "notification-url": "https://packagist.org/downloads/",
  7510. "license": [
  7511. "MIT"
  7512. ],
  7513. "authors": [
  7514. {
  7515. "name": "Barry vd. Heuvel",
  7516. "email": "barryvdh@gmail.com"
  7517. }
  7518. ],
  7519. "description": "Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.",
  7520. "keywords": [
  7521. "autocomplete",
  7522. "codeintel",
  7523. "helper",
  7524. "ide",
  7525. "laravel",
  7526. "netbeans",
  7527. "phpdoc",
  7528. "phpstorm",
  7529. "sublime"
  7530. ],
  7531. "support": {
  7532. "issues": "https://github.com/barryvdh/laravel-ide-helper/issues",
  7533. "source": "https://github.com/barryvdh/laravel-ide-helper/tree/master"
  7534. },
  7535. "funding": [
  7536. {
  7537. "url": "https://github.com/barryvdh",
  7538. "type": "github"
  7539. }
  7540. ],
  7541. "time": "2020-09-07T07:36:37+00:00"
  7542. },
  7543. {
  7544. "name": "barryvdh/reflection-docblock",
  7545. "version": "v2.0.6",
  7546. "source": {
  7547. "type": "git",
  7548. "url": "https://github.com/barryvdh/ReflectionDocBlock.git",
  7549. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16"
  7550. },
  7551. "dist": {
  7552. "type": "zip",
  7553. "url": "https://api.github.com/repos/barryvdh/ReflectionDocBlock/zipball/6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  7554. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  7555. "shasum": ""
  7556. },
  7557. "require": {
  7558. "php": ">=5.3.3"
  7559. },
  7560. "require-dev": {
  7561. "phpunit/phpunit": "~4.0,<4.5"
  7562. },
  7563. "suggest": {
  7564. "dflydev/markdown": "~1.0",
  7565. "erusev/parsedown": "~1.0"
  7566. },
  7567. "type": "library",
  7568. "extra": {
  7569. "branch-alias": {
  7570. "dev-master": "2.0.x-dev"
  7571. }
  7572. },
  7573. "autoload": {
  7574. "psr-0": {
  7575. "Barryvdh": [
  7576. "src/"
  7577. ]
  7578. }
  7579. },
  7580. "notification-url": "https://packagist.org/downloads/",
  7581. "license": [
  7582. "MIT"
  7583. ],
  7584. "authors": [
  7585. {
  7586. "name": "Mike van Riel",
  7587. "email": "mike.vanriel@naenius.com"
  7588. }
  7589. ],
  7590. "support": {
  7591. "source": "https://github.com/barryvdh/ReflectionDocBlock/tree/v2.0.6"
  7592. },
  7593. "time": "2018-12-13T10:34:14+00:00"
  7594. },
  7595. {
  7596. "name": "caouecs/laravel-lang",
  7597. "version": "6.1.4",
  7598. "source": {
  7599. "type": "git",
  7600. "url": "https://github.com/caouecs/lang.git",
  7601. "reference": "18a7845e813e737a56a7f164301d5014b536950c"
  7602. },
  7603. "dist": {
  7604. "type": "zip",
  7605. "url": "https://api.github.com/repos/caouecs/lang/zipball/18a7845e813e737a56a7f164301d5014b536950c",
  7606. "reference": "18a7845e813e737a56a7f164301d5014b536950c",
  7607. "shasum": ""
  7608. },
  7609. "require": {
  7610. "ext-json": "*"
  7611. },
  7612. "suggest": {
  7613. "andrey-helldar/laravel-lang-publisher": "Easy installation and update of translation files for your project",
  7614. "arcanedev/laravel-lang": "Translations manager and checker for Laravel 5",
  7615. "overtrue/laravel-lang": "Command to add languages in your project"
  7616. },
  7617. "type": "library",
  7618. "notification-url": "https://packagist.org/downloads/",
  7619. "license": [
  7620. "MIT"
  7621. ],
  7622. "authors": [
  7623. {
  7624. "name": "caouecs",
  7625. "email": "caouecs@caouecs.net"
  7626. }
  7627. ],
  7628. "description": "Languages for Laravel",
  7629. "keywords": [
  7630. "lang",
  7631. "languages",
  7632. "laravel",
  7633. "lpm"
  7634. ],
  7635. "support": {
  7636. "source": "https://github.com/caouecs/lang/tree/6.1.4"
  7637. },
  7638. "abandoned": "https://github.com/Laravel-Lang/lang",
  7639. "time": "2020-07-13T14:35:32+00:00"
  7640. },
  7641. {
  7642. "name": "composer/composer",
  7643. "version": "2.0.7",
  7644. "source": {
  7645. "type": "git",
  7646. "url": "https://github.com/composer/composer.git",
  7647. "reference": "cbee637510037f293e641857b2a6223d0ea8008d"
  7648. },
  7649. "dist": {
  7650. "type": "zip",
  7651. "url": "https://api.github.com/repos/composer/composer/zipball/cbee637510037f293e641857b2a6223d0ea8008d",
  7652. "reference": "cbee637510037f293e641857b2a6223d0ea8008d",
  7653. "shasum": ""
  7654. },
  7655. "require": {
  7656. "composer/ca-bundle": "^1.0",
  7657. "composer/semver": "^3.0",
  7658. "composer/spdx-licenses": "^1.2",
  7659. "composer/xdebug-handler": "^1.1",
  7660. "justinrainbow/json-schema": "^5.2.10",
  7661. "php": "^5.3.2 || ^7.0 || ^8.0",
  7662. "psr/log": "^1.0",
  7663. "react/promise": "^1.2 || ^2.7",
  7664. "seld/jsonlint": "^1.4",
  7665. "seld/phar-utils": "^1.0",
  7666. "symfony/console": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0",
  7667. "symfony/filesystem": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0",
  7668. "symfony/finder": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0",
  7669. "symfony/process": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0"
  7670. },
  7671. "require-dev": {
  7672. "phpspec/prophecy": "^1.10",
  7673. "symfony/phpunit-bridge": "^4.2 || ^5.0"
  7674. },
  7675. "suggest": {
  7676. "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages",
  7677. "ext-zip": "Enabling the zip extension allows you to unzip archives",
  7678. "ext-zlib": "Allow gzip compression of HTTP requests"
  7679. },
  7680. "bin": [
  7681. "bin/composer"
  7682. ],
  7683. "type": "library",
  7684. "extra": {
  7685. "branch-alias": {
  7686. "dev-master": "2.0-dev"
  7687. }
  7688. },
  7689. "autoload": {
  7690. "psr-4": {
  7691. "Composer\\": "src/Composer"
  7692. }
  7693. },
  7694. "notification-url": "https://packagist.org/downloads/",
  7695. "license": [
  7696. "MIT"
  7697. ],
  7698. "authors": [
  7699. {
  7700. "name": "Nils Adermann",
  7701. "email": "naderman@naderman.de",
  7702. "homepage": "https://www.naderman.de"
  7703. },
  7704. {
  7705. "name": "Jordi Boggiano",
  7706. "email": "j.boggiano@seld.be",
  7707. "homepage": "https://seld.be"
  7708. }
  7709. ],
  7710. "description": "Composer helps you declare, manage and install dependencies of PHP projects. It ensures you have the right stack everywhere.",
  7711. "homepage": "https://getcomposer.org/",
  7712. "keywords": [
  7713. "autoload",
  7714. "dependency",
  7715. "package"
  7716. ],
  7717. "support": {
  7718. "irc": "irc://irc.freenode.org/composer",
  7719. "issues": "https://github.com/composer/composer/issues",
  7720. "source": "https://github.com/composer/composer/tree/2.0.7"
  7721. },
  7722. "funding": [
  7723. {
  7724. "url": "https://packagist.com",
  7725. "type": "custom"
  7726. },
  7727. {
  7728. "url": "https://github.com/composer",
  7729. "type": "github"
  7730. },
  7731. {
  7732. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7733. "type": "tidelift"
  7734. }
  7735. ],
  7736. "time": "2020-11-13T16:31:06+00:00"
  7737. },
  7738. {
  7739. "name": "composer/semver",
  7740. "version": "3.2.4",
  7741. "source": {
  7742. "type": "git",
  7743. "url": "https://github.com/composer/semver.git",
  7744. "reference": "a02fdf930a3c1c3ed3a49b5f63859c0c20e10464"
  7745. },
  7746. "dist": {
  7747. "type": "zip",
  7748. "url": "https://api.github.com/repos/composer/semver/zipball/a02fdf930a3c1c3ed3a49b5f63859c0c20e10464",
  7749. "reference": "a02fdf930a3c1c3ed3a49b5f63859c0c20e10464",
  7750. "shasum": ""
  7751. },
  7752. "require": {
  7753. "php": "^5.3.2 || ^7.0 || ^8.0"
  7754. },
  7755. "require-dev": {
  7756. "phpstan/phpstan": "^0.12.54",
  7757. "symfony/phpunit-bridge": "^4.2 || ^5"
  7758. },
  7759. "type": "library",
  7760. "extra": {
  7761. "branch-alias": {
  7762. "dev-main": "3.x-dev"
  7763. }
  7764. },
  7765. "autoload": {
  7766. "psr-4": {
  7767. "Composer\\Semver\\": "src"
  7768. }
  7769. },
  7770. "notification-url": "https://packagist.org/downloads/",
  7771. "license": [
  7772. "MIT"
  7773. ],
  7774. "authors": [
  7775. {
  7776. "name": "Nils Adermann",
  7777. "email": "naderman@naderman.de",
  7778. "homepage": "http://www.naderman.de"
  7779. },
  7780. {
  7781. "name": "Jordi Boggiano",
  7782. "email": "j.boggiano@seld.be",
  7783. "homepage": "http://seld.be"
  7784. },
  7785. {
  7786. "name": "Rob Bast",
  7787. "email": "rob.bast@gmail.com",
  7788. "homepage": "http://robbast.nl"
  7789. }
  7790. ],
  7791. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  7792. "keywords": [
  7793. "semantic",
  7794. "semver",
  7795. "validation",
  7796. "versioning"
  7797. ],
  7798. "support": {
  7799. "irc": "irc://irc.freenode.org/composer",
  7800. "issues": "https://github.com/composer/semver/issues",
  7801. "source": "https://github.com/composer/semver/tree/3.2.4"
  7802. },
  7803. "funding": [
  7804. {
  7805. "url": "https://packagist.com",
  7806. "type": "custom"
  7807. },
  7808. {
  7809. "url": "https://github.com/composer",
  7810. "type": "github"
  7811. },
  7812. {
  7813. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7814. "type": "tidelift"
  7815. }
  7816. ],
  7817. "time": "2020-11-13T08:59:24+00:00"
  7818. },
  7819. {
  7820. "name": "composer/spdx-licenses",
  7821. "version": "1.5.4",
  7822. "source": {
  7823. "type": "git",
  7824. "url": "https://github.com/composer/spdx-licenses.git",
  7825. "reference": "6946f785871e2314c60b4524851f3702ea4f2223"
  7826. },
  7827. "dist": {
  7828. "type": "zip",
  7829. "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/6946f785871e2314c60b4524851f3702ea4f2223",
  7830. "reference": "6946f785871e2314c60b4524851f3702ea4f2223",
  7831. "shasum": ""
  7832. },
  7833. "require": {
  7834. "php": "^5.3.2 || ^7.0 || ^8.0"
  7835. },
  7836. "require-dev": {
  7837. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 7"
  7838. },
  7839. "type": "library",
  7840. "extra": {
  7841. "branch-alias": {
  7842. "dev-master": "1.x-dev"
  7843. }
  7844. },
  7845. "autoload": {
  7846. "psr-4": {
  7847. "Composer\\Spdx\\": "src"
  7848. }
  7849. },
  7850. "notification-url": "https://packagist.org/downloads/",
  7851. "license": [
  7852. "MIT"
  7853. ],
  7854. "authors": [
  7855. {
  7856. "name": "Nils Adermann",
  7857. "email": "naderman@naderman.de",
  7858. "homepage": "http://www.naderman.de"
  7859. },
  7860. {
  7861. "name": "Jordi Boggiano",
  7862. "email": "j.boggiano@seld.be",
  7863. "homepage": "http://seld.be"
  7864. },
  7865. {
  7866. "name": "Rob Bast",
  7867. "email": "rob.bast@gmail.com",
  7868. "homepage": "http://robbast.nl"
  7869. }
  7870. ],
  7871. "description": "SPDX licenses list and validation library.",
  7872. "keywords": [
  7873. "license",
  7874. "spdx",
  7875. "validator"
  7876. ],
  7877. "support": {
  7878. "irc": "irc://irc.freenode.org/composer",
  7879. "issues": "https://github.com/composer/spdx-licenses/issues",
  7880. "source": "https://github.com/composer/spdx-licenses/tree/1.5.4"
  7881. },
  7882. "funding": [
  7883. {
  7884. "url": "https://packagist.com",
  7885. "type": "custom"
  7886. },
  7887. {
  7888. "url": "https://github.com/composer",
  7889. "type": "github"
  7890. },
  7891. {
  7892. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7893. "type": "tidelift"
  7894. }
  7895. ],
  7896. "time": "2020-07-15T15:35:07+00:00"
  7897. },
  7898. {
  7899. "name": "composer/xdebug-handler",
  7900. "version": "1.4.5",
  7901. "source": {
  7902. "type": "git",
  7903. "url": "https://github.com/composer/xdebug-handler.git",
  7904. "reference": "f28d44c286812c714741478d968104c5e604a1d4"
  7905. },
  7906. "dist": {
  7907. "type": "zip",
  7908. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/f28d44c286812c714741478d968104c5e604a1d4",
  7909. "reference": "f28d44c286812c714741478d968104c5e604a1d4",
  7910. "shasum": ""
  7911. },
  7912. "require": {
  7913. "php": "^5.3.2 || ^7.0 || ^8.0",
  7914. "psr/log": "^1.0"
  7915. },
  7916. "require-dev": {
  7917. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8"
  7918. },
  7919. "type": "library",
  7920. "autoload": {
  7921. "psr-4": {
  7922. "Composer\\XdebugHandler\\": "src"
  7923. }
  7924. },
  7925. "notification-url": "https://packagist.org/downloads/",
  7926. "license": [
  7927. "MIT"
  7928. ],
  7929. "authors": [
  7930. {
  7931. "name": "John Stevenson",
  7932. "email": "john-stevenson@blueyonder.co.uk"
  7933. }
  7934. ],
  7935. "description": "Restarts a process without Xdebug.",
  7936. "keywords": [
  7937. "Xdebug",
  7938. "performance"
  7939. ],
  7940. "support": {
  7941. "irc": "irc://irc.freenode.org/composer",
  7942. "issues": "https://github.com/composer/xdebug-handler/issues",
  7943. "source": "https://github.com/composer/xdebug-handler/tree/1.4.5"
  7944. },
  7945. "funding": [
  7946. {
  7947. "url": "https://packagist.com",
  7948. "type": "custom"
  7949. },
  7950. {
  7951. "url": "https://github.com/composer",
  7952. "type": "github"
  7953. },
  7954. {
  7955. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7956. "type": "tidelift"
  7957. }
  7958. ],
  7959. "time": "2020-11-13T08:04:11+00:00"
  7960. },
  7961. {
  7962. "name": "doctrine/instantiator",
  7963. "version": "1.4.0",
  7964. "source": {
  7965. "type": "git",
  7966. "url": "https://github.com/doctrine/instantiator.git",
  7967. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
  7968. },
  7969. "dist": {
  7970. "type": "zip",
  7971. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
  7972. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
  7973. "shasum": ""
  7974. },
  7975. "require": {
  7976. "php": "^7.1 || ^8.0"
  7977. },
  7978. "require-dev": {
  7979. "doctrine/coding-standard": "^8.0",
  7980. "ext-pdo": "*",
  7981. "ext-phar": "*",
  7982. "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
  7983. "phpstan/phpstan": "^0.12",
  7984. "phpstan/phpstan-phpunit": "^0.12",
  7985. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  7986. },
  7987. "type": "library",
  7988. "autoload": {
  7989. "psr-4": {
  7990. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  7991. }
  7992. },
  7993. "notification-url": "https://packagist.org/downloads/",
  7994. "license": [
  7995. "MIT"
  7996. ],
  7997. "authors": [
  7998. {
  7999. "name": "Marco Pivetta",
  8000. "email": "ocramius@gmail.com",
  8001. "homepage": "https://ocramius.github.io/"
  8002. }
  8003. ],
  8004. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8005. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  8006. "keywords": [
  8007. "constructor",
  8008. "instantiate"
  8009. ],
  8010. "support": {
  8011. "issues": "https://github.com/doctrine/instantiator/issues",
  8012. "source": "https://github.com/doctrine/instantiator/tree/1.4.0"
  8013. },
  8014. "funding": [
  8015. {
  8016. "url": "https://www.doctrine-project.org/sponsorship.html",
  8017. "type": "custom"
  8018. },
  8019. {
  8020. "url": "https://www.patreon.com/phpdoctrine",
  8021. "type": "patreon"
  8022. },
  8023. {
  8024. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  8025. "type": "tidelift"
  8026. }
  8027. ],
  8028. "time": "2020-11-10T18:47:58+00:00"
  8029. },
  8030. {
  8031. "name": "facade/flare-client-php",
  8032. "version": "1.3.7",
  8033. "source": {
  8034. "type": "git",
  8035. "url": "https://github.com/facade/flare-client-php.git",
  8036. "reference": "fd688d3c06658f2b3b5f7bb19f051ee4ddf02492"
  8037. },
  8038. "dist": {
  8039. "type": "zip",
  8040. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/fd688d3c06658f2b3b5f7bb19f051ee4ddf02492",
  8041. "reference": "fd688d3c06658f2b3b5f7bb19f051ee4ddf02492",
  8042. "shasum": ""
  8043. },
  8044. "require": {
  8045. "facade/ignition-contracts": "~1.0",
  8046. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  8047. "php": "^7.1|^8.0",
  8048. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  8049. "symfony/mime": "^3.4|^4.0|^5.1",
  8050. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  8051. },
  8052. "require-dev": {
  8053. "friendsofphp/php-cs-fixer": "^2.14",
  8054. "phpunit/phpunit": "^7.5.16",
  8055. "spatie/phpunit-snapshot-assertions": "^2.0"
  8056. },
  8057. "type": "library",
  8058. "extra": {
  8059. "branch-alias": {
  8060. "dev-master": "1.0-dev"
  8061. }
  8062. },
  8063. "autoload": {
  8064. "psr-4": {
  8065. "Facade\\FlareClient\\": "src"
  8066. },
  8067. "files": [
  8068. "src/helpers.php"
  8069. ]
  8070. },
  8071. "notification-url": "https://packagist.org/downloads/",
  8072. "license": [
  8073. "MIT"
  8074. ],
  8075. "description": "Send PHP errors to Flare",
  8076. "homepage": "https://github.com/facade/flare-client-php",
  8077. "keywords": [
  8078. "exception",
  8079. "facade",
  8080. "flare",
  8081. "reporting"
  8082. ],
  8083. "support": {
  8084. "issues": "https://github.com/facade/flare-client-php/issues",
  8085. "source": "https://github.com/facade/flare-client-php/tree/1.3.7"
  8086. },
  8087. "funding": [
  8088. {
  8089. "url": "https://github.com/spatie",
  8090. "type": "github"
  8091. }
  8092. ],
  8093. "time": "2020-10-21T16:02:39+00:00"
  8094. },
  8095. {
  8096. "name": "facade/ignition",
  8097. "version": "2.5.1",
  8098. "source": {
  8099. "type": "git",
  8100. "url": "https://github.com/facade/ignition.git",
  8101. "reference": "3b3403f18bbdc0aeadf1ffaddf11a1588b12ec7a"
  8102. },
  8103. "dist": {
  8104. "type": "zip",
  8105. "url": "https://api.github.com/repos/facade/ignition/zipball/3b3403f18bbdc0aeadf1ffaddf11a1588b12ec7a",
  8106. "reference": "3b3403f18bbdc0aeadf1ffaddf11a1588b12ec7a",
  8107. "shasum": ""
  8108. },
  8109. "require": {
  8110. "ext-json": "*",
  8111. "ext-mbstring": "*",
  8112. "facade/flare-client-php": "^1.3.7",
  8113. "facade/ignition-contracts": "^1.0.2",
  8114. "filp/whoops": "^2.4",
  8115. "illuminate/support": "^7.0|^8.0",
  8116. "monolog/monolog": "^2.0",
  8117. "php": "^7.2.5|^8.0",
  8118. "symfony/console": "^5.0",
  8119. "symfony/var-dumper": "^5.0"
  8120. },
  8121. "require-dev": {
  8122. "friendsofphp/php-cs-fixer": "^2.14",
  8123. "mockery/mockery": "^1.3",
  8124. "orchestra/testbench": "^5.0|^6.0",
  8125. "psalm/plugin-laravel": "^1.2"
  8126. },
  8127. "suggest": {
  8128. "laravel/telescope": "^3.1"
  8129. },
  8130. "type": "library",
  8131. "extra": {
  8132. "branch-alias": {
  8133. "dev-master": "2.x-dev"
  8134. },
  8135. "laravel": {
  8136. "providers": [
  8137. "Facade\\Ignition\\IgnitionServiceProvider"
  8138. ],
  8139. "aliases": {
  8140. "Flare": "Facade\\Ignition\\Facades\\Flare"
  8141. }
  8142. }
  8143. },
  8144. "autoload": {
  8145. "psr-4": {
  8146. "Facade\\Ignition\\": "src"
  8147. },
  8148. "files": [
  8149. "src/helpers.php"
  8150. ]
  8151. },
  8152. "notification-url": "https://packagist.org/downloads/",
  8153. "license": [
  8154. "MIT"
  8155. ],
  8156. "description": "A beautiful error page for Laravel applications.",
  8157. "homepage": "https://github.com/facade/ignition",
  8158. "keywords": [
  8159. "error",
  8160. "flare",
  8161. "laravel",
  8162. "page"
  8163. ],
  8164. "support": {
  8165. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  8166. "forum": "https://twitter.com/flareappio",
  8167. "issues": "https://github.com/facade/ignition/issues",
  8168. "source": "https://github.com/facade/ignition"
  8169. },
  8170. "time": "2020-11-13T13:36:24+00:00"
  8171. },
  8172. {
  8173. "name": "facade/ignition-contracts",
  8174. "version": "1.0.2",
  8175. "source": {
  8176. "type": "git",
  8177. "url": "https://github.com/facade/ignition-contracts.git",
  8178. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  8179. },
  8180. "dist": {
  8181. "type": "zip",
  8182. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8183. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8184. "shasum": ""
  8185. },
  8186. "require": {
  8187. "php": "^7.3|^8.0"
  8188. },
  8189. "require-dev": {
  8190. "friendsofphp/php-cs-fixer": "^v2.15.8",
  8191. "phpunit/phpunit": "^9.3.11",
  8192. "vimeo/psalm": "^3.17.1"
  8193. },
  8194. "type": "library",
  8195. "autoload": {
  8196. "psr-4": {
  8197. "Facade\\IgnitionContracts\\": "src"
  8198. }
  8199. },
  8200. "notification-url": "https://packagist.org/downloads/",
  8201. "license": [
  8202. "MIT"
  8203. ],
  8204. "authors": [
  8205. {
  8206. "name": "Freek Van der Herten",
  8207. "email": "freek@spatie.be",
  8208. "homepage": "https://flareapp.io",
  8209. "role": "Developer"
  8210. }
  8211. ],
  8212. "description": "Solution contracts for Ignition",
  8213. "homepage": "https://github.com/facade/ignition-contracts",
  8214. "keywords": [
  8215. "contracts",
  8216. "flare",
  8217. "ignition"
  8218. ],
  8219. "support": {
  8220. "issues": "https://github.com/facade/ignition-contracts/issues",
  8221. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  8222. },
  8223. "time": "2020-10-16T08:27:54+00:00"
  8224. },
  8225. {
  8226. "name": "fakerphp/faker",
  8227. "version": "v1.10.1",
  8228. "source": {
  8229. "type": "git",
  8230. "url": "https://github.com/FakerPHP/Faker.git",
  8231. "reference": "f2713a5016faaf6ffc60e9d456dedb5ebf0efcae"
  8232. },
  8233. "dist": {
  8234. "type": "zip",
  8235. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/f2713a5016faaf6ffc60e9d456dedb5ebf0efcae",
  8236. "reference": "f2713a5016faaf6ffc60e9d456dedb5ebf0efcae",
  8237. "shasum": ""
  8238. },
  8239. "require": {
  8240. "php": "^7.1 || ^8.0"
  8241. },
  8242. "conflict": {
  8243. "fzaninotto/faker": "*"
  8244. },
  8245. "require-dev": {
  8246. "ext-intl": "*",
  8247. "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.4.2"
  8248. },
  8249. "type": "library",
  8250. "autoload": {
  8251. "psr-4": {
  8252. "Faker\\": "src/Faker/"
  8253. }
  8254. },
  8255. "notification-url": "https://packagist.org/downloads/",
  8256. "license": [
  8257. "MIT"
  8258. ],
  8259. "authors": [
  8260. {
  8261. "name": "François Zaninotto"
  8262. }
  8263. ],
  8264. "description": "Faker is a PHP library that generates fake data for you.",
  8265. "keywords": [
  8266. "data",
  8267. "faker",
  8268. "fixtures"
  8269. ],
  8270. "support": {
  8271. "issues": "https://github.com/FakerPHP/Faker/issues",
  8272. "source": "https://github.com/FakerPHP/Faker/tree/v1.10.1"
  8273. },
  8274. "time": "2020-10-28T09:32:46+00:00"
  8275. },
  8276. {
  8277. "name": "filp/whoops",
  8278. "version": "2.9.1",
  8279. "source": {
  8280. "type": "git",
  8281. "url": "https://github.com/filp/whoops.git",
  8282. "reference": "307fb34a5ab697461ec4c9db865b20ff2fd40771"
  8283. },
  8284. "dist": {
  8285. "type": "zip",
  8286. "url": "https://api.github.com/repos/filp/whoops/zipball/307fb34a5ab697461ec4c9db865b20ff2fd40771",
  8287. "reference": "307fb34a5ab697461ec4c9db865b20ff2fd40771",
  8288. "shasum": ""
  8289. },
  8290. "require": {
  8291. "php": "^5.5.9 || ^7.0 || ^8.0",
  8292. "psr/log": "^1.0.1"
  8293. },
  8294. "require-dev": {
  8295. "mockery/mockery": "^0.9 || ^1.0",
  8296. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  8297. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  8298. },
  8299. "suggest": {
  8300. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  8301. "whoops/soap": "Formats errors as SOAP responses"
  8302. },
  8303. "type": "library",
  8304. "extra": {
  8305. "branch-alias": {
  8306. "dev-master": "2.7-dev"
  8307. }
  8308. },
  8309. "autoload": {
  8310. "psr-4": {
  8311. "Whoops\\": "src/Whoops/"
  8312. }
  8313. },
  8314. "notification-url": "https://packagist.org/downloads/",
  8315. "license": [
  8316. "MIT"
  8317. ],
  8318. "authors": [
  8319. {
  8320. "name": "Filipe Dobreira",
  8321. "homepage": "https://github.com/filp",
  8322. "role": "Developer"
  8323. }
  8324. ],
  8325. "description": "php error handling for cool kids",
  8326. "homepage": "https://filp.github.io/whoops/",
  8327. "keywords": [
  8328. "error",
  8329. "exception",
  8330. "handling",
  8331. "library",
  8332. "throwable",
  8333. "whoops"
  8334. ],
  8335. "support": {
  8336. "issues": "https://github.com/filp/whoops/issues",
  8337. "source": "https://github.com/filp/whoops/tree/2.9.1"
  8338. },
  8339. "time": "2020-11-01T12:00:00+00:00"
  8340. },
  8341. {
  8342. "name": "hamcrest/hamcrest-php",
  8343. "version": "v2.0.1",
  8344. "source": {
  8345. "type": "git",
  8346. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8347. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8348. },
  8349. "dist": {
  8350. "type": "zip",
  8351. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8352. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8353. "shasum": ""
  8354. },
  8355. "require": {
  8356. "php": "^5.3|^7.0|^8.0"
  8357. },
  8358. "replace": {
  8359. "cordoval/hamcrest-php": "*",
  8360. "davedevelopment/hamcrest-php": "*",
  8361. "kodova/hamcrest-php": "*"
  8362. },
  8363. "require-dev": {
  8364. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8365. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8366. },
  8367. "type": "library",
  8368. "extra": {
  8369. "branch-alias": {
  8370. "dev-master": "2.1-dev"
  8371. }
  8372. },
  8373. "autoload": {
  8374. "classmap": [
  8375. "hamcrest"
  8376. ]
  8377. },
  8378. "notification-url": "https://packagist.org/downloads/",
  8379. "license": [
  8380. "BSD-3-Clause"
  8381. ],
  8382. "description": "This is the PHP port of Hamcrest Matchers",
  8383. "keywords": [
  8384. "test"
  8385. ],
  8386. "support": {
  8387. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8388. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8389. },
  8390. "time": "2020-07-09T08:09:16+00:00"
  8391. },
  8392. {
  8393. "name": "justinrainbow/json-schema",
  8394. "version": "5.2.10",
  8395. "source": {
  8396. "type": "git",
  8397. "url": "https://github.com/justinrainbow/json-schema.git",
  8398. "reference": "2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b"
  8399. },
  8400. "dist": {
  8401. "type": "zip",
  8402. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b",
  8403. "reference": "2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b",
  8404. "shasum": ""
  8405. },
  8406. "require": {
  8407. "php": ">=5.3.3"
  8408. },
  8409. "require-dev": {
  8410. "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1",
  8411. "json-schema/json-schema-test-suite": "1.2.0",
  8412. "phpunit/phpunit": "^4.8.35"
  8413. },
  8414. "bin": [
  8415. "bin/validate-json"
  8416. ],
  8417. "type": "library",
  8418. "extra": {
  8419. "branch-alias": {
  8420. "dev-master": "5.0.x-dev"
  8421. }
  8422. },
  8423. "autoload": {
  8424. "psr-4": {
  8425. "JsonSchema\\": "src/JsonSchema/"
  8426. }
  8427. },
  8428. "notification-url": "https://packagist.org/downloads/",
  8429. "license": [
  8430. "MIT"
  8431. ],
  8432. "authors": [
  8433. {
  8434. "name": "Bruno Prieto Reis",
  8435. "email": "bruno.p.reis@gmail.com"
  8436. },
  8437. {
  8438. "name": "Justin Rainbow",
  8439. "email": "justin.rainbow@gmail.com"
  8440. },
  8441. {
  8442. "name": "Igor Wiedler",
  8443. "email": "igor@wiedler.ch"
  8444. },
  8445. {
  8446. "name": "Robert Schönthal",
  8447. "email": "seroscho@googlemail.com"
  8448. }
  8449. ],
  8450. "description": "A library to validate a json schema.",
  8451. "homepage": "https://github.com/justinrainbow/json-schema",
  8452. "keywords": [
  8453. "json",
  8454. "schema"
  8455. ],
  8456. "support": {
  8457. "issues": "https://github.com/justinrainbow/json-schema/issues",
  8458. "source": "https://github.com/justinrainbow/json-schema/tree/5.2.10"
  8459. },
  8460. "time": "2020-05-27T16:41:55+00:00"
  8461. },
  8462. {
  8463. "name": "laravel/telescope",
  8464. "version": "v3.5.1",
  8465. "source": {
  8466. "type": "git",
  8467. "url": "https://github.com/laravel/telescope.git",
  8468. "reference": "a8d2e1106ba655006fde47a0b7ed53851c6398f5"
  8469. },
  8470. "dist": {
  8471. "type": "zip",
  8472. "url": "https://api.github.com/repos/laravel/telescope/zipball/a8d2e1106ba655006fde47a0b7ed53851c6398f5",
  8473. "reference": "a8d2e1106ba655006fde47a0b7ed53851c6398f5",
  8474. "shasum": ""
  8475. },
  8476. "require": {
  8477. "ext-json": "*",
  8478. "laravel/framework": "^6.0|^7.0",
  8479. "moontoast/math": "^1.1",
  8480. "php": "^7.2",
  8481. "symfony/var-dumper": "^4.4|^5.0"
  8482. },
  8483. "require-dev": {
  8484. "ext-gd": "*",
  8485. "orchestra/testbench": "^4.0|^5.0"
  8486. },
  8487. "type": "library",
  8488. "extra": {
  8489. "branch-alias": {
  8490. "dev-master": "3.x-dev"
  8491. },
  8492. "laravel": {
  8493. "providers": [
  8494. "Laravel\\Telescope\\TelescopeServiceProvider"
  8495. ]
  8496. }
  8497. },
  8498. "autoload": {
  8499. "psr-4": {
  8500. "Laravel\\Telescope\\": "src/"
  8501. }
  8502. },
  8503. "notification-url": "https://packagist.org/downloads/",
  8504. "license": [
  8505. "MIT"
  8506. ],
  8507. "authors": [
  8508. {
  8509. "name": "Taylor Otwell",
  8510. "email": "taylor@laravel.com"
  8511. },
  8512. {
  8513. "name": "Mohamed Said",
  8514. "email": "mohamed@laravel.com"
  8515. }
  8516. ],
  8517. "description": "An elegant debug assistant for the Laravel framework.",
  8518. "keywords": [
  8519. "debugging",
  8520. "laravel",
  8521. "monitoring"
  8522. ],
  8523. "support": {
  8524. "issues": "https://github.com/laravel/telescope/issues",
  8525. "source": "https://github.com/laravel/telescope/tree/v3.5.1"
  8526. },
  8527. "time": "2020-07-28T19:12:33+00:00"
  8528. },
  8529. {
  8530. "name": "maximebf/debugbar",
  8531. "version": "v1.16.3",
  8532. "source": {
  8533. "type": "git",
  8534. "url": "https://github.com/maximebf/php-debugbar.git",
  8535. "reference": "1a1605b8e9bacb34cc0c6278206d699772e1d372"
  8536. },
  8537. "dist": {
  8538. "type": "zip",
  8539. "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/1a1605b8e9bacb34cc0c6278206d699772e1d372",
  8540. "reference": "1a1605b8e9bacb34cc0c6278206d699772e1d372",
  8541. "shasum": ""
  8542. },
  8543. "require": {
  8544. "php": "^7.1",
  8545. "psr/log": "^1.0",
  8546. "symfony/var-dumper": "^2.6|^3|^4|^5"
  8547. },
  8548. "require-dev": {
  8549. "phpunit/phpunit": "^5"
  8550. },
  8551. "suggest": {
  8552. "kriswallsmith/assetic": "The best way to manage assets",
  8553. "monolog/monolog": "Log using Monolog",
  8554. "predis/predis": "Redis storage"
  8555. },
  8556. "type": "library",
  8557. "extra": {
  8558. "branch-alias": {
  8559. "dev-master": "1.16-dev"
  8560. }
  8561. },
  8562. "autoload": {
  8563. "psr-4": {
  8564. "DebugBar\\": "src/DebugBar/"
  8565. }
  8566. },
  8567. "notification-url": "https://packagist.org/downloads/",
  8568. "license": [
  8569. "MIT"
  8570. ],
  8571. "authors": [
  8572. {
  8573. "name": "Maxime Bouroumeau-Fuseau",
  8574. "email": "maxime.bouroumeau@gmail.com",
  8575. "homepage": "http://maximebf.com"
  8576. },
  8577. {
  8578. "name": "Barry vd. Heuvel",
  8579. "email": "barryvdh@gmail.com"
  8580. }
  8581. ],
  8582. "description": "Debug bar in the browser for php application",
  8583. "homepage": "https://github.com/maximebf/php-debugbar",
  8584. "keywords": [
  8585. "debug",
  8586. "debugbar"
  8587. ],
  8588. "support": {
  8589. "issues": "https://github.com/maximebf/php-debugbar/issues",
  8590. "source": "https://github.com/maximebf/php-debugbar/tree/v1.16.3"
  8591. },
  8592. "time": "2020-05-06T07:06:27+00:00"
  8593. },
  8594. {
  8595. "name": "mockery/mockery",
  8596. "version": "1.4.2",
  8597. "source": {
  8598. "type": "git",
  8599. "url": "https://github.com/mockery/mockery.git",
  8600. "reference": "20cab678faed06fac225193be281ea0fddb43b93"
  8601. },
  8602. "dist": {
  8603. "type": "zip",
  8604. "url": "https://api.github.com/repos/mockery/mockery/zipball/20cab678faed06fac225193be281ea0fddb43b93",
  8605. "reference": "20cab678faed06fac225193be281ea0fddb43b93",
  8606. "shasum": ""
  8607. },
  8608. "require": {
  8609. "hamcrest/hamcrest-php": "^2.0.1",
  8610. "lib-pcre": ">=7.0",
  8611. "php": "^7.3 || ^8.0"
  8612. },
  8613. "conflict": {
  8614. "phpunit/phpunit": "<8.0"
  8615. },
  8616. "require-dev": {
  8617. "phpunit/phpunit": "^8.5 || ^9.3"
  8618. },
  8619. "type": "library",
  8620. "extra": {
  8621. "branch-alias": {
  8622. "dev-master": "1.4.x-dev"
  8623. }
  8624. },
  8625. "autoload": {
  8626. "psr-0": {
  8627. "Mockery": "library/"
  8628. }
  8629. },
  8630. "notification-url": "https://packagist.org/downloads/",
  8631. "license": [
  8632. "BSD-3-Clause"
  8633. ],
  8634. "authors": [
  8635. {
  8636. "name": "Pádraic Brady",
  8637. "email": "padraic.brady@gmail.com",
  8638. "homepage": "http://blog.astrumfutura.com"
  8639. },
  8640. {
  8641. "name": "Dave Marshall",
  8642. "email": "dave.marshall@atstsolutions.co.uk",
  8643. "homepage": "http://davedevelopment.co.uk"
  8644. }
  8645. ],
  8646. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8647. "homepage": "https://github.com/mockery/mockery",
  8648. "keywords": [
  8649. "BDD",
  8650. "TDD",
  8651. "library",
  8652. "mock",
  8653. "mock objects",
  8654. "mockery",
  8655. "stub",
  8656. "test",
  8657. "test double",
  8658. "testing"
  8659. ],
  8660. "support": {
  8661. "issues": "https://github.com/mockery/mockery/issues",
  8662. "source": "https://github.com/mockery/mockery/tree/master"
  8663. },
  8664. "time": "2020-08-11T18:10:13+00:00"
  8665. },
  8666. {
  8667. "name": "moontoast/math",
  8668. "version": "1.2.1",
  8669. "source": {
  8670. "type": "git",
  8671. "url": "https://github.com/ramsey/moontoast-math.git",
  8672. "reference": "5f47d34c87767dbcc08b30377a9827df71de91fa"
  8673. },
  8674. "dist": {
  8675. "type": "zip",
  8676. "url": "https://api.github.com/repos/ramsey/moontoast-math/zipball/5f47d34c87767dbcc08b30377a9827df71de91fa",
  8677. "reference": "5f47d34c87767dbcc08b30377a9827df71de91fa",
  8678. "shasum": ""
  8679. },
  8680. "require": {
  8681. "php": ">=5.3.3",
  8682. "phpseclib/bcmath_compat": ">=1.0.3"
  8683. },
  8684. "require-dev": {
  8685. "jakub-onderka/php-parallel-lint": "^0.9.0",
  8686. "phpunit/phpunit": "^4.8 || ^5.5 || ^6.5 || ^7.0",
  8687. "satooshi/php-coveralls": "^0.6.1",
  8688. "squizlabs/php_codesniffer": "^2.3"
  8689. },
  8690. "type": "library",
  8691. "autoload": {
  8692. "psr-4": {
  8693. "Moontoast\\Math\\": "src/Moontoast/Math",
  8694. "Moontoast\\Math\\Exception\\": "src/Moontoast/Math/Exception"
  8695. }
  8696. },
  8697. "notification-url": "https://packagist.org/downloads/",
  8698. "license": [
  8699. "Apache-2.0"
  8700. ],
  8701. "authors": [
  8702. {
  8703. "name": "Ben Ramsey",
  8704. "email": "ben@benramsey.com",
  8705. "homepage": "https://benramsey.com"
  8706. }
  8707. ],
  8708. "description": "A mathematics library, providing functionality for large numbers",
  8709. "homepage": "https://github.com/ramsey/moontoast-math",
  8710. "keywords": [
  8711. "bcmath",
  8712. "math"
  8713. ],
  8714. "support": {
  8715. "issues": "https://github.com/ramsey/moontoast-math/issues",
  8716. "source": "https://github.com/ramsey/moontoast-math"
  8717. },
  8718. "abandoned": "brick/math",
  8719. "time": "2020-01-05T04:49:34+00:00"
  8720. },
  8721. {
  8722. "name": "myclabs/deep-copy",
  8723. "version": "1.10.2",
  8724. "source": {
  8725. "type": "git",
  8726. "url": "https://github.com/myclabs/DeepCopy.git",
  8727. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
  8728. },
  8729. "dist": {
  8730. "type": "zip",
  8731. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
  8732. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
  8733. "shasum": ""
  8734. },
  8735. "require": {
  8736. "php": "^7.1 || ^8.0"
  8737. },
  8738. "replace": {
  8739. "myclabs/deep-copy": "self.version"
  8740. },
  8741. "require-dev": {
  8742. "doctrine/collections": "^1.0",
  8743. "doctrine/common": "^2.6",
  8744. "phpunit/phpunit": "^7.1"
  8745. },
  8746. "type": "library",
  8747. "autoload": {
  8748. "psr-4": {
  8749. "DeepCopy\\": "src/DeepCopy/"
  8750. },
  8751. "files": [
  8752. "src/DeepCopy/deep_copy.php"
  8753. ]
  8754. },
  8755. "notification-url": "https://packagist.org/downloads/",
  8756. "license": [
  8757. "MIT"
  8758. ],
  8759. "description": "Create deep copies (clones) of your objects",
  8760. "keywords": [
  8761. "clone",
  8762. "copy",
  8763. "duplicate",
  8764. "object",
  8765. "object graph"
  8766. ],
  8767. "support": {
  8768. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8769. "source": "https://github.com/myclabs/DeepCopy/tree/1.10.2"
  8770. },
  8771. "funding": [
  8772. {
  8773. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8774. "type": "tidelift"
  8775. }
  8776. ],
  8777. "time": "2020-11-13T09:40:50+00:00"
  8778. },
  8779. {
  8780. "name": "nunomaduro/collision",
  8781. "version": "v4.3.0",
  8782. "source": {
  8783. "type": "git",
  8784. "url": "https://github.com/nunomaduro/collision.git",
  8785. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e"
  8786. },
  8787. "dist": {
  8788. "type": "zip",
  8789. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/7c125dc2463f3e144ddc7e05e63077109508c94e",
  8790. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e",
  8791. "shasum": ""
  8792. },
  8793. "require": {
  8794. "facade/ignition-contracts": "^1.0",
  8795. "filp/whoops": "^2.4",
  8796. "php": "^7.2.5 || ^8.0",
  8797. "symfony/console": "^5.0"
  8798. },
  8799. "require-dev": {
  8800. "facade/ignition": "^2.0",
  8801. "fideloper/proxy": "^4.2",
  8802. "friendsofphp/php-cs-fixer": "^2.16",
  8803. "fruitcake/laravel-cors": "^1.0",
  8804. "laravel/framework": "^7.0",
  8805. "laravel/tinker": "^2.0",
  8806. "nunomaduro/larastan": "^0.6",
  8807. "orchestra/testbench": "^5.0",
  8808. "phpstan/phpstan": "^0.12.3",
  8809. "phpunit/phpunit": "^8.5.1 || ^9.0"
  8810. },
  8811. "type": "library",
  8812. "extra": {
  8813. "laravel": {
  8814. "providers": [
  8815. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  8816. ]
  8817. }
  8818. },
  8819. "autoload": {
  8820. "psr-4": {
  8821. "NunoMaduro\\Collision\\": "src/"
  8822. }
  8823. },
  8824. "notification-url": "https://packagist.org/downloads/",
  8825. "license": [
  8826. "MIT"
  8827. ],
  8828. "authors": [
  8829. {
  8830. "name": "Nuno Maduro",
  8831. "email": "enunomaduro@gmail.com"
  8832. }
  8833. ],
  8834. "description": "Cli error handling for console/command-line PHP applications.",
  8835. "keywords": [
  8836. "artisan",
  8837. "cli",
  8838. "command-line",
  8839. "console",
  8840. "error",
  8841. "handling",
  8842. "laravel",
  8843. "laravel-zero",
  8844. "php",
  8845. "symfony"
  8846. ],
  8847. "support": {
  8848. "issues": "https://github.com/nunomaduro/collision/issues",
  8849. "source": "https://github.com/nunomaduro/collision"
  8850. },
  8851. "funding": [
  8852. {
  8853. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  8854. "type": "custom"
  8855. },
  8856. {
  8857. "url": "https://github.com/nunomaduro",
  8858. "type": "github"
  8859. },
  8860. {
  8861. "url": "https://www.patreon.com/nunomaduro",
  8862. "type": "patreon"
  8863. }
  8864. ],
  8865. "time": "2020-10-29T15:12:23+00:00"
  8866. },
  8867. {
  8868. "name": "phar-io/manifest",
  8869. "version": "2.0.1",
  8870. "source": {
  8871. "type": "git",
  8872. "url": "https://github.com/phar-io/manifest.git",
  8873. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133"
  8874. },
  8875. "dist": {
  8876. "type": "zip",
  8877. "url": "https://api.github.com/repos/phar-io/manifest/zipball/85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  8878. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  8879. "shasum": ""
  8880. },
  8881. "require": {
  8882. "ext-dom": "*",
  8883. "ext-phar": "*",
  8884. "ext-xmlwriter": "*",
  8885. "phar-io/version": "^3.0.1",
  8886. "php": "^7.2 || ^8.0"
  8887. },
  8888. "type": "library",
  8889. "extra": {
  8890. "branch-alias": {
  8891. "dev-master": "2.0.x-dev"
  8892. }
  8893. },
  8894. "autoload": {
  8895. "classmap": [
  8896. "src/"
  8897. ]
  8898. },
  8899. "notification-url": "https://packagist.org/downloads/",
  8900. "license": [
  8901. "BSD-3-Clause"
  8902. ],
  8903. "authors": [
  8904. {
  8905. "name": "Arne Blankerts",
  8906. "email": "arne@blankerts.de",
  8907. "role": "Developer"
  8908. },
  8909. {
  8910. "name": "Sebastian Heuer",
  8911. "email": "sebastian@phpeople.de",
  8912. "role": "Developer"
  8913. },
  8914. {
  8915. "name": "Sebastian Bergmann",
  8916. "email": "sebastian@phpunit.de",
  8917. "role": "Developer"
  8918. }
  8919. ],
  8920. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8921. "support": {
  8922. "issues": "https://github.com/phar-io/manifest/issues",
  8923. "source": "https://github.com/phar-io/manifest/tree/master"
  8924. },
  8925. "time": "2020-06-27T14:33:11+00:00"
  8926. },
  8927. {
  8928. "name": "phar-io/version",
  8929. "version": "3.0.2",
  8930. "source": {
  8931. "type": "git",
  8932. "url": "https://github.com/phar-io/version.git",
  8933. "reference": "c6bb6825def89e0a32220f88337f8ceaf1975fa0"
  8934. },
  8935. "dist": {
  8936. "type": "zip",
  8937. "url": "https://api.github.com/repos/phar-io/version/zipball/c6bb6825def89e0a32220f88337f8ceaf1975fa0",
  8938. "reference": "c6bb6825def89e0a32220f88337f8ceaf1975fa0",
  8939. "shasum": ""
  8940. },
  8941. "require": {
  8942. "php": "^7.2 || ^8.0"
  8943. },
  8944. "type": "library",
  8945. "autoload": {
  8946. "classmap": [
  8947. "src/"
  8948. ]
  8949. },
  8950. "notification-url": "https://packagist.org/downloads/",
  8951. "license": [
  8952. "BSD-3-Clause"
  8953. ],
  8954. "authors": [
  8955. {
  8956. "name": "Arne Blankerts",
  8957. "email": "arne@blankerts.de",
  8958. "role": "Developer"
  8959. },
  8960. {
  8961. "name": "Sebastian Heuer",
  8962. "email": "sebastian@phpeople.de",
  8963. "role": "Developer"
  8964. },
  8965. {
  8966. "name": "Sebastian Bergmann",
  8967. "email": "sebastian@phpunit.de",
  8968. "role": "Developer"
  8969. }
  8970. ],
  8971. "description": "Library for handling version information and constraints",
  8972. "support": {
  8973. "issues": "https://github.com/phar-io/version/issues",
  8974. "source": "https://github.com/phar-io/version/tree/master"
  8975. },
  8976. "time": "2020-06-27T14:39:04+00:00"
  8977. },
  8978. {
  8979. "name": "phpdocumentor/reflection-common",
  8980. "version": "2.2.0",
  8981. "source": {
  8982. "type": "git",
  8983. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  8984. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  8985. },
  8986. "dist": {
  8987. "type": "zip",
  8988. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  8989. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  8990. "shasum": ""
  8991. },
  8992. "require": {
  8993. "php": "^7.2 || ^8.0"
  8994. },
  8995. "type": "library",
  8996. "extra": {
  8997. "branch-alias": {
  8998. "dev-2.x": "2.x-dev"
  8999. }
  9000. },
  9001. "autoload": {
  9002. "psr-4": {
  9003. "phpDocumentor\\Reflection\\": "src/"
  9004. }
  9005. },
  9006. "notification-url": "https://packagist.org/downloads/",
  9007. "license": [
  9008. "MIT"
  9009. ],
  9010. "authors": [
  9011. {
  9012. "name": "Jaap van Otterdijk",
  9013. "email": "opensource@ijaap.nl"
  9014. }
  9015. ],
  9016. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  9017. "homepage": "http://www.phpdoc.org",
  9018. "keywords": [
  9019. "FQSEN",
  9020. "phpDocumentor",
  9021. "phpdoc",
  9022. "reflection",
  9023. "static analysis"
  9024. ],
  9025. "support": {
  9026. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  9027. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  9028. },
  9029. "time": "2020-06-27T09:03:43+00:00"
  9030. },
  9031. {
  9032. "name": "phpdocumentor/reflection-docblock",
  9033. "version": "5.2.2",
  9034. "source": {
  9035. "type": "git",
  9036. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  9037. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556"
  9038. },
  9039. "dist": {
  9040. "type": "zip",
  9041. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556",
  9042. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556",
  9043. "shasum": ""
  9044. },
  9045. "require": {
  9046. "ext-filter": "*",
  9047. "php": "^7.2 || ^8.0",
  9048. "phpdocumentor/reflection-common": "^2.2",
  9049. "phpdocumentor/type-resolver": "^1.3",
  9050. "webmozart/assert": "^1.9.1"
  9051. },
  9052. "require-dev": {
  9053. "mockery/mockery": "~1.3.2"
  9054. },
  9055. "type": "library",
  9056. "extra": {
  9057. "branch-alias": {
  9058. "dev-master": "5.x-dev"
  9059. }
  9060. },
  9061. "autoload": {
  9062. "psr-4": {
  9063. "phpDocumentor\\Reflection\\": "src"
  9064. }
  9065. },
  9066. "notification-url": "https://packagist.org/downloads/",
  9067. "license": [
  9068. "MIT"
  9069. ],
  9070. "authors": [
  9071. {
  9072. "name": "Mike van Riel",
  9073. "email": "me@mikevanriel.com"
  9074. },
  9075. {
  9076. "name": "Jaap van Otterdijk",
  9077. "email": "account@ijaap.nl"
  9078. }
  9079. ],
  9080. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  9081. "support": {
  9082. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  9083. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/master"
  9084. },
  9085. "time": "2020-09-03T19:13:55+00:00"
  9086. },
  9087. {
  9088. "name": "phpdocumentor/type-resolver",
  9089. "version": "1.4.0",
  9090. "source": {
  9091. "type": "git",
  9092. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  9093. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0"
  9094. },
  9095. "dist": {
  9096. "type": "zip",
  9097. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  9098. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  9099. "shasum": ""
  9100. },
  9101. "require": {
  9102. "php": "^7.2 || ^8.0",
  9103. "phpdocumentor/reflection-common": "^2.0"
  9104. },
  9105. "require-dev": {
  9106. "ext-tokenizer": "*"
  9107. },
  9108. "type": "library",
  9109. "extra": {
  9110. "branch-alias": {
  9111. "dev-1.x": "1.x-dev"
  9112. }
  9113. },
  9114. "autoload": {
  9115. "psr-4": {
  9116. "phpDocumentor\\Reflection\\": "src"
  9117. }
  9118. },
  9119. "notification-url": "https://packagist.org/downloads/",
  9120. "license": [
  9121. "MIT"
  9122. ],
  9123. "authors": [
  9124. {
  9125. "name": "Mike van Riel",
  9126. "email": "me@mikevanriel.com"
  9127. }
  9128. ],
  9129. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  9130. "support": {
  9131. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  9132. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.4.0"
  9133. },
  9134. "time": "2020-09-17T18:55:26+00:00"
  9135. },
  9136. {
  9137. "name": "phpseclib/bcmath_compat",
  9138. "version": "1.0.5",
  9139. "source": {
  9140. "type": "git",
  9141. "url": "https://github.com/phpseclib/bcmath_compat.git",
  9142. "reference": "89cbb63742a32730b7187773a60b6b12b9db4479"
  9143. },
  9144. "dist": {
  9145. "type": "zip",
  9146. "url": "https://api.github.com/repos/phpseclib/bcmath_compat/zipball/89cbb63742a32730b7187773a60b6b12b9db4479",
  9147. "reference": "89cbb63742a32730b7187773a60b6b12b9db4479",
  9148. "shasum": ""
  9149. },
  9150. "require": {
  9151. "phpseclib/phpseclib": ">=2.0.19"
  9152. },
  9153. "provide": {
  9154. "ext-bcmath": "7.3.5"
  9155. },
  9156. "require-dev": {
  9157. "phpunit/phpunit": "^4.8.35|^5.7|^6.0",
  9158. "squizlabs/php_codesniffer": "^3.0"
  9159. },
  9160. "suggest": {
  9161. "ext-gmp": "Will enable faster math operations"
  9162. },
  9163. "type": "library",
  9164. "autoload": {
  9165. "files": [
  9166. "lib/bcmath.php"
  9167. ],
  9168. "psr-4": {
  9169. "bcmath_compat\\": "src"
  9170. }
  9171. },
  9172. "notification-url": "https://packagist.org/downloads/",
  9173. "license": [
  9174. "MIT"
  9175. ],
  9176. "authors": [
  9177. {
  9178. "name": "Jim Wigginton",
  9179. "email": "terrafrost@php.net",
  9180. "homepage": "http://phpseclib.sourceforge.net"
  9181. }
  9182. ],
  9183. "description": "PHP 5.x/7.x polyfill for bcmath extension",
  9184. "keywords": [
  9185. "BigInteger",
  9186. "bcmath",
  9187. "bigdecimal",
  9188. "math",
  9189. "polyfill"
  9190. ],
  9191. "support": {
  9192. "email": "terrafrost@php.net",
  9193. "issues": "https://github.com/phpseclib/bcmath_compat/issues",
  9194. "source": "https://github.com/phpseclib/bcmath_compat"
  9195. },
  9196. "time": "2020-04-26T16:34:33+00:00"
  9197. },
  9198. {
  9199. "name": "phpseclib/phpseclib",
  9200. "version": "2.0.29",
  9201. "source": {
  9202. "type": "git",
  9203. "url": "https://github.com/phpseclib/phpseclib.git",
  9204. "reference": "497856a8d997f640b4a516062f84228a772a48a8"
  9205. },
  9206. "dist": {
  9207. "type": "zip",
  9208. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/497856a8d997f640b4a516062f84228a772a48a8",
  9209. "reference": "497856a8d997f640b4a516062f84228a772a48a8",
  9210. "shasum": ""
  9211. },
  9212. "require": {
  9213. "php": ">=5.3.3"
  9214. },
  9215. "require-dev": {
  9216. "phing/phing": "~2.7",
  9217. "phpunit/phpunit": "^4.8.35|^5.7|^6.0",
  9218. "squizlabs/php_codesniffer": "~2.0"
  9219. },
  9220. "suggest": {
  9221. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  9222. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  9223. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  9224. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  9225. },
  9226. "type": "library",
  9227. "autoload": {
  9228. "files": [
  9229. "phpseclib/bootstrap.php"
  9230. ],
  9231. "psr-4": {
  9232. "phpseclib\\": "phpseclib/"
  9233. }
  9234. },
  9235. "notification-url": "https://packagist.org/downloads/",
  9236. "license": [
  9237. "MIT"
  9238. ],
  9239. "authors": [
  9240. {
  9241. "name": "Jim Wigginton",
  9242. "email": "terrafrost@php.net",
  9243. "role": "Lead Developer"
  9244. },
  9245. {
  9246. "name": "Patrick Monnerat",
  9247. "email": "pm@datasphere.ch",
  9248. "role": "Developer"
  9249. },
  9250. {
  9251. "name": "Andreas Fischer",
  9252. "email": "bantu@phpbb.com",
  9253. "role": "Developer"
  9254. },
  9255. {
  9256. "name": "Hans-Jürgen Petrich",
  9257. "email": "petrich@tronic-media.com",
  9258. "role": "Developer"
  9259. },
  9260. {
  9261. "name": "Graham Campbell",
  9262. "email": "graham@alt-three.com",
  9263. "role": "Developer"
  9264. }
  9265. ],
  9266. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  9267. "homepage": "http://phpseclib.sourceforge.net",
  9268. "keywords": [
  9269. "BigInteger",
  9270. "aes",
  9271. "asn.1",
  9272. "asn1",
  9273. "blowfish",
  9274. "crypto",
  9275. "cryptography",
  9276. "encryption",
  9277. "rsa",
  9278. "security",
  9279. "sftp",
  9280. "signature",
  9281. "signing",
  9282. "ssh",
  9283. "twofish",
  9284. "x.509",
  9285. "x509"
  9286. ],
  9287. "support": {
  9288. "issues": "https://github.com/phpseclib/phpseclib/issues",
  9289. "source": "https://github.com/phpseclib/phpseclib/tree/2.0"
  9290. },
  9291. "funding": [
  9292. {
  9293. "url": "https://github.com/terrafrost",
  9294. "type": "github"
  9295. },
  9296. {
  9297. "url": "https://www.patreon.com/phpseclib",
  9298. "type": "patreon"
  9299. },
  9300. {
  9301. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  9302. "type": "tidelift"
  9303. }
  9304. ],
  9305. "time": "2020-09-08T04:24:43+00:00"
  9306. },
  9307. {
  9308. "name": "phpspec/prophecy",
  9309. "version": "1.12.1",
  9310. "source": {
  9311. "type": "git",
  9312. "url": "https://github.com/phpspec/prophecy.git",
  9313. "reference": "8ce87516be71aae9b956f81906aaf0338e0d8a2d"
  9314. },
  9315. "dist": {
  9316. "type": "zip",
  9317. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/8ce87516be71aae9b956f81906aaf0338e0d8a2d",
  9318. "reference": "8ce87516be71aae9b956f81906aaf0338e0d8a2d",
  9319. "shasum": ""
  9320. },
  9321. "require": {
  9322. "doctrine/instantiator": "^1.2",
  9323. "php": "^7.2 || ~8.0, <8.1",
  9324. "phpdocumentor/reflection-docblock": "^5.2",
  9325. "sebastian/comparator": "^3.0 || ^4.0",
  9326. "sebastian/recursion-context": "^3.0 || ^4.0"
  9327. },
  9328. "require-dev": {
  9329. "phpspec/phpspec": "^6.0",
  9330. "phpunit/phpunit": "^8.0 || ^9.0 <9.3"
  9331. },
  9332. "type": "library",
  9333. "extra": {
  9334. "branch-alias": {
  9335. "dev-master": "1.11.x-dev"
  9336. }
  9337. },
  9338. "autoload": {
  9339. "psr-4": {
  9340. "Prophecy\\": "src/Prophecy"
  9341. }
  9342. },
  9343. "notification-url": "https://packagist.org/downloads/",
  9344. "license": [
  9345. "MIT"
  9346. ],
  9347. "authors": [
  9348. {
  9349. "name": "Konstantin Kudryashov",
  9350. "email": "ever.zet@gmail.com",
  9351. "homepage": "http://everzet.com"
  9352. },
  9353. {
  9354. "name": "Marcello Duarte",
  9355. "email": "marcello.duarte@gmail.com"
  9356. }
  9357. ],
  9358. "description": "Highly opinionated mocking framework for PHP 5.3+",
  9359. "homepage": "https://github.com/phpspec/prophecy",
  9360. "keywords": [
  9361. "Double",
  9362. "Dummy",
  9363. "fake",
  9364. "mock",
  9365. "spy",
  9366. "stub"
  9367. ],
  9368. "support": {
  9369. "issues": "https://github.com/phpspec/prophecy/issues",
  9370. "source": "https://github.com/phpspec/prophecy/tree/1.12.1"
  9371. },
  9372. "time": "2020-09-29T09:10:42+00:00"
  9373. },
  9374. {
  9375. "name": "phpunit/php-code-coverage",
  9376. "version": "9.2.3",
  9377. "source": {
  9378. "type": "git",
  9379. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9380. "reference": "6b20e2055f7c29b56cb3870b3de7cc463d7add41"
  9381. },
  9382. "dist": {
  9383. "type": "zip",
  9384. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/6b20e2055f7c29b56cb3870b3de7cc463d7add41",
  9385. "reference": "6b20e2055f7c29b56cb3870b3de7cc463d7add41",
  9386. "shasum": ""
  9387. },
  9388. "require": {
  9389. "ext-dom": "*",
  9390. "ext-libxml": "*",
  9391. "ext-xmlwriter": "*",
  9392. "nikic/php-parser": "^4.10.2",
  9393. "php": ">=7.3",
  9394. "phpunit/php-file-iterator": "^3.0.3",
  9395. "phpunit/php-text-template": "^2.0.2",
  9396. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  9397. "sebastian/complexity": "^2.0",
  9398. "sebastian/environment": "^5.1.2",
  9399. "sebastian/lines-of-code": "^1.0",
  9400. "sebastian/version": "^3.0.1",
  9401. "theseer/tokenizer": "^1.2.0"
  9402. },
  9403. "require-dev": {
  9404. "phpunit/phpunit": "^9.3"
  9405. },
  9406. "suggest": {
  9407. "ext-pcov": "*",
  9408. "ext-xdebug": "*"
  9409. },
  9410. "type": "library",
  9411. "extra": {
  9412. "branch-alias": {
  9413. "dev-master": "9.2-dev"
  9414. }
  9415. },
  9416. "autoload": {
  9417. "classmap": [
  9418. "src/"
  9419. ]
  9420. },
  9421. "notification-url": "https://packagist.org/downloads/",
  9422. "license": [
  9423. "BSD-3-Clause"
  9424. ],
  9425. "authors": [
  9426. {
  9427. "name": "Sebastian Bergmann",
  9428. "email": "sebastian@phpunit.de",
  9429. "role": "lead"
  9430. }
  9431. ],
  9432. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9433. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9434. "keywords": [
  9435. "coverage",
  9436. "testing",
  9437. "xunit"
  9438. ],
  9439. "support": {
  9440. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9441. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.3"
  9442. },
  9443. "funding": [
  9444. {
  9445. "url": "https://github.com/sebastianbergmann",
  9446. "type": "github"
  9447. }
  9448. ],
  9449. "time": "2020-10-30T10:46:41+00:00"
  9450. },
  9451. {
  9452. "name": "phpunit/php-file-iterator",
  9453. "version": "3.0.5",
  9454. "source": {
  9455. "type": "git",
  9456. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9457. "reference": "aa4be8575f26070b100fccb67faabb28f21f66f8"
  9458. },
  9459. "dist": {
  9460. "type": "zip",
  9461. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/aa4be8575f26070b100fccb67faabb28f21f66f8",
  9462. "reference": "aa4be8575f26070b100fccb67faabb28f21f66f8",
  9463. "shasum": ""
  9464. },
  9465. "require": {
  9466. "php": ">=7.3"
  9467. },
  9468. "require-dev": {
  9469. "phpunit/phpunit": "^9.3"
  9470. },
  9471. "type": "library",
  9472. "extra": {
  9473. "branch-alias": {
  9474. "dev-master": "3.0-dev"
  9475. }
  9476. },
  9477. "autoload": {
  9478. "classmap": [
  9479. "src/"
  9480. ]
  9481. },
  9482. "notification-url": "https://packagist.org/downloads/",
  9483. "license": [
  9484. "BSD-3-Clause"
  9485. ],
  9486. "authors": [
  9487. {
  9488. "name": "Sebastian Bergmann",
  9489. "email": "sebastian@phpunit.de",
  9490. "role": "lead"
  9491. }
  9492. ],
  9493. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9494. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9495. "keywords": [
  9496. "filesystem",
  9497. "iterator"
  9498. ],
  9499. "support": {
  9500. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9501. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.5"
  9502. },
  9503. "funding": [
  9504. {
  9505. "url": "https://github.com/sebastianbergmann",
  9506. "type": "github"
  9507. }
  9508. ],
  9509. "time": "2020-09-28T05:57:25+00:00"
  9510. },
  9511. {
  9512. "name": "phpunit/php-invoker",
  9513. "version": "3.1.1",
  9514. "source": {
  9515. "type": "git",
  9516. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9517. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  9518. },
  9519. "dist": {
  9520. "type": "zip",
  9521. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9522. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9523. "shasum": ""
  9524. },
  9525. "require": {
  9526. "php": ">=7.3"
  9527. },
  9528. "require-dev": {
  9529. "ext-pcntl": "*",
  9530. "phpunit/phpunit": "^9.3"
  9531. },
  9532. "suggest": {
  9533. "ext-pcntl": "*"
  9534. },
  9535. "type": "library",
  9536. "extra": {
  9537. "branch-alias": {
  9538. "dev-master": "3.1-dev"
  9539. }
  9540. },
  9541. "autoload": {
  9542. "classmap": [
  9543. "src/"
  9544. ]
  9545. },
  9546. "notification-url": "https://packagist.org/downloads/",
  9547. "license": [
  9548. "BSD-3-Clause"
  9549. ],
  9550. "authors": [
  9551. {
  9552. "name": "Sebastian Bergmann",
  9553. "email": "sebastian@phpunit.de",
  9554. "role": "lead"
  9555. }
  9556. ],
  9557. "description": "Invoke callables with a timeout",
  9558. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9559. "keywords": [
  9560. "process"
  9561. ],
  9562. "support": {
  9563. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9564. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  9565. },
  9566. "funding": [
  9567. {
  9568. "url": "https://github.com/sebastianbergmann",
  9569. "type": "github"
  9570. }
  9571. ],
  9572. "time": "2020-09-28T05:58:55+00:00"
  9573. },
  9574. {
  9575. "name": "phpunit/php-text-template",
  9576. "version": "2.0.4",
  9577. "source": {
  9578. "type": "git",
  9579. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9580. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  9581. },
  9582. "dist": {
  9583. "type": "zip",
  9584. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9585. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9586. "shasum": ""
  9587. },
  9588. "require": {
  9589. "php": ">=7.3"
  9590. },
  9591. "require-dev": {
  9592. "phpunit/phpunit": "^9.3"
  9593. },
  9594. "type": "library",
  9595. "extra": {
  9596. "branch-alias": {
  9597. "dev-master": "2.0-dev"
  9598. }
  9599. },
  9600. "autoload": {
  9601. "classmap": [
  9602. "src/"
  9603. ]
  9604. },
  9605. "notification-url": "https://packagist.org/downloads/",
  9606. "license": [
  9607. "BSD-3-Clause"
  9608. ],
  9609. "authors": [
  9610. {
  9611. "name": "Sebastian Bergmann",
  9612. "email": "sebastian@phpunit.de",
  9613. "role": "lead"
  9614. }
  9615. ],
  9616. "description": "Simple template engine.",
  9617. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9618. "keywords": [
  9619. "template"
  9620. ],
  9621. "support": {
  9622. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9623. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  9624. },
  9625. "funding": [
  9626. {
  9627. "url": "https://github.com/sebastianbergmann",
  9628. "type": "github"
  9629. }
  9630. ],
  9631. "time": "2020-10-26T05:33:50+00:00"
  9632. },
  9633. {
  9634. "name": "phpunit/php-timer",
  9635. "version": "5.0.3",
  9636. "source": {
  9637. "type": "git",
  9638. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9639. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  9640. },
  9641. "dist": {
  9642. "type": "zip",
  9643. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9644. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9645. "shasum": ""
  9646. },
  9647. "require": {
  9648. "php": ">=7.3"
  9649. },
  9650. "require-dev": {
  9651. "phpunit/phpunit": "^9.3"
  9652. },
  9653. "type": "library",
  9654. "extra": {
  9655. "branch-alias": {
  9656. "dev-master": "5.0-dev"
  9657. }
  9658. },
  9659. "autoload": {
  9660. "classmap": [
  9661. "src/"
  9662. ]
  9663. },
  9664. "notification-url": "https://packagist.org/downloads/",
  9665. "license": [
  9666. "BSD-3-Clause"
  9667. ],
  9668. "authors": [
  9669. {
  9670. "name": "Sebastian Bergmann",
  9671. "email": "sebastian@phpunit.de",
  9672. "role": "lead"
  9673. }
  9674. ],
  9675. "description": "Utility class for timing",
  9676. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9677. "keywords": [
  9678. "timer"
  9679. ],
  9680. "support": {
  9681. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9682. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  9683. },
  9684. "funding": [
  9685. {
  9686. "url": "https://github.com/sebastianbergmann",
  9687. "type": "github"
  9688. }
  9689. ],
  9690. "time": "2020-10-26T13:16:10+00:00"
  9691. },
  9692. {
  9693. "name": "phpunit/phpunit",
  9694. "version": "9.4.3",
  9695. "source": {
  9696. "type": "git",
  9697. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9698. "reference": "9fa359ff5ddaa5eb2be2bedb08a6a5787a5807ab"
  9699. },
  9700. "dist": {
  9701. "type": "zip",
  9702. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/9fa359ff5ddaa5eb2be2bedb08a6a5787a5807ab",
  9703. "reference": "9fa359ff5ddaa5eb2be2bedb08a6a5787a5807ab",
  9704. "shasum": ""
  9705. },
  9706. "require": {
  9707. "doctrine/instantiator": "^1.3.1",
  9708. "ext-dom": "*",
  9709. "ext-json": "*",
  9710. "ext-libxml": "*",
  9711. "ext-mbstring": "*",
  9712. "ext-xml": "*",
  9713. "ext-xmlwriter": "*",
  9714. "myclabs/deep-copy": "^1.10.1",
  9715. "phar-io/manifest": "^2.0.1",
  9716. "phar-io/version": "^3.0.2",
  9717. "php": ">=7.3",
  9718. "phpspec/prophecy": "^1.12.1",
  9719. "phpunit/php-code-coverage": "^9.2",
  9720. "phpunit/php-file-iterator": "^3.0.5",
  9721. "phpunit/php-invoker": "^3.1.1",
  9722. "phpunit/php-text-template": "^2.0.3",
  9723. "phpunit/php-timer": "^5.0.2",
  9724. "sebastian/cli-parser": "^1.0.1",
  9725. "sebastian/code-unit": "^1.0.6",
  9726. "sebastian/comparator": "^4.0.5",
  9727. "sebastian/diff": "^4.0.3",
  9728. "sebastian/environment": "^5.1.3",
  9729. "sebastian/exporter": "^4.0.3",
  9730. "sebastian/global-state": "^5.0.1",
  9731. "sebastian/object-enumerator": "^4.0.3",
  9732. "sebastian/resource-operations": "^3.0.3",
  9733. "sebastian/type": "^2.3",
  9734. "sebastian/version": "^3.0.2"
  9735. },
  9736. "require-dev": {
  9737. "ext-pdo": "*",
  9738. "phpspec/prophecy-phpunit": "^2.0.1"
  9739. },
  9740. "suggest": {
  9741. "ext-soap": "*",
  9742. "ext-xdebug": "*"
  9743. },
  9744. "bin": [
  9745. "phpunit"
  9746. ],
  9747. "type": "library",
  9748. "extra": {
  9749. "branch-alias": {
  9750. "dev-master": "9.4-dev"
  9751. }
  9752. },
  9753. "autoload": {
  9754. "classmap": [
  9755. "src/"
  9756. ],
  9757. "files": [
  9758. "src/Framework/Assert/Functions.php"
  9759. ]
  9760. },
  9761. "notification-url": "https://packagist.org/downloads/",
  9762. "license": [
  9763. "BSD-3-Clause"
  9764. ],
  9765. "authors": [
  9766. {
  9767. "name": "Sebastian Bergmann",
  9768. "email": "sebastian@phpunit.de",
  9769. "role": "lead"
  9770. }
  9771. ],
  9772. "description": "The PHP Unit Testing framework.",
  9773. "homepage": "https://phpunit.de/",
  9774. "keywords": [
  9775. "phpunit",
  9776. "testing",
  9777. "xunit"
  9778. ],
  9779. "support": {
  9780. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9781. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.4.3"
  9782. },
  9783. "funding": [
  9784. {
  9785. "url": "https://phpunit.de/donate.html",
  9786. "type": "custom"
  9787. },
  9788. {
  9789. "url": "https://github.com/sebastianbergmann",
  9790. "type": "github"
  9791. }
  9792. ],
  9793. "time": "2020-11-10T12:53:30+00:00"
  9794. },
  9795. {
  9796. "name": "react/promise",
  9797. "version": "v2.8.0",
  9798. "source": {
  9799. "type": "git",
  9800. "url": "https://github.com/reactphp/promise.git",
  9801. "reference": "f3cff96a19736714524ca0dd1d4130de73dbbbc4"
  9802. },
  9803. "dist": {
  9804. "type": "zip",
  9805. "url": "https://api.github.com/repos/reactphp/promise/zipball/f3cff96a19736714524ca0dd1d4130de73dbbbc4",
  9806. "reference": "f3cff96a19736714524ca0dd1d4130de73dbbbc4",
  9807. "shasum": ""
  9808. },
  9809. "require": {
  9810. "php": ">=5.4.0"
  9811. },
  9812. "require-dev": {
  9813. "phpunit/phpunit": "^7.0 || ^6.5 || ^5.7 || ^4.8.36"
  9814. },
  9815. "type": "library",
  9816. "autoload": {
  9817. "psr-4": {
  9818. "React\\Promise\\": "src/"
  9819. },
  9820. "files": [
  9821. "src/functions_include.php"
  9822. ]
  9823. },
  9824. "notification-url": "https://packagist.org/downloads/",
  9825. "license": [
  9826. "MIT"
  9827. ],
  9828. "authors": [
  9829. {
  9830. "name": "Jan Sorgalla",
  9831. "email": "jsorgalla@gmail.com"
  9832. }
  9833. ],
  9834. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  9835. "keywords": [
  9836. "promise",
  9837. "promises"
  9838. ],
  9839. "support": {
  9840. "issues": "https://github.com/reactphp/promise/issues",
  9841. "source": "https://github.com/reactphp/promise/tree/v2.8.0"
  9842. },
  9843. "time": "2020-05-12T15:16:56+00:00"
  9844. },
  9845. {
  9846. "name": "sebastian/cli-parser",
  9847. "version": "1.0.1",
  9848. "source": {
  9849. "type": "git",
  9850. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9851. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  9852. },
  9853. "dist": {
  9854. "type": "zip",
  9855. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  9856. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  9857. "shasum": ""
  9858. },
  9859. "require": {
  9860. "php": ">=7.3"
  9861. },
  9862. "require-dev": {
  9863. "phpunit/phpunit": "^9.3"
  9864. },
  9865. "type": "library",
  9866. "extra": {
  9867. "branch-alias": {
  9868. "dev-master": "1.0-dev"
  9869. }
  9870. },
  9871. "autoload": {
  9872. "classmap": [
  9873. "src/"
  9874. ]
  9875. },
  9876. "notification-url": "https://packagist.org/downloads/",
  9877. "license": [
  9878. "BSD-3-Clause"
  9879. ],
  9880. "authors": [
  9881. {
  9882. "name": "Sebastian Bergmann",
  9883. "email": "sebastian@phpunit.de",
  9884. "role": "lead"
  9885. }
  9886. ],
  9887. "description": "Library for parsing CLI options",
  9888. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9889. "support": {
  9890. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9891. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  9892. },
  9893. "funding": [
  9894. {
  9895. "url": "https://github.com/sebastianbergmann",
  9896. "type": "github"
  9897. }
  9898. ],
  9899. "time": "2020-09-28T06:08:49+00:00"
  9900. },
  9901. {
  9902. "name": "sebastian/code-unit",
  9903. "version": "1.0.8",
  9904. "source": {
  9905. "type": "git",
  9906. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9907. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  9908. },
  9909. "dist": {
  9910. "type": "zip",
  9911. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9912. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9913. "shasum": ""
  9914. },
  9915. "require": {
  9916. "php": ">=7.3"
  9917. },
  9918. "require-dev": {
  9919. "phpunit/phpunit": "^9.3"
  9920. },
  9921. "type": "library",
  9922. "extra": {
  9923. "branch-alias": {
  9924. "dev-master": "1.0-dev"
  9925. }
  9926. },
  9927. "autoload": {
  9928. "classmap": [
  9929. "src/"
  9930. ]
  9931. },
  9932. "notification-url": "https://packagist.org/downloads/",
  9933. "license": [
  9934. "BSD-3-Clause"
  9935. ],
  9936. "authors": [
  9937. {
  9938. "name": "Sebastian Bergmann",
  9939. "email": "sebastian@phpunit.de",
  9940. "role": "lead"
  9941. }
  9942. ],
  9943. "description": "Collection of value objects that represent the PHP code units",
  9944. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9945. "support": {
  9946. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9947. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  9948. },
  9949. "funding": [
  9950. {
  9951. "url": "https://github.com/sebastianbergmann",
  9952. "type": "github"
  9953. }
  9954. ],
  9955. "time": "2020-10-26T13:08:54+00:00"
  9956. },
  9957. {
  9958. "name": "sebastian/code-unit-reverse-lookup",
  9959. "version": "2.0.3",
  9960. "source": {
  9961. "type": "git",
  9962. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9963. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  9964. },
  9965. "dist": {
  9966. "type": "zip",
  9967. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9968. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9969. "shasum": ""
  9970. },
  9971. "require": {
  9972. "php": ">=7.3"
  9973. },
  9974. "require-dev": {
  9975. "phpunit/phpunit": "^9.3"
  9976. },
  9977. "type": "library",
  9978. "extra": {
  9979. "branch-alias": {
  9980. "dev-master": "2.0-dev"
  9981. }
  9982. },
  9983. "autoload": {
  9984. "classmap": [
  9985. "src/"
  9986. ]
  9987. },
  9988. "notification-url": "https://packagist.org/downloads/",
  9989. "license": [
  9990. "BSD-3-Clause"
  9991. ],
  9992. "authors": [
  9993. {
  9994. "name": "Sebastian Bergmann",
  9995. "email": "sebastian@phpunit.de"
  9996. }
  9997. ],
  9998. "description": "Looks up which function or method a line of code belongs to",
  9999. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  10000. "support": {
  10001. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  10002. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  10003. },
  10004. "funding": [
  10005. {
  10006. "url": "https://github.com/sebastianbergmann",
  10007. "type": "github"
  10008. }
  10009. ],
  10010. "time": "2020-09-28T05:30:19+00:00"
  10011. },
  10012. {
  10013. "name": "sebastian/comparator",
  10014. "version": "4.0.6",
  10015. "source": {
  10016. "type": "git",
  10017. "url": "https://github.com/sebastianbergmann/comparator.git",
  10018. "reference": "55f4261989e546dc112258c7a75935a81a7ce382"
  10019. },
  10020. "dist": {
  10021. "type": "zip",
  10022. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/55f4261989e546dc112258c7a75935a81a7ce382",
  10023. "reference": "55f4261989e546dc112258c7a75935a81a7ce382",
  10024. "shasum": ""
  10025. },
  10026. "require": {
  10027. "php": ">=7.3",
  10028. "sebastian/diff": "^4.0",
  10029. "sebastian/exporter": "^4.0"
  10030. },
  10031. "require-dev": {
  10032. "phpunit/phpunit": "^9.3"
  10033. },
  10034. "type": "library",
  10035. "extra": {
  10036. "branch-alias": {
  10037. "dev-master": "4.0-dev"
  10038. }
  10039. },
  10040. "autoload": {
  10041. "classmap": [
  10042. "src/"
  10043. ]
  10044. },
  10045. "notification-url": "https://packagist.org/downloads/",
  10046. "license": [
  10047. "BSD-3-Clause"
  10048. ],
  10049. "authors": [
  10050. {
  10051. "name": "Sebastian Bergmann",
  10052. "email": "sebastian@phpunit.de"
  10053. },
  10054. {
  10055. "name": "Jeff Welch",
  10056. "email": "whatthejeff@gmail.com"
  10057. },
  10058. {
  10059. "name": "Volker Dusch",
  10060. "email": "github@wallbash.com"
  10061. },
  10062. {
  10063. "name": "Bernhard Schussek",
  10064. "email": "bschussek@2bepublished.at"
  10065. }
  10066. ],
  10067. "description": "Provides the functionality to compare PHP values for equality",
  10068. "homepage": "https://github.com/sebastianbergmann/comparator",
  10069. "keywords": [
  10070. "comparator",
  10071. "compare",
  10072. "equality"
  10073. ],
  10074. "support": {
  10075. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  10076. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.6"
  10077. },
  10078. "funding": [
  10079. {
  10080. "url": "https://github.com/sebastianbergmann",
  10081. "type": "github"
  10082. }
  10083. ],
  10084. "time": "2020-10-26T15:49:45+00:00"
  10085. },
  10086. {
  10087. "name": "sebastian/complexity",
  10088. "version": "2.0.2",
  10089. "source": {
  10090. "type": "git",
  10091. "url": "https://github.com/sebastianbergmann/complexity.git",
  10092. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  10093. },
  10094. "dist": {
  10095. "type": "zip",
  10096. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  10097. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  10098. "shasum": ""
  10099. },
  10100. "require": {
  10101. "nikic/php-parser": "^4.7",
  10102. "php": ">=7.3"
  10103. },
  10104. "require-dev": {
  10105. "phpunit/phpunit": "^9.3"
  10106. },
  10107. "type": "library",
  10108. "extra": {
  10109. "branch-alias": {
  10110. "dev-master": "2.0-dev"
  10111. }
  10112. },
  10113. "autoload": {
  10114. "classmap": [
  10115. "src/"
  10116. ]
  10117. },
  10118. "notification-url": "https://packagist.org/downloads/",
  10119. "license": [
  10120. "BSD-3-Clause"
  10121. ],
  10122. "authors": [
  10123. {
  10124. "name": "Sebastian Bergmann",
  10125. "email": "sebastian@phpunit.de",
  10126. "role": "lead"
  10127. }
  10128. ],
  10129. "description": "Library for calculating the complexity of PHP code units",
  10130. "homepage": "https://github.com/sebastianbergmann/complexity",
  10131. "support": {
  10132. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  10133. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  10134. },
  10135. "funding": [
  10136. {
  10137. "url": "https://github.com/sebastianbergmann",
  10138. "type": "github"
  10139. }
  10140. ],
  10141. "time": "2020-10-26T15:52:27+00:00"
  10142. },
  10143. {
  10144. "name": "sebastian/diff",
  10145. "version": "4.0.4",
  10146. "source": {
  10147. "type": "git",
  10148. "url": "https://github.com/sebastianbergmann/diff.git",
  10149. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  10150. },
  10151. "dist": {
  10152. "type": "zip",
  10153. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  10154. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  10155. "shasum": ""
  10156. },
  10157. "require": {
  10158. "php": ">=7.3"
  10159. },
  10160. "require-dev": {
  10161. "phpunit/phpunit": "^9.3",
  10162. "symfony/process": "^4.2 || ^5"
  10163. },
  10164. "type": "library",
  10165. "extra": {
  10166. "branch-alias": {
  10167. "dev-master": "4.0-dev"
  10168. }
  10169. },
  10170. "autoload": {
  10171. "classmap": [
  10172. "src/"
  10173. ]
  10174. },
  10175. "notification-url": "https://packagist.org/downloads/",
  10176. "license": [
  10177. "BSD-3-Clause"
  10178. ],
  10179. "authors": [
  10180. {
  10181. "name": "Sebastian Bergmann",
  10182. "email": "sebastian@phpunit.de"
  10183. },
  10184. {
  10185. "name": "Kore Nordmann",
  10186. "email": "mail@kore-nordmann.de"
  10187. }
  10188. ],
  10189. "description": "Diff implementation",
  10190. "homepage": "https://github.com/sebastianbergmann/diff",
  10191. "keywords": [
  10192. "diff",
  10193. "udiff",
  10194. "unidiff",
  10195. "unified diff"
  10196. ],
  10197. "support": {
  10198. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10199. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  10200. },
  10201. "funding": [
  10202. {
  10203. "url": "https://github.com/sebastianbergmann",
  10204. "type": "github"
  10205. }
  10206. ],
  10207. "time": "2020-10-26T13:10:38+00:00"
  10208. },
  10209. {
  10210. "name": "sebastian/environment",
  10211. "version": "5.1.3",
  10212. "source": {
  10213. "type": "git",
  10214. "url": "https://github.com/sebastianbergmann/environment.git",
  10215. "reference": "388b6ced16caa751030f6a69e588299fa09200ac"
  10216. },
  10217. "dist": {
  10218. "type": "zip",
  10219. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/388b6ced16caa751030f6a69e588299fa09200ac",
  10220. "reference": "388b6ced16caa751030f6a69e588299fa09200ac",
  10221. "shasum": ""
  10222. },
  10223. "require": {
  10224. "php": ">=7.3"
  10225. },
  10226. "require-dev": {
  10227. "phpunit/phpunit": "^9.3"
  10228. },
  10229. "suggest": {
  10230. "ext-posix": "*"
  10231. },
  10232. "type": "library",
  10233. "extra": {
  10234. "branch-alias": {
  10235. "dev-master": "5.1-dev"
  10236. }
  10237. },
  10238. "autoload": {
  10239. "classmap": [
  10240. "src/"
  10241. ]
  10242. },
  10243. "notification-url": "https://packagist.org/downloads/",
  10244. "license": [
  10245. "BSD-3-Clause"
  10246. ],
  10247. "authors": [
  10248. {
  10249. "name": "Sebastian Bergmann",
  10250. "email": "sebastian@phpunit.de"
  10251. }
  10252. ],
  10253. "description": "Provides functionality to handle HHVM/PHP environments",
  10254. "homepage": "http://www.github.com/sebastianbergmann/environment",
  10255. "keywords": [
  10256. "Xdebug",
  10257. "environment",
  10258. "hhvm"
  10259. ],
  10260. "support": {
  10261. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10262. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.3"
  10263. },
  10264. "funding": [
  10265. {
  10266. "url": "https://github.com/sebastianbergmann",
  10267. "type": "github"
  10268. }
  10269. ],
  10270. "time": "2020-09-28T05:52:38+00:00"
  10271. },
  10272. {
  10273. "name": "sebastian/exporter",
  10274. "version": "4.0.3",
  10275. "source": {
  10276. "type": "git",
  10277. "url": "https://github.com/sebastianbergmann/exporter.git",
  10278. "reference": "d89cc98761b8cb5a1a235a6b703ae50d34080e65"
  10279. },
  10280. "dist": {
  10281. "type": "zip",
  10282. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/d89cc98761b8cb5a1a235a6b703ae50d34080e65",
  10283. "reference": "d89cc98761b8cb5a1a235a6b703ae50d34080e65",
  10284. "shasum": ""
  10285. },
  10286. "require": {
  10287. "php": ">=7.3",
  10288. "sebastian/recursion-context": "^4.0"
  10289. },
  10290. "require-dev": {
  10291. "ext-mbstring": "*",
  10292. "phpunit/phpunit": "^9.3"
  10293. },
  10294. "type": "library",
  10295. "extra": {
  10296. "branch-alias": {
  10297. "dev-master": "4.0-dev"
  10298. }
  10299. },
  10300. "autoload": {
  10301. "classmap": [
  10302. "src/"
  10303. ]
  10304. },
  10305. "notification-url": "https://packagist.org/downloads/",
  10306. "license": [
  10307. "BSD-3-Clause"
  10308. ],
  10309. "authors": [
  10310. {
  10311. "name": "Sebastian Bergmann",
  10312. "email": "sebastian@phpunit.de"
  10313. },
  10314. {
  10315. "name": "Jeff Welch",
  10316. "email": "whatthejeff@gmail.com"
  10317. },
  10318. {
  10319. "name": "Volker Dusch",
  10320. "email": "github@wallbash.com"
  10321. },
  10322. {
  10323. "name": "Adam Harvey",
  10324. "email": "aharvey@php.net"
  10325. },
  10326. {
  10327. "name": "Bernhard Schussek",
  10328. "email": "bschussek@gmail.com"
  10329. }
  10330. ],
  10331. "description": "Provides the functionality to export PHP variables for visualization",
  10332. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  10333. "keywords": [
  10334. "export",
  10335. "exporter"
  10336. ],
  10337. "support": {
  10338. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10339. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.3"
  10340. },
  10341. "funding": [
  10342. {
  10343. "url": "https://github.com/sebastianbergmann",
  10344. "type": "github"
  10345. }
  10346. ],
  10347. "time": "2020-09-28T05:24:23+00:00"
  10348. },
  10349. {
  10350. "name": "sebastian/global-state",
  10351. "version": "5.0.2",
  10352. "source": {
  10353. "type": "git",
  10354. "url": "https://github.com/sebastianbergmann/global-state.git",
  10355. "reference": "a90ccbddffa067b51f574dea6eb25d5680839455"
  10356. },
  10357. "dist": {
  10358. "type": "zip",
  10359. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/a90ccbddffa067b51f574dea6eb25d5680839455",
  10360. "reference": "a90ccbddffa067b51f574dea6eb25d5680839455",
  10361. "shasum": ""
  10362. },
  10363. "require": {
  10364. "php": ">=7.3",
  10365. "sebastian/object-reflector": "^2.0",
  10366. "sebastian/recursion-context": "^4.0"
  10367. },
  10368. "require-dev": {
  10369. "ext-dom": "*",
  10370. "phpunit/phpunit": "^9.3"
  10371. },
  10372. "suggest": {
  10373. "ext-uopz": "*"
  10374. },
  10375. "type": "library",
  10376. "extra": {
  10377. "branch-alias": {
  10378. "dev-master": "5.0-dev"
  10379. }
  10380. },
  10381. "autoload": {
  10382. "classmap": [
  10383. "src/"
  10384. ]
  10385. },
  10386. "notification-url": "https://packagist.org/downloads/",
  10387. "license": [
  10388. "BSD-3-Clause"
  10389. ],
  10390. "authors": [
  10391. {
  10392. "name": "Sebastian Bergmann",
  10393. "email": "sebastian@phpunit.de"
  10394. }
  10395. ],
  10396. "description": "Snapshotting of global state",
  10397. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  10398. "keywords": [
  10399. "global state"
  10400. ],
  10401. "support": {
  10402. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10403. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.2"
  10404. },
  10405. "funding": [
  10406. {
  10407. "url": "https://github.com/sebastianbergmann",
  10408. "type": "github"
  10409. }
  10410. ],
  10411. "time": "2020-10-26T15:55:19+00:00"
  10412. },
  10413. {
  10414. "name": "sebastian/lines-of-code",
  10415. "version": "1.0.2",
  10416. "source": {
  10417. "type": "git",
  10418. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10419. "reference": "acf76492a65401babcf5283296fa510782783a7a"
  10420. },
  10421. "dist": {
  10422. "type": "zip",
  10423. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/acf76492a65401babcf5283296fa510782783a7a",
  10424. "reference": "acf76492a65401babcf5283296fa510782783a7a",
  10425. "shasum": ""
  10426. },
  10427. "require": {
  10428. "nikic/php-parser": "^4.6",
  10429. "php": ">=7.3"
  10430. },
  10431. "require-dev": {
  10432. "phpunit/phpunit": "^9.3"
  10433. },
  10434. "type": "library",
  10435. "extra": {
  10436. "branch-alias": {
  10437. "dev-master": "1.0-dev"
  10438. }
  10439. },
  10440. "autoload": {
  10441. "classmap": [
  10442. "src/"
  10443. ]
  10444. },
  10445. "notification-url": "https://packagist.org/downloads/",
  10446. "license": [
  10447. "BSD-3-Clause"
  10448. ],
  10449. "authors": [
  10450. {
  10451. "name": "Sebastian Bergmann",
  10452. "email": "sebastian@phpunit.de",
  10453. "role": "lead"
  10454. }
  10455. ],
  10456. "description": "Library for counting the lines of code in PHP source code",
  10457. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10458. "support": {
  10459. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10460. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.2"
  10461. },
  10462. "funding": [
  10463. {
  10464. "url": "https://github.com/sebastianbergmann",
  10465. "type": "github"
  10466. }
  10467. ],
  10468. "time": "2020-10-26T17:03:56+00:00"
  10469. },
  10470. {
  10471. "name": "sebastian/object-enumerator",
  10472. "version": "4.0.4",
  10473. "source": {
  10474. "type": "git",
  10475. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10476. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  10477. },
  10478. "dist": {
  10479. "type": "zip",
  10480. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  10481. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  10482. "shasum": ""
  10483. },
  10484. "require": {
  10485. "php": ">=7.3",
  10486. "sebastian/object-reflector": "^2.0",
  10487. "sebastian/recursion-context": "^4.0"
  10488. },
  10489. "require-dev": {
  10490. "phpunit/phpunit": "^9.3"
  10491. },
  10492. "type": "library",
  10493. "extra": {
  10494. "branch-alias": {
  10495. "dev-master": "4.0-dev"
  10496. }
  10497. },
  10498. "autoload": {
  10499. "classmap": [
  10500. "src/"
  10501. ]
  10502. },
  10503. "notification-url": "https://packagist.org/downloads/",
  10504. "license": [
  10505. "BSD-3-Clause"
  10506. ],
  10507. "authors": [
  10508. {
  10509. "name": "Sebastian Bergmann",
  10510. "email": "sebastian@phpunit.de"
  10511. }
  10512. ],
  10513. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10514. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10515. "support": {
  10516. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10517. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  10518. },
  10519. "funding": [
  10520. {
  10521. "url": "https://github.com/sebastianbergmann",
  10522. "type": "github"
  10523. }
  10524. ],
  10525. "time": "2020-10-26T13:12:34+00:00"
  10526. },
  10527. {
  10528. "name": "sebastian/object-reflector",
  10529. "version": "2.0.4",
  10530. "source": {
  10531. "type": "git",
  10532. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10533. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  10534. },
  10535. "dist": {
  10536. "type": "zip",
  10537. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10538. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10539. "shasum": ""
  10540. },
  10541. "require": {
  10542. "php": ">=7.3"
  10543. },
  10544. "require-dev": {
  10545. "phpunit/phpunit": "^9.3"
  10546. },
  10547. "type": "library",
  10548. "extra": {
  10549. "branch-alias": {
  10550. "dev-master": "2.0-dev"
  10551. }
  10552. },
  10553. "autoload": {
  10554. "classmap": [
  10555. "src/"
  10556. ]
  10557. },
  10558. "notification-url": "https://packagist.org/downloads/",
  10559. "license": [
  10560. "BSD-3-Clause"
  10561. ],
  10562. "authors": [
  10563. {
  10564. "name": "Sebastian Bergmann",
  10565. "email": "sebastian@phpunit.de"
  10566. }
  10567. ],
  10568. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10569. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10570. "support": {
  10571. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10572. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  10573. },
  10574. "funding": [
  10575. {
  10576. "url": "https://github.com/sebastianbergmann",
  10577. "type": "github"
  10578. }
  10579. ],
  10580. "time": "2020-10-26T13:14:26+00:00"
  10581. },
  10582. {
  10583. "name": "sebastian/recursion-context",
  10584. "version": "4.0.4",
  10585. "source": {
  10586. "type": "git",
  10587. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10588. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172"
  10589. },
  10590. "dist": {
  10591. "type": "zip",
  10592. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172",
  10593. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172",
  10594. "shasum": ""
  10595. },
  10596. "require": {
  10597. "php": ">=7.3"
  10598. },
  10599. "require-dev": {
  10600. "phpunit/phpunit": "^9.3"
  10601. },
  10602. "type": "library",
  10603. "extra": {
  10604. "branch-alias": {
  10605. "dev-master": "4.0-dev"
  10606. }
  10607. },
  10608. "autoload": {
  10609. "classmap": [
  10610. "src/"
  10611. ]
  10612. },
  10613. "notification-url": "https://packagist.org/downloads/",
  10614. "license": [
  10615. "BSD-3-Clause"
  10616. ],
  10617. "authors": [
  10618. {
  10619. "name": "Sebastian Bergmann",
  10620. "email": "sebastian@phpunit.de"
  10621. },
  10622. {
  10623. "name": "Jeff Welch",
  10624. "email": "whatthejeff@gmail.com"
  10625. },
  10626. {
  10627. "name": "Adam Harvey",
  10628. "email": "aharvey@php.net"
  10629. }
  10630. ],
  10631. "description": "Provides functionality to recursively process PHP variables",
  10632. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  10633. "support": {
  10634. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10635. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4"
  10636. },
  10637. "funding": [
  10638. {
  10639. "url": "https://github.com/sebastianbergmann",
  10640. "type": "github"
  10641. }
  10642. ],
  10643. "time": "2020-10-26T13:17:30+00:00"
  10644. },
  10645. {
  10646. "name": "sebastian/resource-operations",
  10647. "version": "3.0.3",
  10648. "source": {
  10649. "type": "git",
  10650. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  10651. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  10652. },
  10653. "dist": {
  10654. "type": "zip",
  10655. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  10656. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  10657. "shasum": ""
  10658. },
  10659. "require": {
  10660. "php": ">=7.3"
  10661. },
  10662. "require-dev": {
  10663. "phpunit/phpunit": "^9.0"
  10664. },
  10665. "type": "library",
  10666. "extra": {
  10667. "branch-alias": {
  10668. "dev-master": "3.0-dev"
  10669. }
  10670. },
  10671. "autoload": {
  10672. "classmap": [
  10673. "src/"
  10674. ]
  10675. },
  10676. "notification-url": "https://packagist.org/downloads/",
  10677. "license": [
  10678. "BSD-3-Clause"
  10679. ],
  10680. "authors": [
  10681. {
  10682. "name": "Sebastian Bergmann",
  10683. "email": "sebastian@phpunit.de"
  10684. }
  10685. ],
  10686. "description": "Provides a list of PHP built-in functions that operate on resources",
  10687. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  10688. "support": {
  10689. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  10690. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  10691. },
  10692. "funding": [
  10693. {
  10694. "url": "https://github.com/sebastianbergmann",
  10695. "type": "github"
  10696. }
  10697. ],
  10698. "time": "2020-09-28T06:45:17+00:00"
  10699. },
  10700. {
  10701. "name": "sebastian/type",
  10702. "version": "2.3.1",
  10703. "source": {
  10704. "type": "git",
  10705. "url": "https://github.com/sebastianbergmann/type.git",
  10706. "reference": "81cd61ab7bbf2de744aba0ea61fae32f721df3d2"
  10707. },
  10708. "dist": {
  10709. "type": "zip",
  10710. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/81cd61ab7bbf2de744aba0ea61fae32f721df3d2",
  10711. "reference": "81cd61ab7bbf2de744aba0ea61fae32f721df3d2",
  10712. "shasum": ""
  10713. },
  10714. "require": {
  10715. "php": ">=7.3"
  10716. },
  10717. "require-dev": {
  10718. "phpunit/phpunit": "^9.3"
  10719. },
  10720. "type": "library",
  10721. "extra": {
  10722. "branch-alias": {
  10723. "dev-master": "2.3-dev"
  10724. }
  10725. },
  10726. "autoload": {
  10727. "classmap": [
  10728. "src/"
  10729. ]
  10730. },
  10731. "notification-url": "https://packagist.org/downloads/",
  10732. "license": [
  10733. "BSD-3-Clause"
  10734. ],
  10735. "authors": [
  10736. {
  10737. "name": "Sebastian Bergmann",
  10738. "email": "sebastian@phpunit.de",
  10739. "role": "lead"
  10740. }
  10741. ],
  10742. "description": "Collection of value objects that represent the types of the PHP type system",
  10743. "homepage": "https://github.com/sebastianbergmann/type",
  10744. "support": {
  10745. "issues": "https://github.com/sebastianbergmann/type/issues",
  10746. "source": "https://github.com/sebastianbergmann/type/tree/2.3.1"
  10747. },
  10748. "funding": [
  10749. {
  10750. "url": "https://github.com/sebastianbergmann",
  10751. "type": "github"
  10752. }
  10753. ],
  10754. "time": "2020-10-26T13:18:59+00:00"
  10755. },
  10756. {
  10757. "name": "sebastian/version",
  10758. "version": "3.0.2",
  10759. "source": {
  10760. "type": "git",
  10761. "url": "https://github.com/sebastianbergmann/version.git",
  10762. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  10763. },
  10764. "dist": {
  10765. "type": "zip",
  10766. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  10767. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  10768. "shasum": ""
  10769. },
  10770. "require": {
  10771. "php": ">=7.3"
  10772. },
  10773. "type": "library",
  10774. "extra": {
  10775. "branch-alias": {
  10776. "dev-master": "3.0-dev"
  10777. }
  10778. },
  10779. "autoload": {
  10780. "classmap": [
  10781. "src/"
  10782. ]
  10783. },
  10784. "notification-url": "https://packagist.org/downloads/",
  10785. "license": [
  10786. "BSD-3-Clause"
  10787. ],
  10788. "authors": [
  10789. {
  10790. "name": "Sebastian Bergmann",
  10791. "email": "sebastian@phpunit.de",
  10792. "role": "lead"
  10793. }
  10794. ],
  10795. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10796. "homepage": "https://github.com/sebastianbergmann/version",
  10797. "support": {
  10798. "issues": "https://github.com/sebastianbergmann/version/issues",
  10799. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  10800. },
  10801. "funding": [
  10802. {
  10803. "url": "https://github.com/sebastianbergmann",
  10804. "type": "github"
  10805. }
  10806. ],
  10807. "time": "2020-09-28T06:39:44+00:00"
  10808. },
  10809. {
  10810. "name": "seld/jsonlint",
  10811. "version": "1.8.3",
  10812. "source": {
  10813. "type": "git",
  10814. "url": "https://github.com/Seldaek/jsonlint.git",
  10815. "reference": "9ad6ce79c342fbd44df10ea95511a1b24dee5b57"
  10816. },
  10817. "dist": {
  10818. "type": "zip",
  10819. "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/9ad6ce79c342fbd44df10ea95511a1b24dee5b57",
  10820. "reference": "9ad6ce79c342fbd44df10ea95511a1b24dee5b57",
  10821. "shasum": ""
  10822. },
  10823. "require": {
  10824. "php": "^5.3 || ^7.0 || ^8.0"
  10825. },
  10826. "require-dev": {
  10827. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  10828. },
  10829. "bin": [
  10830. "bin/jsonlint"
  10831. ],
  10832. "type": "library",
  10833. "autoload": {
  10834. "psr-4": {
  10835. "Seld\\JsonLint\\": "src/Seld/JsonLint/"
  10836. }
  10837. },
  10838. "notification-url": "https://packagist.org/downloads/",
  10839. "license": [
  10840. "MIT"
  10841. ],
  10842. "authors": [
  10843. {
  10844. "name": "Jordi Boggiano",
  10845. "email": "j.boggiano@seld.be",
  10846. "homepage": "http://seld.be"
  10847. }
  10848. ],
  10849. "description": "JSON Linter",
  10850. "keywords": [
  10851. "json",
  10852. "linter",
  10853. "parser",
  10854. "validator"
  10855. ],
  10856. "support": {
  10857. "issues": "https://github.com/Seldaek/jsonlint/issues",
  10858. "source": "https://github.com/Seldaek/jsonlint/tree/1.8.3"
  10859. },
  10860. "funding": [
  10861. {
  10862. "url": "https://github.com/Seldaek",
  10863. "type": "github"
  10864. },
  10865. {
  10866. "url": "https://tidelift.com/funding/github/packagist/seld/jsonlint",
  10867. "type": "tidelift"
  10868. }
  10869. ],
  10870. "time": "2020-11-11T09:19:24+00:00"
  10871. },
  10872. {
  10873. "name": "seld/phar-utils",
  10874. "version": "1.1.1",
  10875. "source": {
  10876. "type": "git",
  10877. "url": "https://github.com/Seldaek/phar-utils.git",
  10878. "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796"
  10879. },
  10880. "dist": {
  10881. "type": "zip",
  10882. "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/8674b1d84ffb47cc59a101f5d5a3b61e87d23796",
  10883. "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796",
  10884. "shasum": ""
  10885. },
  10886. "require": {
  10887. "php": ">=5.3"
  10888. },
  10889. "type": "library",
  10890. "extra": {
  10891. "branch-alias": {
  10892. "dev-master": "1.x-dev"
  10893. }
  10894. },
  10895. "autoload": {
  10896. "psr-4": {
  10897. "Seld\\PharUtils\\": "src/"
  10898. }
  10899. },
  10900. "notification-url": "https://packagist.org/downloads/",
  10901. "license": [
  10902. "MIT"
  10903. ],
  10904. "authors": [
  10905. {
  10906. "name": "Jordi Boggiano",
  10907. "email": "j.boggiano@seld.be"
  10908. }
  10909. ],
  10910. "description": "PHAR file format utilities, for when PHP phars you up",
  10911. "keywords": [
  10912. "phar"
  10913. ],
  10914. "support": {
  10915. "issues": "https://github.com/Seldaek/phar-utils/issues",
  10916. "source": "https://github.com/Seldaek/phar-utils/tree/master"
  10917. },
  10918. "time": "2020-07-07T18:42:57+00:00"
  10919. },
  10920. {
  10921. "name": "symfony/debug",
  10922. "version": "v4.4.16",
  10923. "source": {
  10924. "type": "git",
  10925. "url": "https://github.com/symfony/debug.git",
  10926. "reference": "c87adf3fc1cd0bf4758316a3a150d50a8f957ef4"
  10927. },
  10928. "dist": {
  10929. "type": "zip",
  10930. "url": "https://api.github.com/repos/symfony/debug/zipball/c87adf3fc1cd0bf4758316a3a150d50a8f957ef4",
  10931. "reference": "c87adf3fc1cd0bf4758316a3a150d50a8f957ef4",
  10932. "shasum": ""
  10933. },
  10934. "require": {
  10935. "php": ">=7.1.3",
  10936. "psr/log": "~1.0",
  10937. "symfony/polyfill-php80": "^1.15"
  10938. },
  10939. "conflict": {
  10940. "symfony/http-kernel": "<3.4"
  10941. },
  10942. "require-dev": {
  10943. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  10944. },
  10945. "type": "library",
  10946. "autoload": {
  10947. "psr-4": {
  10948. "Symfony\\Component\\Debug\\": ""
  10949. },
  10950. "exclude-from-classmap": [
  10951. "/Tests/"
  10952. ]
  10953. },
  10954. "notification-url": "https://packagist.org/downloads/",
  10955. "license": [
  10956. "MIT"
  10957. ],
  10958. "authors": [
  10959. {
  10960. "name": "Fabien Potencier",
  10961. "email": "fabien@symfony.com"
  10962. },
  10963. {
  10964. "name": "Symfony Community",
  10965. "homepage": "https://symfony.com/contributors"
  10966. }
  10967. ],
  10968. "description": "Symfony Debug Component",
  10969. "homepage": "https://symfony.com",
  10970. "support": {
  10971. "source": "https://github.com/symfony/debug/tree/v4.4.16"
  10972. },
  10973. "funding": [
  10974. {
  10975. "url": "https://symfony.com/sponsor",
  10976. "type": "custom"
  10977. },
  10978. {
  10979. "url": "https://github.com/fabpot",
  10980. "type": "github"
  10981. },
  10982. {
  10983. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10984. "type": "tidelift"
  10985. }
  10986. ],
  10987. "time": "2020-10-24T11:50:19+00:00"
  10988. },
  10989. {
  10990. "name": "symfony/filesystem",
  10991. "version": "v5.1.8",
  10992. "source": {
  10993. "type": "git",
  10994. "url": "https://github.com/symfony/filesystem.git",
  10995. "reference": "df08650ea7aee2d925380069c131a66124d79177"
  10996. },
  10997. "dist": {
  10998. "type": "zip",
  10999. "url": "https://api.github.com/repos/symfony/filesystem/zipball/df08650ea7aee2d925380069c131a66124d79177",
  11000. "reference": "df08650ea7aee2d925380069c131a66124d79177",
  11001. "shasum": ""
  11002. },
  11003. "require": {
  11004. "php": ">=7.2.5",
  11005. "symfony/polyfill-ctype": "~1.8"
  11006. },
  11007. "type": "library",
  11008. "autoload": {
  11009. "psr-4": {
  11010. "Symfony\\Component\\Filesystem\\": ""
  11011. },
  11012. "exclude-from-classmap": [
  11013. "/Tests/"
  11014. ]
  11015. },
  11016. "notification-url": "https://packagist.org/downloads/",
  11017. "license": [
  11018. "MIT"
  11019. ],
  11020. "authors": [
  11021. {
  11022. "name": "Fabien Potencier",
  11023. "email": "fabien@symfony.com"
  11024. },
  11025. {
  11026. "name": "Symfony Community",
  11027. "homepage": "https://symfony.com/contributors"
  11028. }
  11029. ],
  11030. "description": "Symfony Filesystem Component",
  11031. "homepage": "https://symfony.com",
  11032. "support": {
  11033. "source": "https://github.com/symfony/filesystem/tree/v5.1.8"
  11034. },
  11035. "funding": [
  11036. {
  11037. "url": "https://symfony.com/sponsor",
  11038. "type": "custom"
  11039. },
  11040. {
  11041. "url": "https://github.com/fabpot",
  11042. "type": "github"
  11043. },
  11044. {
  11045. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11046. "type": "tidelift"
  11047. }
  11048. ],
  11049. "time": "2020-10-24T12:01:57+00:00"
  11050. },
  11051. {
  11052. "name": "theseer/tokenizer",
  11053. "version": "1.2.0",
  11054. "source": {
  11055. "type": "git",
  11056. "url": "https://github.com/theseer/tokenizer.git",
  11057. "reference": "75a63c33a8577608444246075ea0af0d052e452a"
  11058. },
  11059. "dist": {
  11060. "type": "zip",
  11061. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a",
  11062. "reference": "75a63c33a8577608444246075ea0af0d052e452a",
  11063. "shasum": ""
  11064. },
  11065. "require": {
  11066. "ext-dom": "*",
  11067. "ext-tokenizer": "*",
  11068. "ext-xmlwriter": "*",
  11069. "php": "^7.2 || ^8.0"
  11070. },
  11071. "type": "library",
  11072. "autoload": {
  11073. "classmap": [
  11074. "src/"
  11075. ]
  11076. },
  11077. "notification-url": "https://packagist.org/downloads/",
  11078. "license": [
  11079. "BSD-3-Clause"
  11080. ],
  11081. "authors": [
  11082. {
  11083. "name": "Arne Blankerts",
  11084. "email": "arne@blankerts.de",
  11085. "role": "Developer"
  11086. }
  11087. ],
  11088. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11089. "support": {
  11090. "issues": "https://github.com/theseer/tokenizer/issues",
  11091. "source": "https://github.com/theseer/tokenizer/tree/master"
  11092. },
  11093. "funding": [
  11094. {
  11095. "url": "https://github.com/theseer",
  11096. "type": "github"
  11097. }
  11098. ],
  11099. "time": "2020-07-12T23:59:07+00:00"
  11100. },
  11101. {
  11102. "name": "webmozart/assert",
  11103. "version": "1.9.1",
  11104. "source": {
  11105. "type": "git",
  11106. "url": "https://github.com/webmozart/assert.git",
  11107. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389"
  11108. },
  11109. "dist": {
  11110. "type": "zip",
  11111. "url": "https://api.github.com/repos/webmozart/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389",
  11112. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389",
  11113. "shasum": ""
  11114. },
  11115. "require": {
  11116. "php": "^5.3.3 || ^7.0 || ^8.0",
  11117. "symfony/polyfill-ctype": "^1.8"
  11118. },
  11119. "conflict": {
  11120. "phpstan/phpstan": "<0.12.20",
  11121. "vimeo/psalm": "<3.9.1"
  11122. },
  11123. "require-dev": {
  11124. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  11125. },
  11126. "type": "library",
  11127. "autoload": {
  11128. "psr-4": {
  11129. "Webmozart\\Assert\\": "src/"
  11130. }
  11131. },
  11132. "notification-url": "https://packagist.org/downloads/",
  11133. "license": [
  11134. "MIT"
  11135. ],
  11136. "authors": [
  11137. {
  11138. "name": "Bernhard Schussek",
  11139. "email": "bschussek@gmail.com"
  11140. }
  11141. ],
  11142. "description": "Assertions to validate method input/output with nice error messages.",
  11143. "keywords": [
  11144. "assert",
  11145. "check",
  11146. "validate"
  11147. ],
  11148. "support": {
  11149. "issues": "https://github.com/webmozart/assert/issues",
  11150. "source": "https://github.com/webmozart/assert/tree/master"
  11151. },
  11152. "time": "2020-07-08T17:02:28+00:00"
  11153. }
  11154. ],
  11155. "aliases": [],
  11156. "minimum-stability": "dev",
  11157. "stability-flags": [],
  11158. "prefer-stable": true,
  11159. "prefer-lowest": false,
  11160. "platform": {
  11161. "php": "^7.2.5|^8.0",
  11162. "ext-json": "*",
  11163. "ext-mbstring": "*",
  11164. "ext-openssl": "*",
  11165. "ext-simplexml": "*"
  11166. },
  11167. "platform-dev": [],
  11168. "plugin-api-version": "2.0.0"
  11169. }