composer.lock 297 KB

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