composer.lock 240 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759
  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": "e22b4feb8c41b821065d6aa4fecd20be",
  8. "packages": [
  9. {
  10. "name": "dnoegel/php-xdg-base-dir",
  11. "version": "0.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  15. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/265b8593498b997dc2d31e75b89f053b5cc9621a",
  20. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a",
  21. "shasum": "",
  22. "mirrors": [
  23. {
  24. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  25. "preferred": true
  26. }
  27. ]
  28. },
  29. "require": {
  30. "php": ">=5.3.2"
  31. },
  32. "require-dev": {
  33. "phpunit/phpunit": "@stable"
  34. },
  35. "type": "project",
  36. "autoload": {
  37. "psr-4": {
  38. "XdgBaseDir\\": "src/"
  39. }
  40. },
  41. "notification-url": "https://packagist.org/downloads/",
  42. "license": [
  43. "MIT"
  44. ],
  45. "description": "implementation of xdg base directory specification for php",
  46. "time": "2014-10-24T07:27:01+00:00"
  47. },
  48. {
  49. "name": "doctrine/cache",
  50. "version": "1.10.0",
  51. "source": {
  52. "type": "git",
  53. "url": "https://github.com/doctrine/cache.git",
  54. "reference": "382e7f4db9a12dc6c19431743a2b096041bcdd62"
  55. },
  56. "dist": {
  57. "type": "zip",
  58. "url": "https://api.github.com/repos/doctrine/cache/zipball/382e7f4db9a12dc6c19431743a2b096041bcdd62",
  59. "reference": "382e7f4db9a12dc6c19431743a2b096041bcdd62",
  60. "shasum": "",
  61. "mirrors": [
  62. {
  63. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  64. "preferred": true
  65. }
  66. ]
  67. },
  68. "require": {
  69. "php": "~7.1"
  70. },
  71. "conflict": {
  72. "doctrine/common": ">2.2,<2.4"
  73. },
  74. "require-dev": {
  75. "alcaeus/mongo-php-adapter": "^1.1",
  76. "doctrine/coding-standard": "^6.0",
  77. "mongodb/mongodb": "^1.1",
  78. "phpunit/phpunit": "^7.0",
  79. "predis/predis": "~1.0"
  80. },
  81. "suggest": {
  82. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  83. },
  84. "type": "library",
  85. "extra": {
  86. "branch-alias": {
  87. "dev-master": "1.9.x-dev"
  88. }
  89. },
  90. "autoload": {
  91. "psr-4": {
  92. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  93. }
  94. },
  95. "notification-url": "https://packagist.org/downloads/",
  96. "license": [
  97. "MIT"
  98. ],
  99. "authors": [
  100. {
  101. "name": "Guilherme Blanco",
  102. "email": "guilhermeblanco@gmail.com"
  103. },
  104. {
  105. "name": "Roman Borschel",
  106. "email": "roman@code-factory.org"
  107. },
  108. {
  109. "name": "Benjamin Eberlei",
  110. "email": "kontakt@beberlei.de"
  111. },
  112. {
  113. "name": "Jonathan Wage",
  114. "email": "jonwage@gmail.com"
  115. },
  116. {
  117. "name": "Johannes Schmitt",
  118. "email": "schmittjoh@gmail.com"
  119. }
  120. ],
  121. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  122. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  123. "keywords": [
  124. "abstraction",
  125. "apcu",
  126. "cache",
  127. "caching",
  128. "couchdb",
  129. "memcached",
  130. "php",
  131. "redis",
  132. "xcache"
  133. ],
  134. "time": "2019-11-29T15:36:20+00:00"
  135. },
  136. {
  137. "name": "doctrine/dbal",
  138. "version": "v2.10.0",
  139. "source": {
  140. "type": "git",
  141. "url": "https://github.com/doctrine/dbal.git",
  142. "reference": "0c9a646775ef549eb0a213a4f9bd4381d9b4d934"
  143. },
  144. "dist": {
  145. "type": "zip",
  146. "url": "https://api.github.com/repos/doctrine/dbal/zipball/0c9a646775ef549eb0a213a4f9bd4381d9b4d934",
  147. "reference": "0c9a646775ef549eb0a213a4f9bd4381d9b4d934",
  148. "shasum": "",
  149. "mirrors": [
  150. {
  151. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  152. "preferred": true
  153. }
  154. ]
  155. },
  156. "require": {
  157. "doctrine/cache": "^1.0",
  158. "doctrine/event-manager": "^1.0",
  159. "ext-pdo": "*",
  160. "php": "^7.2"
  161. },
  162. "require-dev": {
  163. "doctrine/coding-standard": "^6.0",
  164. "jetbrains/phpstorm-stubs": "^2019.1",
  165. "phpstan/phpstan": "^0.11.3",
  166. "phpunit/phpunit": "^8.4.1",
  167. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0"
  168. },
  169. "suggest": {
  170. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  171. },
  172. "bin": [
  173. "bin/doctrine-dbal"
  174. ],
  175. "type": "library",
  176. "extra": {
  177. "branch-alias": {
  178. "dev-master": "2.10.x-dev",
  179. "dev-develop": "3.0.x-dev"
  180. }
  181. },
  182. "autoload": {
  183. "psr-4": {
  184. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  185. }
  186. },
  187. "notification-url": "https://packagist.org/downloads/",
  188. "license": [
  189. "MIT"
  190. ],
  191. "authors": [
  192. {
  193. "name": "Guilherme Blanco",
  194. "email": "guilhermeblanco@gmail.com"
  195. },
  196. {
  197. "name": "Roman Borschel",
  198. "email": "roman@code-factory.org"
  199. },
  200. {
  201. "name": "Benjamin Eberlei",
  202. "email": "kontakt@beberlei.de"
  203. },
  204. {
  205. "name": "Jonathan Wage",
  206. "email": "jonwage@gmail.com"
  207. }
  208. ],
  209. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  210. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  211. "keywords": [
  212. "abstraction",
  213. "database",
  214. "db2",
  215. "dbal",
  216. "mariadb",
  217. "mssql",
  218. "mysql",
  219. "oci8",
  220. "oracle",
  221. "pdo",
  222. "pgsql",
  223. "postgresql",
  224. "queryobject",
  225. "sasql",
  226. "sql",
  227. "sqlanywhere",
  228. "sqlite",
  229. "sqlserver",
  230. "sqlsrv"
  231. ],
  232. "time": "2019-11-03T16:50:43+00:00"
  233. },
  234. {
  235. "name": "doctrine/event-manager",
  236. "version": "1.1.0",
  237. "source": {
  238. "type": "git",
  239. "url": "https://github.com/doctrine/event-manager.git",
  240. "reference": "629572819973f13486371cb611386eb17851e85c"
  241. },
  242. "dist": {
  243. "type": "zip",
  244. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/629572819973f13486371cb611386eb17851e85c",
  245. "reference": "629572819973f13486371cb611386eb17851e85c",
  246. "shasum": "",
  247. "mirrors": [
  248. {
  249. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  250. "preferred": true
  251. }
  252. ]
  253. },
  254. "require": {
  255. "php": "^7.1"
  256. },
  257. "conflict": {
  258. "doctrine/common": "<2.9@dev"
  259. },
  260. "require-dev": {
  261. "doctrine/coding-standard": "^6.0",
  262. "phpunit/phpunit": "^7.0"
  263. },
  264. "type": "library",
  265. "extra": {
  266. "branch-alias": {
  267. "dev-master": "1.0.x-dev"
  268. }
  269. },
  270. "autoload": {
  271. "psr-4": {
  272. "Doctrine\\Common\\": "lib/Doctrine/Common"
  273. }
  274. },
  275. "notification-url": "https://packagist.org/downloads/",
  276. "license": [
  277. "MIT"
  278. ],
  279. "authors": [
  280. {
  281. "name": "Guilherme Blanco",
  282. "email": "guilhermeblanco@gmail.com"
  283. },
  284. {
  285. "name": "Roman Borschel",
  286. "email": "roman@code-factory.org"
  287. },
  288. {
  289. "name": "Benjamin Eberlei",
  290. "email": "kontakt@beberlei.de"
  291. },
  292. {
  293. "name": "Jonathan Wage",
  294. "email": "jonwage@gmail.com"
  295. },
  296. {
  297. "name": "Johannes Schmitt",
  298. "email": "schmittjoh@gmail.com"
  299. },
  300. {
  301. "name": "Marco Pivetta",
  302. "email": "ocramius@gmail.com"
  303. }
  304. ],
  305. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  306. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  307. "keywords": [
  308. "event",
  309. "event dispatcher",
  310. "event manager",
  311. "event system",
  312. "events"
  313. ],
  314. "time": "2019-11-10T09:48:07+00:00"
  315. },
  316. {
  317. "name": "doctrine/inflector",
  318. "version": "v1.3.0",
  319. "source": {
  320. "type": "git",
  321. "url": "https://github.com/doctrine/inflector.git",
  322. "reference": "5527a48b7313d15261292c149e55e26eae771b0a"
  323. },
  324. "dist": {
  325. "type": "zip",
  326. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5527a48b7313d15261292c149e55e26eae771b0a",
  327. "reference": "5527a48b7313d15261292c149e55e26eae771b0a",
  328. "shasum": "",
  329. "mirrors": [
  330. {
  331. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  332. "preferred": true
  333. }
  334. ]
  335. },
  336. "require": {
  337. "php": "^7.1"
  338. },
  339. "require-dev": {
  340. "phpunit/phpunit": "^6.2"
  341. },
  342. "type": "library",
  343. "extra": {
  344. "branch-alias": {
  345. "dev-master": "1.3.x-dev"
  346. }
  347. },
  348. "autoload": {
  349. "psr-4": {
  350. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  351. }
  352. },
  353. "notification-url": "https://packagist.org/downloads/",
  354. "license": [
  355. "MIT"
  356. ],
  357. "authors": [
  358. {
  359. "name": "Roman Borschel",
  360. "email": "roman@code-factory.org"
  361. },
  362. {
  363. "name": "Benjamin Eberlei",
  364. "email": "kontakt@beberlei.de"
  365. },
  366. {
  367. "name": "Guilherme Blanco",
  368. "email": "guilhermeblanco@gmail.com"
  369. },
  370. {
  371. "name": "Jonathan Wage",
  372. "email": "jonwage@gmail.com"
  373. },
  374. {
  375. "name": "Johannes Schmitt",
  376. "email": "schmittjoh@gmail.com"
  377. }
  378. ],
  379. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  380. "homepage": "http://www.doctrine-project.org",
  381. "keywords": [
  382. "inflection",
  383. "pluralize",
  384. "singularize",
  385. "string"
  386. ],
  387. "time": "2018-01-09T20:05:19+00:00"
  388. },
  389. {
  390. "name": "doctrine/lexer",
  391. "version": "1.1.0",
  392. "source": {
  393. "type": "git",
  394. "url": "https://github.com/doctrine/lexer.git",
  395. "reference": "e17f069ede36f7534b95adec71910ed1b49c74ea"
  396. },
  397. "dist": {
  398. "type": "zip",
  399. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e17f069ede36f7534b95adec71910ed1b49c74ea",
  400. "reference": "e17f069ede36f7534b95adec71910ed1b49c74ea",
  401. "shasum": "",
  402. "mirrors": [
  403. {
  404. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  405. "preferred": true
  406. }
  407. ]
  408. },
  409. "require": {
  410. "php": "^7.2"
  411. },
  412. "require-dev": {
  413. "doctrine/coding-standard": "^6.0",
  414. "phpstan/phpstan": "^0.11.8",
  415. "phpunit/phpunit": "^8.2"
  416. },
  417. "type": "library",
  418. "extra": {
  419. "branch-alias": {
  420. "dev-master": "1.1.x-dev"
  421. }
  422. },
  423. "autoload": {
  424. "psr-4": {
  425. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  426. }
  427. },
  428. "notification-url": "https://packagist.org/downloads/",
  429. "license": [
  430. "MIT"
  431. ],
  432. "authors": [
  433. {
  434. "name": "Guilherme Blanco",
  435. "email": "guilhermeblanco@gmail.com"
  436. },
  437. {
  438. "name": "Roman Borschel",
  439. "email": "roman@code-factory.org"
  440. },
  441. {
  442. "name": "Johannes Schmitt",
  443. "email": "schmittjoh@gmail.com"
  444. }
  445. ],
  446. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  447. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  448. "keywords": [
  449. "annotations",
  450. "docblock",
  451. "lexer",
  452. "parser",
  453. "php"
  454. ],
  455. "time": "2019-07-30T19:33:28+00:00"
  456. },
  457. {
  458. "name": "dragonmantank/cron-expression",
  459. "version": "v2.3.0",
  460. "source": {
  461. "type": "git",
  462. "url": "https://github.com/dragonmantank/cron-expression.git",
  463. "reference": "72b6fbf76adb3cf5bc0db68559b33d41219aba27"
  464. },
  465. "dist": {
  466. "type": "zip",
  467. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/72b6fbf76adb3cf5bc0db68559b33d41219aba27",
  468. "reference": "72b6fbf76adb3cf5bc0db68559b33d41219aba27",
  469. "shasum": "",
  470. "mirrors": [
  471. {
  472. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  473. "preferred": true
  474. }
  475. ]
  476. },
  477. "require": {
  478. "php": "^7.0"
  479. },
  480. "require-dev": {
  481. "phpunit/phpunit": "^6.4|^7.0"
  482. },
  483. "type": "library",
  484. "extra": {
  485. "branch-alias": {
  486. "dev-master": "2.3-dev"
  487. }
  488. },
  489. "autoload": {
  490. "psr-4": {
  491. "Cron\\": "src/Cron/"
  492. }
  493. },
  494. "notification-url": "https://packagist.org/downloads/",
  495. "license": [
  496. "MIT"
  497. ],
  498. "authors": [
  499. {
  500. "name": "Michael Dowling",
  501. "email": "mtdowling@gmail.com",
  502. "homepage": "https://github.com/mtdowling"
  503. },
  504. {
  505. "name": "Chris Tankersley",
  506. "email": "chris@ctankersley.com",
  507. "homepage": "https://github.com/dragonmantank"
  508. }
  509. ],
  510. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  511. "keywords": [
  512. "cron",
  513. "schedule"
  514. ],
  515. "time": "2019-03-31T00:38:28+00:00"
  516. },
  517. {
  518. "name": "egulias/email-validator",
  519. "version": "2.1.11",
  520. "source": {
  521. "type": "git",
  522. "url": "https://github.com/egulias/EmailValidator.git",
  523. "reference": "92dd169c32f6f55ba570c309d83f5209cefb5e23"
  524. },
  525. "dist": {
  526. "type": "zip",
  527. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/92dd169c32f6f55ba570c309d83f5209cefb5e23",
  528. "reference": "92dd169c32f6f55ba570c309d83f5209cefb5e23",
  529. "shasum": "",
  530. "mirrors": [
  531. {
  532. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  533. "preferred": true
  534. }
  535. ]
  536. },
  537. "require": {
  538. "doctrine/lexer": "^1.0.1",
  539. "php": ">= 5.5"
  540. },
  541. "require-dev": {
  542. "dominicsayers/isemail": "dev-master",
  543. "phpunit/phpunit": "^4.8.35||^5.7||^6.0",
  544. "satooshi/php-coveralls": "^1.0.1",
  545. "symfony/phpunit-bridge": "^4.4@dev"
  546. },
  547. "suggest": {
  548. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  549. },
  550. "type": "library",
  551. "extra": {
  552. "branch-alias": {
  553. "dev-master": "2.1.x-dev"
  554. }
  555. },
  556. "autoload": {
  557. "psr-4": {
  558. "Egulias\\EmailValidator\\": "EmailValidator"
  559. }
  560. },
  561. "notification-url": "https://packagist.org/downloads/",
  562. "license": [
  563. "MIT"
  564. ],
  565. "authors": [
  566. {
  567. "name": "Eduardo Gulias Davis"
  568. }
  569. ],
  570. "description": "A library for validating emails against several RFCs",
  571. "homepage": "https://github.com/egulias/EmailValidator",
  572. "keywords": [
  573. "email",
  574. "emailvalidation",
  575. "emailvalidator",
  576. "validation",
  577. "validator"
  578. ],
  579. "time": "2019-08-13T17:33:27+00:00"
  580. },
  581. {
  582. "name": "erusev/parsedown",
  583. "version": "1.7.3",
  584. "source": {
  585. "type": "git",
  586. "url": "https://github.com/erusev/parsedown.git",
  587. "reference": "6d893938171a817f4e9bc9e86f2da1e370b7bcd7"
  588. },
  589. "dist": {
  590. "type": "zip",
  591. "url": "https://api.github.com/repos/erusev/parsedown/zipball/6d893938171a817f4e9bc9e86f2da1e370b7bcd7",
  592. "reference": "6d893938171a817f4e9bc9e86f2da1e370b7bcd7",
  593. "shasum": "",
  594. "mirrors": [
  595. {
  596. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  597. "preferred": true
  598. }
  599. ]
  600. },
  601. "require": {
  602. "ext-mbstring": "*",
  603. "php": ">=5.3.0"
  604. },
  605. "require-dev": {
  606. "phpunit/phpunit": "^4.8.35"
  607. },
  608. "type": "library",
  609. "autoload": {
  610. "psr-0": {
  611. "Parsedown": ""
  612. }
  613. },
  614. "notification-url": "https://packagist.org/downloads/",
  615. "license": [
  616. "MIT"
  617. ],
  618. "authors": [
  619. {
  620. "name": "Emanuil Rusev",
  621. "email": "hello@erusev.com",
  622. "homepage": "http://erusev.com"
  623. }
  624. ],
  625. "description": "Parser for Markdown.",
  626. "homepage": "http://parsedown.org",
  627. "keywords": [
  628. "markdown",
  629. "parser"
  630. ],
  631. "time": "2019-03-17T18:48:37+00:00"
  632. },
  633. {
  634. "name": "fideloper/proxy",
  635. "version": "4.2.1",
  636. "source": {
  637. "type": "git",
  638. "url": "https://github.com/fideloper/TrustedProxy.git",
  639. "reference": "03085e58ec7bee24773fa5a8850751a6e61a7e8a"
  640. },
  641. "dist": {
  642. "type": "zip",
  643. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/03085e58ec7bee24773fa5a8850751a6e61a7e8a",
  644. "reference": "03085e58ec7bee24773fa5a8850751a6e61a7e8a",
  645. "shasum": "",
  646. "mirrors": [
  647. {
  648. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  649. "preferred": true
  650. }
  651. ]
  652. },
  653. "require": {
  654. "illuminate/contracts": "^5.0|^6.0|^7.0",
  655. "php": ">=5.4.0"
  656. },
  657. "require-dev": {
  658. "illuminate/http": "^5.0|^6.0|^7.0",
  659. "mockery/mockery": "^1.0",
  660. "phpunit/phpunit": "^6.0"
  661. },
  662. "type": "library",
  663. "extra": {
  664. "laravel": {
  665. "providers": [
  666. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  667. ]
  668. }
  669. },
  670. "autoload": {
  671. "psr-4": {
  672. "Fideloper\\Proxy\\": "src/"
  673. }
  674. },
  675. "notification-url": "https://packagist.org/downloads/",
  676. "license": [
  677. "MIT"
  678. ],
  679. "authors": [
  680. {
  681. "name": "Chris Fidao",
  682. "email": "fideloper@gmail.com"
  683. }
  684. ],
  685. "description": "Set trusted proxies for Laravel",
  686. "keywords": [
  687. "load balancing",
  688. "proxy",
  689. "trusted proxy"
  690. ],
  691. "time": "2019-09-03T16:45:42+00:00"
  692. },
  693. {
  694. "name": "guzzlehttp/guzzle",
  695. "version": "6.3.3",
  696. "source": {
  697. "type": "git",
  698. "url": "https://github.com/guzzle/guzzle.git",
  699. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba"
  700. },
  701. "dist": {
  702. "type": "zip",
  703. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  704. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  705. "shasum": "",
  706. "mirrors": [
  707. {
  708. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  709. "preferred": true
  710. }
  711. ]
  712. },
  713. "require": {
  714. "guzzlehttp/promises": "^1.0",
  715. "guzzlehttp/psr7": "^1.4",
  716. "php": ">=5.5"
  717. },
  718. "require-dev": {
  719. "ext-curl": "*",
  720. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  721. "psr/log": "^1.0"
  722. },
  723. "suggest": {
  724. "psr/log": "Required for using the Log middleware"
  725. },
  726. "type": "library",
  727. "extra": {
  728. "branch-alias": {
  729. "dev-master": "6.3-dev"
  730. }
  731. },
  732. "autoload": {
  733. "files": [
  734. "src/functions_include.php"
  735. ],
  736. "psr-4": {
  737. "GuzzleHttp\\": "src/"
  738. }
  739. },
  740. "notification-url": "https://packagist.org/downloads/",
  741. "license": [
  742. "MIT"
  743. ],
  744. "authors": [
  745. {
  746. "name": "Michael Dowling",
  747. "email": "mtdowling@gmail.com",
  748. "homepage": "https://github.com/mtdowling"
  749. }
  750. ],
  751. "description": "Guzzle is a PHP HTTP client library",
  752. "homepage": "http://guzzlephp.org/",
  753. "keywords": [
  754. "client",
  755. "curl",
  756. "framework",
  757. "http",
  758. "http client",
  759. "rest",
  760. "web service"
  761. ],
  762. "time": "2018-04-22T15:46:56+00:00"
  763. },
  764. {
  765. "name": "guzzlehttp/promises",
  766. "version": "v1.3.1",
  767. "source": {
  768. "type": "git",
  769. "url": "https://github.com/guzzle/promises.git",
  770. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  771. },
  772. "dist": {
  773. "type": "zip",
  774. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  775. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  776. "shasum": "",
  777. "mirrors": [
  778. {
  779. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  780. "preferred": true
  781. }
  782. ]
  783. },
  784. "require": {
  785. "php": ">=5.5.0"
  786. },
  787. "require-dev": {
  788. "phpunit/phpunit": "^4.0"
  789. },
  790. "type": "library",
  791. "extra": {
  792. "branch-alias": {
  793. "dev-master": "1.4-dev"
  794. }
  795. },
  796. "autoload": {
  797. "psr-4": {
  798. "GuzzleHttp\\Promise\\": "src/"
  799. },
  800. "files": [
  801. "src/functions_include.php"
  802. ]
  803. },
  804. "notification-url": "https://packagist.org/downloads/",
  805. "license": [
  806. "MIT"
  807. ],
  808. "authors": [
  809. {
  810. "name": "Michael Dowling",
  811. "email": "mtdowling@gmail.com",
  812. "homepage": "https://github.com/mtdowling"
  813. }
  814. ],
  815. "description": "Guzzle promises library",
  816. "keywords": [
  817. "promise"
  818. ],
  819. "time": "2016-12-20T10:07:11+00:00"
  820. },
  821. {
  822. "name": "guzzlehttp/psr7",
  823. "version": "1.6.1",
  824. "source": {
  825. "type": "git",
  826. "url": "https://github.com/guzzle/psr7.git",
  827. "reference": "239400de7a173fe9901b9ac7c06497751f00727a"
  828. },
  829. "dist": {
  830. "type": "zip",
  831. "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a",
  832. "reference": "239400de7a173fe9901b9ac7c06497751f00727a",
  833. "shasum": "",
  834. "mirrors": [
  835. {
  836. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  837. "preferred": true
  838. }
  839. ]
  840. },
  841. "require": {
  842. "php": ">=5.4.0",
  843. "psr/http-message": "~1.0",
  844. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  845. },
  846. "provide": {
  847. "psr/http-message-implementation": "1.0"
  848. },
  849. "require-dev": {
  850. "ext-zlib": "*",
  851. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  852. },
  853. "suggest": {
  854. "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses"
  855. },
  856. "type": "library",
  857. "extra": {
  858. "branch-alias": {
  859. "dev-master": "1.6-dev"
  860. }
  861. },
  862. "autoload": {
  863. "psr-4": {
  864. "GuzzleHttp\\Psr7\\": "src/"
  865. },
  866. "files": [
  867. "src/functions_include.php"
  868. ]
  869. },
  870. "notification-url": "https://packagist.org/downloads/",
  871. "license": [
  872. "MIT"
  873. ],
  874. "authors": [
  875. {
  876. "name": "Michael Dowling",
  877. "email": "mtdowling@gmail.com",
  878. "homepage": "https://github.com/mtdowling"
  879. },
  880. {
  881. "name": "Tobias Schultze",
  882. "homepage": "https://github.com/Tobion"
  883. }
  884. ],
  885. "description": "PSR-7 message implementation that also provides common utility methods",
  886. "keywords": [
  887. "http",
  888. "message",
  889. "psr-7",
  890. "request",
  891. "response",
  892. "stream",
  893. "uri",
  894. "url"
  895. ],
  896. "time": "2019-07-01T23:21:34+00:00"
  897. },
  898. {
  899. "name": "jakub-onderka/php-console-color",
  900. "version": "v0.2",
  901. "source": {
  902. "type": "git",
  903. "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
  904. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191"
  905. },
  906. "dist": {
  907. "type": "zip",
  908. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/d5deaecff52a0d61ccb613bb3804088da0307191",
  909. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191",
  910. "shasum": "",
  911. "mirrors": [
  912. {
  913. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  914. "preferred": true
  915. }
  916. ]
  917. },
  918. "require": {
  919. "php": ">=5.4.0"
  920. },
  921. "require-dev": {
  922. "jakub-onderka/php-code-style": "1.0",
  923. "jakub-onderka/php-parallel-lint": "1.0",
  924. "jakub-onderka/php-var-dump-check": "0.*",
  925. "phpunit/phpunit": "~4.3",
  926. "squizlabs/php_codesniffer": "1.*"
  927. },
  928. "type": "library",
  929. "autoload": {
  930. "psr-4": {
  931. "JakubOnderka\\PhpConsoleColor\\": "src/"
  932. }
  933. },
  934. "notification-url": "https://packagist.org/downloads/",
  935. "license": [
  936. "BSD-2-Clause"
  937. ],
  938. "authors": [
  939. {
  940. "name": "Jakub Onderka",
  941. "email": "jakub.onderka@gmail.com"
  942. }
  943. ],
  944. "abandoned": "php-parallel-lint/php-console-color",
  945. "time": "2018-09-29T17:23:10+00:00"
  946. },
  947. {
  948. "name": "jakub-onderka/php-console-highlighter",
  949. "version": "v0.4",
  950. "source": {
  951. "type": "git",
  952. "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
  953. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547"
  954. },
  955. "dist": {
  956. "type": "zip",
  957. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/9f7a229a69d52506914b4bc61bfdb199d90c5547",
  958. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547",
  959. "shasum": "",
  960. "mirrors": [
  961. {
  962. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  963. "preferred": true
  964. }
  965. ]
  966. },
  967. "require": {
  968. "ext-tokenizer": "*",
  969. "jakub-onderka/php-console-color": "~0.2",
  970. "php": ">=5.4.0"
  971. },
  972. "require-dev": {
  973. "jakub-onderka/php-code-style": "~1.0",
  974. "jakub-onderka/php-parallel-lint": "~1.0",
  975. "jakub-onderka/php-var-dump-check": "~0.1",
  976. "phpunit/phpunit": "~4.0",
  977. "squizlabs/php_codesniffer": "~1.5"
  978. },
  979. "type": "library",
  980. "autoload": {
  981. "psr-4": {
  982. "JakubOnderka\\PhpConsoleHighlighter\\": "src/"
  983. }
  984. },
  985. "notification-url": "https://packagist.org/downloads/",
  986. "license": [
  987. "MIT"
  988. ],
  989. "authors": [
  990. {
  991. "name": "Jakub Onderka",
  992. "email": "acci@acci.cz",
  993. "homepage": "http://www.acci.cz/"
  994. }
  995. ],
  996. "description": "Highlight PHP code in terminal",
  997. "abandoned": "php-parallel-lint/php-console-highlighter",
  998. "time": "2018-09-29T18:48:56+00:00"
  999. },
  1000. {
  1001. "name": "kitetail/zttp",
  1002. "version": "v0.6.0",
  1003. "source": {
  1004. "type": "git",
  1005. "url": "https://github.com/kitetail/zttp.git",
  1006. "reference": "92662d7f9025b4c9a0b8a585e31810461fcca435"
  1007. },
  1008. "dist": {
  1009. "type": "zip",
  1010. "url": "https://api.github.com/repos/kitetail/zttp/zipball/92662d7f9025b4c9a0b8a585e31810461fcca435",
  1011. "reference": "92662d7f9025b4c9a0b8a585e31810461fcca435",
  1012. "shasum": "",
  1013. "mirrors": [
  1014. {
  1015. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1016. "preferred": true
  1017. }
  1018. ]
  1019. },
  1020. "require": {
  1021. "guzzlehttp/guzzle": "^6.0",
  1022. "php": ">=7.0",
  1023. "tightenco/collect": "^5.4"
  1024. },
  1025. "require-dev": {
  1026. "laravel/lumen-framework": "5.5.*",
  1027. "phpunit/phpunit": "^6.0"
  1028. },
  1029. "type": "library",
  1030. "autoload": {
  1031. "files": [
  1032. "src/Zttp.php"
  1033. ]
  1034. },
  1035. "notification-url": "https://packagist.org/downloads/",
  1036. "license": [
  1037. "MIT"
  1038. ],
  1039. "authors": [
  1040. {
  1041. "name": "Adam Wathan",
  1042. "email": "adam.wathan@gmail.com"
  1043. }
  1044. ],
  1045. "description": "A developer-experience focused HTTP client, optimized for most common use cases.",
  1046. "keywords": [
  1047. "Guzzle",
  1048. "http"
  1049. ],
  1050. "time": "2019-06-10T12:18:52+00:00"
  1051. },
  1052. {
  1053. "name": "laravel/framework",
  1054. "version": "v5.8.35",
  1055. "source": {
  1056. "type": "git",
  1057. "url": "https://github.com/laravel/framework.git",
  1058. "reference": "5a9e4d241a8b815e16c9d2151e908992c38db197"
  1059. },
  1060. "dist": {
  1061. "type": "zip",
  1062. "url": "https://api.github.com/repos/laravel/framework/zipball/5a9e4d241a8b815e16c9d2151e908992c38db197",
  1063. "reference": "5a9e4d241a8b815e16c9d2151e908992c38db197",
  1064. "shasum": "",
  1065. "mirrors": [
  1066. {
  1067. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1068. "preferred": true
  1069. }
  1070. ]
  1071. },
  1072. "require": {
  1073. "doctrine/inflector": "^1.1",
  1074. "dragonmantank/cron-expression": "^2.0",
  1075. "egulias/email-validator": "^2.0",
  1076. "erusev/parsedown": "^1.7",
  1077. "ext-json": "*",
  1078. "ext-mbstring": "*",
  1079. "ext-openssl": "*",
  1080. "league/flysystem": "^1.0.8",
  1081. "monolog/monolog": "^1.12",
  1082. "nesbot/carbon": "^1.26.3 || ^2.0",
  1083. "opis/closure": "^3.1",
  1084. "php": "^7.1.3",
  1085. "psr/container": "^1.0",
  1086. "psr/simple-cache": "^1.0",
  1087. "ramsey/uuid": "^3.7",
  1088. "swiftmailer/swiftmailer": "^6.0",
  1089. "symfony/console": "^4.2",
  1090. "symfony/debug": "^4.2",
  1091. "symfony/finder": "^4.2",
  1092. "symfony/http-foundation": "^4.2",
  1093. "symfony/http-kernel": "^4.2",
  1094. "symfony/process": "^4.2",
  1095. "symfony/routing": "^4.2",
  1096. "symfony/var-dumper": "^4.2",
  1097. "tijsverkoyen/css-to-inline-styles": "^2.2.1",
  1098. "vlucas/phpdotenv": "^3.3"
  1099. },
  1100. "conflict": {
  1101. "tightenco/collect": "<5.5.33"
  1102. },
  1103. "replace": {
  1104. "illuminate/auth": "self.version",
  1105. "illuminate/broadcasting": "self.version",
  1106. "illuminate/bus": "self.version",
  1107. "illuminate/cache": "self.version",
  1108. "illuminate/config": "self.version",
  1109. "illuminate/console": "self.version",
  1110. "illuminate/container": "self.version",
  1111. "illuminate/contracts": "self.version",
  1112. "illuminate/cookie": "self.version",
  1113. "illuminate/database": "self.version",
  1114. "illuminate/encryption": "self.version",
  1115. "illuminate/events": "self.version",
  1116. "illuminate/filesystem": "self.version",
  1117. "illuminate/hashing": "self.version",
  1118. "illuminate/http": "self.version",
  1119. "illuminate/log": "self.version",
  1120. "illuminate/mail": "self.version",
  1121. "illuminate/notifications": "self.version",
  1122. "illuminate/pagination": "self.version",
  1123. "illuminate/pipeline": "self.version",
  1124. "illuminate/queue": "self.version",
  1125. "illuminate/redis": "self.version",
  1126. "illuminate/routing": "self.version",
  1127. "illuminate/session": "self.version",
  1128. "illuminate/support": "self.version",
  1129. "illuminate/translation": "self.version",
  1130. "illuminate/validation": "self.version",
  1131. "illuminate/view": "self.version"
  1132. },
  1133. "require-dev": {
  1134. "aws/aws-sdk-php": "^3.0",
  1135. "doctrine/dbal": "^2.6",
  1136. "filp/whoops": "^2.1.4",
  1137. "guzzlehttp/guzzle": "^6.3",
  1138. "league/flysystem-cached-adapter": "^1.0",
  1139. "mockery/mockery": "^1.0",
  1140. "moontoast/math": "^1.1",
  1141. "orchestra/testbench-core": "3.8.*",
  1142. "pda/pheanstalk": "^4.0",
  1143. "phpunit/phpunit": "^7.5|^8.0",
  1144. "predis/predis": "^1.1.1",
  1145. "symfony/css-selector": "^4.2",
  1146. "symfony/dom-crawler": "^4.2",
  1147. "true/punycode": "^2.1"
  1148. },
  1149. "suggest": {
  1150. "aws/aws-sdk-php": "Required to use the SQS queue driver and SES mail driver (^3.0).",
  1151. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
  1152. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  1153. "ext-pcntl": "Required to use all features of the queue worker.",
  1154. "ext-posix": "Required to use all features of the queue worker.",
  1155. "filp/whoops": "Required for friendly error pages in development (^2.1.4).",
  1156. "fzaninotto/faker": "Required to use the eloquent factory builder (^1.4).",
  1157. "guzzlehttp/guzzle": "Required to use the Mailgun and Mandrill mail drivers and the ping methods on schedules (^6.0).",
  1158. "laravel/tinker": "Required to use the tinker console command (^1.0).",
  1159. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  1160. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  1161. "league/flysystem-rackspace": "Required to use the Flysystem Rackspace driver (^1.0).",
  1162. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  1163. "moontoast/math": "Required to use ordered UUIDs (^1.1).",
  1164. "nexmo/client": "Required to use the Nexmo transport (^1.0).",
  1165. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  1166. "predis/predis": "Required to use the redis cache and queue drivers (^1.0).",
  1167. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^3.0).",
  1168. "symfony/css-selector": "Required to use some of the crawler integration testing tools (^4.2).",
  1169. "symfony/dom-crawler": "Required to use most of the crawler integration testing tools (^4.2).",
  1170. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^1.1).",
  1171. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  1172. },
  1173. "type": "library",
  1174. "extra": {
  1175. "branch-alias": {
  1176. "dev-master": "5.8-dev"
  1177. }
  1178. },
  1179. "autoload": {
  1180. "files": [
  1181. "src/Illuminate/Foundation/helpers.php",
  1182. "src/Illuminate/Support/helpers.php"
  1183. ],
  1184. "psr-4": {
  1185. "Illuminate\\": "src/Illuminate/"
  1186. }
  1187. },
  1188. "notification-url": "https://packagist.org/downloads/",
  1189. "license": [
  1190. "MIT"
  1191. ],
  1192. "authors": [
  1193. {
  1194. "name": "Taylor Otwell",
  1195. "email": "taylor@laravel.com"
  1196. }
  1197. ],
  1198. "description": "The Laravel Framework.",
  1199. "homepage": "https://laravel.com",
  1200. "keywords": [
  1201. "framework",
  1202. "laravel"
  1203. ],
  1204. "time": "2019-09-03T16:44:30+00:00"
  1205. },
  1206. {
  1207. "name": "laravel/tinker",
  1208. "version": "v1.0.10",
  1209. "source": {
  1210. "type": "git",
  1211. "url": "https://github.com/laravel/tinker.git",
  1212. "reference": "ad571aacbac1539c30d480908f9d0c9614eaf1a7"
  1213. },
  1214. "dist": {
  1215. "type": "zip",
  1216. "url": "https://api.github.com/repos/laravel/tinker/zipball/ad571aacbac1539c30d480908f9d0c9614eaf1a7",
  1217. "reference": "ad571aacbac1539c30d480908f9d0c9614eaf1a7",
  1218. "shasum": "",
  1219. "mirrors": [
  1220. {
  1221. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1222. "preferred": true
  1223. }
  1224. ]
  1225. },
  1226. "require": {
  1227. "illuminate/console": "~5.1|^6.0",
  1228. "illuminate/contracts": "~5.1|^6.0",
  1229. "illuminate/support": "~5.1|^6.0",
  1230. "php": ">=5.5.9",
  1231. "psy/psysh": "0.7.*|0.8.*|0.9.*",
  1232. "symfony/var-dumper": "~3.0|~4.0"
  1233. },
  1234. "require-dev": {
  1235. "phpunit/phpunit": "~4.0|~5.0"
  1236. },
  1237. "suggest": {
  1238. "illuminate/database": "The Illuminate Database package (~5.1)."
  1239. },
  1240. "type": "library",
  1241. "extra": {
  1242. "branch-alias": {
  1243. "dev-master": "1.0-dev"
  1244. },
  1245. "laravel": {
  1246. "providers": [
  1247. "Laravel\\Tinker\\TinkerServiceProvider"
  1248. ]
  1249. }
  1250. },
  1251. "autoload": {
  1252. "psr-4": {
  1253. "Laravel\\Tinker\\": "src/"
  1254. }
  1255. },
  1256. "notification-url": "https://packagist.org/downloads/",
  1257. "license": [
  1258. "MIT"
  1259. ],
  1260. "authors": [
  1261. {
  1262. "name": "Taylor Otwell",
  1263. "email": "taylor@laravel.com"
  1264. }
  1265. ],
  1266. "description": "Powerful REPL for the Laravel framework.",
  1267. "keywords": [
  1268. "REPL",
  1269. "Tinker",
  1270. "laravel",
  1271. "psysh"
  1272. ],
  1273. "time": "2019-08-07T15:10:45+00:00"
  1274. },
  1275. {
  1276. "name": "league/flysystem",
  1277. "version": "1.0.57",
  1278. "source": {
  1279. "type": "git",
  1280. "url": "https://github.com/thephpleague/flysystem.git",
  1281. "reference": "0e9db7f0b96b9f12dcf6f65bc34b72b1a30ea55a"
  1282. },
  1283. "dist": {
  1284. "type": "zip",
  1285. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/0e9db7f0b96b9f12dcf6f65bc34b72b1a30ea55a",
  1286. "reference": "0e9db7f0b96b9f12dcf6f65bc34b72b1a30ea55a",
  1287. "shasum": "",
  1288. "mirrors": [
  1289. {
  1290. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1291. "preferred": true
  1292. }
  1293. ]
  1294. },
  1295. "require": {
  1296. "ext-fileinfo": "*",
  1297. "php": ">=5.5.9"
  1298. },
  1299. "conflict": {
  1300. "league/flysystem-sftp": "<1.0.6"
  1301. },
  1302. "require-dev": {
  1303. "phpspec/phpspec": "^3.4",
  1304. "phpunit/phpunit": "^5.7.10"
  1305. },
  1306. "suggest": {
  1307. "ext-fileinfo": "Required for MimeType",
  1308. "ext-ftp": "Allows you to use FTP server storage",
  1309. "ext-openssl": "Allows you to use FTPS server storage",
  1310. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  1311. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  1312. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  1313. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  1314. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  1315. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  1316. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  1317. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  1318. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  1319. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  1320. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  1321. },
  1322. "type": "library",
  1323. "extra": {
  1324. "branch-alias": {
  1325. "dev-master": "1.1-dev"
  1326. }
  1327. },
  1328. "autoload": {
  1329. "psr-4": {
  1330. "League\\Flysystem\\": "src/"
  1331. }
  1332. },
  1333. "notification-url": "https://packagist.org/downloads/",
  1334. "license": [
  1335. "MIT"
  1336. ],
  1337. "authors": [
  1338. {
  1339. "name": "Frank de Jonge",
  1340. "email": "info@frenky.net"
  1341. }
  1342. ],
  1343. "description": "Filesystem abstraction: Many filesystems, one API.",
  1344. "keywords": [
  1345. "Cloud Files",
  1346. "WebDAV",
  1347. "abstraction",
  1348. "aws",
  1349. "cloud",
  1350. "copy.com",
  1351. "dropbox",
  1352. "file systems",
  1353. "files",
  1354. "filesystem",
  1355. "filesystems",
  1356. "ftp",
  1357. "rackspace",
  1358. "remote",
  1359. "s3",
  1360. "sftp",
  1361. "storage"
  1362. ],
  1363. "time": "2019-10-16T21:01:05+00:00"
  1364. },
  1365. {
  1366. "name": "maatwebsite/excel",
  1367. "version": "3.1.17",
  1368. "source": {
  1369. "type": "git",
  1370. "url": "https://github.com/Maatwebsite/Laravel-Excel.git",
  1371. "reference": "bd377ad37b285d9bc25c9adca360e4392041dea6"
  1372. },
  1373. "dist": {
  1374. "type": "zip",
  1375. "url": "https://api.github.com/repos/Maatwebsite/Laravel-Excel/zipball/bd377ad37b285d9bc25c9adca360e4392041dea6",
  1376. "reference": "bd377ad37b285d9bc25c9adca360e4392041dea6",
  1377. "shasum": "",
  1378. "mirrors": [
  1379. {
  1380. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1381. "preferred": true
  1382. }
  1383. ]
  1384. },
  1385. "require": {
  1386. "ext-json": "*",
  1387. "illuminate/support": "5.5.*|5.6.*|5.7.*|5.8.*|^6.0",
  1388. "opis/closure": "^3.1",
  1389. "php": "^7.0",
  1390. "phpoffice/phpspreadsheet": "^1.6"
  1391. },
  1392. "require-dev": {
  1393. "mockery/mockery": "^1.1",
  1394. "orchestra/database": "^4.0",
  1395. "orchestra/testbench": "^4.0",
  1396. "phpunit/phpunit": "^8.0",
  1397. "predis/predis": "^1.1"
  1398. },
  1399. "type": "library",
  1400. "extra": {
  1401. "laravel": {
  1402. "providers": [
  1403. "Maatwebsite\\Excel\\ExcelServiceProvider"
  1404. ],
  1405. "aliases": {
  1406. "Excel": "Maatwebsite\\Excel\\Facades\\Excel"
  1407. }
  1408. }
  1409. },
  1410. "autoload": {
  1411. "psr-4": {
  1412. "Maatwebsite\\Excel\\": "src/"
  1413. }
  1414. },
  1415. "notification-url": "https://packagist.org/downloads/",
  1416. "license": [
  1417. "MIT"
  1418. ],
  1419. "authors": [
  1420. {
  1421. "name": "Patrick Brouwers",
  1422. "email": "patrick@maatwebsite.nl"
  1423. }
  1424. ],
  1425. "description": "Supercharged Excel exports and imports in Laravel",
  1426. "keywords": [
  1427. "PHPExcel",
  1428. "batch",
  1429. "csv",
  1430. "excel",
  1431. "export",
  1432. "import",
  1433. "laravel",
  1434. "php",
  1435. "phpspreadsheet"
  1436. ],
  1437. "time": "2019-09-04T19:28:20+00:00"
  1438. },
  1439. {
  1440. "name": "markbaker/complex",
  1441. "version": "1.4.7",
  1442. "source": {
  1443. "type": "git",
  1444. "url": "https://github.com/MarkBaker/PHPComplex.git",
  1445. "reference": "1ea674a8308baf547cbcbd30c5fcd6d301b7c000"
  1446. },
  1447. "dist": {
  1448. "type": "zip",
  1449. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/1ea674a8308baf547cbcbd30c5fcd6d301b7c000",
  1450. "reference": "1ea674a8308baf547cbcbd30c5fcd6d301b7c000",
  1451. "shasum": "",
  1452. "mirrors": [
  1453. {
  1454. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1455. "preferred": true
  1456. }
  1457. ]
  1458. },
  1459. "require": {
  1460. "php": "^5.6.0|^7.0.0"
  1461. },
  1462. "require-dev": {
  1463. "dealerdirect/phpcodesniffer-composer-installer": "^0.4.3",
  1464. "phpcompatibility/php-compatibility": "^8.0",
  1465. "phpdocumentor/phpdocumentor": "2.*",
  1466. "phploc/phploc": "2.*",
  1467. "phpmd/phpmd": "2.*",
  1468. "phpunit/phpunit": "^4.8.35|^5.4.0",
  1469. "sebastian/phpcpd": "2.*",
  1470. "squizlabs/php_codesniffer": "^3.3.0"
  1471. },
  1472. "type": "library",
  1473. "autoload": {
  1474. "psr-4": {
  1475. "Complex\\": "classes/src/"
  1476. },
  1477. "files": [
  1478. "classes/src/functions/abs.php",
  1479. "classes/src/functions/acos.php",
  1480. "classes/src/functions/acosh.php",
  1481. "classes/src/functions/acot.php",
  1482. "classes/src/functions/acoth.php",
  1483. "classes/src/functions/acsc.php",
  1484. "classes/src/functions/acsch.php",
  1485. "classes/src/functions/argument.php",
  1486. "classes/src/functions/asec.php",
  1487. "classes/src/functions/asech.php",
  1488. "classes/src/functions/asin.php",
  1489. "classes/src/functions/asinh.php",
  1490. "classes/src/functions/atan.php",
  1491. "classes/src/functions/atanh.php",
  1492. "classes/src/functions/conjugate.php",
  1493. "classes/src/functions/cos.php",
  1494. "classes/src/functions/cosh.php",
  1495. "classes/src/functions/cot.php",
  1496. "classes/src/functions/coth.php",
  1497. "classes/src/functions/csc.php",
  1498. "classes/src/functions/csch.php",
  1499. "classes/src/functions/exp.php",
  1500. "classes/src/functions/inverse.php",
  1501. "classes/src/functions/ln.php",
  1502. "classes/src/functions/log2.php",
  1503. "classes/src/functions/log10.php",
  1504. "classes/src/functions/negative.php",
  1505. "classes/src/functions/pow.php",
  1506. "classes/src/functions/rho.php",
  1507. "classes/src/functions/sec.php",
  1508. "classes/src/functions/sech.php",
  1509. "classes/src/functions/sin.php",
  1510. "classes/src/functions/sinh.php",
  1511. "classes/src/functions/sqrt.php",
  1512. "classes/src/functions/tan.php",
  1513. "classes/src/functions/tanh.php",
  1514. "classes/src/functions/theta.php",
  1515. "classes/src/operations/add.php",
  1516. "classes/src/operations/subtract.php",
  1517. "classes/src/operations/multiply.php",
  1518. "classes/src/operations/divideby.php",
  1519. "classes/src/operations/divideinto.php"
  1520. ]
  1521. },
  1522. "notification-url": "https://packagist.org/downloads/",
  1523. "license": [
  1524. "MIT"
  1525. ],
  1526. "authors": [
  1527. {
  1528. "name": "Mark Baker",
  1529. "email": "mark@lange.demon.co.uk"
  1530. }
  1531. ],
  1532. "description": "PHP Class for working with complex numbers",
  1533. "homepage": "https://github.com/MarkBaker/PHPComplex",
  1534. "keywords": [
  1535. "complex",
  1536. "mathematics"
  1537. ],
  1538. "time": "2018-10-13T23:28:42+00:00"
  1539. },
  1540. {
  1541. "name": "markbaker/matrix",
  1542. "version": "1.2.0",
  1543. "source": {
  1544. "type": "git",
  1545. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  1546. "reference": "5348c5a67e3b75cd209d70103f916a93b1f1ed21"
  1547. },
  1548. "dist": {
  1549. "type": "zip",
  1550. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/5348c5a67e3b75cd209d70103f916a93b1f1ed21",
  1551. "reference": "5348c5a67e3b75cd209d70103f916a93b1f1ed21",
  1552. "shasum": "",
  1553. "mirrors": [
  1554. {
  1555. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1556. "preferred": true
  1557. }
  1558. ]
  1559. },
  1560. "require": {
  1561. "php": "^5.6.0|^7.0.0"
  1562. },
  1563. "require-dev": {
  1564. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  1565. "phpcompatibility/php-compatibility": "dev-master",
  1566. "phploc/phploc": "^4",
  1567. "phpmd/phpmd": "dev-master",
  1568. "phpunit/phpunit": "^5.7",
  1569. "sebastian/phpcpd": "^3.0",
  1570. "squizlabs/php_codesniffer": "^3.0@dev"
  1571. },
  1572. "type": "library",
  1573. "autoload": {
  1574. "psr-4": {
  1575. "Matrix\\": "classes/src/"
  1576. },
  1577. "files": [
  1578. "classes/src/functions/adjoint.php",
  1579. "classes/src/functions/antidiagonal.php",
  1580. "classes/src/functions/cofactors.php",
  1581. "classes/src/functions/determinant.php",
  1582. "classes/src/functions/diagonal.php",
  1583. "classes/src/functions/identity.php",
  1584. "classes/src/functions/inverse.php",
  1585. "classes/src/functions/minors.php",
  1586. "classes/src/functions/trace.php",
  1587. "classes/src/functions/transpose.php",
  1588. "classes/src/operations/add.php",
  1589. "classes/src/operations/directsum.php",
  1590. "classes/src/operations/subtract.php",
  1591. "classes/src/operations/multiply.php",
  1592. "classes/src/operations/divideby.php",
  1593. "classes/src/operations/divideinto.php"
  1594. ]
  1595. },
  1596. "notification-url": "https://packagist.org/downloads/",
  1597. "license": [
  1598. "MIT"
  1599. ],
  1600. "authors": [
  1601. {
  1602. "name": "Mark Baker",
  1603. "email": "mark@lange.demon.co.uk"
  1604. }
  1605. ],
  1606. "description": "PHP Class for working with matrices",
  1607. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  1608. "keywords": [
  1609. "mathematics",
  1610. "matrix",
  1611. "vector"
  1612. ],
  1613. "time": "2019-10-06T11:29:25+00:00"
  1614. },
  1615. {
  1616. "name": "monolog/monolog",
  1617. "version": "1.25.1",
  1618. "source": {
  1619. "type": "git",
  1620. "url": "https://github.com/Seldaek/monolog.git",
  1621. "reference": "70e65a5470a42cfec1a7da00d30edb6e617e8dcf"
  1622. },
  1623. "dist": {
  1624. "type": "zip",
  1625. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/70e65a5470a42cfec1a7da00d30edb6e617e8dcf",
  1626. "reference": "70e65a5470a42cfec1a7da00d30edb6e617e8dcf",
  1627. "shasum": "",
  1628. "mirrors": [
  1629. {
  1630. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1631. "preferred": true
  1632. }
  1633. ]
  1634. },
  1635. "require": {
  1636. "php": ">=5.3.0",
  1637. "psr/log": "~1.0"
  1638. },
  1639. "provide": {
  1640. "psr/log-implementation": "1.0.0"
  1641. },
  1642. "require-dev": {
  1643. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1644. "doctrine/couchdb": "~1.0@dev",
  1645. "graylog2/gelf-php": "~1.0",
  1646. "jakub-onderka/php-parallel-lint": "0.9",
  1647. "php-amqplib/php-amqplib": "~2.4",
  1648. "php-console/php-console": "^3.1.3",
  1649. "phpunit/phpunit": "~4.5",
  1650. "phpunit/phpunit-mock-objects": "2.3.0",
  1651. "ruflin/elastica": ">=0.90 <3.0",
  1652. "sentry/sentry": "^0.13",
  1653. "swiftmailer/swiftmailer": "^5.3|^6.0"
  1654. },
  1655. "suggest": {
  1656. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1657. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1658. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1659. "ext-mongo": "Allow sending log messages to a MongoDB server",
  1660. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1661. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  1662. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1663. "php-console/php-console": "Allow sending log messages to Google Chrome",
  1664. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1665. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  1666. "sentry/sentry": "Allow sending log messages to a Sentry server"
  1667. },
  1668. "type": "library",
  1669. "extra": {
  1670. "branch-alias": {
  1671. "dev-master": "2.0.x-dev"
  1672. }
  1673. },
  1674. "autoload": {
  1675. "psr-4": {
  1676. "Monolog\\": "src/Monolog"
  1677. }
  1678. },
  1679. "notification-url": "https://packagist.org/downloads/",
  1680. "license": [
  1681. "MIT"
  1682. ],
  1683. "authors": [
  1684. {
  1685. "name": "Jordi Boggiano",
  1686. "email": "j.boggiano@seld.be",
  1687. "homepage": "http://seld.be"
  1688. }
  1689. ],
  1690. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1691. "homepage": "http://github.com/Seldaek/monolog",
  1692. "keywords": [
  1693. "log",
  1694. "logging",
  1695. "psr-3"
  1696. ],
  1697. "time": "2019-09-06T13:49:17+00:00"
  1698. },
  1699. {
  1700. "name": "nesbot/carbon",
  1701. "version": "2.25.3",
  1702. "source": {
  1703. "type": "git",
  1704. "url": "https://github.com/briannesbitt/Carbon.git",
  1705. "reference": "d07636581795383e2fea2d711212d30f941f2039"
  1706. },
  1707. "dist": {
  1708. "type": "zip",
  1709. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/d07636581795383e2fea2d711212d30f941f2039",
  1710. "reference": "d07636581795383e2fea2d711212d30f941f2039",
  1711. "shasum": "",
  1712. "mirrors": [
  1713. {
  1714. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1715. "preferred": true
  1716. }
  1717. ]
  1718. },
  1719. "require": {
  1720. "ext-json": "*",
  1721. "php": "^7.1.8 || ^8.0",
  1722. "symfony/translation": "^3.4 || ^4.0"
  1723. },
  1724. "require-dev": {
  1725. "friendsofphp/php-cs-fixer": "^2.14 || ^3.0",
  1726. "kylekatarnls/multi-tester": "^1.1",
  1727. "phpmd/phpmd": "dev-php-7.1-compatibility",
  1728. "phpstan/phpstan": "^0.11",
  1729. "phpunit/phpunit": "^7.5 || ^8.0",
  1730. "squizlabs/php_codesniffer": "^3.4"
  1731. },
  1732. "bin": [
  1733. "bin/carbon"
  1734. ],
  1735. "type": "library",
  1736. "extra": {
  1737. "laravel": {
  1738. "providers": [
  1739. "Carbon\\Laravel\\ServiceProvider"
  1740. ]
  1741. }
  1742. },
  1743. "autoload": {
  1744. "psr-4": {
  1745. "Carbon\\": "src/Carbon/"
  1746. }
  1747. },
  1748. "notification-url": "https://packagist.org/downloads/",
  1749. "license": [
  1750. "MIT"
  1751. ],
  1752. "authors": [
  1753. {
  1754. "name": "Brian Nesbitt",
  1755. "email": "brian@nesbot.com",
  1756. "homepage": "http://nesbot.com"
  1757. },
  1758. {
  1759. "name": "kylekatarnls",
  1760. "homepage": "http://github.com/kylekatarnls"
  1761. }
  1762. ],
  1763. "description": "An API extension for DateTime that supports 281 different languages.",
  1764. "homepage": "http://carbon.nesbot.com",
  1765. "keywords": [
  1766. "date",
  1767. "datetime",
  1768. "time"
  1769. ],
  1770. "time": "2019-10-20T11:05:44+00:00"
  1771. },
  1772. {
  1773. "name": "nikic/php-parser",
  1774. "version": "v4.2.4",
  1775. "source": {
  1776. "type": "git",
  1777. "url": "https://github.com/nikic/PHP-Parser.git",
  1778. "reference": "97e59c7a16464196a8b9c77c47df68e4a39a45c4"
  1779. },
  1780. "dist": {
  1781. "type": "zip",
  1782. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/97e59c7a16464196a8b9c77c47df68e4a39a45c4",
  1783. "reference": "97e59c7a16464196a8b9c77c47df68e4a39a45c4",
  1784. "shasum": "",
  1785. "mirrors": [
  1786. {
  1787. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1788. "preferred": true
  1789. }
  1790. ]
  1791. },
  1792. "require": {
  1793. "ext-tokenizer": "*",
  1794. "php": ">=7.0"
  1795. },
  1796. "require-dev": {
  1797. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0"
  1798. },
  1799. "bin": [
  1800. "bin/php-parse"
  1801. ],
  1802. "type": "library",
  1803. "extra": {
  1804. "branch-alias": {
  1805. "dev-master": "4.2-dev"
  1806. }
  1807. },
  1808. "autoload": {
  1809. "psr-4": {
  1810. "PhpParser\\": "lib/PhpParser"
  1811. }
  1812. },
  1813. "notification-url": "https://packagist.org/downloads/",
  1814. "license": [
  1815. "BSD-3-Clause"
  1816. ],
  1817. "authors": [
  1818. {
  1819. "name": "Nikita Popov"
  1820. }
  1821. ],
  1822. "description": "A PHP parser written in PHP",
  1823. "keywords": [
  1824. "parser",
  1825. "php"
  1826. ],
  1827. "time": "2019-09-01T07:51:21+00:00"
  1828. },
  1829. {
  1830. "name": "opis/closure",
  1831. "version": "3.4.1",
  1832. "source": {
  1833. "type": "git",
  1834. "url": "https://github.com/opis/closure.git",
  1835. "reference": "e79f851749c3caa836d7ccc01ede5828feb762c7"
  1836. },
  1837. "dist": {
  1838. "type": "zip",
  1839. "url": "https://api.github.com/repos/opis/closure/zipball/e79f851749c3caa836d7ccc01ede5828feb762c7",
  1840. "reference": "e79f851749c3caa836d7ccc01ede5828feb762c7",
  1841. "shasum": "",
  1842. "mirrors": [
  1843. {
  1844. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1845. "preferred": true
  1846. }
  1847. ]
  1848. },
  1849. "require": {
  1850. "php": "^5.4 || ^7.0"
  1851. },
  1852. "require-dev": {
  1853. "jeremeamia/superclosure": "^2.0",
  1854. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  1855. },
  1856. "type": "library",
  1857. "extra": {
  1858. "branch-alias": {
  1859. "dev-master": "3.3.x-dev"
  1860. }
  1861. },
  1862. "autoload": {
  1863. "psr-4": {
  1864. "Opis\\Closure\\": "src/"
  1865. },
  1866. "files": [
  1867. "functions.php"
  1868. ]
  1869. },
  1870. "notification-url": "https://packagist.org/downloads/",
  1871. "license": [
  1872. "MIT"
  1873. ],
  1874. "authors": [
  1875. {
  1876. "name": "Marius Sarca",
  1877. "email": "marius.sarca@gmail.com"
  1878. },
  1879. {
  1880. "name": "Sorin Sarca",
  1881. "email": "sarca_sorin@hotmail.com"
  1882. }
  1883. ],
  1884. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  1885. "homepage": "https://opis.io/closure",
  1886. "keywords": [
  1887. "anonymous functions",
  1888. "closure",
  1889. "function",
  1890. "serializable",
  1891. "serialization",
  1892. "serialize"
  1893. ],
  1894. "time": "2019-10-19T18:38:51+00:00"
  1895. },
  1896. {
  1897. "name": "overtrue/laravel-pinyin",
  1898. "version": "4.0.0",
  1899. "source": {
  1900. "type": "git",
  1901. "url": "https://github.com/overtrue/laravel-pinyin.git",
  1902. "reference": "c0b15aa49eac08bff80122010b91a0b3fe0f1e21"
  1903. },
  1904. "dist": {
  1905. "type": "zip",
  1906. "url": "https://api.github.com/repos/overtrue/laravel-pinyin/zipball/c0b15aa49eac08bff80122010b91a0b3fe0f1e21",
  1907. "reference": "c0b15aa49eac08bff80122010b91a0b3fe0f1e21",
  1908. "shasum": "",
  1909. "mirrors": [
  1910. {
  1911. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1912. "preferred": true
  1913. }
  1914. ]
  1915. },
  1916. "require": {
  1917. "overtrue/pinyin": "~4.0"
  1918. },
  1919. "type": "library",
  1920. "extra": {
  1921. "laravel": {
  1922. "providers": [
  1923. "Overtrue\\LaravelPinyin\\ServiceProvider"
  1924. ],
  1925. "aliases": {
  1926. "Pinyin": "Overtrue\\LaravelPinyin\\Facades\\Pinyin"
  1927. }
  1928. }
  1929. },
  1930. "autoload": {
  1931. "psr-4": {
  1932. "Overtrue\\LaravelPinyin\\": "src/"
  1933. },
  1934. "files": [
  1935. "src/helpers.php"
  1936. ]
  1937. },
  1938. "notification-url": "https://packagist.org/downloads/",
  1939. "license": [
  1940. "MIT"
  1941. ],
  1942. "authors": [
  1943. {
  1944. "name": "overtrue",
  1945. "email": "anzhengchao@gmail.com"
  1946. }
  1947. ],
  1948. "description": "Chinese to Pinyin translator.",
  1949. "keywords": [
  1950. "Chinese",
  1951. "Pinyin",
  1952. "laravel",
  1953. "overtrue"
  1954. ],
  1955. "time": "2018-10-10T09:02:46+00:00"
  1956. },
  1957. {
  1958. "name": "overtrue/pinyin",
  1959. "version": "4.0.5",
  1960. "source": {
  1961. "type": "git",
  1962. "url": "https://github.com/overtrue/pinyin.git",
  1963. "reference": "94fdb3ea6eca5677afd9548111d95bedcd5a4086"
  1964. },
  1965. "dist": {
  1966. "type": "zip",
  1967. "url": "https://api.github.com/repos/overtrue/pinyin/zipball/94fdb3ea6eca5677afd9548111d95bedcd5a4086",
  1968. "reference": "94fdb3ea6eca5677afd9548111d95bedcd5a4086",
  1969. "shasum": "",
  1970. "mirrors": [
  1971. {
  1972. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1973. "preferred": true
  1974. }
  1975. ]
  1976. },
  1977. "require": {
  1978. "php": ">=5.5"
  1979. },
  1980. "require-dev": {
  1981. "phpunit/phpunit": "~7.5"
  1982. },
  1983. "type": "library",
  1984. "autoload": {
  1985. "psr-4": {
  1986. "Overtrue\\Pinyin\\": "src/"
  1987. },
  1988. "files": [
  1989. "src/const.php"
  1990. ]
  1991. },
  1992. "notification-url": "https://packagist.org/downloads/",
  1993. "license": [
  1994. "MIT"
  1995. ],
  1996. "authors": [
  1997. {
  1998. "name": "Carlos",
  1999. "homepage": "http://github.com/overtrue"
  2000. }
  2001. ],
  2002. "description": "Chinese to pinyin translator.",
  2003. "homepage": "https://github.com/overtrue/pinyin",
  2004. "keywords": [
  2005. "Chinese",
  2006. "Pinyin",
  2007. "cn2pinyin"
  2008. ],
  2009. "time": "2019-09-20T12:43:45+00:00"
  2010. },
  2011. {
  2012. "name": "paragonie/random_compat",
  2013. "version": "v9.99.99",
  2014. "source": {
  2015. "type": "git",
  2016. "url": "https://github.com/paragonie/random_compat.git",
  2017. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
  2018. },
  2019. "dist": {
  2020. "type": "zip",
  2021. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  2022. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  2023. "shasum": "",
  2024. "mirrors": [
  2025. {
  2026. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2027. "preferred": true
  2028. }
  2029. ]
  2030. },
  2031. "require": {
  2032. "php": "^7"
  2033. },
  2034. "require-dev": {
  2035. "phpunit/phpunit": "4.*|5.*",
  2036. "vimeo/psalm": "^1"
  2037. },
  2038. "suggest": {
  2039. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  2040. },
  2041. "type": "library",
  2042. "notification-url": "https://packagist.org/downloads/",
  2043. "license": [
  2044. "MIT"
  2045. ],
  2046. "authors": [
  2047. {
  2048. "name": "Paragon Initiative Enterprises",
  2049. "email": "security@paragonie.com",
  2050. "homepage": "https://paragonie.com"
  2051. }
  2052. ],
  2053. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  2054. "keywords": [
  2055. "csprng",
  2056. "polyfill",
  2057. "pseudorandom",
  2058. "random"
  2059. ],
  2060. "time": "2018-07-02T15:55:56+00:00"
  2061. },
  2062. {
  2063. "name": "paragonie/sodium_compat",
  2064. "version": "v1.12.0",
  2065. "source": {
  2066. "type": "git",
  2067. "url": "https://github.com/paragonie/sodium_compat.git",
  2068. "reference": "8228b286d6b8fe24825f42ce02403f72656ac826"
  2069. },
  2070. "dist": {
  2071. "type": "zip",
  2072. "url": "https://api.github.com/repos/paragonie/sodium_compat/zipball/8228b286d6b8fe24825f42ce02403f72656ac826",
  2073. "reference": "8228b286d6b8fe24825f42ce02403f72656ac826",
  2074. "shasum": "",
  2075. "mirrors": [
  2076. {
  2077. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2078. "preferred": true
  2079. }
  2080. ]
  2081. },
  2082. "require": {
  2083. "paragonie/random_compat": ">=1",
  2084. "php": "^5.2.4|^5.3|^5.4|^5.5|^5.6|^7|^8"
  2085. },
  2086. "require-dev": {
  2087. "phpunit/phpunit": "^3|^4|^5|^6|^7"
  2088. },
  2089. "suggest": {
  2090. "ext-libsodium": "PHP < 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security.",
  2091. "ext-sodium": "PHP >= 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security."
  2092. },
  2093. "type": "library",
  2094. "autoload": {
  2095. "files": [
  2096. "autoload.php"
  2097. ]
  2098. },
  2099. "notification-url": "https://packagist.org/downloads/",
  2100. "license": [
  2101. "ISC"
  2102. ],
  2103. "authors": [
  2104. {
  2105. "name": "Paragon Initiative Enterprises",
  2106. "email": "security@paragonie.com"
  2107. },
  2108. {
  2109. "name": "Frank Denis",
  2110. "email": "jedisct1@pureftpd.org"
  2111. }
  2112. ],
  2113. "description": "Pure PHP implementation of libsodium; uses the PHP extension if it exists",
  2114. "keywords": [
  2115. "Authentication",
  2116. "BLAKE2b",
  2117. "ChaCha20",
  2118. "ChaCha20-Poly1305",
  2119. "Chapoly",
  2120. "Curve25519",
  2121. "Ed25519",
  2122. "EdDSA",
  2123. "Edwards-curve Digital Signature Algorithm",
  2124. "Elliptic Curve Diffie-Hellman",
  2125. "Poly1305",
  2126. "Pure-PHP cryptography",
  2127. "RFC 7748",
  2128. "RFC 8032",
  2129. "Salpoly",
  2130. "Salsa20",
  2131. "X25519",
  2132. "XChaCha20-Poly1305",
  2133. "XSalsa20-Poly1305",
  2134. "Xchacha20",
  2135. "Xsalsa20",
  2136. "aead",
  2137. "cryptography",
  2138. "ecdh",
  2139. "elliptic curve",
  2140. "elliptic curve cryptography",
  2141. "encryption",
  2142. "libsodium",
  2143. "php",
  2144. "public-key cryptography",
  2145. "secret-key cryptography",
  2146. "side-channel resistant"
  2147. ],
  2148. "time": "2019-10-19T15:30:42+00:00"
  2149. },
  2150. {
  2151. "name": "phpoffice/phpspreadsheet",
  2152. "version": "1.9.0",
  2153. "source": {
  2154. "type": "git",
  2155. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  2156. "reference": "8dea03eaf60a349b6097e4bcad11f894668280df"
  2157. },
  2158. "dist": {
  2159. "type": "zip",
  2160. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/8dea03eaf60a349b6097e4bcad11f894668280df",
  2161. "reference": "8dea03eaf60a349b6097e4bcad11f894668280df",
  2162. "shasum": "",
  2163. "mirrors": [
  2164. {
  2165. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2166. "preferred": true
  2167. }
  2168. ]
  2169. },
  2170. "require": {
  2171. "ext-ctype": "*",
  2172. "ext-dom": "*",
  2173. "ext-fileinfo": "*",
  2174. "ext-gd": "*",
  2175. "ext-iconv": "*",
  2176. "ext-libxml": "*",
  2177. "ext-mbstring": "*",
  2178. "ext-simplexml": "*",
  2179. "ext-xml": "*",
  2180. "ext-xmlreader": "*",
  2181. "ext-xmlwriter": "*",
  2182. "ext-zip": "*",
  2183. "ext-zlib": "*",
  2184. "markbaker/complex": "^1.4",
  2185. "markbaker/matrix": "^1.1",
  2186. "php": "^7.1",
  2187. "psr/simple-cache": "^1.0"
  2188. },
  2189. "require-dev": {
  2190. "dompdf/dompdf": "^0.8.0",
  2191. "friendsofphp/php-cs-fixer": "@stable",
  2192. "jpgraph/jpgraph": "^4.0",
  2193. "mpdf/mpdf": "^7.0.0",
  2194. "phpcompatibility/php-compatibility": "^8.0",
  2195. "phpunit/phpunit": "^7.5",
  2196. "squizlabs/php_codesniffer": "^3.3",
  2197. "tecnickcom/tcpdf": "^6.2"
  2198. },
  2199. "suggest": {
  2200. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  2201. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  2202. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  2203. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  2204. },
  2205. "type": "library",
  2206. "autoload": {
  2207. "psr-4": {
  2208. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  2209. }
  2210. },
  2211. "notification-url": "https://packagist.org/downloads/",
  2212. "license": [
  2213. "LGPL-2.1-or-later"
  2214. ],
  2215. "authors": [
  2216. {
  2217. "name": "Maarten Balliauw",
  2218. "homepage": "https://blog.maartenballiauw.be"
  2219. },
  2220. {
  2221. "name": "Mark Baker",
  2222. "homepage": "https://markbakeruk.net"
  2223. },
  2224. {
  2225. "name": "Franck Lefevre",
  2226. "homepage": "https://rootslabs.net"
  2227. },
  2228. {
  2229. "name": "Erik Tilt"
  2230. },
  2231. {
  2232. "name": "Adrien Crivelli"
  2233. }
  2234. ],
  2235. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  2236. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  2237. "keywords": [
  2238. "OpenXML",
  2239. "excel",
  2240. "gnumeric",
  2241. "ods",
  2242. "php",
  2243. "spreadsheet",
  2244. "xls",
  2245. "xlsx"
  2246. ],
  2247. "time": "2019-08-17T22:24:35+00:00"
  2248. },
  2249. {
  2250. "name": "phpoption/phpoption",
  2251. "version": "1.5.0",
  2252. "source": {
  2253. "type": "git",
  2254. "url": "https://github.com/schmittjoh/php-option.git",
  2255. "reference": "94e644f7d2051a5f0fcf77d81605f152eecff0ed"
  2256. },
  2257. "dist": {
  2258. "type": "zip",
  2259. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/94e644f7d2051a5f0fcf77d81605f152eecff0ed",
  2260. "reference": "94e644f7d2051a5f0fcf77d81605f152eecff0ed",
  2261. "shasum": "",
  2262. "mirrors": [
  2263. {
  2264. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2265. "preferred": true
  2266. }
  2267. ]
  2268. },
  2269. "require": {
  2270. "php": ">=5.3.0"
  2271. },
  2272. "require-dev": {
  2273. "phpunit/phpunit": "4.7.*"
  2274. },
  2275. "type": "library",
  2276. "extra": {
  2277. "branch-alias": {
  2278. "dev-master": "1.3-dev"
  2279. }
  2280. },
  2281. "autoload": {
  2282. "psr-0": {
  2283. "PhpOption\\": "src/"
  2284. }
  2285. },
  2286. "notification-url": "https://packagist.org/downloads/",
  2287. "license": [
  2288. "Apache2"
  2289. ],
  2290. "authors": [
  2291. {
  2292. "name": "Johannes M. Schmitt",
  2293. "email": "schmittjoh@gmail.com"
  2294. }
  2295. ],
  2296. "description": "Option Type for PHP",
  2297. "keywords": [
  2298. "language",
  2299. "option",
  2300. "php",
  2301. "type"
  2302. ],
  2303. "time": "2015-07-25T16:39:46+00:00"
  2304. },
  2305. {
  2306. "name": "predis/predis",
  2307. "version": "v1.1.1",
  2308. "source": {
  2309. "type": "git",
  2310. "url": "https://github.com/nrk/predis.git",
  2311. "reference": "f0210e38881631afeafb56ab43405a92cafd9fd1"
  2312. },
  2313. "dist": {
  2314. "type": "zip",
  2315. "url": "https://api.github.com/repos/nrk/predis/zipball/f0210e38881631afeafb56ab43405a92cafd9fd1",
  2316. "reference": "f0210e38881631afeafb56ab43405a92cafd9fd1",
  2317. "shasum": "",
  2318. "mirrors": [
  2319. {
  2320. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2321. "preferred": true
  2322. }
  2323. ]
  2324. },
  2325. "require": {
  2326. "php": ">=5.3.9"
  2327. },
  2328. "require-dev": {
  2329. "phpunit/phpunit": "~4.8"
  2330. },
  2331. "suggest": {
  2332. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  2333. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  2334. },
  2335. "type": "library",
  2336. "autoload": {
  2337. "psr-4": {
  2338. "Predis\\": "src/"
  2339. }
  2340. },
  2341. "notification-url": "https://packagist.org/downloads/",
  2342. "license": [
  2343. "MIT"
  2344. ],
  2345. "authors": [
  2346. {
  2347. "name": "Daniele Alessandri",
  2348. "email": "suppakilla@gmail.com",
  2349. "homepage": "http://clorophilla.net"
  2350. }
  2351. ],
  2352. "description": "Flexible and feature-complete Redis client for PHP and HHVM",
  2353. "homepage": "http://github.com/nrk/predis",
  2354. "keywords": [
  2355. "nosql",
  2356. "predis",
  2357. "redis"
  2358. ],
  2359. "time": "2016-06-16T16:22:20+00:00"
  2360. },
  2361. {
  2362. "name": "psr/container",
  2363. "version": "1.0.0",
  2364. "source": {
  2365. "type": "git",
  2366. "url": "https://github.com/php-fig/container.git",
  2367. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  2368. },
  2369. "dist": {
  2370. "type": "zip",
  2371. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  2372. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  2373. "shasum": "",
  2374. "mirrors": [
  2375. {
  2376. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2377. "preferred": true
  2378. }
  2379. ]
  2380. },
  2381. "require": {
  2382. "php": ">=5.3.0"
  2383. },
  2384. "type": "library",
  2385. "extra": {
  2386. "branch-alias": {
  2387. "dev-master": "1.0.x-dev"
  2388. }
  2389. },
  2390. "autoload": {
  2391. "psr-4": {
  2392. "Psr\\Container\\": "src/"
  2393. }
  2394. },
  2395. "notification-url": "https://packagist.org/downloads/",
  2396. "license": [
  2397. "MIT"
  2398. ],
  2399. "authors": [
  2400. {
  2401. "name": "PHP-FIG",
  2402. "homepage": "http://www.php-fig.org/"
  2403. }
  2404. ],
  2405. "description": "Common Container Interface (PHP FIG PSR-11)",
  2406. "homepage": "https://github.com/php-fig/container",
  2407. "keywords": [
  2408. "PSR-11",
  2409. "container",
  2410. "container-interface",
  2411. "container-interop",
  2412. "psr"
  2413. ],
  2414. "time": "2017-02-14T16:28:37+00:00"
  2415. },
  2416. {
  2417. "name": "psr/http-message",
  2418. "version": "1.0.1",
  2419. "source": {
  2420. "type": "git",
  2421. "url": "https://github.com/php-fig/http-message.git",
  2422. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  2423. },
  2424. "dist": {
  2425. "type": "zip",
  2426. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  2427. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  2428. "shasum": "",
  2429. "mirrors": [
  2430. {
  2431. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2432. "preferred": true
  2433. }
  2434. ]
  2435. },
  2436. "require": {
  2437. "php": ">=5.3.0"
  2438. },
  2439. "type": "library",
  2440. "extra": {
  2441. "branch-alias": {
  2442. "dev-master": "1.0.x-dev"
  2443. }
  2444. },
  2445. "autoload": {
  2446. "psr-4": {
  2447. "Psr\\Http\\Message\\": "src/"
  2448. }
  2449. },
  2450. "notification-url": "https://packagist.org/downloads/",
  2451. "license": [
  2452. "MIT"
  2453. ],
  2454. "authors": [
  2455. {
  2456. "name": "PHP-FIG",
  2457. "homepage": "http://www.php-fig.org/"
  2458. }
  2459. ],
  2460. "description": "Common interface for HTTP messages",
  2461. "homepage": "https://github.com/php-fig/http-message",
  2462. "keywords": [
  2463. "http",
  2464. "http-message",
  2465. "psr",
  2466. "psr-7",
  2467. "request",
  2468. "response"
  2469. ],
  2470. "time": "2016-08-06T14:39:51+00:00"
  2471. },
  2472. {
  2473. "name": "psr/log",
  2474. "version": "1.1.0",
  2475. "source": {
  2476. "type": "git",
  2477. "url": "https://github.com/php-fig/log.git",
  2478. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd"
  2479. },
  2480. "dist": {
  2481. "type": "zip",
  2482. "url": "https://api.github.com/repos/php-fig/log/zipball/6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  2483. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  2484. "shasum": "",
  2485. "mirrors": [
  2486. {
  2487. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2488. "preferred": true
  2489. }
  2490. ]
  2491. },
  2492. "require": {
  2493. "php": ">=5.3.0"
  2494. },
  2495. "type": "library",
  2496. "extra": {
  2497. "branch-alias": {
  2498. "dev-master": "1.0.x-dev"
  2499. }
  2500. },
  2501. "autoload": {
  2502. "psr-4": {
  2503. "Psr\\Log\\": "Psr/Log/"
  2504. }
  2505. },
  2506. "notification-url": "https://packagist.org/downloads/",
  2507. "license": [
  2508. "MIT"
  2509. ],
  2510. "authors": [
  2511. {
  2512. "name": "PHP-FIG",
  2513. "homepage": "http://www.php-fig.org/"
  2514. }
  2515. ],
  2516. "description": "Common interface for logging libraries",
  2517. "homepage": "https://github.com/php-fig/log",
  2518. "keywords": [
  2519. "log",
  2520. "psr",
  2521. "psr-3"
  2522. ],
  2523. "time": "2018-11-20T15:27:04+00:00"
  2524. },
  2525. {
  2526. "name": "psr/simple-cache",
  2527. "version": "1.0.1",
  2528. "source": {
  2529. "type": "git",
  2530. "url": "https://github.com/php-fig/simple-cache.git",
  2531. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  2532. },
  2533. "dist": {
  2534. "type": "zip",
  2535. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2536. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2537. "shasum": "",
  2538. "mirrors": [
  2539. {
  2540. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2541. "preferred": true
  2542. }
  2543. ]
  2544. },
  2545. "require": {
  2546. "php": ">=5.3.0"
  2547. },
  2548. "type": "library",
  2549. "extra": {
  2550. "branch-alias": {
  2551. "dev-master": "1.0.x-dev"
  2552. }
  2553. },
  2554. "autoload": {
  2555. "psr-4": {
  2556. "Psr\\SimpleCache\\": "src/"
  2557. }
  2558. },
  2559. "notification-url": "https://packagist.org/downloads/",
  2560. "license": [
  2561. "MIT"
  2562. ],
  2563. "authors": [
  2564. {
  2565. "name": "PHP-FIG",
  2566. "homepage": "http://www.php-fig.org/"
  2567. }
  2568. ],
  2569. "description": "Common interfaces for simple caching",
  2570. "keywords": [
  2571. "cache",
  2572. "caching",
  2573. "psr",
  2574. "psr-16",
  2575. "simple-cache"
  2576. ],
  2577. "time": "2017-10-23T01:57:42+00:00"
  2578. },
  2579. {
  2580. "name": "psy/psysh",
  2581. "version": "v0.9.9",
  2582. "source": {
  2583. "type": "git",
  2584. "url": "https://github.com/bobthecow/psysh.git",
  2585. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e"
  2586. },
  2587. "dist": {
  2588. "type": "zip",
  2589. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  2590. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  2591. "shasum": "",
  2592. "mirrors": [
  2593. {
  2594. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2595. "preferred": true
  2596. }
  2597. ]
  2598. },
  2599. "require": {
  2600. "dnoegel/php-xdg-base-dir": "0.1",
  2601. "ext-json": "*",
  2602. "ext-tokenizer": "*",
  2603. "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
  2604. "nikic/php-parser": "~1.3|~2.0|~3.0|~4.0",
  2605. "php": ">=5.4.0",
  2606. "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0",
  2607. "symfony/var-dumper": "~2.7|~3.0|~4.0"
  2608. },
  2609. "require-dev": {
  2610. "bamarni/composer-bin-plugin": "^1.2",
  2611. "hoa/console": "~2.15|~3.16",
  2612. "phpunit/phpunit": "~4.8.35|~5.0|~6.0|~7.0"
  2613. },
  2614. "suggest": {
  2615. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  2616. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  2617. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  2618. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  2619. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  2620. },
  2621. "bin": [
  2622. "bin/psysh"
  2623. ],
  2624. "type": "library",
  2625. "extra": {
  2626. "branch-alias": {
  2627. "dev-develop": "0.9.x-dev"
  2628. }
  2629. },
  2630. "autoload": {
  2631. "files": [
  2632. "src/functions.php"
  2633. ],
  2634. "psr-4": {
  2635. "Psy\\": "src/"
  2636. }
  2637. },
  2638. "notification-url": "https://packagist.org/downloads/",
  2639. "license": [
  2640. "MIT"
  2641. ],
  2642. "authors": [
  2643. {
  2644. "name": "Justin Hileman",
  2645. "email": "justin@justinhileman.info",
  2646. "homepage": "http://justinhileman.com"
  2647. }
  2648. ],
  2649. "description": "An interactive shell for modern PHP.",
  2650. "homepage": "http://psysh.org",
  2651. "keywords": [
  2652. "REPL",
  2653. "console",
  2654. "interactive",
  2655. "shell"
  2656. ],
  2657. "time": "2018-10-13T15:16:03+00:00"
  2658. },
  2659. {
  2660. "name": "pusher/pusher-php-server",
  2661. "version": "v4.1.1",
  2662. "source": {
  2663. "type": "git",
  2664. "url": "https://github.com/pusher/pusher-http-php.git",
  2665. "reference": "3c05ef64839845b6114396ff8406712cba052750"
  2666. },
  2667. "dist": {
  2668. "type": "zip",
  2669. "url": "https://api.github.com/repos/pusher/pusher-http-php/zipball/3c05ef64839845b6114396ff8406712cba052750",
  2670. "reference": "3c05ef64839845b6114396ff8406712cba052750",
  2671. "shasum": "",
  2672. "mirrors": [
  2673. {
  2674. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2675. "preferred": true
  2676. }
  2677. ]
  2678. },
  2679. "require": {
  2680. "ext-curl": "*",
  2681. "paragonie/sodium_compat": "^1.6",
  2682. "php": "^7.1",
  2683. "psr/log": "^1.0"
  2684. },
  2685. "require-dev": {
  2686. "phpunit/phpunit": "^7.2"
  2687. },
  2688. "type": "library",
  2689. "extra": {
  2690. "branch-alias": {
  2691. "dev-master": "3.4-dev"
  2692. }
  2693. },
  2694. "autoload": {
  2695. "psr-4": {
  2696. "Pusher\\": "src/"
  2697. }
  2698. },
  2699. "notification-url": "https://packagist.org/downloads/",
  2700. "license": [
  2701. "MIT"
  2702. ],
  2703. "description": "Library for interacting with the Pusher REST API",
  2704. "keywords": [
  2705. "events",
  2706. "messaging",
  2707. "php-pusher-server",
  2708. "publish",
  2709. "push",
  2710. "pusher",
  2711. "real time",
  2712. "real-time",
  2713. "realtime",
  2714. "rest",
  2715. "trigger"
  2716. ],
  2717. "time": "2019-12-03T13:29:13+00:00"
  2718. },
  2719. {
  2720. "name": "qiniu/php-sdk",
  2721. "version": "v7.2.10",
  2722. "source": {
  2723. "type": "git",
  2724. "url": "https://github.com/qiniu/php-sdk.git",
  2725. "reference": "d89987163f560ebf9dfa5bb25de9bd9b1a3b2bd8"
  2726. },
  2727. "dist": {
  2728. "type": "zip",
  2729. "url": "https://api.github.com/repos/qiniu/php-sdk/zipball/d89987163f560ebf9dfa5bb25de9bd9b1a3b2bd8",
  2730. "reference": "d89987163f560ebf9dfa5bb25de9bd9b1a3b2bd8",
  2731. "shasum": "",
  2732. "mirrors": [
  2733. {
  2734. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2735. "preferred": true
  2736. }
  2737. ]
  2738. },
  2739. "require": {
  2740. "php": ">=5.3.3"
  2741. },
  2742. "require-dev": {
  2743. "phpunit/phpunit": "~4.0",
  2744. "squizlabs/php_codesniffer": "~2.3"
  2745. },
  2746. "type": "library",
  2747. "autoload": {
  2748. "psr-4": {
  2749. "Qiniu\\": "src/Qiniu"
  2750. },
  2751. "files": [
  2752. "src/Qiniu/functions.php"
  2753. ]
  2754. },
  2755. "notification-url": "https://packagist.org/downloads/",
  2756. "license": [
  2757. "MIT"
  2758. ],
  2759. "authors": [
  2760. {
  2761. "name": "Qiniu",
  2762. "email": "sdk@qiniu.com",
  2763. "homepage": "http://www.qiniu.com"
  2764. }
  2765. ],
  2766. "description": "Qiniu Resource (Cloud) Storage SDK for PHP",
  2767. "homepage": "http://developer.qiniu.com/",
  2768. "keywords": [
  2769. "cloud",
  2770. "qiniu",
  2771. "sdk",
  2772. "storage"
  2773. ],
  2774. "time": "2019-10-28T10:23:23+00:00"
  2775. },
  2776. {
  2777. "name": "ralouphie/getallheaders",
  2778. "version": "3.0.3",
  2779. "source": {
  2780. "type": "git",
  2781. "url": "https://github.com/ralouphie/getallheaders.git",
  2782. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  2783. },
  2784. "dist": {
  2785. "type": "zip",
  2786. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  2787. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  2788. "shasum": "",
  2789. "mirrors": [
  2790. {
  2791. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2792. "preferred": true
  2793. }
  2794. ]
  2795. },
  2796. "require": {
  2797. "php": ">=5.6"
  2798. },
  2799. "require-dev": {
  2800. "php-coveralls/php-coveralls": "^2.1",
  2801. "phpunit/phpunit": "^5 || ^6.5"
  2802. },
  2803. "type": "library",
  2804. "autoload": {
  2805. "files": [
  2806. "src/getallheaders.php"
  2807. ]
  2808. },
  2809. "notification-url": "https://packagist.org/downloads/",
  2810. "license": [
  2811. "MIT"
  2812. ],
  2813. "authors": [
  2814. {
  2815. "name": "Ralph Khattar",
  2816. "email": "ralph.khattar@gmail.com"
  2817. }
  2818. ],
  2819. "description": "A polyfill for getallheaders.",
  2820. "time": "2019-03-08T08:55:37+00:00"
  2821. },
  2822. {
  2823. "name": "ramsey/uuid",
  2824. "version": "3.8.0",
  2825. "source": {
  2826. "type": "git",
  2827. "url": "https://github.com/ramsey/uuid.git",
  2828. "reference": "d09ea80159c1929d75b3f9c60504d613aeb4a1e3"
  2829. },
  2830. "dist": {
  2831. "type": "zip",
  2832. "url": "https://api.github.com/repos/ramsey/uuid/zipball/d09ea80159c1929d75b3f9c60504d613aeb4a1e3",
  2833. "reference": "d09ea80159c1929d75b3f9c60504d613aeb4a1e3",
  2834. "shasum": "",
  2835. "mirrors": [
  2836. {
  2837. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2838. "preferred": true
  2839. }
  2840. ]
  2841. },
  2842. "require": {
  2843. "paragonie/random_compat": "^1.0|^2.0|9.99.99",
  2844. "php": "^5.4 || ^7.0",
  2845. "symfony/polyfill-ctype": "^1.8"
  2846. },
  2847. "replace": {
  2848. "rhumsaa/uuid": "self.version"
  2849. },
  2850. "require-dev": {
  2851. "codeception/aspect-mock": "^1.0 | ~2.0.0",
  2852. "doctrine/annotations": "~1.2.0",
  2853. "goaop/framework": "1.0.0-alpha.2 | ^1.0 | ~2.1.0",
  2854. "ircmaxell/random-lib": "^1.1",
  2855. "jakub-onderka/php-parallel-lint": "^0.9.0",
  2856. "mockery/mockery": "^0.9.9",
  2857. "moontoast/math": "^1.1",
  2858. "php-mock/php-mock-phpunit": "^0.3|^1.1",
  2859. "phpunit/phpunit": "^4.7|^5.0|^6.5",
  2860. "squizlabs/php_codesniffer": "^2.3"
  2861. },
  2862. "suggest": {
  2863. "ext-ctype": "Provides support for PHP Ctype functions",
  2864. "ext-libsodium": "Provides the PECL libsodium extension for use with the SodiumRandomGenerator",
  2865. "ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator",
  2866. "ircmaxell/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  2867. "moontoast/math": "Provides support for converting UUID to 128-bit integer (in string form).",
  2868. "ramsey/uuid-console": "A console application for generating UUIDs with ramsey/uuid",
  2869. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  2870. },
  2871. "type": "library",
  2872. "extra": {
  2873. "branch-alias": {
  2874. "dev-master": "3.x-dev"
  2875. }
  2876. },
  2877. "autoload": {
  2878. "psr-4": {
  2879. "Ramsey\\Uuid\\": "src/"
  2880. }
  2881. },
  2882. "notification-url": "https://packagist.org/downloads/",
  2883. "license": [
  2884. "MIT"
  2885. ],
  2886. "authors": [
  2887. {
  2888. "name": "Marijn Huizendveld",
  2889. "email": "marijn.huizendveld@gmail.com"
  2890. },
  2891. {
  2892. "name": "Thibaud Fabre",
  2893. "email": "thibaud@aztech.io"
  2894. },
  2895. {
  2896. "name": "Ben Ramsey",
  2897. "email": "ben@benramsey.com",
  2898. "homepage": "https://benramsey.com"
  2899. }
  2900. ],
  2901. "description": "Formerly rhumsaa/uuid. A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).",
  2902. "homepage": "https://github.com/ramsey/uuid",
  2903. "keywords": [
  2904. "guid",
  2905. "identifier",
  2906. "uuid"
  2907. ],
  2908. "time": "2018-07-19T23:38:55+00:00"
  2909. },
  2910. {
  2911. "name": "swiftmailer/swiftmailer",
  2912. "version": "v6.2.1",
  2913. "source": {
  2914. "type": "git",
  2915. "url": "https://github.com/swiftmailer/swiftmailer.git",
  2916. "reference": "5397cd05b0a0f7937c47b0adcb4c60e5ab936b6a"
  2917. },
  2918. "dist": {
  2919. "type": "zip",
  2920. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/5397cd05b0a0f7937c47b0adcb4c60e5ab936b6a",
  2921. "reference": "5397cd05b0a0f7937c47b0adcb4c60e5ab936b6a",
  2922. "shasum": "",
  2923. "mirrors": [
  2924. {
  2925. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2926. "preferred": true
  2927. }
  2928. ]
  2929. },
  2930. "require": {
  2931. "egulias/email-validator": "~2.0",
  2932. "php": ">=7.0.0",
  2933. "symfony/polyfill-iconv": "^1.0",
  2934. "symfony/polyfill-intl-idn": "^1.10",
  2935. "symfony/polyfill-mbstring": "^1.0"
  2936. },
  2937. "require-dev": {
  2938. "mockery/mockery": "~0.9.1",
  2939. "symfony/phpunit-bridge": "^3.4.19|^4.1.8"
  2940. },
  2941. "suggest": {
  2942. "ext-intl": "Needed to support internationalized email addresses",
  2943. "true/punycode": "Needed to support internationalized email addresses, if ext-intl is not installed"
  2944. },
  2945. "type": "library",
  2946. "extra": {
  2947. "branch-alias": {
  2948. "dev-master": "6.2-dev"
  2949. }
  2950. },
  2951. "autoload": {
  2952. "files": [
  2953. "lib/swift_required.php"
  2954. ]
  2955. },
  2956. "notification-url": "https://packagist.org/downloads/",
  2957. "license": [
  2958. "MIT"
  2959. ],
  2960. "authors": [
  2961. {
  2962. "name": "Chris Corbyn"
  2963. },
  2964. {
  2965. "name": "Fabien Potencier",
  2966. "email": "fabien@symfony.com"
  2967. }
  2968. ],
  2969. "description": "Swiftmailer, free feature-rich PHP mailer",
  2970. "homepage": "https://swiftmailer.symfony.com",
  2971. "keywords": [
  2972. "email",
  2973. "mail",
  2974. "mailer"
  2975. ],
  2976. "time": "2019-04-21T09:21:45+00:00"
  2977. },
  2978. {
  2979. "name": "symfony/console",
  2980. "version": "v4.3.5",
  2981. "source": {
  2982. "type": "git",
  2983. "url": "https://github.com/symfony/console.git",
  2984. "reference": "929ddf360d401b958f611d44e726094ab46a7369"
  2985. },
  2986. "dist": {
  2987. "type": "zip",
  2988. "url": "https://api.github.com/repos/symfony/console/zipball/929ddf360d401b958f611d44e726094ab46a7369",
  2989. "reference": "929ddf360d401b958f611d44e726094ab46a7369",
  2990. "shasum": "",
  2991. "mirrors": [
  2992. {
  2993. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2994. "preferred": true
  2995. }
  2996. ]
  2997. },
  2998. "require": {
  2999. "php": "^7.1.3",
  3000. "symfony/polyfill-mbstring": "~1.0",
  3001. "symfony/polyfill-php73": "^1.8",
  3002. "symfony/service-contracts": "^1.1"
  3003. },
  3004. "conflict": {
  3005. "symfony/dependency-injection": "<3.4",
  3006. "symfony/event-dispatcher": "<4.3",
  3007. "symfony/process": "<3.3"
  3008. },
  3009. "provide": {
  3010. "psr/log-implementation": "1.0"
  3011. },
  3012. "require-dev": {
  3013. "psr/log": "~1.0",
  3014. "symfony/config": "~3.4|~4.0",
  3015. "symfony/dependency-injection": "~3.4|~4.0",
  3016. "symfony/event-dispatcher": "^4.3",
  3017. "symfony/lock": "~3.4|~4.0",
  3018. "symfony/process": "~3.4|~4.0",
  3019. "symfony/var-dumper": "^4.3"
  3020. },
  3021. "suggest": {
  3022. "psr/log": "For using the console logger",
  3023. "symfony/event-dispatcher": "",
  3024. "symfony/lock": "",
  3025. "symfony/process": ""
  3026. },
  3027. "type": "library",
  3028. "extra": {
  3029. "branch-alias": {
  3030. "dev-master": "4.3-dev"
  3031. }
  3032. },
  3033. "autoload": {
  3034. "psr-4": {
  3035. "Symfony\\Component\\Console\\": ""
  3036. },
  3037. "exclude-from-classmap": [
  3038. "/Tests/"
  3039. ]
  3040. },
  3041. "notification-url": "https://packagist.org/downloads/",
  3042. "license": [
  3043. "MIT"
  3044. ],
  3045. "authors": [
  3046. {
  3047. "name": "Fabien Potencier",
  3048. "email": "fabien@symfony.com"
  3049. },
  3050. {
  3051. "name": "Symfony Community",
  3052. "homepage": "https://symfony.com/contributors"
  3053. }
  3054. ],
  3055. "description": "Symfony Console Component",
  3056. "homepage": "https://symfony.com",
  3057. "time": "2019-10-07T12:36:49+00:00"
  3058. },
  3059. {
  3060. "name": "symfony/css-selector",
  3061. "version": "v4.3.5",
  3062. "source": {
  3063. "type": "git",
  3064. "url": "https://github.com/symfony/css-selector.git",
  3065. "reference": "f4b3ff6a549d9ed28b2b0ecd1781bf67cf220ee9"
  3066. },
  3067. "dist": {
  3068. "type": "zip",
  3069. "url": "https://api.github.com/repos/symfony/css-selector/zipball/f4b3ff6a549d9ed28b2b0ecd1781bf67cf220ee9",
  3070. "reference": "f4b3ff6a549d9ed28b2b0ecd1781bf67cf220ee9",
  3071. "shasum": "",
  3072. "mirrors": [
  3073. {
  3074. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3075. "preferred": true
  3076. }
  3077. ]
  3078. },
  3079. "require": {
  3080. "php": "^7.1.3"
  3081. },
  3082. "type": "library",
  3083. "extra": {
  3084. "branch-alias": {
  3085. "dev-master": "4.3-dev"
  3086. }
  3087. },
  3088. "autoload": {
  3089. "psr-4": {
  3090. "Symfony\\Component\\CssSelector\\": ""
  3091. },
  3092. "exclude-from-classmap": [
  3093. "/Tests/"
  3094. ]
  3095. },
  3096. "notification-url": "https://packagist.org/downloads/",
  3097. "license": [
  3098. "MIT"
  3099. ],
  3100. "authors": [
  3101. {
  3102. "name": "Fabien Potencier",
  3103. "email": "fabien@symfony.com"
  3104. },
  3105. {
  3106. "name": "Jean-François Simon",
  3107. "email": "jeanfrancois.simon@sensiolabs.com"
  3108. },
  3109. {
  3110. "name": "Symfony Community",
  3111. "homepage": "https://symfony.com/contributors"
  3112. }
  3113. ],
  3114. "description": "Symfony CssSelector Component",
  3115. "homepage": "https://symfony.com",
  3116. "time": "2019-10-02T08:36:26+00:00"
  3117. },
  3118. {
  3119. "name": "symfony/debug",
  3120. "version": "v4.3.5",
  3121. "source": {
  3122. "type": "git",
  3123. "url": "https://github.com/symfony/debug.git",
  3124. "reference": "cc5c1efd0edfcfd10b354750594a46b3dd2afbbe"
  3125. },
  3126. "dist": {
  3127. "type": "zip",
  3128. "url": "https://api.github.com/repos/symfony/debug/zipball/cc5c1efd0edfcfd10b354750594a46b3dd2afbbe",
  3129. "reference": "cc5c1efd0edfcfd10b354750594a46b3dd2afbbe",
  3130. "shasum": "",
  3131. "mirrors": [
  3132. {
  3133. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3134. "preferred": true
  3135. }
  3136. ]
  3137. },
  3138. "require": {
  3139. "php": "^7.1.3",
  3140. "psr/log": "~1.0"
  3141. },
  3142. "conflict": {
  3143. "symfony/http-kernel": "<3.4"
  3144. },
  3145. "require-dev": {
  3146. "symfony/http-kernel": "~3.4|~4.0"
  3147. },
  3148. "type": "library",
  3149. "extra": {
  3150. "branch-alias": {
  3151. "dev-master": "4.3-dev"
  3152. }
  3153. },
  3154. "autoload": {
  3155. "psr-4": {
  3156. "Symfony\\Component\\Debug\\": ""
  3157. },
  3158. "exclude-from-classmap": [
  3159. "/Tests/"
  3160. ]
  3161. },
  3162. "notification-url": "https://packagist.org/downloads/",
  3163. "license": [
  3164. "MIT"
  3165. ],
  3166. "authors": [
  3167. {
  3168. "name": "Fabien Potencier",
  3169. "email": "fabien@symfony.com"
  3170. },
  3171. {
  3172. "name": "Symfony Community",
  3173. "homepage": "https://symfony.com/contributors"
  3174. }
  3175. ],
  3176. "description": "Symfony Debug Component",
  3177. "homepage": "https://symfony.com",
  3178. "time": "2019-09-19T15:51:53+00:00"
  3179. },
  3180. {
  3181. "name": "symfony/event-dispatcher",
  3182. "version": "v4.3.5",
  3183. "source": {
  3184. "type": "git",
  3185. "url": "https://github.com/symfony/event-dispatcher.git",
  3186. "reference": "6229f58993e5a157f6096fc7145c0717d0be8807"
  3187. },
  3188. "dist": {
  3189. "type": "zip",
  3190. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/6229f58993e5a157f6096fc7145c0717d0be8807",
  3191. "reference": "6229f58993e5a157f6096fc7145c0717d0be8807",
  3192. "shasum": "",
  3193. "mirrors": [
  3194. {
  3195. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3196. "preferred": true
  3197. }
  3198. ]
  3199. },
  3200. "require": {
  3201. "php": "^7.1.3",
  3202. "symfony/event-dispatcher-contracts": "^1.1"
  3203. },
  3204. "conflict": {
  3205. "symfony/dependency-injection": "<3.4"
  3206. },
  3207. "provide": {
  3208. "psr/event-dispatcher-implementation": "1.0",
  3209. "symfony/event-dispatcher-implementation": "1.1"
  3210. },
  3211. "require-dev": {
  3212. "psr/log": "~1.0",
  3213. "symfony/config": "~3.4|~4.0",
  3214. "symfony/dependency-injection": "~3.4|~4.0",
  3215. "symfony/expression-language": "~3.4|~4.0",
  3216. "symfony/http-foundation": "^3.4|^4.0",
  3217. "symfony/service-contracts": "^1.1",
  3218. "symfony/stopwatch": "~3.4|~4.0"
  3219. },
  3220. "suggest": {
  3221. "symfony/dependency-injection": "",
  3222. "symfony/http-kernel": ""
  3223. },
  3224. "type": "library",
  3225. "extra": {
  3226. "branch-alias": {
  3227. "dev-master": "4.3-dev"
  3228. }
  3229. },
  3230. "autoload": {
  3231. "psr-4": {
  3232. "Symfony\\Component\\EventDispatcher\\": ""
  3233. },
  3234. "exclude-from-classmap": [
  3235. "/Tests/"
  3236. ]
  3237. },
  3238. "notification-url": "https://packagist.org/downloads/",
  3239. "license": [
  3240. "MIT"
  3241. ],
  3242. "authors": [
  3243. {
  3244. "name": "Fabien Potencier",
  3245. "email": "fabien@symfony.com"
  3246. },
  3247. {
  3248. "name": "Symfony Community",
  3249. "homepage": "https://symfony.com/contributors"
  3250. }
  3251. ],
  3252. "description": "Symfony EventDispatcher Component",
  3253. "homepage": "https://symfony.com",
  3254. "time": "2019-10-01T16:40:32+00:00"
  3255. },
  3256. {
  3257. "name": "symfony/event-dispatcher-contracts",
  3258. "version": "v1.1.7",
  3259. "source": {
  3260. "type": "git",
  3261. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  3262. "reference": "c43ab685673fb6c8d84220c77897b1d6cdbe1d18"
  3263. },
  3264. "dist": {
  3265. "type": "zip",
  3266. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/c43ab685673fb6c8d84220c77897b1d6cdbe1d18",
  3267. "reference": "c43ab685673fb6c8d84220c77897b1d6cdbe1d18",
  3268. "shasum": "",
  3269. "mirrors": [
  3270. {
  3271. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3272. "preferred": true
  3273. }
  3274. ]
  3275. },
  3276. "require": {
  3277. "php": "^7.1.3"
  3278. },
  3279. "suggest": {
  3280. "psr/event-dispatcher": "",
  3281. "symfony/event-dispatcher-implementation": ""
  3282. },
  3283. "type": "library",
  3284. "extra": {
  3285. "branch-alias": {
  3286. "dev-master": "1.1-dev"
  3287. }
  3288. },
  3289. "autoload": {
  3290. "psr-4": {
  3291. "Symfony\\Contracts\\EventDispatcher\\": ""
  3292. }
  3293. },
  3294. "notification-url": "https://packagist.org/downloads/",
  3295. "license": [
  3296. "MIT"
  3297. ],
  3298. "authors": [
  3299. {
  3300. "name": "Nicolas Grekas",
  3301. "email": "p@tchwork.com"
  3302. },
  3303. {
  3304. "name": "Symfony Community",
  3305. "homepage": "https://symfony.com/contributors"
  3306. }
  3307. ],
  3308. "description": "Generic abstractions related to dispatching event",
  3309. "homepage": "https://symfony.com",
  3310. "keywords": [
  3311. "abstractions",
  3312. "contracts",
  3313. "decoupling",
  3314. "interfaces",
  3315. "interoperability",
  3316. "standards"
  3317. ],
  3318. "time": "2019-09-17T09:54:03+00:00"
  3319. },
  3320. {
  3321. "name": "symfony/finder",
  3322. "version": "v4.3.5",
  3323. "source": {
  3324. "type": "git",
  3325. "url": "https://github.com/symfony/finder.git",
  3326. "reference": "5e575faa95548d0586f6bedaeabec259714e44d1"
  3327. },
  3328. "dist": {
  3329. "type": "zip",
  3330. "url": "https://api.github.com/repos/symfony/finder/zipball/5e575faa95548d0586f6bedaeabec259714e44d1",
  3331. "reference": "5e575faa95548d0586f6bedaeabec259714e44d1",
  3332. "shasum": "",
  3333. "mirrors": [
  3334. {
  3335. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3336. "preferred": true
  3337. }
  3338. ]
  3339. },
  3340. "require": {
  3341. "php": "^7.1.3"
  3342. },
  3343. "type": "library",
  3344. "extra": {
  3345. "branch-alias": {
  3346. "dev-master": "4.3-dev"
  3347. }
  3348. },
  3349. "autoload": {
  3350. "psr-4": {
  3351. "Symfony\\Component\\Finder\\": ""
  3352. },
  3353. "exclude-from-classmap": [
  3354. "/Tests/"
  3355. ]
  3356. },
  3357. "notification-url": "https://packagist.org/downloads/",
  3358. "license": [
  3359. "MIT"
  3360. ],
  3361. "authors": [
  3362. {
  3363. "name": "Fabien Potencier",
  3364. "email": "fabien@symfony.com"
  3365. },
  3366. {
  3367. "name": "Symfony Community",
  3368. "homepage": "https://symfony.com/contributors"
  3369. }
  3370. ],
  3371. "description": "Symfony Finder Component",
  3372. "homepage": "https://symfony.com",
  3373. "time": "2019-09-16T11:29:48+00:00"
  3374. },
  3375. {
  3376. "name": "symfony/http-foundation",
  3377. "version": "v4.3.5",
  3378. "source": {
  3379. "type": "git",
  3380. "url": "https://github.com/symfony/http-foundation.git",
  3381. "reference": "76590ced16d4674780863471bae10452b79210a5"
  3382. },
  3383. "dist": {
  3384. "type": "zip",
  3385. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/76590ced16d4674780863471bae10452b79210a5",
  3386. "reference": "76590ced16d4674780863471bae10452b79210a5",
  3387. "shasum": "",
  3388. "mirrors": [
  3389. {
  3390. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3391. "preferred": true
  3392. }
  3393. ]
  3394. },
  3395. "require": {
  3396. "php": "^7.1.3",
  3397. "symfony/mime": "^4.3",
  3398. "symfony/polyfill-mbstring": "~1.1"
  3399. },
  3400. "require-dev": {
  3401. "predis/predis": "~1.0",
  3402. "symfony/expression-language": "~3.4|~4.0"
  3403. },
  3404. "type": "library",
  3405. "extra": {
  3406. "branch-alias": {
  3407. "dev-master": "4.3-dev"
  3408. }
  3409. },
  3410. "autoload": {
  3411. "psr-4": {
  3412. "Symfony\\Component\\HttpFoundation\\": ""
  3413. },
  3414. "exclude-from-classmap": [
  3415. "/Tests/"
  3416. ]
  3417. },
  3418. "notification-url": "https://packagist.org/downloads/",
  3419. "license": [
  3420. "MIT"
  3421. ],
  3422. "authors": [
  3423. {
  3424. "name": "Fabien Potencier",
  3425. "email": "fabien@symfony.com"
  3426. },
  3427. {
  3428. "name": "Symfony Community",
  3429. "homepage": "https://symfony.com/contributors"
  3430. }
  3431. ],
  3432. "description": "Symfony HttpFoundation Component",
  3433. "homepage": "https://symfony.com",
  3434. "time": "2019-10-04T19:48:13+00:00"
  3435. },
  3436. {
  3437. "name": "symfony/http-kernel",
  3438. "version": "v4.3.5",
  3439. "source": {
  3440. "type": "git",
  3441. "url": "https://github.com/symfony/http-kernel.git",
  3442. "reference": "5f08141850932e8019c01d8988bf3ed6367d2991"
  3443. },
  3444. "dist": {
  3445. "type": "zip",
  3446. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/5f08141850932e8019c01d8988bf3ed6367d2991",
  3447. "reference": "5f08141850932e8019c01d8988bf3ed6367d2991",
  3448. "shasum": "",
  3449. "mirrors": [
  3450. {
  3451. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3452. "preferred": true
  3453. }
  3454. ]
  3455. },
  3456. "require": {
  3457. "php": "^7.1.3",
  3458. "psr/log": "~1.0",
  3459. "symfony/debug": "~3.4|~4.0",
  3460. "symfony/event-dispatcher": "^4.3",
  3461. "symfony/http-foundation": "^4.1.1",
  3462. "symfony/polyfill-ctype": "~1.8",
  3463. "symfony/polyfill-php73": "^1.9"
  3464. },
  3465. "conflict": {
  3466. "symfony/browser-kit": "<4.3",
  3467. "symfony/config": "<3.4",
  3468. "symfony/dependency-injection": "<4.3",
  3469. "symfony/translation": "<4.2",
  3470. "symfony/var-dumper": "<4.1.1",
  3471. "twig/twig": "<1.34|<2.4,>=2"
  3472. },
  3473. "provide": {
  3474. "psr/log-implementation": "1.0"
  3475. },
  3476. "require-dev": {
  3477. "psr/cache": "~1.0",
  3478. "symfony/browser-kit": "^4.3",
  3479. "symfony/config": "~3.4|~4.0",
  3480. "symfony/console": "~3.4|~4.0",
  3481. "symfony/css-selector": "~3.4|~4.0",
  3482. "symfony/dependency-injection": "^4.3",
  3483. "symfony/dom-crawler": "~3.4|~4.0",
  3484. "symfony/expression-language": "~3.4|~4.0",
  3485. "symfony/finder": "~3.4|~4.0",
  3486. "symfony/process": "~3.4|~4.0",
  3487. "symfony/routing": "~3.4|~4.0",
  3488. "symfony/stopwatch": "~3.4|~4.0",
  3489. "symfony/templating": "~3.4|~4.0",
  3490. "symfony/translation": "~4.2",
  3491. "symfony/translation-contracts": "^1.1",
  3492. "symfony/var-dumper": "^4.1.1",
  3493. "twig/twig": "^1.34|^2.4"
  3494. },
  3495. "suggest": {
  3496. "symfony/browser-kit": "",
  3497. "symfony/config": "",
  3498. "symfony/console": "",
  3499. "symfony/dependency-injection": "",
  3500. "symfony/var-dumper": ""
  3501. },
  3502. "type": "library",
  3503. "extra": {
  3504. "branch-alias": {
  3505. "dev-master": "4.3-dev"
  3506. }
  3507. },
  3508. "autoload": {
  3509. "psr-4": {
  3510. "Symfony\\Component\\HttpKernel\\": ""
  3511. },
  3512. "exclude-from-classmap": [
  3513. "/Tests/"
  3514. ]
  3515. },
  3516. "notification-url": "https://packagist.org/downloads/",
  3517. "license": [
  3518. "MIT"
  3519. ],
  3520. "authors": [
  3521. {
  3522. "name": "Fabien Potencier",
  3523. "email": "fabien@symfony.com"
  3524. },
  3525. {
  3526. "name": "Symfony Community",
  3527. "homepage": "https://symfony.com/contributors"
  3528. }
  3529. ],
  3530. "description": "Symfony HttpKernel Component",
  3531. "homepage": "https://symfony.com",
  3532. "time": "2019-10-07T15:06:41+00:00"
  3533. },
  3534. {
  3535. "name": "symfony/mime",
  3536. "version": "v4.3.5",
  3537. "source": {
  3538. "type": "git",
  3539. "url": "https://github.com/symfony/mime.git",
  3540. "reference": "32f71570547b91879fdbd9cf50317d556ae86916"
  3541. },
  3542. "dist": {
  3543. "type": "zip",
  3544. "url": "https://api.github.com/repos/symfony/mime/zipball/32f71570547b91879fdbd9cf50317d556ae86916",
  3545. "reference": "32f71570547b91879fdbd9cf50317d556ae86916",
  3546. "shasum": "",
  3547. "mirrors": [
  3548. {
  3549. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3550. "preferred": true
  3551. }
  3552. ]
  3553. },
  3554. "require": {
  3555. "php": "^7.1.3",
  3556. "symfony/polyfill-intl-idn": "^1.10",
  3557. "symfony/polyfill-mbstring": "^1.0"
  3558. },
  3559. "require-dev": {
  3560. "egulias/email-validator": "^2.1.10",
  3561. "symfony/dependency-injection": "~3.4|^4.1"
  3562. },
  3563. "type": "library",
  3564. "extra": {
  3565. "branch-alias": {
  3566. "dev-master": "4.3-dev"
  3567. }
  3568. },
  3569. "autoload": {
  3570. "psr-4": {
  3571. "Symfony\\Component\\Mime\\": ""
  3572. },
  3573. "exclude-from-classmap": [
  3574. "/Tests/"
  3575. ]
  3576. },
  3577. "notification-url": "https://packagist.org/downloads/",
  3578. "license": [
  3579. "MIT"
  3580. ],
  3581. "authors": [
  3582. {
  3583. "name": "Fabien Potencier",
  3584. "email": "fabien@symfony.com"
  3585. },
  3586. {
  3587. "name": "Symfony Community",
  3588. "homepage": "https://symfony.com/contributors"
  3589. }
  3590. ],
  3591. "description": "A library to manipulate MIME messages",
  3592. "homepage": "https://symfony.com",
  3593. "keywords": [
  3594. "mime",
  3595. "mime-type"
  3596. ],
  3597. "time": "2019-09-19T17:00:15+00:00"
  3598. },
  3599. {
  3600. "name": "symfony/polyfill-ctype",
  3601. "version": "v1.12.0",
  3602. "source": {
  3603. "type": "git",
  3604. "url": "https://github.com/symfony/polyfill-ctype.git",
  3605. "reference": "550ebaac289296ce228a706d0867afc34687e3f4"
  3606. },
  3607. "dist": {
  3608. "type": "zip",
  3609. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/550ebaac289296ce228a706d0867afc34687e3f4",
  3610. "reference": "550ebaac289296ce228a706d0867afc34687e3f4",
  3611. "shasum": "",
  3612. "mirrors": [
  3613. {
  3614. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3615. "preferred": true
  3616. }
  3617. ]
  3618. },
  3619. "require": {
  3620. "php": ">=5.3.3"
  3621. },
  3622. "suggest": {
  3623. "ext-ctype": "For best performance"
  3624. },
  3625. "type": "library",
  3626. "extra": {
  3627. "branch-alias": {
  3628. "dev-master": "1.12-dev"
  3629. }
  3630. },
  3631. "autoload": {
  3632. "psr-4": {
  3633. "Symfony\\Polyfill\\Ctype\\": ""
  3634. },
  3635. "files": [
  3636. "bootstrap.php"
  3637. ]
  3638. },
  3639. "notification-url": "https://packagist.org/downloads/",
  3640. "license": [
  3641. "MIT"
  3642. ],
  3643. "authors": [
  3644. {
  3645. "name": "Gert de Pagter",
  3646. "email": "BackEndTea@gmail.com"
  3647. },
  3648. {
  3649. "name": "Symfony Community",
  3650. "homepage": "https://symfony.com/contributors"
  3651. }
  3652. ],
  3653. "description": "Symfony polyfill for ctype functions",
  3654. "homepage": "https://symfony.com",
  3655. "keywords": [
  3656. "compatibility",
  3657. "ctype",
  3658. "polyfill",
  3659. "portable"
  3660. ],
  3661. "time": "2019-08-06T08:03:45+00:00"
  3662. },
  3663. {
  3664. "name": "symfony/polyfill-iconv",
  3665. "version": "v1.12.0",
  3666. "source": {
  3667. "type": "git",
  3668. "url": "https://github.com/symfony/polyfill-iconv.git",
  3669. "reference": "685968b11e61a347c18bf25db32effa478be610f"
  3670. },
  3671. "dist": {
  3672. "type": "zip",
  3673. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/685968b11e61a347c18bf25db32effa478be610f",
  3674. "reference": "685968b11e61a347c18bf25db32effa478be610f",
  3675. "shasum": "",
  3676. "mirrors": [
  3677. {
  3678. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3679. "preferred": true
  3680. }
  3681. ]
  3682. },
  3683. "require": {
  3684. "php": ">=5.3.3"
  3685. },
  3686. "suggest": {
  3687. "ext-iconv": "For best performance"
  3688. },
  3689. "type": "library",
  3690. "extra": {
  3691. "branch-alias": {
  3692. "dev-master": "1.12-dev"
  3693. }
  3694. },
  3695. "autoload": {
  3696. "psr-4": {
  3697. "Symfony\\Polyfill\\Iconv\\": ""
  3698. },
  3699. "files": [
  3700. "bootstrap.php"
  3701. ]
  3702. },
  3703. "notification-url": "https://packagist.org/downloads/",
  3704. "license": [
  3705. "MIT"
  3706. ],
  3707. "authors": [
  3708. {
  3709. "name": "Nicolas Grekas",
  3710. "email": "p@tchwork.com"
  3711. },
  3712. {
  3713. "name": "Symfony Community",
  3714. "homepage": "https://symfony.com/contributors"
  3715. }
  3716. ],
  3717. "description": "Symfony polyfill for the Iconv extension",
  3718. "homepage": "https://symfony.com",
  3719. "keywords": [
  3720. "compatibility",
  3721. "iconv",
  3722. "polyfill",
  3723. "portable",
  3724. "shim"
  3725. ],
  3726. "time": "2019-08-06T08:03:45+00:00"
  3727. },
  3728. {
  3729. "name": "symfony/polyfill-intl-idn",
  3730. "version": "v1.12.0",
  3731. "source": {
  3732. "type": "git",
  3733. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  3734. "reference": "6af626ae6fa37d396dc90a399c0ff08e5cfc45b2"
  3735. },
  3736. "dist": {
  3737. "type": "zip",
  3738. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/6af626ae6fa37d396dc90a399c0ff08e5cfc45b2",
  3739. "reference": "6af626ae6fa37d396dc90a399c0ff08e5cfc45b2",
  3740. "shasum": "",
  3741. "mirrors": [
  3742. {
  3743. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3744. "preferred": true
  3745. }
  3746. ]
  3747. },
  3748. "require": {
  3749. "php": ">=5.3.3",
  3750. "symfony/polyfill-mbstring": "^1.3",
  3751. "symfony/polyfill-php72": "^1.9"
  3752. },
  3753. "suggest": {
  3754. "ext-intl": "For best performance"
  3755. },
  3756. "type": "library",
  3757. "extra": {
  3758. "branch-alias": {
  3759. "dev-master": "1.12-dev"
  3760. }
  3761. },
  3762. "autoload": {
  3763. "psr-4": {
  3764. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  3765. },
  3766. "files": [
  3767. "bootstrap.php"
  3768. ]
  3769. },
  3770. "notification-url": "https://packagist.org/downloads/",
  3771. "license": [
  3772. "MIT"
  3773. ],
  3774. "authors": [
  3775. {
  3776. "name": "Laurent Bassin",
  3777. "email": "laurent@bassin.info"
  3778. },
  3779. {
  3780. "name": "Symfony Community",
  3781. "homepage": "https://symfony.com/contributors"
  3782. }
  3783. ],
  3784. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  3785. "homepage": "https://symfony.com",
  3786. "keywords": [
  3787. "compatibility",
  3788. "idn",
  3789. "intl",
  3790. "polyfill",
  3791. "portable",
  3792. "shim"
  3793. ],
  3794. "time": "2019-08-06T08:03:45+00:00"
  3795. },
  3796. {
  3797. "name": "symfony/polyfill-mbstring",
  3798. "version": "v1.12.0",
  3799. "source": {
  3800. "type": "git",
  3801. "url": "https://github.com/symfony/polyfill-mbstring.git",
  3802. "reference": "b42a2f66e8f1b15ccf25652c3424265923eb4f17"
  3803. },
  3804. "dist": {
  3805. "type": "zip",
  3806. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/b42a2f66e8f1b15ccf25652c3424265923eb4f17",
  3807. "reference": "b42a2f66e8f1b15ccf25652c3424265923eb4f17",
  3808. "shasum": "",
  3809. "mirrors": [
  3810. {
  3811. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3812. "preferred": true
  3813. }
  3814. ]
  3815. },
  3816. "require": {
  3817. "php": ">=5.3.3"
  3818. },
  3819. "suggest": {
  3820. "ext-mbstring": "For best performance"
  3821. },
  3822. "type": "library",
  3823. "extra": {
  3824. "branch-alias": {
  3825. "dev-master": "1.12-dev"
  3826. }
  3827. },
  3828. "autoload": {
  3829. "psr-4": {
  3830. "Symfony\\Polyfill\\Mbstring\\": ""
  3831. },
  3832. "files": [
  3833. "bootstrap.php"
  3834. ]
  3835. },
  3836. "notification-url": "https://packagist.org/downloads/",
  3837. "license": [
  3838. "MIT"
  3839. ],
  3840. "authors": [
  3841. {
  3842. "name": "Nicolas Grekas",
  3843. "email": "p@tchwork.com"
  3844. },
  3845. {
  3846. "name": "Symfony Community",
  3847. "homepage": "https://symfony.com/contributors"
  3848. }
  3849. ],
  3850. "description": "Symfony polyfill for the Mbstring extension",
  3851. "homepage": "https://symfony.com",
  3852. "keywords": [
  3853. "compatibility",
  3854. "mbstring",
  3855. "polyfill",
  3856. "portable",
  3857. "shim"
  3858. ],
  3859. "time": "2019-08-06T08:03:45+00:00"
  3860. },
  3861. {
  3862. "name": "symfony/polyfill-php72",
  3863. "version": "v1.12.0",
  3864. "source": {
  3865. "type": "git",
  3866. "url": "https://github.com/symfony/polyfill-php72.git",
  3867. "reference": "04ce3335667451138df4307d6a9b61565560199e"
  3868. },
  3869. "dist": {
  3870. "type": "zip",
  3871. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/04ce3335667451138df4307d6a9b61565560199e",
  3872. "reference": "04ce3335667451138df4307d6a9b61565560199e",
  3873. "shasum": "",
  3874. "mirrors": [
  3875. {
  3876. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3877. "preferred": true
  3878. }
  3879. ]
  3880. },
  3881. "require": {
  3882. "php": ">=5.3.3"
  3883. },
  3884. "type": "library",
  3885. "extra": {
  3886. "branch-alias": {
  3887. "dev-master": "1.12-dev"
  3888. }
  3889. },
  3890. "autoload": {
  3891. "psr-4": {
  3892. "Symfony\\Polyfill\\Php72\\": ""
  3893. },
  3894. "files": [
  3895. "bootstrap.php"
  3896. ]
  3897. },
  3898. "notification-url": "https://packagist.org/downloads/",
  3899. "license": [
  3900. "MIT"
  3901. ],
  3902. "authors": [
  3903. {
  3904. "name": "Nicolas Grekas",
  3905. "email": "p@tchwork.com"
  3906. },
  3907. {
  3908. "name": "Symfony Community",
  3909. "homepage": "https://symfony.com/contributors"
  3910. }
  3911. ],
  3912. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  3913. "homepage": "https://symfony.com",
  3914. "keywords": [
  3915. "compatibility",
  3916. "polyfill",
  3917. "portable",
  3918. "shim"
  3919. ],
  3920. "time": "2019-08-06T08:03:45+00:00"
  3921. },
  3922. {
  3923. "name": "symfony/polyfill-php73",
  3924. "version": "v1.12.0",
  3925. "source": {
  3926. "type": "git",
  3927. "url": "https://github.com/symfony/polyfill-php73.git",
  3928. "reference": "2ceb49eaccb9352bff54d22570276bb75ba4a188"
  3929. },
  3930. "dist": {
  3931. "type": "zip",
  3932. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/2ceb49eaccb9352bff54d22570276bb75ba4a188",
  3933. "reference": "2ceb49eaccb9352bff54d22570276bb75ba4a188",
  3934. "shasum": "",
  3935. "mirrors": [
  3936. {
  3937. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3938. "preferred": true
  3939. }
  3940. ]
  3941. },
  3942. "require": {
  3943. "php": ">=5.3.3"
  3944. },
  3945. "type": "library",
  3946. "extra": {
  3947. "branch-alias": {
  3948. "dev-master": "1.12-dev"
  3949. }
  3950. },
  3951. "autoload": {
  3952. "psr-4": {
  3953. "Symfony\\Polyfill\\Php73\\": ""
  3954. },
  3955. "files": [
  3956. "bootstrap.php"
  3957. ],
  3958. "classmap": [
  3959. "Resources/stubs"
  3960. ]
  3961. },
  3962. "notification-url": "https://packagist.org/downloads/",
  3963. "license": [
  3964. "MIT"
  3965. ],
  3966. "authors": [
  3967. {
  3968. "name": "Nicolas Grekas",
  3969. "email": "p@tchwork.com"
  3970. },
  3971. {
  3972. "name": "Symfony Community",
  3973. "homepage": "https://symfony.com/contributors"
  3974. }
  3975. ],
  3976. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  3977. "homepage": "https://symfony.com",
  3978. "keywords": [
  3979. "compatibility",
  3980. "polyfill",
  3981. "portable",
  3982. "shim"
  3983. ],
  3984. "time": "2019-08-06T08:03:45+00:00"
  3985. },
  3986. {
  3987. "name": "symfony/process",
  3988. "version": "v4.3.5",
  3989. "source": {
  3990. "type": "git",
  3991. "url": "https://github.com/symfony/process.git",
  3992. "reference": "50556892f3cc47d4200bfd1075314139c4c9ff4b"
  3993. },
  3994. "dist": {
  3995. "type": "zip",
  3996. "url": "https://api.github.com/repos/symfony/process/zipball/50556892f3cc47d4200bfd1075314139c4c9ff4b",
  3997. "reference": "50556892f3cc47d4200bfd1075314139c4c9ff4b",
  3998. "shasum": "",
  3999. "mirrors": [
  4000. {
  4001. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4002. "preferred": true
  4003. }
  4004. ]
  4005. },
  4006. "require": {
  4007. "php": "^7.1.3"
  4008. },
  4009. "type": "library",
  4010. "extra": {
  4011. "branch-alias": {
  4012. "dev-master": "4.3-dev"
  4013. }
  4014. },
  4015. "autoload": {
  4016. "psr-4": {
  4017. "Symfony\\Component\\Process\\": ""
  4018. },
  4019. "exclude-from-classmap": [
  4020. "/Tests/"
  4021. ]
  4022. },
  4023. "notification-url": "https://packagist.org/downloads/",
  4024. "license": [
  4025. "MIT"
  4026. ],
  4027. "authors": [
  4028. {
  4029. "name": "Fabien Potencier",
  4030. "email": "fabien@symfony.com"
  4031. },
  4032. {
  4033. "name": "Symfony Community",
  4034. "homepage": "https://symfony.com/contributors"
  4035. }
  4036. ],
  4037. "description": "Symfony Process Component",
  4038. "homepage": "https://symfony.com",
  4039. "time": "2019-09-26T21:17:10+00:00"
  4040. },
  4041. {
  4042. "name": "symfony/routing",
  4043. "version": "v4.3.5",
  4044. "source": {
  4045. "type": "git",
  4046. "url": "https://github.com/symfony/routing.git",
  4047. "reference": "3b174ef04fe66696524efad1e5f7a6c663d822ea"
  4048. },
  4049. "dist": {
  4050. "type": "zip",
  4051. "url": "https://api.github.com/repos/symfony/routing/zipball/3b174ef04fe66696524efad1e5f7a6c663d822ea",
  4052. "reference": "3b174ef04fe66696524efad1e5f7a6c663d822ea",
  4053. "shasum": "",
  4054. "mirrors": [
  4055. {
  4056. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4057. "preferred": true
  4058. }
  4059. ]
  4060. },
  4061. "require": {
  4062. "php": "^7.1.3"
  4063. },
  4064. "conflict": {
  4065. "symfony/config": "<4.2",
  4066. "symfony/dependency-injection": "<3.4",
  4067. "symfony/yaml": "<3.4"
  4068. },
  4069. "require-dev": {
  4070. "doctrine/annotations": "~1.2",
  4071. "psr/log": "~1.0",
  4072. "symfony/config": "~4.2",
  4073. "symfony/dependency-injection": "~3.4|~4.0",
  4074. "symfony/expression-language": "~3.4|~4.0",
  4075. "symfony/http-foundation": "~3.4|~4.0",
  4076. "symfony/yaml": "~3.4|~4.0"
  4077. },
  4078. "suggest": {
  4079. "doctrine/annotations": "For using the annotation loader",
  4080. "symfony/config": "For using the all-in-one router or any loader",
  4081. "symfony/expression-language": "For using expression matching",
  4082. "symfony/http-foundation": "For using a Symfony Request object",
  4083. "symfony/yaml": "For using the YAML loader"
  4084. },
  4085. "type": "library",
  4086. "extra": {
  4087. "branch-alias": {
  4088. "dev-master": "4.3-dev"
  4089. }
  4090. },
  4091. "autoload": {
  4092. "psr-4": {
  4093. "Symfony\\Component\\Routing\\": ""
  4094. },
  4095. "exclude-from-classmap": [
  4096. "/Tests/"
  4097. ]
  4098. },
  4099. "notification-url": "https://packagist.org/downloads/",
  4100. "license": [
  4101. "MIT"
  4102. ],
  4103. "authors": [
  4104. {
  4105. "name": "Fabien Potencier",
  4106. "email": "fabien@symfony.com"
  4107. },
  4108. {
  4109. "name": "Symfony Community",
  4110. "homepage": "https://symfony.com/contributors"
  4111. }
  4112. ],
  4113. "description": "Symfony Routing Component",
  4114. "homepage": "https://symfony.com",
  4115. "keywords": [
  4116. "router",
  4117. "routing",
  4118. "uri",
  4119. "url"
  4120. ],
  4121. "time": "2019-10-04T20:57:10+00:00"
  4122. },
  4123. {
  4124. "name": "symfony/service-contracts",
  4125. "version": "v1.1.7",
  4126. "source": {
  4127. "type": "git",
  4128. "url": "https://github.com/symfony/service-contracts.git",
  4129. "reference": "ffcde9615dc5bb4825b9f6aed07716f1f57faae0"
  4130. },
  4131. "dist": {
  4132. "type": "zip",
  4133. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/ffcde9615dc5bb4825b9f6aed07716f1f57faae0",
  4134. "reference": "ffcde9615dc5bb4825b9f6aed07716f1f57faae0",
  4135. "shasum": "",
  4136. "mirrors": [
  4137. {
  4138. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4139. "preferred": true
  4140. }
  4141. ]
  4142. },
  4143. "require": {
  4144. "php": "^7.1.3",
  4145. "psr/container": "^1.0"
  4146. },
  4147. "suggest": {
  4148. "symfony/service-implementation": ""
  4149. },
  4150. "type": "library",
  4151. "extra": {
  4152. "branch-alias": {
  4153. "dev-master": "1.1-dev"
  4154. }
  4155. },
  4156. "autoload": {
  4157. "psr-4": {
  4158. "Symfony\\Contracts\\Service\\": ""
  4159. }
  4160. },
  4161. "notification-url": "https://packagist.org/downloads/",
  4162. "license": [
  4163. "MIT"
  4164. ],
  4165. "authors": [
  4166. {
  4167. "name": "Nicolas Grekas",
  4168. "email": "p@tchwork.com"
  4169. },
  4170. {
  4171. "name": "Symfony Community",
  4172. "homepage": "https://symfony.com/contributors"
  4173. }
  4174. ],
  4175. "description": "Generic abstractions related to writing services",
  4176. "homepage": "https://symfony.com",
  4177. "keywords": [
  4178. "abstractions",
  4179. "contracts",
  4180. "decoupling",
  4181. "interfaces",
  4182. "interoperability",
  4183. "standards"
  4184. ],
  4185. "time": "2019-09-17T11:12:18+00:00"
  4186. },
  4187. {
  4188. "name": "symfony/translation",
  4189. "version": "v4.3.5",
  4190. "source": {
  4191. "type": "git",
  4192. "url": "https://github.com/symfony/translation.git",
  4193. "reference": "fe6193b066c457c144333c06aaa869a2d42a167f"
  4194. },
  4195. "dist": {
  4196. "type": "zip",
  4197. "url": "https://api.github.com/repos/symfony/translation/zipball/fe6193b066c457c144333c06aaa869a2d42a167f",
  4198. "reference": "fe6193b066c457c144333c06aaa869a2d42a167f",
  4199. "shasum": "",
  4200. "mirrors": [
  4201. {
  4202. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4203. "preferred": true
  4204. }
  4205. ]
  4206. },
  4207. "require": {
  4208. "php": "^7.1.3",
  4209. "symfony/polyfill-mbstring": "~1.0",
  4210. "symfony/translation-contracts": "^1.1.6"
  4211. },
  4212. "conflict": {
  4213. "symfony/config": "<3.4",
  4214. "symfony/dependency-injection": "<3.4",
  4215. "symfony/yaml": "<3.4"
  4216. },
  4217. "provide": {
  4218. "symfony/translation-implementation": "1.0"
  4219. },
  4220. "require-dev": {
  4221. "psr/log": "~1.0",
  4222. "symfony/config": "~3.4|~4.0",
  4223. "symfony/console": "~3.4|~4.0",
  4224. "symfony/dependency-injection": "~3.4|~4.0",
  4225. "symfony/finder": "~2.8|~3.0|~4.0",
  4226. "symfony/http-kernel": "~3.4|~4.0",
  4227. "symfony/intl": "~3.4|~4.0",
  4228. "symfony/service-contracts": "^1.1.2",
  4229. "symfony/var-dumper": "~3.4|~4.0",
  4230. "symfony/yaml": "~3.4|~4.0"
  4231. },
  4232. "suggest": {
  4233. "psr/log-implementation": "To use logging capability in translator",
  4234. "symfony/config": "",
  4235. "symfony/yaml": ""
  4236. },
  4237. "type": "library",
  4238. "extra": {
  4239. "branch-alias": {
  4240. "dev-master": "4.3-dev"
  4241. }
  4242. },
  4243. "autoload": {
  4244. "psr-4": {
  4245. "Symfony\\Component\\Translation\\": ""
  4246. },
  4247. "exclude-from-classmap": [
  4248. "/Tests/"
  4249. ]
  4250. },
  4251. "notification-url": "https://packagist.org/downloads/",
  4252. "license": [
  4253. "MIT"
  4254. ],
  4255. "authors": [
  4256. {
  4257. "name": "Fabien Potencier",
  4258. "email": "fabien@symfony.com"
  4259. },
  4260. {
  4261. "name": "Symfony Community",
  4262. "homepage": "https://symfony.com/contributors"
  4263. }
  4264. ],
  4265. "description": "Symfony Translation Component",
  4266. "homepage": "https://symfony.com",
  4267. "time": "2019-09-27T14:37:39+00:00"
  4268. },
  4269. {
  4270. "name": "symfony/translation-contracts",
  4271. "version": "v1.1.7",
  4272. "source": {
  4273. "type": "git",
  4274. "url": "https://github.com/symfony/translation-contracts.git",
  4275. "reference": "364518c132c95642e530d9b2d217acbc2ccac3e6"
  4276. },
  4277. "dist": {
  4278. "type": "zip",
  4279. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/364518c132c95642e530d9b2d217acbc2ccac3e6",
  4280. "reference": "364518c132c95642e530d9b2d217acbc2ccac3e6",
  4281. "shasum": "",
  4282. "mirrors": [
  4283. {
  4284. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4285. "preferred": true
  4286. }
  4287. ]
  4288. },
  4289. "require": {
  4290. "php": "^7.1.3"
  4291. },
  4292. "suggest": {
  4293. "symfony/translation-implementation": ""
  4294. },
  4295. "type": "library",
  4296. "extra": {
  4297. "branch-alias": {
  4298. "dev-master": "1.1-dev"
  4299. }
  4300. },
  4301. "autoload": {
  4302. "psr-4": {
  4303. "Symfony\\Contracts\\Translation\\": ""
  4304. }
  4305. },
  4306. "notification-url": "https://packagist.org/downloads/",
  4307. "license": [
  4308. "MIT"
  4309. ],
  4310. "authors": [
  4311. {
  4312. "name": "Nicolas Grekas",
  4313. "email": "p@tchwork.com"
  4314. },
  4315. {
  4316. "name": "Symfony Community",
  4317. "homepage": "https://symfony.com/contributors"
  4318. }
  4319. ],
  4320. "description": "Generic abstractions related to translation",
  4321. "homepage": "https://symfony.com",
  4322. "keywords": [
  4323. "abstractions",
  4324. "contracts",
  4325. "decoupling",
  4326. "interfaces",
  4327. "interoperability",
  4328. "standards"
  4329. ],
  4330. "time": "2019-09-17T11:12:18+00:00"
  4331. },
  4332. {
  4333. "name": "symfony/var-dumper",
  4334. "version": "v4.3.5",
  4335. "source": {
  4336. "type": "git",
  4337. "url": "https://github.com/symfony/var-dumper.git",
  4338. "reference": "bde8957fc415fdc6964f33916a3755737744ff05"
  4339. },
  4340. "dist": {
  4341. "type": "zip",
  4342. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/bde8957fc415fdc6964f33916a3755737744ff05",
  4343. "reference": "bde8957fc415fdc6964f33916a3755737744ff05",
  4344. "shasum": "",
  4345. "mirrors": [
  4346. {
  4347. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4348. "preferred": true
  4349. }
  4350. ]
  4351. },
  4352. "require": {
  4353. "php": "^7.1.3",
  4354. "symfony/polyfill-mbstring": "~1.0",
  4355. "symfony/polyfill-php72": "~1.5"
  4356. },
  4357. "conflict": {
  4358. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  4359. "symfony/console": "<3.4"
  4360. },
  4361. "require-dev": {
  4362. "ext-iconv": "*",
  4363. "symfony/console": "~3.4|~4.0",
  4364. "symfony/process": "~3.4|~4.0",
  4365. "twig/twig": "~1.34|~2.4"
  4366. },
  4367. "suggest": {
  4368. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  4369. "ext-intl": "To show region name in time zone dump",
  4370. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  4371. },
  4372. "bin": [
  4373. "Resources/bin/var-dump-server"
  4374. ],
  4375. "type": "library",
  4376. "extra": {
  4377. "branch-alias": {
  4378. "dev-master": "4.3-dev"
  4379. }
  4380. },
  4381. "autoload": {
  4382. "files": [
  4383. "Resources/functions/dump.php"
  4384. ],
  4385. "psr-4": {
  4386. "Symfony\\Component\\VarDumper\\": ""
  4387. },
  4388. "exclude-from-classmap": [
  4389. "/Tests/"
  4390. ]
  4391. },
  4392. "notification-url": "https://packagist.org/downloads/",
  4393. "license": [
  4394. "MIT"
  4395. ],
  4396. "authors": [
  4397. {
  4398. "name": "Nicolas Grekas",
  4399. "email": "p@tchwork.com"
  4400. },
  4401. {
  4402. "name": "Symfony Community",
  4403. "homepage": "https://symfony.com/contributors"
  4404. }
  4405. ],
  4406. "description": "Symfony mechanism for exploring and dumping PHP variables",
  4407. "homepage": "https://symfony.com",
  4408. "keywords": [
  4409. "debug",
  4410. "dump"
  4411. ],
  4412. "time": "2019-10-04T19:48:13+00:00"
  4413. },
  4414. {
  4415. "name": "te7a-houdini/laravel-trix",
  4416. "version": "2.0.1",
  4417. "source": {
  4418. "type": "git",
  4419. "url": "https://github.com/Te7a-Houdini/laravel-trix.git",
  4420. "reference": "495c4637eafc549a3933f9d9d11f4703e9b75967"
  4421. },
  4422. "dist": {
  4423. "type": "zip",
  4424. "url": "https://api.github.com/repos/Te7a-Houdini/laravel-trix/zipball/495c4637eafc549a3933f9d9d11f4703e9b75967",
  4425. "reference": "495c4637eafc549a3933f9d9d11f4703e9b75967",
  4426. "shasum": "",
  4427. "mirrors": [
  4428. {
  4429. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4430. "preferred": true
  4431. }
  4432. ]
  4433. },
  4434. "require": {
  4435. "laravel/framework": "~5.8.0|~6.0|~7.0",
  4436. "php": "^7.1"
  4437. },
  4438. "require-dev": {
  4439. "orchestra/testbench": "^3.5|~4.0|~5.0"
  4440. },
  4441. "type": "library",
  4442. "extra": {
  4443. "laravel": {
  4444. "providers": [
  4445. "Te7aHoudini\\LaravelTrix\\LaravelTrixServiceProvider"
  4446. ]
  4447. }
  4448. },
  4449. "autoload": {
  4450. "psr-4": {
  4451. "Te7aHoudini\\LaravelTrix\\": "src"
  4452. }
  4453. },
  4454. "notification-url": "https://packagist.org/downloads/",
  4455. "license": [
  4456. "MIT"
  4457. ],
  4458. "authors": [
  4459. {
  4460. "name": "Ahmed Abd El Ftah",
  4461. "email": "ahmedabdelftah95165@gmail.com",
  4462. "role": "Developer"
  4463. }
  4464. ],
  4465. "description": "trix editor for laravel inspired by ActionText for rails",
  4466. "homepage": "https://github.com/te7ahoudini/laravel-trix",
  4467. "keywords": [
  4468. "laravel-trix",
  4469. "te7a-houdini"
  4470. ],
  4471. "time": "2020-03-06T15:33:35+00:00"
  4472. },
  4473. {
  4474. "name": "tightenco/collect",
  4475. "version": "v5.8.35",
  4476. "source": {
  4477. "type": "git",
  4478. "url": "https://github.com/tightenco/collect.git",
  4479. "reference": "c93a7039e6207ad533a09109838fe80933fcc72c"
  4480. },
  4481. "dist": {
  4482. "type": "zip",
  4483. "url": "https://api.github.com/repos/tightenco/collect/zipball/c93a7039e6207ad533a09109838fe80933fcc72c",
  4484. "reference": "c93a7039e6207ad533a09109838fe80933fcc72c",
  4485. "shasum": "",
  4486. "mirrors": [
  4487. {
  4488. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4489. "preferred": true
  4490. }
  4491. ]
  4492. },
  4493. "require": {
  4494. "php": "^7.1.3",
  4495. "symfony/var-dumper": ">=3.4 <5"
  4496. },
  4497. "require-dev": {
  4498. "mockery/mockery": "^1.0",
  4499. "nesbot/carbon": "^1.26.3",
  4500. "phpunit/phpunit": "^7.0"
  4501. },
  4502. "type": "library",
  4503. "autoload": {
  4504. "files": [
  4505. "src/Collect/Support/helpers.php",
  4506. "src/Collect/Support/alias.php"
  4507. ],
  4508. "psr-4": {
  4509. "Tightenco\\Collect\\": "src/Collect"
  4510. }
  4511. },
  4512. "notification-url": "https://packagist.org/downloads/",
  4513. "license": [
  4514. "MIT"
  4515. ],
  4516. "authors": [
  4517. {
  4518. "name": "Taylor Otwell",
  4519. "email": "taylorotwell@gmail.com"
  4520. }
  4521. ],
  4522. "description": "Collect - Illuminate Collections as a separate package.",
  4523. "keywords": [
  4524. "collection",
  4525. "laravel"
  4526. ],
  4527. "time": "2019-09-17T18:57:01+00:00"
  4528. },
  4529. {
  4530. "name": "tijsverkoyen/css-to-inline-styles",
  4531. "version": "2.2.1",
  4532. "source": {
  4533. "type": "git",
  4534. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  4535. "reference": "0ed4a2ea4e0902dac0489e6436ebcd5bbcae9757"
  4536. },
  4537. "dist": {
  4538. "type": "zip",
  4539. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/0ed4a2ea4e0902dac0489e6436ebcd5bbcae9757",
  4540. "reference": "0ed4a2ea4e0902dac0489e6436ebcd5bbcae9757",
  4541. "shasum": "",
  4542. "mirrors": [
  4543. {
  4544. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4545. "preferred": true
  4546. }
  4547. ]
  4548. },
  4549. "require": {
  4550. "php": "^5.5 || ^7.0",
  4551. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0"
  4552. },
  4553. "require-dev": {
  4554. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  4555. },
  4556. "type": "library",
  4557. "extra": {
  4558. "branch-alias": {
  4559. "dev-master": "2.2.x-dev"
  4560. }
  4561. },
  4562. "autoload": {
  4563. "psr-4": {
  4564. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  4565. }
  4566. },
  4567. "notification-url": "https://packagist.org/downloads/",
  4568. "license": [
  4569. "BSD-3-Clause"
  4570. ],
  4571. "authors": [
  4572. {
  4573. "name": "Tijs Verkoyen",
  4574. "email": "css_to_inline_styles@verkoyen.eu",
  4575. "role": "Developer"
  4576. }
  4577. ],
  4578. "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.",
  4579. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  4580. "time": "2017-11-27T11:13:29+00:00"
  4581. },
  4582. {
  4583. "name": "vlucas/phpdotenv",
  4584. "version": "v3.6.0",
  4585. "source": {
  4586. "type": "git",
  4587. "url": "https://github.com/vlucas/phpdotenv.git",
  4588. "reference": "1bdf24f065975594f6a117f0f1f6cabf1333b156"
  4589. },
  4590. "dist": {
  4591. "type": "zip",
  4592. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/1bdf24f065975594f6a117f0f1f6cabf1333b156",
  4593. "reference": "1bdf24f065975594f6a117f0f1f6cabf1333b156",
  4594. "shasum": "",
  4595. "mirrors": [
  4596. {
  4597. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4598. "preferred": true
  4599. }
  4600. ]
  4601. },
  4602. "require": {
  4603. "php": "^5.4 || ^7.0",
  4604. "phpoption/phpoption": "^1.5",
  4605. "symfony/polyfill-ctype": "^1.9"
  4606. },
  4607. "require-dev": {
  4608. "phpunit/phpunit": "^4.8.35 || ^5.0 || ^6.0 || ^7.0"
  4609. },
  4610. "type": "library",
  4611. "extra": {
  4612. "branch-alias": {
  4613. "dev-master": "3.6-dev"
  4614. }
  4615. },
  4616. "autoload": {
  4617. "psr-4": {
  4618. "Dotenv\\": "src/"
  4619. }
  4620. },
  4621. "notification-url": "https://packagist.org/downloads/",
  4622. "license": [
  4623. "BSD-3-Clause"
  4624. ],
  4625. "authors": [
  4626. {
  4627. "name": "Graham Campbell",
  4628. "email": "graham@alt-three.com",
  4629. "homepage": "https://gjcampbell.co.uk/"
  4630. },
  4631. {
  4632. "name": "Vance Lucas",
  4633. "email": "vance@vancelucas.com",
  4634. "homepage": "https://vancelucas.com/"
  4635. }
  4636. ],
  4637. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  4638. "keywords": [
  4639. "dotenv",
  4640. "env",
  4641. "environment"
  4642. ],
  4643. "time": "2019-09-10T21:37:39+00:00"
  4644. }
  4645. ],
  4646. "packages-dev": [
  4647. {
  4648. "name": "barryvdh/laravel-debugbar",
  4649. "version": "v3.2.8",
  4650. "source": {
  4651. "type": "git",
  4652. "url": "https://github.com/barryvdh/laravel-debugbar.git",
  4653. "reference": "18208d64897ab732f6c04a19b319fe8f1d57a9c0"
  4654. },
  4655. "dist": {
  4656. "type": "zip",
  4657. "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/18208d64897ab732f6c04a19b319fe8f1d57a9c0",
  4658. "reference": "18208d64897ab732f6c04a19b319fe8f1d57a9c0",
  4659. "shasum": "",
  4660. "mirrors": [
  4661. {
  4662. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4663. "preferred": true
  4664. }
  4665. ]
  4666. },
  4667. "require": {
  4668. "illuminate/routing": "^5.5|^6",
  4669. "illuminate/session": "^5.5|^6",
  4670. "illuminate/support": "^5.5|^6",
  4671. "maximebf/debugbar": "~1.15.0",
  4672. "php": ">=7.0",
  4673. "symfony/debug": "^3|^4",
  4674. "symfony/finder": "^3|^4"
  4675. },
  4676. "require-dev": {
  4677. "laravel/framework": "5.5.x"
  4678. },
  4679. "type": "library",
  4680. "extra": {
  4681. "branch-alias": {
  4682. "dev-master": "3.2-dev"
  4683. },
  4684. "laravel": {
  4685. "providers": [
  4686. "Barryvdh\\Debugbar\\ServiceProvider"
  4687. ],
  4688. "aliases": {
  4689. "Debugbar": "Barryvdh\\Debugbar\\Facade"
  4690. }
  4691. }
  4692. },
  4693. "autoload": {
  4694. "psr-4": {
  4695. "Barryvdh\\Debugbar\\": "src/"
  4696. },
  4697. "files": [
  4698. "src/helpers.php"
  4699. ]
  4700. },
  4701. "notification-url": "https://packagist.org/downloads/",
  4702. "license": [
  4703. "MIT"
  4704. ],
  4705. "authors": [
  4706. {
  4707. "name": "Barry vd. Heuvel",
  4708. "email": "barryvdh@gmail.com"
  4709. }
  4710. ],
  4711. "description": "PHP Debugbar integration for Laravel",
  4712. "keywords": [
  4713. "debug",
  4714. "debugbar",
  4715. "laravel",
  4716. "profiler",
  4717. "webprofiler"
  4718. ],
  4719. "time": "2019-08-29T07:01:03+00:00"
  4720. },
  4721. {
  4722. "name": "beyondcode/laravel-dump-server",
  4723. "version": "1.3.0",
  4724. "source": {
  4725. "type": "git",
  4726. "url": "https://github.com/beyondcode/laravel-dump-server.git",
  4727. "reference": "fcc88fa66895f8c1ff83f6145a5eff5fa2a0739a"
  4728. },
  4729. "dist": {
  4730. "type": "zip",
  4731. "url": "https://api.github.com/repos/beyondcode/laravel-dump-server/zipball/fcc88fa66895f8c1ff83f6145a5eff5fa2a0739a",
  4732. "reference": "fcc88fa66895f8c1ff83f6145a5eff5fa2a0739a",
  4733. "shasum": "",
  4734. "mirrors": [
  4735. {
  4736. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4737. "preferred": true
  4738. }
  4739. ]
  4740. },
  4741. "require": {
  4742. "illuminate/console": "5.6.*|5.7.*|5.8.*|^6.0",
  4743. "illuminate/http": "5.6.*|5.7.*|5.8.*|^6.0",
  4744. "illuminate/support": "5.6.*|5.7.*|5.8.*|^6.0",
  4745. "php": "^7.1",
  4746. "symfony/var-dumper": "^4.1.1"
  4747. },
  4748. "require-dev": {
  4749. "larapack/dd": "^1.0",
  4750. "phpunit/phpunit": "^7.0"
  4751. },
  4752. "type": "library",
  4753. "extra": {
  4754. "laravel": {
  4755. "providers": [
  4756. "BeyondCode\\DumpServer\\DumpServerServiceProvider"
  4757. ]
  4758. }
  4759. },
  4760. "autoload": {
  4761. "psr-4": {
  4762. "BeyondCode\\DumpServer\\": "src"
  4763. },
  4764. "files": [
  4765. "helpers.php"
  4766. ]
  4767. },
  4768. "notification-url": "https://packagist.org/downloads/",
  4769. "license": [
  4770. "MIT"
  4771. ],
  4772. "authors": [
  4773. {
  4774. "name": "Marcel Pociot",
  4775. "email": "marcel@beyondco.de",
  4776. "homepage": "https://beyondco.de",
  4777. "role": "Developer"
  4778. }
  4779. ],
  4780. "description": "Symfony Var-Dump Server for Laravel",
  4781. "homepage": "https://github.com/beyondcode/laravel-dump-server",
  4782. "keywords": [
  4783. "beyondcode",
  4784. "laravel-dump-server"
  4785. ],
  4786. "time": "2019-08-11T13:17:40+00:00"
  4787. },
  4788. {
  4789. "name": "doctrine/instantiator",
  4790. "version": "1.2.0",
  4791. "source": {
  4792. "type": "git",
  4793. "url": "https://github.com/doctrine/instantiator.git",
  4794. "reference": "a2c590166b2133a4633738648b6b064edae0814a"
  4795. },
  4796. "dist": {
  4797. "type": "zip",
  4798. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/a2c590166b2133a4633738648b6b064edae0814a",
  4799. "reference": "a2c590166b2133a4633738648b6b064edae0814a",
  4800. "shasum": "",
  4801. "mirrors": [
  4802. {
  4803. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4804. "preferred": true
  4805. }
  4806. ]
  4807. },
  4808. "require": {
  4809. "php": "^7.1"
  4810. },
  4811. "require-dev": {
  4812. "doctrine/coding-standard": "^6.0",
  4813. "ext-pdo": "*",
  4814. "ext-phar": "*",
  4815. "phpbench/phpbench": "^0.13",
  4816. "phpstan/phpstan-phpunit": "^0.11",
  4817. "phpstan/phpstan-shim": "^0.11",
  4818. "phpunit/phpunit": "^7.0"
  4819. },
  4820. "type": "library",
  4821. "extra": {
  4822. "branch-alias": {
  4823. "dev-master": "1.2.x-dev"
  4824. }
  4825. },
  4826. "autoload": {
  4827. "psr-4": {
  4828. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  4829. }
  4830. },
  4831. "notification-url": "https://packagist.org/downloads/",
  4832. "license": [
  4833. "MIT"
  4834. ],
  4835. "authors": [
  4836. {
  4837. "name": "Marco Pivetta",
  4838. "email": "ocramius@gmail.com",
  4839. "homepage": "http://ocramius.github.com/"
  4840. }
  4841. ],
  4842. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  4843. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  4844. "keywords": [
  4845. "constructor",
  4846. "instantiate"
  4847. ],
  4848. "time": "2019-03-17T17:37:11+00:00"
  4849. },
  4850. {
  4851. "name": "filp/whoops",
  4852. "version": "2.5.0",
  4853. "source": {
  4854. "type": "git",
  4855. "url": "https://github.com/filp/whoops.git",
  4856. "reference": "cde50e6720a39fdacb240159d3eea6865d51fd96"
  4857. },
  4858. "dist": {
  4859. "type": "zip",
  4860. "url": "https://api.github.com/repos/filp/whoops/zipball/cde50e6720a39fdacb240159d3eea6865d51fd96",
  4861. "reference": "cde50e6720a39fdacb240159d3eea6865d51fd96",
  4862. "shasum": "",
  4863. "mirrors": [
  4864. {
  4865. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4866. "preferred": true
  4867. }
  4868. ]
  4869. },
  4870. "require": {
  4871. "php": "^5.5.9 || ^7.0",
  4872. "psr/log": "^1.0.1"
  4873. },
  4874. "require-dev": {
  4875. "mockery/mockery": "^0.9 || ^1.0",
  4876. "phpunit/phpunit": "^4.8.35 || ^5.7",
  4877. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0"
  4878. },
  4879. "suggest": {
  4880. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  4881. "whoops/soap": "Formats errors as SOAP responses"
  4882. },
  4883. "type": "library",
  4884. "extra": {
  4885. "branch-alias": {
  4886. "dev-master": "2.2-dev"
  4887. }
  4888. },
  4889. "autoload": {
  4890. "psr-4": {
  4891. "Whoops\\": "src/Whoops/"
  4892. }
  4893. },
  4894. "notification-url": "https://packagist.org/downloads/",
  4895. "license": [
  4896. "MIT"
  4897. ],
  4898. "authors": [
  4899. {
  4900. "name": "Filipe Dobreira",
  4901. "homepage": "https://github.com/filp",
  4902. "role": "Developer"
  4903. }
  4904. ],
  4905. "description": "php error handling for cool kids",
  4906. "homepage": "https://filp.github.io/whoops/",
  4907. "keywords": [
  4908. "error",
  4909. "exception",
  4910. "handling",
  4911. "library",
  4912. "throwable",
  4913. "whoops"
  4914. ],
  4915. "time": "2019-08-07T09:00:00+00:00"
  4916. },
  4917. {
  4918. "name": "fzaninotto/faker",
  4919. "version": "v1.8.0",
  4920. "source": {
  4921. "type": "git",
  4922. "url": "https://github.com/fzaninotto/Faker.git",
  4923. "reference": "f72816b43e74063c8b10357394b6bba8cb1c10de"
  4924. },
  4925. "dist": {
  4926. "type": "zip",
  4927. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/f72816b43e74063c8b10357394b6bba8cb1c10de",
  4928. "reference": "f72816b43e74063c8b10357394b6bba8cb1c10de",
  4929. "shasum": "",
  4930. "mirrors": [
  4931. {
  4932. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4933. "preferred": true
  4934. }
  4935. ]
  4936. },
  4937. "require": {
  4938. "php": "^5.3.3 || ^7.0"
  4939. },
  4940. "require-dev": {
  4941. "ext-intl": "*",
  4942. "phpunit/phpunit": "^4.8.35 || ^5.7",
  4943. "squizlabs/php_codesniffer": "^1.5"
  4944. },
  4945. "type": "library",
  4946. "extra": {
  4947. "branch-alias": {
  4948. "dev-master": "1.8-dev"
  4949. }
  4950. },
  4951. "autoload": {
  4952. "psr-4": {
  4953. "Faker\\": "src/Faker/"
  4954. }
  4955. },
  4956. "notification-url": "https://packagist.org/downloads/",
  4957. "license": [
  4958. "MIT"
  4959. ],
  4960. "authors": [
  4961. {
  4962. "name": "François Zaninotto"
  4963. }
  4964. ],
  4965. "description": "Faker is a PHP library that generates fake data for you.",
  4966. "keywords": [
  4967. "data",
  4968. "faker",
  4969. "fixtures"
  4970. ],
  4971. "time": "2018-07-12T10:23:15+00:00"
  4972. },
  4973. {
  4974. "name": "hamcrest/hamcrest-php",
  4975. "version": "v2.0.0",
  4976. "source": {
  4977. "type": "git",
  4978. "url": "https://github.com/hamcrest/hamcrest-php.git",
  4979. "reference": "776503d3a8e85d4f9a1148614f95b7a608b046ad"
  4980. },
  4981. "dist": {
  4982. "type": "zip",
  4983. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/776503d3a8e85d4f9a1148614f95b7a608b046ad",
  4984. "reference": "776503d3a8e85d4f9a1148614f95b7a608b046ad",
  4985. "shasum": "",
  4986. "mirrors": [
  4987. {
  4988. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4989. "preferred": true
  4990. }
  4991. ]
  4992. },
  4993. "require": {
  4994. "php": "^5.3|^7.0"
  4995. },
  4996. "replace": {
  4997. "cordoval/hamcrest-php": "*",
  4998. "davedevelopment/hamcrest-php": "*",
  4999. "kodova/hamcrest-php": "*"
  5000. },
  5001. "require-dev": {
  5002. "phpunit/php-file-iterator": "1.3.3",
  5003. "phpunit/phpunit": "~4.0",
  5004. "satooshi/php-coveralls": "^1.0"
  5005. },
  5006. "type": "library",
  5007. "extra": {
  5008. "branch-alias": {
  5009. "dev-master": "2.0-dev"
  5010. }
  5011. },
  5012. "autoload": {
  5013. "classmap": [
  5014. "hamcrest"
  5015. ]
  5016. },
  5017. "notification-url": "https://packagist.org/downloads/",
  5018. "license": [
  5019. "BSD"
  5020. ],
  5021. "description": "This is the PHP port of Hamcrest Matchers",
  5022. "keywords": [
  5023. "test"
  5024. ],
  5025. "time": "2016-01-20T08:20:44+00:00"
  5026. },
  5027. {
  5028. "name": "maximebf/debugbar",
  5029. "version": "v1.15.1",
  5030. "source": {
  5031. "type": "git",
  5032. "url": "https://github.com/maximebf/php-debugbar.git",
  5033. "reference": "6c4277f6117e4864966c9cb58fb835cee8c74a1e"
  5034. },
  5035. "dist": {
  5036. "type": "zip",
  5037. "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/6c4277f6117e4864966c9cb58fb835cee8c74a1e",
  5038. "reference": "6c4277f6117e4864966c9cb58fb835cee8c74a1e",
  5039. "shasum": "",
  5040. "mirrors": [
  5041. {
  5042. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5043. "preferred": true
  5044. }
  5045. ]
  5046. },
  5047. "require": {
  5048. "php": ">=5.6",
  5049. "psr/log": "^1.0",
  5050. "symfony/var-dumper": "^2.6|^3|^4"
  5051. },
  5052. "require-dev": {
  5053. "phpunit/phpunit": "^5"
  5054. },
  5055. "suggest": {
  5056. "kriswallsmith/assetic": "The best way to manage assets",
  5057. "monolog/monolog": "Log using Monolog",
  5058. "predis/predis": "Redis storage"
  5059. },
  5060. "type": "library",
  5061. "extra": {
  5062. "branch-alias": {
  5063. "dev-master": "1.15-dev"
  5064. }
  5065. },
  5066. "autoload": {
  5067. "psr-4": {
  5068. "DebugBar\\": "src/DebugBar/"
  5069. }
  5070. },
  5071. "notification-url": "https://packagist.org/downloads/",
  5072. "license": [
  5073. "MIT"
  5074. ],
  5075. "authors": [
  5076. {
  5077. "name": "Maxime Bouroumeau-Fuseau",
  5078. "email": "maxime.bouroumeau@gmail.com",
  5079. "homepage": "http://maximebf.com"
  5080. },
  5081. {
  5082. "name": "Barry vd. Heuvel",
  5083. "email": "barryvdh@gmail.com"
  5084. }
  5085. ],
  5086. "description": "Debug bar in the browser for php application",
  5087. "homepage": "https://github.com/maximebf/php-debugbar",
  5088. "keywords": [
  5089. "debug",
  5090. "debugbar"
  5091. ],
  5092. "time": "2019-09-24T14:55:42+00:00"
  5093. },
  5094. {
  5095. "name": "mockery/mockery",
  5096. "version": "1.2.4",
  5097. "source": {
  5098. "type": "git",
  5099. "url": "https://github.com/mockery/mockery.git",
  5100. "reference": "b3453f75fd23d9fd41685f2148f4abeacabc6405"
  5101. },
  5102. "dist": {
  5103. "type": "zip",
  5104. "url": "https://api.github.com/repos/mockery/mockery/zipball/b3453f75fd23d9fd41685f2148f4abeacabc6405",
  5105. "reference": "b3453f75fd23d9fd41685f2148f4abeacabc6405",
  5106. "shasum": "",
  5107. "mirrors": [
  5108. {
  5109. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5110. "preferred": true
  5111. }
  5112. ]
  5113. },
  5114. "require": {
  5115. "hamcrest/hamcrest-php": "~2.0",
  5116. "lib-pcre": ">=7.0",
  5117. "php": ">=5.6.0"
  5118. },
  5119. "require-dev": {
  5120. "phpunit/phpunit": "~5.7.10|~6.5|~7.0|~8.0"
  5121. },
  5122. "type": "library",
  5123. "extra": {
  5124. "branch-alias": {
  5125. "dev-master": "1.2.x-dev"
  5126. }
  5127. },
  5128. "autoload": {
  5129. "psr-0": {
  5130. "Mockery": "library/"
  5131. }
  5132. },
  5133. "notification-url": "https://packagist.org/downloads/",
  5134. "license": [
  5135. "BSD-3-Clause"
  5136. ],
  5137. "authors": [
  5138. {
  5139. "name": "Pádraic Brady",
  5140. "email": "padraic.brady@gmail.com",
  5141. "homepage": "http://blog.astrumfutura.com"
  5142. },
  5143. {
  5144. "name": "Dave Marshall",
  5145. "email": "dave.marshall@atstsolutions.co.uk",
  5146. "homepage": "http://davedevelopment.co.uk"
  5147. }
  5148. ],
  5149. "description": "Mockery is a simple yet flexible PHP mock object framework",
  5150. "homepage": "https://github.com/mockery/mockery",
  5151. "keywords": [
  5152. "BDD",
  5153. "TDD",
  5154. "library",
  5155. "mock",
  5156. "mock objects",
  5157. "mockery",
  5158. "stub",
  5159. "test",
  5160. "test double",
  5161. "testing"
  5162. ],
  5163. "time": "2019-09-30T08:30:27+00:00"
  5164. },
  5165. {
  5166. "name": "myclabs/deep-copy",
  5167. "version": "1.9.3",
  5168. "source": {
  5169. "type": "git",
  5170. "url": "https://github.com/myclabs/DeepCopy.git",
  5171. "reference": "007c053ae6f31bba39dfa19a7726f56e9763bbea"
  5172. },
  5173. "dist": {
  5174. "type": "zip",
  5175. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/007c053ae6f31bba39dfa19a7726f56e9763bbea",
  5176. "reference": "007c053ae6f31bba39dfa19a7726f56e9763bbea",
  5177. "shasum": "",
  5178. "mirrors": [
  5179. {
  5180. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5181. "preferred": true
  5182. }
  5183. ]
  5184. },
  5185. "require": {
  5186. "php": "^7.1"
  5187. },
  5188. "replace": {
  5189. "myclabs/deep-copy": "self.version"
  5190. },
  5191. "require-dev": {
  5192. "doctrine/collections": "^1.0",
  5193. "doctrine/common": "^2.6",
  5194. "phpunit/phpunit": "^7.1"
  5195. },
  5196. "type": "library",
  5197. "autoload": {
  5198. "psr-4": {
  5199. "DeepCopy\\": "src/DeepCopy/"
  5200. },
  5201. "files": [
  5202. "src/DeepCopy/deep_copy.php"
  5203. ]
  5204. },
  5205. "notification-url": "https://packagist.org/downloads/",
  5206. "license": [
  5207. "MIT"
  5208. ],
  5209. "description": "Create deep copies (clones) of your objects",
  5210. "keywords": [
  5211. "clone",
  5212. "copy",
  5213. "duplicate",
  5214. "object",
  5215. "object graph"
  5216. ],
  5217. "time": "2019-08-09T12:45:53+00:00"
  5218. },
  5219. {
  5220. "name": "nunomaduro/collision",
  5221. "version": "v3.0.1",
  5222. "source": {
  5223. "type": "git",
  5224. "url": "https://github.com/nunomaduro/collision.git",
  5225. "reference": "af42d339fe2742295a54f6fdd42aaa6f8c4aca68"
  5226. },
  5227. "dist": {
  5228. "type": "zip",
  5229. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/af42d339fe2742295a54f6fdd42aaa6f8c4aca68",
  5230. "reference": "af42d339fe2742295a54f6fdd42aaa6f8c4aca68",
  5231. "shasum": "",
  5232. "mirrors": [
  5233. {
  5234. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5235. "preferred": true
  5236. }
  5237. ]
  5238. },
  5239. "require": {
  5240. "filp/whoops": "^2.1.4",
  5241. "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
  5242. "php": "^7.1",
  5243. "symfony/console": "~2.8|~3.3|~4.0"
  5244. },
  5245. "require-dev": {
  5246. "laravel/framework": "5.8.*",
  5247. "nunomaduro/larastan": "^0.3.0",
  5248. "phpstan/phpstan": "^0.11",
  5249. "phpunit/phpunit": "~8.0"
  5250. },
  5251. "type": "library",
  5252. "extra": {
  5253. "laravel": {
  5254. "providers": [
  5255. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  5256. ]
  5257. }
  5258. },
  5259. "autoload": {
  5260. "psr-4": {
  5261. "NunoMaduro\\Collision\\": "src/"
  5262. }
  5263. },
  5264. "notification-url": "https://packagist.org/downloads/",
  5265. "license": [
  5266. "MIT"
  5267. ],
  5268. "authors": [
  5269. {
  5270. "name": "Nuno Maduro",
  5271. "email": "enunomaduro@gmail.com"
  5272. }
  5273. ],
  5274. "description": "Cli error handling for console/command-line PHP applications.",
  5275. "keywords": [
  5276. "artisan",
  5277. "cli",
  5278. "command-line",
  5279. "console",
  5280. "error",
  5281. "handling",
  5282. "laravel",
  5283. "laravel-zero",
  5284. "php",
  5285. "symfony"
  5286. ],
  5287. "time": "2019-03-07T21:35:13+00:00"
  5288. },
  5289. {
  5290. "name": "phar-io/manifest",
  5291. "version": "1.0.3",
  5292. "source": {
  5293. "type": "git",
  5294. "url": "https://github.com/phar-io/manifest.git",
  5295. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4"
  5296. },
  5297. "dist": {
  5298. "type": "zip",
  5299. "url": "https://api.github.com/repos/phar-io/manifest/zipball/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  5300. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  5301. "shasum": "",
  5302. "mirrors": [
  5303. {
  5304. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5305. "preferred": true
  5306. }
  5307. ]
  5308. },
  5309. "require": {
  5310. "ext-dom": "*",
  5311. "ext-phar": "*",
  5312. "phar-io/version": "^2.0",
  5313. "php": "^5.6 || ^7.0"
  5314. },
  5315. "type": "library",
  5316. "extra": {
  5317. "branch-alias": {
  5318. "dev-master": "1.0.x-dev"
  5319. }
  5320. },
  5321. "autoload": {
  5322. "classmap": [
  5323. "src/"
  5324. ]
  5325. },
  5326. "notification-url": "https://packagist.org/downloads/",
  5327. "license": [
  5328. "BSD-3-Clause"
  5329. ],
  5330. "authors": [
  5331. {
  5332. "name": "Arne Blankerts",
  5333. "email": "arne@blankerts.de",
  5334. "role": "Developer"
  5335. },
  5336. {
  5337. "name": "Sebastian Heuer",
  5338. "email": "sebastian@phpeople.de",
  5339. "role": "Developer"
  5340. },
  5341. {
  5342. "name": "Sebastian Bergmann",
  5343. "email": "sebastian@phpunit.de",
  5344. "role": "Developer"
  5345. }
  5346. ],
  5347. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  5348. "time": "2018-07-08T19:23:20+00:00"
  5349. },
  5350. {
  5351. "name": "phar-io/version",
  5352. "version": "2.0.1",
  5353. "source": {
  5354. "type": "git",
  5355. "url": "https://github.com/phar-io/version.git",
  5356. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6"
  5357. },
  5358. "dist": {
  5359. "type": "zip",
  5360. "url": "https://api.github.com/repos/phar-io/version/zipball/45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  5361. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  5362. "shasum": "",
  5363. "mirrors": [
  5364. {
  5365. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5366. "preferred": true
  5367. }
  5368. ]
  5369. },
  5370. "require": {
  5371. "php": "^5.6 || ^7.0"
  5372. },
  5373. "type": "library",
  5374. "autoload": {
  5375. "classmap": [
  5376. "src/"
  5377. ]
  5378. },
  5379. "notification-url": "https://packagist.org/downloads/",
  5380. "license": [
  5381. "BSD-3-Clause"
  5382. ],
  5383. "authors": [
  5384. {
  5385. "name": "Arne Blankerts",
  5386. "email": "arne@blankerts.de",
  5387. "role": "Developer"
  5388. },
  5389. {
  5390. "name": "Sebastian Heuer",
  5391. "email": "sebastian@phpeople.de",
  5392. "role": "Developer"
  5393. },
  5394. {
  5395. "name": "Sebastian Bergmann",
  5396. "email": "sebastian@phpunit.de",
  5397. "role": "Developer"
  5398. }
  5399. ],
  5400. "description": "Library for handling version information and constraints",
  5401. "time": "2018-07-08T19:19:57+00:00"
  5402. },
  5403. {
  5404. "name": "phpdocumentor/reflection-common",
  5405. "version": "2.0.0",
  5406. "source": {
  5407. "type": "git",
  5408. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  5409. "reference": "63a995caa1ca9e5590304cd845c15ad6d482a62a"
  5410. },
  5411. "dist": {
  5412. "type": "zip",
  5413. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/63a995caa1ca9e5590304cd845c15ad6d482a62a",
  5414. "reference": "63a995caa1ca9e5590304cd845c15ad6d482a62a",
  5415. "shasum": "",
  5416. "mirrors": [
  5417. {
  5418. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5419. "preferred": true
  5420. }
  5421. ]
  5422. },
  5423. "require": {
  5424. "php": ">=7.1"
  5425. },
  5426. "require-dev": {
  5427. "phpunit/phpunit": "~6"
  5428. },
  5429. "type": "library",
  5430. "extra": {
  5431. "branch-alias": {
  5432. "dev-master": "2.x-dev"
  5433. }
  5434. },
  5435. "autoload": {
  5436. "psr-4": {
  5437. "phpDocumentor\\Reflection\\": "src/"
  5438. }
  5439. },
  5440. "notification-url": "https://packagist.org/downloads/",
  5441. "license": [
  5442. "MIT"
  5443. ],
  5444. "authors": [
  5445. {
  5446. "name": "Jaap van Otterdijk",
  5447. "email": "opensource@ijaap.nl"
  5448. }
  5449. ],
  5450. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  5451. "homepage": "http://www.phpdoc.org",
  5452. "keywords": [
  5453. "FQSEN",
  5454. "phpDocumentor",
  5455. "phpdoc",
  5456. "reflection",
  5457. "static analysis"
  5458. ],
  5459. "time": "2018-08-07T13:53:10+00:00"
  5460. },
  5461. {
  5462. "name": "phpdocumentor/reflection-docblock",
  5463. "version": "4.3.2",
  5464. "source": {
  5465. "type": "git",
  5466. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  5467. "reference": "b83ff7cfcfee7827e1e78b637a5904fe6a96698e"
  5468. },
  5469. "dist": {
  5470. "type": "zip",
  5471. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/b83ff7cfcfee7827e1e78b637a5904fe6a96698e",
  5472. "reference": "b83ff7cfcfee7827e1e78b637a5904fe6a96698e",
  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": "^7.0",
  5483. "phpdocumentor/reflection-common": "^1.0.0 || ^2.0.0",
  5484. "phpdocumentor/type-resolver": "~0.4 || ^1.0.0",
  5485. "webmozart/assert": "^1.0"
  5486. },
  5487. "require-dev": {
  5488. "doctrine/instantiator": "^1.0.5",
  5489. "mockery/mockery": "^1.0",
  5490. "phpunit/phpunit": "^6.4"
  5491. },
  5492. "type": "library",
  5493. "extra": {
  5494. "branch-alias": {
  5495. "dev-master": "4.x-dev"
  5496. }
  5497. },
  5498. "autoload": {
  5499. "psr-4": {
  5500. "phpDocumentor\\Reflection\\": [
  5501. "src/"
  5502. ]
  5503. }
  5504. },
  5505. "notification-url": "https://packagist.org/downloads/",
  5506. "license": [
  5507. "MIT"
  5508. ],
  5509. "authors": [
  5510. {
  5511. "name": "Mike van Riel",
  5512. "email": "me@mikevanriel.com"
  5513. }
  5514. ],
  5515. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  5516. "time": "2019-09-12T14:27:41+00:00"
  5517. },
  5518. {
  5519. "name": "phpdocumentor/type-resolver",
  5520. "version": "1.0.1",
  5521. "source": {
  5522. "type": "git",
  5523. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  5524. "reference": "2e32a6d48972b2c1976ed5d8967145b6cec4a4a9"
  5525. },
  5526. "dist": {
  5527. "type": "zip",
  5528. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/2e32a6d48972b2c1976ed5d8967145b6cec4a4a9",
  5529. "reference": "2e32a6d48972b2c1976ed5d8967145b6cec4a4a9",
  5530. "shasum": "",
  5531. "mirrors": [
  5532. {
  5533. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5534. "preferred": true
  5535. }
  5536. ]
  5537. },
  5538. "require": {
  5539. "php": "^7.1",
  5540. "phpdocumentor/reflection-common": "^2.0"
  5541. },
  5542. "require-dev": {
  5543. "ext-tokenizer": "^7.1",
  5544. "mockery/mockery": "~1",
  5545. "phpunit/phpunit": "^7.0"
  5546. },
  5547. "type": "library",
  5548. "extra": {
  5549. "branch-alias": {
  5550. "dev-master": "1.x-dev"
  5551. }
  5552. },
  5553. "autoload": {
  5554. "psr-4": {
  5555. "phpDocumentor\\Reflection\\": "src"
  5556. }
  5557. },
  5558. "notification-url": "https://packagist.org/downloads/",
  5559. "license": [
  5560. "MIT"
  5561. ],
  5562. "authors": [
  5563. {
  5564. "name": "Mike van Riel",
  5565. "email": "me@mikevanriel.com"
  5566. }
  5567. ],
  5568. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  5569. "time": "2019-08-22T18:11:29+00:00"
  5570. },
  5571. {
  5572. "name": "phpspec/prophecy",
  5573. "version": "1.9.0",
  5574. "source": {
  5575. "type": "git",
  5576. "url": "https://github.com/phpspec/prophecy.git",
  5577. "reference": "f6811d96d97bdf400077a0cc100ae56aa32b9203"
  5578. },
  5579. "dist": {
  5580. "type": "zip",
  5581. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/f6811d96d97bdf400077a0cc100ae56aa32b9203",
  5582. "reference": "f6811d96d97bdf400077a0cc100ae56aa32b9203",
  5583. "shasum": "",
  5584. "mirrors": [
  5585. {
  5586. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5587. "preferred": true
  5588. }
  5589. ]
  5590. },
  5591. "require": {
  5592. "doctrine/instantiator": "^1.0.2",
  5593. "php": "^5.3|^7.0",
  5594. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0|^5.0",
  5595. "sebastian/comparator": "^1.1|^2.0|^3.0",
  5596. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  5597. },
  5598. "require-dev": {
  5599. "phpspec/phpspec": "^2.5|^3.2",
  5600. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  5601. },
  5602. "type": "library",
  5603. "extra": {
  5604. "branch-alias": {
  5605. "dev-master": "1.8.x-dev"
  5606. }
  5607. },
  5608. "autoload": {
  5609. "psr-4": {
  5610. "Prophecy\\": "src/Prophecy"
  5611. }
  5612. },
  5613. "notification-url": "https://packagist.org/downloads/",
  5614. "license": [
  5615. "MIT"
  5616. ],
  5617. "authors": [
  5618. {
  5619. "name": "Konstantin Kudryashov",
  5620. "email": "ever.zet@gmail.com",
  5621. "homepage": "http://everzet.com"
  5622. },
  5623. {
  5624. "name": "Marcello Duarte",
  5625. "email": "marcello.duarte@gmail.com"
  5626. }
  5627. ],
  5628. "description": "Highly opinionated mocking framework for PHP 5.3+",
  5629. "homepage": "https://github.com/phpspec/prophecy",
  5630. "keywords": [
  5631. "Double",
  5632. "Dummy",
  5633. "fake",
  5634. "mock",
  5635. "spy",
  5636. "stub"
  5637. ],
  5638. "time": "2019-10-03T11:07:50+00:00"
  5639. },
  5640. {
  5641. "name": "phpunit/php-code-coverage",
  5642. "version": "6.1.4",
  5643. "source": {
  5644. "type": "git",
  5645. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  5646. "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d"
  5647. },
  5648. "dist": {
  5649. "type": "zip",
  5650. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/807e6013b00af69b6c5d9ceb4282d0393dbb9d8d",
  5651. "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d",
  5652. "shasum": "",
  5653. "mirrors": [
  5654. {
  5655. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5656. "preferred": true
  5657. }
  5658. ]
  5659. },
  5660. "require": {
  5661. "ext-dom": "*",
  5662. "ext-xmlwriter": "*",
  5663. "php": "^7.1",
  5664. "phpunit/php-file-iterator": "^2.0",
  5665. "phpunit/php-text-template": "^1.2.1",
  5666. "phpunit/php-token-stream": "^3.0",
  5667. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  5668. "sebastian/environment": "^3.1 || ^4.0",
  5669. "sebastian/version": "^2.0.1",
  5670. "theseer/tokenizer": "^1.1"
  5671. },
  5672. "require-dev": {
  5673. "phpunit/phpunit": "^7.0"
  5674. },
  5675. "suggest": {
  5676. "ext-xdebug": "^2.6.0"
  5677. },
  5678. "type": "library",
  5679. "extra": {
  5680. "branch-alias": {
  5681. "dev-master": "6.1-dev"
  5682. }
  5683. },
  5684. "autoload": {
  5685. "classmap": [
  5686. "src/"
  5687. ]
  5688. },
  5689. "notification-url": "https://packagist.org/downloads/",
  5690. "license": [
  5691. "BSD-3-Clause"
  5692. ],
  5693. "authors": [
  5694. {
  5695. "name": "Sebastian Bergmann",
  5696. "email": "sebastian@phpunit.de",
  5697. "role": "lead"
  5698. }
  5699. ],
  5700. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  5701. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  5702. "keywords": [
  5703. "coverage",
  5704. "testing",
  5705. "xunit"
  5706. ],
  5707. "time": "2018-10-31T16:06:48+00:00"
  5708. },
  5709. {
  5710. "name": "phpunit/php-file-iterator",
  5711. "version": "2.0.2",
  5712. "source": {
  5713. "type": "git",
  5714. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  5715. "reference": "050bedf145a257b1ff02746c31894800e5122946"
  5716. },
  5717. "dist": {
  5718. "type": "zip",
  5719. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/050bedf145a257b1ff02746c31894800e5122946",
  5720. "reference": "050bedf145a257b1ff02746c31894800e5122946",
  5721. "shasum": "",
  5722. "mirrors": [
  5723. {
  5724. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5725. "preferred": true
  5726. }
  5727. ]
  5728. },
  5729. "require": {
  5730. "php": "^7.1"
  5731. },
  5732. "require-dev": {
  5733. "phpunit/phpunit": "^7.1"
  5734. },
  5735. "type": "library",
  5736. "extra": {
  5737. "branch-alias": {
  5738. "dev-master": "2.0.x-dev"
  5739. }
  5740. },
  5741. "autoload": {
  5742. "classmap": [
  5743. "src/"
  5744. ]
  5745. },
  5746. "notification-url": "https://packagist.org/downloads/",
  5747. "license": [
  5748. "BSD-3-Clause"
  5749. ],
  5750. "authors": [
  5751. {
  5752. "name": "Sebastian Bergmann",
  5753. "email": "sebastian@phpunit.de",
  5754. "role": "lead"
  5755. }
  5756. ],
  5757. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  5758. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  5759. "keywords": [
  5760. "filesystem",
  5761. "iterator"
  5762. ],
  5763. "time": "2018-09-13T20:33:42+00:00"
  5764. },
  5765. {
  5766. "name": "phpunit/php-text-template",
  5767. "version": "1.2.1",
  5768. "source": {
  5769. "type": "git",
  5770. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  5771. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  5772. },
  5773. "dist": {
  5774. "type": "zip",
  5775. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  5776. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  5777. "shasum": "",
  5778. "mirrors": [
  5779. {
  5780. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5781. "preferred": true
  5782. }
  5783. ]
  5784. },
  5785. "require": {
  5786. "php": ">=5.3.3"
  5787. },
  5788. "type": "library",
  5789. "autoload": {
  5790. "classmap": [
  5791. "src/"
  5792. ]
  5793. },
  5794. "notification-url": "https://packagist.org/downloads/",
  5795. "license": [
  5796. "BSD-3-Clause"
  5797. ],
  5798. "authors": [
  5799. {
  5800. "name": "Sebastian Bergmann",
  5801. "email": "sebastian@phpunit.de",
  5802. "role": "lead"
  5803. }
  5804. ],
  5805. "description": "Simple template engine.",
  5806. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  5807. "keywords": [
  5808. "template"
  5809. ],
  5810. "time": "2015-06-21T13:50:34+00:00"
  5811. },
  5812. {
  5813. "name": "phpunit/php-timer",
  5814. "version": "2.1.2",
  5815. "source": {
  5816. "type": "git",
  5817. "url": "https://github.com/sebastianbergmann/php-timer.git",
  5818. "reference": "1038454804406b0b5f5f520358e78c1c2f71501e"
  5819. },
  5820. "dist": {
  5821. "type": "zip",
  5822. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/1038454804406b0b5f5f520358e78c1c2f71501e",
  5823. "reference": "1038454804406b0b5f5f520358e78c1c2f71501e",
  5824. "shasum": "",
  5825. "mirrors": [
  5826. {
  5827. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5828. "preferred": true
  5829. }
  5830. ]
  5831. },
  5832. "require": {
  5833. "php": "^7.1"
  5834. },
  5835. "require-dev": {
  5836. "phpunit/phpunit": "^7.0"
  5837. },
  5838. "type": "library",
  5839. "extra": {
  5840. "branch-alias": {
  5841. "dev-master": "2.1-dev"
  5842. }
  5843. },
  5844. "autoload": {
  5845. "classmap": [
  5846. "src/"
  5847. ]
  5848. },
  5849. "notification-url": "https://packagist.org/downloads/",
  5850. "license": [
  5851. "BSD-3-Clause"
  5852. ],
  5853. "authors": [
  5854. {
  5855. "name": "Sebastian Bergmann",
  5856. "email": "sebastian@phpunit.de",
  5857. "role": "lead"
  5858. }
  5859. ],
  5860. "description": "Utility class for timing",
  5861. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  5862. "keywords": [
  5863. "timer"
  5864. ],
  5865. "time": "2019-06-07T04:22:29+00:00"
  5866. },
  5867. {
  5868. "name": "phpunit/php-token-stream",
  5869. "version": "3.1.1",
  5870. "source": {
  5871. "type": "git",
  5872. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  5873. "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff"
  5874. },
  5875. "dist": {
  5876. "type": "zip",
  5877. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/995192df77f63a59e47f025390d2d1fdf8f425ff",
  5878. "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff",
  5879. "shasum": "",
  5880. "mirrors": [
  5881. {
  5882. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5883. "preferred": true
  5884. }
  5885. ]
  5886. },
  5887. "require": {
  5888. "ext-tokenizer": "*",
  5889. "php": "^7.1"
  5890. },
  5891. "require-dev": {
  5892. "phpunit/phpunit": "^7.0"
  5893. },
  5894. "type": "library",
  5895. "extra": {
  5896. "branch-alias": {
  5897. "dev-master": "3.1-dev"
  5898. }
  5899. },
  5900. "autoload": {
  5901. "classmap": [
  5902. "src/"
  5903. ]
  5904. },
  5905. "notification-url": "https://packagist.org/downloads/",
  5906. "license": [
  5907. "BSD-3-Clause"
  5908. ],
  5909. "authors": [
  5910. {
  5911. "name": "Sebastian Bergmann",
  5912. "email": "sebastian@phpunit.de"
  5913. }
  5914. ],
  5915. "description": "Wrapper around PHP's tokenizer extension.",
  5916. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  5917. "keywords": [
  5918. "tokenizer"
  5919. ],
  5920. "time": "2019-09-17T06:23:10+00:00"
  5921. },
  5922. {
  5923. "name": "phpunit/phpunit",
  5924. "version": "7.5.16",
  5925. "source": {
  5926. "type": "git",
  5927. "url": "https://github.com/sebastianbergmann/phpunit.git",
  5928. "reference": "316afa6888d2562e04aeb67ea7f2017a0eb41661"
  5929. },
  5930. "dist": {
  5931. "type": "zip",
  5932. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/316afa6888d2562e04aeb67ea7f2017a0eb41661",
  5933. "reference": "316afa6888d2562e04aeb67ea7f2017a0eb41661",
  5934. "shasum": "",
  5935. "mirrors": [
  5936. {
  5937. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5938. "preferred": true
  5939. }
  5940. ]
  5941. },
  5942. "require": {
  5943. "doctrine/instantiator": "^1.1",
  5944. "ext-dom": "*",
  5945. "ext-json": "*",
  5946. "ext-libxml": "*",
  5947. "ext-mbstring": "*",
  5948. "ext-xml": "*",
  5949. "myclabs/deep-copy": "^1.7",
  5950. "phar-io/manifest": "^1.0.2",
  5951. "phar-io/version": "^2.0",
  5952. "php": "^7.1",
  5953. "phpspec/prophecy": "^1.7",
  5954. "phpunit/php-code-coverage": "^6.0.7",
  5955. "phpunit/php-file-iterator": "^2.0.1",
  5956. "phpunit/php-text-template": "^1.2.1",
  5957. "phpunit/php-timer": "^2.1",
  5958. "sebastian/comparator": "^3.0",
  5959. "sebastian/diff": "^3.0",
  5960. "sebastian/environment": "^4.0",
  5961. "sebastian/exporter": "^3.1",
  5962. "sebastian/global-state": "^2.0",
  5963. "sebastian/object-enumerator": "^3.0.3",
  5964. "sebastian/resource-operations": "^2.0",
  5965. "sebastian/version": "^2.0.1"
  5966. },
  5967. "conflict": {
  5968. "phpunit/phpunit-mock-objects": "*"
  5969. },
  5970. "require-dev": {
  5971. "ext-pdo": "*"
  5972. },
  5973. "suggest": {
  5974. "ext-soap": "*",
  5975. "ext-xdebug": "*",
  5976. "phpunit/php-invoker": "^2.0"
  5977. },
  5978. "bin": [
  5979. "phpunit"
  5980. ],
  5981. "type": "library",
  5982. "extra": {
  5983. "branch-alias": {
  5984. "dev-master": "7.5-dev"
  5985. }
  5986. },
  5987. "autoload": {
  5988. "classmap": [
  5989. "src/"
  5990. ]
  5991. },
  5992. "notification-url": "https://packagist.org/downloads/",
  5993. "license": [
  5994. "BSD-3-Clause"
  5995. ],
  5996. "authors": [
  5997. {
  5998. "name": "Sebastian Bergmann",
  5999. "email": "sebastian@phpunit.de",
  6000. "role": "lead"
  6001. }
  6002. ],
  6003. "description": "The PHP Unit Testing framework.",
  6004. "homepage": "https://phpunit.de/",
  6005. "keywords": [
  6006. "phpunit",
  6007. "testing",
  6008. "xunit"
  6009. ],
  6010. "time": "2019-09-14T09:08:39+00:00"
  6011. },
  6012. {
  6013. "name": "sebastian/code-unit-reverse-lookup",
  6014. "version": "1.0.1",
  6015. "source": {
  6016. "type": "git",
  6017. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  6018. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  6019. },
  6020. "dist": {
  6021. "type": "zip",
  6022. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  6023. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  6024. "shasum": "",
  6025. "mirrors": [
  6026. {
  6027. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6028. "preferred": true
  6029. }
  6030. ]
  6031. },
  6032. "require": {
  6033. "php": "^5.6 || ^7.0"
  6034. },
  6035. "require-dev": {
  6036. "phpunit/phpunit": "^5.7 || ^6.0"
  6037. },
  6038. "type": "library",
  6039. "extra": {
  6040. "branch-alias": {
  6041. "dev-master": "1.0.x-dev"
  6042. }
  6043. },
  6044. "autoload": {
  6045. "classmap": [
  6046. "src/"
  6047. ]
  6048. },
  6049. "notification-url": "https://packagist.org/downloads/",
  6050. "license": [
  6051. "BSD-3-Clause"
  6052. ],
  6053. "authors": [
  6054. {
  6055. "name": "Sebastian Bergmann",
  6056. "email": "sebastian@phpunit.de"
  6057. }
  6058. ],
  6059. "description": "Looks up which function or method a line of code belongs to",
  6060. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  6061. "time": "2017-03-04T06:30:41+00:00"
  6062. },
  6063. {
  6064. "name": "sebastian/comparator",
  6065. "version": "3.0.2",
  6066. "source": {
  6067. "type": "git",
  6068. "url": "https://github.com/sebastianbergmann/comparator.git",
  6069. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da"
  6070. },
  6071. "dist": {
  6072. "type": "zip",
  6073. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  6074. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  6075. "shasum": "",
  6076. "mirrors": [
  6077. {
  6078. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6079. "preferred": true
  6080. }
  6081. ]
  6082. },
  6083. "require": {
  6084. "php": "^7.1",
  6085. "sebastian/diff": "^3.0",
  6086. "sebastian/exporter": "^3.1"
  6087. },
  6088. "require-dev": {
  6089. "phpunit/phpunit": "^7.1"
  6090. },
  6091. "type": "library",
  6092. "extra": {
  6093. "branch-alias": {
  6094. "dev-master": "3.0-dev"
  6095. }
  6096. },
  6097. "autoload": {
  6098. "classmap": [
  6099. "src/"
  6100. ]
  6101. },
  6102. "notification-url": "https://packagist.org/downloads/",
  6103. "license": [
  6104. "BSD-3-Clause"
  6105. ],
  6106. "authors": [
  6107. {
  6108. "name": "Jeff Welch",
  6109. "email": "whatthejeff@gmail.com"
  6110. },
  6111. {
  6112. "name": "Volker Dusch",
  6113. "email": "github@wallbash.com"
  6114. },
  6115. {
  6116. "name": "Bernhard Schussek",
  6117. "email": "bschussek@2bepublished.at"
  6118. },
  6119. {
  6120. "name": "Sebastian Bergmann",
  6121. "email": "sebastian@phpunit.de"
  6122. }
  6123. ],
  6124. "description": "Provides the functionality to compare PHP values for equality",
  6125. "homepage": "https://github.com/sebastianbergmann/comparator",
  6126. "keywords": [
  6127. "comparator",
  6128. "compare",
  6129. "equality"
  6130. ],
  6131. "time": "2018-07-12T15:12:46+00:00"
  6132. },
  6133. {
  6134. "name": "sebastian/diff",
  6135. "version": "3.0.2",
  6136. "source": {
  6137. "type": "git",
  6138. "url": "https://github.com/sebastianbergmann/diff.git",
  6139. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29"
  6140. },
  6141. "dist": {
  6142. "type": "zip",
  6143. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  6144. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  6145. "shasum": "",
  6146. "mirrors": [
  6147. {
  6148. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6149. "preferred": true
  6150. }
  6151. ]
  6152. },
  6153. "require": {
  6154. "php": "^7.1"
  6155. },
  6156. "require-dev": {
  6157. "phpunit/phpunit": "^7.5 || ^8.0",
  6158. "symfony/process": "^2 || ^3.3 || ^4"
  6159. },
  6160. "type": "library",
  6161. "extra": {
  6162. "branch-alias": {
  6163. "dev-master": "3.0-dev"
  6164. }
  6165. },
  6166. "autoload": {
  6167. "classmap": [
  6168. "src/"
  6169. ]
  6170. },
  6171. "notification-url": "https://packagist.org/downloads/",
  6172. "license": [
  6173. "BSD-3-Clause"
  6174. ],
  6175. "authors": [
  6176. {
  6177. "name": "Kore Nordmann",
  6178. "email": "mail@kore-nordmann.de"
  6179. },
  6180. {
  6181. "name": "Sebastian Bergmann",
  6182. "email": "sebastian@phpunit.de"
  6183. }
  6184. ],
  6185. "description": "Diff implementation",
  6186. "homepage": "https://github.com/sebastianbergmann/diff",
  6187. "keywords": [
  6188. "diff",
  6189. "udiff",
  6190. "unidiff",
  6191. "unified diff"
  6192. ],
  6193. "time": "2019-02-04T06:01:07+00:00"
  6194. },
  6195. {
  6196. "name": "sebastian/environment",
  6197. "version": "4.2.2",
  6198. "source": {
  6199. "type": "git",
  6200. "url": "https://github.com/sebastianbergmann/environment.git",
  6201. "reference": "f2a2c8e1c97c11ace607a7a667d73d47c19fe404"
  6202. },
  6203. "dist": {
  6204. "type": "zip",
  6205. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/f2a2c8e1c97c11ace607a7a667d73d47c19fe404",
  6206. "reference": "f2a2c8e1c97c11ace607a7a667d73d47c19fe404",
  6207. "shasum": "",
  6208. "mirrors": [
  6209. {
  6210. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6211. "preferred": true
  6212. }
  6213. ]
  6214. },
  6215. "require": {
  6216. "php": "^7.1"
  6217. },
  6218. "require-dev": {
  6219. "phpunit/phpunit": "^7.5"
  6220. },
  6221. "suggest": {
  6222. "ext-posix": "*"
  6223. },
  6224. "type": "library",
  6225. "extra": {
  6226. "branch-alias": {
  6227. "dev-master": "4.2-dev"
  6228. }
  6229. },
  6230. "autoload": {
  6231. "classmap": [
  6232. "src/"
  6233. ]
  6234. },
  6235. "notification-url": "https://packagist.org/downloads/",
  6236. "license": [
  6237. "BSD-3-Clause"
  6238. ],
  6239. "authors": [
  6240. {
  6241. "name": "Sebastian Bergmann",
  6242. "email": "sebastian@phpunit.de"
  6243. }
  6244. ],
  6245. "description": "Provides functionality to handle HHVM/PHP environments",
  6246. "homepage": "http://www.github.com/sebastianbergmann/environment",
  6247. "keywords": [
  6248. "Xdebug",
  6249. "environment",
  6250. "hhvm"
  6251. ],
  6252. "time": "2019-05-05T09:05:15+00:00"
  6253. },
  6254. {
  6255. "name": "sebastian/exporter",
  6256. "version": "3.1.2",
  6257. "source": {
  6258. "type": "git",
  6259. "url": "https://github.com/sebastianbergmann/exporter.git",
  6260. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e"
  6261. },
  6262. "dist": {
  6263. "type": "zip",
  6264. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/68609e1261d215ea5b21b7987539cbfbe156ec3e",
  6265. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e",
  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. "php": "^7.0",
  6276. "sebastian/recursion-context": "^3.0"
  6277. },
  6278. "require-dev": {
  6279. "ext-mbstring": "*",
  6280. "phpunit/phpunit": "^6.0"
  6281. },
  6282. "type": "library",
  6283. "extra": {
  6284. "branch-alias": {
  6285. "dev-master": "3.1.x-dev"
  6286. }
  6287. },
  6288. "autoload": {
  6289. "classmap": [
  6290. "src/"
  6291. ]
  6292. },
  6293. "notification-url": "https://packagist.org/downloads/",
  6294. "license": [
  6295. "BSD-3-Clause"
  6296. ],
  6297. "authors": [
  6298. {
  6299. "name": "Sebastian Bergmann",
  6300. "email": "sebastian@phpunit.de"
  6301. },
  6302. {
  6303. "name": "Jeff Welch",
  6304. "email": "whatthejeff@gmail.com"
  6305. },
  6306. {
  6307. "name": "Volker Dusch",
  6308. "email": "github@wallbash.com"
  6309. },
  6310. {
  6311. "name": "Adam Harvey",
  6312. "email": "aharvey@php.net"
  6313. },
  6314. {
  6315. "name": "Bernhard Schussek",
  6316. "email": "bschussek@gmail.com"
  6317. }
  6318. ],
  6319. "description": "Provides the functionality to export PHP variables for visualization",
  6320. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  6321. "keywords": [
  6322. "export",
  6323. "exporter"
  6324. ],
  6325. "time": "2019-09-14T09:02:43+00:00"
  6326. },
  6327. {
  6328. "name": "sebastian/global-state",
  6329. "version": "2.0.0",
  6330. "source": {
  6331. "type": "git",
  6332. "url": "https://github.com/sebastianbergmann/global-state.git",
  6333. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  6334. },
  6335. "dist": {
  6336. "type": "zip",
  6337. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  6338. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  6339. "shasum": "",
  6340. "mirrors": [
  6341. {
  6342. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6343. "preferred": true
  6344. }
  6345. ]
  6346. },
  6347. "require": {
  6348. "php": "^7.0"
  6349. },
  6350. "require-dev": {
  6351. "phpunit/phpunit": "^6.0"
  6352. },
  6353. "suggest": {
  6354. "ext-uopz": "*"
  6355. },
  6356. "type": "library",
  6357. "extra": {
  6358. "branch-alias": {
  6359. "dev-master": "2.0-dev"
  6360. }
  6361. },
  6362. "autoload": {
  6363. "classmap": [
  6364. "src/"
  6365. ]
  6366. },
  6367. "notification-url": "https://packagist.org/downloads/",
  6368. "license": [
  6369. "BSD-3-Clause"
  6370. ],
  6371. "authors": [
  6372. {
  6373. "name": "Sebastian Bergmann",
  6374. "email": "sebastian@phpunit.de"
  6375. }
  6376. ],
  6377. "description": "Snapshotting of global state",
  6378. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  6379. "keywords": [
  6380. "global state"
  6381. ],
  6382. "time": "2017-04-27T15:39:26+00:00"
  6383. },
  6384. {
  6385. "name": "sebastian/object-enumerator",
  6386. "version": "3.0.3",
  6387. "source": {
  6388. "type": "git",
  6389. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  6390. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  6391. },
  6392. "dist": {
  6393. "type": "zip",
  6394. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  6395. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  6396. "shasum": "",
  6397. "mirrors": [
  6398. {
  6399. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6400. "preferred": true
  6401. }
  6402. ]
  6403. },
  6404. "require": {
  6405. "php": "^7.0",
  6406. "sebastian/object-reflector": "^1.1.1",
  6407. "sebastian/recursion-context": "^3.0"
  6408. },
  6409. "require-dev": {
  6410. "phpunit/phpunit": "^6.0"
  6411. },
  6412. "type": "library",
  6413. "extra": {
  6414. "branch-alias": {
  6415. "dev-master": "3.0.x-dev"
  6416. }
  6417. },
  6418. "autoload": {
  6419. "classmap": [
  6420. "src/"
  6421. ]
  6422. },
  6423. "notification-url": "https://packagist.org/downloads/",
  6424. "license": [
  6425. "BSD-3-Clause"
  6426. ],
  6427. "authors": [
  6428. {
  6429. "name": "Sebastian Bergmann",
  6430. "email": "sebastian@phpunit.de"
  6431. }
  6432. ],
  6433. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  6434. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  6435. "time": "2017-08-03T12:35:26+00:00"
  6436. },
  6437. {
  6438. "name": "sebastian/object-reflector",
  6439. "version": "1.1.1",
  6440. "source": {
  6441. "type": "git",
  6442. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  6443. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  6444. },
  6445. "dist": {
  6446. "type": "zip",
  6447. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  6448. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  6449. "shasum": "",
  6450. "mirrors": [
  6451. {
  6452. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6453. "preferred": true
  6454. }
  6455. ]
  6456. },
  6457. "require": {
  6458. "php": "^7.0"
  6459. },
  6460. "require-dev": {
  6461. "phpunit/phpunit": "^6.0"
  6462. },
  6463. "type": "library",
  6464. "extra": {
  6465. "branch-alias": {
  6466. "dev-master": "1.1-dev"
  6467. }
  6468. },
  6469. "autoload": {
  6470. "classmap": [
  6471. "src/"
  6472. ]
  6473. },
  6474. "notification-url": "https://packagist.org/downloads/",
  6475. "license": [
  6476. "BSD-3-Clause"
  6477. ],
  6478. "authors": [
  6479. {
  6480. "name": "Sebastian Bergmann",
  6481. "email": "sebastian@phpunit.de"
  6482. }
  6483. ],
  6484. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  6485. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  6486. "time": "2017-03-29T09:07:27+00:00"
  6487. },
  6488. {
  6489. "name": "sebastian/recursion-context",
  6490. "version": "3.0.0",
  6491. "source": {
  6492. "type": "git",
  6493. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  6494. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  6495. },
  6496. "dist": {
  6497. "type": "zip",
  6498. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  6499. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  6500. "shasum": "",
  6501. "mirrors": [
  6502. {
  6503. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6504. "preferred": true
  6505. }
  6506. ]
  6507. },
  6508. "require": {
  6509. "php": "^7.0"
  6510. },
  6511. "require-dev": {
  6512. "phpunit/phpunit": "^6.0"
  6513. },
  6514. "type": "library",
  6515. "extra": {
  6516. "branch-alias": {
  6517. "dev-master": "3.0.x-dev"
  6518. }
  6519. },
  6520. "autoload": {
  6521. "classmap": [
  6522. "src/"
  6523. ]
  6524. },
  6525. "notification-url": "https://packagist.org/downloads/",
  6526. "license": [
  6527. "BSD-3-Clause"
  6528. ],
  6529. "authors": [
  6530. {
  6531. "name": "Jeff Welch",
  6532. "email": "whatthejeff@gmail.com"
  6533. },
  6534. {
  6535. "name": "Sebastian Bergmann",
  6536. "email": "sebastian@phpunit.de"
  6537. },
  6538. {
  6539. "name": "Adam Harvey",
  6540. "email": "aharvey@php.net"
  6541. }
  6542. ],
  6543. "description": "Provides functionality to recursively process PHP variables",
  6544. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  6545. "time": "2017-03-03T06:23:57+00:00"
  6546. },
  6547. {
  6548. "name": "sebastian/resource-operations",
  6549. "version": "2.0.1",
  6550. "source": {
  6551. "type": "git",
  6552. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  6553. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9"
  6554. },
  6555. "dist": {
  6556. "type": "zip",
  6557. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  6558. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  6559. "shasum": "",
  6560. "mirrors": [
  6561. {
  6562. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6563. "preferred": true
  6564. }
  6565. ]
  6566. },
  6567. "require": {
  6568. "php": "^7.1"
  6569. },
  6570. "type": "library",
  6571. "extra": {
  6572. "branch-alias": {
  6573. "dev-master": "2.0-dev"
  6574. }
  6575. },
  6576. "autoload": {
  6577. "classmap": [
  6578. "src/"
  6579. ]
  6580. },
  6581. "notification-url": "https://packagist.org/downloads/",
  6582. "license": [
  6583. "BSD-3-Clause"
  6584. ],
  6585. "authors": [
  6586. {
  6587. "name": "Sebastian Bergmann",
  6588. "email": "sebastian@phpunit.de"
  6589. }
  6590. ],
  6591. "description": "Provides a list of PHP built-in functions that operate on resources",
  6592. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  6593. "time": "2018-10-04T04:07:39+00:00"
  6594. },
  6595. {
  6596. "name": "sebastian/version",
  6597. "version": "2.0.1",
  6598. "source": {
  6599. "type": "git",
  6600. "url": "https://github.com/sebastianbergmann/version.git",
  6601. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  6602. },
  6603. "dist": {
  6604. "type": "zip",
  6605. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  6606. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  6607. "shasum": "",
  6608. "mirrors": [
  6609. {
  6610. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6611. "preferred": true
  6612. }
  6613. ]
  6614. },
  6615. "require": {
  6616. "php": ">=5.6"
  6617. },
  6618. "type": "library",
  6619. "extra": {
  6620. "branch-alias": {
  6621. "dev-master": "2.0.x-dev"
  6622. }
  6623. },
  6624. "autoload": {
  6625. "classmap": [
  6626. "src/"
  6627. ]
  6628. },
  6629. "notification-url": "https://packagist.org/downloads/",
  6630. "license": [
  6631. "BSD-3-Clause"
  6632. ],
  6633. "authors": [
  6634. {
  6635. "name": "Sebastian Bergmann",
  6636. "email": "sebastian@phpunit.de",
  6637. "role": "lead"
  6638. }
  6639. ],
  6640. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  6641. "homepage": "https://github.com/sebastianbergmann/version",
  6642. "time": "2016-10-03T07:35:21+00:00"
  6643. },
  6644. {
  6645. "name": "theseer/tokenizer",
  6646. "version": "1.1.3",
  6647. "source": {
  6648. "type": "git",
  6649. "url": "https://github.com/theseer/tokenizer.git",
  6650. "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9"
  6651. },
  6652. "dist": {
  6653. "type": "zip",
  6654. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/11336f6f84e16a720dae9d8e6ed5019efa85a0f9",
  6655. "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9",
  6656. "shasum": "",
  6657. "mirrors": [
  6658. {
  6659. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6660. "preferred": true
  6661. }
  6662. ]
  6663. },
  6664. "require": {
  6665. "ext-dom": "*",
  6666. "ext-tokenizer": "*",
  6667. "ext-xmlwriter": "*",
  6668. "php": "^7.0"
  6669. },
  6670. "type": "library",
  6671. "autoload": {
  6672. "classmap": [
  6673. "src/"
  6674. ]
  6675. },
  6676. "notification-url": "https://packagist.org/downloads/",
  6677. "license": [
  6678. "BSD-3-Clause"
  6679. ],
  6680. "authors": [
  6681. {
  6682. "name": "Arne Blankerts",
  6683. "email": "arne@blankerts.de",
  6684. "role": "Developer"
  6685. }
  6686. ],
  6687. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  6688. "time": "2019-06-13T22:48:21+00:00"
  6689. },
  6690. {
  6691. "name": "webmozart/assert",
  6692. "version": "1.5.0",
  6693. "source": {
  6694. "type": "git",
  6695. "url": "https://github.com/webmozart/assert.git",
  6696. "reference": "88e6d84706d09a236046d686bbea96f07b3a34f4"
  6697. },
  6698. "dist": {
  6699. "type": "zip",
  6700. "url": "https://api.github.com/repos/webmozart/assert/zipball/88e6d84706d09a236046d686bbea96f07b3a34f4",
  6701. "reference": "88e6d84706d09a236046d686bbea96f07b3a34f4",
  6702. "shasum": "",
  6703. "mirrors": [
  6704. {
  6705. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6706. "preferred": true
  6707. }
  6708. ]
  6709. },
  6710. "require": {
  6711. "php": "^5.3.3 || ^7.0",
  6712. "symfony/polyfill-ctype": "^1.8"
  6713. },
  6714. "require-dev": {
  6715. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  6716. },
  6717. "type": "library",
  6718. "extra": {
  6719. "branch-alias": {
  6720. "dev-master": "1.3-dev"
  6721. }
  6722. },
  6723. "autoload": {
  6724. "psr-4": {
  6725. "Webmozart\\Assert\\": "src/"
  6726. }
  6727. },
  6728. "notification-url": "https://packagist.org/downloads/",
  6729. "license": [
  6730. "MIT"
  6731. ],
  6732. "authors": [
  6733. {
  6734. "name": "Bernhard Schussek",
  6735. "email": "bschussek@gmail.com"
  6736. }
  6737. ],
  6738. "description": "Assertions to validate method input/output with nice error messages.",
  6739. "keywords": [
  6740. "assert",
  6741. "check",
  6742. "validate"
  6743. ],
  6744. "time": "2019-08-24T08:43:50+00:00"
  6745. }
  6746. ],
  6747. "aliases": [],
  6748. "minimum-stability": "dev",
  6749. "stability-flags": [],
  6750. "prefer-stable": true,
  6751. "prefer-lowest": false,
  6752. "platform": {
  6753. "php": "^7.1.3",
  6754. "ext-json": "*",
  6755. "ext-mbstring": "*",
  6756. "ext-openssl": "*"
  6757. },
  6758. "platform-dev": []
  6759. }