composer.lock 296 KB

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