composer.lock 314 KB

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