composer.lock 331 KB

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