composer.lock 247 KB

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