composer.lock 341 KB

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