composer.lock 290 KB

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