composer.lock 270 KB

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