composer.lock 290 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181
  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.2",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/barryvdh/laravel-debugbar.git",
  15. "reference": "95c31aab33689cd4572d27038186886f4bfa63ae"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/95c31aab33689cd4572d27038186886f4bfa63ae",
  20. "reference": "95c31aab33689cd4572d27038186886f4bfa63ae",
  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-04-16T20:19:40+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.32.2",
  3003. "source": {
  3004. "type": "git",
  3005. "url": "https://github.com/briannesbitt/Carbon.git",
  3006. "reference": "f10e22cf546704fab1db4ad4b9dedbc5c797a0dc"
  3007. },
  3008. "dist": {
  3009. "type": "zip",
  3010. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/f10e22cf546704fab1db4ad4b9dedbc5c797a0dc",
  3011. "reference": "f10e22cf546704fab1db4ad4b9dedbc5c797a0dc",
  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/translation": "^3.4 || ^4.0 || ^5.0"
  3024. },
  3025. "require-dev": {
  3026. "doctrine/orm": "^2.7",
  3027. "friendsofphp/php-cs-fixer": "^2.14 || ^3.0",
  3028. "kylekatarnls/multi-tester": "^1.1",
  3029. "phpmd/phpmd": "^2.8",
  3030. "phpstan/phpstan": "^0.11",
  3031. "phpunit/phpunit": "^7.5 || ^8.0",
  3032. "squizlabs/php_codesniffer": "^3.4"
  3033. },
  3034. "bin": [
  3035. "bin/carbon"
  3036. ],
  3037. "type": "library",
  3038. "extra": {
  3039. "branch-alias": {
  3040. "dev-master": "2.x-dev"
  3041. },
  3042. "laravel": {
  3043. "providers": [
  3044. "Carbon\\Laravel\\ServiceProvider"
  3045. ]
  3046. }
  3047. },
  3048. "autoload": {
  3049. "psr-4": {
  3050. "Carbon\\": "src/Carbon/"
  3051. }
  3052. },
  3053. "notification-url": "https://packagist.org/downloads/",
  3054. "license": [
  3055. "MIT"
  3056. ],
  3057. "authors": [
  3058. {
  3059. "name": "Brian Nesbitt",
  3060. "email": "brian@nesbot.com",
  3061. "homepage": "http://nesbot.com"
  3062. },
  3063. {
  3064. "name": "kylekatarnls",
  3065. "homepage": "http://github.com/kylekatarnls"
  3066. }
  3067. ],
  3068. "description": "An API extension for DateTime that supports 281 different languages.",
  3069. "homepage": "http://carbon.nesbot.com",
  3070. "keywords": [
  3071. "date",
  3072. "datetime",
  3073. "time"
  3074. ],
  3075. "time": "2020-03-31T13:43:19+00:00"
  3076. },
  3077. {
  3078. "name": "nikic/php-parser",
  3079. "version": "v4.4.0",
  3080. "source": {
  3081. "type": "git",
  3082. "url": "https://github.com/nikic/PHP-Parser.git",
  3083. "reference": "bd43ec7152eaaab3bd8c6d0aa95ceeb1df8ee120"
  3084. },
  3085. "dist": {
  3086. "type": "zip",
  3087. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/bd43ec7152eaaab3bd8c6d0aa95ceeb1df8ee120",
  3088. "reference": "bd43ec7152eaaab3bd8c6d0aa95ceeb1df8ee120",
  3089. "shasum": "",
  3090. "mirrors": [
  3091. {
  3092. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3093. "preferred": true
  3094. }
  3095. ]
  3096. },
  3097. "require": {
  3098. "ext-tokenizer": "*",
  3099. "php": ">=7.0"
  3100. },
  3101. "require-dev": {
  3102. "ircmaxell/php-yacc": "0.0.5",
  3103. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0"
  3104. },
  3105. "bin": [
  3106. "bin/php-parse"
  3107. ],
  3108. "type": "library",
  3109. "extra": {
  3110. "branch-alias": {
  3111. "dev-master": "4.3-dev"
  3112. }
  3113. },
  3114. "autoload": {
  3115. "psr-4": {
  3116. "PhpParser\\": "lib/PhpParser"
  3117. }
  3118. },
  3119. "notification-url": "https://packagist.org/downloads/",
  3120. "license": [
  3121. "BSD-3-Clause"
  3122. ],
  3123. "authors": [
  3124. {
  3125. "name": "Nikita Popov"
  3126. }
  3127. ],
  3128. "description": "A PHP parser written in PHP",
  3129. "keywords": [
  3130. "parser",
  3131. "php"
  3132. ],
  3133. "time": "2020-04-10T16:34:50+00:00"
  3134. },
  3135. {
  3136. "name": "openlss/lib-array2xml",
  3137. "version": "1.0.0",
  3138. "source": {
  3139. "type": "git",
  3140. "url": "https://github.com/nullivex/lib-array2xml.git",
  3141. "reference": "a91f18a8dfc69ffabe5f9b068bc39bb202c81d90"
  3142. },
  3143. "dist": {
  3144. "type": "zip",
  3145. "url": "https://api.github.com/repos/nullivex/lib-array2xml/zipball/a91f18a8dfc69ffabe5f9b068bc39bb202c81d90",
  3146. "reference": "a91f18a8dfc69ffabe5f9b068bc39bb202c81d90",
  3147. "shasum": "",
  3148. "mirrors": [
  3149. {
  3150. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3151. "preferred": true
  3152. }
  3153. ]
  3154. },
  3155. "require": {
  3156. "php": ">=5.3.2"
  3157. },
  3158. "type": "library",
  3159. "autoload": {
  3160. "psr-0": {
  3161. "LSS": ""
  3162. }
  3163. },
  3164. "notification-url": "https://packagist.org/downloads/",
  3165. "license": [
  3166. "Apache-2.0"
  3167. ],
  3168. "authors": [
  3169. {
  3170. "name": "Bryan Tong",
  3171. "email": "bryan@nullivex.com",
  3172. "homepage": "https://www.nullivex.com"
  3173. },
  3174. {
  3175. "name": "Tony Butler",
  3176. "email": "spudz76@gmail.com",
  3177. "homepage": "https://www.nullivex.com"
  3178. }
  3179. ],
  3180. "description": "Array2XML conversion library credit to lalit.org",
  3181. "homepage": "https://www.nullivex.com",
  3182. "keywords": [
  3183. "array",
  3184. "array conversion",
  3185. "xml",
  3186. "xml conversion"
  3187. ],
  3188. "time": "2019-03-29T20:06:56+00:00"
  3189. },
  3190. {
  3191. "name": "opis/closure",
  3192. "version": "3.5.1",
  3193. "source": {
  3194. "type": "git",
  3195. "url": "https://github.com/opis/closure.git",
  3196. "reference": "93ebc5712cdad8d5f489b500c59d122df2e53969"
  3197. },
  3198. "dist": {
  3199. "type": "zip",
  3200. "url": "https://api.github.com/repos/opis/closure/zipball/93ebc5712cdad8d5f489b500c59d122df2e53969",
  3201. "reference": "93ebc5712cdad8d5f489b500c59d122df2e53969",
  3202. "shasum": "",
  3203. "mirrors": [
  3204. {
  3205. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3206. "preferred": true
  3207. }
  3208. ]
  3209. },
  3210. "require": {
  3211. "php": "^5.4 || ^7.0"
  3212. },
  3213. "require-dev": {
  3214. "jeremeamia/superclosure": "^2.0",
  3215. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  3216. },
  3217. "type": "library",
  3218. "extra": {
  3219. "branch-alias": {
  3220. "dev-master": "3.5.x-dev"
  3221. }
  3222. },
  3223. "autoload": {
  3224. "psr-4": {
  3225. "Opis\\Closure\\": "src/"
  3226. },
  3227. "files": [
  3228. "functions.php"
  3229. ]
  3230. },
  3231. "notification-url": "https://packagist.org/downloads/",
  3232. "license": [
  3233. "MIT"
  3234. ],
  3235. "authors": [
  3236. {
  3237. "name": "Marius Sarca",
  3238. "email": "marius.sarca@gmail.com"
  3239. },
  3240. {
  3241. "name": "Sorin Sarca",
  3242. "email": "sarca_sorin@hotmail.com"
  3243. }
  3244. ],
  3245. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  3246. "homepage": "https://opis.io/closure",
  3247. "keywords": [
  3248. "anonymous functions",
  3249. "closure",
  3250. "function",
  3251. "serializable",
  3252. "serialization",
  3253. "serialize"
  3254. ],
  3255. "time": "2019-11-29T22:36:02+00:00"
  3256. },
  3257. {
  3258. "name": "overtrue/laravel-lang",
  3259. "version": "3.0.17",
  3260. "source": {
  3261. "type": "git",
  3262. "url": "https://github.com/overtrue/laravel-lang.git",
  3263. "reference": "b36ac877da7b44135e1e3368456577c149b2e228"
  3264. },
  3265. "dist": {
  3266. "type": "zip",
  3267. "url": "https://api.github.com/repos/overtrue/laravel-lang/zipball/b36ac877da7b44135e1e3368456577c149b2e228",
  3268. "reference": "b36ac877da7b44135e1e3368456577c149b2e228",
  3269. "shasum": "",
  3270. "mirrors": [
  3271. {
  3272. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3273. "preferred": true
  3274. }
  3275. ]
  3276. },
  3277. "require": {
  3278. "caouecs/laravel-lang": "~4.0",
  3279. "symfony/process": "^3.0|^4.0"
  3280. },
  3281. "type": "library",
  3282. "autoload": {
  3283. "psr-4": {
  3284. "Overtrue\\LaravelLang\\": "src/"
  3285. },
  3286. "files": [
  3287. "src/helpers.php"
  3288. ]
  3289. },
  3290. "notification-url": "https://packagist.org/downloads/",
  3291. "license": [
  3292. "MIT"
  3293. ],
  3294. "authors": [
  3295. {
  3296. "name": "overtrue",
  3297. "email": "anzhengchao@gmail.com"
  3298. }
  3299. ],
  3300. "description": "List of 52 languages for Laravel 5",
  3301. "keywords": [
  3302. "languages",
  3303. "laravel",
  3304. "overtrue"
  3305. ],
  3306. "time": "2019-09-04T11:04:14+00:00"
  3307. },
  3308. {
  3309. "name": "paragonie/random_compat",
  3310. "version": "v9.99.99",
  3311. "source": {
  3312. "type": "git",
  3313. "url": "https://github.com/paragonie/random_compat.git",
  3314. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
  3315. },
  3316. "dist": {
  3317. "type": "zip",
  3318. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  3319. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  3320. "shasum": "",
  3321. "mirrors": [
  3322. {
  3323. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3324. "preferred": true
  3325. }
  3326. ]
  3327. },
  3328. "require": {
  3329. "php": "^7"
  3330. },
  3331. "require-dev": {
  3332. "phpunit/phpunit": "4.*|5.*",
  3333. "vimeo/psalm": "^1"
  3334. },
  3335. "suggest": {
  3336. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  3337. },
  3338. "type": "library",
  3339. "notification-url": "https://packagist.org/downloads/",
  3340. "license": [
  3341. "MIT"
  3342. ],
  3343. "authors": [
  3344. {
  3345. "name": "Paragon Initiative Enterprises",
  3346. "email": "security@paragonie.com",
  3347. "homepage": "https://paragonie.com"
  3348. }
  3349. ],
  3350. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  3351. "keywords": [
  3352. "csprng",
  3353. "polyfill",
  3354. "pseudorandom",
  3355. "random"
  3356. ],
  3357. "time": "2018-07-02T15:55:56+00:00"
  3358. },
  3359. {
  3360. "name": "phpoffice/phpspreadsheet",
  3361. "version": "1.11.0",
  3362. "source": {
  3363. "type": "git",
  3364. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  3365. "reference": "c2a205e82f9cf1cc9fab86b79e808d86dd680470"
  3366. },
  3367. "dist": {
  3368. "type": "zip",
  3369. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/c2a205e82f9cf1cc9fab86b79e808d86dd680470",
  3370. "reference": "c2a205e82f9cf1cc9fab86b79e808d86dd680470",
  3371. "shasum": "",
  3372. "mirrors": [
  3373. {
  3374. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3375. "preferred": true
  3376. }
  3377. ]
  3378. },
  3379. "require": {
  3380. "ext-ctype": "*",
  3381. "ext-dom": "*",
  3382. "ext-fileinfo": "*",
  3383. "ext-gd": "*",
  3384. "ext-iconv": "*",
  3385. "ext-libxml": "*",
  3386. "ext-mbstring": "*",
  3387. "ext-simplexml": "*",
  3388. "ext-xml": "*",
  3389. "ext-xmlreader": "*",
  3390. "ext-xmlwriter": "*",
  3391. "ext-zip": "*",
  3392. "ext-zlib": "*",
  3393. "markbaker/complex": "^1.4",
  3394. "markbaker/matrix": "^1.2",
  3395. "php": "^7.1",
  3396. "psr/simple-cache": "^1.0"
  3397. },
  3398. "require-dev": {
  3399. "dompdf/dompdf": "^0.8.3",
  3400. "friendsofphp/php-cs-fixer": "^2.16",
  3401. "jpgraph/jpgraph": "^4.0",
  3402. "mpdf/mpdf": "^8.0",
  3403. "phpcompatibility/php-compatibility": "^9.3",
  3404. "phpunit/phpunit": "^7.5",
  3405. "squizlabs/php_codesniffer": "^3.5",
  3406. "tecnickcom/tcpdf": "^6.3"
  3407. },
  3408. "suggest": {
  3409. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  3410. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  3411. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  3412. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  3413. },
  3414. "type": "library",
  3415. "autoload": {
  3416. "psr-4": {
  3417. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  3418. }
  3419. },
  3420. "notification-url": "https://packagist.org/downloads/",
  3421. "license": [
  3422. "MIT"
  3423. ],
  3424. "authors": [
  3425. {
  3426. "name": "Maarten Balliauw",
  3427. "homepage": "https://blog.maartenballiauw.be"
  3428. },
  3429. {
  3430. "name": "Mark Baker",
  3431. "homepage": "https://markbakeruk.net"
  3432. },
  3433. {
  3434. "name": "Franck Lefevre",
  3435. "homepage": "https://rootslabs.net"
  3436. },
  3437. {
  3438. "name": "Erik Tilt"
  3439. },
  3440. {
  3441. "name": "Adrien Crivelli"
  3442. }
  3443. ],
  3444. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  3445. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  3446. "keywords": [
  3447. "OpenXML",
  3448. "excel",
  3449. "gnumeric",
  3450. "ods",
  3451. "php",
  3452. "spreadsheet",
  3453. "xls",
  3454. "xlsx"
  3455. ],
  3456. "time": "2020-03-02T13:09:03+00:00"
  3457. },
  3458. {
  3459. "name": "phpoption/phpoption",
  3460. "version": "1.7.3",
  3461. "source": {
  3462. "type": "git",
  3463. "url": "https://github.com/schmittjoh/php-option.git",
  3464. "reference": "4acfd6a4b33a509d8c88f50e5222f734b6aeebae"
  3465. },
  3466. "dist": {
  3467. "type": "zip",
  3468. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/4acfd6a4b33a509d8c88f50e5222f734b6aeebae",
  3469. "reference": "4acfd6a4b33a509d8c88f50e5222f734b6aeebae",
  3470. "shasum": "",
  3471. "mirrors": [
  3472. {
  3473. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3474. "preferred": true
  3475. }
  3476. ]
  3477. },
  3478. "require": {
  3479. "php": "^5.5.9 || ^7.0 || ^8.0"
  3480. },
  3481. "require-dev": {
  3482. "bamarni/composer-bin-plugin": "^1.3",
  3483. "phpunit/phpunit": "^4.8.35 || ^5.0 || ^6.0 || ^7.0"
  3484. },
  3485. "type": "library",
  3486. "extra": {
  3487. "branch-alias": {
  3488. "dev-master": "1.7-dev"
  3489. }
  3490. },
  3491. "autoload": {
  3492. "psr-4": {
  3493. "PhpOption\\": "src/PhpOption/"
  3494. }
  3495. },
  3496. "notification-url": "https://packagist.org/downloads/",
  3497. "license": [
  3498. "Apache-2.0"
  3499. ],
  3500. "authors": [
  3501. {
  3502. "name": "Johannes M. Schmitt",
  3503. "email": "schmittjoh@gmail.com"
  3504. },
  3505. {
  3506. "name": "Graham Campbell",
  3507. "email": "graham@alt-three.com"
  3508. }
  3509. ],
  3510. "description": "Option Type for PHP",
  3511. "keywords": [
  3512. "language",
  3513. "option",
  3514. "php",
  3515. "type"
  3516. ],
  3517. "time": "2020-03-21T18:07:53+00:00"
  3518. },
  3519. {
  3520. "name": "predis/predis",
  3521. "version": "v1.1.1",
  3522. "source": {
  3523. "type": "git",
  3524. "url": "https://github.com/nrk/predis.git",
  3525. "reference": "f0210e38881631afeafb56ab43405a92cafd9fd1"
  3526. },
  3527. "dist": {
  3528. "type": "zip",
  3529. "url": "https://api.github.com/repos/nrk/predis/zipball/f0210e38881631afeafb56ab43405a92cafd9fd1",
  3530. "reference": "f0210e38881631afeafb56ab43405a92cafd9fd1",
  3531. "shasum": "",
  3532. "mirrors": [
  3533. {
  3534. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3535. "preferred": true
  3536. }
  3537. ]
  3538. },
  3539. "require": {
  3540. "php": ">=5.3.9"
  3541. },
  3542. "require-dev": {
  3543. "phpunit/phpunit": "~4.8"
  3544. },
  3545. "suggest": {
  3546. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  3547. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  3548. },
  3549. "type": "library",
  3550. "autoload": {
  3551. "psr-4": {
  3552. "Predis\\": "src/"
  3553. }
  3554. },
  3555. "notification-url": "https://packagist.org/downloads/",
  3556. "license": [
  3557. "MIT"
  3558. ],
  3559. "authors": [
  3560. {
  3561. "name": "Daniele Alessandri",
  3562. "email": "suppakilla@gmail.com",
  3563. "homepage": "http://clorophilla.net"
  3564. }
  3565. ],
  3566. "description": "Flexible and feature-complete Redis client for PHP and HHVM",
  3567. "homepage": "http://github.com/nrk/predis",
  3568. "keywords": [
  3569. "nosql",
  3570. "predis",
  3571. "redis"
  3572. ],
  3573. "time": "2016-06-16T16:22:20+00:00"
  3574. },
  3575. {
  3576. "name": "psr/container",
  3577. "version": "1.0.0",
  3578. "source": {
  3579. "type": "git",
  3580. "url": "https://github.com/php-fig/container.git",
  3581. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  3582. },
  3583. "dist": {
  3584. "type": "zip",
  3585. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  3586. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  3587. "shasum": "",
  3588. "mirrors": [
  3589. {
  3590. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3591. "preferred": true
  3592. }
  3593. ]
  3594. },
  3595. "require": {
  3596. "php": ">=5.3.0"
  3597. },
  3598. "type": "library",
  3599. "extra": {
  3600. "branch-alias": {
  3601. "dev-master": "1.0.x-dev"
  3602. }
  3603. },
  3604. "autoload": {
  3605. "psr-4": {
  3606. "Psr\\Container\\": "src/"
  3607. }
  3608. },
  3609. "notification-url": "https://packagist.org/downloads/",
  3610. "license": [
  3611. "MIT"
  3612. ],
  3613. "authors": [
  3614. {
  3615. "name": "PHP-FIG",
  3616. "homepage": "http://www.php-fig.org/"
  3617. }
  3618. ],
  3619. "description": "Common Container Interface (PHP FIG PSR-11)",
  3620. "homepage": "https://github.com/php-fig/container",
  3621. "keywords": [
  3622. "PSR-11",
  3623. "container",
  3624. "container-interface",
  3625. "container-interop",
  3626. "psr"
  3627. ],
  3628. "time": "2017-02-14T16:28:37+00:00"
  3629. },
  3630. {
  3631. "name": "psr/http-message",
  3632. "version": "1.0.1",
  3633. "source": {
  3634. "type": "git",
  3635. "url": "https://github.com/php-fig/http-message.git",
  3636. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  3637. },
  3638. "dist": {
  3639. "type": "zip",
  3640. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  3641. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  3642. "shasum": "",
  3643. "mirrors": [
  3644. {
  3645. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3646. "preferred": true
  3647. }
  3648. ]
  3649. },
  3650. "require": {
  3651. "php": ">=5.3.0"
  3652. },
  3653. "type": "library",
  3654. "extra": {
  3655. "branch-alias": {
  3656. "dev-master": "1.0.x-dev"
  3657. }
  3658. },
  3659. "autoload": {
  3660. "psr-4": {
  3661. "Psr\\Http\\Message\\": "src/"
  3662. }
  3663. },
  3664. "notification-url": "https://packagist.org/downloads/",
  3665. "license": [
  3666. "MIT"
  3667. ],
  3668. "authors": [
  3669. {
  3670. "name": "PHP-FIG",
  3671. "homepage": "http://www.php-fig.org/"
  3672. }
  3673. ],
  3674. "description": "Common interface for HTTP messages",
  3675. "homepage": "https://github.com/php-fig/http-message",
  3676. "keywords": [
  3677. "http",
  3678. "http-message",
  3679. "psr",
  3680. "psr-7",
  3681. "request",
  3682. "response"
  3683. ],
  3684. "time": "2016-08-06T14:39:51+00:00"
  3685. },
  3686. {
  3687. "name": "psr/log",
  3688. "version": "1.1.3",
  3689. "source": {
  3690. "type": "git",
  3691. "url": "https://github.com/php-fig/log.git",
  3692. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  3693. },
  3694. "dist": {
  3695. "type": "zip",
  3696. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  3697. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  3698. "shasum": "",
  3699. "mirrors": [
  3700. {
  3701. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3702. "preferred": true
  3703. }
  3704. ]
  3705. },
  3706. "require": {
  3707. "php": ">=5.3.0"
  3708. },
  3709. "type": "library",
  3710. "extra": {
  3711. "branch-alias": {
  3712. "dev-master": "1.1.x-dev"
  3713. }
  3714. },
  3715. "autoload": {
  3716. "psr-4": {
  3717. "Psr\\Log\\": "Psr/Log/"
  3718. }
  3719. },
  3720. "notification-url": "https://packagist.org/downloads/",
  3721. "license": [
  3722. "MIT"
  3723. ],
  3724. "authors": [
  3725. {
  3726. "name": "PHP-FIG",
  3727. "homepage": "http://www.php-fig.org/"
  3728. }
  3729. ],
  3730. "description": "Common interface for logging libraries",
  3731. "homepage": "https://github.com/php-fig/log",
  3732. "keywords": [
  3733. "log",
  3734. "psr",
  3735. "psr-3"
  3736. ],
  3737. "time": "2020-03-23T09:12:05+00:00"
  3738. },
  3739. {
  3740. "name": "psr/simple-cache",
  3741. "version": "1.0.1",
  3742. "source": {
  3743. "type": "git",
  3744. "url": "https://github.com/php-fig/simple-cache.git",
  3745. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  3746. },
  3747. "dist": {
  3748. "type": "zip",
  3749. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3750. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3751. "shasum": "",
  3752. "mirrors": [
  3753. {
  3754. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3755. "preferred": true
  3756. }
  3757. ]
  3758. },
  3759. "require": {
  3760. "php": ">=5.3.0"
  3761. },
  3762. "type": "library",
  3763. "extra": {
  3764. "branch-alias": {
  3765. "dev-master": "1.0.x-dev"
  3766. }
  3767. },
  3768. "autoload": {
  3769. "psr-4": {
  3770. "Psr\\SimpleCache\\": "src/"
  3771. }
  3772. },
  3773. "notification-url": "https://packagist.org/downloads/",
  3774. "license": [
  3775. "MIT"
  3776. ],
  3777. "authors": [
  3778. {
  3779. "name": "PHP-FIG",
  3780. "homepage": "http://www.php-fig.org/"
  3781. }
  3782. ],
  3783. "description": "Common interfaces for simple caching",
  3784. "keywords": [
  3785. "cache",
  3786. "caching",
  3787. "psr",
  3788. "psr-16",
  3789. "simple-cache"
  3790. ],
  3791. "time": "2017-10-23T01:57:42+00:00"
  3792. },
  3793. {
  3794. "name": "psy/psysh",
  3795. "version": "v0.9.12",
  3796. "source": {
  3797. "type": "git",
  3798. "url": "https://github.com/bobthecow/psysh.git",
  3799. "reference": "90da7f37568aee36b116a030c5f99c915267edd4"
  3800. },
  3801. "dist": {
  3802. "type": "zip",
  3803. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/90da7f37568aee36b116a030c5f99c915267edd4",
  3804. "reference": "90da7f37568aee36b116a030c5f99c915267edd4",
  3805. "shasum": "",
  3806. "mirrors": [
  3807. {
  3808. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3809. "preferred": true
  3810. }
  3811. ]
  3812. },
  3813. "require": {
  3814. "dnoegel/php-xdg-base-dir": "0.1.*",
  3815. "ext-json": "*",
  3816. "ext-tokenizer": "*",
  3817. "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
  3818. "nikic/php-parser": "~1.3|~2.0|~3.0|~4.0",
  3819. "php": ">=5.4.0",
  3820. "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0|~5.0",
  3821. "symfony/var-dumper": "~2.7|~3.0|~4.0|~5.0"
  3822. },
  3823. "require-dev": {
  3824. "bamarni/composer-bin-plugin": "^1.2",
  3825. "hoa/console": "~2.15|~3.16",
  3826. "phpunit/phpunit": "~4.8.35|~5.0|~6.0|~7.0"
  3827. },
  3828. "suggest": {
  3829. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  3830. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  3831. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  3832. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  3833. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  3834. },
  3835. "bin": [
  3836. "bin/psysh"
  3837. ],
  3838. "type": "library",
  3839. "extra": {
  3840. "branch-alias": {
  3841. "dev-develop": "0.9.x-dev"
  3842. }
  3843. },
  3844. "autoload": {
  3845. "files": [
  3846. "src/functions.php"
  3847. ],
  3848. "psr-4": {
  3849. "Psy\\": "src/"
  3850. }
  3851. },
  3852. "notification-url": "https://packagist.org/downloads/",
  3853. "license": [
  3854. "MIT"
  3855. ],
  3856. "authors": [
  3857. {
  3858. "name": "Justin Hileman",
  3859. "email": "justin@justinhileman.info",
  3860. "homepage": "http://justinhileman.com"
  3861. }
  3862. ],
  3863. "description": "An interactive shell for modern PHP.",
  3864. "homepage": "http://psysh.org",
  3865. "keywords": [
  3866. "REPL",
  3867. "console",
  3868. "interactive",
  3869. "shell"
  3870. ],
  3871. "time": "2019-12-06T14:19:43+00:00"
  3872. },
  3873. {
  3874. "name": "ralouphie/getallheaders",
  3875. "version": "3.0.3",
  3876. "source": {
  3877. "type": "git",
  3878. "url": "https://github.com/ralouphie/getallheaders.git",
  3879. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  3880. },
  3881. "dist": {
  3882. "type": "zip",
  3883. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  3884. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  3885. "shasum": "",
  3886. "mirrors": [
  3887. {
  3888. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3889. "preferred": true
  3890. }
  3891. ]
  3892. },
  3893. "require": {
  3894. "php": ">=5.6"
  3895. },
  3896. "require-dev": {
  3897. "php-coveralls/php-coveralls": "^2.1",
  3898. "phpunit/phpunit": "^5 || ^6.5"
  3899. },
  3900. "type": "library",
  3901. "autoload": {
  3902. "files": [
  3903. "src/getallheaders.php"
  3904. ]
  3905. },
  3906. "notification-url": "https://packagist.org/downloads/",
  3907. "license": [
  3908. "MIT"
  3909. ],
  3910. "authors": [
  3911. {
  3912. "name": "Ralph Khattar",
  3913. "email": "ralph.khattar@gmail.com"
  3914. }
  3915. ],
  3916. "description": "A polyfill for getallheaders.",
  3917. "time": "2019-03-08T08:55:37+00:00"
  3918. },
  3919. {
  3920. "name": "ramsey/uuid",
  3921. "version": "3.9.3",
  3922. "source": {
  3923. "type": "git",
  3924. "url": "https://github.com/ramsey/uuid.git",
  3925. "reference": "7e1633a6964b48589b142d60542f9ed31bd37a92"
  3926. },
  3927. "dist": {
  3928. "type": "zip",
  3929. "url": "https://api.github.com/repos/ramsey/uuid/zipball/7e1633a6964b48589b142d60542f9ed31bd37a92",
  3930. "reference": "7e1633a6964b48589b142d60542f9ed31bd37a92",
  3931. "shasum": "",
  3932. "mirrors": [
  3933. {
  3934. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3935. "preferred": true
  3936. }
  3937. ]
  3938. },
  3939. "require": {
  3940. "ext-json": "*",
  3941. "paragonie/random_compat": "^1 | ^2 | 9.99.99",
  3942. "php": "^5.4 | ^7 | ^8",
  3943. "symfony/polyfill-ctype": "^1.8"
  3944. },
  3945. "replace": {
  3946. "rhumsaa/uuid": "self.version"
  3947. },
  3948. "require-dev": {
  3949. "codeception/aspect-mock": "^1 | ^2",
  3950. "doctrine/annotations": "^1.2",
  3951. "goaop/framework": "1.0.0-alpha.2 | ^1 | ^2.1",
  3952. "jakub-onderka/php-parallel-lint": "^1",
  3953. "mockery/mockery": "^0.9.11 | ^1",
  3954. "moontoast/math": "^1.1",
  3955. "paragonie/random-lib": "^2",
  3956. "php-mock/php-mock-phpunit": "^0.3 | ^1.1",
  3957. "phpunit/phpunit": "^4.8 | ^5.4 | ^6.5",
  3958. "squizlabs/php_codesniffer": "^3.5"
  3959. },
  3960. "suggest": {
  3961. "ext-ctype": "Provides support for PHP Ctype functions",
  3962. "ext-libsodium": "Provides the PECL libsodium extension for use with the SodiumRandomGenerator",
  3963. "ext-openssl": "Provides the OpenSSL extension for use with the OpenSslGenerator",
  3964. "ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator",
  3965. "moontoast/math": "Provides support for converting UUID to 128-bit integer (in string form).",
  3966. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  3967. "ramsey/uuid-console": "A console application for generating UUIDs with ramsey/uuid",
  3968. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  3969. },
  3970. "type": "library",
  3971. "extra": {
  3972. "branch-alias": {
  3973. "dev-master": "3.x-dev"
  3974. }
  3975. },
  3976. "autoload": {
  3977. "psr-4": {
  3978. "Ramsey\\Uuid\\": "src/"
  3979. },
  3980. "files": [
  3981. "src/functions.php"
  3982. ]
  3983. },
  3984. "notification-url": "https://packagist.org/downloads/",
  3985. "license": [
  3986. "MIT"
  3987. ],
  3988. "authors": [
  3989. {
  3990. "name": "Ben Ramsey",
  3991. "email": "ben@benramsey.com",
  3992. "homepage": "https://benramsey.com"
  3993. },
  3994. {
  3995. "name": "Marijn Huizendveld",
  3996. "email": "marijn.huizendveld@gmail.com"
  3997. },
  3998. {
  3999. "name": "Thibaud Fabre",
  4000. "email": "thibaud@aztech.io"
  4001. }
  4002. ],
  4003. "description": "Formerly rhumsaa/uuid. A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).",
  4004. "homepage": "https://github.com/ramsey/uuid",
  4005. "keywords": [
  4006. "guid",
  4007. "identifier",
  4008. "uuid"
  4009. ],
  4010. "time": "2020-02-21T04:36:14+00:00"
  4011. },
  4012. {
  4013. "name": "rap2hpoutre/laravel-log-viewer",
  4014. "version": "v1.5.2",
  4015. "source": {
  4016. "type": "git",
  4017. "url": "https://github.com/rap2hpoutre/laravel-log-viewer.git",
  4018. "reference": "337bb72d2af6b0de9b3128e77f13c1ff262bc962"
  4019. },
  4020. "dist": {
  4021. "type": "zip",
  4022. "url": "https://api.github.com/repos/rap2hpoutre/laravel-log-viewer/zipball/337bb72d2af6b0de9b3128e77f13c1ff262bc962",
  4023. "reference": "337bb72d2af6b0de9b3128e77f13c1ff262bc962",
  4024. "shasum": "",
  4025. "mirrors": [
  4026. {
  4027. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4028. "preferred": true
  4029. }
  4030. ]
  4031. },
  4032. "require": {
  4033. "illuminate/support": "4.2.*|5.*|^6.0|^7.0",
  4034. "php": ">=5.4.0"
  4035. },
  4036. "require-dev": {
  4037. "orchestra/testbench": "3.7.*",
  4038. "phpunit/phpunit": "^7"
  4039. },
  4040. "type": "laravel-package",
  4041. "extra": {
  4042. "laravel": {
  4043. "providers": [
  4044. "Rap2hpoutre\\LaravelLogViewer\\LaravelLogViewerServiceProvider"
  4045. ]
  4046. }
  4047. },
  4048. "autoload": {
  4049. "classmap": [
  4050. "src/controllers"
  4051. ],
  4052. "psr-0": {
  4053. "Rap2hpoutre\\LaravelLogViewer\\": "src/"
  4054. }
  4055. },
  4056. "notification-url": "https://packagist.org/downloads/",
  4057. "license": [
  4058. "MIT"
  4059. ],
  4060. "authors": [
  4061. {
  4062. "name": "rap2hpoutre",
  4063. "email": "raphaelht@gmail.com"
  4064. }
  4065. ],
  4066. "description": "A Laravel log reader",
  4067. "keywords": [
  4068. "laravel",
  4069. "log",
  4070. "log-reader",
  4071. "log-viewer",
  4072. "logging",
  4073. "lumen"
  4074. ],
  4075. "time": "2020-04-23T19:44:47+00:00"
  4076. },
  4077. {
  4078. "name": "riverslei/payment",
  4079. "version": "v5.0.2",
  4080. "source": {
  4081. "type": "git",
  4082. "url": "https://github.com/helei112g/payment.git",
  4083. "reference": "c3a77896694f45d6b56547582f2d4996965e36bc"
  4084. },
  4085. "dist": {
  4086. "type": "zip",
  4087. "url": "https://api.github.com/repos/helei112g/payment/zipball/c3a77896694f45d6b56547582f2d4996965e36bc",
  4088. "reference": "c3a77896694f45d6b56547582f2d4996965e36bc",
  4089. "shasum": "",
  4090. "mirrors": [
  4091. {
  4092. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4093. "preferred": true
  4094. }
  4095. ]
  4096. },
  4097. "require": {
  4098. "ext-bcmath": "*",
  4099. "ext-json": "*",
  4100. "ext-mbstring": "*",
  4101. "ext-openssl": "*",
  4102. "ext-simplexml": "*",
  4103. "ext-xml": "*",
  4104. "guzzlehttp/guzzle": "~6.0",
  4105. "php": ">=7.0"
  4106. },
  4107. "require-dev": {
  4108. "codeception/codeception": "*"
  4109. },
  4110. "type": "library",
  4111. "autoload": {
  4112. "psr-4": {
  4113. "Payment\\": "src/"
  4114. }
  4115. },
  4116. "notification-url": "https://packagist.org/downloads/",
  4117. "license": [
  4118. "MIT"
  4119. ],
  4120. "authors": [
  4121. {
  4122. "name": "Leo",
  4123. "email": "dayugog@gmail.com",
  4124. "homepage": "https://dayutalk.cn"
  4125. }
  4126. ],
  4127. "description": "支付宝支付、微信支付、招商一网通支付php SDK。方便快速接入,最完整的开源支付 php sdk",
  4128. "homepage": "http://helei112g.github.io/payment",
  4129. "keywords": [
  4130. "alipay",
  4131. "weixin",
  4132. "一网通",
  4133. "微信支付",
  4134. "招商一网通",
  4135. "支付宝支付",
  4136. "集成支付接口SDK"
  4137. ],
  4138. "time": "2020-04-16T03:22:55+00:00"
  4139. },
  4140. {
  4141. "name": "scyllaly/hcaptcha",
  4142. "version": "4.1",
  4143. "source": {
  4144. "type": "git",
  4145. "url": "https://github.com/Scyllaly/hcaptcha.git",
  4146. "reference": "97ca32c09f9f04ac10aaf394485f0ec49e5a6a75"
  4147. },
  4148. "dist": {
  4149. "type": "zip",
  4150. "url": "https://api.github.com/repos/Scyllaly/hcaptcha/zipball/97ca32c09f9f04ac10aaf394485f0ec49e5a6a75",
  4151. "reference": "97ca32c09f9f04ac10aaf394485f0ec49e5a6a75",
  4152. "shasum": "",
  4153. "mirrors": [
  4154. {
  4155. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4156. "preferred": true
  4157. }
  4158. ]
  4159. },
  4160. "require": {
  4161. "guzzlehttp/guzzle": "^6.2",
  4162. "illuminate/support": "5.0.*|5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*",
  4163. "php": ">=5.5.5"
  4164. },
  4165. "require-dev": {
  4166. "phpunit/phpunit": "~4.8"
  4167. },
  4168. "type": "library",
  4169. "autoload": {
  4170. "psr-4": {
  4171. "Scyllaly\\HCaptcha\\": "src/"
  4172. }
  4173. },
  4174. "notification-url": "https://packagist.org/downloads/",
  4175. "license": [
  4176. "MIT"
  4177. ],
  4178. "authors": [
  4179. {
  4180. "name": "scyllaly",
  4181. "email": "scyllaly@github.com"
  4182. }
  4183. ],
  4184. "description": "hCaptcha For Laravel5.x",
  4185. "keywords": [
  4186. "captcha",
  4187. "hcaptcha",
  4188. "laravel",
  4189. "laravel5"
  4190. ],
  4191. "time": "2020-04-21T16:58:39+00:00"
  4192. },
  4193. {
  4194. "name": "seld/jsonlint",
  4195. "version": "1.7.2",
  4196. "source": {
  4197. "type": "git",
  4198. "url": "https://github.com/Seldaek/jsonlint.git",
  4199. "reference": "e2e5d290e4d2a4f0eb449f510071392e00e10d19"
  4200. },
  4201. "dist": {
  4202. "type": "zip",
  4203. "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/e2e5d290e4d2a4f0eb449f510071392e00e10d19",
  4204. "reference": "e2e5d290e4d2a4f0eb449f510071392e00e10d19",
  4205. "shasum": "",
  4206. "mirrors": [
  4207. {
  4208. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4209. "preferred": true
  4210. }
  4211. ]
  4212. },
  4213. "require": {
  4214. "php": "^5.3 || ^7.0"
  4215. },
  4216. "require-dev": {
  4217. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  4218. },
  4219. "bin": [
  4220. "bin/jsonlint"
  4221. ],
  4222. "type": "library",
  4223. "autoload": {
  4224. "psr-4": {
  4225. "Seld\\JsonLint\\": "src/Seld/JsonLint/"
  4226. }
  4227. },
  4228. "notification-url": "https://packagist.org/downloads/",
  4229. "license": [
  4230. "MIT"
  4231. ],
  4232. "authors": [
  4233. {
  4234. "name": "Jordi Boggiano",
  4235. "email": "j.boggiano@seld.be",
  4236. "homepage": "http://seld.be"
  4237. }
  4238. ],
  4239. "description": "JSON Linter",
  4240. "keywords": [
  4241. "json",
  4242. "linter",
  4243. "parser",
  4244. "validator"
  4245. ],
  4246. "time": "2019-10-24T14:27:39+00:00"
  4247. },
  4248. {
  4249. "name": "seld/phar-utils",
  4250. "version": "1.1.0",
  4251. "source": {
  4252. "type": "git",
  4253. "url": "https://github.com/Seldaek/phar-utils.git",
  4254. "reference": "8800503d56b9867d43d9c303b9cbcc26016e82f0"
  4255. },
  4256. "dist": {
  4257. "type": "zip",
  4258. "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/8800503d56b9867d43d9c303b9cbcc26016e82f0",
  4259. "reference": "8800503d56b9867d43d9c303b9cbcc26016e82f0",
  4260. "shasum": "",
  4261. "mirrors": [
  4262. {
  4263. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4264. "preferred": true
  4265. }
  4266. ]
  4267. },
  4268. "require": {
  4269. "php": ">=5.3"
  4270. },
  4271. "type": "library",
  4272. "extra": {
  4273. "branch-alias": {
  4274. "dev-master": "1.x-dev"
  4275. }
  4276. },
  4277. "autoload": {
  4278. "psr-4": {
  4279. "Seld\\PharUtils\\": "src/"
  4280. }
  4281. },
  4282. "notification-url": "https://packagist.org/downloads/",
  4283. "license": [
  4284. "MIT"
  4285. ],
  4286. "authors": [
  4287. {
  4288. "name": "Jordi Boggiano",
  4289. "email": "j.boggiano@seld.be"
  4290. }
  4291. ],
  4292. "description": "PHAR file format utilities, for when PHP phars you up",
  4293. "keywords": [
  4294. "phar"
  4295. ],
  4296. "time": "2020-02-14T15:25:33+00:00"
  4297. },
  4298. {
  4299. "name": "spatie/laravel-permission",
  4300. "version": "3.11.0",
  4301. "source": {
  4302. "type": "git",
  4303. "url": "https://github.com/spatie/laravel-permission.git",
  4304. "reference": "e90ed6242a8fa29735529160b9c21cb77b233e7f"
  4305. },
  4306. "dist": {
  4307. "type": "zip",
  4308. "url": "https://api.github.com/repos/spatie/laravel-permission/zipball/e90ed6242a8fa29735529160b9c21cb77b233e7f",
  4309. "reference": "e90ed6242a8fa29735529160b9c21cb77b233e7f",
  4310. "shasum": "",
  4311. "mirrors": [
  4312. {
  4313. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4314. "preferred": true
  4315. }
  4316. ]
  4317. },
  4318. "require": {
  4319. "illuminate/auth": "^5.8|^6.0|^7.0",
  4320. "illuminate/container": "^5.8|^6.0|^7.0",
  4321. "illuminate/contracts": "^5.8|^6.0|^7.0",
  4322. "illuminate/database": "^5.8|^6.0|^7.0",
  4323. "php": "^7.2.5"
  4324. },
  4325. "require-dev": {
  4326. "orchestra/testbench": "^3.8|^4.0|^5.0",
  4327. "phpunit/phpunit": "^8.0|^9.0",
  4328. "predis/predis": "^1.1"
  4329. },
  4330. "type": "library",
  4331. "extra": {
  4332. "laravel": {
  4333. "providers": [
  4334. "Spatie\\Permission\\PermissionServiceProvider"
  4335. ]
  4336. }
  4337. },
  4338. "autoload": {
  4339. "psr-4": {
  4340. "Spatie\\Permission\\": "src"
  4341. },
  4342. "files": [
  4343. "src/helpers.php"
  4344. ]
  4345. },
  4346. "notification-url": "https://packagist.org/downloads/",
  4347. "license": [
  4348. "MIT"
  4349. ],
  4350. "authors": [
  4351. {
  4352. "name": "Freek Van der Herten",
  4353. "email": "freek@spatie.be",
  4354. "homepage": "https://spatie.be",
  4355. "role": "Developer"
  4356. }
  4357. ],
  4358. "description": "Permission handling for Laravel 5.8 and up",
  4359. "homepage": "https://github.com/spatie/laravel-permission",
  4360. "keywords": [
  4361. "acl",
  4362. "laravel",
  4363. "permission",
  4364. "permissions",
  4365. "rbac",
  4366. "roles",
  4367. "security",
  4368. "spatie"
  4369. ],
  4370. "time": "2020-03-03T21:31:02+00:00"
  4371. },
  4372. {
  4373. "name": "srmklive/paypal",
  4374. "version": "1.7.0",
  4375. "source": {
  4376. "type": "git",
  4377. "url": "https://github.com/srmklive/laravel-paypal.git",
  4378. "reference": "09b78947e302837eb7851e6a4c204532c9ef4927"
  4379. },
  4380. "dist": {
  4381. "type": "zip",
  4382. "url": "https://api.github.com/repos/srmklive/laravel-paypal/zipball/09b78947e302837eb7851e6a4c204532c9ef4927",
  4383. "reference": "09b78947e302837eb7851e6a4c204532c9ef4927",
  4384. "shasum": "",
  4385. "mirrors": [
  4386. {
  4387. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4388. "preferred": true
  4389. }
  4390. ]
  4391. },
  4392. "require": {
  4393. "guzzlehttp/guzzle": "~6.0",
  4394. "illuminate/support": "~5.1|~5.2|~5.3|~5.4|~5.5|~5.6|~5.7|~5.8|~6.0|~7.0",
  4395. "nesbot/carbon": "~1.0|~2.0"
  4396. },
  4397. "type": "library",
  4398. "extra": {
  4399. "laravel": {
  4400. "providers": [
  4401. "Srmklive\\PayPal\\Providers\\PayPalServiceProvider"
  4402. ],
  4403. "aliases": {
  4404. "PayPal": "Srmklive\\PayPal\\Facades\\PayPal"
  4405. }
  4406. }
  4407. },
  4408. "autoload": {
  4409. "psr-4": {
  4410. "Srmklive\\PayPal\\": "src/"
  4411. }
  4412. },
  4413. "notification-url": "https://packagist.org/downloads/",
  4414. "license": [
  4415. "MIT"
  4416. ],
  4417. "authors": [
  4418. {
  4419. "name": "Raza Mehdi",
  4420. "email": "srmk@outlook.com"
  4421. }
  4422. ],
  4423. "description": "Laravel plugin For Processing Payments Through Paypal Express Checkout. Can Be Used Independently With Other Applications.",
  4424. "keywords": [
  4425. "http",
  4426. "laravel paypal",
  4427. "paypal",
  4428. "rest",
  4429. "web service"
  4430. ],
  4431. "time": "2020-03-03T09:42:56+00:00"
  4432. },
  4433. {
  4434. "name": "swiftmailer/swiftmailer",
  4435. "version": "v6.2.3",
  4436. "source": {
  4437. "type": "git",
  4438. "url": "https://github.com/swiftmailer/swiftmailer.git",
  4439. "reference": "149cfdf118b169f7840bbe3ef0d4bc795d1780c9"
  4440. },
  4441. "dist": {
  4442. "type": "zip",
  4443. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/149cfdf118b169f7840bbe3ef0d4bc795d1780c9",
  4444. "reference": "149cfdf118b169f7840bbe3ef0d4bc795d1780c9",
  4445. "shasum": "",
  4446. "mirrors": [
  4447. {
  4448. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4449. "preferred": true
  4450. }
  4451. ]
  4452. },
  4453. "require": {
  4454. "egulias/email-validator": "~2.0",
  4455. "php": ">=7.0.0",
  4456. "symfony/polyfill-iconv": "^1.0",
  4457. "symfony/polyfill-intl-idn": "^1.10",
  4458. "symfony/polyfill-mbstring": "^1.0"
  4459. },
  4460. "require-dev": {
  4461. "mockery/mockery": "~0.9.1",
  4462. "symfony/phpunit-bridge": "^3.4.19|^4.1.8"
  4463. },
  4464. "suggest": {
  4465. "ext-intl": "Needed to support internationalized email addresses",
  4466. "true/punycode": "Needed to support internationalized email addresses, if ext-intl is not installed"
  4467. },
  4468. "type": "library",
  4469. "extra": {
  4470. "branch-alias": {
  4471. "dev-master": "6.2-dev"
  4472. }
  4473. },
  4474. "autoload": {
  4475. "files": [
  4476. "lib/swift_required.php"
  4477. ]
  4478. },
  4479. "notification-url": "https://packagist.org/downloads/",
  4480. "license": [
  4481. "MIT"
  4482. ],
  4483. "authors": [
  4484. {
  4485. "name": "Chris Corbyn"
  4486. },
  4487. {
  4488. "name": "Fabien Potencier",
  4489. "email": "fabien@symfony.com"
  4490. }
  4491. ],
  4492. "description": "Swiftmailer, free feature-rich PHP mailer",
  4493. "homepage": "https://swiftmailer.symfony.com",
  4494. "keywords": [
  4495. "email",
  4496. "mail",
  4497. "mailer"
  4498. ],
  4499. "time": "2019-11-12T09:31:26+00:00"
  4500. },
  4501. {
  4502. "name": "symfony/console",
  4503. "version": "v4.4.7",
  4504. "source": {
  4505. "type": "git",
  4506. "url": "https://github.com/symfony/console.git",
  4507. "reference": "10bb3ee3c97308869d53b3e3d03f6ac23ff985f7"
  4508. },
  4509. "dist": {
  4510. "type": "zip",
  4511. "url": "https://api.github.com/repos/symfony/console/zipball/10bb3ee3c97308869d53b3e3d03f6ac23ff985f7",
  4512. "reference": "10bb3ee3c97308869d53b3e3d03f6ac23ff985f7",
  4513. "shasum": "",
  4514. "mirrors": [
  4515. {
  4516. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4517. "preferred": true
  4518. }
  4519. ]
  4520. },
  4521. "require": {
  4522. "php": "^7.1.3",
  4523. "symfony/polyfill-mbstring": "~1.0",
  4524. "symfony/polyfill-php73": "^1.8",
  4525. "symfony/service-contracts": "^1.1|^2"
  4526. },
  4527. "conflict": {
  4528. "symfony/dependency-injection": "<3.4",
  4529. "symfony/event-dispatcher": "<4.3|>=5",
  4530. "symfony/lock": "<4.4",
  4531. "symfony/process": "<3.3"
  4532. },
  4533. "provide": {
  4534. "psr/log-implementation": "1.0"
  4535. },
  4536. "require-dev": {
  4537. "psr/log": "~1.0",
  4538. "symfony/config": "^3.4|^4.0|^5.0",
  4539. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  4540. "symfony/event-dispatcher": "^4.3",
  4541. "symfony/lock": "^4.4|^5.0",
  4542. "symfony/process": "^3.4|^4.0|^5.0",
  4543. "symfony/var-dumper": "^4.3|^5.0"
  4544. },
  4545. "suggest": {
  4546. "psr/log": "For using the console logger",
  4547. "symfony/event-dispatcher": "",
  4548. "symfony/lock": "",
  4549. "symfony/process": ""
  4550. },
  4551. "type": "library",
  4552. "extra": {
  4553. "branch-alias": {
  4554. "dev-master": "4.4-dev"
  4555. }
  4556. },
  4557. "autoload": {
  4558. "psr-4": {
  4559. "Symfony\\Component\\Console\\": ""
  4560. },
  4561. "exclude-from-classmap": [
  4562. "/Tests/"
  4563. ]
  4564. },
  4565. "notification-url": "https://packagist.org/downloads/",
  4566. "license": [
  4567. "MIT"
  4568. ],
  4569. "authors": [
  4570. {
  4571. "name": "Fabien Potencier",
  4572. "email": "fabien@symfony.com"
  4573. },
  4574. {
  4575. "name": "Symfony Community",
  4576. "homepage": "https://symfony.com/contributors"
  4577. }
  4578. ],
  4579. "description": "Symfony Console Component",
  4580. "homepage": "https://symfony.com",
  4581. "time": "2020-03-30T11:41:10+00:00"
  4582. },
  4583. {
  4584. "name": "symfony/css-selector",
  4585. "version": "v5.0.7",
  4586. "source": {
  4587. "type": "git",
  4588. "url": "https://github.com/symfony/css-selector.git",
  4589. "reference": "5f8d5271303dad260692ba73dfa21777d38e124e"
  4590. },
  4591. "dist": {
  4592. "type": "zip",
  4593. "url": "https://api.github.com/repos/symfony/css-selector/zipball/5f8d5271303dad260692ba73dfa21777d38e124e",
  4594. "reference": "5f8d5271303dad260692ba73dfa21777d38e124e",
  4595. "shasum": "",
  4596. "mirrors": [
  4597. {
  4598. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4599. "preferred": true
  4600. }
  4601. ]
  4602. },
  4603. "require": {
  4604. "php": "^7.2.5"
  4605. },
  4606. "type": "library",
  4607. "extra": {
  4608. "branch-alias": {
  4609. "dev-master": "5.0-dev"
  4610. }
  4611. },
  4612. "autoload": {
  4613. "psr-4": {
  4614. "Symfony\\Component\\CssSelector\\": ""
  4615. },
  4616. "exclude-from-classmap": [
  4617. "/Tests/"
  4618. ]
  4619. },
  4620. "notification-url": "https://packagist.org/downloads/",
  4621. "license": [
  4622. "MIT"
  4623. ],
  4624. "authors": [
  4625. {
  4626. "name": "Fabien Potencier",
  4627. "email": "fabien@symfony.com"
  4628. },
  4629. {
  4630. "name": "Jean-François Simon",
  4631. "email": "jeanfrancois.simon@sensiolabs.com"
  4632. },
  4633. {
  4634. "name": "Symfony Community",
  4635. "homepage": "https://symfony.com/contributors"
  4636. }
  4637. ],
  4638. "description": "Symfony CssSelector Component",
  4639. "homepage": "https://symfony.com",
  4640. "time": "2020-03-27T16:56:45+00:00"
  4641. },
  4642. {
  4643. "name": "symfony/debug",
  4644. "version": "v4.4.7",
  4645. "source": {
  4646. "type": "git",
  4647. "url": "https://github.com/symfony/debug.git",
  4648. "reference": "346636d2cae417992ecfd761979b2ab98b339a45"
  4649. },
  4650. "dist": {
  4651. "type": "zip",
  4652. "url": "https://api.github.com/repos/symfony/debug/zipball/346636d2cae417992ecfd761979b2ab98b339a45",
  4653. "reference": "346636d2cae417992ecfd761979b2ab98b339a45",
  4654. "shasum": "",
  4655. "mirrors": [
  4656. {
  4657. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4658. "preferred": true
  4659. }
  4660. ]
  4661. },
  4662. "require": {
  4663. "php": "^7.1.3",
  4664. "psr/log": "~1.0"
  4665. },
  4666. "conflict": {
  4667. "symfony/http-kernel": "<3.4"
  4668. },
  4669. "require-dev": {
  4670. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  4671. },
  4672. "type": "library",
  4673. "extra": {
  4674. "branch-alias": {
  4675. "dev-master": "4.4-dev"
  4676. }
  4677. },
  4678. "autoload": {
  4679. "psr-4": {
  4680. "Symfony\\Component\\Debug\\": ""
  4681. },
  4682. "exclude-from-classmap": [
  4683. "/Tests/"
  4684. ]
  4685. },
  4686. "notification-url": "https://packagist.org/downloads/",
  4687. "license": [
  4688. "MIT"
  4689. ],
  4690. "authors": [
  4691. {
  4692. "name": "Fabien Potencier",
  4693. "email": "fabien@symfony.com"
  4694. },
  4695. {
  4696. "name": "Symfony Community",
  4697. "homepage": "https://symfony.com/contributors"
  4698. }
  4699. ],
  4700. "description": "Symfony Debug Component",
  4701. "homepage": "https://symfony.com",
  4702. "time": "2020-03-27T16:54:36+00:00"
  4703. },
  4704. {
  4705. "name": "symfony/error-handler",
  4706. "version": "v4.4.7",
  4707. "source": {
  4708. "type": "git",
  4709. "url": "https://github.com/symfony/error-handler.git",
  4710. "reference": "7e9828fc98aa1cf27b422fe478a84f5b0abb7358"
  4711. },
  4712. "dist": {
  4713. "type": "zip",
  4714. "url": "https://api.github.com/repos/symfony/error-handler/zipball/7e9828fc98aa1cf27b422fe478a84f5b0abb7358",
  4715. "reference": "7e9828fc98aa1cf27b422fe478a84f5b0abb7358",
  4716. "shasum": "",
  4717. "mirrors": [
  4718. {
  4719. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4720. "preferred": true
  4721. }
  4722. ]
  4723. },
  4724. "require": {
  4725. "php": "^7.1.3",
  4726. "psr/log": "~1.0",
  4727. "symfony/debug": "^4.4.5",
  4728. "symfony/var-dumper": "^4.4|^5.0"
  4729. },
  4730. "require-dev": {
  4731. "symfony/http-kernel": "^4.4|^5.0",
  4732. "symfony/serializer": "^4.4|^5.0"
  4733. },
  4734. "type": "library",
  4735. "extra": {
  4736. "branch-alias": {
  4737. "dev-master": "4.4-dev"
  4738. }
  4739. },
  4740. "autoload": {
  4741. "psr-4": {
  4742. "Symfony\\Component\\ErrorHandler\\": ""
  4743. },
  4744. "exclude-from-classmap": [
  4745. "/Tests/"
  4746. ]
  4747. },
  4748. "notification-url": "https://packagist.org/downloads/",
  4749. "license": [
  4750. "MIT"
  4751. ],
  4752. "authors": [
  4753. {
  4754. "name": "Fabien Potencier",
  4755. "email": "fabien@symfony.com"
  4756. },
  4757. {
  4758. "name": "Symfony Community",
  4759. "homepage": "https://symfony.com/contributors"
  4760. }
  4761. ],
  4762. "description": "Symfony ErrorHandler Component",
  4763. "homepage": "https://symfony.com",
  4764. "time": "2020-03-30T14:07:33+00:00"
  4765. },
  4766. {
  4767. "name": "symfony/event-dispatcher",
  4768. "version": "v4.4.7",
  4769. "source": {
  4770. "type": "git",
  4771. "url": "https://github.com/symfony/event-dispatcher.git",
  4772. "reference": "abc8e3618bfdb55e44c8c6a00abd333f831bbfed"
  4773. },
  4774. "dist": {
  4775. "type": "zip",
  4776. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/abc8e3618bfdb55e44c8c6a00abd333f831bbfed",
  4777. "reference": "abc8e3618bfdb55e44c8c6a00abd333f831bbfed",
  4778. "shasum": "",
  4779. "mirrors": [
  4780. {
  4781. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4782. "preferred": true
  4783. }
  4784. ]
  4785. },
  4786. "require": {
  4787. "php": "^7.1.3",
  4788. "symfony/event-dispatcher-contracts": "^1.1"
  4789. },
  4790. "conflict": {
  4791. "symfony/dependency-injection": "<3.4"
  4792. },
  4793. "provide": {
  4794. "psr/event-dispatcher-implementation": "1.0",
  4795. "symfony/event-dispatcher-implementation": "1.1"
  4796. },
  4797. "require-dev": {
  4798. "psr/log": "~1.0",
  4799. "symfony/config": "^3.4|^4.0|^5.0",
  4800. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  4801. "symfony/expression-language": "^3.4|^4.0|^5.0",
  4802. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  4803. "symfony/service-contracts": "^1.1|^2",
  4804. "symfony/stopwatch": "^3.4|^4.0|^5.0"
  4805. },
  4806. "suggest": {
  4807. "symfony/dependency-injection": "",
  4808. "symfony/http-kernel": ""
  4809. },
  4810. "type": "library",
  4811. "extra": {
  4812. "branch-alias": {
  4813. "dev-master": "4.4-dev"
  4814. }
  4815. },
  4816. "autoload": {
  4817. "psr-4": {
  4818. "Symfony\\Component\\EventDispatcher\\": ""
  4819. },
  4820. "exclude-from-classmap": [
  4821. "/Tests/"
  4822. ]
  4823. },
  4824. "notification-url": "https://packagist.org/downloads/",
  4825. "license": [
  4826. "MIT"
  4827. ],
  4828. "authors": [
  4829. {
  4830. "name": "Fabien Potencier",
  4831. "email": "fabien@symfony.com"
  4832. },
  4833. {
  4834. "name": "Symfony Community",
  4835. "homepage": "https://symfony.com/contributors"
  4836. }
  4837. ],
  4838. "description": "Symfony EventDispatcher Component",
  4839. "homepage": "https://symfony.com",
  4840. "time": "2020-03-27T16:54:36+00:00"
  4841. },
  4842. {
  4843. "name": "symfony/event-dispatcher-contracts",
  4844. "version": "v1.1.7",
  4845. "source": {
  4846. "type": "git",
  4847. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  4848. "reference": "c43ab685673fb6c8d84220c77897b1d6cdbe1d18"
  4849. },
  4850. "dist": {
  4851. "type": "zip",
  4852. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/c43ab685673fb6c8d84220c77897b1d6cdbe1d18",
  4853. "reference": "c43ab685673fb6c8d84220c77897b1d6cdbe1d18",
  4854. "shasum": "",
  4855. "mirrors": [
  4856. {
  4857. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4858. "preferred": true
  4859. }
  4860. ]
  4861. },
  4862. "require": {
  4863. "php": "^7.1.3"
  4864. },
  4865. "suggest": {
  4866. "psr/event-dispatcher": "",
  4867. "symfony/event-dispatcher-implementation": ""
  4868. },
  4869. "type": "library",
  4870. "extra": {
  4871. "branch-alias": {
  4872. "dev-master": "1.1-dev"
  4873. }
  4874. },
  4875. "autoload": {
  4876. "psr-4": {
  4877. "Symfony\\Contracts\\EventDispatcher\\": ""
  4878. }
  4879. },
  4880. "notification-url": "https://packagist.org/downloads/",
  4881. "license": [
  4882. "MIT"
  4883. ],
  4884. "authors": [
  4885. {
  4886. "name": "Nicolas Grekas",
  4887. "email": "p@tchwork.com"
  4888. },
  4889. {
  4890. "name": "Symfony Community",
  4891. "homepage": "https://symfony.com/contributors"
  4892. }
  4893. ],
  4894. "description": "Generic abstractions related to dispatching event",
  4895. "homepage": "https://symfony.com",
  4896. "keywords": [
  4897. "abstractions",
  4898. "contracts",
  4899. "decoupling",
  4900. "interfaces",
  4901. "interoperability",
  4902. "standards"
  4903. ],
  4904. "time": "2019-09-17T09:54:03+00:00"
  4905. },
  4906. {
  4907. "name": "symfony/filesystem",
  4908. "version": "v5.0.7",
  4909. "source": {
  4910. "type": "git",
  4911. "url": "https://github.com/symfony/filesystem.git",
  4912. "reference": "ca3b87dd09fff9b771731637f5379965fbfab420"
  4913. },
  4914. "dist": {
  4915. "type": "zip",
  4916. "url": "https://api.github.com/repos/symfony/filesystem/zipball/ca3b87dd09fff9b771731637f5379965fbfab420",
  4917. "reference": "ca3b87dd09fff9b771731637f5379965fbfab420",
  4918. "shasum": "",
  4919. "mirrors": [
  4920. {
  4921. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4922. "preferred": true
  4923. }
  4924. ]
  4925. },
  4926. "require": {
  4927. "php": "^7.2.5",
  4928. "symfony/polyfill-ctype": "~1.8"
  4929. },
  4930. "type": "library",
  4931. "extra": {
  4932. "branch-alias": {
  4933. "dev-master": "5.0-dev"
  4934. }
  4935. },
  4936. "autoload": {
  4937. "psr-4": {
  4938. "Symfony\\Component\\Filesystem\\": ""
  4939. },
  4940. "exclude-from-classmap": [
  4941. "/Tests/"
  4942. ]
  4943. },
  4944. "notification-url": "https://packagist.org/downloads/",
  4945. "license": [
  4946. "MIT"
  4947. ],
  4948. "authors": [
  4949. {
  4950. "name": "Fabien Potencier",
  4951. "email": "fabien@symfony.com"
  4952. },
  4953. {
  4954. "name": "Symfony Community",
  4955. "homepage": "https://symfony.com/contributors"
  4956. }
  4957. ],
  4958. "description": "Symfony Filesystem Component",
  4959. "homepage": "https://symfony.com",
  4960. "time": "2020-03-27T16:56:45+00:00"
  4961. },
  4962. {
  4963. "name": "symfony/finder",
  4964. "version": "v4.4.7",
  4965. "source": {
  4966. "type": "git",
  4967. "url": "https://github.com/symfony/finder.git",
  4968. "reference": "5729f943f9854c5781984ed4907bbb817735776b"
  4969. },
  4970. "dist": {
  4971. "type": "zip",
  4972. "url": "https://api.github.com/repos/symfony/finder/zipball/5729f943f9854c5781984ed4907bbb817735776b",
  4973. "reference": "5729f943f9854c5781984ed4907bbb817735776b",
  4974. "shasum": "",
  4975. "mirrors": [
  4976. {
  4977. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4978. "preferred": true
  4979. }
  4980. ]
  4981. },
  4982. "require": {
  4983. "php": "^7.1.3"
  4984. },
  4985. "type": "library",
  4986. "extra": {
  4987. "branch-alias": {
  4988. "dev-master": "4.4-dev"
  4989. }
  4990. },
  4991. "autoload": {
  4992. "psr-4": {
  4993. "Symfony\\Component\\Finder\\": ""
  4994. },
  4995. "exclude-from-classmap": [
  4996. "/Tests/"
  4997. ]
  4998. },
  4999. "notification-url": "https://packagist.org/downloads/",
  5000. "license": [
  5001. "MIT"
  5002. ],
  5003. "authors": [
  5004. {
  5005. "name": "Fabien Potencier",
  5006. "email": "fabien@symfony.com"
  5007. },
  5008. {
  5009. "name": "Symfony Community",
  5010. "homepage": "https://symfony.com/contributors"
  5011. }
  5012. ],
  5013. "description": "Symfony Finder Component",
  5014. "homepage": "https://symfony.com",
  5015. "time": "2020-03-27T16:54:36+00:00"
  5016. },
  5017. {
  5018. "name": "symfony/http-foundation",
  5019. "version": "v4.4.7",
  5020. "source": {
  5021. "type": "git",
  5022. "url": "https://github.com/symfony/http-foundation.git",
  5023. "reference": "62f92509c9abfd1f73e17b8cf1b72c0bdac6611b"
  5024. },
  5025. "dist": {
  5026. "type": "zip",
  5027. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/62f92509c9abfd1f73e17b8cf1b72c0bdac6611b",
  5028. "reference": "62f92509c9abfd1f73e17b8cf1b72c0bdac6611b",
  5029. "shasum": "",
  5030. "mirrors": [
  5031. {
  5032. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5033. "preferred": true
  5034. }
  5035. ]
  5036. },
  5037. "require": {
  5038. "php": "^7.1.3",
  5039. "symfony/mime": "^4.3|^5.0",
  5040. "symfony/polyfill-mbstring": "~1.1"
  5041. },
  5042. "require-dev": {
  5043. "predis/predis": "~1.0",
  5044. "symfony/expression-language": "^3.4|^4.0|^5.0"
  5045. },
  5046. "type": "library",
  5047. "extra": {
  5048. "branch-alias": {
  5049. "dev-master": "4.4-dev"
  5050. }
  5051. },
  5052. "autoload": {
  5053. "psr-4": {
  5054. "Symfony\\Component\\HttpFoundation\\": ""
  5055. },
  5056. "exclude-from-classmap": [
  5057. "/Tests/"
  5058. ]
  5059. },
  5060. "notification-url": "https://packagist.org/downloads/",
  5061. "license": [
  5062. "MIT"
  5063. ],
  5064. "authors": [
  5065. {
  5066. "name": "Fabien Potencier",
  5067. "email": "fabien@symfony.com"
  5068. },
  5069. {
  5070. "name": "Symfony Community",
  5071. "homepage": "https://symfony.com/contributors"
  5072. }
  5073. ],
  5074. "description": "Symfony HttpFoundation Component",
  5075. "homepage": "https://symfony.com",
  5076. "time": "2020-03-30T14:07:33+00:00"
  5077. },
  5078. {
  5079. "name": "symfony/http-kernel",
  5080. "version": "v4.4.7",
  5081. "source": {
  5082. "type": "git",
  5083. "url": "https://github.com/symfony/http-kernel.git",
  5084. "reference": "f356a489e51856b99908005eb7f2c51a1dfc95dc"
  5085. },
  5086. "dist": {
  5087. "type": "zip",
  5088. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/f356a489e51856b99908005eb7f2c51a1dfc95dc",
  5089. "reference": "f356a489e51856b99908005eb7f2c51a1dfc95dc",
  5090. "shasum": "",
  5091. "mirrors": [
  5092. {
  5093. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5094. "preferred": true
  5095. }
  5096. ]
  5097. },
  5098. "require": {
  5099. "php": "^7.1.3",
  5100. "psr/log": "~1.0",
  5101. "symfony/error-handler": "^4.4",
  5102. "symfony/event-dispatcher": "^4.4",
  5103. "symfony/http-foundation": "^4.4|^5.0",
  5104. "symfony/polyfill-ctype": "^1.8",
  5105. "symfony/polyfill-php73": "^1.9"
  5106. },
  5107. "conflict": {
  5108. "symfony/browser-kit": "<4.3",
  5109. "symfony/config": "<3.4",
  5110. "symfony/console": ">=5",
  5111. "symfony/dependency-injection": "<4.3",
  5112. "symfony/translation": "<4.2",
  5113. "twig/twig": "<1.34|<2.4,>=2"
  5114. },
  5115. "provide": {
  5116. "psr/log-implementation": "1.0"
  5117. },
  5118. "require-dev": {
  5119. "psr/cache": "~1.0",
  5120. "symfony/browser-kit": "^4.3|^5.0",
  5121. "symfony/config": "^3.4|^4.0|^5.0",
  5122. "symfony/console": "^3.4|^4.0",
  5123. "symfony/css-selector": "^3.4|^4.0|^5.0",
  5124. "symfony/dependency-injection": "^4.3|^5.0",
  5125. "symfony/dom-crawler": "^3.4|^4.0|^5.0",
  5126. "symfony/expression-language": "^3.4|^4.0|^5.0",
  5127. "symfony/finder": "^3.4|^4.0|^5.0",
  5128. "symfony/process": "^3.4|^4.0|^5.0",
  5129. "symfony/routing": "^3.4|^4.0|^5.0",
  5130. "symfony/stopwatch": "^3.4|^4.0|^5.0",
  5131. "symfony/templating": "^3.4|^4.0|^5.0",
  5132. "symfony/translation": "^4.2|^5.0",
  5133. "symfony/translation-contracts": "^1.1|^2",
  5134. "twig/twig": "^1.34|^2.4|^3.0"
  5135. },
  5136. "suggest": {
  5137. "symfony/browser-kit": "",
  5138. "symfony/config": "",
  5139. "symfony/console": "",
  5140. "symfony/dependency-injection": ""
  5141. },
  5142. "type": "library",
  5143. "extra": {
  5144. "branch-alias": {
  5145. "dev-master": "4.4-dev"
  5146. }
  5147. },
  5148. "autoload": {
  5149. "psr-4": {
  5150. "Symfony\\Component\\HttpKernel\\": ""
  5151. },
  5152. "exclude-from-classmap": [
  5153. "/Tests/"
  5154. ]
  5155. },
  5156. "notification-url": "https://packagist.org/downloads/",
  5157. "license": [
  5158. "MIT"
  5159. ],
  5160. "authors": [
  5161. {
  5162. "name": "Fabien Potencier",
  5163. "email": "fabien@symfony.com"
  5164. },
  5165. {
  5166. "name": "Symfony Community",
  5167. "homepage": "https://symfony.com/contributors"
  5168. }
  5169. ],
  5170. "description": "Symfony HttpKernel Component",
  5171. "homepage": "https://symfony.com",
  5172. "time": "2020-03-30T14:59:15+00:00"
  5173. },
  5174. {
  5175. "name": "symfony/mime",
  5176. "version": "v5.0.7",
  5177. "source": {
  5178. "type": "git",
  5179. "url": "https://github.com/symfony/mime.git",
  5180. "reference": "481b7d6da88922fb1e0d86a943987722b08f3955"
  5181. },
  5182. "dist": {
  5183. "type": "zip",
  5184. "url": "https://api.github.com/repos/symfony/mime/zipball/481b7d6da88922fb1e0d86a943987722b08f3955",
  5185. "reference": "481b7d6da88922fb1e0d86a943987722b08f3955",
  5186. "shasum": "",
  5187. "mirrors": [
  5188. {
  5189. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5190. "preferred": true
  5191. }
  5192. ]
  5193. },
  5194. "require": {
  5195. "php": "^7.2.5",
  5196. "symfony/polyfill-intl-idn": "^1.10",
  5197. "symfony/polyfill-mbstring": "^1.0"
  5198. },
  5199. "conflict": {
  5200. "symfony/mailer": "<4.4"
  5201. },
  5202. "require-dev": {
  5203. "egulias/email-validator": "^2.1.10",
  5204. "symfony/dependency-injection": "^4.4|^5.0"
  5205. },
  5206. "type": "library",
  5207. "extra": {
  5208. "branch-alias": {
  5209. "dev-master": "5.0-dev"
  5210. }
  5211. },
  5212. "autoload": {
  5213. "psr-4": {
  5214. "Symfony\\Component\\Mime\\": ""
  5215. },
  5216. "exclude-from-classmap": [
  5217. "/Tests/"
  5218. ]
  5219. },
  5220. "notification-url": "https://packagist.org/downloads/",
  5221. "license": [
  5222. "MIT"
  5223. ],
  5224. "authors": [
  5225. {
  5226. "name": "Fabien Potencier",
  5227. "email": "fabien@symfony.com"
  5228. },
  5229. {
  5230. "name": "Symfony Community",
  5231. "homepage": "https://symfony.com/contributors"
  5232. }
  5233. ],
  5234. "description": "A library to manipulate MIME messages",
  5235. "homepage": "https://symfony.com",
  5236. "keywords": [
  5237. "mime",
  5238. "mime-type"
  5239. ],
  5240. "time": "2020-03-27T16:56:45+00:00"
  5241. },
  5242. {
  5243. "name": "symfony/polyfill-ctype",
  5244. "version": "v1.15.0",
  5245. "source": {
  5246. "type": "git",
  5247. "url": "https://github.com/symfony/polyfill-ctype.git",
  5248. "reference": "4719fa9c18b0464d399f1a63bf624b42b6fa8d14"
  5249. },
  5250. "dist": {
  5251. "type": "zip",
  5252. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/4719fa9c18b0464d399f1a63bf624b42b6fa8d14",
  5253. "reference": "4719fa9c18b0464d399f1a63bf624b42b6fa8d14",
  5254. "shasum": "",
  5255. "mirrors": [
  5256. {
  5257. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5258. "preferred": true
  5259. }
  5260. ]
  5261. },
  5262. "require": {
  5263. "php": ">=5.3.3"
  5264. },
  5265. "suggest": {
  5266. "ext-ctype": "For best performance"
  5267. },
  5268. "type": "library",
  5269. "extra": {
  5270. "branch-alias": {
  5271. "dev-master": "1.15-dev"
  5272. }
  5273. },
  5274. "autoload": {
  5275. "psr-4": {
  5276. "Symfony\\Polyfill\\Ctype\\": ""
  5277. },
  5278. "files": [
  5279. "bootstrap.php"
  5280. ]
  5281. },
  5282. "notification-url": "https://packagist.org/downloads/",
  5283. "license": [
  5284. "MIT"
  5285. ],
  5286. "authors": [
  5287. {
  5288. "name": "Gert de Pagter",
  5289. "email": "BackEndTea@gmail.com"
  5290. },
  5291. {
  5292. "name": "Symfony Community",
  5293. "homepage": "https://symfony.com/contributors"
  5294. }
  5295. ],
  5296. "description": "Symfony polyfill for ctype functions",
  5297. "homepage": "https://symfony.com",
  5298. "keywords": [
  5299. "compatibility",
  5300. "ctype",
  5301. "polyfill",
  5302. "portable"
  5303. ],
  5304. "time": "2020-02-27T09:26:54+00:00"
  5305. },
  5306. {
  5307. "name": "symfony/polyfill-iconv",
  5308. "version": "v1.15.0",
  5309. "source": {
  5310. "type": "git",
  5311. "url": "https://github.com/symfony/polyfill-iconv.git",
  5312. "reference": "ad6d62792bfbcfc385dd34b424d4fcf9712a32c8"
  5313. },
  5314. "dist": {
  5315. "type": "zip",
  5316. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/ad6d62792bfbcfc385dd34b424d4fcf9712a32c8",
  5317. "reference": "ad6d62792bfbcfc385dd34b424d4fcf9712a32c8",
  5318. "shasum": "",
  5319. "mirrors": [
  5320. {
  5321. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5322. "preferred": true
  5323. }
  5324. ]
  5325. },
  5326. "require": {
  5327. "php": ">=5.3.3"
  5328. },
  5329. "suggest": {
  5330. "ext-iconv": "For best performance"
  5331. },
  5332. "type": "library",
  5333. "extra": {
  5334. "branch-alias": {
  5335. "dev-master": "1.15-dev"
  5336. }
  5337. },
  5338. "autoload": {
  5339. "psr-4": {
  5340. "Symfony\\Polyfill\\Iconv\\": ""
  5341. },
  5342. "files": [
  5343. "bootstrap.php"
  5344. ]
  5345. },
  5346. "notification-url": "https://packagist.org/downloads/",
  5347. "license": [
  5348. "MIT"
  5349. ],
  5350. "authors": [
  5351. {
  5352. "name": "Nicolas Grekas",
  5353. "email": "p@tchwork.com"
  5354. },
  5355. {
  5356. "name": "Symfony Community",
  5357. "homepage": "https://symfony.com/contributors"
  5358. }
  5359. ],
  5360. "description": "Symfony polyfill for the Iconv extension",
  5361. "homepage": "https://symfony.com",
  5362. "keywords": [
  5363. "compatibility",
  5364. "iconv",
  5365. "polyfill",
  5366. "portable",
  5367. "shim"
  5368. ],
  5369. "time": "2020-03-09T19:04:49+00:00"
  5370. },
  5371. {
  5372. "name": "symfony/polyfill-intl-idn",
  5373. "version": "v1.15.0",
  5374. "source": {
  5375. "type": "git",
  5376. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5377. "reference": "47bd6aa45beb1cd7c6a16b7d1810133b728bdfcf"
  5378. },
  5379. "dist": {
  5380. "type": "zip",
  5381. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/47bd6aa45beb1cd7c6a16b7d1810133b728bdfcf",
  5382. "reference": "47bd6aa45beb1cd7c6a16b7d1810133b728bdfcf",
  5383. "shasum": "",
  5384. "mirrors": [
  5385. {
  5386. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5387. "preferred": true
  5388. }
  5389. ]
  5390. },
  5391. "require": {
  5392. "php": ">=5.3.3",
  5393. "symfony/polyfill-mbstring": "^1.3",
  5394. "symfony/polyfill-php72": "^1.10"
  5395. },
  5396. "suggest": {
  5397. "ext-intl": "For best performance"
  5398. },
  5399. "type": "library",
  5400. "extra": {
  5401. "branch-alias": {
  5402. "dev-master": "1.15-dev"
  5403. }
  5404. },
  5405. "autoload": {
  5406. "psr-4": {
  5407. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5408. },
  5409. "files": [
  5410. "bootstrap.php"
  5411. ]
  5412. },
  5413. "notification-url": "https://packagist.org/downloads/",
  5414. "license": [
  5415. "MIT"
  5416. ],
  5417. "authors": [
  5418. {
  5419. "name": "Laurent Bassin",
  5420. "email": "laurent@bassin.info"
  5421. },
  5422. {
  5423. "name": "Symfony Community",
  5424. "homepage": "https://symfony.com/contributors"
  5425. }
  5426. ],
  5427. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5428. "homepage": "https://symfony.com",
  5429. "keywords": [
  5430. "compatibility",
  5431. "idn",
  5432. "intl",
  5433. "polyfill",
  5434. "portable",
  5435. "shim"
  5436. ],
  5437. "time": "2020-03-09T19:04:49+00:00"
  5438. },
  5439. {
  5440. "name": "symfony/polyfill-mbstring",
  5441. "version": "v1.15.0",
  5442. "source": {
  5443. "type": "git",
  5444. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5445. "reference": "81ffd3a9c6d707be22e3012b827de1c9775fc5ac"
  5446. },
  5447. "dist": {
  5448. "type": "zip",
  5449. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/81ffd3a9c6d707be22e3012b827de1c9775fc5ac",
  5450. "reference": "81ffd3a9c6d707be22e3012b827de1c9775fc5ac",
  5451. "shasum": "",
  5452. "mirrors": [
  5453. {
  5454. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5455. "preferred": true
  5456. }
  5457. ]
  5458. },
  5459. "require": {
  5460. "php": ">=5.3.3"
  5461. },
  5462. "suggest": {
  5463. "ext-mbstring": "For best performance"
  5464. },
  5465. "type": "library",
  5466. "extra": {
  5467. "branch-alias": {
  5468. "dev-master": "1.15-dev"
  5469. }
  5470. },
  5471. "autoload": {
  5472. "psr-4": {
  5473. "Symfony\\Polyfill\\Mbstring\\": ""
  5474. },
  5475. "files": [
  5476. "bootstrap.php"
  5477. ]
  5478. },
  5479. "notification-url": "https://packagist.org/downloads/",
  5480. "license": [
  5481. "MIT"
  5482. ],
  5483. "authors": [
  5484. {
  5485. "name": "Nicolas Grekas",
  5486. "email": "p@tchwork.com"
  5487. },
  5488. {
  5489. "name": "Symfony Community",
  5490. "homepage": "https://symfony.com/contributors"
  5491. }
  5492. ],
  5493. "description": "Symfony polyfill for the Mbstring extension",
  5494. "homepage": "https://symfony.com",
  5495. "keywords": [
  5496. "compatibility",
  5497. "mbstring",
  5498. "polyfill",
  5499. "portable",
  5500. "shim"
  5501. ],
  5502. "time": "2020-03-09T19:04:49+00:00"
  5503. },
  5504. {
  5505. "name": "symfony/polyfill-php72",
  5506. "version": "v1.15.0",
  5507. "source": {
  5508. "type": "git",
  5509. "url": "https://github.com/symfony/polyfill-php72.git",
  5510. "reference": "37b0976c78b94856543260ce09b460a7bc852747"
  5511. },
  5512. "dist": {
  5513. "type": "zip",
  5514. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/37b0976c78b94856543260ce09b460a7bc852747",
  5515. "reference": "37b0976c78b94856543260ce09b460a7bc852747",
  5516. "shasum": "",
  5517. "mirrors": [
  5518. {
  5519. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5520. "preferred": true
  5521. }
  5522. ]
  5523. },
  5524. "require": {
  5525. "php": ">=5.3.3"
  5526. },
  5527. "type": "library",
  5528. "extra": {
  5529. "branch-alias": {
  5530. "dev-master": "1.15-dev"
  5531. }
  5532. },
  5533. "autoload": {
  5534. "psr-4": {
  5535. "Symfony\\Polyfill\\Php72\\": ""
  5536. },
  5537. "files": [
  5538. "bootstrap.php"
  5539. ]
  5540. },
  5541. "notification-url": "https://packagist.org/downloads/",
  5542. "license": [
  5543. "MIT"
  5544. ],
  5545. "authors": [
  5546. {
  5547. "name": "Nicolas Grekas",
  5548. "email": "p@tchwork.com"
  5549. },
  5550. {
  5551. "name": "Symfony Community",
  5552. "homepage": "https://symfony.com/contributors"
  5553. }
  5554. ],
  5555. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  5556. "homepage": "https://symfony.com",
  5557. "keywords": [
  5558. "compatibility",
  5559. "polyfill",
  5560. "portable",
  5561. "shim"
  5562. ],
  5563. "time": "2020-02-27T09:26:54+00:00"
  5564. },
  5565. {
  5566. "name": "symfony/polyfill-php73",
  5567. "version": "v1.15.0",
  5568. "source": {
  5569. "type": "git",
  5570. "url": "https://github.com/symfony/polyfill-php73.git",
  5571. "reference": "0f27e9f464ea3da33cbe7ca3bdf4eb66def9d0f7"
  5572. },
  5573. "dist": {
  5574. "type": "zip",
  5575. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/0f27e9f464ea3da33cbe7ca3bdf4eb66def9d0f7",
  5576. "reference": "0f27e9f464ea3da33cbe7ca3bdf4eb66def9d0f7",
  5577. "shasum": "",
  5578. "mirrors": [
  5579. {
  5580. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5581. "preferred": true
  5582. }
  5583. ]
  5584. },
  5585. "require": {
  5586. "php": ">=5.3.3"
  5587. },
  5588. "type": "library",
  5589. "extra": {
  5590. "branch-alias": {
  5591. "dev-master": "1.15-dev"
  5592. }
  5593. },
  5594. "autoload": {
  5595. "psr-4": {
  5596. "Symfony\\Polyfill\\Php73\\": ""
  5597. },
  5598. "files": [
  5599. "bootstrap.php"
  5600. ],
  5601. "classmap": [
  5602. "Resources/stubs"
  5603. ]
  5604. },
  5605. "notification-url": "https://packagist.org/downloads/",
  5606. "license": [
  5607. "MIT"
  5608. ],
  5609. "authors": [
  5610. {
  5611. "name": "Nicolas Grekas",
  5612. "email": "p@tchwork.com"
  5613. },
  5614. {
  5615. "name": "Symfony Community",
  5616. "homepage": "https://symfony.com/contributors"
  5617. }
  5618. ],
  5619. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  5620. "homepage": "https://symfony.com",
  5621. "keywords": [
  5622. "compatibility",
  5623. "polyfill",
  5624. "portable",
  5625. "shim"
  5626. ],
  5627. "time": "2020-02-27T09:26:54+00:00"
  5628. },
  5629. {
  5630. "name": "symfony/process",
  5631. "version": "v4.4.7",
  5632. "source": {
  5633. "type": "git",
  5634. "url": "https://github.com/symfony/process.git",
  5635. "reference": "3e40e87a20eaf83a1db825e1fa5097ae89042db3"
  5636. },
  5637. "dist": {
  5638. "type": "zip",
  5639. "url": "https://api.github.com/repos/symfony/process/zipball/3e40e87a20eaf83a1db825e1fa5097ae89042db3",
  5640. "reference": "3e40e87a20eaf83a1db825e1fa5097ae89042db3",
  5641. "shasum": "",
  5642. "mirrors": [
  5643. {
  5644. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5645. "preferred": true
  5646. }
  5647. ]
  5648. },
  5649. "require": {
  5650. "php": "^7.1.3"
  5651. },
  5652. "type": "library",
  5653. "extra": {
  5654. "branch-alias": {
  5655. "dev-master": "4.4-dev"
  5656. }
  5657. },
  5658. "autoload": {
  5659. "psr-4": {
  5660. "Symfony\\Component\\Process\\": ""
  5661. },
  5662. "exclude-from-classmap": [
  5663. "/Tests/"
  5664. ]
  5665. },
  5666. "notification-url": "https://packagist.org/downloads/",
  5667. "license": [
  5668. "MIT"
  5669. ],
  5670. "authors": [
  5671. {
  5672. "name": "Fabien Potencier",
  5673. "email": "fabien@symfony.com"
  5674. },
  5675. {
  5676. "name": "Symfony Community",
  5677. "homepage": "https://symfony.com/contributors"
  5678. }
  5679. ],
  5680. "description": "Symfony Process Component",
  5681. "homepage": "https://symfony.com",
  5682. "time": "2020-03-27T16:54:36+00:00"
  5683. },
  5684. {
  5685. "name": "symfony/routing",
  5686. "version": "v4.4.7",
  5687. "source": {
  5688. "type": "git",
  5689. "url": "https://github.com/symfony/routing.git",
  5690. "reference": "0f562fa613e288d7dbae6c63abbc9b33ed75a8f8"
  5691. },
  5692. "dist": {
  5693. "type": "zip",
  5694. "url": "https://api.github.com/repos/symfony/routing/zipball/0f562fa613e288d7dbae6c63abbc9b33ed75a8f8",
  5695. "reference": "0f562fa613e288d7dbae6c63abbc9b33ed75a8f8",
  5696. "shasum": "",
  5697. "mirrors": [
  5698. {
  5699. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5700. "preferred": true
  5701. }
  5702. ]
  5703. },
  5704. "require": {
  5705. "php": "^7.1.3"
  5706. },
  5707. "conflict": {
  5708. "symfony/config": "<4.2",
  5709. "symfony/dependency-injection": "<3.4",
  5710. "symfony/yaml": "<3.4"
  5711. },
  5712. "require-dev": {
  5713. "doctrine/annotations": "~1.2",
  5714. "psr/log": "~1.0",
  5715. "symfony/config": "^4.2|^5.0",
  5716. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  5717. "symfony/expression-language": "^3.4|^4.0|^5.0",
  5718. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  5719. "symfony/yaml": "^3.4|^4.0|^5.0"
  5720. },
  5721. "suggest": {
  5722. "doctrine/annotations": "For using the annotation loader",
  5723. "symfony/config": "For using the all-in-one router or any loader",
  5724. "symfony/expression-language": "For using expression matching",
  5725. "symfony/http-foundation": "For using a Symfony Request object",
  5726. "symfony/yaml": "For using the YAML loader"
  5727. },
  5728. "type": "library",
  5729. "extra": {
  5730. "branch-alias": {
  5731. "dev-master": "4.4-dev"
  5732. }
  5733. },
  5734. "autoload": {
  5735. "psr-4": {
  5736. "Symfony\\Component\\Routing\\": ""
  5737. },
  5738. "exclude-from-classmap": [
  5739. "/Tests/"
  5740. ]
  5741. },
  5742. "notification-url": "https://packagist.org/downloads/",
  5743. "license": [
  5744. "MIT"
  5745. ],
  5746. "authors": [
  5747. {
  5748. "name": "Fabien Potencier",
  5749. "email": "fabien@symfony.com"
  5750. },
  5751. {
  5752. "name": "Symfony Community",
  5753. "homepage": "https://symfony.com/contributors"
  5754. }
  5755. ],
  5756. "description": "Symfony Routing Component",
  5757. "homepage": "https://symfony.com",
  5758. "keywords": [
  5759. "router",
  5760. "routing",
  5761. "uri",
  5762. "url"
  5763. ],
  5764. "time": "2020-03-30T11:41:10+00:00"
  5765. },
  5766. {
  5767. "name": "symfony/service-contracts",
  5768. "version": "v2.0.1",
  5769. "source": {
  5770. "type": "git",
  5771. "url": "https://github.com/symfony/service-contracts.git",
  5772. "reference": "144c5e51266b281231e947b51223ba14acf1a749"
  5773. },
  5774. "dist": {
  5775. "type": "zip",
  5776. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/144c5e51266b281231e947b51223ba14acf1a749",
  5777. "reference": "144c5e51266b281231e947b51223ba14acf1a749",
  5778. "shasum": "",
  5779. "mirrors": [
  5780. {
  5781. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5782. "preferred": true
  5783. }
  5784. ]
  5785. },
  5786. "require": {
  5787. "php": "^7.2.5",
  5788. "psr/container": "^1.0"
  5789. },
  5790. "suggest": {
  5791. "symfony/service-implementation": ""
  5792. },
  5793. "type": "library",
  5794. "extra": {
  5795. "branch-alias": {
  5796. "dev-master": "2.0-dev"
  5797. }
  5798. },
  5799. "autoload": {
  5800. "psr-4": {
  5801. "Symfony\\Contracts\\Service\\": ""
  5802. }
  5803. },
  5804. "notification-url": "https://packagist.org/downloads/",
  5805. "license": [
  5806. "MIT"
  5807. ],
  5808. "authors": [
  5809. {
  5810. "name": "Nicolas Grekas",
  5811. "email": "p@tchwork.com"
  5812. },
  5813. {
  5814. "name": "Symfony Community",
  5815. "homepage": "https://symfony.com/contributors"
  5816. }
  5817. ],
  5818. "description": "Generic abstractions related to writing services",
  5819. "homepage": "https://symfony.com",
  5820. "keywords": [
  5821. "abstractions",
  5822. "contracts",
  5823. "decoupling",
  5824. "interfaces",
  5825. "interoperability",
  5826. "standards"
  5827. ],
  5828. "time": "2019-11-18T17:27:11+00:00"
  5829. },
  5830. {
  5831. "name": "symfony/translation",
  5832. "version": "v4.4.7",
  5833. "source": {
  5834. "type": "git",
  5835. "url": "https://github.com/symfony/translation.git",
  5836. "reference": "4e54d336f2eca5facad449d0b0118bb449375b76"
  5837. },
  5838. "dist": {
  5839. "type": "zip",
  5840. "url": "https://api.github.com/repos/symfony/translation/zipball/4e54d336f2eca5facad449d0b0118bb449375b76",
  5841. "reference": "4e54d336f2eca5facad449d0b0118bb449375b76",
  5842. "shasum": "",
  5843. "mirrors": [
  5844. {
  5845. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5846. "preferred": true
  5847. }
  5848. ]
  5849. },
  5850. "require": {
  5851. "php": "^7.1.3",
  5852. "symfony/polyfill-mbstring": "~1.0",
  5853. "symfony/translation-contracts": "^1.1.6|^2"
  5854. },
  5855. "conflict": {
  5856. "symfony/config": "<3.4",
  5857. "symfony/dependency-injection": "<3.4",
  5858. "symfony/http-kernel": "<4.4",
  5859. "symfony/yaml": "<3.4"
  5860. },
  5861. "provide": {
  5862. "symfony/translation-implementation": "1.0"
  5863. },
  5864. "require-dev": {
  5865. "psr/log": "~1.0",
  5866. "symfony/config": "^3.4|^4.0|^5.0",
  5867. "symfony/console": "^3.4|^4.0|^5.0",
  5868. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  5869. "symfony/finder": "~2.8|~3.0|~4.0|^5.0",
  5870. "symfony/http-kernel": "^4.4",
  5871. "symfony/intl": "^3.4|^4.0|^5.0",
  5872. "symfony/service-contracts": "^1.1.2|^2",
  5873. "symfony/yaml": "^3.4|^4.0|^5.0"
  5874. },
  5875. "suggest": {
  5876. "psr/log-implementation": "To use logging capability in translator",
  5877. "symfony/config": "",
  5878. "symfony/yaml": ""
  5879. },
  5880. "type": "library",
  5881. "extra": {
  5882. "branch-alias": {
  5883. "dev-master": "4.4-dev"
  5884. }
  5885. },
  5886. "autoload": {
  5887. "psr-4": {
  5888. "Symfony\\Component\\Translation\\": ""
  5889. },
  5890. "exclude-from-classmap": [
  5891. "/Tests/"
  5892. ]
  5893. },
  5894. "notification-url": "https://packagist.org/downloads/",
  5895. "license": [
  5896. "MIT"
  5897. ],
  5898. "authors": [
  5899. {
  5900. "name": "Fabien Potencier",
  5901. "email": "fabien@symfony.com"
  5902. },
  5903. {
  5904. "name": "Symfony Community",
  5905. "homepage": "https://symfony.com/contributors"
  5906. }
  5907. ],
  5908. "description": "Symfony Translation Component",
  5909. "homepage": "https://symfony.com",
  5910. "time": "2020-03-27T16:54:36+00:00"
  5911. },
  5912. {
  5913. "name": "symfony/translation-contracts",
  5914. "version": "v2.0.1",
  5915. "source": {
  5916. "type": "git",
  5917. "url": "https://github.com/symfony/translation-contracts.git",
  5918. "reference": "8cc682ac458d75557203b2f2f14b0b92e1c744ed"
  5919. },
  5920. "dist": {
  5921. "type": "zip",
  5922. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/8cc682ac458d75557203b2f2f14b0b92e1c744ed",
  5923. "reference": "8cc682ac458d75557203b2f2f14b0b92e1c744ed",
  5924. "shasum": "",
  5925. "mirrors": [
  5926. {
  5927. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5928. "preferred": true
  5929. }
  5930. ]
  5931. },
  5932. "require": {
  5933. "php": "^7.2.5"
  5934. },
  5935. "suggest": {
  5936. "symfony/translation-implementation": ""
  5937. },
  5938. "type": "library",
  5939. "extra": {
  5940. "branch-alias": {
  5941. "dev-master": "2.0-dev"
  5942. }
  5943. },
  5944. "autoload": {
  5945. "psr-4": {
  5946. "Symfony\\Contracts\\Translation\\": ""
  5947. }
  5948. },
  5949. "notification-url": "https://packagist.org/downloads/",
  5950. "license": [
  5951. "MIT"
  5952. ],
  5953. "authors": [
  5954. {
  5955. "name": "Nicolas Grekas",
  5956. "email": "p@tchwork.com"
  5957. },
  5958. {
  5959. "name": "Symfony Community",
  5960. "homepage": "https://symfony.com/contributors"
  5961. }
  5962. ],
  5963. "description": "Generic abstractions related to translation",
  5964. "homepage": "https://symfony.com",
  5965. "keywords": [
  5966. "abstractions",
  5967. "contracts",
  5968. "decoupling",
  5969. "interfaces",
  5970. "interoperability",
  5971. "standards"
  5972. ],
  5973. "time": "2019-11-18T17:27:11+00:00"
  5974. },
  5975. {
  5976. "name": "symfony/var-dumper",
  5977. "version": "v4.4.7",
  5978. "source": {
  5979. "type": "git",
  5980. "url": "https://github.com/symfony/var-dumper.git",
  5981. "reference": "5a0c2d93006131a36cf6f767d10e2ca8333b0d4a"
  5982. },
  5983. "dist": {
  5984. "type": "zip",
  5985. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/5a0c2d93006131a36cf6f767d10e2ca8333b0d4a",
  5986. "reference": "5a0c2d93006131a36cf6f767d10e2ca8333b0d4a",
  5987. "shasum": "",
  5988. "mirrors": [
  5989. {
  5990. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5991. "preferred": true
  5992. }
  5993. ]
  5994. },
  5995. "require": {
  5996. "php": "^7.1.3",
  5997. "symfony/polyfill-mbstring": "~1.0",
  5998. "symfony/polyfill-php72": "~1.5"
  5999. },
  6000. "conflict": {
  6001. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  6002. "symfony/console": "<3.4"
  6003. },
  6004. "require-dev": {
  6005. "ext-iconv": "*",
  6006. "symfony/console": "^3.4|^4.0|^5.0",
  6007. "symfony/process": "^4.4|^5.0",
  6008. "twig/twig": "^1.34|^2.4|^3.0"
  6009. },
  6010. "suggest": {
  6011. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  6012. "ext-intl": "To show region name in time zone dump",
  6013. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  6014. },
  6015. "bin": [
  6016. "Resources/bin/var-dump-server"
  6017. ],
  6018. "type": "library",
  6019. "extra": {
  6020. "branch-alias": {
  6021. "dev-master": "4.4-dev"
  6022. }
  6023. },
  6024. "autoload": {
  6025. "files": [
  6026. "Resources/functions/dump.php"
  6027. ],
  6028. "psr-4": {
  6029. "Symfony\\Component\\VarDumper\\": ""
  6030. },
  6031. "exclude-from-classmap": [
  6032. "/Tests/"
  6033. ]
  6034. },
  6035. "notification-url": "https://packagist.org/downloads/",
  6036. "license": [
  6037. "MIT"
  6038. ],
  6039. "authors": [
  6040. {
  6041. "name": "Nicolas Grekas",
  6042. "email": "p@tchwork.com"
  6043. },
  6044. {
  6045. "name": "Symfony Community",
  6046. "homepage": "https://symfony.com/contributors"
  6047. }
  6048. ],
  6049. "description": "Symfony mechanism for exploring and dumping PHP variables",
  6050. "homepage": "https://symfony.com",
  6051. "keywords": [
  6052. "debug",
  6053. "dump"
  6054. ],
  6055. "time": "2020-03-27T16:54:36+00:00"
  6056. },
  6057. {
  6058. "name": "tijsverkoyen/css-to-inline-styles",
  6059. "version": "2.2.2",
  6060. "source": {
  6061. "type": "git",
  6062. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  6063. "reference": "dda2ee426acd6d801d5b7fd1001cde9b5f790e15"
  6064. },
  6065. "dist": {
  6066. "type": "zip",
  6067. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/dda2ee426acd6d801d5b7fd1001cde9b5f790e15",
  6068. "reference": "dda2ee426acd6d801d5b7fd1001cde9b5f790e15",
  6069. "shasum": "",
  6070. "mirrors": [
  6071. {
  6072. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6073. "preferred": true
  6074. }
  6075. ]
  6076. },
  6077. "require": {
  6078. "ext-dom": "*",
  6079. "ext-libxml": "*",
  6080. "php": "^5.5 || ^7.0",
  6081. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0"
  6082. },
  6083. "require-dev": {
  6084. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  6085. },
  6086. "type": "library",
  6087. "extra": {
  6088. "branch-alias": {
  6089. "dev-master": "2.2.x-dev"
  6090. }
  6091. },
  6092. "autoload": {
  6093. "psr-4": {
  6094. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  6095. }
  6096. },
  6097. "notification-url": "https://packagist.org/downloads/",
  6098. "license": [
  6099. "BSD-3-Clause"
  6100. ],
  6101. "authors": [
  6102. {
  6103. "name": "Tijs Verkoyen",
  6104. "email": "css_to_inline_styles@verkoyen.eu",
  6105. "role": "Developer"
  6106. }
  6107. ],
  6108. "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.",
  6109. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  6110. "time": "2019-10-24T08:53:34+00:00"
  6111. },
  6112. {
  6113. "name": "vlucas/phpdotenv",
  6114. "version": "v3.6.3",
  6115. "source": {
  6116. "type": "git",
  6117. "url": "https://github.com/vlucas/phpdotenv.git",
  6118. "reference": "1b3103013797f04521c6cae5560f604649484066"
  6119. },
  6120. "dist": {
  6121. "type": "zip",
  6122. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/1b3103013797f04521c6cae5560f604649484066",
  6123. "reference": "1b3103013797f04521c6cae5560f604649484066",
  6124. "shasum": "",
  6125. "mirrors": [
  6126. {
  6127. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6128. "preferred": true
  6129. }
  6130. ]
  6131. },
  6132. "require": {
  6133. "php": "^5.4 || ^7.0",
  6134. "phpoption/phpoption": "^1.5",
  6135. "symfony/polyfill-ctype": "^1.9"
  6136. },
  6137. "require-dev": {
  6138. "ext-filter": "*",
  6139. "ext-pcre": "*",
  6140. "phpunit/phpunit": "^4.8.35 || ^5.0 || ^6.0 || ^7.0"
  6141. },
  6142. "suggest": {
  6143. "ext-filter": "Required to use the boolean validator.",
  6144. "ext-pcre": "Required to use most of the library."
  6145. },
  6146. "type": "library",
  6147. "extra": {
  6148. "branch-alias": {
  6149. "dev-master": "3.6-dev"
  6150. }
  6151. },
  6152. "autoload": {
  6153. "psr-4": {
  6154. "Dotenv\\": "src/"
  6155. }
  6156. },
  6157. "notification-url": "https://packagist.org/downloads/",
  6158. "license": [
  6159. "BSD-3-Clause"
  6160. ],
  6161. "authors": [
  6162. {
  6163. "name": "Graham Campbell",
  6164. "email": "graham@alt-three.com",
  6165. "homepage": "https://gjcampbell.co.uk/"
  6166. },
  6167. {
  6168. "name": "Vance Lucas",
  6169. "email": "vance@vancelucas.com",
  6170. "homepage": "https://vancelucas.com/"
  6171. }
  6172. ],
  6173. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  6174. "keywords": [
  6175. "dotenv",
  6176. "env",
  6177. "environment"
  6178. ],
  6179. "time": "2020-04-12T15:18:03+00:00"
  6180. },
  6181. {
  6182. "name": "xhat/payjs",
  6183. "version": "1.4.3",
  6184. "source": {
  6185. "type": "git",
  6186. "url": "https://github.com/xhat/payjs.git",
  6187. "reference": "3d19cbd88abbd7081738b016ce9c04a1cb9edad5"
  6188. },
  6189. "dist": {
  6190. "type": "zip",
  6191. "url": "https://api.github.com/repos/xhat/payjs/zipball/3d19cbd88abbd7081738b016ce9c04a1cb9edad5",
  6192. "reference": "3d19cbd88abbd7081738b016ce9c04a1cb9edad5",
  6193. "shasum": "",
  6194. "mirrors": [
  6195. {
  6196. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6197. "preferred": true
  6198. }
  6199. ]
  6200. },
  6201. "type": "library",
  6202. "autoload": {
  6203. "psr-4": {
  6204. "Xhat\\Payjs\\": "src/"
  6205. }
  6206. },
  6207. "notification-url": "https://packagist.org/downloads/",
  6208. "license": [
  6209. "MIT"
  6210. ],
  6211. "authors": [
  6212. {
  6213. "name": "andy",
  6214. "email": "andy@popfeng.com"
  6215. }
  6216. ],
  6217. "description": "本项目是基于 PAYJS 的 API 开发的 Composer Package,可直接用于生产环境 https://payjs.cn",
  6218. "time": "2019-08-13T04:58:08+00:00"
  6219. }
  6220. ],
  6221. "packages-dev": [
  6222. {
  6223. "name": "doctrine/instantiator",
  6224. "version": "1.3.0",
  6225. "source": {
  6226. "type": "git",
  6227. "url": "https://github.com/doctrine/instantiator.git",
  6228. "reference": "ae466f726242e637cebdd526a7d991b9433bacf1"
  6229. },
  6230. "dist": {
  6231. "type": "zip",
  6232. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/ae466f726242e637cebdd526a7d991b9433bacf1",
  6233. "reference": "ae466f726242e637cebdd526a7d991b9433bacf1",
  6234. "shasum": "",
  6235. "mirrors": [
  6236. {
  6237. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6238. "preferred": true
  6239. }
  6240. ]
  6241. },
  6242. "require": {
  6243. "php": "^7.1"
  6244. },
  6245. "require-dev": {
  6246. "doctrine/coding-standard": "^6.0",
  6247. "ext-pdo": "*",
  6248. "ext-phar": "*",
  6249. "phpbench/phpbench": "^0.13",
  6250. "phpstan/phpstan-phpunit": "^0.11",
  6251. "phpstan/phpstan-shim": "^0.11",
  6252. "phpunit/phpunit": "^7.0"
  6253. },
  6254. "type": "library",
  6255. "extra": {
  6256. "branch-alias": {
  6257. "dev-master": "1.2.x-dev"
  6258. }
  6259. },
  6260. "autoload": {
  6261. "psr-4": {
  6262. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  6263. }
  6264. },
  6265. "notification-url": "https://packagist.org/downloads/",
  6266. "license": [
  6267. "MIT"
  6268. ],
  6269. "authors": [
  6270. {
  6271. "name": "Marco Pivetta",
  6272. "email": "ocramius@gmail.com",
  6273. "homepage": "http://ocramius.github.com/"
  6274. }
  6275. ],
  6276. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  6277. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  6278. "keywords": [
  6279. "constructor",
  6280. "instantiate"
  6281. ],
  6282. "time": "2019-10-21T16:45:58+00:00"
  6283. },
  6284. {
  6285. "name": "filp/whoops",
  6286. "version": "2.7.1",
  6287. "source": {
  6288. "type": "git",
  6289. "url": "https://github.com/filp/whoops.git",
  6290. "reference": "fff6f1e4f36be0e0d0b84d66b413d9dcb0c49130"
  6291. },
  6292. "dist": {
  6293. "type": "zip",
  6294. "url": "https://api.github.com/repos/filp/whoops/zipball/fff6f1e4f36be0e0d0b84d66b413d9dcb0c49130",
  6295. "reference": "fff6f1e4f36be0e0d0b84d66b413d9dcb0c49130",
  6296. "shasum": "",
  6297. "mirrors": [
  6298. {
  6299. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6300. "preferred": true
  6301. }
  6302. ]
  6303. },
  6304. "require": {
  6305. "php": "^5.5.9 || ^7.0",
  6306. "psr/log": "^1.0.1"
  6307. },
  6308. "require-dev": {
  6309. "mockery/mockery": "^0.9 || ^1.0",
  6310. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0",
  6311. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  6312. },
  6313. "suggest": {
  6314. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  6315. "whoops/soap": "Formats errors as SOAP responses"
  6316. },
  6317. "type": "library",
  6318. "extra": {
  6319. "branch-alias": {
  6320. "dev-master": "2.6-dev"
  6321. }
  6322. },
  6323. "autoload": {
  6324. "psr-4": {
  6325. "Whoops\\": "src/Whoops/"
  6326. }
  6327. },
  6328. "notification-url": "https://packagist.org/downloads/",
  6329. "license": [
  6330. "MIT"
  6331. ],
  6332. "authors": [
  6333. {
  6334. "name": "Filipe Dobreira",
  6335. "homepage": "https://github.com/filp",
  6336. "role": "Developer"
  6337. }
  6338. ],
  6339. "description": "php error handling for cool kids",
  6340. "homepage": "https://filp.github.io/whoops/",
  6341. "keywords": [
  6342. "error",
  6343. "exception",
  6344. "handling",
  6345. "library",
  6346. "throwable",
  6347. "whoops"
  6348. ],
  6349. "time": "2020-01-15T10:00:00+00:00"
  6350. },
  6351. {
  6352. "name": "fzaninotto/faker",
  6353. "version": "v1.9.1",
  6354. "source": {
  6355. "type": "git",
  6356. "url": "https://github.com/fzaninotto/Faker.git",
  6357. "reference": "fc10d778e4b84d5bd315dad194661e091d307c6f"
  6358. },
  6359. "dist": {
  6360. "type": "zip",
  6361. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/fc10d778e4b84d5bd315dad194661e091d307c6f",
  6362. "reference": "fc10d778e4b84d5bd315dad194661e091d307c6f",
  6363. "shasum": "",
  6364. "mirrors": [
  6365. {
  6366. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6367. "preferred": true
  6368. }
  6369. ]
  6370. },
  6371. "require": {
  6372. "php": "^5.3.3 || ^7.0"
  6373. },
  6374. "require-dev": {
  6375. "ext-intl": "*",
  6376. "phpunit/phpunit": "^4.8.35 || ^5.7",
  6377. "squizlabs/php_codesniffer": "^2.9.2"
  6378. },
  6379. "type": "library",
  6380. "extra": {
  6381. "branch-alias": {
  6382. "dev-master": "1.9-dev"
  6383. }
  6384. },
  6385. "autoload": {
  6386. "psr-4": {
  6387. "Faker\\": "src/Faker/"
  6388. }
  6389. },
  6390. "notification-url": "https://packagist.org/downloads/",
  6391. "license": [
  6392. "MIT"
  6393. ],
  6394. "authors": [
  6395. {
  6396. "name": "François Zaninotto"
  6397. }
  6398. ],
  6399. "description": "Faker is a PHP library that generates fake data for you.",
  6400. "keywords": [
  6401. "data",
  6402. "faker",
  6403. "fixtures"
  6404. ],
  6405. "time": "2019-12-12T13:22:17+00:00"
  6406. },
  6407. {
  6408. "name": "hamcrest/hamcrest-php",
  6409. "version": "v2.0.0",
  6410. "source": {
  6411. "type": "git",
  6412. "url": "https://github.com/hamcrest/hamcrest-php.git",
  6413. "reference": "776503d3a8e85d4f9a1148614f95b7a608b046ad"
  6414. },
  6415. "dist": {
  6416. "type": "zip",
  6417. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/776503d3a8e85d4f9a1148614f95b7a608b046ad",
  6418. "reference": "776503d3a8e85d4f9a1148614f95b7a608b046ad",
  6419. "shasum": "",
  6420. "mirrors": [
  6421. {
  6422. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6423. "preferred": true
  6424. }
  6425. ]
  6426. },
  6427. "require": {
  6428. "php": "^5.3|^7.0"
  6429. },
  6430. "replace": {
  6431. "cordoval/hamcrest-php": "*",
  6432. "davedevelopment/hamcrest-php": "*",
  6433. "kodova/hamcrest-php": "*"
  6434. },
  6435. "require-dev": {
  6436. "phpunit/php-file-iterator": "1.3.3",
  6437. "phpunit/phpunit": "~4.0",
  6438. "satooshi/php-coveralls": "^1.0"
  6439. },
  6440. "type": "library",
  6441. "extra": {
  6442. "branch-alias": {
  6443. "dev-master": "2.0-dev"
  6444. }
  6445. },
  6446. "autoload": {
  6447. "classmap": [
  6448. "hamcrest"
  6449. ]
  6450. },
  6451. "notification-url": "https://packagist.org/downloads/",
  6452. "license": [
  6453. "BSD"
  6454. ],
  6455. "description": "This is the PHP port of Hamcrest Matchers",
  6456. "keywords": [
  6457. "test"
  6458. ],
  6459. "time": "2016-01-20T08:20:44+00:00"
  6460. },
  6461. {
  6462. "name": "mockery/mockery",
  6463. "version": "1.3.1",
  6464. "source": {
  6465. "type": "git",
  6466. "url": "https://github.com/mockery/mockery.git",
  6467. "reference": "f69bbde7d7a75d6b2862d9ca8fab1cd28014b4be"
  6468. },
  6469. "dist": {
  6470. "type": "zip",
  6471. "url": "https://api.github.com/repos/mockery/mockery/zipball/f69bbde7d7a75d6b2862d9ca8fab1cd28014b4be",
  6472. "reference": "f69bbde7d7a75d6b2862d9ca8fab1cd28014b4be",
  6473. "shasum": "",
  6474. "mirrors": [
  6475. {
  6476. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6477. "preferred": true
  6478. }
  6479. ]
  6480. },
  6481. "require": {
  6482. "hamcrest/hamcrest-php": "~2.0",
  6483. "lib-pcre": ">=7.0",
  6484. "php": ">=5.6.0"
  6485. },
  6486. "require-dev": {
  6487. "phpunit/phpunit": "~5.7.10|~6.5|~7.0|~8.0"
  6488. },
  6489. "type": "library",
  6490. "extra": {
  6491. "branch-alias": {
  6492. "dev-master": "1.3.x-dev"
  6493. }
  6494. },
  6495. "autoload": {
  6496. "psr-0": {
  6497. "Mockery": "library/"
  6498. }
  6499. },
  6500. "notification-url": "https://packagist.org/downloads/",
  6501. "license": [
  6502. "BSD-3-Clause"
  6503. ],
  6504. "authors": [
  6505. {
  6506. "name": "Pádraic Brady",
  6507. "email": "padraic.brady@gmail.com",
  6508. "homepage": "http://blog.astrumfutura.com"
  6509. },
  6510. {
  6511. "name": "Dave Marshall",
  6512. "email": "dave.marshall@atstsolutions.co.uk",
  6513. "homepage": "http://davedevelopment.co.uk"
  6514. }
  6515. ],
  6516. "description": "Mockery is a simple yet flexible PHP mock object framework",
  6517. "homepage": "https://github.com/mockery/mockery",
  6518. "keywords": [
  6519. "BDD",
  6520. "TDD",
  6521. "library",
  6522. "mock",
  6523. "mock objects",
  6524. "mockery",
  6525. "stub",
  6526. "test",
  6527. "test double",
  6528. "testing"
  6529. ],
  6530. "time": "2019-12-26T09:49:15+00:00"
  6531. },
  6532. {
  6533. "name": "myclabs/deep-copy",
  6534. "version": "1.9.5",
  6535. "source": {
  6536. "type": "git",
  6537. "url": "https://github.com/myclabs/DeepCopy.git",
  6538. "reference": "b2c28789e80a97badd14145fda39b545d83ca3ef"
  6539. },
  6540. "dist": {
  6541. "type": "zip",
  6542. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/b2c28789e80a97badd14145fda39b545d83ca3ef",
  6543. "reference": "b2c28789e80a97badd14145fda39b545d83ca3ef",
  6544. "shasum": "",
  6545. "mirrors": [
  6546. {
  6547. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6548. "preferred": true
  6549. }
  6550. ]
  6551. },
  6552. "require": {
  6553. "php": "^7.1"
  6554. },
  6555. "replace": {
  6556. "myclabs/deep-copy": "self.version"
  6557. },
  6558. "require-dev": {
  6559. "doctrine/collections": "^1.0",
  6560. "doctrine/common": "^2.6",
  6561. "phpunit/phpunit": "^7.1"
  6562. },
  6563. "type": "library",
  6564. "autoload": {
  6565. "psr-4": {
  6566. "DeepCopy\\": "src/DeepCopy/"
  6567. },
  6568. "files": [
  6569. "src/DeepCopy/deep_copy.php"
  6570. ]
  6571. },
  6572. "notification-url": "https://packagist.org/downloads/",
  6573. "license": [
  6574. "MIT"
  6575. ],
  6576. "description": "Create deep copies (clones) of your objects",
  6577. "keywords": [
  6578. "clone",
  6579. "copy",
  6580. "duplicate",
  6581. "object",
  6582. "object graph"
  6583. ],
  6584. "time": "2020-01-17T21:11:47+00:00"
  6585. },
  6586. {
  6587. "name": "nunomaduro/collision",
  6588. "version": "v3.0.1",
  6589. "source": {
  6590. "type": "git",
  6591. "url": "https://github.com/nunomaduro/collision.git",
  6592. "reference": "af42d339fe2742295a54f6fdd42aaa6f8c4aca68"
  6593. },
  6594. "dist": {
  6595. "type": "zip",
  6596. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/af42d339fe2742295a54f6fdd42aaa6f8c4aca68",
  6597. "reference": "af42d339fe2742295a54f6fdd42aaa6f8c4aca68",
  6598. "shasum": "",
  6599. "mirrors": [
  6600. {
  6601. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6602. "preferred": true
  6603. }
  6604. ]
  6605. },
  6606. "require": {
  6607. "filp/whoops": "^2.1.4",
  6608. "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
  6609. "php": "^7.1",
  6610. "symfony/console": "~2.8|~3.3|~4.0"
  6611. },
  6612. "require-dev": {
  6613. "laravel/framework": "5.8.*",
  6614. "nunomaduro/larastan": "^0.3.0",
  6615. "phpstan/phpstan": "^0.11",
  6616. "phpunit/phpunit": "~8.0"
  6617. },
  6618. "type": "library",
  6619. "extra": {
  6620. "laravel": {
  6621. "providers": [
  6622. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  6623. ]
  6624. }
  6625. },
  6626. "autoload": {
  6627. "psr-4": {
  6628. "NunoMaduro\\Collision\\": "src/"
  6629. }
  6630. },
  6631. "notification-url": "https://packagist.org/downloads/",
  6632. "license": [
  6633. "MIT"
  6634. ],
  6635. "authors": [
  6636. {
  6637. "name": "Nuno Maduro",
  6638. "email": "enunomaduro@gmail.com"
  6639. }
  6640. ],
  6641. "description": "Cli error handling for console/command-line PHP applications.",
  6642. "keywords": [
  6643. "artisan",
  6644. "cli",
  6645. "command-line",
  6646. "console",
  6647. "error",
  6648. "handling",
  6649. "laravel",
  6650. "laravel-zero",
  6651. "php",
  6652. "symfony"
  6653. ],
  6654. "time": "2019-03-07T21:35:13+00:00"
  6655. },
  6656. {
  6657. "name": "phar-io/manifest",
  6658. "version": "1.0.3",
  6659. "source": {
  6660. "type": "git",
  6661. "url": "https://github.com/phar-io/manifest.git",
  6662. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4"
  6663. },
  6664. "dist": {
  6665. "type": "zip",
  6666. "url": "https://api.github.com/repos/phar-io/manifest/zipball/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  6667. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  6668. "shasum": "",
  6669. "mirrors": [
  6670. {
  6671. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6672. "preferred": true
  6673. }
  6674. ]
  6675. },
  6676. "require": {
  6677. "ext-dom": "*",
  6678. "ext-phar": "*",
  6679. "phar-io/version": "^2.0",
  6680. "php": "^5.6 || ^7.0"
  6681. },
  6682. "type": "library",
  6683. "extra": {
  6684. "branch-alias": {
  6685. "dev-master": "1.0.x-dev"
  6686. }
  6687. },
  6688. "autoload": {
  6689. "classmap": [
  6690. "src/"
  6691. ]
  6692. },
  6693. "notification-url": "https://packagist.org/downloads/",
  6694. "license": [
  6695. "BSD-3-Clause"
  6696. ],
  6697. "authors": [
  6698. {
  6699. "name": "Arne Blankerts",
  6700. "email": "arne@blankerts.de",
  6701. "role": "Developer"
  6702. },
  6703. {
  6704. "name": "Sebastian Heuer",
  6705. "email": "sebastian@phpeople.de",
  6706. "role": "Developer"
  6707. },
  6708. {
  6709. "name": "Sebastian Bergmann",
  6710. "email": "sebastian@phpunit.de",
  6711. "role": "Developer"
  6712. }
  6713. ],
  6714. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  6715. "time": "2018-07-08T19:23:20+00:00"
  6716. },
  6717. {
  6718. "name": "phar-io/version",
  6719. "version": "2.0.1",
  6720. "source": {
  6721. "type": "git",
  6722. "url": "https://github.com/phar-io/version.git",
  6723. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6"
  6724. },
  6725. "dist": {
  6726. "type": "zip",
  6727. "url": "https://api.github.com/repos/phar-io/version/zipball/45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  6728. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  6729. "shasum": "",
  6730. "mirrors": [
  6731. {
  6732. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6733. "preferred": true
  6734. }
  6735. ]
  6736. },
  6737. "require": {
  6738. "php": "^5.6 || ^7.0"
  6739. },
  6740. "type": "library",
  6741. "autoload": {
  6742. "classmap": [
  6743. "src/"
  6744. ]
  6745. },
  6746. "notification-url": "https://packagist.org/downloads/",
  6747. "license": [
  6748. "BSD-3-Clause"
  6749. ],
  6750. "authors": [
  6751. {
  6752. "name": "Arne Blankerts",
  6753. "email": "arne@blankerts.de",
  6754. "role": "Developer"
  6755. },
  6756. {
  6757. "name": "Sebastian Heuer",
  6758. "email": "sebastian@phpeople.de",
  6759. "role": "Developer"
  6760. },
  6761. {
  6762. "name": "Sebastian Bergmann",
  6763. "email": "sebastian@phpunit.de",
  6764. "role": "Developer"
  6765. }
  6766. ],
  6767. "description": "Library for handling version information and constraints",
  6768. "time": "2018-07-08T19:19:57+00:00"
  6769. },
  6770. {
  6771. "name": "phpdocumentor/reflection-common",
  6772. "version": "2.0.0",
  6773. "source": {
  6774. "type": "git",
  6775. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  6776. "reference": "63a995caa1ca9e5590304cd845c15ad6d482a62a"
  6777. },
  6778. "dist": {
  6779. "type": "zip",
  6780. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/63a995caa1ca9e5590304cd845c15ad6d482a62a",
  6781. "reference": "63a995caa1ca9e5590304cd845c15ad6d482a62a",
  6782. "shasum": "",
  6783. "mirrors": [
  6784. {
  6785. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6786. "preferred": true
  6787. }
  6788. ]
  6789. },
  6790. "require": {
  6791. "php": ">=7.1"
  6792. },
  6793. "require-dev": {
  6794. "phpunit/phpunit": "~6"
  6795. },
  6796. "type": "library",
  6797. "extra": {
  6798. "branch-alias": {
  6799. "dev-master": "2.x-dev"
  6800. }
  6801. },
  6802. "autoload": {
  6803. "psr-4": {
  6804. "phpDocumentor\\Reflection\\": "src/"
  6805. }
  6806. },
  6807. "notification-url": "https://packagist.org/downloads/",
  6808. "license": [
  6809. "MIT"
  6810. ],
  6811. "authors": [
  6812. {
  6813. "name": "Jaap van Otterdijk",
  6814. "email": "opensource@ijaap.nl"
  6815. }
  6816. ],
  6817. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  6818. "homepage": "http://www.phpdoc.org",
  6819. "keywords": [
  6820. "FQSEN",
  6821. "phpDocumentor",
  6822. "phpdoc",
  6823. "reflection",
  6824. "static analysis"
  6825. ],
  6826. "time": "2018-08-07T13:53:10+00:00"
  6827. },
  6828. {
  6829. "name": "phpdocumentor/reflection-docblock",
  6830. "version": "5.1.0",
  6831. "source": {
  6832. "type": "git",
  6833. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  6834. "reference": "cd72d394ca794d3466a3b2fc09d5a6c1dc86b47e"
  6835. },
  6836. "dist": {
  6837. "type": "zip",
  6838. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/cd72d394ca794d3466a3b2fc09d5a6c1dc86b47e",
  6839. "reference": "cd72d394ca794d3466a3b2fc09d5a6c1dc86b47e",
  6840. "shasum": "",
  6841. "mirrors": [
  6842. {
  6843. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6844. "preferred": true
  6845. }
  6846. ]
  6847. },
  6848. "require": {
  6849. "ext-filter": "^7.1",
  6850. "php": "^7.2",
  6851. "phpdocumentor/reflection-common": "^2.0",
  6852. "phpdocumentor/type-resolver": "^1.0",
  6853. "webmozart/assert": "^1"
  6854. },
  6855. "require-dev": {
  6856. "doctrine/instantiator": "^1",
  6857. "mockery/mockery": "^1"
  6858. },
  6859. "type": "library",
  6860. "extra": {
  6861. "branch-alias": {
  6862. "dev-master": "5.x-dev"
  6863. }
  6864. },
  6865. "autoload": {
  6866. "psr-4": {
  6867. "phpDocumentor\\Reflection\\": "src"
  6868. }
  6869. },
  6870. "notification-url": "https://packagist.org/downloads/",
  6871. "license": [
  6872. "MIT"
  6873. ],
  6874. "authors": [
  6875. {
  6876. "name": "Mike van Riel",
  6877. "email": "me@mikevanriel.com"
  6878. },
  6879. {
  6880. "name": "Jaap van Otterdijk",
  6881. "email": "account@ijaap.nl"
  6882. }
  6883. ],
  6884. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  6885. "time": "2020-02-22T12:28:44+00:00"
  6886. },
  6887. {
  6888. "name": "phpdocumentor/type-resolver",
  6889. "version": "1.1.0",
  6890. "source": {
  6891. "type": "git",
  6892. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  6893. "reference": "7462d5f123dfc080dfdf26897032a6513644fc95"
  6894. },
  6895. "dist": {
  6896. "type": "zip",
  6897. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/7462d5f123dfc080dfdf26897032a6513644fc95",
  6898. "reference": "7462d5f123dfc080dfdf26897032a6513644fc95",
  6899. "shasum": "",
  6900. "mirrors": [
  6901. {
  6902. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6903. "preferred": true
  6904. }
  6905. ]
  6906. },
  6907. "require": {
  6908. "php": "^7.2",
  6909. "phpdocumentor/reflection-common": "^2.0"
  6910. },
  6911. "require-dev": {
  6912. "ext-tokenizer": "^7.2",
  6913. "mockery/mockery": "~1"
  6914. },
  6915. "type": "library",
  6916. "extra": {
  6917. "branch-alias": {
  6918. "dev-master": "1.x-dev"
  6919. }
  6920. },
  6921. "autoload": {
  6922. "psr-4": {
  6923. "phpDocumentor\\Reflection\\": "src"
  6924. }
  6925. },
  6926. "notification-url": "https://packagist.org/downloads/",
  6927. "license": [
  6928. "MIT"
  6929. ],
  6930. "authors": [
  6931. {
  6932. "name": "Mike van Riel",
  6933. "email": "me@mikevanriel.com"
  6934. }
  6935. ],
  6936. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  6937. "time": "2020-02-18T18:59:58+00:00"
  6938. },
  6939. {
  6940. "name": "phpspec/prophecy",
  6941. "version": "v1.10.3",
  6942. "source": {
  6943. "type": "git",
  6944. "url": "https://github.com/phpspec/prophecy.git",
  6945. "reference": "451c3cd1418cf640de218914901e51b064abb093"
  6946. },
  6947. "dist": {
  6948. "type": "zip",
  6949. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/451c3cd1418cf640de218914901e51b064abb093",
  6950. "reference": "451c3cd1418cf640de218914901e51b064abb093",
  6951. "shasum": "",
  6952. "mirrors": [
  6953. {
  6954. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6955. "preferred": true
  6956. }
  6957. ]
  6958. },
  6959. "require": {
  6960. "doctrine/instantiator": "^1.0.2",
  6961. "php": "^5.3|^7.0",
  6962. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0|^5.0",
  6963. "sebastian/comparator": "^1.2.3|^2.0|^3.0|^4.0",
  6964. "sebastian/recursion-context": "^1.0|^2.0|^3.0|^4.0"
  6965. },
  6966. "require-dev": {
  6967. "phpspec/phpspec": "^2.5 || ^3.2",
  6968. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  6969. },
  6970. "type": "library",
  6971. "extra": {
  6972. "branch-alias": {
  6973. "dev-master": "1.10.x-dev"
  6974. }
  6975. },
  6976. "autoload": {
  6977. "psr-4": {
  6978. "Prophecy\\": "src/Prophecy"
  6979. }
  6980. },
  6981. "notification-url": "https://packagist.org/downloads/",
  6982. "license": [
  6983. "MIT"
  6984. ],
  6985. "authors": [
  6986. {
  6987. "name": "Konstantin Kudryashov",
  6988. "email": "ever.zet@gmail.com",
  6989. "homepage": "http://everzet.com"
  6990. },
  6991. {
  6992. "name": "Marcello Duarte",
  6993. "email": "marcello.duarte@gmail.com"
  6994. }
  6995. ],
  6996. "description": "Highly opinionated mocking framework for PHP 5.3+",
  6997. "homepage": "https://github.com/phpspec/prophecy",
  6998. "keywords": [
  6999. "Double",
  7000. "Dummy",
  7001. "fake",
  7002. "mock",
  7003. "spy",
  7004. "stub"
  7005. ],
  7006. "time": "2020-03-05T15:02:03+00:00"
  7007. },
  7008. {
  7009. "name": "phpunit/php-code-coverage",
  7010. "version": "7.0.10",
  7011. "source": {
  7012. "type": "git",
  7013. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  7014. "reference": "f1884187926fbb755a9aaf0b3836ad3165b478bf"
  7015. },
  7016. "dist": {
  7017. "type": "zip",
  7018. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f1884187926fbb755a9aaf0b3836ad3165b478bf",
  7019. "reference": "f1884187926fbb755a9aaf0b3836ad3165b478bf",
  7020. "shasum": "",
  7021. "mirrors": [
  7022. {
  7023. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7024. "preferred": true
  7025. }
  7026. ]
  7027. },
  7028. "require": {
  7029. "ext-dom": "*",
  7030. "ext-xmlwriter": "*",
  7031. "php": "^7.2",
  7032. "phpunit/php-file-iterator": "^2.0.2",
  7033. "phpunit/php-text-template": "^1.2.1",
  7034. "phpunit/php-token-stream": "^3.1.1",
  7035. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  7036. "sebastian/environment": "^4.2.2",
  7037. "sebastian/version": "^2.0.1",
  7038. "theseer/tokenizer": "^1.1.3"
  7039. },
  7040. "require-dev": {
  7041. "phpunit/phpunit": "^8.2.2"
  7042. },
  7043. "suggest": {
  7044. "ext-xdebug": "^2.7.2"
  7045. },
  7046. "type": "library",
  7047. "extra": {
  7048. "branch-alias": {
  7049. "dev-master": "7.0-dev"
  7050. }
  7051. },
  7052. "autoload": {
  7053. "classmap": [
  7054. "src/"
  7055. ]
  7056. },
  7057. "notification-url": "https://packagist.org/downloads/",
  7058. "license": [
  7059. "BSD-3-Clause"
  7060. ],
  7061. "authors": [
  7062. {
  7063. "name": "Sebastian Bergmann",
  7064. "email": "sebastian@phpunit.de",
  7065. "role": "lead"
  7066. }
  7067. ],
  7068. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  7069. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  7070. "keywords": [
  7071. "coverage",
  7072. "testing",
  7073. "xunit"
  7074. ],
  7075. "time": "2019-11-20T13:55:58+00:00"
  7076. },
  7077. {
  7078. "name": "phpunit/php-file-iterator",
  7079. "version": "2.0.2",
  7080. "source": {
  7081. "type": "git",
  7082. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  7083. "reference": "050bedf145a257b1ff02746c31894800e5122946"
  7084. },
  7085. "dist": {
  7086. "type": "zip",
  7087. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/050bedf145a257b1ff02746c31894800e5122946",
  7088. "reference": "050bedf145a257b1ff02746c31894800e5122946",
  7089. "shasum": "",
  7090. "mirrors": [
  7091. {
  7092. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7093. "preferred": true
  7094. }
  7095. ]
  7096. },
  7097. "require": {
  7098. "php": "^7.1"
  7099. },
  7100. "require-dev": {
  7101. "phpunit/phpunit": "^7.1"
  7102. },
  7103. "type": "library",
  7104. "extra": {
  7105. "branch-alias": {
  7106. "dev-master": "2.0.x-dev"
  7107. }
  7108. },
  7109. "autoload": {
  7110. "classmap": [
  7111. "src/"
  7112. ]
  7113. },
  7114. "notification-url": "https://packagist.org/downloads/",
  7115. "license": [
  7116. "BSD-3-Clause"
  7117. ],
  7118. "authors": [
  7119. {
  7120. "name": "Sebastian Bergmann",
  7121. "email": "sebastian@phpunit.de",
  7122. "role": "lead"
  7123. }
  7124. ],
  7125. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  7126. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  7127. "keywords": [
  7128. "filesystem",
  7129. "iterator"
  7130. ],
  7131. "time": "2018-09-13T20:33:42+00:00"
  7132. },
  7133. {
  7134. "name": "phpunit/php-text-template",
  7135. "version": "1.2.1",
  7136. "source": {
  7137. "type": "git",
  7138. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  7139. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  7140. },
  7141. "dist": {
  7142. "type": "zip",
  7143. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  7144. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  7145. "shasum": "",
  7146. "mirrors": [
  7147. {
  7148. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7149. "preferred": true
  7150. }
  7151. ]
  7152. },
  7153. "require": {
  7154. "php": ">=5.3.3"
  7155. },
  7156. "type": "library",
  7157. "autoload": {
  7158. "classmap": [
  7159. "src/"
  7160. ]
  7161. },
  7162. "notification-url": "https://packagist.org/downloads/",
  7163. "license": [
  7164. "BSD-3-Clause"
  7165. ],
  7166. "authors": [
  7167. {
  7168. "name": "Sebastian Bergmann",
  7169. "email": "sebastian@phpunit.de",
  7170. "role": "lead"
  7171. }
  7172. ],
  7173. "description": "Simple template engine.",
  7174. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  7175. "keywords": [
  7176. "template"
  7177. ],
  7178. "time": "2015-06-21T13:50:34+00:00"
  7179. },
  7180. {
  7181. "name": "phpunit/php-timer",
  7182. "version": "2.1.2",
  7183. "source": {
  7184. "type": "git",
  7185. "url": "https://github.com/sebastianbergmann/php-timer.git",
  7186. "reference": "1038454804406b0b5f5f520358e78c1c2f71501e"
  7187. },
  7188. "dist": {
  7189. "type": "zip",
  7190. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/1038454804406b0b5f5f520358e78c1c2f71501e",
  7191. "reference": "1038454804406b0b5f5f520358e78c1c2f71501e",
  7192. "shasum": "",
  7193. "mirrors": [
  7194. {
  7195. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7196. "preferred": true
  7197. }
  7198. ]
  7199. },
  7200. "require": {
  7201. "php": "^7.1"
  7202. },
  7203. "require-dev": {
  7204. "phpunit/phpunit": "^7.0"
  7205. },
  7206. "type": "library",
  7207. "extra": {
  7208. "branch-alias": {
  7209. "dev-master": "2.1-dev"
  7210. }
  7211. },
  7212. "autoload": {
  7213. "classmap": [
  7214. "src/"
  7215. ]
  7216. },
  7217. "notification-url": "https://packagist.org/downloads/",
  7218. "license": [
  7219. "BSD-3-Clause"
  7220. ],
  7221. "authors": [
  7222. {
  7223. "name": "Sebastian Bergmann",
  7224. "email": "sebastian@phpunit.de",
  7225. "role": "lead"
  7226. }
  7227. ],
  7228. "description": "Utility class for timing",
  7229. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  7230. "keywords": [
  7231. "timer"
  7232. ],
  7233. "time": "2019-06-07T04:22:29+00:00"
  7234. },
  7235. {
  7236. "name": "phpunit/php-token-stream",
  7237. "version": "3.1.1",
  7238. "source": {
  7239. "type": "git",
  7240. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  7241. "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff"
  7242. },
  7243. "dist": {
  7244. "type": "zip",
  7245. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/995192df77f63a59e47f025390d2d1fdf8f425ff",
  7246. "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff",
  7247. "shasum": "",
  7248. "mirrors": [
  7249. {
  7250. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7251. "preferred": true
  7252. }
  7253. ]
  7254. },
  7255. "require": {
  7256. "ext-tokenizer": "*",
  7257. "php": "^7.1"
  7258. },
  7259. "require-dev": {
  7260. "phpunit/phpunit": "^7.0"
  7261. },
  7262. "type": "library",
  7263. "extra": {
  7264. "branch-alias": {
  7265. "dev-master": "3.1-dev"
  7266. }
  7267. },
  7268. "autoload": {
  7269. "classmap": [
  7270. "src/"
  7271. ]
  7272. },
  7273. "notification-url": "https://packagist.org/downloads/",
  7274. "license": [
  7275. "BSD-3-Clause"
  7276. ],
  7277. "authors": [
  7278. {
  7279. "name": "Sebastian Bergmann",
  7280. "email": "sebastian@phpunit.de"
  7281. }
  7282. ],
  7283. "description": "Wrapper around PHP's tokenizer extension.",
  7284. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  7285. "keywords": [
  7286. "tokenizer"
  7287. ],
  7288. "time": "2019-09-17T06:23:10+00:00"
  7289. },
  7290. {
  7291. "name": "phpunit/phpunit",
  7292. "version": "8.5.4",
  7293. "source": {
  7294. "type": "git",
  7295. "url": "https://github.com/sebastianbergmann/phpunit.git",
  7296. "reference": "8474e22d7d642f665084ba5ec780626cbd1efd23"
  7297. },
  7298. "dist": {
  7299. "type": "zip",
  7300. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/8474e22d7d642f665084ba5ec780626cbd1efd23",
  7301. "reference": "8474e22d7d642f665084ba5ec780626cbd1efd23",
  7302. "shasum": "",
  7303. "mirrors": [
  7304. {
  7305. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7306. "preferred": true
  7307. }
  7308. ]
  7309. },
  7310. "require": {
  7311. "doctrine/instantiator": "^1.2.0",
  7312. "ext-dom": "*",
  7313. "ext-json": "*",
  7314. "ext-libxml": "*",
  7315. "ext-mbstring": "*",
  7316. "ext-xml": "*",
  7317. "ext-xmlwriter": "*",
  7318. "myclabs/deep-copy": "^1.9.1",
  7319. "phar-io/manifest": "^1.0.3",
  7320. "phar-io/version": "^2.0.1",
  7321. "php": "^7.2",
  7322. "phpspec/prophecy": "^1.8.1",
  7323. "phpunit/php-code-coverage": "^7.0.7",
  7324. "phpunit/php-file-iterator": "^2.0.2",
  7325. "phpunit/php-text-template": "^1.2.1",
  7326. "phpunit/php-timer": "^2.1.2",
  7327. "sebastian/comparator": "^3.0.2",
  7328. "sebastian/diff": "^3.0.2",
  7329. "sebastian/environment": "^4.2.2",
  7330. "sebastian/exporter": "^3.1.1",
  7331. "sebastian/global-state": "^3.0.0",
  7332. "sebastian/object-enumerator": "^3.0.3",
  7333. "sebastian/resource-operations": "^2.0.1",
  7334. "sebastian/type": "^1.1.3",
  7335. "sebastian/version": "^2.0.1"
  7336. },
  7337. "require-dev": {
  7338. "ext-pdo": "*"
  7339. },
  7340. "suggest": {
  7341. "ext-soap": "*",
  7342. "ext-xdebug": "*",
  7343. "phpunit/php-invoker": "^2.0.0"
  7344. },
  7345. "bin": [
  7346. "phpunit"
  7347. ],
  7348. "type": "library",
  7349. "extra": {
  7350. "branch-alias": {
  7351. "dev-master": "8.5-dev"
  7352. }
  7353. },
  7354. "autoload": {
  7355. "classmap": [
  7356. "src/"
  7357. ]
  7358. },
  7359. "notification-url": "https://packagist.org/downloads/",
  7360. "license": [
  7361. "BSD-3-Clause"
  7362. ],
  7363. "authors": [
  7364. {
  7365. "name": "Sebastian Bergmann",
  7366. "email": "sebastian@phpunit.de",
  7367. "role": "lead"
  7368. }
  7369. ],
  7370. "description": "The PHP Unit Testing framework.",
  7371. "homepage": "https://phpunit.de/",
  7372. "keywords": [
  7373. "phpunit",
  7374. "testing",
  7375. "xunit"
  7376. ],
  7377. "time": "2020-04-23T04:39:42+00:00"
  7378. },
  7379. {
  7380. "name": "sebastian/code-unit-reverse-lookup",
  7381. "version": "1.0.1",
  7382. "source": {
  7383. "type": "git",
  7384. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  7385. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  7386. },
  7387. "dist": {
  7388. "type": "zip",
  7389. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  7390. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  7391. "shasum": "",
  7392. "mirrors": [
  7393. {
  7394. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7395. "preferred": true
  7396. }
  7397. ]
  7398. },
  7399. "require": {
  7400. "php": "^5.6 || ^7.0"
  7401. },
  7402. "require-dev": {
  7403. "phpunit/phpunit": "^5.7 || ^6.0"
  7404. },
  7405. "type": "library",
  7406. "extra": {
  7407. "branch-alias": {
  7408. "dev-master": "1.0.x-dev"
  7409. }
  7410. },
  7411. "autoload": {
  7412. "classmap": [
  7413. "src/"
  7414. ]
  7415. },
  7416. "notification-url": "https://packagist.org/downloads/",
  7417. "license": [
  7418. "BSD-3-Clause"
  7419. ],
  7420. "authors": [
  7421. {
  7422. "name": "Sebastian Bergmann",
  7423. "email": "sebastian@phpunit.de"
  7424. }
  7425. ],
  7426. "description": "Looks up which function or method a line of code belongs to",
  7427. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  7428. "time": "2017-03-04T06:30:41+00:00"
  7429. },
  7430. {
  7431. "name": "sebastian/comparator",
  7432. "version": "3.0.2",
  7433. "source": {
  7434. "type": "git",
  7435. "url": "https://github.com/sebastianbergmann/comparator.git",
  7436. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da"
  7437. },
  7438. "dist": {
  7439. "type": "zip",
  7440. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  7441. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  7442. "shasum": "",
  7443. "mirrors": [
  7444. {
  7445. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7446. "preferred": true
  7447. }
  7448. ]
  7449. },
  7450. "require": {
  7451. "php": "^7.1",
  7452. "sebastian/diff": "^3.0",
  7453. "sebastian/exporter": "^3.1"
  7454. },
  7455. "require-dev": {
  7456. "phpunit/phpunit": "^7.1"
  7457. },
  7458. "type": "library",
  7459. "extra": {
  7460. "branch-alias": {
  7461. "dev-master": "3.0-dev"
  7462. }
  7463. },
  7464. "autoload": {
  7465. "classmap": [
  7466. "src/"
  7467. ]
  7468. },
  7469. "notification-url": "https://packagist.org/downloads/",
  7470. "license": [
  7471. "BSD-3-Clause"
  7472. ],
  7473. "authors": [
  7474. {
  7475. "name": "Jeff Welch",
  7476. "email": "whatthejeff@gmail.com"
  7477. },
  7478. {
  7479. "name": "Volker Dusch",
  7480. "email": "github@wallbash.com"
  7481. },
  7482. {
  7483. "name": "Bernhard Schussek",
  7484. "email": "bschussek@2bepublished.at"
  7485. },
  7486. {
  7487. "name": "Sebastian Bergmann",
  7488. "email": "sebastian@phpunit.de"
  7489. }
  7490. ],
  7491. "description": "Provides the functionality to compare PHP values for equality",
  7492. "homepage": "https://github.com/sebastianbergmann/comparator",
  7493. "keywords": [
  7494. "comparator",
  7495. "compare",
  7496. "equality"
  7497. ],
  7498. "time": "2018-07-12T15:12:46+00:00"
  7499. },
  7500. {
  7501. "name": "sebastian/diff",
  7502. "version": "3.0.2",
  7503. "source": {
  7504. "type": "git",
  7505. "url": "https://github.com/sebastianbergmann/diff.git",
  7506. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29"
  7507. },
  7508. "dist": {
  7509. "type": "zip",
  7510. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  7511. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  7512. "shasum": "",
  7513. "mirrors": [
  7514. {
  7515. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7516. "preferred": true
  7517. }
  7518. ]
  7519. },
  7520. "require": {
  7521. "php": "^7.1"
  7522. },
  7523. "require-dev": {
  7524. "phpunit/phpunit": "^7.5 || ^8.0",
  7525. "symfony/process": "^2 || ^3.3 || ^4"
  7526. },
  7527. "type": "library",
  7528. "extra": {
  7529. "branch-alias": {
  7530. "dev-master": "3.0-dev"
  7531. }
  7532. },
  7533. "autoload": {
  7534. "classmap": [
  7535. "src/"
  7536. ]
  7537. },
  7538. "notification-url": "https://packagist.org/downloads/",
  7539. "license": [
  7540. "BSD-3-Clause"
  7541. ],
  7542. "authors": [
  7543. {
  7544. "name": "Kore Nordmann",
  7545. "email": "mail@kore-nordmann.de"
  7546. },
  7547. {
  7548. "name": "Sebastian Bergmann",
  7549. "email": "sebastian@phpunit.de"
  7550. }
  7551. ],
  7552. "description": "Diff implementation",
  7553. "homepage": "https://github.com/sebastianbergmann/diff",
  7554. "keywords": [
  7555. "diff",
  7556. "udiff",
  7557. "unidiff",
  7558. "unified diff"
  7559. ],
  7560. "time": "2019-02-04T06:01:07+00:00"
  7561. },
  7562. {
  7563. "name": "sebastian/environment",
  7564. "version": "4.2.3",
  7565. "source": {
  7566. "type": "git",
  7567. "url": "https://github.com/sebastianbergmann/environment.git",
  7568. "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368"
  7569. },
  7570. "dist": {
  7571. "type": "zip",
  7572. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/464c90d7bdf5ad4e8a6aea15c091fec0603d4368",
  7573. "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368",
  7574. "shasum": "",
  7575. "mirrors": [
  7576. {
  7577. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7578. "preferred": true
  7579. }
  7580. ]
  7581. },
  7582. "require": {
  7583. "php": "^7.1"
  7584. },
  7585. "require-dev": {
  7586. "phpunit/phpunit": "^7.5"
  7587. },
  7588. "suggest": {
  7589. "ext-posix": "*"
  7590. },
  7591. "type": "library",
  7592. "extra": {
  7593. "branch-alias": {
  7594. "dev-master": "4.2-dev"
  7595. }
  7596. },
  7597. "autoload": {
  7598. "classmap": [
  7599. "src/"
  7600. ]
  7601. },
  7602. "notification-url": "https://packagist.org/downloads/",
  7603. "license": [
  7604. "BSD-3-Clause"
  7605. ],
  7606. "authors": [
  7607. {
  7608. "name": "Sebastian Bergmann",
  7609. "email": "sebastian@phpunit.de"
  7610. }
  7611. ],
  7612. "description": "Provides functionality to handle HHVM/PHP environments",
  7613. "homepage": "http://www.github.com/sebastianbergmann/environment",
  7614. "keywords": [
  7615. "Xdebug",
  7616. "environment",
  7617. "hhvm"
  7618. ],
  7619. "time": "2019-11-20T08:46:58+00:00"
  7620. },
  7621. {
  7622. "name": "sebastian/exporter",
  7623. "version": "3.1.2",
  7624. "source": {
  7625. "type": "git",
  7626. "url": "https://github.com/sebastianbergmann/exporter.git",
  7627. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e"
  7628. },
  7629. "dist": {
  7630. "type": "zip",
  7631. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/68609e1261d215ea5b21b7987539cbfbe156ec3e",
  7632. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e",
  7633. "shasum": "",
  7634. "mirrors": [
  7635. {
  7636. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7637. "preferred": true
  7638. }
  7639. ]
  7640. },
  7641. "require": {
  7642. "php": "^7.0",
  7643. "sebastian/recursion-context": "^3.0"
  7644. },
  7645. "require-dev": {
  7646. "ext-mbstring": "*",
  7647. "phpunit/phpunit": "^6.0"
  7648. },
  7649. "type": "library",
  7650. "extra": {
  7651. "branch-alias": {
  7652. "dev-master": "3.1.x-dev"
  7653. }
  7654. },
  7655. "autoload": {
  7656. "classmap": [
  7657. "src/"
  7658. ]
  7659. },
  7660. "notification-url": "https://packagist.org/downloads/",
  7661. "license": [
  7662. "BSD-3-Clause"
  7663. ],
  7664. "authors": [
  7665. {
  7666. "name": "Sebastian Bergmann",
  7667. "email": "sebastian@phpunit.de"
  7668. },
  7669. {
  7670. "name": "Jeff Welch",
  7671. "email": "whatthejeff@gmail.com"
  7672. },
  7673. {
  7674. "name": "Volker Dusch",
  7675. "email": "github@wallbash.com"
  7676. },
  7677. {
  7678. "name": "Adam Harvey",
  7679. "email": "aharvey@php.net"
  7680. },
  7681. {
  7682. "name": "Bernhard Schussek",
  7683. "email": "bschussek@gmail.com"
  7684. }
  7685. ],
  7686. "description": "Provides the functionality to export PHP variables for visualization",
  7687. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  7688. "keywords": [
  7689. "export",
  7690. "exporter"
  7691. ],
  7692. "time": "2019-09-14T09:02:43+00:00"
  7693. },
  7694. {
  7695. "name": "sebastian/global-state",
  7696. "version": "3.0.0",
  7697. "source": {
  7698. "type": "git",
  7699. "url": "https://github.com/sebastianbergmann/global-state.git",
  7700. "reference": "edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4"
  7701. },
  7702. "dist": {
  7703. "type": "zip",
  7704. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4",
  7705. "reference": "edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4",
  7706. "shasum": "",
  7707. "mirrors": [
  7708. {
  7709. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7710. "preferred": true
  7711. }
  7712. ]
  7713. },
  7714. "require": {
  7715. "php": "^7.2",
  7716. "sebastian/object-reflector": "^1.1.1",
  7717. "sebastian/recursion-context": "^3.0"
  7718. },
  7719. "require-dev": {
  7720. "ext-dom": "*",
  7721. "phpunit/phpunit": "^8.0"
  7722. },
  7723. "suggest": {
  7724. "ext-uopz": "*"
  7725. },
  7726. "type": "library",
  7727. "extra": {
  7728. "branch-alias": {
  7729. "dev-master": "3.0-dev"
  7730. }
  7731. },
  7732. "autoload": {
  7733. "classmap": [
  7734. "src/"
  7735. ]
  7736. },
  7737. "notification-url": "https://packagist.org/downloads/",
  7738. "license": [
  7739. "BSD-3-Clause"
  7740. ],
  7741. "authors": [
  7742. {
  7743. "name": "Sebastian Bergmann",
  7744. "email": "sebastian@phpunit.de"
  7745. }
  7746. ],
  7747. "description": "Snapshotting of global state",
  7748. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  7749. "keywords": [
  7750. "global state"
  7751. ],
  7752. "time": "2019-02-01T05:30:01+00:00"
  7753. },
  7754. {
  7755. "name": "sebastian/object-enumerator",
  7756. "version": "3.0.3",
  7757. "source": {
  7758. "type": "git",
  7759. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  7760. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  7761. },
  7762. "dist": {
  7763. "type": "zip",
  7764. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  7765. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  7766. "shasum": "",
  7767. "mirrors": [
  7768. {
  7769. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7770. "preferred": true
  7771. }
  7772. ]
  7773. },
  7774. "require": {
  7775. "php": "^7.0",
  7776. "sebastian/object-reflector": "^1.1.1",
  7777. "sebastian/recursion-context": "^3.0"
  7778. },
  7779. "require-dev": {
  7780. "phpunit/phpunit": "^6.0"
  7781. },
  7782. "type": "library",
  7783. "extra": {
  7784. "branch-alias": {
  7785. "dev-master": "3.0.x-dev"
  7786. }
  7787. },
  7788. "autoload": {
  7789. "classmap": [
  7790. "src/"
  7791. ]
  7792. },
  7793. "notification-url": "https://packagist.org/downloads/",
  7794. "license": [
  7795. "BSD-3-Clause"
  7796. ],
  7797. "authors": [
  7798. {
  7799. "name": "Sebastian Bergmann",
  7800. "email": "sebastian@phpunit.de"
  7801. }
  7802. ],
  7803. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  7804. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  7805. "time": "2017-08-03T12:35:26+00:00"
  7806. },
  7807. {
  7808. "name": "sebastian/object-reflector",
  7809. "version": "1.1.1",
  7810. "source": {
  7811. "type": "git",
  7812. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  7813. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  7814. },
  7815. "dist": {
  7816. "type": "zip",
  7817. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  7818. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  7819. "shasum": "",
  7820. "mirrors": [
  7821. {
  7822. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7823. "preferred": true
  7824. }
  7825. ]
  7826. },
  7827. "require": {
  7828. "php": "^7.0"
  7829. },
  7830. "require-dev": {
  7831. "phpunit/phpunit": "^6.0"
  7832. },
  7833. "type": "library",
  7834. "extra": {
  7835. "branch-alias": {
  7836. "dev-master": "1.1-dev"
  7837. }
  7838. },
  7839. "autoload": {
  7840. "classmap": [
  7841. "src/"
  7842. ]
  7843. },
  7844. "notification-url": "https://packagist.org/downloads/",
  7845. "license": [
  7846. "BSD-3-Clause"
  7847. ],
  7848. "authors": [
  7849. {
  7850. "name": "Sebastian Bergmann",
  7851. "email": "sebastian@phpunit.de"
  7852. }
  7853. ],
  7854. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  7855. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  7856. "time": "2017-03-29T09:07:27+00:00"
  7857. },
  7858. {
  7859. "name": "sebastian/recursion-context",
  7860. "version": "3.0.0",
  7861. "source": {
  7862. "type": "git",
  7863. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  7864. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  7865. },
  7866. "dist": {
  7867. "type": "zip",
  7868. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  7869. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  7870. "shasum": "",
  7871. "mirrors": [
  7872. {
  7873. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7874. "preferred": true
  7875. }
  7876. ]
  7877. },
  7878. "require": {
  7879. "php": "^7.0"
  7880. },
  7881. "require-dev": {
  7882. "phpunit/phpunit": "^6.0"
  7883. },
  7884. "type": "library",
  7885. "extra": {
  7886. "branch-alias": {
  7887. "dev-master": "3.0.x-dev"
  7888. }
  7889. },
  7890. "autoload": {
  7891. "classmap": [
  7892. "src/"
  7893. ]
  7894. },
  7895. "notification-url": "https://packagist.org/downloads/",
  7896. "license": [
  7897. "BSD-3-Clause"
  7898. ],
  7899. "authors": [
  7900. {
  7901. "name": "Jeff Welch",
  7902. "email": "whatthejeff@gmail.com"
  7903. },
  7904. {
  7905. "name": "Sebastian Bergmann",
  7906. "email": "sebastian@phpunit.de"
  7907. },
  7908. {
  7909. "name": "Adam Harvey",
  7910. "email": "aharvey@php.net"
  7911. }
  7912. ],
  7913. "description": "Provides functionality to recursively process PHP variables",
  7914. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  7915. "time": "2017-03-03T06:23:57+00:00"
  7916. },
  7917. {
  7918. "name": "sebastian/resource-operations",
  7919. "version": "2.0.1",
  7920. "source": {
  7921. "type": "git",
  7922. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  7923. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9"
  7924. },
  7925. "dist": {
  7926. "type": "zip",
  7927. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  7928. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  7929. "shasum": "",
  7930. "mirrors": [
  7931. {
  7932. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7933. "preferred": true
  7934. }
  7935. ]
  7936. },
  7937. "require": {
  7938. "php": "^7.1"
  7939. },
  7940. "type": "library",
  7941. "extra": {
  7942. "branch-alias": {
  7943. "dev-master": "2.0-dev"
  7944. }
  7945. },
  7946. "autoload": {
  7947. "classmap": [
  7948. "src/"
  7949. ]
  7950. },
  7951. "notification-url": "https://packagist.org/downloads/",
  7952. "license": [
  7953. "BSD-3-Clause"
  7954. ],
  7955. "authors": [
  7956. {
  7957. "name": "Sebastian Bergmann",
  7958. "email": "sebastian@phpunit.de"
  7959. }
  7960. ],
  7961. "description": "Provides a list of PHP built-in functions that operate on resources",
  7962. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  7963. "time": "2018-10-04T04:07:39+00:00"
  7964. },
  7965. {
  7966. "name": "sebastian/type",
  7967. "version": "1.1.3",
  7968. "source": {
  7969. "type": "git",
  7970. "url": "https://github.com/sebastianbergmann/type.git",
  7971. "reference": "3aaaa15fa71d27650d62a948be022fe3b48541a3"
  7972. },
  7973. "dist": {
  7974. "type": "zip",
  7975. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/3aaaa15fa71d27650d62a948be022fe3b48541a3",
  7976. "reference": "3aaaa15fa71d27650d62a948be022fe3b48541a3",
  7977. "shasum": "",
  7978. "mirrors": [
  7979. {
  7980. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7981. "preferred": true
  7982. }
  7983. ]
  7984. },
  7985. "require": {
  7986. "php": "^7.2"
  7987. },
  7988. "require-dev": {
  7989. "phpunit/phpunit": "^8.2"
  7990. },
  7991. "type": "library",
  7992. "extra": {
  7993. "branch-alias": {
  7994. "dev-master": "1.1-dev"
  7995. }
  7996. },
  7997. "autoload": {
  7998. "classmap": [
  7999. "src/"
  8000. ]
  8001. },
  8002. "notification-url": "https://packagist.org/downloads/",
  8003. "license": [
  8004. "BSD-3-Clause"
  8005. ],
  8006. "authors": [
  8007. {
  8008. "name": "Sebastian Bergmann",
  8009. "email": "sebastian@phpunit.de",
  8010. "role": "lead"
  8011. }
  8012. ],
  8013. "description": "Collection of value objects that represent the types of the PHP type system",
  8014. "homepage": "https://github.com/sebastianbergmann/type",
  8015. "time": "2019-07-02T08:10:15+00:00"
  8016. },
  8017. {
  8018. "name": "sebastian/version",
  8019. "version": "2.0.1",
  8020. "source": {
  8021. "type": "git",
  8022. "url": "https://github.com/sebastianbergmann/version.git",
  8023. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  8024. },
  8025. "dist": {
  8026. "type": "zip",
  8027. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  8028. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  8029. "shasum": "",
  8030. "mirrors": [
  8031. {
  8032. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8033. "preferred": true
  8034. }
  8035. ]
  8036. },
  8037. "require": {
  8038. "php": ">=5.6"
  8039. },
  8040. "type": "library",
  8041. "extra": {
  8042. "branch-alias": {
  8043. "dev-master": "2.0.x-dev"
  8044. }
  8045. },
  8046. "autoload": {
  8047. "classmap": [
  8048. "src/"
  8049. ]
  8050. },
  8051. "notification-url": "https://packagist.org/downloads/",
  8052. "license": [
  8053. "BSD-3-Clause"
  8054. ],
  8055. "authors": [
  8056. {
  8057. "name": "Sebastian Bergmann",
  8058. "email": "sebastian@phpunit.de",
  8059. "role": "lead"
  8060. }
  8061. ],
  8062. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  8063. "homepage": "https://github.com/sebastianbergmann/version",
  8064. "time": "2016-10-03T07:35:21+00:00"
  8065. },
  8066. {
  8067. "name": "theseer/tokenizer",
  8068. "version": "1.1.3",
  8069. "source": {
  8070. "type": "git",
  8071. "url": "https://github.com/theseer/tokenizer.git",
  8072. "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9"
  8073. },
  8074. "dist": {
  8075. "type": "zip",
  8076. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/11336f6f84e16a720dae9d8e6ed5019efa85a0f9",
  8077. "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9",
  8078. "shasum": "",
  8079. "mirrors": [
  8080. {
  8081. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8082. "preferred": true
  8083. }
  8084. ]
  8085. },
  8086. "require": {
  8087. "ext-dom": "*",
  8088. "ext-tokenizer": "*",
  8089. "ext-xmlwriter": "*",
  8090. "php": "^7.0"
  8091. },
  8092. "type": "library",
  8093. "autoload": {
  8094. "classmap": [
  8095. "src/"
  8096. ]
  8097. },
  8098. "notification-url": "https://packagist.org/downloads/",
  8099. "license": [
  8100. "BSD-3-Clause"
  8101. ],
  8102. "authors": [
  8103. {
  8104. "name": "Arne Blankerts",
  8105. "email": "arne@blankerts.de",
  8106. "role": "Developer"
  8107. }
  8108. ],
  8109. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  8110. "time": "2019-06-13T22:48:21+00:00"
  8111. },
  8112. {
  8113. "name": "webmozart/assert",
  8114. "version": "1.8.0",
  8115. "source": {
  8116. "type": "git",
  8117. "url": "https://github.com/webmozart/assert.git",
  8118. "reference": "ab2cb0b3b559010b75981b1bdce728da3ee90ad6"
  8119. },
  8120. "dist": {
  8121. "type": "zip",
  8122. "url": "https://api.github.com/repos/webmozart/assert/zipball/ab2cb0b3b559010b75981b1bdce728da3ee90ad6",
  8123. "reference": "ab2cb0b3b559010b75981b1bdce728da3ee90ad6",
  8124. "shasum": "",
  8125. "mirrors": [
  8126. {
  8127. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8128. "preferred": true
  8129. }
  8130. ]
  8131. },
  8132. "require": {
  8133. "php": "^5.3.3 || ^7.0",
  8134. "symfony/polyfill-ctype": "^1.8"
  8135. },
  8136. "conflict": {
  8137. "vimeo/psalm": "<3.9.1"
  8138. },
  8139. "require-dev": {
  8140. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  8141. },
  8142. "type": "library",
  8143. "autoload": {
  8144. "psr-4": {
  8145. "Webmozart\\Assert\\": "src/"
  8146. }
  8147. },
  8148. "notification-url": "https://packagist.org/downloads/",
  8149. "license": [
  8150. "MIT"
  8151. ],
  8152. "authors": [
  8153. {
  8154. "name": "Bernhard Schussek",
  8155. "email": "bschussek@gmail.com"
  8156. }
  8157. ],
  8158. "description": "Assertions to validate method input/output with nice error messages.",
  8159. "keywords": [
  8160. "assert",
  8161. "check",
  8162. "validate"
  8163. ],
  8164. "time": "2020-04-18T12:12:48+00:00"
  8165. }
  8166. ],
  8167. "aliases": [],
  8168. "minimum-stability": "dev",
  8169. "stability-flags": [],
  8170. "prefer-stable": true,
  8171. "prefer-lowest": false,
  8172. "platform": {
  8173. "php": "^7.2",
  8174. "ext-curl": "*",
  8175. "ext-dom": "*",
  8176. "ext-json": "*",
  8177. "ext-openssl": "*"
  8178. },
  8179. "platform-dev": [],
  8180. "plugin-api-version": "1.1.0"
  8181. }