composer.lock 304 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580
  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": "6a788edb868c1d416b4919e7029115d5",
  8. "packages": [
  9. {
  10. "name": "arcanedev/log-viewer",
  11. "version": "4.4.5",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/ARCANEDEV/LogViewer.git",
  15. "reference": "ab22caeb6227500f32ea3f364dc235ea167b0f49"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/ARCANEDEV/LogViewer/zipball/ab22caeb6227500f32ea3f364dc235ea167b0f49",
  20. "reference": "ab22caeb6227500f32ea3f364dc235ea167b0f49",
  21. "shasum": "",
  22. "mirrors": [
  23. {
  24. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  25. "preferred": true
  26. }
  27. ]
  28. },
  29. "require": {
  30. "arcanedev/support": "~4.1",
  31. "ext-json": "*",
  32. "php": ">=7.0",
  33. "psr/log": "~1.0"
  34. },
  35. "require-dev": {
  36. "orchestra/testbench": "~3.5.0",
  37. "phpunit/phpcov": "~4.0",
  38. "phpunit/phpunit": "~6.0"
  39. },
  40. "type": "library",
  41. "extra": {
  42. "laravel": {
  43. "providers": [
  44. "Arcanedev\\LogViewer\\LogViewerServiceProvider"
  45. ]
  46. }
  47. },
  48. "autoload": {
  49. "psr-4": {
  50. "Arcanedev\\LogViewer\\": "src/"
  51. },
  52. "files": [
  53. "constants.php",
  54. "helpers.php"
  55. ]
  56. },
  57. "notification-url": "https://packagist.org/downloads/",
  58. "license": [
  59. "MIT"
  60. ],
  61. "authors": [
  62. {
  63. "name": "ARCANEDEV",
  64. "email": "arcanedev.maroc@gmail.com",
  65. "homepage": "https://github.com/arcanedev-maroc",
  66. "role": "Developer"
  67. }
  68. ],
  69. "description": "Provides a Log Viewer for Laravel 5",
  70. "homepage": "https://github.com/ARCANEDEV/LogViewer",
  71. "keywords": [
  72. "arcanedev",
  73. "arcanesoft",
  74. "laravel",
  75. "log",
  76. "log viewer",
  77. "log-viewer",
  78. "logviewer"
  79. ],
  80. "time": "2019-09-12T19:08:13+00:00"
  81. },
  82. {
  83. "name": "arcanedev/support",
  84. "version": "4.2.2",
  85. "source": {
  86. "type": "git",
  87. "url": "https://github.com/ARCANEDEV/Support.git",
  88. "reference": "525166d89920e83b07efbb2fbccc5b128484cf0f"
  89. },
  90. "dist": {
  91. "type": "zip",
  92. "url": "https://api.github.com/repos/ARCANEDEV/Support/zipball/525166d89920e83b07efbb2fbccc5b128484cf0f",
  93. "reference": "525166d89920e83b07efbb2fbccc5b128484cf0f",
  94. "shasum": "",
  95. "mirrors": [
  96. {
  97. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  98. "preferred": true
  99. }
  100. ]
  101. },
  102. "require": {
  103. "illuminate/filesystem": "~5.5.0",
  104. "illuminate/support": "~5.5.0",
  105. "php": ">=7.0"
  106. },
  107. "require-dev": {
  108. "orchestra/testbench": "~3.5.0",
  109. "phpunit/phpcov": "~4.0",
  110. "phpunit/phpunit": "~6.0"
  111. },
  112. "type": "library",
  113. "autoload": {
  114. "psr-4": {
  115. "Arcanedev\\Support\\": "src/"
  116. },
  117. "files": [
  118. "constants.php",
  119. "helpers.php"
  120. ]
  121. },
  122. "notification-url": "https://packagist.org/downloads/",
  123. "license": [
  124. "MIT"
  125. ],
  126. "authors": [
  127. {
  128. "name": "ARCANEDEV",
  129. "email": "arcanedev.maroc@gmail.com",
  130. "homepage": "https://github.com/arcanedev-maroc"
  131. }
  132. ],
  133. "description": "ARCANEDEV Support Helpers",
  134. "homepage": "https://github.com/ARCANEDEV/Support",
  135. "keywords": [
  136. "arcanedev",
  137. "arcanesoft",
  138. "laravel",
  139. "support"
  140. ],
  141. "time": "2018-02-07T18:22:19+00:00"
  142. },
  143. {
  144. "name": "barryvdh/laravel-ide-helper",
  145. "version": "v2.7.0",
  146. "source": {
  147. "type": "git",
  148. "url": "https://github.com/barryvdh/laravel-ide-helper.git",
  149. "reference": "5f677edc14bdcfdcac36633e6eea71b2728a4dbc"
  150. },
  151. "dist": {
  152. "type": "zip",
  153. "url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/5f677edc14bdcfdcac36633e6eea71b2728a4dbc",
  154. "reference": "5f677edc14bdcfdcac36633e6eea71b2728a4dbc",
  155. "shasum": "",
  156. "mirrors": [
  157. {
  158. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  159. "preferred": true
  160. }
  161. ]
  162. },
  163. "require": {
  164. "barryvdh/reflection-docblock": "^2.0.6",
  165. "composer/composer": "^1.6",
  166. "doctrine/dbal": "~2.3",
  167. "illuminate/console": "^5.5|^6|^7",
  168. "illuminate/filesystem": "^5.5|^6|^7",
  169. "illuminate/support": "^5.5|^6|^7",
  170. "php": ">=7.2"
  171. },
  172. "require-dev": {
  173. "illuminate/config": "^5.5|^6|^7",
  174. "illuminate/view": "^5.5|^6|^7",
  175. "mockery/mockery": "^1.3",
  176. "orchestra/testbench": "^3|^4|^5",
  177. "phpro/grumphp": "^0.17.1",
  178. "squizlabs/php_codesniffer": "^3"
  179. },
  180. "type": "library",
  181. "extra": {
  182. "branch-alias": {
  183. "dev-master": "2.6-dev"
  184. },
  185. "laravel": {
  186. "providers": [
  187. "Barryvdh\\LaravelIdeHelper\\IdeHelperServiceProvider"
  188. ]
  189. }
  190. },
  191. "autoload": {
  192. "psr-4": {
  193. "Barryvdh\\LaravelIdeHelper\\": "src"
  194. }
  195. },
  196. "notification-url": "https://packagist.org/downloads/",
  197. "license": [
  198. "MIT"
  199. ],
  200. "authors": [
  201. {
  202. "name": "Barry vd. Heuvel",
  203. "email": "barryvdh@gmail.com"
  204. }
  205. ],
  206. "description": "Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.",
  207. "keywords": [
  208. "autocomplete",
  209. "codeintel",
  210. "helper",
  211. "ide",
  212. "laravel",
  213. "netbeans",
  214. "phpdoc",
  215. "phpstorm",
  216. "sublime"
  217. ],
  218. "time": "2020-04-22T09:57:26+00:00"
  219. },
  220. {
  221. "name": "barryvdh/reflection-docblock",
  222. "version": "v2.0.6",
  223. "source": {
  224. "type": "git",
  225. "url": "https://github.com/barryvdh/ReflectionDocBlock.git",
  226. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16"
  227. },
  228. "dist": {
  229. "type": "zip",
  230. "url": "https://api.github.com/repos/barryvdh/ReflectionDocBlock/zipball/6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  231. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  232. "shasum": "",
  233. "mirrors": [
  234. {
  235. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  236. "preferred": true
  237. }
  238. ]
  239. },
  240. "require": {
  241. "php": ">=5.3.3"
  242. },
  243. "require-dev": {
  244. "phpunit/phpunit": "~4.0,<4.5"
  245. },
  246. "suggest": {
  247. "dflydev/markdown": "~1.0",
  248. "erusev/parsedown": "~1.0"
  249. },
  250. "type": "library",
  251. "extra": {
  252. "branch-alias": {
  253. "dev-master": "2.0.x-dev"
  254. }
  255. },
  256. "autoload": {
  257. "psr-0": {
  258. "Barryvdh": [
  259. "src/"
  260. ]
  261. }
  262. },
  263. "notification-url": "https://packagist.org/downloads/",
  264. "license": [
  265. "MIT"
  266. ],
  267. "authors": [
  268. {
  269. "name": "Mike van Riel",
  270. "email": "mike.vanriel@naenius.com"
  271. }
  272. ],
  273. "time": "2018-12-13T10:34:14+00:00"
  274. },
  275. {
  276. "name": "composer/ca-bundle",
  277. "version": "1.2.8",
  278. "source": {
  279. "type": "git",
  280. "url": "https://github.com/composer/ca-bundle.git",
  281. "reference": "8a7ecad675253e4654ea05505233285377405215"
  282. },
  283. "dist": {
  284. "type": "zip",
  285. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/8a7ecad675253e4654ea05505233285377405215",
  286. "reference": "8a7ecad675253e4654ea05505233285377405215",
  287. "shasum": "",
  288. "mirrors": [
  289. {
  290. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  291. "preferred": true
  292. }
  293. ]
  294. },
  295. "require": {
  296. "ext-openssl": "*",
  297. "ext-pcre": "*",
  298. "php": "^5.3.2 || ^7.0 || ^8.0"
  299. },
  300. "require-dev": {
  301. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8",
  302. "psr/log": "^1.0",
  303. "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0"
  304. },
  305. "type": "library",
  306. "extra": {
  307. "branch-alias": {
  308. "dev-master": "1.x-dev"
  309. }
  310. },
  311. "autoload": {
  312. "psr-4": {
  313. "Composer\\CaBundle\\": "src"
  314. }
  315. },
  316. "notification-url": "https://packagist.org/downloads/",
  317. "license": [
  318. "MIT"
  319. ],
  320. "authors": [
  321. {
  322. "name": "Jordi Boggiano",
  323. "email": "j.boggiano@seld.be",
  324. "homepage": "http://seld.be"
  325. }
  326. ],
  327. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  328. "keywords": [
  329. "cabundle",
  330. "cacert",
  331. "certificate",
  332. "ssl",
  333. "tls"
  334. ],
  335. "time": "2020-08-23T12:54:47+00:00"
  336. },
  337. {
  338. "name": "composer/composer",
  339. "version": "1.10.13",
  340. "source": {
  341. "type": "git",
  342. "url": "https://github.com/composer/composer.git",
  343. "reference": "47c841ba3b2d3fc0b4b13282cf029ea18b66d78b"
  344. },
  345. "dist": {
  346. "type": "zip",
  347. "url": "https://api.github.com/repos/composer/composer/zipball/47c841ba3b2d3fc0b4b13282cf029ea18b66d78b",
  348. "reference": "47c841ba3b2d3fc0b4b13282cf029ea18b66d78b",
  349. "shasum": "",
  350. "mirrors": [
  351. {
  352. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  353. "preferred": true
  354. }
  355. ]
  356. },
  357. "require": {
  358. "composer/ca-bundle": "^1.0",
  359. "composer/semver": "^1.0",
  360. "composer/spdx-licenses": "^1.2",
  361. "composer/xdebug-handler": "^1.1",
  362. "justinrainbow/json-schema": "^5.2.10",
  363. "php": "^5.3.2 || ^7.0",
  364. "psr/log": "^1.0",
  365. "seld/jsonlint": "^1.4",
  366. "seld/phar-utils": "^1.0",
  367. "symfony/console": "^2.7 || ^3.0 || ^4.0 || ^5.0",
  368. "symfony/filesystem": "^2.7 || ^3.0 || ^4.0 || ^5.0",
  369. "symfony/finder": "^2.7 || ^3.0 || ^4.0 || ^5.0",
  370. "symfony/process": "^2.7 || ^3.0 || ^4.0 || ^5.0"
  371. },
  372. "conflict": {
  373. "symfony/console": "2.8.38"
  374. },
  375. "require-dev": {
  376. "phpspec/prophecy": "^1.10",
  377. "symfony/phpunit-bridge": "^4.2"
  378. },
  379. "suggest": {
  380. "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages",
  381. "ext-zip": "Enabling the zip extension allows you to unzip archives",
  382. "ext-zlib": "Allow gzip compression of HTTP requests"
  383. },
  384. "bin": [
  385. "bin/composer"
  386. ],
  387. "type": "library",
  388. "extra": {
  389. "branch-alias": {
  390. "dev-master": "1.10-dev"
  391. }
  392. },
  393. "autoload": {
  394. "psr-4": {
  395. "Composer\\": "src/Composer"
  396. }
  397. },
  398. "notification-url": "https://packagist.org/downloads/",
  399. "license": [
  400. "MIT"
  401. ],
  402. "authors": [
  403. {
  404. "name": "Nils Adermann",
  405. "email": "naderman@naderman.de",
  406. "homepage": "http://www.naderman.de"
  407. },
  408. {
  409. "name": "Jordi Boggiano",
  410. "email": "j.boggiano@seld.be",
  411. "homepage": "http://seld.be"
  412. }
  413. ],
  414. "description": "Composer helps you declare, manage and install dependencies of PHP projects. It ensures you have the right stack everywhere.",
  415. "homepage": "https://getcomposer.org/",
  416. "keywords": [
  417. "autoload",
  418. "dependency",
  419. "package"
  420. ],
  421. "time": "2020-09-09T09:46:34+00:00"
  422. },
  423. {
  424. "name": "composer/semver",
  425. "version": "1.7.1",
  426. "source": {
  427. "type": "git",
  428. "url": "https://github.com/composer/semver.git",
  429. "reference": "38276325bd896f90dfcfe30029aa5db40df387a7"
  430. },
  431. "dist": {
  432. "type": "zip",
  433. "url": "https://api.github.com/repos/composer/semver/zipball/38276325bd896f90dfcfe30029aa5db40df387a7",
  434. "reference": "38276325bd896f90dfcfe30029aa5db40df387a7",
  435. "shasum": "",
  436. "mirrors": [
  437. {
  438. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  439. "preferred": true
  440. }
  441. ]
  442. },
  443. "require": {
  444. "php": "^5.3.2 || ^7.0"
  445. },
  446. "require-dev": {
  447. "phpunit/phpunit": "^4.5 || ^5.0.5"
  448. },
  449. "type": "library",
  450. "extra": {
  451. "branch-alias": {
  452. "dev-master": "1.x-dev"
  453. }
  454. },
  455. "autoload": {
  456. "psr-4": {
  457. "Composer\\Semver\\": "src"
  458. }
  459. },
  460. "notification-url": "https://packagist.org/downloads/",
  461. "license": [
  462. "MIT"
  463. ],
  464. "authors": [
  465. {
  466. "name": "Nils Adermann",
  467. "email": "naderman@naderman.de",
  468. "homepage": "http://www.naderman.de"
  469. },
  470. {
  471. "name": "Jordi Boggiano",
  472. "email": "j.boggiano@seld.be",
  473. "homepage": "http://seld.be"
  474. },
  475. {
  476. "name": "Rob Bast",
  477. "email": "rob.bast@gmail.com",
  478. "homepage": "http://robbast.nl"
  479. }
  480. ],
  481. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  482. "keywords": [
  483. "semantic",
  484. "semver",
  485. "validation",
  486. "versioning"
  487. ],
  488. "time": "2020-09-27T13:13:07+00:00"
  489. },
  490. {
  491. "name": "composer/spdx-licenses",
  492. "version": "1.5.4",
  493. "source": {
  494. "type": "git",
  495. "url": "https://github.com/composer/spdx-licenses.git",
  496. "reference": "6946f785871e2314c60b4524851f3702ea4f2223"
  497. },
  498. "dist": {
  499. "type": "zip",
  500. "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/6946f785871e2314c60b4524851f3702ea4f2223",
  501. "reference": "6946f785871e2314c60b4524851f3702ea4f2223",
  502. "shasum": "",
  503. "mirrors": [
  504. {
  505. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  506. "preferred": true
  507. }
  508. ]
  509. },
  510. "require": {
  511. "php": "^5.3.2 || ^7.0 || ^8.0"
  512. },
  513. "require-dev": {
  514. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 7"
  515. },
  516. "type": "library",
  517. "extra": {
  518. "branch-alias": {
  519. "dev-master": "1.x-dev"
  520. }
  521. },
  522. "autoload": {
  523. "psr-4": {
  524. "Composer\\Spdx\\": "src"
  525. }
  526. },
  527. "notification-url": "https://packagist.org/downloads/",
  528. "license": [
  529. "MIT"
  530. ],
  531. "authors": [
  532. {
  533. "name": "Nils Adermann",
  534. "email": "naderman@naderman.de",
  535. "homepage": "http://www.naderman.de"
  536. },
  537. {
  538. "name": "Jordi Boggiano",
  539. "email": "j.boggiano@seld.be",
  540. "homepage": "http://seld.be"
  541. },
  542. {
  543. "name": "Rob Bast",
  544. "email": "rob.bast@gmail.com",
  545. "homepage": "http://robbast.nl"
  546. }
  547. ],
  548. "description": "SPDX licenses list and validation library.",
  549. "keywords": [
  550. "license",
  551. "spdx",
  552. "validator"
  553. ],
  554. "time": "2020-07-15T15:35:07+00:00"
  555. },
  556. {
  557. "name": "composer/xdebug-handler",
  558. "version": "1.4.3",
  559. "source": {
  560. "type": "git",
  561. "url": "https://github.com/composer/xdebug-handler.git",
  562. "reference": "ebd27a9866ae8254e873866f795491f02418c5a5"
  563. },
  564. "dist": {
  565. "type": "zip",
  566. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/ebd27a9866ae8254e873866f795491f02418c5a5",
  567. "reference": "ebd27a9866ae8254e873866f795491f02418c5a5",
  568. "shasum": "",
  569. "mirrors": [
  570. {
  571. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  572. "preferred": true
  573. }
  574. ]
  575. },
  576. "require": {
  577. "php": "^5.3.2 || ^7.0 || ^8.0",
  578. "psr/log": "^1.0"
  579. },
  580. "require-dev": {
  581. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8"
  582. },
  583. "type": "library",
  584. "autoload": {
  585. "psr-4": {
  586. "Composer\\XdebugHandler\\": "src"
  587. }
  588. },
  589. "notification-url": "https://packagist.org/downloads/",
  590. "license": [
  591. "MIT"
  592. ],
  593. "authors": [
  594. {
  595. "name": "John Stevenson",
  596. "email": "john-stevenson@blueyonder.co.uk"
  597. }
  598. ],
  599. "description": "Restarts a process without Xdebug.",
  600. "keywords": [
  601. "Xdebug",
  602. "performance"
  603. ],
  604. "time": "2020-08-19T10:27:58+00:00"
  605. },
  606. {
  607. "name": "dingo/api",
  608. "version": "v2.0.0-alpha1",
  609. "source": {
  610. "type": "git",
  611. "url": "https://github.com/dingo/api.git",
  612. "reference": "8beb74dd307770c909f0474e26a1004099ac78bd"
  613. },
  614. "dist": {
  615. "type": "zip",
  616. "url": "https://api.github.com/repos/dingo/api/zipball/8beb74dd307770c909f0474e26a1004099ac78bd",
  617. "reference": "8beb74dd307770c909f0474e26a1004099ac78bd",
  618. "shasum": "",
  619. "mirrors": [
  620. {
  621. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  622. "preferred": true
  623. }
  624. ]
  625. },
  626. "require": {
  627. "dingo/blueprint": "^0.2",
  628. "illuminate/routing": "^5.1",
  629. "illuminate/support": "^5.1",
  630. "league/fractal": "^0.17",
  631. "php": "^7.0"
  632. },
  633. "require-dev": {
  634. "friendsofphp/php-cs-fixer": "~2",
  635. "illuminate/auth": "^5.1",
  636. "illuminate/cache": "^5.1",
  637. "illuminate/console": "^5.1",
  638. "illuminate/database": "^5.1",
  639. "illuminate/events": "^5.1",
  640. "illuminate/filesystem": "^5.1",
  641. "illuminate/log": "^5.1",
  642. "illuminate/pagination": "^5.1",
  643. "laravel/lumen-framework": "^5.1",
  644. "mockery/mockery": "~0.9",
  645. "phpunit/phpunit": "^4.8 || ^5.0",
  646. "squizlabs/php_codesniffer": "~2.0",
  647. "tymon/jwt-auth": "1.0.*"
  648. },
  649. "suggest": {
  650. "tymon/jwt-auth": "Protect your API with JSON Web Tokens."
  651. },
  652. "type": "library",
  653. "extra": {
  654. "branch-alias": {
  655. "dev-master": "2.0-dev"
  656. },
  657. "laravel": {
  658. "providers": [
  659. "Dingo\\Api\\Provider\\LaravelServiceProvider"
  660. ],
  661. "aliases": {
  662. "API": "Dingo\\Api\\Facade\\API"
  663. }
  664. }
  665. },
  666. "autoload": {
  667. "psr-4": {
  668. "Dingo\\Api\\": "src/"
  669. },
  670. "files": [
  671. "src/helpers.php"
  672. ]
  673. },
  674. "notification-url": "https://packagist.org/downloads/",
  675. "license": [
  676. "BSD-3-Clause"
  677. ],
  678. "authors": [
  679. {
  680. "name": "Jason Lewis",
  681. "email": "jason.lewis1991@gmail.com"
  682. }
  683. ],
  684. "description": "A RESTful API package for the Laravel and Lumen frameworks.",
  685. "keywords": [
  686. "api",
  687. "dingo",
  688. "laravel",
  689. "restful"
  690. ],
  691. "time": "2017-09-20T15:57:14+00:00"
  692. },
  693. {
  694. "name": "dingo/blueprint",
  695. "version": "v0.2.4",
  696. "source": {
  697. "type": "git",
  698. "url": "https://github.com/dingo/blueprint.git",
  699. "reference": "1dc93b8ea443fbbdaaca0582572ee6ca53afccfd"
  700. },
  701. "dist": {
  702. "type": "zip",
  703. "url": "https://api.github.com/repos/dingo/blueprint/zipball/1dc93b8ea443fbbdaaca0582572ee6ca53afccfd",
  704. "reference": "1dc93b8ea443fbbdaaca0582572ee6ca53afccfd",
  705. "shasum": "",
  706. "mirrors": [
  707. {
  708. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  709. "preferred": true
  710. }
  711. ]
  712. },
  713. "require": {
  714. "doctrine/annotations": "~1.2",
  715. "illuminate/filesystem": "^5.1",
  716. "illuminate/support": "^5.1",
  717. "php": ">=5.5.9",
  718. "phpdocumentor/reflection-docblock": "^3.1"
  719. },
  720. "require-dev": {
  721. "phpunit/phpunit": "~4.0",
  722. "squizlabs/php_codesniffer": "~2.0"
  723. },
  724. "type": "library",
  725. "extra": {
  726. "branch-alias": {
  727. "dev-master": "0.2-dev"
  728. }
  729. },
  730. "autoload": {
  731. "psr-4": {
  732. "Dingo\\Blueprint\\": "src"
  733. }
  734. },
  735. "notification-url": "https://packagist.org/downloads/",
  736. "license": [
  737. "BSD-3-Clause"
  738. ],
  739. "authors": [
  740. {
  741. "name": "Jason Lewis",
  742. "email": "jason.lewis1991@gmail.com"
  743. }
  744. ],
  745. "description": "API Blueprint documentation generator.",
  746. "keywords": [
  747. "api",
  748. "blueprint",
  749. "dingo",
  750. "docs",
  751. "laravel"
  752. ],
  753. "time": "2017-12-05T12:02:08+00:00"
  754. },
  755. {
  756. "name": "dnoegel/php-xdg-base-dir",
  757. "version": "v0.1.1",
  758. "source": {
  759. "type": "git",
  760. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  761. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd"
  762. },
  763. "dist": {
  764. "type": "zip",
  765. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  766. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  767. "shasum": "",
  768. "mirrors": [
  769. {
  770. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  771. "preferred": true
  772. }
  773. ]
  774. },
  775. "require": {
  776. "php": ">=5.3.2"
  777. },
  778. "require-dev": {
  779. "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
  780. },
  781. "type": "library",
  782. "autoload": {
  783. "psr-4": {
  784. "XdgBaseDir\\": "src/"
  785. }
  786. },
  787. "notification-url": "https://packagist.org/downloads/",
  788. "license": [
  789. "MIT"
  790. ],
  791. "description": "implementation of xdg base directory specification for php",
  792. "time": "2019-12-04T15:06:13+00:00"
  793. },
  794. {
  795. "name": "doctrine/annotations",
  796. "version": "1.10.4",
  797. "source": {
  798. "type": "git",
  799. "url": "https://github.com/doctrine/annotations.git",
  800. "reference": "bfe91e31984e2ba76df1c1339681770401ec262f"
  801. },
  802. "dist": {
  803. "type": "zip",
  804. "url": "https://api.github.com/repos/doctrine/annotations/zipball/bfe91e31984e2ba76df1c1339681770401ec262f",
  805. "reference": "bfe91e31984e2ba76df1c1339681770401ec262f",
  806. "shasum": "",
  807. "mirrors": [
  808. {
  809. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  810. "preferred": true
  811. }
  812. ]
  813. },
  814. "require": {
  815. "doctrine/lexer": "1.*",
  816. "ext-tokenizer": "*",
  817. "php": "^7.1 || ^8.0"
  818. },
  819. "require-dev": {
  820. "doctrine/cache": "1.*",
  821. "phpstan/phpstan": "^0.12.20",
  822. "phpunit/phpunit": "^7.5 || ^9.1.5"
  823. },
  824. "type": "library",
  825. "extra": {
  826. "branch-alias": {
  827. "dev-master": "1.9.x-dev"
  828. }
  829. },
  830. "autoload": {
  831. "psr-4": {
  832. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  833. }
  834. },
  835. "notification-url": "https://packagist.org/downloads/",
  836. "license": [
  837. "MIT"
  838. ],
  839. "authors": [
  840. {
  841. "name": "Guilherme Blanco",
  842. "email": "guilhermeblanco@gmail.com"
  843. },
  844. {
  845. "name": "Roman Borschel",
  846. "email": "roman@code-factory.org"
  847. },
  848. {
  849. "name": "Benjamin Eberlei",
  850. "email": "kontakt@beberlei.de"
  851. },
  852. {
  853. "name": "Jonathan Wage",
  854. "email": "jonwage@gmail.com"
  855. },
  856. {
  857. "name": "Johannes Schmitt",
  858. "email": "schmittjoh@gmail.com"
  859. }
  860. ],
  861. "description": "Docblock Annotations Parser",
  862. "homepage": "http://www.doctrine-project.org",
  863. "keywords": [
  864. "annotations",
  865. "docblock",
  866. "parser"
  867. ],
  868. "time": "2020-08-10T19:35:50+00:00"
  869. },
  870. {
  871. "name": "doctrine/cache",
  872. "version": "1.10.2",
  873. "source": {
  874. "type": "git",
  875. "url": "https://github.com/doctrine/cache.git",
  876. "reference": "13e3381b25847283a91948d04640543941309727"
  877. },
  878. "dist": {
  879. "type": "zip",
  880. "url": "https://api.github.com/repos/doctrine/cache/zipball/13e3381b25847283a91948d04640543941309727",
  881. "reference": "13e3381b25847283a91948d04640543941309727",
  882. "shasum": "",
  883. "mirrors": [
  884. {
  885. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  886. "preferred": true
  887. }
  888. ]
  889. },
  890. "require": {
  891. "php": "~7.1 || ^8.0"
  892. },
  893. "conflict": {
  894. "doctrine/common": ">2.2,<2.4"
  895. },
  896. "require-dev": {
  897. "alcaeus/mongo-php-adapter": "^1.1",
  898. "doctrine/coding-standard": "^6.0",
  899. "mongodb/mongodb": "^1.1",
  900. "phpunit/phpunit": "^7.0",
  901. "predis/predis": "~1.0"
  902. },
  903. "suggest": {
  904. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  905. },
  906. "type": "library",
  907. "extra": {
  908. "branch-alias": {
  909. "dev-master": "1.9.x-dev"
  910. }
  911. },
  912. "autoload": {
  913. "psr-4": {
  914. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  915. }
  916. },
  917. "notification-url": "https://packagist.org/downloads/",
  918. "license": [
  919. "MIT"
  920. ],
  921. "authors": [
  922. {
  923. "name": "Guilherme Blanco",
  924. "email": "guilhermeblanco@gmail.com"
  925. },
  926. {
  927. "name": "Roman Borschel",
  928. "email": "roman@code-factory.org"
  929. },
  930. {
  931. "name": "Benjamin Eberlei",
  932. "email": "kontakt@beberlei.de"
  933. },
  934. {
  935. "name": "Jonathan Wage",
  936. "email": "jonwage@gmail.com"
  937. },
  938. {
  939. "name": "Johannes Schmitt",
  940. "email": "schmittjoh@gmail.com"
  941. }
  942. ],
  943. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  944. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  945. "keywords": [
  946. "abstraction",
  947. "apcu",
  948. "cache",
  949. "caching",
  950. "couchdb",
  951. "memcached",
  952. "php",
  953. "redis",
  954. "xcache"
  955. ],
  956. "time": "2020-07-07T18:54:01+00:00"
  957. },
  958. {
  959. "name": "doctrine/dbal",
  960. "version": "2.11.1",
  961. "source": {
  962. "type": "git",
  963. "url": "https://github.com/doctrine/dbal.git",
  964. "reference": "6e6903cd5e3a5be60a79439e3ee8fe126f78fe86"
  965. },
  966. "dist": {
  967. "type": "zip",
  968. "url": "https://api.github.com/repos/doctrine/dbal/zipball/6e6903cd5e3a5be60a79439e3ee8fe126f78fe86",
  969. "reference": "6e6903cd5e3a5be60a79439e3ee8fe126f78fe86",
  970. "shasum": "",
  971. "mirrors": [
  972. {
  973. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  974. "preferred": true
  975. }
  976. ]
  977. },
  978. "require": {
  979. "doctrine/cache": "^1.0",
  980. "doctrine/event-manager": "^1.0",
  981. "ext-pdo": "*",
  982. "php": "^7.3"
  983. },
  984. "require-dev": {
  985. "doctrine/coding-standard": "^8.1",
  986. "jetbrains/phpstorm-stubs": "^2019.1",
  987. "nikic/php-parser": "^4.4",
  988. "phpstan/phpstan": "^0.12.40",
  989. "phpunit/phpunit": "^9.3",
  990. "psalm/plugin-phpunit": "^0.10.0",
  991. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
  992. "vimeo/psalm": "^3.14.2"
  993. },
  994. "suggest": {
  995. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  996. },
  997. "bin": [
  998. "bin/doctrine-dbal"
  999. ],
  1000. "type": "library",
  1001. "extra": {
  1002. "branch-alias": {
  1003. "dev-master": "4.0.x-dev"
  1004. }
  1005. },
  1006. "autoload": {
  1007. "psr-4": {
  1008. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  1009. }
  1010. },
  1011. "notification-url": "https://packagist.org/downloads/",
  1012. "license": [
  1013. "MIT"
  1014. ],
  1015. "authors": [
  1016. {
  1017. "name": "Guilherme Blanco",
  1018. "email": "guilhermeblanco@gmail.com"
  1019. },
  1020. {
  1021. "name": "Roman Borschel",
  1022. "email": "roman@code-factory.org"
  1023. },
  1024. {
  1025. "name": "Benjamin Eberlei",
  1026. "email": "kontakt@beberlei.de"
  1027. },
  1028. {
  1029. "name": "Jonathan Wage",
  1030. "email": "jonwage@gmail.com"
  1031. }
  1032. ],
  1033. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  1034. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  1035. "keywords": [
  1036. "abstraction",
  1037. "database",
  1038. "db2",
  1039. "dbal",
  1040. "mariadb",
  1041. "mssql",
  1042. "mysql",
  1043. "oci8",
  1044. "oracle",
  1045. "pdo",
  1046. "pgsql",
  1047. "postgresql",
  1048. "queryobject",
  1049. "sasql",
  1050. "sql",
  1051. "sqlanywhere",
  1052. "sqlite",
  1053. "sqlserver",
  1054. "sqlsrv"
  1055. ],
  1056. "time": "2020-09-27T04:09:41+00:00"
  1057. },
  1058. {
  1059. "name": "doctrine/event-manager",
  1060. "version": "1.1.1",
  1061. "source": {
  1062. "type": "git",
  1063. "url": "https://github.com/doctrine/event-manager.git",
  1064. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  1065. },
  1066. "dist": {
  1067. "type": "zip",
  1068. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  1069. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  1070. "shasum": "",
  1071. "mirrors": [
  1072. {
  1073. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1074. "preferred": true
  1075. }
  1076. ]
  1077. },
  1078. "require": {
  1079. "php": "^7.1 || ^8.0"
  1080. },
  1081. "conflict": {
  1082. "doctrine/common": "<2.9@dev"
  1083. },
  1084. "require-dev": {
  1085. "doctrine/coding-standard": "^6.0",
  1086. "phpunit/phpunit": "^7.0"
  1087. },
  1088. "type": "library",
  1089. "extra": {
  1090. "branch-alias": {
  1091. "dev-master": "1.0.x-dev"
  1092. }
  1093. },
  1094. "autoload": {
  1095. "psr-4": {
  1096. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1097. }
  1098. },
  1099. "notification-url": "https://packagist.org/downloads/",
  1100. "license": [
  1101. "MIT"
  1102. ],
  1103. "authors": [
  1104. {
  1105. "name": "Guilherme Blanco",
  1106. "email": "guilhermeblanco@gmail.com"
  1107. },
  1108. {
  1109. "name": "Roman Borschel",
  1110. "email": "roman@code-factory.org"
  1111. },
  1112. {
  1113. "name": "Benjamin Eberlei",
  1114. "email": "kontakt@beberlei.de"
  1115. },
  1116. {
  1117. "name": "Jonathan Wage",
  1118. "email": "jonwage@gmail.com"
  1119. },
  1120. {
  1121. "name": "Johannes Schmitt",
  1122. "email": "schmittjoh@gmail.com"
  1123. },
  1124. {
  1125. "name": "Marco Pivetta",
  1126. "email": "ocramius@gmail.com"
  1127. }
  1128. ],
  1129. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  1130. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  1131. "keywords": [
  1132. "event",
  1133. "event dispatcher",
  1134. "event manager",
  1135. "event system",
  1136. "events"
  1137. ],
  1138. "time": "2020-05-29T18:28:51+00:00"
  1139. },
  1140. {
  1141. "name": "doctrine/inflector",
  1142. "version": "1.4.3",
  1143. "source": {
  1144. "type": "git",
  1145. "url": "https://github.com/doctrine/inflector.git",
  1146. "reference": "4650c8b30c753a76bf44fb2ed00117d6f367490c"
  1147. },
  1148. "dist": {
  1149. "type": "zip",
  1150. "url": "https://api.github.com/repos/doctrine/inflector/zipball/4650c8b30c753a76bf44fb2ed00117d6f367490c",
  1151. "reference": "4650c8b30c753a76bf44fb2ed00117d6f367490c",
  1152. "shasum": "",
  1153. "mirrors": [
  1154. {
  1155. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1156. "preferred": true
  1157. }
  1158. ]
  1159. },
  1160. "require": {
  1161. "php": "^7.2 || ^8.0"
  1162. },
  1163. "require-dev": {
  1164. "doctrine/coding-standard": "^7.0",
  1165. "phpstan/phpstan": "^0.11",
  1166. "phpstan/phpstan-phpunit": "^0.11",
  1167. "phpstan/phpstan-strict-rules": "^0.11",
  1168. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  1169. },
  1170. "type": "library",
  1171. "extra": {
  1172. "branch-alias": {
  1173. "dev-master": "2.0.x-dev"
  1174. }
  1175. },
  1176. "autoload": {
  1177. "psr-4": {
  1178. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector",
  1179. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  1180. }
  1181. },
  1182. "notification-url": "https://packagist.org/downloads/",
  1183. "license": [
  1184. "MIT"
  1185. ],
  1186. "authors": [
  1187. {
  1188. "name": "Guilherme Blanco",
  1189. "email": "guilhermeblanco@gmail.com"
  1190. },
  1191. {
  1192. "name": "Roman Borschel",
  1193. "email": "roman@code-factory.org"
  1194. },
  1195. {
  1196. "name": "Benjamin Eberlei",
  1197. "email": "kontakt@beberlei.de"
  1198. },
  1199. {
  1200. "name": "Jonathan Wage",
  1201. "email": "jonwage@gmail.com"
  1202. },
  1203. {
  1204. "name": "Johannes Schmitt",
  1205. "email": "schmittjoh@gmail.com"
  1206. }
  1207. ],
  1208. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1209. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1210. "keywords": [
  1211. "inflection",
  1212. "inflector",
  1213. "lowercase",
  1214. "manipulation",
  1215. "php",
  1216. "plural",
  1217. "singular",
  1218. "strings",
  1219. "uppercase",
  1220. "words"
  1221. ],
  1222. "time": "2020-05-29T07:19:59+00:00"
  1223. },
  1224. {
  1225. "name": "doctrine/lexer",
  1226. "version": "1.2.1",
  1227. "source": {
  1228. "type": "git",
  1229. "url": "https://github.com/doctrine/lexer.git",
  1230. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  1231. },
  1232. "dist": {
  1233. "type": "zip",
  1234. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  1235. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  1236. "shasum": "",
  1237. "mirrors": [
  1238. {
  1239. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1240. "preferred": true
  1241. }
  1242. ]
  1243. },
  1244. "require": {
  1245. "php": "^7.2 || ^8.0"
  1246. },
  1247. "require-dev": {
  1248. "doctrine/coding-standard": "^6.0",
  1249. "phpstan/phpstan": "^0.11.8",
  1250. "phpunit/phpunit": "^8.2"
  1251. },
  1252. "type": "library",
  1253. "extra": {
  1254. "branch-alias": {
  1255. "dev-master": "1.2.x-dev"
  1256. }
  1257. },
  1258. "autoload": {
  1259. "psr-4": {
  1260. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1261. }
  1262. },
  1263. "notification-url": "https://packagist.org/downloads/",
  1264. "license": [
  1265. "MIT"
  1266. ],
  1267. "authors": [
  1268. {
  1269. "name": "Guilherme Blanco",
  1270. "email": "guilhermeblanco@gmail.com"
  1271. },
  1272. {
  1273. "name": "Roman Borschel",
  1274. "email": "roman@code-factory.org"
  1275. },
  1276. {
  1277. "name": "Johannes Schmitt",
  1278. "email": "schmittjoh@gmail.com"
  1279. }
  1280. ],
  1281. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1282. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1283. "keywords": [
  1284. "annotations",
  1285. "docblock",
  1286. "lexer",
  1287. "parser",
  1288. "php"
  1289. ],
  1290. "time": "2020-05-25T17:44:05+00:00"
  1291. },
  1292. {
  1293. "name": "easywechat-composer/easywechat-composer",
  1294. "version": "1.4.0",
  1295. "source": {
  1296. "type": "git",
  1297. "url": "https://github.com/mingyoung/easywechat-composer.git",
  1298. "reference": "93cfce1ec842b9a5b1b0791a52afd18b833f114a"
  1299. },
  1300. "dist": {
  1301. "type": "zip",
  1302. "url": "https://api.github.com/repos/mingyoung/easywechat-composer/zipball/93cfce1ec842b9a5b1b0791a52afd18b833f114a",
  1303. "reference": "93cfce1ec842b9a5b1b0791a52afd18b833f114a",
  1304. "shasum": "",
  1305. "mirrors": [
  1306. {
  1307. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1308. "preferred": true
  1309. }
  1310. ]
  1311. },
  1312. "require": {
  1313. "composer-plugin-api": "^1.0 || ^2.0",
  1314. "php": ">=7.0"
  1315. },
  1316. "require-dev": {
  1317. "composer/composer": "^1.0 || ^2.0",
  1318. "phpunit/phpunit": "^6.5 || ^7.0"
  1319. },
  1320. "type": "composer-plugin",
  1321. "extra": {
  1322. "class": "EasyWeChatComposer\\Plugin"
  1323. },
  1324. "autoload": {
  1325. "psr-4": {
  1326. "EasyWeChatComposer\\": "src/"
  1327. }
  1328. },
  1329. "notification-url": "https://packagist.org/downloads/",
  1330. "license": [
  1331. "MIT"
  1332. ],
  1333. "authors": [
  1334. {
  1335. "name": "张铭阳",
  1336. "email": "mingyoungcheung@gmail.com"
  1337. }
  1338. ],
  1339. "description": "The composer plugin for EasyWeChat",
  1340. "time": "2020-07-23T11:06:47+00:00"
  1341. },
  1342. {
  1343. "name": "egulias/email-validator",
  1344. "version": "2.1.22",
  1345. "source": {
  1346. "type": "git",
  1347. "url": "https://github.com/egulias/EmailValidator.git",
  1348. "reference": "68e418ec08fbfc6f58f6fd2eea70ca8efc8cc7d5"
  1349. },
  1350. "dist": {
  1351. "type": "zip",
  1352. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/68e418ec08fbfc6f58f6fd2eea70ca8efc8cc7d5",
  1353. "reference": "68e418ec08fbfc6f58f6fd2eea70ca8efc8cc7d5",
  1354. "shasum": "",
  1355. "mirrors": [
  1356. {
  1357. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1358. "preferred": true
  1359. }
  1360. ]
  1361. },
  1362. "require": {
  1363. "doctrine/lexer": "^1.0.1",
  1364. "php": ">=5.5",
  1365. "symfony/polyfill-intl-idn": "^1.10"
  1366. },
  1367. "require-dev": {
  1368. "dominicsayers/isemail": "^3.0.7",
  1369. "phpunit/phpunit": "^4.8.36|^7.5.15",
  1370. "satooshi/php-coveralls": "^1.0.1"
  1371. },
  1372. "suggest": {
  1373. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1374. },
  1375. "type": "library",
  1376. "extra": {
  1377. "branch-alias": {
  1378. "dev-master": "2.1.x-dev"
  1379. }
  1380. },
  1381. "autoload": {
  1382. "psr-4": {
  1383. "Egulias\\EmailValidator\\": "src"
  1384. }
  1385. },
  1386. "notification-url": "https://packagist.org/downloads/",
  1387. "license": [
  1388. "MIT"
  1389. ],
  1390. "authors": [
  1391. {
  1392. "name": "Eduardo Gulias Davis"
  1393. }
  1394. ],
  1395. "description": "A library for validating emails against several RFCs",
  1396. "homepage": "https://github.com/egulias/EmailValidator",
  1397. "keywords": [
  1398. "email",
  1399. "emailvalidation",
  1400. "emailvalidator",
  1401. "validation",
  1402. "validator"
  1403. ],
  1404. "time": "2020-09-26T15:48:38+00:00"
  1405. },
  1406. {
  1407. "name": "erusev/parsedown",
  1408. "version": "1.7.4",
  1409. "source": {
  1410. "type": "git",
  1411. "url": "https://github.com/erusev/parsedown.git",
  1412. "reference": "cb17b6477dfff935958ba01325f2e8a2bfa6dab3"
  1413. },
  1414. "dist": {
  1415. "type": "zip",
  1416. "url": "https://api.github.com/repos/erusev/parsedown/zipball/cb17b6477dfff935958ba01325f2e8a2bfa6dab3",
  1417. "reference": "cb17b6477dfff935958ba01325f2e8a2bfa6dab3",
  1418. "shasum": "",
  1419. "mirrors": [
  1420. {
  1421. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1422. "preferred": true
  1423. }
  1424. ]
  1425. },
  1426. "require": {
  1427. "ext-mbstring": "*",
  1428. "php": ">=5.3.0"
  1429. },
  1430. "require-dev": {
  1431. "phpunit/phpunit": "^4.8.35"
  1432. },
  1433. "type": "library",
  1434. "autoload": {
  1435. "psr-0": {
  1436. "Parsedown": ""
  1437. }
  1438. },
  1439. "notification-url": "https://packagist.org/downloads/",
  1440. "license": [
  1441. "MIT"
  1442. ],
  1443. "authors": [
  1444. {
  1445. "name": "Emanuil Rusev",
  1446. "email": "hello@erusev.com",
  1447. "homepage": "http://erusev.com"
  1448. }
  1449. ],
  1450. "description": "Parser for Markdown.",
  1451. "homepage": "http://parsedown.org",
  1452. "keywords": [
  1453. "markdown",
  1454. "parser"
  1455. ],
  1456. "time": "2019-12-30T22:54:17+00:00"
  1457. },
  1458. {
  1459. "name": "fideloper/proxy",
  1460. "version": "4.4.0",
  1461. "source": {
  1462. "type": "git",
  1463. "url": "https://github.com/fideloper/TrustedProxy.git",
  1464. "reference": "9beebf48a1c344ed67c1d36bb1b8709db7c3c1a8"
  1465. },
  1466. "dist": {
  1467. "type": "zip",
  1468. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/9beebf48a1c344ed67c1d36bb1b8709db7c3c1a8",
  1469. "reference": "9beebf48a1c344ed67c1d36bb1b8709db7c3c1a8",
  1470. "shasum": "",
  1471. "mirrors": [
  1472. {
  1473. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1474. "preferred": true
  1475. }
  1476. ]
  1477. },
  1478. "require": {
  1479. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0",
  1480. "php": ">=5.4.0"
  1481. },
  1482. "require-dev": {
  1483. "illuminate/http": "^5.0|^6.0|^7.0|^8.0",
  1484. "mockery/mockery": "^1.0",
  1485. "phpunit/phpunit": "^6.0"
  1486. },
  1487. "type": "library",
  1488. "extra": {
  1489. "laravel": {
  1490. "providers": [
  1491. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  1492. ]
  1493. }
  1494. },
  1495. "autoload": {
  1496. "psr-4": {
  1497. "Fideloper\\Proxy\\": "src/"
  1498. }
  1499. },
  1500. "notification-url": "https://packagist.org/downloads/",
  1501. "license": [
  1502. "MIT"
  1503. ],
  1504. "authors": [
  1505. {
  1506. "name": "Chris Fidao",
  1507. "email": "fideloper@gmail.com"
  1508. }
  1509. ],
  1510. "description": "Set trusted proxies for Laravel",
  1511. "keywords": [
  1512. "load balancing",
  1513. "proxy",
  1514. "trusted proxy"
  1515. ],
  1516. "time": "2020-06-23T01:36:47+00:00"
  1517. },
  1518. {
  1519. "name": "guzzlehttp/guzzle",
  1520. "version": "7.1.0",
  1521. "source": {
  1522. "type": "git",
  1523. "url": "https://github.com/guzzle/guzzle.git",
  1524. "reference": "7edeaa528fbb57123028bd5a76b9ce9540194e26"
  1525. },
  1526. "dist": {
  1527. "type": "zip",
  1528. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/7edeaa528fbb57123028bd5a76b9ce9540194e26",
  1529. "reference": "7edeaa528fbb57123028bd5a76b9ce9540194e26",
  1530. "shasum": "",
  1531. "mirrors": [
  1532. {
  1533. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1534. "preferred": true
  1535. }
  1536. ]
  1537. },
  1538. "require": {
  1539. "ext-json": "*",
  1540. "guzzlehttp/promises": "^1.0",
  1541. "guzzlehttp/psr7": "^1.6.1",
  1542. "php": "^7.2.5",
  1543. "psr/http-client": "^1.0"
  1544. },
  1545. "provide": {
  1546. "psr/http-client-implementation": "1.0"
  1547. },
  1548. "require-dev": {
  1549. "ext-curl": "*",
  1550. "php-http/client-integration-tests": "dev-phpunit8",
  1551. "phpunit/phpunit": "^8.5.5",
  1552. "psr/log": "^1.1"
  1553. },
  1554. "suggest": {
  1555. "ext-curl": "Required for CURL handler support",
  1556. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1557. "psr/log": "Required for using the Log middleware"
  1558. },
  1559. "type": "library",
  1560. "extra": {
  1561. "branch-alias": {
  1562. "dev-master": "7.1-dev"
  1563. }
  1564. },
  1565. "autoload": {
  1566. "psr-4": {
  1567. "GuzzleHttp\\": "src/"
  1568. },
  1569. "files": [
  1570. "src/functions_include.php"
  1571. ]
  1572. },
  1573. "notification-url": "https://packagist.org/downloads/",
  1574. "license": [
  1575. "MIT"
  1576. ],
  1577. "authors": [
  1578. {
  1579. "name": "Michael Dowling",
  1580. "email": "mtdowling@gmail.com",
  1581. "homepage": "https://github.com/mtdowling"
  1582. },
  1583. {
  1584. "name": "Márk Sági-Kazár",
  1585. "email": "mark.sagikazar@gmail.com",
  1586. "homepage": "https://sagikazarmark.hu"
  1587. }
  1588. ],
  1589. "description": "Guzzle is a PHP HTTP client library",
  1590. "homepage": "http://guzzlephp.org/",
  1591. "keywords": [
  1592. "client",
  1593. "curl",
  1594. "framework",
  1595. "http",
  1596. "http client",
  1597. "psr-18",
  1598. "psr-7",
  1599. "rest",
  1600. "web service"
  1601. ],
  1602. "time": "2020-09-22T09:10:04+00:00"
  1603. },
  1604. {
  1605. "name": "guzzlehttp/promises",
  1606. "version": "v1.3.1",
  1607. "source": {
  1608. "type": "git",
  1609. "url": "https://github.com/guzzle/promises.git",
  1610. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  1611. },
  1612. "dist": {
  1613. "type": "zip",
  1614. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  1615. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  1616. "shasum": "",
  1617. "mirrors": [
  1618. {
  1619. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1620. "preferred": true
  1621. }
  1622. ]
  1623. },
  1624. "require": {
  1625. "php": ">=5.5.0"
  1626. },
  1627. "require-dev": {
  1628. "phpunit/phpunit": "^4.0"
  1629. },
  1630. "type": "library",
  1631. "extra": {
  1632. "branch-alias": {
  1633. "dev-master": "1.4-dev"
  1634. }
  1635. },
  1636. "autoload": {
  1637. "psr-4": {
  1638. "GuzzleHttp\\Promise\\": "src/"
  1639. },
  1640. "files": [
  1641. "src/functions_include.php"
  1642. ]
  1643. },
  1644. "notification-url": "https://packagist.org/downloads/",
  1645. "license": [
  1646. "MIT"
  1647. ],
  1648. "authors": [
  1649. {
  1650. "name": "Michael Dowling",
  1651. "email": "mtdowling@gmail.com",
  1652. "homepage": "https://github.com/mtdowling"
  1653. }
  1654. ],
  1655. "description": "Guzzle promises library",
  1656. "keywords": [
  1657. "promise"
  1658. ],
  1659. "time": "2016-12-20T10:07:11+00:00"
  1660. },
  1661. {
  1662. "name": "guzzlehttp/psr7",
  1663. "version": "1.6.1",
  1664. "source": {
  1665. "type": "git",
  1666. "url": "https://github.com/guzzle/psr7.git",
  1667. "reference": "239400de7a173fe9901b9ac7c06497751f00727a"
  1668. },
  1669. "dist": {
  1670. "type": "zip",
  1671. "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a",
  1672. "reference": "239400de7a173fe9901b9ac7c06497751f00727a",
  1673. "shasum": "",
  1674. "mirrors": [
  1675. {
  1676. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1677. "preferred": true
  1678. }
  1679. ]
  1680. },
  1681. "require": {
  1682. "php": ">=5.4.0",
  1683. "psr/http-message": "~1.0",
  1684. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  1685. },
  1686. "provide": {
  1687. "psr/http-message-implementation": "1.0"
  1688. },
  1689. "require-dev": {
  1690. "ext-zlib": "*",
  1691. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  1692. },
  1693. "suggest": {
  1694. "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses"
  1695. },
  1696. "type": "library",
  1697. "extra": {
  1698. "branch-alias": {
  1699. "dev-master": "1.6-dev"
  1700. }
  1701. },
  1702. "autoload": {
  1703. "psr-4": {
  1704. "GuzzleHttp\\Psr7\\": "src/"
  1705. },
  1706. "files": [
  1707. "src/functions_include.php"
  1708. ]
  1709. },
  1710. "notification-url": "https://packagist.org/downloads/",
  1711. "license": [
  1712. "MIT"
  1713. ],
  1714. "authors": [
  1715. {
  1716. "name": "Michael Dowling",
  1717. "email": "mtdowling@gmail.com",
  1718. "homepage": "https://github.com/mtdowling"
  1719. },
  1720. {
  1721. "name": "Tobias Schultze",
  1722. "homepage": "https://github.com/Tobion"
  1723. }
  1724. ],
  1725. "description": "PSR-7 message implementation that also provides common utility methods",
  1726. "keywords": [
  1727. "http",
  1728. "message",
  1729. "psr-7",
  1730. "request",
  1731. "response",
  1732. "stream",
  1733. "uri",
  1734. "url"
  1735. ],
  1736. "time": "2019-07-01T23:21:34+00:00"
  1737. },
  1738. {
  1739. "name": "jakub-onderka/php-console-color",
  1740. "version": "v0.2",
  1741. "source": {
  1742. "type": "git",
  1743. "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
  1744. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191"
  1745. },
  1746. "dist": {
  1747. "type": "zip",
  1748. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/d5deaecff52a0d61ccb613bb3804088da0307191",
  1749. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191",
  1750. "shasum": "",
  1751. "mirrors": [
  1752. {
  1753. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1754. "preferred": true
  1755. }
  1756. ]
  1757. },
  1758. "require": {
  1759. "php": ">=5.4.0"
  1760. },
  1761. "require-dev": {
  1762. "jakub-onderka/php-code-style": "1.0",
  1763. "jakub-onderka/php-parallel-lint": "1.0",
  1764. "jakub-onderka/php-var-dump-check": "0.*",
  1765. "phpunit/phpunit": "~4.3",
  1766. "squizlabs/php_codesniffer": "1.*"
  1767. },
  1768. "type": "library",
  1769. "autoload": {
  1770. "psr-4": {
  1771. "JakubOnderka\\PhpConsoleColor\\": "src/"
  1772. }
  1773. },
  1774. "notification-url": "https://packagist.org/downloads/",
  1775. "license": [
  1776. "BSD-2-Clause"
  1777. ],
  1778. "authors": [
  1779. {
  1780. "name": "Jakub Onderka",
  1781. "email": "jakub.onderka@gmail.com"
  1782. }
  1783. ],
  1784. "abandoned": "php-parallel-lint/php-console-color",
  1785. "time": "2018-09-29T17:23:10+00:00"
  1786. },
  1787. {
  1788. "name": "jakub-onderka/php-console-highlighter",
  1789. "version": "v0.4",
  1790. "source": {
  1791. "type": "git",
  1792. "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
  1793. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547"
  1794. },
  1795. "dist": {
  1796. "type": "zip",
  1797. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/9f7a229a69d52506914b4bc61bfdb199d90c5547",
  1798. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547",
  1799. "shasum": "",
  1800. "mirrors": [
  1801. {
  1802. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1803. "preferred": true
  1804. }
  1805. ]
  1806. },
  1807. "require": {
  1808. "ext-tokenizer": "*",
  1809. "jakub-onderka/php-console-color": "~0.2",
  1810. "php": ">=5.4.0"
  1811. },
  1812. "require-dev": {
  1813. "jakub-onderka/php-code-style": "~1.0",
  1814. "jakub-onderka/php-parallel-lint": "~1.0",
  1815. "jakub-onderka/php-var-dump-check": "~0.1",
  1816. "phpunit/phpunit": "~4.0",
  1817. "squizlabs/php_codesniffer": "~1.5"
  1818. },
  1819. "type": "library",
  1820. "autoload": {
  1821. "psr-4": {
  1822. "JakubOnderka\\PhpConsoleHighlighter\\": "src/"
  1823. }
  1824. },
  1825. "notification-url": "https://packagist.org/downloads/",
  1826. "license": [
  1827. "MIT"
  1828. ],
  1829. "authors": [
  1830. {
  1831. "name": "Jakub Onderka",
  1832. "email": "acci@acci.cz",
  1833. "homepage": "http://www.acci.cz/"
  1834. }
  1835. ],
  1836. "description": "Highlight PHP code in terminal",
  1837. "abandoned": "php-parallel-lint/php-console-highlighter",
  1838. "time": "2018-09-29T18:48:56+00:00"
  1839. },
  1840. {
  1841. "name": "justinrainbow/json-schema",
  1842. "version": "5.2.10",
  1843. "source": {
  1844. "type": "git",
  1845. "url": "https://github.com/justinrainbow/json-schema.git",
  1846. "reference": "2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b"
  1847. },
  1848. "dist": {
  1849. "type": "zip",
  1850. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b",
  1851. "reference": "2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b",
  1852. "shasum": "",
  1853. "mirrors": [
  1854. {
  1855. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1856. "preferred": true
  1857. }
  1858. ]
  1859. },
  1860. "require": {
  1861. "php": ">=5.3.3"
  1862. },
  1863. "require-dev": {
  1864. "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1",
  1865. "json-schema/json-schema-test-suite": "1.2.0",
  1866. "phpunit/phpunit": "^4.8.35"
  1867. },
  1868. "bin": [
  1869. "bin/validate-json"
  1870. ],
  1871. "type": "library",
  1872. "extra": {
  1873. "branch-alias": {
  1874. "dev-master": "5.0.x-dev"
  1875. }
  1876. },
  1877. "autoload": {
  1878. "psr-4": {
  1879. "JsonSchema\\": "src/JsonSchema/"
  1880. }
  1881. },
  1882. "notification-url": "https://packagist.org/downloads/",
  1883. "license": [
  1884. "MIT"
  1885. ],
  1886. "authors": [
  1887. {
  1888. "name": "Bruno Prieto Reis",
  1889. "email": "bruno.p.reis@gmail.com"
  1890. },
  1891. {
  1892. "name": "Justin Rainbow",
  1893. "email": "justin.rainbow@gmail.com"
  1894. },
  1895. {
  1896. "name": "Igor Wiedler",
  1897. "email": "igor@wiedler.ch"
  1898. },
  1899. {
  1900. "name": "Robert Schönthal",
  1901. "email": "seroscho@googlemail.com"
  1902. }
  1903. ],
  1904. "description": "A library to validate a json schema.",
  1905. "homepage": "https://github.com/justinrainbow/json-schema",
  1906. "keywords": [
  1907. "json",
  1908. "schema"
  1909. ],
  1910. "time": "2020-05-27T16:41:55+00:00"
  1911. },
  1912. {
  1913. "name": "jxlwqq/id-validator",
  1914. "version": "1.4.21",
  1915. "source": {
  1916. "type": "git",
  1917. "url": "https://github.com/jxlwqq/id-validator.git",
  1918. "reference": "5e294d2e9d27b8ba51ba1f386f839d37770fa10e"
  1919. },
  1920. "dist": {
  1921. "type": "zip",
  1922. "url": "https://api.github.com/repos/jxlwqq/id-validator/zipball/5e294d2e9d27b8ba51ba1f386f839d37770fa10e",
  1923. "reference": "5e294d2e9d27b8ba51ba1f386f839d37770fa10e",
  1924. "shasum": "",
  1925. "mirrors": [
  1926. {
  1927. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1928. "preferred": true
  1929. }
  1930. ]
  1931. },
  1932. "require": {
  1933. "php": ">=5.6.0"
  1934. },
  1935. "require-dev": {
  1936. "phpunit/phpunit": "^5.6"
  1937. },
  1938. "type": "library",
  1939. "autoload": {
  1940. "psr-4": {
  1941. "Jxlwqq\\IdValidator\\": "src/"
  1942. }
  1943. },
  1944. "notification-url": "https://packagist.org/downloads/",
  1945. "license": [
  1946. "MIT"
  1947. ],
  1948. "authors": [
  1949. {
  1950. "name": "jxlwqq",
  1951. "email": "jxlwqq@gmail.com",
  1952. "homepage": "https://jxlwqq.github.io"
  1953. }
  1954. ],
  1955. "description": "Chinese Mainland Personal ID Card Validation",
  1956. "time": "2020-03-09T11:15:18+00:00"
  1957. },
  1958. {
  1959. "name": "kylekatarnls/laravel-carbon-2",
  1960. "version": "1.0.0",
  1961. "source": {
  1962. "type": "git",
  1963. "url": "https://github.com/kylekatarnls/laravel-carbon-2.git",
  1964. "reference": "0b68e0454d8e17b31cc42038dda8b7faef8055b3"
  1965. },
  1966. "dist": {
  1967. "type": "zip",
  1968. "url": "https://api.github.com/repos/kylekatarnls/laravel-carbon-2/zipball/0b68e0454d8e17b31cc42038dda8b7faef8055b3",
  1969. "reference": "0b68e0454d8e17b31cc42038dda8b7faef8055b3",
  1970. "shasum": "",
  1971. "mirrors": [
  1972. {
  1973. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1974. "preferred": true
  1975. }
  1976. ]
  1977. },
  1978. "require": {
  1979. "nesbot/carbon": "^2.0.0-beta.2"
  1980. },
  1981. "type": "library",
  1982. "autoload": {
  1983. "files": [
  1984. "src/Carbon.php"
  1985. ]
  1986. },
  1987. "notification-url": "https://packagist.org/downloads/",
  1988. "license": [
  1989. "MIT"
  1990. ],
  1991. "authors": [
  1992. {
  1993. "name": "kylekatarnls",
  1994. "homepage": "https://github.com/kylekatarnls"
  1995. }
  1996. ],
  1997. "description": "Carbon 2 adapter for Laravel",
  1998. "homepage": "http://carbon.nesbot.com",
  1999. "keywords": [
  2000. "carbon",
  2001. "laravel"
  2002. ],
  2003. "time": "2018-08-17T09:41:47+00:00"
  2004. },
  2005. {
  2006. "name": "laravel/framework",
  2007. "version": "v5.5.50",
  2008. "source": {
  2009. "type": "git",
  2010. "url": "https://github.com/laravel/framework.git",
  2011. "reference": "c62385a23c639742b3b74a4a78640da25e6b782b"
  2012. },
  2013. "dist": {
  2014. "type": "zip",
  2015. "url": "https://api.github.com/repos/laravel/framework/zipball/c62385a23c639742b3b74a4a78640da25e6b782b",
  2016. "reference": "c62385a23c639742b3b74a4a78640da25e6b782b",
  2017. "shasum": "",
  2018. "mirrors": [
  2019. {
  2020. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2021. "preferred": true
  2022. }
  2023. ]
  2024. },
  2025. "require": {
  2026. "doctrine/inflector": "~1.1",
  2027. "erusev/parsedown": "~1.7",
  2028. "ext-mbstring": "*",
  2029. "ext-openssl": "*",
  2030. "league/flysystem": "^1.0.8",
  2031. "monolog/monolog": "~1.12",
  2032. "mtdowling/cron-expression": "~1.0",
  2033. "nesbot/carbon": "^1.26.0",
  2034. "php": ">=7.0",
  2035. "psr/container": "~1.0",
  2036. "psr/simple-cache": "^1.0",
  2037. "ramsey/uuid": "~3.0",
  2038. "swiftmailer/swiftmailer": "~6.0",
  2039. "symfony/console": "~3.3",
  2040. "symfony/debug": "~3.3",
  2041. "symfony/finder": "~3.3",
  2042. "symfony/http-foundation": "~3.3",
  2043. "symfony/http-kernel": "~3.3",
  2044. "symfony/process": "~3.3",
  2045. "symfony/routing": "~3.3",
  2046. "symfony/var-dumper": "~3.3",
  2047. "tijsverkoyen/css-to-inline-styles": "~2.2",
  2048. "vlucas/phpdotenv": "~2.2"
  2049. },
  2050. "replace": {
  2051. "illuminate/auth": "self.version",
  2052. "illuminate/broadcasting": "self.version",
  2053. "illuminate/bus": "self.version",
  2054. "illuminate/cache": "self.version",
  2055. "illuminate/config": "self.version",
  2056. "illuminate/console": "self.version",
  2057. "illuminate/container": "self.version",
  2058. "illuminate/contracts": "self.version",
  2059. "illuminate/cookie": "self.version",
  2060. "illuminate/database": "self.version",
  2061. "illuminate/encryption": "self.version",
  2062. "illuminate/events": "self.version",
  2063. "illuminate/filesystem": "self.version",
  2064. "illuminate/hashing": "self.version",
  2065. "illuminate/http": "self.version",
  2066. "illuminate/log": "self.version",
  2067. "illuminate/mail": "self.version",
  2068. "illuminate/notifications": "self.version",
  2069. "illuminate/pagination": "self.version",
  2070. "illuminate/pipeline": "self.version",
  2071. "illuminate/queue": "self.version",
  2072. "illuminate/redis": "self.version",
  2073. "illuminate/routing": "self.version",
  2074. "illuminate/session": "self.version",
  2075. "illuminate/support": "self.version",
  2076. "illuminate/translation": "self.version",
  2077. "illuminate/validation": "self.version",
  2078. "illuminate/view": "self.version",
  2079. "tightenco/collect": "<5.5.33"
  2080. },
  2081. "require-dev": {
  2082. "aws/aws-sdk-php": "~3.0",
  2083. "doctrine/dbal": "~2.5",
  2084. "filp/whoops": "^2.1.4",
  2085. "mockery/mockery": "~1.0",
  2086. "orchestra/testbench-core": "3.5.*",
  2087. "pda/pheanstalk": "~3.0",
  2088. "phpunit/phpunit": "~6.0",
  2089. "predis/predis": "^1.1.1",
  2090. "symfony/css-selector": "~3.3",
  2091. "symfony/dom-crawler": "~3.3"
  2092. },
  2093. "suggest": {
  2094. "aws/aws-sdk-php": "Required to use the SQS queue driver and SES mail driver (~3.0).",
  2095. "doctrine/dbal": "Required to rename columns and drop SQLite columns (~2.5).",
  2096. "ext-pcntl": "Required to use all features of the queue worker.",
  2097. "ext-posix": "Required to use all features of the queue worker.",
  2098. "fzaninotto/faker": "Required to use the eloquent factory builder (~1.4).",
  2099. "guzzlehttp/guzzle": "Required to use the Mailgun and Mandrill mail drivers and the ping methods on schedules (~6.0).",
  2100. "laravel/tinker": "Required to use the tinker console command (~1.0).",
  2101. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (~1.0).",
  2102. "league/flysystem-cached-adapter": "Required to use Flysystem caching (~1.0).",
  2103. "league/flysystem-rackspace": "Required to use the Flysystem Rackspace driver (~1.0).",
  2104. "nexmo/client": "Required to use the Nexmo transport (~1.0).",
  2105. "pda/pheanstalk": "Required to use the beanstalk queue driver (~3.0).",
  2106. "predis/predis": "Required to use the redis cache and queue drivers (~1.0).",
  2107. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (~3.0).",
  2108. "symfony/css-selector": "Required to use some of the crawler integration testing tools (~3.3).",
  2109. "symfony/dom-crawler": "Required to use most of the crawler integration testing tools (~3.3).",
  2110. "symfony/psr-http-message-bridge": "Required to psr7 bridging features (~1.0)."
  2111. },
  2112. "type": "library",
  2113. "extra": {
  2114. "branch-alias": {
  2115. "dev-master": "5.5-dev"
  2116. }
  2117. },
  2118. "autoload": {
  2119. "files": [
  2120. "src/Illuminate/Foundation/helpers.php",
  2121. "src/Illuminate/Support/helpers.php"
  2122. ],
  2123. "psr-4": {
  2124. "Illuminate\\": "src/Illuminate/"
  2125. }
  2126. },
  2127. "notification-url": "https://packagist.org/downloads/",
  2128. "license": [
  2129. "MIT"
  2130. ],
  2131. "authors": [
  2132. {
  2133. "name": "Taylor Otwell",
  2134. "email": "taylor@laravel.com"
  2135. }
  2136. ],
  2137. "description": "The Laravel Framework.",
  2138. "homepage": "https://laravel.com",
  2139. "keywords": [
  2140. "framework",
  2141. "laravel"
  2142. ],
  2143. "time": "2020-08-18T13:47:57+00:00"
  2144. },
  2145. {
  2146. "name": "laravel/tinker",
  2147. "version": "v1.0.10",
  2148. "source": {
  2149. "type": "git",
  2150. "url": "https://github.com/laravel/tinker.git",
  2151. "reference": "ad571aacbac1539c30d480908f9d0c9614eaf1a7"
  2152. },
  2153. "dist": {
  2154. "type": "zip",
  2155. "url": "https://api.github.com/repos/laravel/tinker/zipball/ad571aacbac1539c30d480908f9d0c9614eaf1a7",
  2156. "reference": "ad571aacbac1539c30d480908f9d0c9614eaf1a7",
  2157. "shasum": "",
  2158. "mirrors": [
  2159. {
  2160. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2161. "preferred": true
  2162. }
  2163. ]
  2164. },
  2165. "require": {
  2166. "illuminate/console": "~5.1|^6.0",
  2167. "illuminate/contracts": "~5.1|^6.0",
  2168. "illuminate/support": "~5.1|^6.0",
  2169. "php": ">=5.5.9",
  2170. "psy/psysh": "0.7.*|0.8.*|0.9.*",
  2171. "symfony/var-dumper": "~3.0|~4.0"
  2172. },
  2173. "require-dev": {
  2174. "phpunit/phpunit": "~4.0|~5.0"
  2175. },
  2176. "suggest": {
  2177. "illuminate/database": "The Illuminate Database package (~5.1)."
  2178. },
  2179. "type": "library",
  2180. "extra": {
  2181. "branch-alias": {
  2182. "dev-master": "1.0-dev"
  2183. },
  2184. "laravel": {
  2185. "providers": [
  2186. "Laravel\\Tinker\\TinkerServiceProvider"
  2187. ]
  2188. }
  2189. },
  2190. "autoload": {
  2191. "psr-4": {
  2192. "Laravel\\Tinker\\": "src/"
  2193. }
  2194. },
  2195. "notification-url": "https://packagist.org/downloads/",
  2196. "license": [
  2197. "MIT"
  2198. ],
  2199. "authors": [
  2200. {
  2201. "name": "Taylor Otwell",
  2202. "email": "taylor@laravel.com"
  2203. }
  2204. ],
  2205. "description": "Powerful REPL for the Laravel framework.",
  2206. "keywords": [
  2207. "REPL",
  2208. "Tinker",
  2209. "laravel",
  2210. "psysh"
  2211. ],
  2212. "time": "2019-08-07T15:10:45+00:00"
  2213. },
  2214. {
  2215. "name": "lcobucci/jwt",
  2216. "version": "3.3.3",
  2217. "source": {
  2218. "type": "git",
  2219. "url": "https://github.com/lcobucci/jwt.git",
  2220. "reference": "c1123697f6a2ec29162b82f170dd4a491f524773"
  2221. },
  2222. "dist": {
  2223. "type": "zip",
  2224. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/c1123697f6a2ec29162b82f170dd4a491f524773",
  2225. "reference": "c1123697f6a2ec29162b82f170dd4a491f524773",
  2226. "shasum": "",
  2227. "mirrors": [
  2228. {
  2229. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2230. "preferred": true
  2231. }
  2232. ]
  2233. },
  2234. "require": {
  2235. "ext-mbstring": "*",
  2236. "ext-openssl": "*",
  2237. "php": "^5.6 || ^7.0"
  2238. },
  2239. "require-dev": {
  2240. "mikey179/vfsstream": "~1.5",
  2241. "phpmd/phpmd": "~2.2",
  2242. "phpunit/php-invoker": "~1.1",
  2243. "phpunit/phpunit": "^5.7 || ^7.3",
  2244. "squizlabs/php_codesniffer": "~2.3"
  2245. },
  2246. "type": "library",
  2247. "extra": {
  2248. "branch-alias": {
  2249. "dev-master": "3.1-dev"
  2250. }
  2251. },
  2252. "autoload": {
  2253. "psr-4": {
  2254. "Lcobucci\\JWT\\": "src"
  2255. }
  2256. },
  2257. "notification-url": "https://packagist.org/downloads/",
  2258. "license": [
  2259. "BSD-3-Clause"
  2260. ],
  2261. "authors": [
  2262. {
  2263. "name": "Luís Otávio Cobucci Oblonczyk",
  2264. "email": "lcobucci@gmail.com",
  2265. "role": "Developer"
  2266. }
  2267. ],
  2268. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  2269. "keywords": [
  2270. "JWS",
  2271. "jwt"
  2272. ],
  2273. "time": "2020-08-20T13:22:28+00:00"
  2274. },
  2275. {
  2276. "name": "league/flysystem",
  2277. "version": "1.1.3",
  2278. "source": {
  2279. "type": "git",
  2280. "url": "https://github.com/thephpleague/flysystem.git",
  2281. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a"
  2282. },
  2283. "dist": {
  2284. "type": "zip",
  2285. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/9be3b16c877d477357c015cec057548cf9b2a14a",
  2286. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a",
  2287. "shasum": "",
  2288. "mirrors": [
  2289. {
  2290. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2291. "preferred": true
  2292. }
  2293. ]
  2294. },
  2295. "require": {
  2296. "ext-fileinfo": "*",
  2297. "league/mime-type-detection": "^1.3",
  2298. "php": "^7.2.5 || ^8.0"
  2299. },
  2300. "conflict": {
  2301. "league/flysystem-sftp": "<1.0.6"
  2302. },
  2303. "require-dev": {
  2304. "phpspec/prophecy": "^1.11.1",
  2305. "phpunit/phpunit": "^8.5.8"
  2306. },
  2307. "suggest": {
  2308. "ext-fileinfo": "Required for MimeType",
  2309. "ext-ftp": "Allows you to use FTP server storage",
  2310. "ext-openssl": "Allows you to use FTPS server storage",
  2311. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  2312. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  2313. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  2314. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2315. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  2316. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2317. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  2318. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2319. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2320. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2321. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2322. },
  2323. "type": "library",
  2324. "extra": {
  2325. "branch-alias": {
  2326. "dev-master": "1.1-dev"
  2327. }
  2328. },
  2329. "autoload": {
  2330. "psr-4": {
  2331. "League\\Flysystem\\": "src/"
  2332. }
  2333. },
  2334. "notification-url": "https://packagist.org/downloads/",
  2335. "license": [
  2336. "MIT"
  2337. ],
  2338. "authors": [
  2339. {
  2340. "name": "Frank de Jonge",
  2341. "email": "info@frenky.net"
  2342. }
  2343. ],
  2344. "description": "Filesystem abstraction: Many filesystems, one API.",
  2345. "keywords": [
  2346. "Cloud Files",
  2347. "WebDAV",
  2348. "abstraction",
  2349. "aws",
  2350. "cloud",
  2351. "copy.com",
  2352. "dropbox",
  2353. "file systems",
  2354. "files",
  2355. "filesystem",
  2356. "filesystems",
  2357. "ftp",
  2358. "rackspace",
  2359. "remote",
  2360. "s3",
  2361. "sftp",
  2362. "storage"
  2363. ],
  2364. "time": "2020-08-23T07:39:11+00:00"
  2365. },
  2366. {
  2367. "name": "league/fractal",
  2368. "version": "0.17.0",
  2369. "source": {
  2370. "type": "git",
  2371. "url": "https://github.com/thephpleague/fractal.git",
  2372. "reference": "a0b350824f22fc2fdde2500ce9d6851a3f275b0e"
  2373. },
  2374. "dist": {
  2375. "type": "zip",
  2376. "url": "https://api.github.com/repos/thephpleague/fractal/zipball/a0b350824f22fc2fdde2500ce9d6851a3f275b0e",
  2377. "reference": "a0b350824f22fc2fdde2500ce9d6851a3f275b0e",
  2378. "shasum": "",
  2379. "mirrors": [
  2380. {
  2381. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2382. "preferred": true
  2383. }
  2384. ]
  2385. },
  2386. "require": {
  2387. "php": ">=5.4"
  2388. },
  2389. "require-dev": {
  2390. "doctrine/orm": "^2.5",
  2391. "illuminate/contracts": "~5.0",
  2392. "mockery/mockery": "~0.9",
  2393. "pagerfanta/pagerfanta": "~1.0.0",
  2394. "phpunit/phpunit": "~4.0",
  2395. "squizlabs/php_codesniffer": "~1.5",
  2396. "zendframework/zend-paginator": "~2.3"
  2397. },
  2398. "suggest": {
  2399. "illuminate/pagination": "The Illuminate Pagination component.",
  2400. "pagerfanta/pagerfanta": "Pagerfanta Paginator",
  2401. "zendframework/zend-paginator": "Zend Framework Paginator"
  2402. },
  2403. "type": "library",
  2404. "extra": {
  2405. "branch-alias": {
  2406. "dev-master": "0.13-dev"
  2407. }
  2408. },
  2409. "autoload": {
  2410. "psr-4": {
  2411. "League\\Fractal\\": "src"
  2412. }
  2413. },
  2414. "notification-url": "https://packagist.org/downloads/",
  2415. "license": [
  2416. "MIT"
  2417. ],
  2418. "authors": [
  2419. {
  2420. "name": "Phil Sturgeon",
  2421. "email": "me@philsturgeon.uk",
  2422. "homepage": "http://philsturgeon.uk/",
  2423. "role": "Developer"
  2424. }
  2425. ],
  2426. "description": "Handle the output of complex data structures ready for API output.",
  2427. "homepage": "http://fractal.thephpleague.com/",
  2428. "keywords": [
  2429. "api",
  2430. "json",
  2431. "league",
  2432. "rest"
  2433. ],
  2434. "time": "2017-06-12T11:04:56+00:00"
  2435. },
  2436. {
  2437. "name": "league/mime-type-detection",
  2438. "version": "1.5.0",
  2439. "source": {
  2440. "type": "git",
  2441. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2442. "reference": "ea2fbfc988bade315acd5967e6d02274086d0f28"
  2443. },
  2444. "dist": {
  2445. "type": "zip",
  2446. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ea2fbfc988bade315acd5967e6d02274086d0f28",
  2447. "reference": "ea2fbfc988bade315acd5967e6d02274086d0f28",
  2448. "shasum": "",
  2449. "mirrors": [
  2450. {
  2451. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2452. "preferred": true
  2453. }
  2454. ]
  2455. },
  2456. "require": {
  2457. "ext-fileinfo": "*",
  2458. "php": "^7.2 || ^8.0"
  2459. },
  2460. "require-dev": {
  2461. "phpstan/phpstan": "^0.12.36",
  2462. "phpunit/phpunit": "^8.5.8"
  2463. },
  2464. "type": "library",
  2465. "autoload": {
  2466. "psr-4": {
  2467. "League\\MimeTypeDetection\\": "src"
  2468. }
  2469. },
  2470. "notification-url": "https://packagist.org/downloads/",
  2471. "license": [
  2472. "MIT"
  2473. ],
  2474. "authors": [
  2475. {
  2476. "name": "Frank de Jonge",
  2477. "email": "info@frankdejonge.nl"
  2478. }
  2479. ],
  2480. "description": "Mime-type detection for Flysystem",
  2481. "time": "2020-09-21T18:10:53+00:00"
  2482. },
  2483. {
  2484. "name": "maatwebsite/excel",
  2485. "version": "3.1.22",
  2486. "source": {
  2487. "type": "git",
  2488. "url": "https://github.com/Maatwebsite/Laravel-Excel.git",
  2489. "reference": "ba7152670257ba9f47bb6ff7cee025f8fc9da608"
  2490. },
  2491. "dist": {
  2492. "type": "zip",
  2493. "url": "https://api.github.com/repos/Maatwebsite/Laravel-Excel/zipball/ba7152670257ba9f47bb6ff7cee025f8fc9da608",
  2494. "reference": "ba7152670257ba9f47bb6ff7cee025f8fc9da608",
  2495. "shasum": "",
  2496. "mirrors": [
  2497. {
  2498. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2499. "preferred": true
  2500. }
  2501. ]
  2502. },
  2503. "require": {
  2504. "ext-json": "*",
  2505. "illuminate/support": "5.5.*|5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0",
  2506. "php": "^7.0",
  2507. "phpoffice/phpspreadsheet": "^1.14"
  2508. },
  2509. "require-dev": {
  2510. "orchestra/testbench": "^6.0",
  2511. "predis/predis": "^1.1"
  2512. },
  2513. "type": "library",
  2514. "extra": {
  2515. "laravel": {
  2516. "providers": [
  2517. "Maatwebsite\\Excel\\ExcelServiceProvider"
  2518. ],
  2519. "aliases": {
  2520. "Excel": "Maatwebsite\\Excel\\Facades\\Excel"
  2521. }
  2522. }
  2523. },
  2524. "autoload": {
  2525. "psr-4": {
  2526. "Maatwebsite\\Excel\\": "src/"
  2527. }
  2528. },
  2529. "notification-url": "https://packagist.org/downloads/",
  2530. "license": [
  2531. "MIT"
  2532. ],
  2533. "authors": [
  2534. {
  2535. "name": "Patrick Brouwers",
  2536. "email": "patrick@maatwebsite.nl"
  2537. }
  2538. ],
  2539. "description": "Supercharged Excel exports and imports in Laravel",
  2540. "keywords": [
  2541. "PHPExcel",
  2542. "batch",
  2543. "csv",
  2544. "excel",
  2545. "export",
  2546. "import",
  2547. "laravel",
  2548. "php",
  2549. "phpspreadsheet"
  2550. ],
  2551. "time": "2020-09-08T15:29:50+00:00"
  2552. },
  2553. {
  2554. "name": "maennchen/zipstream-php",
  2555. "version": "2.1.0",
  2556. "source": {
  2557. "type": "git",
  2558. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  2559. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58"
  2560. },
  2561. "dist": {
  2562. "type": "zip",
  2563. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2564. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2565. "shasum": "",
  2566. "mirrors": [
  2567. {
  2568. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2569. "preferred": true
  2570. }
  2571. ]
  2572. },
  2573. "require": {
  2574. "myclabs/php-enum": "^1.5",
  2575. "php": ">= 7.1",
  2576. "psr/http-message": "^1.0",
  2577. "symfony/polyfill-mbstring": "^1.0"
  2578. },
  2579. "require-dev": {
  2580. "ext-zip": "*",
  2581. "guzzlehttp/guzzle": ">= 6.3",
  2582. "mikey179/vfsstream": "^1.6",
  2583. "phpunit/phpunit": ">= 7.5"
  2584. },
  2585. "type": "library",
  2586. "autoload": {
  2587. "psr-4": {
  2588. "ZipStream\\": "src/"
  2589. }
  2590. },
  2591. "notification-url": "https://packagist.org/downloads/",
  2592. "license": [
  2593. "MIT"
  2594. ],
  2595. "authors": [
  2596. {
  2597. "name": "Paul Duncan",
  2598. "email": "pabs@pablotron.org"
  2599. },
  2600. {
  2601. "name": "Jonatan Männchen",
  2602. "email": "jonatan@maennchen.ch"
  2603. },
  2604. {
  2605. "name": "Jesse Donat",
  2606. "email": "donatj@gmail.com"
  2607. },
  2608. {
  2609. "name": "András Kolesár",
  2610. "email": "kolesar@kolesar.hu"
  2611. }
  2612. ],
  2613. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  2614. "keywords": [
  2615. "stream",
  2616. "zip"
  2617. ],
  2618. "time": "2020-05-30T13:11:16+00:00"
  2619. },
  2620. {
  2621. "name": "markbaker/complex",
  2622. "version": "1.5.0",
  2623. "source": {
  2624. "type": "git",
  2625. "url": "https://github.com/MarkBaker/PHPComplex.git",
  2626. "reference": "c3131244e29c08d44fefb49e0dd35021e9e39dd2"
  2627. },
  2628. "dist": {
  2629. "type": "zip",
  2630. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/c3131244e29c08d44fefb49e0dd35021e9e39dd2",
  2631. "reference": "c3131244e29c08d44fefb49e0dd35021e9e39dd2",
  2632. "shasum": "",
  2633. "mirrors": [
  2634. {
  2635. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2636. "preferred": true
  2637. }
  2638. ]
  2639. },
  2640. "require": {
  2641. "php": "^5.6.0|^7.0"
  2642. },
  2643. "require-dev": {
  2644. "dealerdirect/phpcodesniffer-composer-installer": "^0.5.0",
  2645. "phpcompatibility/php-compatibility": "^9.0",
  2646. "phpdocumentor/phpdocumentor": "2.*",
  2647. "phploc/phploc": "^4.0|^5.0|^6.0|^7.0",
  2648. "phpmd/phpmd": "2.*",
  2649. "phpunit/phpunit": "^4.8.35|^5.0|^6.0|^7.0",
  2650. "sebastian/phpcpd": "2.*",
  2651. "squizlabs/php_codesniffer": "^3.4.0"
  2652. },
  2653. "type": "library",
  2654. "autoload": {
  2655. "psr-4": {
  2656. "Complex\\": "classes/src/"
  2657. },
  2658. "files": [
  2659. "classes/src/functions/abs.php",
  2660. "classes/src/functions/acos.php",
  2661. "classes/src/functions/acosh.php",
  2662. "classes/src/functions/acot.php",
  2663. "classes/src/functions/acoth.php",
  2664. "classes/src/functions/acsc.php",
  2665. "classes/src/functions/acsch.php",
  2666. "classes/src/functions/argument.php",
  2667. "classes/src/functions/asec.php",
  2668. "classes/src/functions/asech.php",
  2669. "classes/src/functions/asin.php",
  2670. "classes/src/functions/asinh.php",
  2671. "classes/src/functions/atan.php",
  2672. "classes/src/functions/atanh.php",
  2673. "classes/src/functions/conjugate.php",
  2674. "classes/src/functions/cos.php",
  2675. "classes/src/functions/cosh.php",
  2676. "classes/src/functions/cot.php",
  2677. "classes/src/functions/coth.php",
  2678. "classes/src/functions/csc.php",
  2679. "classes/src/functions/csch.php",
  2680. "classes/src/functions/exp.php",
  2681. "classes/src/functions/inverse.php",
  2682. "classes/src/functions/ln.php",
  2683. "classes/src/functions/log2.php",
  2684. "classes/src/functions/log10.php",
  2685. "classes/src/functions/negative.php",
  2686. "classes/src/functions/pow.php",
  2687. "classes/src/functions/rho.php",
  2688. "classes/src/functions/sec.php",
  2689. "classes/src/functions/sech.php",
  2690. "classes/src/functions/sin.php",
  2691. "classes/src/functions/sinh.php",
  2692. "classes/src/functions/sqrt.php",
  2693. "classes/src/functions/tan.php",
  2694. "classes/src/functions/tanh.php",
  2695. "classes/src/functions/theta.php",
  2696. "classes/src/operations/add.php",
  2697. "classes/src/operations/subtract.php",
  2698. "classes/src/operations/multiply.php",
  2699. "classes/src/operations/divideby.php",
  2700. "classes/src/operations/divideinto.php"
  2701. ]
  2702. },
  2703. "notification-url": "https://packagist.org/downloads/",
  2704. "license": [
  2705. "MIT"
  2706. ],
  2707. "authors": [
  2708. {
  2709. "name": "Mark Baker",
  2710. "email": "mark@lange.demon.co.uk"
  2711. }
  2712. ],
  2713. "description": "PHP Class for working with complex numbers",
  2714. "homepage": "https://github.com/MarkBaker/PHPComplex",
  2715. "keywords": [
  2716. "complex",
  2717. "mathematics"
  2718. ],
  2719. "time": "2020-08-26T19:47:57+00:00"
  2720. },
  2721. {
  2722. "name": "markbaker/matrix",
  2723. "version": "1.2.1",
  2724. "source": {
  2725. "type": "git",
  2726. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  2727. "reference": "182d44c3b2e3b063468f7481ae3ef71c69dc1409"
  2728. },
  2729. "dist": {
  2730. "type": "zip",
  2731. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/182d44c3b2e3b063468f7481ae3ef71c69dc1409",
  2732. "reference": "182d44c3b2e3b063468f7481ae3ef71c69dc1409",
  2733. "shasum": "",
  2734. "mirrors": [
  2735. {
  2736. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2737. "preferred": true
  2738. }
  2739. ]
  2740. },
  2741. "require": {
  2742. "php": "^5.6.0|^7.0.0"
  2743. },
  2744. "require-dev": {
  2745. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  2746. "phpcompatibility/php-compatibility": "dev-master",
  2747. "phploc/phploc": "^4",
  2748. "phpmd/phpmd": "dev-master",
  2749. "phpunit/phpunit": "^5.7|^6.0|7.0",
  2750. "sebastian/phpcpd": "^3.0",
  2751. "squizlabs/php_codesniffer": "^3.0@dev"
  2752. },
  2753. "type": "library",
  2754. "autoload": {
  2755. "psr-4": {
  2756. "Matrix\\": "classes/src/"
  2757. },
  2758. "files": [
  2759. "classes/src/functions/adjoint.php",
  2760. "classes/src/functions/antidiagonal.php",
  2761. "classes/src/functions/cofactors.php",
  2762. "classes/src/functions/determinant.php",
  2763. "classes/src/functions/diagonal.php",
  2764. "classes/src/functions/identity.php",
  2765. "classes/src/functions/inverse.php",
  2766. "classes/src/functions/minors.php",
  2767. "classes/src/functions/trace.php",
  2768. "classes/src/functions/transpose.php",
  2769. "classes/src/operations/add.php",
  2770. "classes/src/operations/directsum.php",
  2771. "classes/src/operations/subtract.php",
  2772. "classes/src/operations/multiply.php",
  2773. "classes/src/operations/divideby.php",
  2774. "classes/src/operations/divideinto.php"
  2775. ]
  2776. },
  2777. "notification-url": "https://packagist.org/downloads/",
  2778. "license": [
  2779. "MIT"
  2780. ],
  2781. "authors": [
  2782. {
  2783. "name": "Mark Baker",
  2784. "email": "mark@lange.demon.co.uk"
  2785. }
  2786. ],
  2787. "description": "PHP Class for working with matrices",
  2788. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  2789. "keywords": [
  2790. "mathematics",
  2791. "matrix",
  2792. "vector"
  2793. ],
  2794. "time": "2020-08-28T19:41:55+00:00"
  2795. },
  2796. {
  2797. "name": "monolog/monolog",
  2798. "version": "1.25.5",
  2799. "source": {
  2800. "type": "git",
  2801. "url": "https://github.com/Seldaek/monolog.git",
  2802. "reference": "1817faadd1846cd08be9a49e905dc68823bc38c0"
  2803. },
  2804. "dist": {
  2805. "type": "zip",
  2806. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/1817faadd1846cd08be9a49e905dc68823bc38c0",
  2807. "reference": "1817faadd1846cd08be9a49e905dc68823bc38c0",
  2808. "shasum": "",
  2809. "mirrors": [
  2810. {
  2811. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2812. "preferred": true
  2813. }
  2814. ]
  2815. },
  2816. "require": {
  2817. "php": ">=5.3.0",
  2818. "psr/log": "~1.0"
  2819. },
  2820. "provide": {
  2821. "psr/log-implementation": "1.0.0"
  2822. },
  2823. "require-dev": {
  2824. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2825. "doctrine/couchdb": "~1.0@dev",
  2826. "graylog2/gelf-php": "~1.0",
  2827. "php-amqplib/php-amqplib": "~2.4",
  2828. "php-console/php-console": "^3.1.3",
  2829. "php-parallel-lint/php-parallel-lint": "^1.0",
  2830. "phpunit/phpunit": "~4.5",
  2831. "ruflin/elastica": ">=0.90 <3.0",
  2832. "sentry/sentry": "^0.13",
  2833. "swiftmailer/swiftmailer": "^5.3|^6.0"
  2834. },
  2835. "suggest": {
  2836. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2837. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2838. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2839. "ext-mongo": "Allow sending log messages to a MongoDB server",
  2840. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2841. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  2842. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2843. "php-console/php-console": "Allow sending log messages to Google Chrome",
  2844. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2845. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  2846. "sentry/sentry": "Allow sending log messages to a Sentry server"
  2847. },
  2848. "type": "library",
  2849. "extra": {
  2850. "branch-alias": {
  2851. "dev-master": "2.0.x-dev"
  2852. }
  2853. },
  2854. "autoload": {
  2855. "psr-4": {
  2856. "Monolog\\": "src/Monolog"
  2857. }
  2858. },
  2859. "notification-url": "https://packagist.org/downloads/",
  2860. "license": [
  2861. "MIT"
  2862. ],
  2863. "authors": [
  2864. {
  2865. "name": "Jordi Boggiano",
  2866. "email": "j.boggiano@seld.be",
  2867. "homepage": "http://seld.be"
  2868. }
  2869. ],
  2870. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2871. "homepage": "http://github.com/Seldaek/monolog",
  2872. "keywords": [
  2873. "log",
  2874. "logging",
  2875. "psr-3"
  2876. ],
  2877. "time": "2020-07-23T08:35:51+00:00"
  2878. },
  2879. {
  2880. "name": "mtdowling/cron-expression",
  2881. "version": "v1.2.3",
  2882. "source": {
  2883. "type": "git",
  2884. "url": "https://github.com/mtdowling/cron-expression.git",
  2885. "reference": "9be552eebcc1ceec9776378f7dcc085246cacca6"
  2886. },
  2887. "dist": {
  2888. "type": "zip",
  2889. "url": "https://api.github.com/repos/mtdowling/cron-expression/zipball/9be552eebcc1ceec9776378f7dcc085246cacca6",
  2890. "reference": "9be552eebcc1ceec9776378f7dcc085246cacca6",
  2891. "shasum": "",
  2892. "mirrors": [
  2893. {
  2894. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2895. "preferred": true
  2896. }
  2897. ]
  2898. },
  2899. "require": {
  2900. "php": ">=5.3.2"
  2901. },
  2902. "require-dev": {
  2903. "phpunit/phpunit": "~4.0|~5.0"
  2904. },
  2905. "type": "library",
  2906. "autoload": {
  2907. "psr-4": {
  2908. "Cron\\": "src/Cron/"
  2909. }
  2910. },
  2911. "notification-url": "https://packagist.org/downloads/",
  2912. "license": [
  2913. "MIT"
  2914. ],
  2915. "authors": [
  2916. {
  2917. "name": "Michael Dowling",
  2918. "email": "mtdowling@gmail.com",
  2919. "homepage": "https://github.com/mtdowling"
  2920. }
  2921. ],
  2922. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  2923. "keywords": [
  2924. "cron",
  2925. "schedule"
  2926. ],
  2927. "abandoned": "dragonmantank/cron-expression",
  2928. "time": "2019-12-28T04:23:06+00:00"
  2929. },
  2930. {
  2931. "name": "myclabs/php-enum",
  2932. "version": "1.7.6",
  2933. "source": {
  2934. "type": "git",
  2935. "url": "https://github.com/myclabs/php-enum.git",
  2936. "reference": "5f36467c7a87e20fbdc51e524fd8f9d1de80187c"
  2937. },
  2938. "dist": {
  2939. "type": "zip",
  2940. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/5f36467c7a87e20fbdc51e524fd8f9d1de80187c",
  2941. "reference": "5f36467c7a87e20fbdc51e524fd8f9d1de80187c",
  2942. "shasum": "",
  2943. "mirrors": [
  2944. {
  2945. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2946. "preferred": true
  2947. }
  2948. ]
  2949. },
  2950. "require": {
  2951. "ext-json": "*",
  2952. "php": ">=7.1"
  2953. },
  2954. "require-dev": {
  2955. "phpunit/phpunit": "^7",
  2956. "squizlabs/php_codesniffer": "1.*",
  2957. "vimeo/psalm": "^3.8"
  2958. },
  2959. "type": "library",
  2960. "autoload": {
  2961. "psr-4": {
  2962. "MyCLabs\\Enum\\": "src/"
  2963. }
  2964. },
  2965. "notification-url": "https://packagist.org/downloads/",
  2966. "license": [
  2967. "MIT"
  2968. ],
  2969. "authors": [
  2970. {
  2971. "name": "PHP Enum contributors",
  2972. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  2973. }
  2974. ],
  2975. "description": "PHP Enum implementation",
  2976. "homepage": "http://github.com/myclabs/php-enum",
  2977. "keywords": [
  2978. "enum"
  2979. ],
  2980. "time": "2020-02-14T08:15:52+00:00"
  2981. },
  2982. {
  2983. "name": "namshi/jose",
  2984. "version": "7.2.3",
  2985. "source": {
  2986. "type": "git",
  2987. "url": "https://github.com/namshi/jose.git",
  2988. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff"
  2989. },
  2990. "dist": {
  2991. "type": "zip",
  2992. "url": "https://api.github.com/repos/namshi/jose/zipball/89a24d7eb3040e285dd5925fcad992378b82bcff",
  2993. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff",
  2994. "shasum": "",
  2995. "mirrors": [
  2996. {
  2997. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2998. "preferred": true
  2999. }
  3000. ]
  3001. },
  3002. "require": {
  3003. "ext-date": "*",
  3004. "ext-hash": "*",
  3005. "ext-json": "*",
  3006. "ext-pcre": "*",
  3007. "ext-spl": "*",
  3008. "php": ">=5.5",
  3009. "symfony/polyfill-php56": "^1.0"
  3010. },
  3011. "require-dev": {
  3012. "phpseclib/phpseclib": "^2.0",
  3013. "phpunit/phpunit": "^4.5|^5.0",
  3014. "satooshi/php-coveralls": "^1.0"
  3015. },
  3016. "suggest": {
  3017. "ext-openssl": "Allows to use OpenSSL as crypto engine.",
  3018. "phpseclib/phpseclib": "Allows to use Phpseclib as crypto engine, use version ^2.0."
  3019. },
  3020. "type": "library",
  3021. "autoload": {
  3022. "psr-4": {
  3023. "Namshi\\JOSE\\": "src/Namshi/JOSE/"
  3024. }
  3025. },
  3026. "notification-url": "https://packagist.org/downloads/",
  3027. "license": [
  3028. "MIT"
  3029. ],
  3030. "authors": [
  3031. {
  3032. "name": "Alessandro Nadalin",
  3033. "email": "alessandro.nadalin@gmail.com"
  3034. },
  3035. {
  3036. "name": "Alessandro Cinelli (cirpo)",
  3037. "email": "alessandro.cinelli@gmail.com"
  3038. }
  3039. ],
  3040. "description": "JSON Object Signing and Encryption library for PHP.",
  3041. "keywords": [
  3042. "JSON Web Signature",
  3043. "JSON Web Token",
  3044. "JWS",
  3045. "json",
  3046. "jwt",
  3047. "token"
  3048. ],
  3049. "time": "2016-12-05T07:27:31+00:00"
  3050. },
  3051. {
  3052. "name": "nesbot/carbon",
  3053. "version": "2.16.3",
  3054. "source": {
  3055. "type": "git",
  3056. "url": "https://github.com/briannesbitt/Carbon.git",
  3057. "reference": "373d9f0d58651af366435148c39beb702c2b7ef4"
  3058. },
  3059. "dist": {
  3060. "type": "zip",
  3061. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/373d9f0d58651af366435148c39beb702c2b7ef4",
  3062. "reference": "373d9f0d58651af366435148c39beb702c2b7ef4",
  3063. "shasum": "",
  3064. "mirrors": [
  3065. {
  3066. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3067. "preferred": true
  3068. }
  3069. ]
  3070. },
  3071. "require": {
  3072. "ext-json": "*",
  3073. "php": "^7.1.8 || ^8.0",
  3074. "symfony/translation": "^3.4 || ^4.0"
  3075. },
  3076. "require-dev": {
  3077. "friendsofphp/php-cs-fixer": "^2.14 || ^3.0",
  3078. "kylekatarnls/multi-tester": "^0.1",
  3079. "phpmd/phpmd": "^2.6",
  3080. "phpstan/phpstan": "^0.10.8",
  3081. "phpunit/phpunit": "^7.5 || ^8.0",
  3082. "squizlabs/php_codesniffer": "^3.4"
  3083. },
  3084. "type": "library",
  3085. "extra": {
  3086. "laravel": {
  3087. "providers": [
  3088. "Carbon\\Laravel\\ServiceProvider"
  3089. ]
  3090. }
  3091. },
  3092. "autoload": {
  3093. "psr-4": {
  3094. "Carbon\\": "src/Carbon/"
  3095. }
  3096. },
  3097. "notification-url": "https://packagist.org/downloads/",
  3098. "license": [
  3099. "MIT"
  3100. ],
  3101. "authors": [
  3102. {
  3103. "name": "Brian Nesbitt",
  3104. "email": "brian@nesbot.com",
  3105. "homepage": "http://nesbot.com"
  3106. }
  3107. ],
  3108. "description": "A simple API extension for DateTime.",
  3109. "homepage": "http://carbon.nesbot.com",
  3110. "keywords": [
  3111. "date",
  3112. "datetime",
  3113. "time"
  3114. ],
  3115. "time": "2019-04-06T17:09:23+00:00"
  3116. },
  3117. {
  3118. "name": "nikic/php-parser",
  3119. "version": "v4.10.2",
  3120. "source": {
  3121. "type": "git",
  3122. "url": "https://github.com/nikic/PHP-Parser.git",
  3123. "reference": "658f1be311a230e0907f5dfe0213742aff0596de"
  3124. },
  3125. "dist": {
  3126. "type": "zip",
  3127. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/658f1be311a230e0907f5dfe0213742aff0596de",
  3128. "reference": "658f1be311a230e0907f5dfe0213742aff0596de",
  3129. "shasum": "",
  3130. "mirrors": [
  3131. {
  3132. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3133. "preferred": true
  3134. }
  3135. ]
  3136. },
  3137. "require": {
  3138. "ext-tokenizer": "*",
  3139. "php": ">=7.0"
  3140. },
  3141. "require-dev": {
  3142. "ircmaxell/php-yacc": "^0.0.7",
  3143. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  3144. },
  3145. "bin": [
  3146. "bin/php-parse"
  3147. ],
  3148. "type": "library",
  3149. "extra": {
  3150. "branch-alias": {
  3151. "dev-master": "4.9-dev"
  3152. }
  3153. },
  3154. "autoload": {
  3155. "psr-4": {
  3156. "PhpParser\\": "lib/PhpParser"
  3157. }
  3158. },
  3159. "notification-url": "https://packagist.org/downloads/",
  3160. "license": [
  3161. "BSD-3-Clause"
  3162. ],
  3163. "authors": [
  3164. {
  3165. "name": "Nikita Popov"
  3166. }
  3167. ],
  3168. "description": "A PHP parser written in PHP",
  3169. "keywords": [
  3170. "parser",
  3171. "php"
  3172. ],
  3173. "time": "2020-09-26T10:30:38+00:00"
  3174. },
  3175. {
  3176. "name": "overtrue/easy-sms",
  3177. "version": "1.3.2",
  3178. "source": {
  3179. "type": "git",
  3180. "url": "https://github.com/overtrue/easy-sms.git",
  3181. "reference": "daa0b4308ec0e3c112888c288d14d473be6aabee"
  3182. },
  3183. "dist": {
  3184. "type": "zip",
  3185. "url": "https://api.github.com/repos/overtrue/easy-sms/zipball/daa0b4308ec0e3c112888c288d14d473be6aabee",
  3186. "reference": "daa0b4308ec0e3c112888c288d14d473be6aabee",
  3187. "shasum": "",
  3188. "mirrors": [
  3189. {
  3190. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3191. "preferred": true
  3192. }
  3193. ]
  3194. },
  3195. "require": {
  3196. "ext-json": "*",
  3197. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  3198. "php": ">=5.6"
  3199. },
  3200. "require-dev": {
  3201. "mockery/mockery": "1.3.1",
  3202. "phpunit/phpunit": "^5.7 || ^7.5"
  3203. },
  3204. "type": "library",
  3205. "autoload": {
  3206. "psr-4": {
  3207. "Overtrue\\EasySms\\": "src"
  3208. }
  3209. },
  3210. "notification-url": "https://packagist.org/downloads/",
  3211. "license": [
  3212. "MIT"
  3213. ],
  3214. "authors": [
  3215. {
  3216. "name": "overtrue",
  3217. "email": "i@overtrue.me"
  3218. }
  3219. ],
  3220. "description": "The easiest way to send short message.",
  3221. "time": "2021-01-22T06:52:59+00:00"
  3222. },
  3223. {
  3224. "name": "overtrue/laravel-wechat",
  3225. "version": "4.0.23",
  3226. "source": {
  3227. "type": "git",
  3228. "url": "https://github.com/overtrue/laravel-wechat.git",
  3229. "reference": "64d424a9cb8ce82321f1d6e5a053c53e82afcb32"
  3230. },
  3231. "dist": {
  3232. "type": "zip",
  3233. "url": "https://api.github.com/repos/overtrue/laravel-wechat/zipball/64d424a9cb8ce82321f1d6e5a053c53e82afcb32",
  3234. "reference": "64d424a9cb8ce82321f1d6e5a053c53e82afcb32",
  3235. "shasum": "",
  3236. "mirrors": [
  3237. {
  3238. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3239. "preferred": true
  3240. }
  3241. ]
  3242. },
  3243. "require": {
  3244. "illuminate/container": "^5.1",
  3245. "overtrue/wechat": "^4.0"
  3246. },
  3247. "type": "library",
  3248. "extra": {
  3249. "laravel": {
  3250. "providers": [
  3251. "Overtrue\\LaravelWeChat\\ServiceProvider"
  3252. ],
  3253. "aliases": {
  3254. "EasyWeChat": "Overtrue\\LaravelWeChat\\Facade"
  3255. }
  3256. }
  3257. },
  3258. "autoload": {
  3259. "psr-4": {
  3260. "Overtrue\\LaravelWeChat\\": "src/"
  3261. }
  3262. },
  3263. "notification-url": "https://packagist.org/downloads/",
  3264. "license": [
  3265. "MIT"
  3266. ],
  3267. "authors": [
  3268. {
  3269. "name": "overtrue",
  3270. "email": "anzhengchao@gmail.com"
  3271. }
  3272. ],
  3273. "description": "微信 SDK for Laravel",
  3274. "keywords": [
  3275. "laravel",
  3276. "sdk",
  3277. "wechat",
  3278. "weixin"
  3279. ],
  3280. "time": "2019-03-01T10:43:18+00:00"
  3281. },
  3282. {
  3283. "name": "overtrue/socialite",
  3284. "version": "2.0.19",
  3285. "source": {
  3286. "type": "git",
  3287. "url": "https://github.com/overtrue/socialite.git",
  3288. "reference": "ae4c8d1e9fe39418b9a598d42f01d7c1fe30f200"
  3289. },
  3290. "dist": {
  3291. "type": "zip",
  3292. "url": "https://api.github.com/repos/overtrue/socialite/zipball/ae4c8d1e9fe39418b9a598d42f01d7c1fe30f200",
  3293. "reference": "ae4c8d1e9fe39418b9a598d42f01d7c1fe30f200",
  3294. "shasum": "",
  3295. "mirrors": [
  3296. {
  3297. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3298. "preferred": true
  3299. }
  3300. ]
  3301. },
  3302. "require": {
  3303. "ext-json": "*",
  3304. "guzzlehttp/guzzle": "^5.0|^6.0|^7.0",
  3305. "php": ">=5.6",
  3306. "symfony/http-foundation": "^2.7|^3.0|^4.0|^5.0"
  3307. },
  3308. "conflict": {
  3309. "socialiteproviders/weixin": "*"
  3310. },
  3311. "require-dev": {
  3312. "mockery/mockery": "~1.2",
  3313. "phpunit/phpunit": "~6"
  3314. },
  3315. "type": "library",
  3316. "autoload": {
  3317. "psr-4": {
  3318. "Overtrue\\Socialite\\": "src/"
  3319. }
  3320. },
  3321. "notification-url": "https://packagist.org/downloads/",
  3322. "license": [
  3323. "MIT"
  3324. ],
  3325. "authors": [
  3326. {
  3327. "name": "overtrue",
  3328. "email": "anzhengchao@gmail.com"
  3329. }
  3330. ],
  3331. "description": "A collection of OAuth 2 packages that extracts from laravel/socialite.",
  3332. "keywords": [
  3333. "login",
  3334. "oauth",
  3335. "qq",
  3336. "social",
  3337. "wechat",
  3338. "weibo"
  3339. ],
  3340. "time": "2020-09-16T09:22:24+00:00"
  3341. },
  3342. {
  3343. "name": "overtrue/wechat",
  3344. "version": "4.3.1",
  3345. "source": {
  3346. "type": "git",
  3347. "url": "https://github.com/w7corp/easywechat.git",
  3348. "reference": "d7fa23e54337251f5ebfb6c6aab2b2a72da78bd3"
  3349. },
  3350. "dist": {
  3351. "type": "zip",
  3352. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/d7fa23e54337251f5ebfb6c6aab2b2a72da78bd3",
  3353. "reference": "d7fa23e54337251f5ebfb6c6aab2b2a72da78bd3",
  3354. "shasum": "",
  3355. "mirrors": [
  3356. {
  3357. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3358. "preferred": true
  3359. }
  3360. ]
  3361. },
  3362. "require": {
  3363. "easywechat-composer/easywechat-composer": "^1.1",
  3364. "ext-fileinfo": "*",
  3365. "ext-openssl": "*",
  3366. "ext-simplexml": "*",
  3367. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  3368. "monolog/monolog": "^1.22 || ^2.0",
  3369. "overtrue/socialite": "~2.0",
  3370. "php": ">=7.2",
  3371. "pimple/pimple": "^3.0",
  3372. "psr/simple-cache": "^1.0",
  3373. "symfony/cache": "^3.3 || ^4.3 || ^5.0",
  3374. "symfony/event-dispatcher": "^4.3 || ^5.0",
  3375. "symfony/http-foundation": "^2.7 || ^3.0 || ^4.0 || ^5.0",
  3376. "symfony/psr-http-message-bridge": "^0.3 || ^1.0 || ^2.0"
  3377. },
  3378. "require-dev": {
  3379. "friendsofphp/php-cs-fixer": "^2.15",
  3380. "mikey179/vfsstream": "^1.6",
  3381. "mockery/mockery": "^1.2.3",
  3382. "phpstan/phpstan": "^0.12.0",
  3383. "phpunit/phpunit": "^7.5"
  3384. },
  3385. "type": "library",
  3386. "autoload": {
  3387. "psr-4": {
  3388. "EasyWeChat\\": "src/"
  3389. },
  3390. "files": [
  3391. "src/Kernel/Support/Helpers.php",
  3392. "src/Kernel/Helpers.php"
  3393. ]
  3394. },
  3395. "notification-url": "https://packagist.org/downloads/",
  3396. "license": [
  3397. "MIT"
  3398. ],
  3399. "authors": [
  3400. {
  3401. "name": "overtrue",
  3402. "email": "anzhengchao@gmail.com"
  3403. }
  3404. ],
  3405. "description": "微信SDK",
  3406. "keywords": [
  3407. "easywechat",
  3408. "sdk",
  3409. "wechat",
  3410. "weixin",
  3411. "weixin-sdk"
  3412. ],
  3413. "time": "2020-09-28T09:20:16+00:00"
  3414. },
  3415. {
  3416. "name": "paragonie/random_compat",
  3417. "version": "v9.99.99",
  3418. "source": {
  3419. "type": "git",
  3420. "url": "https://github.com/paragonie/random_compat.git",
  3421. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
  3422. },
  3423. "dist": {
  3424. "type": "zip",
  3425. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  3426. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  3427. "shasum": "",
  3428. "mirrors": [
  3429. {
  3430. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3431. "preferred": true
  3432. }
  3433. ]
  3434. },
  3435. "require": {
  3436. "php": "^7"
  3437. },
  3438. "require-dev": {
  3439. "phpunit/phpunit": "4.*|5.*",
  3440. "vimeo/psalm": "^1"
  3441. },
  3442. "suggest": {
  3443. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  3444. },
  3445. "type": "library",
  3446. "notification-url": "https://packagist.org/downloads/",
  3447. "license": [
  3448. "MIT"
  3449. ],
  3450. "authors": [
  3451. {
  3452. "name": "Paragon Initiative Enterprises",
  3453. "email": "security@paragonie.com",
  3454. "homepage": "https://paragonie.com"
  3455. }
  3456. ],
  3457. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  3458. "keywords": [
  3459. "csprng",
  3460. "polyfill",
  3461. "pseudorandom",
  3462. "random"
  3463. ],
  3464. "time": "2018-07-02T15:55:56+00:00"
  3465. },
  3466. {
  3467. "name": "phpdocumentor/reflection-common",
  3468. "version": "1.0.1",
  3469. "source": {
  3470. "type": "git",
  3471. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  3472. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
  3473. },
  3474. "dist": {
  3475. "type": "zip",
  3476. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  3477. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  3478. "shasum": "",
  3479. "mirrors": [
  3480. {
  3481. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3482. "preferred": true
  3483. }
  3484. ]
  3485. },
  3486. "require": {
  3487. "php": ">=5.5"
  3488. },
  3489. "require-dev": {
  3490. "phpunit/phpunit": "^4.6"
  3491. },
  3492. "type": "library",
  3493. "extra": {
  3494. "branch-alias": {
  3495. "dev-master": "1.0.x-dev"
  3496. }
  3497. },
  3498. "autoload": {
  3499. "psr-4": {
  3500. "phpDocumentor\\Reflection\\": [
  3501. "src"
  3502. ]
  3503. }
  3504. },
  3505. "notification-url": "https://packagist.org/downloads/",
  3506. "license": [
  3507. "MIT"
  3508. ],
  3509. "authors": [
  3510. {
  3511. "name": "Jaap van Otterdijk",
  3512. "email": "opensource@ijaap.nl"
  3513. }
  3514. ],
  3515. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  3516. "homepage": "http://www.phpdoc.org",
  3517. "keywords": [
  3518. "FQSEN",
  3519. "phpDocumentor",
  3520. "phpdoc",
  3521. "reflection",
  3522. "static analysis"
  3523. ],
  3524. "time": "2017-09-11T18:02:19+00:00"
  3525. },
  3526. {
  3527. "name": "phpdocumentor/reflection-docblock",
  3528. "version": "3.3.2",
  3529. "source": {
  3530. "type": "git",
  3531. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  3532. "reference": "bf329f6c1aadea3299f08ee804682b7c45b326a2"
  3533. },
  3534. "dist": {
  3535. "type": "zip",
  3536. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/bf329f6c1aadea3299f08ee804682b7c45b326a2",
  3537. "reference": "bf329f6c1aadea3299f08ee804682b7c45b326a2",
  3538. "shasum": "",
  3539. "mirrors": [
  3540. {
  3541. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3542. "preferred": true
  3543. }
  3544. ]
  3545. },
  3546. "require": {
  3547. "php": "^5.6 || ^7.0",
  3548. "phpdocumentor/reflection-common": "^1.0.0",
  3549. "phpdocumentor/type-resolver": "^0.4.0",
  3550. "webmozart/assert": "^1.0"
  3551. },
  3552. "require-dev": {
  3553. "mockery/mockery": "^0.9.4",
  3554. "phpunit/phpunit": "^4.4"
  3555. },
  3556. "type": "library",
  3557. "autoload": {
  3558. "psr-4": {
  3559. "phpDocumentor\\Reflection\\": [
  3560. "src/"
  3561. ]
  3562. }
  3563. },
  3564. "notification-url": "https://packagist.org/downloads/",
  3565. "license": [
  3566. "MIT"
  3567. ],
  3568. "authors": [
  3569. {
  3570. "name": "Mike van Riel",
  3571. "email": "me@mikevanriel.com"
  3572. }
  3573. ],
  3574. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  3575. "time": "2017-11-10T14:09:06+00:00"
  3576. },
  3577. {
  3578. "name": "phpdocumentor/type-resolver",
  3579. "version": "0.4.0",
  3580. "source": {
  3581. "type": "git",
  3582. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  3583. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7"
  3584. },
  3585. "dist": {
  3586. "type": "zip",
  3587. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7",
  3588. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7",
  3589. "shasum": "",
  3590. "mirrors": [
  3591. {
  3592. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3593. "preferred": true
  3594. }
  3595. ]
  3596. },
  3597. "require": {
  3598. "php": "^5.5 || ^7.0",
  3599. "phpdocumentor/reflection-common": "^1.0"
  3600. },
  3601. "require-dev": {
  3602. "mockery/mockery": "^0.9.4",
  3603. "phpunit/phpunit": "^5.2||^4.8.24"
  3604. },
  3605. "type": "library",
  3606. "extra": {
  3607. "branch-alias": {
  3608. "dev-master": "1.0.x-dev"
  3609. }
  3610. },
  3611. "autoload": {
  3612. "psr-4": {
  3613. "phpDocumentor\\Reflection\\": [
  3614. "src/"
  3615. ]
  3616. }
  3617. },
  3618. "notification-url": "https://packagist.org/downloads/",
  3619. "license": [
  3620. "MIT"
  3621. ],
  3622. "authors": [
  3623. {
  3624. "name": "Mike van Riel",
  3625. "email": "me@mikevanriel.com"
  3626. }
  3627. ],
  3628. "time": "2017-07-14T14:27:02+00:00"
  3629. },
  3630. {
  3631. "name": "phpoffice/phpspreadsheet",
  3632. "version": "1.14.1",
  3633. "source": {
  3634. "type": "git",
  3635. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  3636. "reference": "2383aad5689778470491581442aab38cec41bf1d"
  3637. },
  3638. "dist": {
  3639. "type": "zip",
  3640. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/2383aad5689778470491581442aab38cec41bf1d",
  3641. "reference": "2383aad5689778470491581442aab38cec41bf1d",
  3642. "shasum": "",
  3643. "mirrors": [
  3644. {
  3645. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3646. "preferred": true
  3647. }
  3648. ]
  3649. },
  3650. "require": {
  3651. "ext-ctype": "*",
  3652. "ext-dom": "*",
  3653. "ext-fileinfo": "*",
  3654. "ext-gd": "*",
  3655. "ext-iconv": "*",
  3656. "ext-libxml": "*",
  3657. "ext-mbstring": "*",
  3658. "ext-simplexml": "*",
  3659. "ext-xml": "*",
  3660. "ext-xmlreader": "*",
  3661. "ext-xmlwriter": "*",
  3662. "ext-zip": "*",
  3663. "ext-zlib": "*",
  3664. "maennchen/zipstream-php": "^2.1",
  3665. "markbaker/complex": "^1.4",
  3666. "markbaker/matrix": "^1.2",
  3667. "php": "^7.2",
  3668. "psr/http-client": "^1.0",
  3669. "psr/http-factory": "^1.0",
  3670. "psr/simple-cache": "^1.0"
  3671. },
  3672. "require-dev": {
  3673. "dompdf/dompdf": "^0.8.5",
  3674. "friendsofphp/php-cs-fixer": "^2.16",
  3675. "jpgraph/jpgraph": "^4.0",
  3676. "mpdf/mpdf": "^8.0",
  3677. "phpcompatibility/php-compatibility": "^9.3",
  3678. "phpunit/phpunit": "^8.5",
  3679. "squizlabs/php_codesniffer": "^3.5",
  3680. "tecnickcom/tcpdf": "^6.3"
  3681. },
  3682. "suggest": {
  3683. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  3684. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  3685. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  3686. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  3687. },
  3688. "type": "library",
  3689. "autoload": {
  3690. "psr-4": {
  3691. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  3692. }
  3693. },
  3694. "notification-url": "https://packagist.org/downloads/",
  3695. "license": [
  3696. "MIT"
  3697. ],
  3698. "authors": [
  3699. {
  3700. "name": "Maarten Balliauw",
  3701. "homepage": "https://blog.maartenballiauw.be"
  3702. },
  3703. {
  3704. "name": "Mark Baker",
  3705. "homepage": "https://markbakeruk.net"
  3706. },
  3707. {
  3708. "name": "Franck Lefevre",
  3709. "homepage": "https://rootslabs.net"
  3710. },
  3711. {
  3712. "name": "Erik Tilt"
  3713. },
  3714. {
  3715. "name": "Adrien Crivelli"
  3716. }
  3717. ],
  3718. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  3719. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  3720. "keywords": [
  3721. "OpenXML",
  3722. "excel",
  3723. "gnumeric",
  3724. "ods",
  3725. "php",
  3726. "spreadsheet",
  3727. "xls",
  3728. "xlsx"
  3729. ],
  3730. "time": "2020-07-19T09:51:35+00:00"
  3731. },
  3732. {
  3733. "name": "pimple/pimple",
  3734. "version": "v3.3.0",
  3735. "source": {
  3736. "type": "git",
  3737. "url": "https://github.com/silexphp/Pimple.git",
  3738. "reference": "e55d12f9d6a0e7f9c85992b73df1267f46279930"
  3739. },
  3740. "dist": {
  3741. "type": "zip",
  3742. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/e55d12f9d6a0e7f9c85992b73df1267f46279930",
  3743. "reference": "e55d12f9d6a0e7f9c85992b73df1267f46279930",
  3744. "shasum": "",
  3745. "mirrors": [
  3746. {
  3747. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3748. "preferred": true
  3749. }
  3750. ]
  3751. },
  3752. "require": {
  3753. "php": "^7.2.5",
  3754. "psr/container": "^1.0"
  3755. },
  3756. "require-dev": {
  3757. "symfony/phpunit-bridge": "^3.4|^4.4|^5.0"
  3758. },
  3759. "type": "library",
  3760. "extra": {
  3761. "branch-alias": {
  3762. "dev-master": "3.3.x-dev"
  3763. }
  3764. },
  3765. "autoload": {
  3766. "psr-0": {
  3767. "Pimple": "src/"
  3768. }
  3769. },
  3770. "notification-url": "https://packagist.org/downloads/",
  3771. "license": [
  3772. "MIT"
  3773. ],
  3774. "authors": [
  3775. {
  3776. "name": "Fabien Potencier",
  3777. "email": "fabien@symfony.com"
  3778. }
  3779. ],
  3780. "description": "Pimple, a simple Dependency Injection Container",
  3781. "homepage": "https://pimple.symfony.com",
  3782. "keywords": [
  3783. "container",
  3784. "dependency injection"
  3785. ],
  3786. "time": "2020-03-03T09:12:48+00:00"
  3787. },
  3788. {
  3789. "name": "predis/predis",
  3790. "version": "v1.1.6",
  3791. "source": {
  3792. "type": "git",
  3793. "url": "https://github.com/predis/predis.git",
  3794. "reference": "9930e933c67446962997b05201c69c2319bf26de"
  3795. },
  3796. "dist": {
  3797. "type": "zip",
  3798. "url": "https://api.github.com/repos/predis/predis/zipball/9930e933c67446962997b05201c69c2319bf26de",
  3799. "reference": "9930e933c67446962997b05201c69c2319bf26de",
  3800. "shasum": "",
  3801. "mirrors": [
  3802. {
  3803. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3804. "preferred": true
  3805. }
  3806. ]
  3807. },
  3808. "require": {
  3809. "php": ">=5.3.9"
  3810. },
  3811. "require-dev": {
  3812. "cweagans/composer-patches": "^1.6",
  3813. "phpunit/phpunit": "~4.8"
  3814. },
  3815. "suggest": {
  3816. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  3817. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  3818. },
  3819. "type": "library",
  3820. "extra": {
  3821. "composer-exit-on-patch-failure": true,
  3822. "patches": {
  3823. "phpunit/phpunit-mock-objects": {
  3824. "Fix PHP 7 and 8 compatibility": "./tests/phpunit_mock_objects.patch"
  3825. },
  3826. "phpunit/phpunit": {
  3827. "Fix PHP 7 compatibility": "./tests/phpunit_php7.patch",
  3828. "Fix PHP 8 compatibility": "./tests/phpunit_php8.patch"
  3829. }
  3830. }
  3831. },
  3832. "autoload": {
  3833. "psr-4": {
  3834. "Predis\\": "src/"
  3835. }
  3836. },
  3837. "notification-url": "https://packagist.org/downloads/",
  3838. "license": [
  3839. "MIT"
  3840. ],
  3841. "authors": [
  3842. {
  3843. "name": "Daniele Alessandri",
  3844. "email": "suppakilla@gmail.com",
  3845. "homepage": "http://clorophilla.net",
  3846. "role": "Creator & Maintainer"
  3847. },
  3848. {
  3849. "name": "Till Krüss",
  3850. "homepage": "https://till.im",
  3851. "role": "Maintainer"
  3852. }
  3853. ],
  3854. "description": "Flexible and feature-complete Redis client for PHP and HHVM",
  3855. "homepage": "http://github.com/predis/predis",
  3856. "keywords": [
  3857. "nosql",
  3858. "predis",
  3859. "redis"
  3860. ],
  3861. "time": "2020-09-11T19:18:05+00:00"
  3862. },
  3863. {
  3864. "name": "psr/cache",
  3865. "version": "1.0.1",
  3866. "source": {
  3867. "type": "git",
  3868. "url": "https://github.com/php-fig/cache.git",
  3869. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  3870. },
  3871. "dist": {
  3872. "type": "zip",
  3873. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  3874. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  3875. "shasum": "",
  3876. "mirrors": [
  3877. {
  3878. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3879. "preferred": true
  3880. }
  3881. ]
  3882. },
  3883. "require": {
  3884. "php": ">=5.3.0"
  3885. },
  3886. "type": "library",
  3887. "extra": {
  3888. "branch-alias": {
  3889. "dev-master": "1.0.x-dev"
  3890. }
  3891. },
  3892. "autoload": {
  3893. "psr-4": {
  3894. "Psr\\Cache\\": "src/"
  3895. }
  3896. },
  3897. "notification-url": "https://packagist.org/downloads/",
  3898. "license": [
  3899. "MIT"
  3900. ],
  3901. "authors": [
  3902. {
  3903. "name": "PHP-FIG",
  3904. "homepage": "http://www.php-fig.org/"
  3905. }
  3906. ],
  3907. "description": "Common interface for caching libraries",
  3908. "keywords": [
  3909. "cache",
  3910. "psr",
  3911. "psr-6"
  3912. ],
  3913. "time": "2016-08-06T20:24:11+00:00"
  3914. },
  3915. {
  3916. "name": "psr/container",
  3917. "version": "1.0.0",
  3918. "source": {
  3919. "type": "git",
  3920. "url": "https://github.com/php-fig/container.git",
  3921. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  3922. },
  3923. "dist": {
  3924. "type": "zip",
  3925. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  3926. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  3927. "shasum": "",
  3928. "mirrors": [
  3929. {
  3930. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3931. "preferred": true
  3932. }
  3933. ]
  3934. },
  3935. "require": {
  3936. "php": ">=5.3.0"
  3937. },
  3938. "type": "library",
  3939. "extra": {
  3940. "branch-alias": {
  3941. "dev-master": "1.0.x-dev"
  3942. }
  3943. },
  3944. "autoload": {
  3945. "psr-4": {
  3946. "Psr\\Container\\": "src/"
  3947. }
  3948. },
  3949. "notification-url": "https://packagist.org/downloads/",
  3950. "license": [
  3951. "MIT"
  3952. ],
  3953. "authors": [
  3954. {
  3955. "name": "PHP-FIG",
  3956. "homepage": "http://www.php-fig.org/"
  3957. }
  3958. ],
  3959. "description": "Common Container Interface (PHP FIG PSR-11)",
  3960. "homepage": "https://github.com/php-fig/container",
  3961. "keywords": [
  3962. "PSR-11",
  3963. "container",
  3964. "container-interface",
  3965. "container-interop",
  3966. "psr"
  3967. ],
  3968. "time": "2017-02-14T16:28:37+00:00"
  3969. },
  3970. {
  3971. "name": "psr/http-client",
  3972. "version": "1.0.1",
  3973. "source": {
  3974. "type": "git",
  3975. "url": "https://github.com/php-fig/http-client.git",
  3976. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  3977. },
  3978. "dist": {
  3979. "type": "zip",
  3980. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3981. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3982. "shasum": "",
  3983. "mirrors": [
  3984. {
  3985. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3986. "preferred": true
  3987. }
  3988. ]
  3989. },
  3990. "require": {
  3991. "php": "^7.0 || ^8.0",
  3992. "psr/http-message": "^1.0"
  3993. },
  3994. "type": "library",
  3995. "extra": {
  3996. "branch-alias": {
  3997. "dev-master": "1.0.x-dev"
  3998. }
  3999. },
  4000. "autoload": {
  4001. "psr-4": {
  4002. "Psr\\Http\\Client\\": "src/"
  4003. }
  4004. },
  4005. "notification-url": "https://packagist.org/downloads/",
  4006. "license": [
  4007. "MIT"
  4008. ],
  4009. "authors": [
  4010. {
  4011. "name": "PHP-FIG",
  4012. "homepage": "http://www.php-fig.org/"
  4013. }
  4014. ],
  4015. "description": "Common interface for HTTP clients",
  4016. "homepage": "https://github.com/php-fig/http-client",
  4017. "keywords": [
  4018. "http",
  4019. "http-client",
  4020. "psr",
  4021. "psr-18"
  4022. ],
  4023. "time": "2020-06-29T06:28:15+00:00"
  4024. },
  4025. {
  4026. "name": "psr/http-factory",
  4027. "version": "1.0.1",
  4028. "source": {
  4029. "type": "git",
  4030. "url": "https://github.com/php-fig/http-factory.git",
  4031. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  4032. },
  4033. "dist": {
  4034. "type": "zip",
  4035. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  4036. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  4037. "shasum": "",
  4038. "mirrors": [
  4039. {
  4040. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4041. "preferred": true
  4042. }
  4043. ]
  4044. },
  4045. "require": {
  4046. "php": ">=7.0.0",
  4047. "psr/http-message": "^1.0"
  4048. },
  4049. "type": "library",
  4050. "extra": {
  4051. "branch-alias": {
  4052. "dev-master": "1.0.x-dev"
  4053. }
  4054. },
  4055. "autoload": {
  4056. "psr-4": {
  4057. "Psr\\Http\\Message\\": "src/"
  4058. }
  4059. },
  4060. "notification-url": "https://packagist.org/downloads/",
  4061. "license": [
  4062. "MIT"
  4063. ],
  4064. "authors": [
  4065. {
  4066. "name": "PHP-FIG",
  4067. "homepage": "http://www.php-fig.org/"
  4068. }
  4069. ],
  4070. "description": "Common interfaces for PSR-7 HTTP message factories",
  4071. "keywords": [
  4072. "factory",
  4073. "http",
  4074. "message",
  4075. "psr",
  4076. "psr-17",
  4077. "psr-7",
  4078. "request",
  4079. "response"
  4080. ],
  4081. "time": "2019-04-30T12:38:16+00:00"
  4082. },
  4083. {
  4084. "name": "psr/http-message",
  4085. "version": "1.0.1",
  4086. "source": {
  4087. "type": "git",
  4088. "url": "https://github.com/php-fig/http-message.git",
  4089. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  4090. },
  4091. "dist": {
  4092. "type": "zip",
  4093. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  4094. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  4095. "shasum": "",
  4096. "mirrors": [
  4097. {
  4098. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4099. "preferred": true
  4100. }
  4101. ]
  4102. },
  4103. "require": {
  4104. "php": ">=5.3.0"
  4105. },
  4106. "type": "library",
  4107. "extra": {
  4108. "branch-alias": {
  4109. "dev-master": "1.0.x-dev"
  4110. }
  4111. },
  4112. "autoload": {
  4113. "psr-4": {
  4114. "Psr\\Http\\Message\\": "src/"
  4115. }
  4116. },
  4117. "notification-url": "https://packagist.org/downloads/",
  4118. "license": [
  4119. "MIT"
  4120. ],
  4121. "authors": [
  4122. {
  4123. "name": "PHP-FIG",
  4124. "homepage": "http://www.php-fig.org/"
  4125. }
  4126. ],
  4127. "description": "Common interface for HTTP messages",
  4128. "homepage": "https://github.com/php-fig/http-message",
  4129. "keywords": [
  4130. "http",
  4131. "http-message",
  4132. "psr",
  4133. "psr-7",
  4134. "request",
  4135. "response"
  4136. ],
  4137. "time": "2016-08-06T14:39:51+00:00"
  4138. },
  4139. {
  4140. "name": "psr/log",
  4141. "version": "1.1.3",
  4142. "source": {
  4143. "type": "git",
  4144. "url": "https://github.com/php-fig/log.git",
  4145. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  4146. },
  4147. "dist": {
  4148. "type": "zip",
  4149. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  4150. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  4151. "shasum": "",
  4152. "mirrors": [
  4153. {
  4154. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4155. "preferred": true
  4156. }
  4157. ]
  4158. },
  4159. "require": {
  4160. "php": ">=5.3.0"
  4161. },
  4162. "type": "library",
  4163. "extra": {
  4164. "branch-alias": {
  4165. "dev-master": "1.1.x-dev"
  4166. }
  4167. },
  4168. "autoload": {
  4169. "psr-4": {
  4170. "Psr\\Log\\": "Psr/Log/"
  4171. }
  4172. },
  4173. "notification-url": "https://packagist.org/downloads/",
  4174. "license": [
  4175. "MIT"
  4176. ],
  4177. "authors": [
  4178. {
  4179. "name": "PHP-FIG",
  4180. "homepage": "http://www.php-fig.org/"
  4181. }
  4182. ],
  4183. "description": "Common interface for logging libraries",
  4184. "homepage": "https://github.com/php-fig/log",
  4185. "keywords": [
  4186. "log",
  4187. "psr",
  4188. "psr-3"
  4189. ],
  4190. "time": "2020-03-23T09:12:05+00:00"
  4191. },
  4192. {
  4193. "name": "psr/simple-cache",
  4194. "version": "1.0.1",
  4195. "source": {
  4196. "type": "git",
  4197. "url": "https://github.com/php-fig/simple-cache.git",
  4198. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  4199. },
  4200. "dist": {
  4201. "type": "zip",
  4202. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4203. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4204. "shasum": "",
  4205. "mirrors": [
  4206. {
  4207. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4208. "preferred": true
  4209. }
  4210. ]
  4211. },
  4212. "require": {
  4213. "php": ">=5.3.0"
  4214. },
  4215. "type": "library",
  4216. "extra": {
  4217. "branch-alias": {
  4218. "dev-master": "1.0.x-dev"
  4219. }
  4220. },
  4221. "autoload": {
  4222. "psr-4": {
  4223. "Psr\\SimpleCache\\": "src/"
  4224. }
  4225. },
  4226. "notification-url": "https://packagist.org/downloads/",
  4227. "license": [
  4228. "MIT"
  4229. ],
  4230. "authors": [
  4231. {
  4232. "name": "PHP-FIG",
  4233. "homepage": "http://www.php-fig.org/"
  4234. }
  4235. ],
  4236. "description": "Common interfaces for simple caching",
  4237. "keywords": [
  4238. "cache",
  4239. "caching",
  4240. "psr",
  4241. "psr-16",
  4242. "simple-cache"
  4243. ],
  4244. "time": "2017-10-23T01:57:42+00:00"
  4245. },
  4246. {
  4247. "name": "psy/psysh",
  4248. "version": "v0.9.12",
  4249. "source": {
  4250. "type": "git",
  4251. "url": "https://github.com/bobthecow/psysh.git",
  4252. "reference": "90da7f37568aee36b116a030c5f99c915267edd4"
  4253. },
  4254. "dist": {
  4255. "type": "zip",
  4256. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/90da7f37568aee36b116a030c5f99c915267edd4",
  4257. "reference": "90da7f37568aee36b116a030c5f99c915267edd4",
  4258. "shasum": "",
  4259. "mirrors": [
  4260. {
  4261. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4262. "preferred": true
  4263. }
  4264. ]
  4265. },
  4266. "require": {
  4267. "dnoegel/php-xdg-base-dir": "0.1.*",
  4268. "ext-json": "*",
  4269. "ext-tokenizer": "*",
  4270. "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
  4271. "nikic/php-parser": "~1.3|~2.0|~3.0|~4.0",
  4272. "php": ">=5.4.0",
  4273. "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0|~5.0",
  4274. "symfony/var-dumper": "~2.7|~3.0|~4.0|~5.0"
  4275. },
  4276. "require-dev": {
  4277. "bamarni/composer-bin-plugin": "^1.2",
  4278. "hoa/console": "~2.15|~3.16",
  4279. "phpunit/phpunit": "~4.8.35|~5.0|~6.0|~7.0"
  4280. },
  4281. "suggest": {
  4282. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4283. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4284. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  4285. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  4286. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  4287. },
  4288. "bin": [
  4289. "bin/psysh"
  4290. ],
  4291. "type": "library",
  4292. "extra": {
  4293. "branch-alias": {
  4294. "dev-develop": "0.9.x-dev"
  4295. }
  4296. },
  4297. "autoload": {
  4298. "files": [
  4299. "src/functions.php"
  4300. ],
  4301. "psr-4": {
  4302. "Psy\\": "src/"
  4303. }
  4304. },
  4305. "notification-url": "https://packagist.org/downloads/",
  4306. "license": [
  4307. "MIT"
  4308. ],
  4309. "authors": [
  4310. {
  4311. "name": "Justin Hileman",
  4312. "email": "justin@justinhileman.info",
  4313. "homepage": "http://justinhileman.com"
  4314. }
  4315. ],
  4316. "description": "An interactive shell for modern PHP.",
  4317. "homepage": "http://psysh.org",
  4318. "keywords": [
  4319. "REPL",
  4320. "console",
  4321. "interactive",
  4322. "shell"
  4323. ],
  4324. "time": "2019-12-06T14:19:43+00:00"
  4325. },
  4326. {
  4327. "name": "ralouphie/getallheaders",
  4328. "version": "3.0.3",
  4329. "source": {
  4330. "type": "git",
  4331. "url": "https://github.com/ralouphie/getallheaders.git",
  4332. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4333. },
  4334. "dist": {
  4335. "type": "zip",
  4336. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4337. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4338. "shasum": "",
  4339. "mirrors": [
  4340. {
  4341. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4342. "preferred": true
  4343. }
  4344. ]
  4345. },
  4346. "require": {
  4347. "php": ">=5.6"
  4348. },
  4349. "require-dev": {
  4350. "php-coveralls/php-coveralls": "^2.1",
  4351. "phpunit/phpunit": "^5 || ^6.5"
  4352. },
  4353. "type": "library",
  4354. "autoload": {
  4355. "files": [
  4356. "src/getallheaders.php"
  4357. ]
  4358. },
  4359. "notification-url": "https://packagist.org/downloads/",
  4360. "license": [
  4361. "MIT"
  4362. ],
  4363. "authors": [
  4364. {
  4365. "name": "Ralph Khattar",
  4366. "email": "ralph.khattar@gmail.com"
  4367. }
  4368. ],
  4369. "description": "A polyfill for getallheaders.",
  4370. "time": "2019-03-08T08:55:37+00:00"
  4371. },
  4372. {
  4373. "name": "ramsey/uuid",
  4374. "version": "3.9.3",
  4375. "source": {
  4376. "type": "git",
  4377. "url": "https://github.com/ramsey/uuid.git",
  4378. "reference": "7e1633a6964b48589b142d60542f9ed31bd37a92"
  4379. },
  4380. "dist": {
  4381. "type": "zip",
  4382. "url": "https://api.github.com/repos/ramsey/uuid/zipball/7e1633a6964b48589b142d60542f9ed31bd37a92",
  4383. "reference": "7e1633a6964b48589b142d60542f9ed31bd37a92",
  4384. "shasum": "",
  4385. "mirrors": [
  4386. {
  4387. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4388. "preferred": true
  4389. }
  4390. ]
  4391. },
  4392. "require": {
  4393. "ext-json": "*",
  4394. "paragonie/random_compat": "^1 | ^2 | 9.99.99",
  4395. "php": "^5.4 | ^7 | ^8",
  4396. "symfony/polyfill-ctype": "^1.8"
  4397. },
  4398. "replace": {
  4399. "rhumsaa/uuid": "self.version"
  4400. },
  4401. "require-dev": {
  4402. "codeception/aspect-mock": "^1 | ^2",
  4403. "doctrine/annotations": "^1.2",
  4404. "goaop/framework": "1.0.0-alpha.2 | ^1 | ^2.1",
  4405. "jakub-onderka/php-parallel-lint": "^1",
  4406. "mockery/mockery": "^0.9.11 | ^1",
  4407. "moontoast/math": "^1.1",
  4408. "paragonie/random-lib": "^2",
  4409. "php-mock/php-mock-phpunit": "^0.3 | ^1.1",
  4410. "phpunit/phpunit": "^4.8 | ^5.4 | ^6.5",
  4411. "squizlabs/php_codesniffer": "^3.5"
  4412. },
  4413. "suggest": {
  4414. "ext-ctype": "Provides support for PHP Ctype functions",
  4415. "ext-libsodium": "Provides the PECL libsodium extension for use with the SodiumRandomGenerator",
  4416. "ext-openssl": "Provides the OpenSSL extension for use with the OpenSslGenerator",
  4417. "ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator",
  4418. "moontoast/math": "Provides support for converting UUID to 128-bit integer (in string form).",
  4419. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4420. "ramsey/uuid-console": "A console application for generating UUIDs with ramsey/uuid",
  4421. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4422. },
  4423. "type": "library",
  4424. "extra": {
  4425. "branch-alias": {
  4426. "dev-master": "3.x-dev"
  4427. }
  4428. },
  4429. "autoload": {
  4430. "psr-4": {
  4431. "Ramsey\\Uuid\\": "src/"
  4432. },
  4433. "files": [
  4434. "src/functions.php"
  4435. ]
  4436. },
  4437. "notification-url": "https://packagist.org/downloads/",
  4438. "license": [
  4439. "MIT"
  4440. ],
  4441. "authors": [
  4442. {
  4443. "name": "Ben Ramsey",
  4444. "email": "ben@benramsey.com",
  4445. "homepage": "https://benramsey.com"
  4446. },
  4447. {
  4448. "name": "Marijn Huizendveld",
  4449. "email": "marijn.huizendveld@gmail.com"
  4450. },
  4451. {
  4452. "name": "Thibaud Fabre",
  4453. "email": "thibaud@aztech.io"
  4454. }
  4455. ],
  4456. "description": "Formerly rhumsaa/uuid. A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).",
  4457. "homepage": "https://github.com/ramsey/uuid",
  4458. "keywords": [
  4459. "guid",
  4460. "identifier",
  4461. "uuid"
  4462. ],
  4463. "time": "2020-02-21T04:36:14+00:00"
  4464. },
  4465. {
  4466. "name": "seld/jsonlint",
  4467. "version": "1.8.2",
  4468. "source": {
  4469. "type": "git",
  4470. "url": "https://github.com/Seldaek/jsonlint.git",
  4471. "reference": "590cfec960b77fd55e39b7d9246659e95dd6d337"
  4472. },
  4473. "dist": {
  4474. "type": "zip",
  4475. "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/590cfec960b77fd55e39b7d9246659e95dd6d337",
  4476. "reference": "590cfec960b77fd55e39b7d9246659e95dd6d337",
  4477. "shasum": "",
  4478. "mirrors": [
  4479. {
  4480. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4481. "preferred": true
  4482. }
  4483. ]
  4484. },
  4485. "require": {
  4486. "php": "^5.3 || ^7.0 || ^8.0"
  4487. },
  4488. "require-dev": {
  4489. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  4490. },
  4491. "bin": [
  4492. "bin/jsonlint"
  4493. ],
  4494. "type": "library",
  4495. "autoload": {
  4496. "psr-4": {
  4497. "Seld\\JsonLint\\": "src/Seld/JsonLint/"
  4498. }
  4499. },
  4500. "notification-url": "https://packagist.org/downloads/",
  4501. "license": [
  4502. "MIT"
  4503. ],
  4504. "authors": [
  4505. {
  4506. "name": "Jordi Boggiano",
  4507. "email": "j.boggiano@seld.be",
  4508. "homepage": "http://seld.be"
  4509. }
  4510. ],
  4511. "description": "JSON Linter",
  4512. "keywords": [
  4513. "json",
  4514. "linter",
  4515. "parser",
  4516. "validator"
  4517. ],
  4518. "time": "2020-08-25T06:56:57+00:00"
  4519. },
  4520. {
  4521. "name": "seld/phar-utils",
  4522. "version": "1.1.1",
  4523. "source": {
  4524. "type": "git",
  4525. "url": "https://github.com/Seldaek/phar-utils.git",
  4526. "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796"
  4527. },
  4528. "dist": {
  4529. "type": "zip",
  4530. "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/8674b1d84ffb47cc59a101f5d5a3b61e87d23796",
  4531. "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796",
  4532. "shasum": "",
  4533. "mirrors": [
  4534. {
  4535. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4536. "preferred": true
  4537. }
  4538. ]
  4539. },
  4540. "require": {
  4541. "php": ">=5.3"
  4542. },
  4543. "type": "library",
  4544. "extra": {
  4545. "branch-alias": {
  4546. "dev-master": "1.x-dev"
  4547. }
  4548. },
  4549. "autoload": {
  4550. "psr-4": {
  4551. "Seld\\PharUtils\\": "src/"
  4552. }
  4553. },
  4554. "notification-url": "https://packagist.org/downloads/",
  4555. "license": [
  4556. "MIT"
  4557. ],
  4558. "authors": [
  4559. {
  4560. "name": "Jordi Boggiano",
  4561. "email": "j.boggiano@seld.be"
  4562. }
  4563. ],
  4564. "description": "PHAR file format utilities, for when PHP phars you up",
  4565. "keywords": [
  4566. "phar"
  4567. ],
  4568. "time": "2020-07-07T18:42:57+00:00"
  4569. },
  4570. {
  4571. "name": "swiftmailer/swiftmailer",
  4572. "version": "v6.2.3",
  4573. "source": {
  4574. "type": "git",
  4575. "url": "https://github.com/swiftmailer/swiftmailer.git",
  4576. "reference": "149cfdf118b169f7840bbe3ef0d4bc795d1780c9"
  4577. },
  4578. "dist": {
  4579. "type": "zip",
  4580. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/149cfdf118b169f7840bbe3ef0d4bc795d1780c9",
  4581. "reference": "149cfdf118b169f7840bbe3ef0d4bc795d1780c9",
  4582. "shasum": "",
  4583. "mirrors": [
  4584. {
  4585. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4586. "preferred": true
  4587. }
  4588. ]
  4589. },
  4590. "require": {
  4591. "egulias/email-validator": "~2.0",
  4592. "php": ">=7.0.0",
  4593. "symfony/polyfill-iconv": "^1.0",
  4594. "symfony/polyfill-intl-idn": "^1.10",
  4595. "symfony/polyfill-mbstring": "^1.0"
  4596. },
  4597. "require-dev": {
  4598. "mockery/mockery": "~0.9.1",
  4599. "symfony/phpunit-bridge": "^3.4.19|^4.1.8"
  4600. },
  4601. "suggest": {
  4602. "ext-intl": "Needed to support internationalized email addresses",
  4603. "true/punycode": "Needed to support internationalized email addresses, if ext-intl is not installed"
  4604. },
  4605. "type": "library",
  4606. "extra": {
  4607. "branch-alias": {
  4608. "dev-master": "6.2-dev"
  4609. }
  4610. },
  4611. "autoload": {
  4612. "files": [
  4613. "lib/swift_required.php"
  4614. ]
  4615. },
  4616. "notification-url": "https://packagist.org/downloads/",
  4617. "license": [
  4618. "MIT"
  4619. ],
  4620. "authors": [
  4621. {
  4622. "name": "Chris Corbyn"
  4623. },
  4624. {
  4625. "name": "Fabien Potencier",
  4626. "email": "fabien@symfony.com"
  4627. }
  4628. ],
  4629. "description": "Swiftmailer, free feature-rich PHP mailer",
  4630. "homepage": "https://swiftmailer.symfony.com",
  4631. "keywords": [
  4632. "email",
  4633. "mail",
  4634. "mailer"
  4635. ],
  4636. "time": "2019-11-12T09:31:26+00:00"
  4637. },
  4638. {
  4639. "name": "symfony/cache",
  4640. "version": "v4.3.11",
  4641. "source": {
  4642. "type": "git",
  4643. "url": "https://github.com/symfony/cache.git",
  4644. "reference": "8794ccf68ac341fc19311919d2287f7557bfccba"
  4645. },
  4646. "dist": {
  4647. "type": "zip",
  4648. "url": "https://api.github.com/repos/symfony/cache/zipball/8794ccf68ac341fc19311919d2287f7557bfccba",
  4649. "reference": "8794ccf68ac341fc19311919d2287f7557bfccba",
  4650. "shasum": "",
  4651. "mirrors": [
  4652. {
  4653. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4654. "preferred": true
  4655. }
  4656. ]
  4657. },
  4658. "require": {
  4659. "php": "^7.1.3",
  4660. "psr/cache": "~1.0",
  4661. "psr/log": "~1.0",
  4662. "symfony/cache-contracts": "^1.1",
  4663. "symfony/service-contracts": "^1.1",
  4664. "symfony/var-exporter": "^4.2"
  4665. },
  4666. "conflict": {
  4667. "doctrine/dbal": "<2.5",
  4668. "symfony/dependency-injection": "<3.4",
  4669. "symfony/var-dumper": "<3.4"
  4670. },
  4671. "provide": {
  4672. "psr/cache-implementation": "1.0",
  4673. "psr/simple-cache-implementation": "1.0",
  4674. "symfony/cache-implementation": "1.0"
  4675. },
  4676. "require-dev": {
  4677. "cache/integration-tests": "dev-master",
  4678. "doctrine/cache": "~1.6",
  4679. "doctrine/dbal": "~2.5",
  4680. "predis/predis": "~1.1",
  4681. "psr/simple-cache": "^1.0",
  4682. "symfony/config": "~4.2",
  4683. "symfony/dependency-injection": "~3.4|~4.1",
  4684. "symfony/var-dumper": "^4.1.1"
  4685. },
  4686. "type": "library",
  4687. "extra": {
  4688. "branch-alias": {
  4689. "dev-master": "4.3-dev"
  4690. }
  4691. },
  4692. "autoload": {
  4693. "psr-4": {
  4694. "Symfony\\Component\\Cache\\": ""
  4695. },
  4696. "exclude-from-classmap": [
  4697. "/Tests/"
  4698. ]
  4699. },
  4700. "notification-url": "https://packagist.org/downloads/",
  4701. "license": [
  4702. "MIT"
  4703. ],
  4704. "authors": [
  4705. {
  4706. "name": "Nicolas Grekas",
  4707. "email": "p@tchwork.com"
  4708. },
  4709. {
  4710. "name": "Symfony Community",
  4711. "homepage": "https://symfony.com/contributors"
  4712. }
  4713. ],
  4714. "description": "Symfony Cache component with PSR-6, PSR-16, and tags",
  4715. "homepage": "https://symfony.com",
  4716. "keywords": [
  4717. "caching",
  4718. "psr6"
  4719. ],
  4720. "time": "2020-01-27T09:15:09+00:00"
  4721. },
  4722. {
  4723. "name": "symfony/cache-contracts",
  4724. "version": "v1.1.10",
  4725. "source": {
  4726. "type": "git",
  4727. "url": "https://github.com/symfony/cache-contracts.git",
  4728. "reference": "8d5489c10ef90aa7413e4921fc3c0520e24cbed7"
  4729. },
  4730. "dist": {
  4731. "type": "zip",
  4732. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/8d5489c10ef90aa7413e4921fc3c0520e24cbed7",
  4733. "reference": "8d5489c10ef90aa7413e4921fc3c0520e24cbed7",
  4734. "shasum": "",
  4735. "mirrors": [
  4736. {
  4737. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4738. "preferred": true
  4739. }
  4740. ]
  4741. },
  4742. "require": {
  4743. "php": ">=7.1.3",
  4744. "psr/cache": "^1.0"
  4745. },
  4746. "suggest": {
  4747. "symfony/cache-implementation": ""
  4748. },
  4749. "type": "library",
  4750. "extra": {
  4751. "branch-alias": {
  4752. "dev-master": "1.1-dev"
  4753. },
  4754. "thanks": {
  4755. "name": "symfony/contracts",
  4756. "url": "https://github.com/symfony/contracts"
  4757. }
  4758. },
  4759. "autoload": {
  4760. "psr-4": {
  4761. "Symfony\\Contracts\\Cache\\": ""
  4762. }
  4763. },
  4764. "notification-url": "https://packagist.org/downloads/",
  4765. "license": [
  4766. "MIT"
  4767. ],
  4768. "authors": [
  4769. {
  4770. "name": "Nicolas Grekas",
  4771. "email": "p@tchwork.com"
  4772. },
  4773. {
  4774. "name": "Symfony Community",
  4775. "homepage": "https://symfony.com/contributors"
  4776. }
  4777. ],
  4778. "description": "Generic abstractions related to caching",
  4779. "homepage": "https://symfony.com",
  4780. "keywords": [
  4781. "abstractions",
  4782. "contracts",
  4783. "decoupling",
  4784. "interfaces",
  4785. "interoperability",
  4786. "standards"
  4787. ],
  4788. "time": "2020-09-02T16:08:58+00:00"
  4789. },
  4790. {
  4791. "name": "symfony/console",
  4792. "version": "v3.4.45",
  4793. "source": {
  4794. "type": "git",
  4795. "url": "https://github.com/symfony/console.git",
  4796. "reference": "b28996bc0a3b08914b2a8609163ec35b36b30685"
  4797. },
  4798. "dist": {
  4799. "type": "zip",
  4800. "url": "https://api.github.com/repos/symfony/console/zipball/b28996bc0a3b08914b2a8609163ec35b36b30685",
  4801. "reference": "b28996bc0a3b08914b2a8609163ec35b36b30685",
  4802. "shasum": "",
  4803. "mirrors": [
  4804. {
  4805. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4806. "preferred": true
  4807. }
  4808. ]
  4809. },
  4810. "require": {
  4811. "php": "^5.5.9|>=7.0.8",
  4812. "symfony/debug": "~2.8|~3.0|~4.0",
  4813. "symfony/polyfill-mbstring": "~1.0"
  4814. },
  4815. "conflict": {
  4816. "symfony/dependency-injection": "<3.4",
  4817. "symfony/process": "<3.3"
  4818. },
  4819. "provide": {
  4820. "psr/log-implementation": "1.0"
  4821. },
  4822. "require-dev": {
  4823. "psr/log": "~1.0",
  4824. "symfony/config": "~3.3|~4.0",
  4825. "symfony/dependency-injection": "~3.4|~4.0",
  4826. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  4827. "symfony/lock": "~3.4|~4.0",
  4828. "symfony/process": "~3.3|~4.0"
  4829. },
  4830. "suggest": {
  4831. "psr/log": "For using the console logger",
  4832. "symfony/event-dispatcher": "",
  4833. "symfony/lock": "",
  4834. "symfony/process": ""
  4835. },
  4836. "type": "library",
  4837. "extra": {
  4838. "branch-alias": {
  4839. "dev-master": "3.4-dev"
  4840. }
  4841. },
  4842. "autoload": {
  4843. "psr-4": {
  4844. "Symfony\\Component\\Console\\": ""
  4845. },
  4846. "exclude-from-classmap": [
  4847. "/Tests/"
  4848. ]
  4849. },
  4850. "notification-url": "https://packagist.org/downloads/",
  4851. "license": [
  4852. "MIT"
  4853. ],
  4854. "authors": [
  4855. {
  4856. "name": "Fabien Potencier",
  4857. "email": "fabien@symfony.com"
  4858. },
  4859. {
  4860. "name": "Symfony Community",
  4861. "homepage": "https://symfony.com/contributors"
  4862. }
  4863. ],
  4864. "description": "Symfony Console Component",
  4865. "homepage": "https://symfony.com",
  4866. "time": "2020-09-09T05:09:37+00:00"
  4867. },
  4868. {
  4869. "name": "symfony/css-selector",
  4870. "version": "v5.1.6",
  4871. "source": {
  4872. "type": "git",
  4873. "url": "https://github.com/symfony/css-selector.git",
  4874. "reference": "e544e24472d4c97b2d11ade7caacd446727c6bf9"
  4875. },
  4876. "dist": {
  4877. "type": "zip",
  4878. "url": "https://api.github.com/repos/symfony/css-selector/zipball/e544e24472d4c97b2d11ade7caacd446727c6bf9",
  4879. "reference": "e544e24472d4c97b2d11ade7caacd446727c6bf9",
  4880. "shasum": "",
  4881. "mirrors": [
  4882. {
  4883. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4884. "preferred": true
  4885. }
  4886. ]
  4887. },
  4888. "require": {
  4889. "php": ">=7.2.5"
  4890. },
  4891. "type": "library",
  4892. "extra": {
  4893. "branch-alias": {
  4894. "dev-master": "5.1-dev"
  4895. }
  4896. },
  4897. "autoload": {
  4898. "psr-4": {
  4899. "Symfony\\Component\\CssSelector\\": ""
  4900. },
  4901. "exclude-from-classmap": [
  4902. "/Tests/"
  4903. ]
  4904. },
  4905. "notification-url": "https://packagist.org/downloads/",
  4906. "license": [
  4907. "MIT"
  4908. ],
  4909. "authors": [
  4910. {
  4911. "name": "Fabien Potencier",
  4912. "email": "fabien@symfony.com"
  4913. },
  4914. {
  4915. "name": "Jean-François Simon",
  4916. "email": "jeanfrancois.simon@sensiolabs.com"
  4917. },
  4918. {
  4919. "name": "Symfony Community",
  4920. "homepage": "https://symfony.com/contributors"
  4921. }
  4922. ],
  4923. "description": "Symfony CssSelector Component",
  4924. "homepage": "https://symfony.com",
  4925. "time": "2020-05-20T17:43:50+00:00"
  4926. },
  4927. {
  4928. "name": "symfony/debug",
  4929. "version": "v3.4.45",
  4930. "source": {
  4931. "type": "git",
  4932. "url": "https://github.com/symfony/debug.git",
  4933. "reference": "9109e4414e684d0b75276ae203883467476d25d0"
  4934. },
  4935. "dist": {
  4936. "type": "zip",
  4937. "url": "https://api.github.com/repos/symfony/debug/zipball/9109e4414e684d0b75276ae203883467476d25d0",
  4938. "reference": "9109e4414e684d0b75276ae203883467476d25d0",
  4939. "shasum": "",
  4940. "mirrors": [
  4941. {
  4942. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4943. "preferred": true
  4944. }
  4945. ]
  4946. },
  4947. "require": {
  4948. "php": "^5.5.9|>=7.0.8",
  4949. "psr/log": "~1.0"
  4950. },
  4951. "conflict": {
  4952. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  4953. },
  4954. "require-dev": {
  4955. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  4956. },
  4957. "type": "library",
  4958. "extra": {
  4959. "branch-alias": {
  4960. "dev-master": "3.4-dev"
  4961. }
  4962. },
  4963. "autoload": {
  4964. "psr-4": {
  4965. "Symfony\\Component\\Debug\\": ""
  4966. },
  4967. "exclude-from-classmap": [
  4968. "/Tests/"
  4969. ]
  4970. },
  4971. "notification-url": "https://packagist.org/downloads/",
  4972. "license": [
  4973. "MIT"
  4974. ],
  4975. "authors": [
  4976. {
  4977. "name": "Fabien Potencier",
  4978. "email": "fabien@symfony.com"
  4979. },
  4980. {
  4981. "name": "Symfony Community",
  4982. "homepage": "https://symfony.com/contributors"
  4983. }
  4984. ],
  4985. "description": "Symfony Debug Component",
  4986. "homepage": "https://symfony.com",
  4987. "time": "2020-09-08T22:19:14+00:00"
  4988. },
  4989. {
  4990. "name": "symfony/event-dispatcher",
  4991. "version": "v4.4.14",
  4992. "source": {
  4993. "type": "git",
  4994. "url": "https://github.com/symfony/event-dispatcher.git",
  4995. "reference": "e17bb5e0663dc725f7cdcafc932132735b4725cd"
  4996. },
  4997. "dist": {
  4998. "type": "zip",
  4999. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/e17bb5e0663dc725f7cdcafc932132735b4725cd",
  5000. "reference": "e17bb5e0663dc725f7cdcafc932132735b4725cd",
  5001. "shasum": "",
  5002. "mirrors": [
  5003. {
  5004. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5005. "preferred": true
  5006. }
  5007. ]
  5008. },
  5009. "require": {
  5010. "php": ">=7.1.3",
  5011. "symfony/event-dispatcher-contracts": "^1.1"
  5012. },
  5013. "conflict": {
  5014. "symfony/dependency-injection": "<3.4"
  5015. },
  5016. "provide": {
  5017. "psr/event-dispatcher-implementation": "1.0",
  5018. "symfony/event-dispatcher-implementation": "1.1"
  5019. },
  5020. "require-dev": {
  5021. "psr/log": "~1.0",
  5022. "symfony/config": "^3.4|^4.0|^5.0",
  5023. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  5024. "symfony/error-handler": "~3.4|~4.4",
  5025. "symfony/expression-language": "^3.4|^4.0|^5.0",
  5026. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  5027. "symfony/service-contracts": "^1.1|^2",
  5028. "symfony/stopwatch": "^3.4|^4.0|^5.0"
  5029. },
  5030. "suggest": {
  5031. "symfony/dependency-injection": "",
  5032. "symfony/http-kernel": ""
  5033. },
  5034. "type": "library",
  5035. "extra": {
  5036. "branch-alias": {
  5037. "dev-master": "4.4-dev"
  5038. }
  5039. },
  5040. "autoload": {
  5041. "psr-4": {
  5042. "Symfony\\Component\\EventDispatcher\\": ""
  5043. },
  5044. "exclude-from-classmap": [
  5045. "/Tests/"
  5046. ]
  5047. },
  5048. "notification-url": "https://packagist.org/downloads/",
  5049. "license": [
  5050. "MIT"
  5051. ],
  5052. "authors": [
  5053. {
  5054. "name": "Fabien Potencier",
  5055. "email": "fabien@symfony.com"
  5056. },
  5057. {
  5058. "name": "Symfony Community",
  5059. "homepage": "https://symfony.com/contributors"
  5060. }
  5061. ],
  5062. "description": "Symfony EventDispatcher Component",
  5063. "homepage": "https://symfony.com",
  5064. "time": "2020-09-18T14:07:46+00:00"
  5065. },
  5066. {
  5067. "name": "symfony/event-dispatcher-contracts",
  5068. "version": "v1.1.9",
  5069. "source": {
  5070. "type": "git",
  5071. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5072. "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7"
  5073. },
  5074. "dist": {
  5075. "type": "zip",
  5076. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/84e23fdcd2517bf37aecbd16967e83f0caee25a7",
  5077. "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7",
  5078. "shasum": "",
  5079. "mirrors": [
  5080. {
  5081. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5082. "preferred": true
  5083. }
  5084. ]
  5085. },
  5086. "require": {
  5087. "php": ">=7.1.3"
  5088. },
  5089. "suggest": {
  5090. "psr/event-dispatcher": "",
  5091. "symfony/event-dispatcher-implementation": ""
  5092. },
  5093. "type": "library",
  5094. "extra": {
  5095. "branch-alias": {
  5096. "dev-master": "1.1-dev"
  5097. },
  5098. "thanks": {
  5099. "name": "symfony/contracts",
  5100. "url": "https://github.com/symfony/contracts"
  5101. }
  5102. },
  5103. "autoload": {
  5104. "psr-4": {
  5105. "Symfony\\Contracts\\EventDispatcher\\": ""
  5106. }
  5107. },
  5108. "notification-url": "https://packagist.org/downloads/",
  5109. "license": [
  5110. "MIT"
  5111. ],
  5112. "authors": [
  5113. {
  5114. "name": "Nicolas Grekas",
  5115. "email": "p@tchwork.com"
  5116. },
  5117. {
  5118. "name": "Symfony Community",
  5119. "homepage": "https://symfony.com/contributors"
  5120. }
  5121. ],
  5122. "description": "Generic abstractions related to dispatching event",
  5123. "homepage": "https://symfony.com",
  5124. "keywords": [
  5125. "abstractions",
  5126. "contracts",
  5127. "decoupling",
  5128. "interfaces",
  5129. "interoperability",
  5130. "standards"
  5131. ],
  5132. "time": "2020-07-06T13:19:58+00:00"
  5133. },
  5134. {
  5135. "name": "symfony/filesystem",
  5136. "version": "v5.1.6",
  5137. "source": {
  5138. "type": "git",
  5139. "url": "https://github.com/symfony/filesystem.git",
  5140. "reference": "f3194303d3077829dbbc1d18f50288b2a01146f2"
  5141. },
  5142. "dist": {
  5143. "type": "zip",
  5144. "url": "https://api.github.com/repos/symfony/filesystem/zipball/f3194303d3077829dbbc1d18f50288b2a01146f2",
  5145. "reference": "f3194303d3077829dbbc1d18f50288b2a01146f2",
  5146. "shasum": "",
  5147. "mirrors": [
  5148. {
  5149. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5150. "preferred": true
  5151. }
  5152. ]
  5153. },
  5154. "require": {
  5155. "php": ">=7.2.5",
  5156. "symfony/polyfill-ctype": "~1.8"
  5157. },
  5158. "type": "library",
  5159. "extra": {
  5160. "branch-alias": {
  5161. "dev-master": "5.1-dev"
  5162. }
  5163. },
  5164. "autoload": {
  5165. "psr-4": {
  5166. "Symfony\\Component\\Filesystem\\": ""
  5167. },
  5168. "exclude-from-classmap": [
  5169. "/Tests/"
  5170. ]
  5171. },
  5172. "notification-url": "https://packagist.org/downloads/",
  5173. "license": [
  5174. "MIT"
  5175. ],
  5176. "authors": [
  5177. {
  5178. "name": "Fabien Potencier",
  5179. "email": "fabien@symfony.com"
  5180. },
  5181. {
  5182. "name": "Symfony Community",
  5183. "homepage": "https://symfony.com/contributors"
  5184. }
  5185. ],
  5186. "description": "Symfony Filesystem Component",
  5187. "homepage": "https://symfony.com",
  5188. "time": "2020-09-02T16:23:27+00:00"
  5189. },
  5190. {
  5191. "name": "symfony/finder",
  5192. "version": "v3.4.45",
  5193. "source": {
  5194. "type": "git",
  5195. "url": "https://github.com/symfony/finder.git",
  5196. "reference": "52140652ed31cee3dabd0c481b5577201fa769b4"
  5197. },
  5198. "dist": {
  5199. "type": "zip",
  5200. "url": "https://api.github.com/repos/symfony/finder/zipball/52140652ed31cee3dabd0c481b5577201fa769b4",
  5201. "reference": "52140652ed31cee3dabd0c481b5577201fa769b4",
  5202. "shasum": "",
  5203. "mirrors": [
  5204. {
  5205. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5206. "preferred": true
  5207. }
  5208. ]
  5209. },
  5210. "require": {
  5211. "php": "^5.5.9|>=7.0.8"
  5212. },
  5213. "type": "library",
  5214. "extra": {
  5215. "branch-alias": {
  5216. "dev-master": "3.4-dev"
  5217. }
  5218. },
  5219. "autoload": {
  5220. "psr-4": {
  5221. "Symfony\\Component\\Finder\\": ""
  5222. },
  5223. "exclude-from-classmap": [
  5224. "/Tests/"
  5225. ]
  5226. },
  5227. "notification-url": "https://packagist.org/downloads/",
  5228. "license": [
  5229. "MIT"
  5230. ],
  5231. "authors": [
  5232. {
  5233. "name": "Fabien Potencier",
  5234. "email": "fabien@symfony.com"
  5235. },
  5236. {
  5237. "name": "Symfony Community",
  5238. "homepage": "https://symfony.com/contributors"
  5239. }
  5240. ],
  5241. "description": "Symfony Finder Component",
  5242. "homepage": "https://symfony.com",
  5243. "time": "2020-09-02T16:06:40+00:00"
  5244. },
  5245. {
  5246. "name": "symfony/http-foundation",
  5247. "version": "v3.4.45",
  5248. "source": {
  5249. "type": "git",
  5250. "url": "https://github.com/symfony/http-foundation.git",
  5251. "reference": "2264e389995997d2786c1eeb0a45db8e77dac132"
  5252. },
  5253. "dist": {
  5254. "type": "zip",
  5255. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/2264e389995997d2786c1eeb0a45db8e77dac132",
  5256. "reference": "2264e389995997d2786c1eeb0a45db8e77dac132",
  5257. "shasum": "",
  5258. "mirrors": [
  5259. {
  5260. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5261. "preferred": true
  5262. }
  5263. ]
  5264. },
  5265. "require": {
  5266. "php": "^5.5.9|>=7.0.8",
  5267. "symfony/polyfill-mbstring": "~1.1",
  5268. "symfony/polyfill-php70": "~1.6"
  5269. },
  5270. "require-dev": {
  5271. "symfony/expression-language": "~2.8|~3.0|~4.0"
  5272. },
  5273. "type": "library",
  5274. "extra": {
  5275. "branch-alias": {
  5276. "dev-master": "3.4-dev"
  5277. }
  5278. },
  5279. "autoload": {
  5280. "psr-4": {
  5281. "Symfony\\Component\\HttpFoundation\\": ""
  5282. },
  5283. "exclude-from-classmap": [
  5284. "/Tests/"
  5285. ]
  5286. },
  5287. "notification-url": "https://packagist.org/downloads/",
  5288. "license": [
  5289. "MIT"
  5290. ],
  5291. "authors": [
  5292. {
  5293. "name": "Fabien Potencier",
  5294. "email": "fabien@symfony.com"
  5295. },
  5296. {
  5297. "name": "Symfony Community",
  5298. "homepage": "https://symfony.com/contributors"
  5299. }
  5300. ],
  5301. "description": "Symfony HttpFoundation Component",
  5302. "homepage": "https://symfony.com",
  5303. "time": "2020-09-12T20:41:00+00:00"
  5304. },
  5305. {
  5306. "name": "symfony/http-kernel",
  5307. "version": "v3.4.45",
  5308. "source": {
  5309. "type": "git",
  5310. "url": "https://github.com/symfony/http-kernel.git",
  5311. "reference": "1f09d9eec88dd6d141f4d37751bc035da6a47418"
  5312. },
  5313. "dist": {
  5314. "type": "zip",
  5315. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/1f09d9eec88dd6d141f4d37751bc035da6a47418",
  5316. "reference": "1f09d9eec88dd6d141f4d37751bc035da6a47418",
  5317. "shasum": "",
  5318. "mirrors": [
  5319. {
  5320. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5321. "preferred": true
  5322. }
  5323. ]
  5324. },
  5325. "require": {
  5326. "php": "^5.5.9|>=7.0.8",
  5327. "psr/log": "~1.0",
  5328. "symfony/debug": "^3.3.3|~4.0",
  5329. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  5330. "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1",
  5331. "symfony/polyfill-ctype": "~1.8",
  5332. "symfony/polyfill-php56": "~1.8"
  5333. },
  5334. "conflict": {
  5335. "symfony/config": "<2.8",
  5336. "symfony/dependency-injection": "<3.4.10|<4.0.10,>=4",
  5337. "symfony/var-dumper": "<3.3",
  5338. "twig/twig": "<1.34|<2.4,>=2"
  5339. },
  5340. "provide": {
  5341. "psr/log-implementation": "1.0"
  5342. },
  5343. "require-dev": {
  5344. "psr/cache": "~1.0",
  5345. "symfony/browser-kit": "~2.8|~3.0|~4.0",
  5346. "symfony/class-loader": "~2.8|~3.0",
  5347. "symfony/config": "~2.8|~3.0|~4.0",
  5348. "symfony/console": "~2.8|~3.0|~4.0",
  5349. "symfony/css-selector": "~2.8|~3.0|~4.0",
  5350. "symfony/dependency-injection": "^3.4.10|^4.0.10",
  5351. "symfony/dom-crawler": "~2.8|~3.0|~4.0",
  5352. "symfony/expression-language": "~2.8|~3.0|~4.0",
  5353. "symfony/finder": "~2.8|~3.0|~4.0",
  5354. "symfony/process": "~2.8|~3.0|~4.0",
  5355. "symfony/routing": "~3.4|~4.0",
  5356. "symfony/stopwatch": "~2.8|~3.0|~4.0",
  5357. "symfony/templating": "~2.8|~3.0|~4.0",
  5358. "symfony/translation": "~2.8|~3.0|~4.0",
  5359. "symfony/var-dumper": "~3.3|~4.0"
  5360. },
  5361. "suggest": {
  5362. "symfony/browser-kit": "",
  5363. "symfony/config": "",
  5364. "symfony/console": "",
  5365. "symfony/dependency-injection": "",
  5366. "symfony/finder": "",
  5367. "symfony/var-dumper": ""
  5368. },
  5369. "type": "library",
  5370. "extra": {
  5371. "branch-alias": {
  5372. "dev-master": "3.4-dev"
  5373. }
  5374. },
  5375. "autoload": {
  5376. "psr-4": {
  5377. "Symfony\\Component\\HttpKernel\\": ""
  5378. },
  5379. "exclude-from-classmap": [
  5380. "/Tests/"
  5381. ]
  5382. },
  5383. "notification-url": "https://packagist.org/downloads/",
  5384. "license": [
  5385. "MIT"
  5386. ],
  5387. "authors": [
  5388. {
  5389. "name": "Fabien Potencier",
  5390. "email": "fabien@symfony.com"
  5391. },
  5392. {
  5393. "name": "Symfony Community",
  5394. "homepage": "https://symfony.com/contributors"
  5395. }
  5396. ],
  5397. "description": "Symfony HttpKernel Component",
  5398. "homepage": "https://symfony.com",
  5399. "time": "2020-09-27T03:46:58+00:00"
  5400. },
  5401. {
  5402. "name": "symfony/polyfill-ctype",
  5403. "version": "v1.18.1",
  5404. "source": {
  5405. "type": "git",
  5406. "url": "https://github.com/symfony/polyfill-ctype.git",
  5407. "reference": "1c302646f6efc070cd46856e600e5e0684d6b454"
  5408. },
  5409. "dist": {
  5410. "type": "zip",
  5411. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/1c302646f6efc070cd46856e600e5e0684d6b454",
  5412. "reference": "1c302646f6efc070cd46856e600e5e0684d6b454",
  5413. "shasum": "",
  5414. "mirrors": [
  5415. {
  5416. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5417. "preferred": true
  5418. }
  5419. ]
  5420. },
  5421. "require": {
  5422. "php": ">=5.3.3"
  5423. },
  5424. "suggest": {
  5425. "ext-ctype": "For best performance"
  5426. },
  5427. "type": "library",
  5428. "extra": {
  5429. "branch-alias": {
  5430. "dev-master": "1.18-dev"
  5431. },
  5432. "thanks": {
  5433. "name": "symfony/polyfill",
  5434. "url": "https://github.com/symfony/polyfill"
  5435. }
  5436. },
  5437. "autoload": {
  5438. "psr-4": {
  5439. "Symfony\\Polyfill\\Ctype\\": ""
  5440. },
  5441. "files": [
  5442. "bootstrap.php"
  5443. ]
  5444. },
  5445. "notification-url": "https://packagist.org/downloads/",
  5446. "license": [
  5447. "MIT"
  5448. ],
  5449. "authors": [
  5450. {
  5451. "name": "Gert de Pagter",
  5452. "email": "BackEndTea@gmail.com"
  5453. },
  5454. {
  5455. "name": "Symfony Community",
  5456. "homepage": "https://symfony.com/contributors"
  5457. }
  5458. ],
  5459. "description": "Symfony polyfill for ctype functions",
  5460. "homepage": "https://symfony.com",
  5461. "keywords": [
  5462. "compatibility",
  5463. "ctype",
  5464. "polyfill",
  5465. "portable"
  5466. ],
  5467. "time": "2020-07-14T12:35:20+00:00"
  5468. },
  5469. {
  5470. "name": "symfony/polyfill-iconv",
  5471. "version": "v1.18.1",
  5472. "source": {
  5473. "type": "git",
  5474. "url": "https://github.com/symfony/polyfill-iconv.git",
  5475. "reference": "6c2f78eb8f5ab8eaea98f6d414a5915f2e0fce36"
  5476. },
  5477. "dist": {
  5478. "type": "zip",
  5479. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/6c2f78eb8f5ab8eaea98f6d414a5915f2e0fce36",
  5480. "reference": "6c2f78eb8f5ab8eaea98f6d414a5915f2e0fce36",
  5481. "shasum": "",
  5482. "mirrors": [
  5483. {
  5484. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5485. "preferred": true
  5486. }
  5487. ]
  5488. },
  5489. "require": {
  5490. "php": ">=5.3.3"
  5491. },
  5492. "suggest": {
  5493. "ext-iconv": "For best performance"
  5494. },
  5495. "type": "library",
  5496. "extra": {
  5497. "branch-alias": {
  5498. "dev-master": "1.18-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\\Iconv\\": ""
  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": "Nicolas Grekas",
  5520. "email": "p@tchwork.com"
  5521. },
  5522. {
  5523. "name": "Symfony Community",
  5524. "homepage": "https://symfony.com/contributors"
  5525. }
  5526. ],
  5527. "description": "Symfony polyfill for the Iconv extension",
  5528. "homepage": "https://symfony.com",
  5529. "keywords": [
  5530. "compatibility",
  5531. "iconv",
  5532. "polyfill",
  5533. "portable",
  5534. "shim"
  5535. ],
  5536. "time": "2020-07-14T12:35:20+00:00"
  5537. },
  5538. {
  5539. "name": "symfony/polyfill-intl-idn",
  5540. "version": "v1.18.1",
  5541. "source": {
  5542. "type": "git",
  5543. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5544. "reference": "5dcab1bc7146cf8c1beaa4502a3d9be344334251"
  5545. },
  5546. "dist": {
  5547. "type": "zip",
  5548. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/5dcab1bc7146cf8c1beaa4502a3d9be344334251",
  5549. "reference": "5dcab1bc7146cf8c1beaa4502a3d9be344334251",
  5550. "shasum": "",
  5551. "mirrors": [
  5552. {
  5553. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5554. "preferred": true
  5555. }
  5556. ]
  5557. },
  5558. "require": {
  5559. "php": ">=5.3.3",
  5560. "symfony/polyfill-intl-normalizer": "^1.10",
  5561. "symfony/polyfill-php70": "^1.10",
  5562. "symfony/polyfill-php72": "^1.10"
  5563. },
  5564. "suggest": {
  5565. "ext-intl": "For best performance"
  5566. },
  5567. "type": "library",
  5568. "extra": {
  5569. "branch-alias": {
  5570. "dev-master": "1.18-dev"
  5571. },
  5572. "thanks": {
  5573. "name": "symfony/polyfill",
  5574. "url": "https://github.com/symfony/polyfill"
  5575. }
  5576. },
  5577. "autoload": {
  5578. "psr-4": {
  5579. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5580. },
  5581. "files": [
  5582. "bootstrap.php"
  5583. ]
  5584. },
  5585. "notification-url": "https://packagist.org/downloads/",
  5586. "license": [
  5587. "MIT"
  5588. ],
  5589. "authors": [
  5590. {
  5591. "name": "Laurent Bassin",
  5592. "email": "laurent@bassin.info"
  5593. },
  5594. {
  5595. "name": "Trevor Rowbotham",
  5596. "email": "trevor.rowbotham@pm.me"
  5597. },
  5598. {
  5599. "name": "Symfony Community",
  5600. "homepage": "https://symfony.com/contributors"
  5601. }
  5602. ],
  5603. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5604. "homepage": "https://symfony.com",
  5605. "keywords": [
  5606. "compatibility",
  5607. "idn",
  5608. "intl",
  5609. "polyfill",
  5610. "portable",
  5611. "shim"
  5612. ],
  5613. "time": "2020-08-04T06:02:08+00:00"
  5614. },
  5615. {
  5616. "name": "symfony/polyfill-intl-normalizer",
  5617. "version": "v1.18.1",
  5618. "source": {
  5619. "type": "git",
  5620. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5621. "reference": "37078a8dd4a2a1e9ab0231af7c6cb671b2ed5a7e"
  5622. },
  5623. "dist": {
  5624. "type": "zip",
  5625. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/37078a8dd4a2a1e9ab0231af7c6cb671b2ed5a7e",
  5626. "reference": "37078a8dd4a2a1e9ab0231af7c6cb671b2ed5a7e",
  5627. "shasum": "",
  5628. "mirrors": [
  5629. {
  5630. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5631. "preferred": true
  5632. }
  5633. ]
  5634. },
  5635. "require": {
  5636. "php": ">=5.3.3"
  5637. },
  5638. "suggest": {
  5639. "ext-intl": "For best performance"
  5640. },
  5641. "type": "library",
  5642. "extra": {
  5643. "branch-alias": {
  5644. "dev-master": "1.18-dev"
  5645. },
  5646. "thanks": {
  5647. "name": "symfony/polyfill",
  5648. "url": "https://github.com/symfony/polyfill"
  5649. }
  5650. },
  5651. "autoload": {
  5652. "psr-4": {
  5653. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5654. },
  5655. "files": [
  5656. "bootstrap.php"
  5657. ],
  5658. "classmap": [
  5659. "Resources/stubs"
  5660. ]
  5661. },
  5662. "notification-url": "https://packagist.org/downloads/",
  5663. "license": [
  5664. "MIT"
  5665. ],
  5666. "authors": [
  5667. {
  5668. "name": "Nicolas Grekas",
  5669. "email": "p@tchwork.com"
  5670. },
  5671. {
  5672. "name": "Symfony Community",
  5673. "homepage": "https://symfony.com/contributors"
  5674. }
  5675. ],
  5676. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5677. "homepage": "https://symfony.com",
  5678. "keywords": [
  5679. "compatibility",
  5680. "intl",
  5681. "normalizer",
  5682. "polyfill",
  5683. "portable",
  5684. "shim"
  5685. ],
  5686. "time": "2020-07-14T12:35:20+00:00"
  5687. },
  5688. {
  5689. "name": "symfony/polyfill-mbstring",
  5690. "version": "v1.18.1",
  5691. "source": {
  5692. "type": "git",
  5693. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5694. "reference": "a6977d63bf9a0ad4c65cd352709e230876f9904a"
  5695. },
  5696. "dist": {
  5697. "type": "zip",
  5698. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/a6977d63bf9a0ad4c65cd352709e230876f9904a",
  5699. "reference": "a6977d63bf9a0ad4c65cd352709e230876f9904a",
  5700. "shasum": "",
  5701. "mirrors": [
  5702. {
  5703. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5704. "preferred": true
  5705. }
  5706. ]
  5707. },
  5708. "require": {
  5709. "php": ">=5.3.3"
  5710. },
  5711. "suggest": {
  5712. "ext-mbstring": "For best performance"
  5713. },
  5714. "type": "library",
  5715. "extra": {
  5716. "branch-alias": {
  5717. "dev-master": "1.18-dev"
  5718. },
  5719. "thanks": {
  5720. "name": "symfony/polyfill",
  5721. "url": "https://github.com/symfony/polyfill"
  5722. }
  5723. },
  5724. "autoload": {
  5725. "psr-4": {
  5726. "Symfony\\Polyfill\\Mbstring\\": ""
  5727. },
  5728. "files": [
  5729. "bootstrap.php"
  5730. ]
  5731. },
  5732. "notification-url": "https://packagist.org/downloads/",
  5733. "license": [
  5734. "MIT"
  5735. ],
  5736. "authors": [
  5737. {
  5738. "name": "Nicolas Grekas",
  5739. "email": "p@tchwork.com"
  5740. },
  5741. {
  5742. "name": "Symfony Community",
  5743. "homepage": "https://symfony.com/contributors"
  5744. }
  5745. ],
  5746. "description": "Symfony polyfill for the Mbstring extension",
  5747. "homepage": "https://symfony.com",
  5748. "keywords": [
  5749. "compatibility",
  5750. "mbstring",
  5751. "polyfill",
  5752. "portable",
  5753. "shim"
  5754. ],
  5755. "time": "2020-07-14T12:35:20+00:00"
  5756. },
  5757. {
  5758. "name": "symfony/polyfill-php56",
  5759. "version": "v1.18.1",
  5760. "source": {
  5761. "type": "git",
  5762. "url": "https://github.com/symfony/polyfill-php56.git",
  5763. "reference": "13df84e91cd168f247c2f2ec82cc0fa24901c011"
  5764. },
  5765. "dist": {
  5766. "type": "zip",
  5767. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/13df84e91cd168f247c2f2ec82cc0fa24901c011",
  5768. "reference": "13df84e91cd168f247c2f2ec82cc0fa24901c011",
  5769. "shasum": "",
  5770. "mirrors": [
  5771. {
  5772. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5773. "preferred": true
  5774. }
  5775. ]
  5776. },
  5777. "require": {
  5778. "php": ">=5.3.3",
  5779. "symfony/polyfill-util": "~1.0"
  5780. },
  5781. "type": "library",
  5782. "extra": {
  5783. "branch-alias": {
  5784. "dev-master": "1.18-dev"
  5785. },
  5786. "thanks": {
  5787. "name": "symfony/polyfill",
  5788. "url": "https://github.com/symfony/polyfill"
  5789. }
  5790. },
  5791. "autoload": {
  5792. "psr-4": {
  5793. "Symfony\\Polyfill\\Php56\\": ""
  5794. },
  5795. "files": [
  5796. "bootstrap.php"
  5797. ]
  5798. },
  5799. "notification-url": "https://packagist.org/downloads/",
  5800. "license": [
  5801. "MIT"
  5802. ],
  5803. "authors": [
  5804. {
  5805. "name": "Nicolas Grekas",
  5806. "email": "p@tchwork.com"
  5807. },
  5808. {
  5809. "name": "Symfony Community",
  5810. "homepage": "https://symfony.com/contributors"
  5811. }
  5812. ],
  5813. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  5814. "homepage": "https://symfony.com",
  5815. "keywords": [
  5816. "compatibility",
  5817. "polyfill",
  5818. "portable",
  5819. "shim"
  5820. ],
  5821. "time": "2020-07-14T12:35:20+00:00"
  5822. },
  5823. {
  5824. "name": "symfony/polyfill-php70",
  5825. "version": "v1.18.1",
  5826. "source": {
  5827. "type": "git",
  5828. "url": "https://github.com/symfony/polyfill-php70.git",
  5829. "reference": "0dd93f2c578bdc9c72697eaa5f1dd25644e618d3"
  5830. },
  5831. "dist": {
  5832. "type": "zip",
  5833. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/0dd93f2c578bdc9c72697eaa5f1dd25644e618d3",
  5834. "reference": "0dd93f2c578bdc9c72697eaa5f1dd25644e618d3",
  5835. "shasum": "",
  5836. "mirrors": [
  5837. {
  5838. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5839. "preferred": true
  5840. }
  5841. ]
  5842. },
  5843. "require": {
  5844. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  5845. "php": ">=5.3.3"
  5846. },
  5847. "type": "library",
  5848. "extra": {
  5849. "branch-alias": {
  5850. "dev-master": "1.18-dev"
  5851. },
  5852. "thanks": {
  5853. "name": "symfony/polyfill",
  5854. "url": "https://github.com/symfony/polyfill"
  5855. }
  5856. },
  5857. "autoload": {
  5858. "psr-4": {
  5859. "Symfony\\Polyfill\\Php70\\": ""
  5860. },
  5861. "files": [
  5862. "bootstrap.php"
  5863. ],
  5864. "classmap": [
  5865. "Resources/stubs"
  5866. ]
  5867. },
  5868. "notification-url": "https://packagist.org/downloads/",
  5869. "license": [
  5870. "MIT"
  5871. ],
  5872. "authors": [
  5873. {
  5874. "name": "Nicolas Grekas",
  5875. "email": "p@tchwork.com"
  5876. },
  5877. {
  5878. "name": "Symfony Community",
  5879. "homepage": "https://symfony.com/contributors"
  5880. }
  5881. ],
  5882. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  5883. "homepage": "https://symfony.com",
  5884. "keywords": [
  5885. "compatibility",
  5886. "polyfill",
  5887. "portable",
  5888. "shim"
  5889. ],
  5890. "time": "2020-07-14T12:35:20+00:00"
  5891. },
  5892. {
  5893. "name": "symfony/polyfill-php72",
  5894. "version": "v1.18.1",
  5895. "source": {
  5896. "type": "git",
  5897. "url": "https://github.com/symfony/polyfill-php72.git",
  5898. "reference": "639447d008615574653fb3bc60d1986d7172eaae"
  5899. },
  5900. "dist": {
  5901. "type": "zip",
  5902. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/639447d008615574653fb3bc60d1986d7172eaae",
  5903. "reference": "639447d008615574653fb3bc60d1986d7172eaae",
  5904. "shasum": "",
  5905. "mirrors": [
  5906. {
  5907. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5908. "preferred": true
  5909. }
  5910. ]
  5911. },
  5912. "require": {
  5913. "php": ">=5.3.3"
  5914. },
  5915. "type": "library",
  5916. "extra": {
  5917. "branch-alias": {
  5918. "dev-master": "1.18-dev"
  5919. },
  5920. "thanks": {
  5921. "name": "symfony/polyfill",
  5922. "url": "https://github.com/symfony/polyfill"
  5923. }
  5924. },
  5925. "autoload": {
  5926. "psr-4": {
  5927. "Symfony\\Polyfill\\Php72\\": ""
  5928. },
  5929. "files": [
  5930. "bootstrap.php"
  5931. ]
  5932. },
  5933. "notification-url": "https://packagist.org/downloads/",
  5934. "license": [
  5935. "MIT"
  5936. ],
  5937. "authors": [
  5938. {
  5939. "name": "Nicolas Grekas",
  5940. "email": "p@tchwork.com"
  5941. },
  5942. {
  5943. "name": "Symfony Community",
  5944. "homepage": "https://symfony.com/contributors"
  5945. }
  5946. ],
  5947. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  5948. "homepage": "https://symfony.com",
  5949. "keywords": [
  5950. "compatibility",
  5951. "polyfill",
  5952. "portable",
  5953. "shim"
  5954. ],
  5955. "time": "2020-07-14T12:35:20+00:00"
  5956. },
  5957. {
  5958. "name": "symfony/polyfill-util",
  5959. "version": "v1.18.1",
  5960. "source": {
  5961. "type": "git",
  5962. "url": "https://github.com/symfony/polyfill-util.git",
  5963. "reference": "46b910c71e9828f8ec2aa7a0314de1130d9b295a"
  5964. },
  5965. "dist": {
  5966. "type": "zip",
  5967. "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/46b910c71e9828f8ec2aa7a0314de1130d9b295a",
  5968. "reference": "46b910c71e9828f8ec2aa7a0314de1130d9b295a",
  5969. "shasum": "",
  5970. "mirrors": [
  5971. {
  5972. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5973. "preferred": true
  5974. }
  5975. ]
  5976. },
  5977. "require": {
  5978. "php": ">=5.3.3"
  5979. },
  5980. "type": "library",
  5981. "extra": {
  5982. "branch-alias": {
  5983. "dev-master": "1.18-dev"
  5984. },
  5985. "thanks": {
  5986. "name": "symfony/polyfill",
  5987. "url": "https://github.com/symfony/polyfill"
  5988. }
  5989. },
  5990. "autoload": {
  5991. "psr-4": {
  5992. "Symfony\\Polyfill\\Util\\": ""
  5993. }
  5994. },
  5995. "notification-url": "https://packagist.org/downloads/",
  5996. "license": [
  5997. "MIT"
  5998. ],
  5999. "authors": [
  6000. {
  6001. "name": "Nicolas Grekas",
  6002. "email": "p@tchwork.com"
  6003. },
  6004. {
  6005. "name": "Symfony Community",
  6006. "homepage": "https://symfony.com/contributors"
  6007. }
  6008. ],
  6009. "description": "Symfony utilities for portability of PHP codes",
  6010. "homepage": "https://symfony.com",
  6011. "keywords": [
  6012. "compat",
  6013. "compatibility",
  6014. "polyfill",
  6015. "shim"
  6016. ],
  6017. "time": "2020-07-14T12:35:20+00:00"
  6018. },
  6019. {
  6020. "name": "symfony/process",
  6021. "version": "v3.4.45",
  6022. "source": {
  6023. "type": "git",
  6024. "url": "https://github.com/symfony/process.git",
  6025. "reference": "46a862d0f334e51c1ed831b49cbe12863ffd5475"
  6026. },
  6027. "dist": {
  6028. "type": "zip",
  6029. "url": "https://api.github.com/repos/symfony/process/zipball/46a862d0f334e51c1ed831b49cbe12863ffd5475",
  6030. "reference": "46a862d0f334e51c1ed831b49cbe12863ffd5475",
  6031. "shasum": "",
  6032. "mirrors": [
  6033. {
  6034. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6035. "preferred": true
  6036. }
  6037. ]
  6038. },
  6039. "require": {
  6040. "php": "^5.5.9|>=7.0.8"
  6041. },
  6042. "type": "library",
  6043. "extra": {
  6044. "branch-alias": {
  6045. "dev-master": "3.4-dev"
  6046. }
  6047. },
  6048. "autoload": {
  6049. "psr-4": {
  6050. "Symfony\\Component\\Process\\": ""
  6051. },
  6052. "exclude-from-classmap": [
  6053. "/Tests/"
  6054. ]
  6055. },
  6056. "notification-url": "https://packagist.org/downloads/",
  6057. "license": [
  6058. "MIT"
  6059. ],
  6060. "authors": [
  6061. {
  6062. "name": "Fabien Potencier",
  6063. "email": "fabien@symfony.com"
  6064. },
  6065. {
  6066. "name": "Symfony Community",
  6067. "homepage": "https://symfony.com/contributors"
  6068. }
  6069. ],
  6070. "description": "Symfony Process Component",
  6071. "homepage": "https://symfony.com",
  6072. "time": "2020-09-02T16:06:40+00:00"
  6073. },
  6074. {
  6075. "name": "symfony/psr-http-message-bridge",
  6076. "version": "v1.2.0",
  6077. "source": {
  6078. "type": "git",
  6079. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  6080. "reference": "9ab9d71f97d5c7d35a121a7fb69f74fee95cd0ad"
  6081. },
  6082. "dist": {
  6083. "type": "zip",
  6084. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/9ab9d71f97d5c7d35a121a7fb69f74fee95cd0ad",
  6085. "reference": "9ab9d71f97d5c7d35a121a7fb69f74fee95cd0ad",
  6086. "shasum": "",
  6087. "mirrors": [
  6088. {
  6089. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6090. "preferred": true
  6091. }
  6092. ]
  6093. },
  6094. "require": {
  6095. "php": "^7.1",
  6096. "psr/http-message": "^1.0",
  6097. "symfony/http-foundation": "^3.4 || ^4.0"
  6098. },
  6099. "require-dev": {
  6100. "nyholm/psr7": "^1.1",
  6101. "symfony/phpunit-bridge": "^3.4.20 || ^4.0",
  6102. "zendframework/zend-diactoros": "^1.4.1 || ^2.0"
  6103. },
  6104. "suggest": {
  6105. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  6106. },
  6107. "type": "symfony-bridge",
  6108. "extra": {
  6109. "branch-alias": {
  6110. "dev-master": "1.2-dev"
  6111. }
  6112. },
  6113. "autoload": {
  6114. "psr-4": {
  6115. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  6116. },
  6117. "exclude-from-classmap": [
  6118. "/Tests/"
  6119. ]
  6120. },
  6121. "notification-url": "https://packagist.org/downloads/",
  6122. "license": [
  6123. "MIT"
  6124. ],
  6125. "authors": [
  6126. {
  6127. "name": "Symfony Community",
  6128. "homepage": "http://symfony.com/contributors"
  6129. },
  6130. {
  6131. "name": "Fabien Potencier",
  6132. "email": "fabien@symfony.com"
  6133. }
  6134. ],
  6135. "description": "PSR HTTP message bridge",
  6136. "homepage": "http://symfony.com",
  6137. "keywords": [
  6138. "http",
  6139. "http-message",
  6140. "psr-17",
  6141. "psr-7"
  6142. ],
  6143. "time": "2019-03-11T18:22:33+00:00"
  6144. },
  6145. {
  6146. "name": "symfony/routing",
  6147. "version": "v3.4.45",
  6148. "source": {
  6149. "type": "git",
  6150. "url": "https://github.com/symfony/routing.git",
  6151. "reference": "9c62272ecc68d1a055ded693a5b47683300fa213"
  6152. },
  6153. "dist": {
  6154. "type": "zip",
  6155. "url": "https://api.github.com/repos/symfony/routing/zipball/9c62272ecc68d1a055ded693a5b47683300fa213",
  6156. "reference": "9c62272ecc68d1a055ded693a5b47683300fa213",
  6157. "shasum": "",
  6158. "mirrors": [
  6159. {
  6160. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6161. "preferred": true
  6162. }
  6163. ]
  6164. },
  6165. "require": {
  6166. "php": "^5.5.9|>=7.0.8"
  6167. },
  6168. "conflict": {
  6169. "symfony/config": "<3.3.1",
  6170. "symfony/dependency-injection": "<3.3",
  6171. "symfony/yaml": "<3.4"
  6172. },
  6173. "require-dev": {
  6174. "doctrine/annotations": "~1.0",
  6175. "psr/log": "~1.0",
  6176. "symfony/config": "^3.3.1|~4.0",
  6177. "symfony/dependency-injection": "~3.3|~4.0",
  6178. "symfony/expression-language": "~2.8|~3.0|~4.0",
  6179. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  6180. "symfony/yaml": "~3.4|~4.0"
  6181. },
  6182. "suggest": {
  6183. "doctrine/annotations": "For using the annotation loader",
  6184. "symfony/config": "For using the all-in-one router or any loader",
  6185. "symfony/expression-language": "For using expression matching",
  6186. "symfony/http-foundation": "For using a Symfony Request object",
  6187. "symfony/yaml": "For using the YAML loader"
  6188. },
  6189. "type": "library",
  6190. "extra": {
  6191. "branch-alias": {
  6192. "dev-master": "3.4-dev"
  6193. }
  6194. },
  6195. "autoload": {
  6196. "psr-4": {
  6197. "Symfony\\Component\\Routing\\": ""
  6198. },
  6199. "exclude-from-classmap": [
  6200. "/Tests/"
  6201. ]
  6202. },
  6203. "notification-url": "https://packagist.org/downloads/",
  6204. "license": [
  6205. "MIT"
  6206. ],
  6207. "authors": [
  6208. {
  6209. "name": "Fabien Potencier",
  6210. "email": "fabien@symfony.com"
  6211. },
  6212. {
  6213. "name": "Symfony Community",
  6214. "homepage": "https://symfony.com/contributors"
  6215. }
  6216. ],
  6217. "description": "Symfony Routing Component",
  6218. "homepage": "https://symfony.com",
  6219. "keywords": [
  6220. "router",
  6221. "routing",
  6222. "uri",
  6223. "url"
  6224. ],
  6225. "time": "2020-09-02T16:06:40+00:00"
  6226. },
  6227. {
  6228. "name": "symfony/service-contracts",
  6229. "version": "v1.1.9",
  6230. "source": {
  6231. "type": "git",
  6232. "url": "https://github.com/symfony/service-contracts.git",
  6233. "reference": "b776d18b303a39f56c63747bcb977ad4b27aca26"
  6234. },
  6235. "dist": {
  6236. "type": "zip",
  6237. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/b776d18b303a39f56c63747bcb977ad4b27aca26",
  6238. "reference": "b776d18b303a39f56c63747bcb977ad4b27aca26",
  6239. "shasum": "",
  6240. "mirrors": [
  6241. {
  6242. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6243. "preferred": true
  6244. }
  6245. ]
  6246. },
  6247. "require": {
  6248. "php": ">=7.1.3",
  6249. "psr/container": "^1.0"
  6250. },
  6251. "suggest": {
  6252. "symfony/service-implementation": ""
  6253. },
  6254. "type": "library",
  6255. "extra": {
  6256. "branch-alias": {
  6257. "dev-master": "1.1-dev"
  6258. },
  6259. "thanks": {
  6260. "name": "symfony/contracts",
  6261. "url": "https://github.com/symfony/contracts"
  6262. }
  6263. },
  6264. "autoload": {
  6265. "psr-4": {
  6266. "Symfony\\Contracts\\Service\\": ""
  6267. }
  6268. },
  6269. "notification-url": "https://packagist.org/downloads/",
  6270. "license": [
  6271. "MIT"
  6272. ],
  6273. "authors": [
  6274. {
  6275. "name": "Nicolas Grekas",
  6276. "email": "p@tchwork.com"
  6277. },
  6278. {
  6279. "name": "Symfony Community",
  6280. "homepage": "https://symfony.com/contributors"
  6281. }
  6282. ],
  6283. "description": "Generic abstractions related to writing services",
  6284. "homepage": "https://symfony.com",
  6285. "keywords": [
  6286. "abstractions",
  6287. "contracts",
  6288. "decoupling",
  6289. "interfaces",
  6290. "interoperability",
  6291. "standards"
  6292. ],
  6293. "time": "2020-07-06T13:19:58+00:00"
  6294. },
  6295. {
  6296. "name": "symfony/translation",
  6297. "version": "v4.3.11",
  6298. "source": {
  6299. "type": "git",
  6300. "url": "https://github.com/symfony/translation.git",
  6301. "reference": "46e462be71935ae15eab531e4d491d801857f24c"
  6302. },
  6303. "dist": {
  6304. "type": "zip",
  6305. "url": "https://api.github.com/repos/symfony/translation/zipball/46e462be71935ae15eab531e4d491d801857f24c",
  6306. "reference": "46e462be71935ae15eab531e4d491d801857f24c",
  6307. "shasum": "",
  6308. "mirrors": [
  6309. {
  6310. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6311. "preferred": true
  6312. }
  6313. ]
  6314. },
  6315. "require": {
  6316. "php": "^7.1.3",
  6317. "symfony/polyfill-mbstring": "~1.0",
  6318. "symfony/translation-contracts": "^1.1.6"
  6319. },
  6320. "conflict": {
  6321. "symfony/config": "<3.4",
  6322. "symfony/dependency-injection": "<3.4",
  6323. "symfony/yaml": "<3.4"
  6324. },
  6325. "provide": {
  6326. "symfony/translation-implementation": "1.0"
  6327. },
  6328. "require-dev": {
  6329. "psr/log": "~1.0",
  6330. "symfony/config": "~3.4|~4.0",
  6331. "symfony/console": "~3.4|~4.0",
  6332. "symfony/dependency-injection": "~3.4|~4.0",
  6333. "symfony/finder": "~2.8|~3.0|~4.0",
  6334. "symfony/http-kernel": "~3.4|~4.0",
  6335. "symfony/intl": "~3.4|~4.0",
  6336. "symfony/service-contracts": "^1.1.2",
  6337. "symfony/var-dumper": "~3.4|~4.0",
  6338. "symfony/yaml": "~3.4|~4.0"
  6339. },
  6340. "suggest": {
  6341. "psr/log-implementation": "To use logging capability in translator",
  6342. "symfony/config": "",
  6343. "symfony/yaml": ""
  6344. },
  6345. "type": "library",
  6346. "extra": {
  6347. "branch-alias": {
  6348. "dev-master": "4.3-dev"
  6349. }
  6350. },
  6351. "autoload": {
  6352. "psr-4": {
  6353. "Symfony\\Component\\Translation\\": ""
  6354. },
  6355. "exclude-from-classmap": [
  6356. "/Tests/"
  6357. ]
  6358. },
  6359. "notification-url": "https://packagist.org/downloads/",
  6360. "license": [
  6361. "MIT"
  6362. ],
  6363. "authors": [
  6364. {
  6365. "name": "Fabien Potencier",
  6366. "email": "fabien@symfony.com"
  6367. },
  6368. {
  6369. "name": "Symfony Community",
  6370. "homepage": "https://symfony.com/contributors"
  6371. }
  6372. ],
  6373. "description": "Symfony Translation Component",
  6374. "homepage": "https://symfony.com",
  6375. "time": "2020-01-04T12:24:57+00:00"
  6376. },
  6377. {
  6378. "name": "symfony/translation-contracts",
  6379. "version": "v1.1.10",
  6380. "source": {
  6381. "type": "git",
  6382. "url": "https://github.com/symfony/translation-contracts.git",
  6383. "reference": "84180a25fad31e23bebd26ca09d89464f082cacc"
  6384. },
  6385. "dist": {
  6386. "type": "zip",
  6387. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/84180a25fad31e23bebd26ca09d89464f082cacc",
  6388. "reference": "84180a25fad31e23bebd26ca09d89464f082cacc",
  6389. "shasum": "",
  6390. "mirrors": [
  6391. {
  6392. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6393. "preferred": true
  6394. }
  6395. ]
  6396. },
  6397. "require": {
  6398. "php": ">=7.1.3"
  6399. },
  6400. "suggest": {
  6401. "symfony/translation-implementation": ""
  6402. },
  6403. "type": "library",
  6404. "extra": {
  6405. "branch-alias": {
  6406. "dev-master": "1.1-dev"
  6407. },
  6408. "thanks": {
  6409. "name": "symfony/contracts",
  6410. "url": "https://github.com/symfony/contracts"
  6411. }
  6412. },
  6413. "autoload": {
  6414. "psr-4": {
  6415. "Symfony\\Contracts\\Translation\\": ""
  6416. }
  6417. },
  6418. "notification-url": "https://packagist.org/downloads/",
  6419. "license": [
  6420. "MIT"
  6421. ],
  6422. "authors": [
  6423. {
  6424. "name": "Nicolas Grekas",
  6425. "email": "p@tchwork.com"
  6426. },
  6427. {
  6428. "name": "Symfony Community",
  6429. "homepage": "https://symfony.com/contributors"
  6430. }
  6431. ],
  6432. "description": "Generic abstractions related to translation",
  6433. "homepage": "https://symfony.com",
  6434. "keywords": [
  6435. "abstractions",
  6436. "contracts",
  6437. "decoupling",
  6438. "interfaces",
  6439. "interoperability",
  6440. "standards"
  6441. ],
  6442. "time": "2020-09-02T16:08:58+00:00"
  6443. },
  6444. {
  6445. "name": "symfony/var-dumper",
  6446. "version": "v3.4.45",
  6447. "source": {
  6448. "type": "git",
  6449. "url": "https://github.com/symfony/var-dumper.git",
  6450. "reference": "df8fe9c1c5dc3eb968db32ffa6b699d89fee2606"
  6451. },
  6452. "dist": {
  6453. "type": "zip",
  6454. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/df8fe9c1c5dc3eb968db32ffa6b699d89fee2606",
  6455. "reference": "df8fe9c1c5dc3eb968db32ffa6b699d89fee2606",
  6456. "shasum": "",
  6457. "mirrors": [
  6458. {
  6459. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6460. "preferred": true
  6461. }
  6462. ]
  6463. },
  6464. "require": {
  6465. "php": "^5.5.9|>=7.0.8",
  6466. "symfony/polyfill-mbstring": "~1.0"
  6467. },
  6468. "conflict": {
  6469. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  6470. },
  6471. "require-dev": {
  6472. "ext-iconv": "*",
  6473. "twig/twig": "~1.34|~2.4"
  6474. },
  6475. "suggest": {
  6476. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  6477. "ext-intl": "To show region name in time zone dump",
  6478. "ext-symfony_debug": ""
  6479. },
  6480. "type": "library",
  6481. "extra": {
  6482. "branch-alias": {
  6483. "dev-master": "3.4-dev"
  6484. }
  6485. },
  6486. "autoload": {
  6487. "files": [
  6488. "Resources/functions/dump.php"
  6489. ],
  6490. "psr-4": {
  6491. "Symfony\\Component\\VarDumper\\": ""
  6492. },
  6493. "exclude-from-classmap": [
  6494. "/Tests/"
  6495. ]
  6496. },
  6497. "notification-url": "https://packagist.org/downloads/",
  6498. "license": [
  6499. "MIT"
  6500. ],
  6501. "authors": [
  6502. {
  6503. "name": "Nicolas Grekas",
  6504. "email": "p@tchwork.com"
  6505. },
  6506. {
  6507. "name": "Symfony Community",
  6508. "homepage": "https://symfony.com/contributors"
  6509. }
  6510. ],
  6511. "description": "Symfony mechanism for exploring and dumping PHP variables",
  6512. "homepage": "https://symfony.com",
  6513. "keywords": [
  6514. "debug",
  6515. "dump"
  6516. ],
  6517. "time": "2020-09-18T08:10:16+00:00"
  6518. },
  6519. {
  6520. "name": "symfony/var-exporter",
  6521. "version": "v4.4.14",
  6522. "source": {
  6523. "type": "git",
  6524. "url": "https://github.com/symfony/var-exporter.git",
  6525. "reference": "bb6c505d1492bf55534184c0a38826bda529e5e2"
  6526. },
  6527. "dist": {
  6528. "type": "zip",
  6529. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/bb6c505d1492bf55534184c0a38826bda529e5e2",
  6530. "reference": "bb6c505d1492bf55534184c0a38826bda529e5e2",
  6531. "shasum": "",
  6532. "mirrors": [
  6533. {
  6534. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6535. "preferred": true
  6536. }
  6537. ]
  6538. },
  6539. "require": {
  6540. "php": ">=7.1.3"
  6541. },
  6542. "require-dev": {
  6543. "symfony/var-dumper": "^4.4.9|^5.0.9"
  6544. },
  6545. "type": "library",
  6546. "extra": {
  6547. "branch-alias": {
  6548. "dev-master": "4.4-dev"
  6549. }
  6550. },
  6551. "autoload": {
  6552. "psr-4": {
  6553. "Symfony\\Component\\VarExporter\\": ""
  6554. },
  6555. "exclude-from-classmap": [
  6556. "/Tests/"
  6557. ]
  6558. },
  6559. "notification-url": "https://packagist.org/downloads/",
  6560. "license": [
  6561. "MIT"
  6562. ],
  6563. "authors": [
  6564. {
  6565. "name": "Nicolas Grekas",
  6566. "email": "p@tchwork.com"
  6567. },
  6568. {
  6569. "name": "Symfony Community",
  6570. "homepage": "https://symfony.com/contributors"
  6571. }
  6572. ],
  6573. "description": "A blend of var_export() + serialize() to turn any serializable data structure to plain PHP code",
  6574. "homepage": "https://symfony.com",
  6575. "keywords": [
  6576. "clone",
  6577. "construct",
  6578. "export",
  6579. "hydrate",
  6580. "instantiate",
  6581. "serialize"
  6582. ],
  6583. "time": "2020-09-07T21:10:21+00:00"
  6584. },
  6585. {
  6586. "name": "tencentcloud/tencentcloud-sdk-php",
  6587. "version": "3.0.319",
  6588. "source": {
  6589. "type": "git",
  6590. "url": "https://github.com/TencentCloud/tencentcloud-sdk-php.git",
  6591. "reference": "647e6e408d6b45e201a3b958387eec5c18133448"
  6592. },
  6593. "dist": {
  6594. "type": "zip",
  6595. "url": "https://api.github.com/repos/TencentCloud/tencentcloud-sdk-php/zipball/647e6e408d6b45e201a3b958387eec5c18133448",
  6596. "reference": "647e6e408d6b45e201a3b958387eec5c18133448",
  6597. "shasum": "",
  6598. "mirrors": [
  6599. {
  6600. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6601. "preferred": true
  6602. }
  6603. ]
  6604. },
  6605. "require": {
  6606. "guzzlehttp/guzzle": "^6.3 || ^7.0.1",
  6607. "guzzlehttp/psr7": "^1.4",
  6608. "php": ">=5.6.0"
  6609. },
  6610. "type": "library",
  6611. "autoload": {
  6612. "classmap": [
  6613. "src/QcloudApi/QcloudApi.php"
  6614. ],
  6615. "psr-4": {
  6616. "TencentCloud\\": "./src/TencentCloud"
  6617. }
  6618. },
  6619. "notification-url": "https://packagist.org/downloads/",
  6620. "license": [
  6621. "Apache-2.0"
  6622. ],
  6623. "authors": [
  6624. {
  6625. "name": "coolli",
  6626. "email": "tencentcloudapi@tencent.com",
  6627. "homepage": "https://cloud.tencent.com/document/sdk/PHP",
  6628. "role": "Developer"
  6629. }
  6630. ],
  6631. "description": "TencentCloudApi php sdk",
  6632. "homepage": "https://github.com/TencentCloud/tencentcloud-sdk-php",
  6633. "time": "2021-01-15T06:18:05+00:00"
  6634. },
  6635. {
  6636. "name": "tijsverkoyen/css-to-inline-styles",
  6637. "version": "2.2.3",
  6638. "source": {
  6639. "type": "git",
  6640. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  6641. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5"
  6642. },
  6643. "dist": {
  6644. "type": "zip",
  6645. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/b43b05cf43c1b6d849478965062b6ef73e223bb5",
  6646. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5",
  6647. "shasum": "",
  6648. "mirrors": [
  6649. {
  6650. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6651. "preferred": true
  6652. }
  6653. ]
  6654. },
  6655. "require": {
  6656. "ext-dom": "*",
  6657. "ext-libxml": "*",
  6658. "php": "^5.5 || ^7.0 || ^8.0",
  6659. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0"
  6660. },
  6661. "require-dev": {
  6662. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5"
  6663. },
  6664. "type": "library",
  6665. "extra": {
  6666. "branch-alias": {
  6667. "dev-master": "2.2.x-dev"
  6668. }
  6669. },
  6670. "autoload": {
  6671. "psr-4": {
  6672. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  6673. }
  6674. },
  6675. "notification-url": "https://packagist.org/downloads/",
  6676. "license": [
  6677. "BSD-3-Clause"
  6678. ],
  6679. "authors": [
  6680. {
  6681. "name": "Tijs Verkoyen",
  6682. "email": "css_to_inline_styles@verkoyen.eu",
  6683. "role": "Developer"
  6684. }
  6685. ],
  6686. "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.",
  6687. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  6688. "time": "2020-07-13T06:12:54+00:00"
  6689. },
  6690. {
  6691. "name": "tymon/jwt-auth",
  6692. "version": "1.0.1",
  6693. "source": {
  6694. "type": "git",
  6695. "url": "https://github.com/tymondesigns/jwt-auth.git",
  6696. "reference": "b927137cd5bd4d2f5d48a1ca71bc85006b99dbae"
  6697. },
  6698. "dist": {
  6699. "type": "zip",
  6700. "url": "https://api.github.com/repos/tymondesigns/jwt-auth/zipball/b927137cd5bd4d2f5d48a1ca71bc85006b99dbae",
  6701. "reference": "b927137cd5bd4d2f5d48a1ca71bc85006b99dbae",
  6702. "shasum": "",
  6703. "mirrors": [
  6704. {
  6705. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6706. "preferred": true
  6707. }
  6708. ]
  6709. },
  6710. "require": {
  6711. "illuminate/auth": "^5.2|^6|^7|^8",
  6712. "illuminate/contracts": "^5.2|^6|^7|^8",
  6713. "illuminate/http": "^5.2|^6|^7|^8",
  6714. "illuminate/support": "^5.2|^6|^7|^8",
  6715. "lcobucci/jwt": "^3.2",
  6716. "namshi/jose": "^7.0",
  6717. "nesbot/carbon": "^1.0|^2.0",
  6718. "php": "^5.5.9|^7.0"
  6719. },
  6720. "require-dev": {
  6721. "illuminate/console": "^5.2|^6|^7|^8",
  6722. "illuminate/database": "^5.2|^6|^7|^8",
  6723. "illuminate/routing": "^5.2|^6|^7|^8",
  6724. "mockery/mockery": ">=0.9.9",
  6725. "phpunit/phpunit": "~4.8|~6.0"
  6726. },
  6727. "type": "library",
  6728. "extra": {
  6729. "branch-alias": {
  6730. "dev-develop": "1.0-dev"
  6731. },
  6732. "laravel": {
  6733. "aliases": {
  6734. "JWTAuth": "Tymon\\JWTAuth\\Facades\\JWTAuth",
  6735. "JWTFactory": "Tymon\\JWTAuth\\Facades\\JWTFactory"
  6736. },
  6737. "providers": [
  6738. "Tymon\\JWTAuth\\Providers\\LaravelServiceProvider"
  6739. ]
  6740. }
  6741. },
  6742. "autoload": {
  6743. "psr-4": {
  6744. "Tymon\\JWTAuth\\": "src/"
  6745. }
  6746. },
  6747. "notification-url": "https://packagist.org/downloads/",
  6748. "license": [
  6749. "MIT"
  6750. ],
  6751. "authors": [
  6752. {
  6753. "name": "Sean Tymon",
  6754. "email": "tymon148@gmail.com",
  6755. "homepage": "https://tymon.xyz",
  6756. "role": "Developer"
  6757. }
  6758. ],
  6759. "description": "JSON Web Token Authentication for Laravel and Lumen",
  6760. "homepage": "https://github.com/tymondesigns/jwt-auth",
  6761. "keywords": [
  6762. "Authentication",
  6763. "JSON Web Token",
  6764. "auth",
  6765. "jwt",
  6766. "laravel"
  6767. ],
  6768. "time": "2020-09-08T12:29:20+00:00"
  6769. },
  6770. {
  6771. "name": "vlucas/phpdotenv",
  6772. "version": "v2.6.6",
  6773. "source": {
  6774. "type": "git",
  6775. "url": "https://github.com/vlucas/phpdotenv.git",
  6776. "reference": "e1d57f62db3db00d9139078cbedf262280701479"
  6777. },
  6778. "dist": {
  6779. "type": "zip",
  6780. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/e1d57f62db3db00d9139078cbedf262280701479",
  6781. "reference": "e1d57f62db3db00d9139078cbedf262280701479",
  6782. "shasum": "",
  6783. "mirrors": [
  6784. {
  6785. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6786. "preferred": true
  6787. }
  6788. ]
  6789. },
  6790. "require": {
  6791. "php": "^5.3.9 || ^7.0 || ^8.0",
  6792. "symfony/polyfill-ctype": "^1.17"
  6793. },
  6794. "require-dev": {
  6795. "ext-filter": "*",
  6796. "ext-pcre": "*",
  6797. "phpunit/phpunit": "^4.8.35 || ^5.7.27"
  6798. },
  6799. "suggest": {
  6800. "ext-filter": "Required to use the boolean validator.",
  6801. "ext-pcre": "Required to use most of the library."
  6802. },
  6803. "type": "library",
  6804. "extra": {
  6805. "branch-alias": {
  6806. "dev-master": "2.6-dev"
  6807. }
  6808. },
  6809. "autoload": {
  6810. "psr-4": {
  6811. "Dotenv\\": "src/"
  6812. }
  6813. },
  6814. "notification-url": "https://packagist.org/downloads/",
  6815. "license": [
  6816. "BSD-3-Clause"
  6817. ],
  6818. "authors": [
  6819. {
  6820. "name": "Graham Campbell",
  6821. "email": "graham@alt-three.com",
  6822. "homepage": "https://gjcampbell.co.uk/"
  6823. },
  6824. {
  6825. "name": "Vance Lucas",
  6826. "email": "vance@vancelucas.com",
  6827. "homepage": "https://vancelucas.com/"
  6828. }
  6829. ],
  6830. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  6831. "keywords": [
  6832. "dotenv",
  6833. "env",
  6834. "environment"
  6835. ],
  6836. "time": "2020-07-14T17:54:18+00:00"
  6837. },
  6838. {
  6839. "name": "webmozart/assert",
  6840. "version": "1.9.1",
  6841. "source": {
  6842. "type": "git",
  6843. "url": "https://github.com/webmozarts/assert.git",
  6844. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389"
  6845. },
  6846. "dist": {
  6847. "type": "zip",
  6848. "url": "https://api.github.com/repos/webmozarts/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389",
  6849. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389",
  6850. "shasum": "",
  6851. "mirrors": [
  6852. {
  6853. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6854. "preferred": true
  6855. }
  6856. ]
  6857. },
  6858. "require": {
  6859. "php": "^5.3.3 || ^7.0 || ^8.0",
  6860. "symfony/polyfill-ctype": "^1.8"
  6861. },
  6862. "conflict": {
  6863. "phpstan/phpstan": "<0.12.20",
  6864. "vimeo/psalm": "<3.9.1"
  6865. },
  6866. "require-dev": {
  6867. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  6868. },
  6869. "type": "library",
  6870. "autoload": {
  6871. "psr-4": {
  6872. "Webmozart\\Assert\\": "src/"
  6873. }
  6874. },
  6875. "notification-url": "https://packagist.org/downloads/",
  6876. "license": [
  6877. "MIT"
  6878. ],
  6879. "authors": [
  6880. {
  6881. "name": "Bernhard Schussek",
  6882. "email": "bschussek@gmail.com"
  6883. }
  6884. ],
  6885. "description": "Assertions to validate method input/output with nice error messages.",
  6886. "keywords": [
  6887. "assert",
  6888. "check",
  6889. "validate"
  6890. ],
  6891. "time": "2020-07-08T17:02:28+00:00"
  6892. }
  6893. ],
  6894. "packages-dev": [
  6895. {
  6896. "name": "doctrine/instantiator",
  6897. "version": "1.3.1",
  6898. "source": {
  6899. "type": "git",
  6900. "url": "https://github.com/doctrine/instantiator.git",
  6901. "reference": "f350df0268e904597e3bd9c4685c53e0e333feea"
  6902. },
  6903. "dist": {
  6904. "type": "zip",
  6905. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/f350df0268e904597e3bd9c4685c53e0e333feea",
  6906. "reference": "f350df0268e904597e3bd9c4685c53e0e333feea",
  6907. "shasum": "",
  6908. "mirrors": [
  6909. {
  6910. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6911. "preferred": true
  6912. }
  6913. ]
  6914. },
  6915. "require": {
  6916. "php": "^7.1 || ^8.0"
  6917. },
  6918. "require-dev": {
  6919. "doctrine/coding-standard": "^6.0",
  6920. "ext-pdo": "*",
  6921. "ext-phar": "*",
  6922. "phpbench/phpbench": "^0.13",
  6923. "phpstan/phpstan-phpunit": "^0.11",
  6924. "phpstan/phpstan-shim": "^0.11",
  6925. "phpunit/phpunit": "^7.0"
  6926. },
  6927. "type": "library",
  6928. "extra": {
  6929. "branch-alias": {
  6930. "dev-master": "1.2.x-dev"
  6931. }
  6932. },
  6933. "autoload": {
  6934. "psr-4": {
  6935. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  6936. }
  6937. },
  6938. "notification-url": "https://packagist.org/downloads/",
  6939. "license": [
  6940. "MIT"
  6941. ],
  6942. "authors": [
  6943. {
  6944. "name": "Marco Pivetta",
  6945. "email": "ocramius@gmail.com",
  6946. "homepage": "http://ocramius.github.com/"
  6947. }
  6948. ],
  6949. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  6950. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  6951. "keywords": [
  6952. "constructor",
  6953. "instantiate"
  6954. ],
  6955. "time": "2020-05-29T17:27:14+00:00"
  6956. },
  6957. {
  6958. "name": "filp/whoops",
  6959. "version": "2.7.3",
  6960. "source": {
  6961. "type": "git",
  6962. "url": "https://github.com/filp/whoops.git",
  6963. "reference": "5d5fe9bb3d656b514d455645b3addc5f7ba7714d"
  6964. },
  6965. "dist": {
  6966. "type": "zip",
  6967. "url": "https://api.github.com/repos/filp/whoops/zipball/5d5fe9bb3d656b514d455645b3addc5f7ba7714d",
  6968. "reference": "5d5fe9bb3d656b514d455645b3addc5f7ba7714d",
  6969. "shasum": "",
  6970. "mirrors": [
  6971. {
  6972. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6973. "preferred": true
  6974. }
  6975. ]
  6976. },
  6977. "require": {
  6978. "php": "^5.5.9 || ^7.0",
  6979. "psr/log": "^1.0.1"
  6980. },
  6981. "require-dev": {
  6982. "mockery/mockery": "^0.9 || ^1.0",
  6983. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0",
  6984. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  6985. },
  6986. "suggest": {
  6987. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  6988. "whoops/soap": "Formats errors as SOAP responses"
  6989. },
  6990. "type": "library",
  6991. "extra": {
  6992. "branch-alias": {
  6993. "dev-master": "2.6-dev"
  6994. }
  6995. },
  6996. "autoload": {
  6997. "psr-4": {
  6998. "Whoops\\": "src/Whoops/"
  6999. }
  7000. },
  7001. "notification-url": "https://packagist.org/downloads/",
  7002. "license": [
  7003. "MIT"
  7004. ],
  7005. "authors": [
  7006. {
  7007. "name": "Filipe Dobreira",
  7008. "homepage": "https://github.com/filp",
  7009. "role": "Developer"
  7010. }
  7011. ],
  7012. "description": "php error handling for cool kids",
  7013. "homepage": "https://filp.github.io/whoops/",
  7014. "keywords": [
  7015. "error",
  7016. "exception",
  7017. "handling",
  7018. "library",
  7019. "throwable",
  7020. "whoops"
  7021. ],
  7022. "time": "2020-06-14T09:00:00+00:00"
  7023. },
  7024. {
  7025. "name": "fzaninotto/faker",
  7026. "version": "v1.9.1",
  7027. "source": {
  7028. "type": "git",
  7029. "url": "https://github.com/fzaninotto/Faker.git",
  7030. "reference": "fc10d778e4b84d5bd315dad194661e091d307c6f"
  7031. },
  7032. "dist": {
  7033. "type": "zip",
  7034. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/fc10d778e4b84d5bd315dad194661e091d307c6f",
  7035. "reference": "fc10d778e4b84d5bd315dad194661e091d307c6f",
  7036. "shasum": "",
  7037. "mirrors": [
  7038. {
  7039. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7040. "preferred": true
  7041. }
  7042. ]
  7043. },
  7044. "require": {
  7045. "php": "^5.3.3 || ^7.0"
  7046. },
  7047. "require-dev": {
  7048. "ext-intl": "*",
  7049. "phpunit/phpunit": "^4.8.35 || ^5.7",
  7050. "squizlabs/php_codesniffer": "^2.9.2"
  7051. },
  7052. "type": "library",
  7053. "extra": {
  7054. "branch-alias": {
  7055. "dev-master": "1.9-dev"
  7056. }
  7057. },
  7058. "autoload": {
  7059. "psr-4": {
  7060. "Faker\\": "src/Faker/"
  7061. }
  7062. },
  7063. "notification-url": "https://packagist.org/downloads/",
  7064. "license": [
  7065. "MIT"
  7066. ],
  7067. "authors": [
  7068. {
  7069. "name": "François Zaninotto"
  7070. }
  7071. ],
  7072. "description": "Faker is a PHP library that generates fake data for you.",
  7073. "keywords": [
  7074. "data",
  7075. "faker",
  7076. "fixtures"
  7077. ],
  7078. "time": "2019-12-12T13:22:17+00:00"
  7079. },
  7080. {
  7081. "name": "hamcrest/hamcrest-php",
  7082. "version": "v2.0.1",
  7083. "source": {
  7084. "type": "git",
  7085. "url": "https://github.com/hamcrest/hamcrest-php.git",
  7086. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  7087. },
  7088. "dist": {
  7089. "type": "zip",
  7090. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7091. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7092. "shasum": "",
  7093. "mirrors": [
  7094. {
  7095. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7096. "preferred": true
  7097. }
  7098. ]
  7099. },
  7100. "require": {
  7101. "php": "^5.3|^7.0|^8.0"
  7102. },
  7103. "replace": {
  7104. "cordoval/hamcrest-php": "*",
  7105. "davedevelopment/hamcrest-php": "*",
  7106. "kodova/hamcrest-php": "*"
  7107. },
  7108. "require-dev": {
  7109. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  7110. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  7111. },
  7112. "type": "library",
  7113. "extra": {
  7114. "branch-alias": {
  7115. "dev-master": "2.1-dev"
  7116. }
  7117. },
  7118. "autoload": {
  7119. "classmap": [
  7120. "hamcrest"
  7121. ]
  7122. },
  7123. "notification-url": "https://packagist.org/downloads/",
  7124. "license": [
  7125. "BSD-3-Clause"
  7126. ],
  7127. "description": "This is the PHP port of Hamcrest Matchers",
  7128. "keywords": [
  7129. "test"
  7130. ],
  7131. "time": "2020-07-09T08:09:16+00:00"
  7132. },
  7133. {
  7134. "name": "mockery/mockery",
  7135. "version": "1.3.3",
  7136. "source": {
  7137. "type": "git",
  7138. "url": "https://github.com/mockery/mockery.git",
  7139. "reference": "60fa2f67f6e4d3634bb4a45ff3171fa52215800d"
  7140. },
  7141. "dist": {
  7142. "type": "zip",
  7143. "url": "https://api.github.com/repos/mockery/mockery/zipball/60fa2f67f6e4d3634bb4a45ff3171fa52215800d",
  7144. "reference": "60fa2f67f6e4d3634bb4a45ff3171fa52215800d",
  7145. "shasum": "",
  7146. "mirrors": [
  7147. {
  7148. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7149. "preferred": true
  7150. }
  7151. ]
  7152. },
  7153. "require": {
  7154. "hamcrest/hamcrest-php": "^2.0.1",
  7155. "lib-pcre": ">=7.0",
  7156. "php": ">=5.6.0"
  7157. },
  7158. "require-dev": {
  7159. "phpunit/phpunit": "^5.7.10|^6.5|^7.5|^8.5|^9.3"
  7160. },
  7161. "type": "library",
  7162. "extra": {
  7163. "branch-alias": {
  7164. "dev-master": "1.3.x-dev"
  7165. }
  7166. },
  7167. "autoload": {
  7168. "psr-0": {
  7169. "Mockery": "library/"
  7170. }
  7171. },
  7172. "notification-url": "https://packagist.org/downloads/",
  7173. "license": [
  7174. "BSD-3-Clause"
  7175. ],
  7176. "authors": [
  7177. {
  7178. "name": "Pádraic Brady",
  7179. "email": "padraic.brady@gmail.com",
  7180. "homepage": "http://blog.astrumfutura.com"
  7181. },
  7182. {
  7183. "name": "Dave Marshall",
  7184. "email": "dave.marshall@atstsolutions.co.uk",
  7185. "homepage": "http://davedevelopment.co.uk"
  7186. }
  7187. ],
  7188. "description": "Mockery is a simple yet flexible PHP mock object framework",
  7189. "homepage": "https://github.com/mockery/mockery",
  7190. "keywords": [
  7191. "BDD",
  7192. "TDD",
  7193. "library",
  7194. "mock",
  7195. "mock objects",
  7196. "mockery",
  7197. "stub",
  7198. "test",
  7199. "test double",
  7200. "testing"
  7201. ],
  7202. "time": "2020-08-11T18:10:21+00:00"
  7203. },
  7204. {
  7205. "name": "myclabs/deep-copy",
  7206. "version": "1.10.1",
  7207. "source": {
  7208. "type": "git",
  7209. "url": "https://github.com/myclabs/DeepCopy.git",
  7210. "reference": "969b211f9a51aa1f6c01d1d2aef56d3bd91598e5"
  7211. },
  7212. "dist": {
  7213. "type": "zip",
  7214. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/969b211f9a51aa1f6c01d1d2aef56d3bd91598e5",
  7215. "reference": "969b211f9a51aa1f6c01d1d2aef56d3bd91598e5",
  7216. "shasum": "",
  7217. "mirrors": [
  7218. {
  7219. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7220. "preferred": true
  7221. }
  7222. ]
  7223. },
  7224. "require": {
  7225. "php": "^7.1 || ^8.0"
  7226. },
  7227. "replace": {
  7228. "myclabs/deep-copy": "self.version"
  7229. },
  7230. "require-dev": {
  7231. "doctrine/collections": "^1.0",
  7232. "doctrine/common": "^2.6",
  7233. "phpunit/phpunit": "^7.1"
  7234. },
  7235. "type": "library",
  7236. "autoload": {
  7237. "psr-4": {
  7238. "DeepCopy\\": "src/DeepCopy/"
  7239. },
  7240. "files": [
  7241. "src/DeepCopy/deep_copy.php"
  7242. ]
  7243. },
  7244. "notification-url": "https://packagist.org/downloads/",
  7245. "license": [
  7246. "MIT"
  7247. ],
  7248. "description": "Create deep copies (clones) of your objects",
  7249. "keywords": [
  7250. "clone",
  7251. "copy",
  7252. "duplicate",
  7253. "object",
  7254. "object graph"
  7255. ],
  7256. "time": "2020-06-29T13:22:24+00:00"
  7257. },
  7258. {
  7259. "name": "nunomaduro/collision",
  7260. "version": "v2.1.1",
  7261. "source": {
  7262. "type": "git",
  7263. "url": "https://github.com/nunomaduro/collision.git",
  7264. "reference": "b5feb0c0d92978ec7169232ce5d70d6da6b29f63"
  7265. },
  7266. "dist": {
  7267. "type": "zip",
  7268. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/b5feb0c0d92978ec7169232ce5d70d6da6b29f63",
  7269. "reference": "b5feb0c0d92978ec7169232ce5d70d6da6b29f63",
  7270. "shasum": "",
  7271. "mirrors": [
  7272. {
  7273. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7274. "preferred": true
  7275. }
  7276. ]
  7277. },
  7278. "require": {
  7279. "filp/whoops": "^2.1.4",
  7280. "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
  7281. "php": "^7.1",
  7282. "symfony/console": "~2.8|~3.3|~4.0"
  7283. },
  7284. "require-dev": {
  7285. "laravel/framework": "5.7.*",
  7286. "nunomaduro/larastan": "^0.3.0",
  7287. "phpstan/phpstan": "^0.10",
  7288. "phpunit/phpunit": "~7.3"
  7289. },
  7290. "type": "library",
  7291. "extra": {
  7292. "laravel": {
  7293. "providers": [
  7294. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  7295. ]
  7296. }
  7297. },
  7298. "autoload": {
  7299. "psr-4": {
  7300. "NunoMaduro\\Collision\\": "src/"
  7301. }
  7302. },
  7303. "notification-url": "https://packagist.org/downloads/",
  7304. "license": [
  7305. "MIT"
  7306. ],
  7307. "authors": [
  7308. {
  7309. "name": "Nuno Maduro",
  7310. "email": "enunomaduro@gmail.com"
  7311. }
  7312. ],
  7313. "description": "Cli error handling for console/command-line PHP applications.",
  7314. "keywords": [
  7315. "artisan",
  7316. "cli",
  7317. "command-line",
  7318. "console",
  7319. "error",
  7320. "handling",
  7321. "laravel",
  7322. "laravel-zero",
  7323. "php",
  7324. "symfony"
  7325. ],
  7326. "time": "2018-11-21T21:40:54+00:00"
  7327. },
  7328. {
  7329. "name": "phar-io/manifest",
  7330. "version": "1.0.3",
  7331. "source": {
  7332. "type": "git",
  7333. "url": "https://github.com/phar-io/manifest.git",
  7334. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4"
  7335. },
  7336. "dist": {
  7337. "type": "zip",
  7338. "url": "https://api.github.com/repos/phar-io/manifest/zipball/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  7339. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  7340. "shasum": "",
  7341. "mirrors": [
  7342. {
  7343. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7344. "preferred": true
  7345. }
  7346. ]
  7347. },
  7348. "require": {
  7349. "ext-dom": "*",
  7350. "ext-phar": "*",
  7351. "phar-io/version": "^2.0",
  7352. "php": "^5.6 || ^7.0"
  7353. },
  7354. "type": "library",
  7355. "extra": {
  7356. "branch-alias": {
  7357. "dev-master": "1.0.x-dev"
  7358. }
  7359. },
  7360. "autoload": {
  7361. "classmap": [
  7362. "src/"
  7363. ]
  7364. },
  7365. "notification-url": "https://packagist.org/downloads/",
  7366. "license": [
  7367. "BSD-3-Clause"
  7368. ],
  7369. "authors": [
  7370. {
  7371. "name": "Arne Blankerts",
  7372. "email": "arne@blankerts.de",
  7373. "role": "Developer"
  7374. },
  7375. {
  7376. "name": "Sebastian Heuer",
  7377. "email": "sebastian@phpeople.de",
  7378. "role": "Developer"
  7379. },
  7380. {
  7381. "name": "Sebastian Bergmann",
  7382. "email": "sebastian@phpunit.de",
  7383. "role": "Developer"
  7384. }
  7385. ],
  7386. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  7387. "time": "2018-07-08T19:23:20+00:00"
  7388. },
  7389. {
  7390. "name": "phar-io/version",
  7391. "version": "2.0.1",
  7392. "source": {
  7393. "type": "git",
  7394. "url": "https://github.com/phar-io/version.git",
  7395. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6"
  7396. },
  7397. "dist": {
  7398. "type": "zip",
  7399. "url": "https://api.github.com/repos/phar-io/version/zipball/45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  7400. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  7401. "shasum": "",
  7402. "mirrors": [
  7403. {
  7404. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7405. "preferred": true
  7406. }
  7407. ]
  7408. },
  7409. "require": {
  7410. "php": "^5.6 || ^7.0"
  7411. },
  7412. "type": "library",
  7413. "autoload": {
  7414. "classmap": [
  7415. "src/"
  7416. ]
  7417. },
  7418. "notification-url": "https://packagist.org/downloads/",
  7419. "license": [
  7420. "BSD-3-Clause"
  7421. ],
  7422. "authors": [
  7423. {
  7424. "name": "Arne Blankerts",
  7425. "email": "arne@blankerts.de",
  7426. "role": "Developer"
  7427. },
  7428. {
  7429. "name": "Sebastian Heuer",
  7430. "email": "sebastian@phpeople.de",
  7431. "role": "Developer"
  7432. },
  7433. {
  7434. "name": "Sebastian Bergmann",
  7435. "email": "sebastian@phpunit.de",
  7436. "role": "Developer"
  7437. }
  7438. ],
  7439. "description": "Library for handling version information and constraints",
  7440. "time": "2018-07-08T19:19:57+00:00"
  7441. },
  7442. {
  7443. "name": "phpspec/prophecy",
  7444. "version": "v1.10.3",
  7445. "source": {
  7446. "type": "git",
  7447. "url": "https://github.com/phpspec/prophecy.git",
  7448. "reference": "451c3cd1418cf640de218914901e51b064abb093"
  7449. },
  7450. "dist": {
  7451. "type": "zip",
  7452. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/451c3cd1418cf640de218914901e51b064abb093",
  7453. "reference": "451c3cd1418cf640de218914901e51b064abb093",
  7454. "shasum": "",
  7455. "mirrors": [
  7456. {
  7457. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7458. "preferred": true
  7459. }
  7460. ]
  7461. },
  7462. "require": {
  7463. "doctrine/instantiator": "^1.0.2",
  7464. "php": "^5.3|^7.0",
  7465. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0|^5.0",
  7466. "sebastian/comparator": "^1.2.3|^2.0|^3.0|^4.0",
  7467. "sebastian/recursion-context": "^1.0|^2.0|^3.0|^4.0"
  7468. },
  7469. "require-dev": {
  7470. "phpspec/phpspec": "^2.5 || ^3.2",
  7471. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  7472. },
  7473. "type": "library",
  7474. "extra": {
  7475. "branch-alias": {
  7476. "dev-master": "1.10.x-dev"
  7477. }
  7478. },
  7479. "autoload": {
  7480. "psr-4": {
  7481. "Prophecy\\": "src/Prophecy"
  7482. }
  7483. },
  7484. "notification-url": "https://packagist.org/downloads/",
  7485. "license": [
  7486. "MIT"
  7487. ],
  7488. "authors": [
  7489. {
  7490. "name": "Konstantin Kudryashov",
  7491. "email": "ever.zet@gmail.com",
  7492. "homepage": "http://everzet.com"
  7493. },
  7494. {
  7495. "name": "Marcello Duarte",
  7496. "email": "marcello.duarte@gmail.com"
  7497. }
  7498. ],
  7499. "description": "Highly opinionated mocking framework for PHP 5.3+",
  7500. "homepage": "https://github.com/phpspec/prophecy",
  7501. "keywords": [
  7502. "Double",
  7503. "Dummy",
  7504. "fake",
  7505. "mock",
  7506. "spy",
  7507. "stub"
  7508. ],
  7509. "time": "2020-03-05T15:02:03+00:00"
  7510. },
  7511. {
  7512. "name": "phpunit/php-code-coverage",
  7513. "version": "6.1.4",
  7514. "source": {
  7515. "type": "git",
  7516. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  7517. "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d"
  7518. },
  7519. "dist": {
  7520. "type": "zip",
  7521. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/807e6013b00af69b6c5d9ceb4282d0393dbb9d8d",
  7522. "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d",
  7523. "shasum": "",
  7524. "mirrors": [
  7525. {
  7526. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7527. "preferred": true
  7528. }
  7529. ]
  7530. },
  7531. "require": {
  7532. "ext-dom": "*",
  7533. "ext-xmlwriter": "*",
  7534. "php": "^7.1",
  7535. "phpunit/php-file-iterator": "^2.0",
  7536. "phpunit/php-text-template": "^1.2.1",
  7537. "phpunit/php-token-stream": "^3.0",
  7538. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  7539. "sebastian/environment": "^3.1 || ^4.0",
  7540. "sebastian/version": "^2.0.1",
  7541. "theseer/tokenizer": "^1.1"
  7542. },
  7543. "require-dev": {
  7544. "phpunit/phpunit": "^7.0"
  7545. },
  7546. "suggest": {
  7547. "ext-xdebug": "^2.6.0"
  7548. },
  7549. "type": "library",
  7550. "extra": {
  7551. "branch-alias": {
  7552. "dev-master": "6.1-dev"
  7553. }
  7554. },
  7555. "autoload": {
  7556. "classmap": [
  7557. "src/"
  7558. ]
  7559. },
  7560. "notification-url": "https://packagist.org/downloads/",
  7561. "license": [
  7562. "BSD-3-Clause"
  7563. ],
  7564. "authors": [
  7565. {
  7566. "name": "Sebastian Bergmann",
  7567. "email": "sebastian@phpunit.de",
  7568. "role": "lead"
  7569. }
  7570. ],
  7571. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  7572. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  7573. "keywords": [
  7574. "coverage",
  7575. "testing",
  7576. "xunit"
  7577. ],
  7578. "time": "2018-10-31T16:06:48+00:00"
  7579. },
  7580. {
  7581. "name": "phpunit/php-file-iterator",
  7582. "version": "2.0.2",
  7583. "source": {
  7584. "type": "git",
  7585. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  7586. "reference": "050bedf145a257b1ff02746c31894800e5122946"
  7587. },
  7588. "dist": {
  7589. "type": "zip",
  7590. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/050bedf145a257b1ff02746c31894800e5122946",
  7591. "reference": "050bedf145a257b1ff02746c31894800e5122946",
  7592. "shasum": "",
  7593. "mirrors": [
  7594. {
  7595. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7596. "preferred": true
  7597. }
  7598. ]
  7599. },
  7600. "require": {
  7601. "php": "^7.1"
  7602. },
  7603. "require-dev": {
  7604. "phpunit/phpunit": "^7.1"
  7605. },
  7606. "type": "library",
  7607. "extra": {
  7608. "branch-alias": {
  7609. "dev-master": "2.0.x-dev"
  7610. }
  7611. },
  7612. "autoload": {
  7613. "classmap": [
  7614. "src/"
  7615. ]
  7616. },
  7617. "notification-url": "https://packagist.org/downloads/",
  7618. "license": [
  7619. "BSD-3-Clause"
  7620. ],
  7621. "authors": [
  7622. {
  7623. "name": "Sebastian Bergmann",
  7624. "email": "sebastian@phpunit.de",
  7625. "role": "lead"
  7626. }
  7627. ],
  7628. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  7629. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  7630. "keywords": [
  7631. "filesystem",
  7632. "iterator"
  7633. ],
  7634. "time": "2018-09-13T20:33:42+00:00"
  7635. },
  7636. {
  7637. "name": "phpunit/php-text-template",
  7638. "version": "1.2.1",
  7639. "source": {
  7640. "type": "git",
  7641. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  7642. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  7643. },
  7644. "dist": {
  7645. "type": "zip",
  7646. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  7647. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  7648. "shasum": "",
  7649. "mirrors": [
  7650. {
  7651. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7652. "preferred": true
  7653. }
  7654. ]
  7655. },
  7656. "require": {
  7657. "php": ">=5.3.3"
  7658. },
  7659. "type": "library",
  7660. "autoload": {
  7661. "classmap": [
  7662. "src/"
  7663. ]
  7664. },
  7665. "notification-url": "https://packagist.org/downloads/",
  7666. "license": [
  7667. "BSD-3-Clause"
  7668. ],
  7669. "authors": [
  7670. {
  7671. "name": "Sebastian Bergmann",
  7672. "email": "sebastian@phpunit.de",
  7673. "role": "lead"
  7674. }
  7675. ],
  7676. "description": "Simple template engine.",
  7677. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  7678. "keywords": [
  7679. "template"
  7680. ],
  7681. "time": "2015-06-21T13:50:34+00:00"
  7682. },
  7683. {
  7684. "name": "phpunit/php-timer",
  7685. "version": "2.1.2",
  7686. "source": {
  7687. "type": "git",
  7688. "url": "https://github.com/sebastianbergmann/php-timer.git",
  7689. "reference": "1038454804406b0b5f5f520358e78c1c2f71501e"
  7690. },
  7691. "dist": {
  7692. "type": "zip",
  7693. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/1038454804406b0b5f5f520358e78c1c2f71501e",
  7694. "reference": "1038454804406b0b5f5f520358e78c1c2f71501e",
  7695. "shasum": "",
  7696. "mirrors": [
  7697. {
  7698. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7699. "preferred": true
  7700. }
  7701. ]
  7702. },
  7703. "require": {
  7704. "php": "^7.1"
  7705. },
  7706. "require-dev": {
  7707. "phpunit/phpunit": "^7.0"
  7708. },
  7709. "type": "library",
  7710. "extra": {
  7711. "branch-alias": {
  7712. "dev-master": "2.1-dev"
  7713. }
  7714. },
  7715. "autoload": {
  7716. "classmap": [
  7717. "src/"
  7718. ]
  7719. },
  7720. "notification-url": "https://packagist.org/downloads/",
  7721. "license": [
  7722. "BSD-3-Clause"
  7723. ],
  7724. "authors": [
  7725. {
  7726. "name": "Sebastian Bergmann",
  7727. "email": "sebastian@phpunit.de",
  7728. "role": "lead"
  7729. }
  7730. ],
  7731. "description": "Utility class for timing",
  7732. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  7733. "keywords": [
  7734. "timer"
  7735. ],
  7736. "time": "2019-06-07T04:22:29+00:00"
  7737. },
  7738. {
  7739. "name": "phpunit/php-token-stream",
  7740. "version": "3.1.1",
  7741. "source": {
  7742. "type": "git",
  7743. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  7744. "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff"
  7745. },
  7746. "dist": {
  7747. "type": "zip",
  7748. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/995192df77f63a59e47f025390d2d1fdf8f425ff",
  7749. "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff",
  7750. "shasum": "",
  7751. "mirrors": [
  7752. {
  7753. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7754. "preferred": true
  7755. }
  7756. ]
  7757. },
  7758. "require": {
  7759. "ext-tokenizer": "*",
  7760. "php": "^7.1"
  7761. },
  7762. "require-dev": {
  7763. "phpunit/phpunit": "^7.0"
  7764. },
  7765. "type": "library",
  7766. "extra": {
  7767. "branch-alias": {
  7768. "dev-master": "3.1-dev"
  7769. }
  7770. },
  7771. "autoload": {
  7772. "classmap": [
  7773. "src/"
  7774. ]
  7775. },
  7776. "notification-url": "https://packagist.org/downloads/",
  7777. "license": [
  7778. "BSD-3-Clause"
  7779. ],
  7780. "authors": [
  7781. {
  7782. "name": "Sebastian Bergmann",
  7783. "email": "sebastian@phpunit.de"
  7784. }
  7785. ],
  7786. "description": "Wrapper around PHP's tokenizer extension.",
  7787. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  7788. "keywords": [
  7789. "tokenizer"
  7790. ],
  7791. "abandoned": true,
  7792. "time": "2019-09-17T06:23:10+00:00"
  7793. },
  7794. {
  7795. "name": "phpunit/phpunit",
  7796. "version": "7.5.20",
  7797. "source": {
  7798. "type": "git",
  7799. "url": "https://github.com/sebastianbergmann/phpunit.git",
  7800. "reference": "9467db479d1b0487c99733bb1e7944d32deded2c"
  7801. },
  7802. "dist": {
  7803. "type": "zip",
  7804. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/9467db479d1b0487c99733bb1e7944d32deded2c",
  7805. "reference": "9467db479d1b0487c99733bb1e7944d32deded2c",
  7806. "shasum": "",
  7807. "mirrors": [
  7808. {
  7809. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7810. "preferred": true
  7811. }
  7812. ]
  7813. },
  7814. "require": {
  7815. "doctrine/instantiator": "^1.1",
  7816. "ext-dom": "*",
  7817. "ext-json": "*",
  7818. "ext-libxml": "*",
  7819. "ext-mbstring": "*",
  7820. "ext-xml": "*",
  7821. "myclabs/deep-copy": "^1.7",
  7822. "phar-io/manifest": "^1.0.2",
  7823. "phar-io/version": "^2.0",
  7824. "php": "^7.1",
  7825. "phpspec/prophecy": "^1.7",
  7826. "phpunit/php-code-coverage": "^6.0.7",
  7827. "phpunit/php-file-iterator": "^2.0.1",
  7828. "phpunit/php-text-template": "^1.2.1",
  7829. "phpunit/php-timer": "^2.1",
  7830. "sebastian/comparator": "^3.0",
  7831. "sebastian/diff": "^3.0",
  7832. "sebastian/environment": "^4.0",
  7833. "sebastian/exporter": "^3.1",
  7834. "sebastian/global-state": "^2.0",
  7835. "sebastian/object-enumerator": "^3.0.3",
  7836. "sebastian/resource-operations": "^2.0",
  7837. "sebastian/version": "^2.0.1"
  7838. },
  7839. "conflict": {
  7840. "phpunit/phpunit-mock-objects": "*"
  7841. },
  7842. "require-dev": {
  7843. "ext-pdo": "*"
  7844. },
  7845. "suggest": {
  7846. "ext-soap": "*",
  7847. "ext-xdebug": "*",
  7848. "phpunit/php-invoker": "^2.0"
  7849. },
  7850. "bin": [
  7851. "phpunit"
  7852. ],
  7853. "type": "library",
  7854. "extra": {
  7855. "branch-alias": {
  7856. "dev-master": "7.5-dev"
  7857. }
  7858. },
  7859. "autoload": {
  7860. "classmap": [
  7861. "src/"
  7862. ]
  7863. },
  7864. "notification-url": "https://packagist.org/downloads/",
  7865. "license": [
  7866. "BSD-3-Clause"
  7867. ],
  7868. "authors": [
  7869. {
  7870. "name": "Sebastian Bergmann",
  7871. "email": "sebastian@phpunit.de",
  7872. "role": "lead"
  7873. }
  7874. ],
  7875. "description": "The PHP Unit Testing framework.",
  7876. "homepage": "https://phpunit.de/",
  7877. "keywords": [
  7878. "phpunit",
  7879. "testing",
  7880. "xunit"
  7881. ],
  7882. "time": "2020-01-08T08:45:45+00:00"
  7883. },
  7884. {
  7885. "name": "sebastian/code-unit-reverse-lookup",
  7886. "version": "1.0.1",
  7887. "source": {
  7888. "type": "git",
  7889. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  7890. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  7891. },
  7892. "dist": {
  7893. "type": "zip",
  7894. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  7895. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  7896. "shasum": "",
  7897. "mirrors": [
  7898. {
  7899. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7900. "preferred": true
  7901. }
  7902. ]
  7903. },
  7904. "require": {
  7905. "php": "^5.6 || ^7.0"
  7906. },
  7907. "require-dev": {
  7908. "phpunit/phpunit": "^5.7 || ^6.0"
  7909. },
  7910. "type": "library",
  7911. "extra": {
  7912. "branch-alias": {
  7913. "dev-master": "1.0.x-dev"
  7914. }
  7915. },
  7916. "autoload": {
  7917. "classmap": [
  7918. "src/"
  7919. ]
  7920. },
  7921. "notification-url": "https://packagist.org/downloads/",
  7922. "license": [
  7923. "BSD-3-Clause"
  7924. ],
  7925. "authors": [
  7926. {
  7927. "name": "Sebastian Bergmann",
  7928. "email": "sebastian@phpunit.de"
  7929. }
  7930. ],
  7931. "description": "Looks up which function or method a line of code belongs to",
  7932. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  7933. "time": "2017-03-04T06:30:41+00:00"
  7934. },
  7935. {
  7936. "name": "sebastian/comparator",
  7937. "version": "3.0.2",
  7938. "source": {
  7939. "type": "git",
  7940. "url": "https://github.com/sebastianbergmann/comparator.git",
  7941. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da"
  7942. },
  7943. "dist": {
  7944. "type": "zip",
  7945. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  7946. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  7947. "shasum": "",
  7948. "mirrors": [
  7949. {
  7950. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7951. "preferred": true
  7952. }
  7953. ]
  7954. },
  7955. "require": {
  7956. "php": "^7.1",
  7957. "sebastian/diff": "^3.0",
  7958. "sebastian/exporter": "^3.1"
  7959. },
  7960. "require-dev": {
  7961. "phpunit/phpunit": "^7.1"
  7962. },
  7963. "type": "library",
  7964. "extra": {
  7965. "branch-alias": {
  7966. "dev-master": "3.0-dev"
  7967. }
  7968. },
  7969. "autoload": {
  7970. "classmap": [
  7971. "src/"
  7972. ]
  7973. },
  7974. "notification-url": "https://packagist.org/downloads/",
  7975. "license": [
  7976. "BSD-3-Clause"
  7977. ],
  7978. "authors": [
  7979. {
  7980. "name": "Jeff Welch",
  7981. "email": "whatthejeff@gmail.com"
  7982. },
  7983. {
  7984. "name": "Volker Dusch",
  7985. "email": "github@wallbash.com"
  7986. },
  7987. {
  7988. "name": "Bernhard Schussek",
  7989. "email": "bschussek@2bepublished.at"
  7990. },
  7991. {
  7992. "name": "Sebastian Bergmann",
  7993. "email": "sebastian@phpunit.de"
  7994. }
  7995. ],
  7996. "description": "Provides the functionality to compare PHP values for equality",
  7997. "homepage": "https://github.com/sebastianbergmann/comparator",
  7998. "keywords": [
  7999. "comparator",
  8000. "compare",
  8001. "equality"
  8002. ],
  8003. "time": "2018-07-12T15:12:46+00:00"
  8004. },
  8005. {
  8006. "name": "sebastian/diff",
  8007. "version": "3.0.2",
  8008. "source": {
  8009. "type": "git",
  8010. "url": "https://github.com/sebastianbergmann/diff.git",
  8011. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29"
  8012. },
  8013. "dist": {
  8014. "type": "zip",
  8015. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  8016. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  8017. "shasum": "",
  8018. "mirrors": [
  8019. {
  8020. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8021. "preferred": true
  8022. }
  8023. ]
  8024. },
  8025. "require": {
  8026. "php": "^7.1"
  8027. },
  8028. "require-dev": {
  8029. "phpunit/phpunit": "^7.5 || ^8.0",
  8030. "symfony/process": "^2 || ^3.3 || ^4"
  8031. },
  8032. "type": "library",
  8033. "extra": {
  8034. "branch-alias": {
  8035. "dev-master": "3.0-dev"
  8036. }
  8037. },
  8038. "autoload": {
  8039. "classmap": [
  8040. "src/"
  8041. ]
  8042. },
  8043. "notification-url": "https://packagist.org/downloads/",
  8044. "license": [
  8045. "BSD-3-Clause"
  8046. ],
  8047. "authors": [
  8048. {
  8049. "name": "Kore Nordmann",
  8050. "email": "mail@kore-nordmann.de"
  8051. },
  8052. {
  8053. "name": "Sebastian Bergmann",
  8054. "email": "sebastian@phpunit.de"
  8055. }
  8056. ],
  8057. "description": "Diff implementation",
  8058. "homepage": "https://github.com/sebastianbergmann/diff",
  8059. "keywords": [
  8060. "diff",
  8061. "udiff",
  8062. "unidiff",
  8063. "unified diff"
  8064. ],
  8065. "time": "2019-02-04T06:01:07+00:00"
  8066. },
  8067. {
  8068. "name": "sebastian/environment",
  8069. "version": "4.2.3",
  8070. "source": {
  8071. "type": "git",
  8072. "url": "https://github.com/sebastianbergmann/environment.git",
  8073. "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368"
  8074. },
  8075. "dist": {
  8076. "type": "zip",
  8077. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/464c90d7bdf5ad4e8a6aea15c091fec0603d4368",
  8078. "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368",
  8079. "shasum": "",
  8080. "mirrors": [
  8081. {
  8082. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8083. "preferred": true
  8084. }
  8085. ]
  8086. },
  8087. "require": {
  8088. "php": "^7.1"
  8089. },
  8090. "require-dev": {
  8091. "phpunit/phpunit": "^7.5"
  8092. },
  8093. "suggest": {
  8094. "ext-posix": "*"
  8095. },
  8096. "type": "library",
  8097. "extra": {
  8098. "branch-alias": {
  8099. "dev-master": "4.2-dev"
  8100. }
  8101. },
  8102. "autoload": {
  8103. "classmap": [
  8104. "src/"
  8105. ]
  8106. },
  8107. "notification-url": "https://packagist.org/downloads/",
  8108. "license": [
  8109. "BSD-3-Clause"
  8110. ],
  8111. "authors": [
  8112. {
  8113. "name": "Sebastian Bergmann",
  8114. "email": "sebastian@phpunit.de"
  8115. }
  8116. ],
  8117. "description": "Provides functionality to handle HHVM/PHP environments",
  8118. "homepage": "http://www.github.com/sebastianbergmann/environment",
  8119. "keywords": [
  8120. "Xdebug",
  8121. "environment",
  8122. "hhvm"
  8123. ],
  8124. "time": "2019-11-20T08:46:58+00:00"
  8125. },
  8126. {
  8127. "name": "sebastian/exporter",
  8128. "version": "3.1.2",
  8129. "source": {
  8130. "type": "git",
  8131. "url": "https://github.com/sebastianbergmann/exporter.git",
  8132. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e"
  8133. },
  8134. "dist": {
  8135. "type": "zip",
  8136. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/68609e1261d215ea5b21b7987539cbfbe156ec3e",
  8137. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e",
  8138. "shasum": "",
  8139. "mirrors": [
  8140. {
  8141. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8142. "preferred": true
  8143. }
  8144. ]
  8145. },
  8146. "require": {
  8147. "php": "^7.0",
  8148. "sebastian/recursion-context": "^3.0"
  8149. },
  8150. "require-dev": {
  8151. "ext-mbstring": "*",
  8152. "phpunit/phpunit": "^6.0"
  8153. },
  8154. "type": "library",
  8155. "extra": {
  8156. "branch-alias": {
  8157. "dev-master": "3.1.x-dev"
  8158. }
  8159. },
  8160. "autoload": {
  8161. "classmap": [
  8162. "src/"
  8163. ]
  8164. },
  8165. "notification-url": "https://packagist.org/downloads/",
  8166. "license": [
  8167. "BSD-3-Clause"
  8168. ],
  8169. "authors": [
  8170. {
  8171. "name": "Sebastian Bergmann",
  8172. "email": "sebastian@phpunit.de"
  8173. },
  8174. {
  8175. "name": "Jeff Welch",
  8176. "email": "whatthejeff@gmail.com"
  8177. },
  8178. {
  8179. "name": "Volker Dusch",
  8180. "email": "github@wallbash.com"
  8181. },
  8182. {
  8183. "name": "Adam Harvey",
  8184. "email": "aharvey@php.net"
  8185. },
  8186. {
  8187. "name": "Bernhard Schussek",
  8188. "email": "bschussek@gmail.com"
  8189. }
  8190. ],
  8191. "description": "Provides the functionality to export PHP variables for visualization",
  8192. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  8193. "keywords": [
  8194. "export",
  8195. "exporter"
  8196. ],
  8197. "time": "2019-09-14T09:02:43+00:00"
  8198. },
  8199. {
  8200. "name": "sebastian/global-state",
  8201. "version": "2.0.0",
  8202. "source": {
  8203. "type": "git",
  8204. "url": "https://github.com/sebastianbergmann/global-state.git",
  8205. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  8206. },
  8207. "dist": {
  8208. "type": "zip",
  8209. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  8210. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  8211. "shasum": "",
  8212. "mirrors": [
  8213. {
  8214. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8215. "preferred": true
  8216. }
  8217. ]
  8218. },
  8219. "require": {
  8220. "php": "^7.0"
  8221. },
  8222. "require-dev": {
  8223. "phpunit/phpunit": "^6.0"
  8224. },
  8225. "suggest": {
  8226. "ext-uopz": "*"
  8227. },
  8228. "type": "library",
  8229. "extra": {
  8230. "branch-alias": {
  8231. "dev-master": "2.0-dev"
  8232. }
  8233. },
  8234. "autoload": {
  8235. "classmap": [
  8236. "src/"
  8237. ]
  8238. },
  8239. "notification-url": "https://packagist.org/downloads/",
  8240. "license": [
  8241. "BSD-3-Clause"
  8242. ],
  8243. "authors": [
  8244. {
  8245. "name": "Sebastian Bergmann",
  8246. "email": "sebastian@phpunit.de"
  8247. }
  8248. ],
  8249. "description": "Snapshotting of global state",
  8250. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  8251. "keywords": [
  8252. "global state"
  8253. ],
  8254. "time": "2017-04-27T15:39:26+00:00"
  8255. },
  8256. {
  8257. "name": "sebastian/object-enumerator",
  8258. "version": "3.0.3",
  8259. "source": {
  8260. "type": "git",
  8261. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  8262. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  8263. },
  8264. "dist": {
  8265. "type": "zip",
  8266. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  8267. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  8268. "shasum": "",
  8269. "mirrors": [
  8270. {
  8271. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8272. "preferred": true
  8273. }
  8274. ]
  8275. },
  8276. "require": {
  8277. "php": "^7.0",
  8278. "sebastian/object-reflector": "^1.1.1",
  8279. "sebastian/recursion-context": "^3.0"
  8280. },
  8281. "require-dev": {
  8282. "phpunit/phpunit": "^6.0"
  8283. },
  8284. "type": "library",
  8285. "extra": {
  8286. "branch-alias": {
  8287. "dev-master": "3.0.x-dev"
  8288. }
  8289. },
  8290. "autoload": {
  8291. "classmap": [
  8292. "src/"
  8293. ]
  8294. },
  8295. "notification-url": "https://packagist.org/downloads/",
  8296. "license": [
  8297. "BSD-3-Clause"
  8298. ],
  8299. "authors": [
  8300. {
  8301. "name": "Sebastian Bergmann",
  8302. "email": "sebastian@phpunit.de"
  8303. }
  8304. ],
  8305. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  8306. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  8307. "time": "2017-08-03T12:35:26+00:00"
  8308. },
  8309. {
  8310. "name": "sebastian/object-reflector",
  8311. "version": "1.1.1",
  8312. "source": {
  8313. "type": "git",
  8314. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  8315. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  8316. },
  8317. "dist": {
  8318. "type": "zip",
  8319. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  8320. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  8321. "shasum": "",
  8322. "mirrors": [
  8323. {
  8324. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8325. "preferred": true
  8326. }
  8327. ]
  8328. },
  8329. "require": {
  8330. "php": "^7.0"
  8331. },
  8332. "require-dev": {
  8333. "phpunit/phpunit": "^6.0"
  8334. },
  8335. "type": "library",
  8336. "extra": {
  8337. "branch-alias": {
  8338. "dev-master": "1.1-dev"
  8339. }
  8340. },
  8341. "autoload": {
  8342. "classmap": [
  8343. "src/"
  8344. ]
  8345. },
  8346. "notification-url": "https://packagist.org/downloads/",
  8347. "license": [
  8348. "BSD-3-Clause"
  8349. ],
  8350. "authors": [
  8351. {
  8352. "name": "Sebastian Bergmann",
  8353. "email": "sebastian@phpunit.de"
  8354. }
  8355. ],
  8356. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  8357. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  8358. "time": "2017-03-29T09:07:27+00:00"
  8359. },
  8360. {
  8361. "name": "sebastian/recursion-context",
  8362. "version": "3.0.0",
  8363. "source": {
  8364. "type": "git",
  8365. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  8366. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  8367. },
  8368. "dist": {
  8369. "type": "zip",
  8370. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  8371. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  8372. "shasum": "",
  8373. "mirrors": [
  8374. {
  8375. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8376. "preferred": true
  8377. }
  8378. ]
  8379. },
  8380. "require": {
  8381. "php": "^7.0"
  8382. },
  8383. "require-dev": {
  8384. "phpunit/phpunit": "^6.0"
  8385. },
  8386. "type": "library",
  8387. "extra": {
  8388. "branch-alias": {
  8389. "dev-master": "3.0.x-dev"
  8390. }
  8391. },
  8392. "autoload": {
  8393. "classmap": [
  8394. "src/"
  8395. ]
  8396. },
  8397. "notification-url": "https://packagist.org/downloads/",
  8398. "license": [
  8399. "BSD-3-Clause"
  8400. ],
  8401. "authors": [
  8402. {
  8403. "name": "Jeff Welch",
  8404. "email": "whatthejeff@gmail.com"
  8405. },
  8406. {
  8407. "name": "Sebastian Bergmann",
  8408. "email": "sebastian@phpunit.de"
  8409. },
  8410. {
  8411. "name": "Adam Harvey",
  8412. "email": "aharvey@php.net"
  8413. }
  8414. ],
  8415. "description": "Provides functionality to recursively process PHP variables",
  8416. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  8417. "time": "2017-03-03T06:23:57+00:00"
  8418. },
  8419. {
  8420. "name": "sebastian/resource-operations",
  8421. "version": "2.0.1",
  8422. "source": {
  8423. "type": "git",
  8424. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  8425. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9"
  8426. },
  8427. "dist": {
  8428. "type": "zip",
  8429. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  8430. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  8431. "shasum": "",
  8432. "mirrors": [
  8433. {
  8434. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8435. "preferred": true
  8436. }
  8437. ]
  8438. },
  8439. "require": {
  8440. "php": "^7.1"
  8441. },
  8442. "type": "library",
  8443. "extra": {
  8444. "branch-alias": {
  8445. "dev-master": "2.0-dev"
  8446. }
  8447. },
  8448. "autoload": {
  8449. "classmap": [
  8450. "src/"
  8451. ]
  8452. },
  8453. "notification-url": "https://packagist.org/downloads/",
  8454. "license": [
  8455. "BSD-3-Clause"
  8456. ],
  8457. "authors": [
  8458. {
  8459. "name": "Sebastian Bergmann",
  8460. "email": "sebastian@phpunit.de"
  8461. }
  8462. ],
  8463. "description": "Provides a list of PHP built-in functions that operate on resources",
  8464. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  8465. "time": "2018-10-04T04:07:39+00:00"
  8466. },
  8467. {
  8468. "name": "sebastian/version",
  8469. "version": "2.0.1",
  8470. "source": {
  8471. "type": "git",
  8472. "url": "https://github.com/sebastianbergmann/version.git",
  8473. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  8474. },
  8475. "dist": {
  8476. "type": "zip",
  8477. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  8478. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  8479. "shasum": "",
  8480. "mirrors": [
  8481. {
  8482. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8483. "preferred": true
  8484. }
  8485. ]
  8486. },
  8487. "require": {
  8488. "php": ">=5.6"
  8489. },
  8490. "type": "library",
  8491. "extra": {
  8492. "branch-alias": {
  8493. "dev-master": "2.0.x-dev"
  8494. }
  8495. },
  8496. "autoload": {
  8497. "classmap": [
  8498. "src/"
  8499. ]
  8500. },
  8501. "notification-url": "https://packagist.org/downloads/",
  8502. "license": [
  8503. "BSD-3-Clause"
  8504. ],
  8505. "authors": [
  8506. {
  8507. "name": "Sebastian Bergmann",
  8508. "email": "sebastian@phpunit.de",
  8509. "role": "lead"
  8510. }
  8511. ],
  8512. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  8513. "homepage": "https://github.com/sebastianbergmann/version",
  8514. "time": "2016-10-03T07:35:21+00:00"
  8515. },
  8516. {
  8517. "name": "theseer/tokenizer",
  8518. "version": "1.2.0",
  8519. "source": {
  8520. "type": "git",
  8521. "url": "https://github.com/theseer/tokenizer.git",
  8522. "reference": "75a63c33a8577608444246075ea0af0d052e452a"
  8523. },
  8524. "dist": {
  8525. "type": "zip",
  8526. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a",
  8527. "reference": "75a63c33a8577608444246075ea0af0d052e452a",
  8528. "shasum": "",
  8529. "mirrors": [
  8530. {
  8531. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8532. "preferred": true
  8533. }
  8534. ]
  8535. },
  8536. "require": {
  8537. "ext-dom": "*",
  8538. "ext-tokenizer": "*",
  8539. "ext-xmlwriter": "*",
  8540. "php": "^7.2 || ^8.0"
  8541. },
  8542. "type": "library",
  8543. "autoload": {
  8544. "classmap": [
  8545. "src/"
  8546. ]
  8547. },
  8548. "notification-url": "https://packagist.org/downloads/",
  8549. "license": [
  8550. "BSD-3-Clause"
  8551. ],
  8552. "authors": [
  8553. {
  8554. "name": "Arne Blankerts",
  8555. "email": "arne@blankerts.de",
  8556. "role": "Developer"
  8557. }
  8558. ],
  8559. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  8560. "time": "2020-07-12T23:59:07+00:00"
  8561. }
  8562. ],
  8563. "aliases": [
  8564. {
  8565. "alias": "1.34.0",
  8566. "alias_normalized": "1.34.0.0",
  8567. "version": "2.16.3.0",
  8568. "package": "nesbot/carbon"
  8569. }
  8570. ],
  8571. "minimum-stability": "dev",
  8572. "stability-flags": [],
  8573. "prefer-stable": true,
  8574. "prefer-lowest": false,
  8575. "platform": {
  8576. "php": "^7.1.3"
  8577. },
  8578. "platform-dev": [],
  8579. "plugin-api-version": "1.1.0"
  8580. }