composer.lock 362 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083
  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": "a6dca782e84112becc716ee6a373300e",
  8. "packages": [
  9. {
  10. "name": "bacon/bacon-qr-code",
  11. "version": "2.0.3",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/Bacon/BaconQrCode.git",
  15. "reference": "3e9d791b67d0a2912922b7b7c7312f4b37af41e4"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/3e9d791b67d0a2912922b7b7c7312f4b37af41e4",
  20. "reference": "3e9d791b67d0a2912922b7b7c7312f4b37af41e4",
  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. "dasprid/enum": "^1.0.3",
  31. "ext-iconv": "*",
  32. "php": "^7.1 || ^8.0"
  33. },
  34. "require-dev": {
  35. "phly/keep-a-changelog": "^1.4",
  36. "phpunit/phpunit": "^7 | ^8 | ^9",
  37. "squizlabs/php_codesniffer": "^3.4"
  38. },
  39. "suggest": {
  40. "ext-imagick": "to generate QR code images"
  41. },
  42. "type": "library",
  43. "autoload": {
  44. "psr-4": {
  45. "BaconQrCode\\": "src/"
  46. }
  47. },
  48. "notification-url": "https://packagist.org/downloads/",
  49. "license": [
  50. "BSD-2-Clause"
  51. ],
  52. "authors": [
  53. {
  54. "name": "Ben Scholzen 'DASPRiD'",
  55. "email": "mail@dasprids.de",
  56. "homepage": "https://dasprids.de/",
  57. "role": "Developer"
  58. }
  59. ],
  60. "description": "BaconQrCode is a QR code generator for PHP.",
  61. "homepage": "https://github.com/Bacon/BaconQrCode",
  62. "support": {
  63. "issues": "https://github.com/Bacon/BaconQrCode/issues",
  64. "source": "https://github.com/Bacon/BaconQrCode/tree/2.0.3"
  65. },
  66. "time": "2020-10-30T02:02:47+00:00"
  67. },
  68. {
  69. "name": "brick/math",
  70. "version": "0.9.1",
  71. "source": {
  72. "type": "git",
  73. "url": "https://github.com/brick/math.git",
  74. "reference": "283a40c901101e66de7061bd359252c013dcc43c"
  75. },
  76. "dist": {
  77. "type": "zip",
  78. "url": "https://api.github.com/repos/brick/math/zipball/283a40c901101e66de7061bd359252c013dcc43c",
  79. "reference": "283a40c901101e66de7061bd359252c013dcc43c",
  80. "shasum": "",
  81. "mirrors": [
  82. {
  83. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  84. "preferred": true
  85. }
  86. ]
  87. },
  88. "require": {
  89. "ext-json": "*",
  90. "php": "^7.1|^8.0"
  91. },
  92. "require-dev": {
  93. "php-coveralls/php-coveralls": "^2.2",
  94. "phpunit/phpunit": "^7.5.15|^8.5",
  95. "vimeo/psalm": "^3.5"
  96. },
  97. "type": "library",
  98. "autoload": {
  99. "psr-4": {
  100. "Brick\\Math\\": "src/"
  101. }
  102. },
  103. "notification-url": "https://packagist.org/downloads/",
  104. "license": [
  105. "MIT"
  106. ],
  107. "description": "Arbitrary-precision arithmetic library",
  108. "keywords": [
  109. "Arbitrary-precision",
  110. "BigInteger",
  111. "BigRational",
  112. "arithmetic",
  113. "bigdecimal",
  114. "bignum",
  115. "brick",
  116. "math"
  117. ],
  118. "support": {
  119. "issues": "https://github.com/brick/math/issues",
  120. "source": "https://github.com/brick/math/tree/master"
  121. },
  122. "funding": [
  123. {
  124. "url": "https://tidelift.com/funding/github/packagist/brick/math",
  125. "type": "tidelift"
  126. }
  127. ],
  128. "time": "2020-08-18T23:57:15+00:00"
  129. },
  130. {
  131. "name": "dasprid/enum",
  132. "version": "1.0.3",
  133. "source": {
  134. "type": "git",
  135. "url": "https://github.com/DASPRiD/Enum.git",
  136. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2"
  137. },
  138. "dist": {
  139. "type": "zip",
  140. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/5abf82f213618696dda8e3bf6f64dd042d8542b2",
  141. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2",
  142. "shasum": "",
  143. "mirrors": [
  144. {
  145. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  146. "preferred": true
  147. }
  148. ]
  149. },
  150. "require-dev": {
  151. "phpunit/phpunit": "^7 | ^8 | ^9",
  152. "squizlabs/php_codesniffer": "^3.4"
  153. },
  154. "type": "library",
  155. "autoload": {
  156. "psr-4": {
  157. "DASPRiD\\Enum\\": "src/"
  158. }
  159. },
  160. "notification-url": "https://packagist.org/downloads/",
  161. "license": [
  162. "BSD-2-Clause"
  163. ],
  164. "authors": [
  165. {
  166. "name": "Ben Scholzen 'DASPRiD'",
  167. "email": "mail@dasprids.de",
  168. "homepage": "https://dasprids.de/",
  169. "role": "Developer"
  170. }
  171. ],
  172. "description": "PHP 7.1 enum implementation",
  173. "keywords": [
  174. "enum",
  175. "map"
  176. ],
  177. "support": {
  178. "issues": "https://github.com/DASPRiD/Enum/issues",
  179. "source": "https://github.com/DASPRiD/Enum/tree/1.0.3"
  180. },
  181. "time": "2020-10-02T16:03:48+00:00"
  182. },
  183. {
  184. "name": "dnoegel/php-xdg-base-dir",
  185. "version": "v0.1.1",
  186. "source": {
  187. "type": "git",
  188. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  189. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd"
  190. },
  191. "dist": {
  192. "type": "zip",
  193. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  194. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  195. "shasum": "",
  196. "mirrors": [
  197. {
  198. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  199. "preferred": true
  200. }
  201. ]
  202. },
  203. "require": {
  204. "php": ">=5.3.2"
  205. },
  206. "require-dev": {
  207. "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
  208. },
  209. "type": "library",
  210. "autoload": {
  211. "psr-4": {
  212. "XdgBaseDir\\": "src/"
  213. }
  214. },
  215. "notification-url": "https://packagist.org/downloads/",
  216. "license": [
  217. "MIT"
  218. ],
  219. "description": "implementation of xdg base directory specification for php",
  220. "support": {
  221. "issues": "https://github.com/dnoegel/php-xdg-base-dir/issues",
  222. "source": "https://github.com/dnoegel/php-xdg-base-dir/tree/v0.1.1"
  223. },
  224. "time": "2019-12-04T15:06:13+00:00"
  225. },
  226. {
  227. "name": "doctrine/cache",
  228. "version": "1.10.2",
  229. "source": {
  230. "type": "git",
  231. "url": "https://github.com/doctrine/cache.git",
  232. "reference": "13e3381b25847283a91948d04640543941309727"
  233. },
  234. "dist": {
  235. "type": "zip",
  236. "url": "https://api.github.com/repos/doctrine/cache/zipball/13e3381b25847283a91948d04640543941309727",
  237. "reference": "13e3381b25847283a91948d04640543941309727",
  238. "shasum": "",
  239. "mirrors": [
  240. {
  241. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  242. "preferred": true
  243. }
  244. ]
  245. },
  246. "require": {
  247. "php": "~7.1 || ^8.0"
  248. },
  249. "conflict": {
  250. "doctrine/common": ">2.2,<2.4"
  251. },
  252. "require-dev": {
  253. "alcaeus/mongo-php-adapter": "^1.1",
  254. "doctrine/coding-standard": "^6.0",
  255. "mongodb/mongodb": "^1.1",
  256. "phpunit/phpunit": "^7.0",
  257. "predis/predis": "~1.0"
  258. },
  259. "suggest": {
  260. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  261. },
  262. "type": "library",
  263. "extra": {
  264. "branch-alias": {
  265. "dev-master": "1.9.x-dev"
  266. }
  267. },
  268. "autoload": {
  269. "psr-4": {
  270. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  271. }
  272. },
  273. "notification-url": "https://packagist.org/downloads/",
  274. "license": [
  275. "MIT"
  276. ],
  277. "authors": [
  278. {
  279. "name": "Guilherme Blanco",
  280. "email": "guilhermeblanco@gmail.com"
  281. },
  282. {
  283. "name": "Roman Borschel",
  284. "email": "roman@code-factory.org"
  285. },
  286. {
  287. "name": "Benjamin Eberlei",
  288. "email": "kontakt@beberlei.de"
  289. },
  290. {
  291. "name": "Jonathan Wage",
  292. "email": "jonwage@gmail.com"
  293. },
  294. {
  295. "name": "Johannes Schmitt",
  296. "email": "schmittjoh@gmail.com"
  297. }
  298. ],
  299. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  300. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  301. "keywords": [
  302. "abstraction",
  303. "apcu",
  304. "cache",
  305. "caching",
  306. "couchdb",
  307. "memcached",
  308. "php",
  309. "redis",
  310. "xcache"
  311. ],
  312. "support": {
  313. "issues": "https://github.com/doctrine/cache/issues",
  314. "source": "https://github.com/doctrine/cache/tree/1.10.x"
  315. },
  316. "funding": [
  317. {
  318. "url": "https://www.doctrine-project.org/sponsorship.html",
  319. "type": "custom"
  320. },
  321. {
  322. "url": "https://www.patreon.com/phpdoctrine",
  323. "type": "patreon"
  324. },
  325. {
  326. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  327. "type": "tidelift"
  328. }
  329. ],
  330. "time": "2020-07-07T18:54:01+00:00"
  331. },
  332. {
  333. "name": "doctrine/dbal",
  334. "version": "2.10.4",
  335. "source": {
  336. "type": "git",
  337. "url": "https://github.com/doctrine/dbal.git",
  338. "reference": "47433196b6390d14409a33885ee42b6208160643"
  339. },
  340. "dist": {
  341. "type": "zip",
  342. "url": "https://api.github.com/repos/doctrine/dbal/zipball/47433196b6390d14409a33885ee42b6208160643",
  343. "reference": "47433196b6390d14409a33885ee42b6208160643",
  344. "shasum": "",
  345. "mirrors": [
  346. {
  347. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  348. "preferred": true
  349. }
  350. ]
  351. },
  352. "require": {
  353. "doctrine/cache": "^1.0",
  354. "doctrine/event-manager": "^1.0",
  355. "ext-pdo": "*",
  356. "php": "^7.2"
  357. },
  358. "require-dev": {
  359. "doctrine/coding-standard": "^8.1",
  360. "jetbrains/phpstorm-stubs": "^2019.1",
  361. "nikic/php-parser": "^4.4",
  362. "phpstan/phpstan": "^0.12.40",
  363. "phpunit/phpunit": "^8.5.5",
  364. "psalm/plugin-phpunit": "^0.10.0",
  365. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
  366. "vimeo/psalm": "^3.14.2"
  367. },
  368. "suggest": {
  369. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  370. },
  371. "bin": [
  372. "bin/doctrine-dbal"
  373. ],
  374. "type": "library",
  375. "extra": {
  376. "branch-alias": {
  377. "dev-master": "2.10.x-dev",
  378. "dev-develop": "3.0.x-dev"
  379. }
  380. },
  381. "autoload": {
  382. "psr-4": {
  383. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  384. }
  385. },
  386. "notification-url": "https://packagist.org/downloads/",
  387. "license": [
  388. "MIT"
  389. ],
  390. "authors": [
  391. {
  392. "name": "Guilherme Blanco",
  393. "email": "guilhermeblanco@gmail.com"
  394. },
  395. {
  396. "name": "Roman Borschel",
  397. "email": "roman@code-factory.org"
  398. },
  399. {
  400. "name": "Benjamin Eberlei",
  401. "email": "kontakt@beberlei.de"
  402. },
  403. {
  404. "name": "Jonathan Wage",
  405. "email": "jonwage@gmail.com"
  406. }
  407. ],
  408. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  409. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  410. "keywords": [
  411. "abstraction",
  412. "database",
  413. "db2",
  414. "dbal",
  415. "mariadb",
  416. "mssql",
  417. "mysql",
  418. "oci8",
  419. "oracle",
  420. "pdo",
  421. "pgsql",
  422. "postgresql",
  423. "queryobject",
  424. "sasql",
  425. "sql",
  426. "sqlanywhere",
  427. "sqlite",
  428. "sqlserver",
  429. "sqlsrv"
  430. ],
  431. "support": {
  432. "issues": "https://github.com/doctrine/dbal/issues",
  433. "source": "https://github.com/doctrine/dbal/tree/2.10.4"
  434. },
  435. "funding": [
  436. {
  437. "url": "https://www.doctrine-project.org/sponsorship.html",
  438. "type": "custom"
  439. },
  440. {
  441. "url": "https://www.patreon.com/phpdoctrine",
  442. "type": "patreon"
  443. },
  444. {
  445. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  446. "type": "tidelift"
  447. }
  448. ],
  449. "time": "2020-09-12T21:20:41+00:00"
  450. },
  451. {
  452. "name": "doctrine/event-manager",
  453. "version": "1.1.1",
  454. "source": {
  455. "type": "git",
  456. "url": "https://github.com/doctrine/event-manager.git",
  457. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  458. },
  459. "dist": {
  460. "type": "zip",
  461. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  462. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  463. "shasum": "",
  464. "mirrors": [
  465. {
  466. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  467. "preferred": true
  468. }
  469. ]
  470. },
  471. "require": {
  472. "php": "^7.1 || ^8.0"
  473. },
  474. "conflict": {
  475. "doctrine/common": "<2.9@dev"
  476. },
  477. "require-dev": {
  478. "doctrine/coding-standard": "^6.0",
  479. "phpunit/phpunit": "^7.0"
  480. },
  481. "type": "library",
  482. "extra": {
  483. "branch-alias": {
  484. "dev-master": "1.0.x-dev"
  485. }
  486. },
  487. "autoload": {
  488. "psr-4": {
  489. "Doctrine\\Common\\": "lib/Doctrine/Common"
  490. }
  491. },
  492. "notification-url": "https://packagist.org/downloads/",
  493. "license": [
  494. "MIT"
  495. ],
  496. "authors": [
  497. {
  498. "name": "Guilherme Blanco",
  499. "email": "guilhermeblanco@gmail.com"
  500. },
  501. {
  502. "name": "Roman Borschel",
  503. "email": "roman@code-factory.org"
  504. },
  505. {
  506. "name": "Benjamin Eberlei",
  507. "email": "kontakt@beberlei.de"
  508. },
  509. {
  510. "name": "Jonathan Wage",
  511. "email": "jonwage@gmail.com"
  512. },
  513. {
  514. "name": "Johannes Schmitt",
  515. "email": "schmittjoh@gmail.com"
  516. },
  517. {
  518. "name": "Marco Pivetta",
  519. "email": "ocramius@gmail.com"
  520. }
  521. ],
  522. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  523. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  524. "keywords": [
  525. "event",
  526. "event dispatcher",
  527. "event manager",
  528. "event system",
  529. "events"
  530. ],
  531. "support": {
  532. "issues": "https://github.com/doctrine/event-manager/issues",
  533. "source": "https://github.com/doctrine/event-manager/tree/1.1.x"
  534. },
  535. "funding": [
  536. {
  537. "url": "https://www.doctrine-project.org/sponsorship.html",
  538. "type": "custom"
  539. },
  540. {
  541. "url": "https://www.patreon.com/phpdoctrine",
  542. "type": "patreon"
  543. },
  544. {
  545. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  546. "type": "tidelift"
  547. }
  548. ],
  549. "time": "2020-05-29T18:28:51+00:00"
  550. },
  551. {
  552. "name": "doctrine/inflector",
  553. "version": "2.0.3",
  554. "source": {
  555. "type": "git",
  556. "url": "https://github.com/doctrine/inflector.git",
  557. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210"
  558. },
  559. "dist": {
  560. "type": "zip",
  561. "url": "https://api.github.com/repos/doctrine/inflector/zipball/9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  562. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  563. "shasum": "",
  564. "mirrors": [
  565. {
  566. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  567. "preferred": true
  568. }
  569. ]
  570. },
  571. "require": {
  572. "php": "^7.2 || ^8.0"
  573. },
  574. "require-dev": {
  575. "doctrine/coding-standard": "^7.0",
  576. "phpstan/phpstan": "^0.11",
  577. "phpstan/phpstan-phpunit": "^0.11",
  578. "phpstan/phpstan-strict-rules": "^0.11",
  579. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  580. },
  581. "type": "library",
  582. "extra": {
  583. "branch-alias": {
  584. "dev-master": "2.0.x-dev"
  585. }
  586. },
  587. "autoload": {
  588. "psr-4": {
  589. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  590. }
  591. },
  592. "notification-url": "https://packagist.org/downloads/",
  593. "license": [
  594. "MIT"
  595. ],
  596. "authors": [
  597. {
  598. "name": "Guilherme Blanco",
  599. "email": "guilhermeblanco@gmail.com"
  600. },
  601. {
  602. "name": "Roman Borschel",
  603. "email": "roman@code-factory.org"
  604. },
  605. {
  606. "name": "Benjamin Eberlei",
  607. "email": "kontakt@beberlei.de"
  608. },
  609. {
  610. "name": "Jonathan Wage",
  611. "email": "jonwage@gmail.com"
  612. },
  613. {
  614. "name": "Johannes Schmitt",
  615. "email": "schmittjoh@gmail.com"
  616. }
  617. ],
  618. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  619. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  620. "keywords": [
  621. "inflection",
  622. "inflector",
  623. "lowercase",
  624. "manipulation",
  625. "php",
  626. "plural",
  627. "singular",
  628. "strings",
  629. "uppercase",
  630. "words"
  631. ],
  632. "support": {
  633. "issues": "https://github.com/doctrine/inflector/issues",
  634. "source": "https://github.com/doctrine/inflector/tree/2.0.x"
  635. },
  636. "funding": [
  637. {
  638. "url": "https://www.doctrine-project.org/sponsorship.html",
  639. "type": "custom"
  640. },
  641. {
  642. "url": "https://www.patreon.com/phpdoctrine",
  643. "type": "patreon"
  644. },
  645. {
  646. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  647. "type": "tidelift"
  648. }
  649. ],
  650. "time": "2020-05-29T15:13:26+00:00"
  651. },
  652. {
  653. "name": "doctrine/lexer",
  654. "version": "1.2.1",
  655. "source": {
  656. "type": "git",
  657. "url": "https://github.com/doctrine/lexer.git",
  658. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  659. },
  660. "dist": {
  661. "type": "zip",
  662. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  663. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  664. "shasum": "",
  665. "mirrors": [
  666. {
  667. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  668. "preferred": true
  669. }
  670. ]
  671. },
  672. "require": {
  673. "php": "^7.2 || ^8.0"
  674. },
  675. "require-dev": {
  676. "doctrine/coding-standard": "^6.0",
  677. "phpstan/phpstan": "^0.11.8",
  678. "phpunit/phpunit": "^8.2"
  679. },
  680. "type": "library",
  681. "extra": {
  682. "branch-alias": {
  683. "dev-master": "1.2.x-dev"
  684. }
  685. },
  686. "autoload": {
  687. "psr-4": {
  688. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  689. }
  690. },
  691. "notification-url": "https://packagist.org/downloads/",
  692. "license": [
  693. "MIT"
  694. ],
  695. "authors": [
  696. {
  697. "name": "Guilherme Blanco",
  698. "email": "guilhermeblanco@gmail.com"
  699. },
  700. {
  701. "name": "Roman Borschel",
  702. "email": "roman@code-factory.org"
  703. },
  704. {
  705. "name": "Johannes Schmitt",
  706. "email": "schmittjoh@gmail.com"
  707. }
  708. ],
  709. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  710. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  711. "keywords": [
  712. "annotations",
  713. "docblock",
  714. "lexer",
  715. "parser",
  716. "php"
  717. ],
  718. "support": {
  719. "issues": "https://github.com/doctrine/lexer/issues",
  720. "source": "https://github.com/doctrine/lexer/tree/1.2.1"
  721. },
  722. "funding": [
  723. {
  724. "url": "https://www.doctrine-project.org/sponsorship.html",
  725. "type": "custom"
  726. },
  727. {
  728. "url": "https://www.patreon.com/phpdoctrine",
  729. "type": "patreon"
  730. },
  731. {
  732. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  733. "type": "tidelift"
  734. }
  735. ],
  736. "time": "2020-05-25T17:44:05+00:00"
  737. },
  738. {
  739. "name": "dragonmantank/cron-expression",
  740. "version": "v2.3.1",
  741. "source": {
  742. "type": "git",
  743. "url": "https://github.com/dragonmantank/cron-expression.git",
  744. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2"
  745. },
  746. "dist": {
  747. "type": "zip",
  748. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/65b2d8ee1f10915efb3b55597da3404f096acba2",
  749. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2",
  750. "shasum": "",
  751. "mirrors": [
  752. {
  753. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  754. "preferred": true
  755. }
  756. ]
  757. },
  758. "require": {
  759. "php": "^7.0|^8.0"
  760. },
  761. "require-dev": {
  762. "phpunit/phpunit": "^6.4|^7.0|^8.0|^9.0"
  763. },
  764. "type": "library",
  765. "extra": {
  766. "branch-alias": {
  767. "dev-master": "2.3-dev"
  768. }
  769. },
  770. "autoload": {
  771. "psr-4": {
  772. "Cron\\": "src/Cron/"
  773. }
  774. },
  775. "notification-url": "https://packagist.org/downloads/",
  776. "license": [
  777. "MIT"
  778. ],
  779. "authors": [
  780. {
  781. "name": "Michael Dowling",
  782. "email": "mtdowling@gmail.com",
  783. "homepage": "https://github.com/mtdowling"
  784. },
  785. {
  786. "name": "Chris Tankersley",
  787. "email": "chris@ctankersley.com",
  788. "homepage": "https://github.com/dragonmantank"
  789. }
  790. ],
  791. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  792. "keywords": [
  793. "cron",
  794. "schedule"
  795. ],
  796. "support": {
  797. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  798. "source": "https://github.com/dragonmantank/cron-expression/tree/v2.3.1"
  799. },
  800. "funding": [
  801. {
  802. "url": "https://github.com/dragonmantank",
  803. "type": "github"
  804. }
  805. ],
  806. "time": "2020-10-13T00:52:37+00:00"
  807. },
  808. {
  809. "name": "egulias/email-validator",
  810. "version": "2.1.24",
  811. "source": {
  812. "type": "git",
  813. "url": "https://github.com/egulias/EmailValidator.git",
  814. "reference": "ca90a3291eee1538cd48ff25163240695bd95448"
  815. },
  816. "dist": {
  817. "type": "zip",
  818. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ca90a3291eee1538cd48ff25163240695bd95448",
  819. "reference": "ca90a3291eee1538cd48ff25163240695bd95448",
  820. "shasum": "",
  821. "mirrors": [
  822. {
  823. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  824. "preferred": true
  825. }
  826. ]
  827. },
  828. "require": {
  829. "doctrine/lexer": "^1.0.1",
  830. "php": ">=5.5",
  831. "symfony/polyfill-intl-idn": "^1.10"
  832. },
  833. "require-dev": {
  834. "dominicsayers/isemail": "^3.0.7",
  835. "phpunit/phpunit": "^4.8.36|^7.5.15",
  836. "satooshi/php-coveralls": "^1.0.1"
  837. },
  838. "suggest": {
  839. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  840. },
  841. "type": "library",
  842. "extra": {
  843. "branch-alias": {
  844. "dev-master": "2.1.x-dev"
  845. }
  846. },
  847. "autoload": {
  848. "psr-4": {
  849. "Egulias\\EmailValidator\\": "src"
  850. }
  851. },
  852. "notification-url": "https://packagist.org/downloads/",
  853. "license": [
  854. "MIT"
  855. ],
  856. "authors": [
  857. {
  858. "name": "Eduardo Gulias Davis"
  859. }
  860. ],
  861. "description": "A library for validating emails against several RFCs",
  862. "homepage": "https://github.com/egulias/EmailValidator",
  863. "keywords": [
  864. "email",
  865. "emailvalidation",
  866. "emailvalidator",
  867. "validation",
  868. "validator"
  869. ],
  870. "support": {
  871. "issues": "https://github.com/egulias/EmailValidator/issues",
  872. "source": "https://github.com/egulias/EmailValidator/tree/2.1.24"
  873. },
  874. "funding": [
  875. {
  876. "url": "https://github.com/egulias",
  877. "type": "github"
  878. }
  879. ],
  880. "time": "2020-11-14T15:56:27+00:00"
  881. },
  882. {
  883. "name": "endroid/qr-code",
  884. "version": "3.9.6",
  885. "source": {
  886. "type": "git",
  887. "url": "https://github.com/endroid/qr-code.git",
  888. "reference": "9cdd4f5d609bfc8811ca4a62b4d23eb16976242f"
  889. },
  890. "dist": {
  891. "type": "zip",
  892. "url": "https://api.github.com/repos/endroid/qr-code/zipball/9cdd4f5d609bfc8811ca4a62b4d23eb16976242f",
  893. "reference": "9cdd4f5d609bfc8811ca4a62b4d23eb16976242f",
  894. "shasum": "",
  895. "mirrors": [
  896. {
  897. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  898. "preferred": true
  899. }
  900. ]
  901. },
  902. "require": {
  903. "bacon/bacon-qr-code": "^2.0",
  904. "khanamiryan/qrcode-detector-decoder": "^1.0.2",
  905. "myclabs/php-enum": "^1.5",
  906. "php": ">=7.2",
  907. "symfony/options-resolver": "^3.4||^4.4||^5.0",
  908. "symfony/property-access": "^3.4||^4.4||^5.0"
  909. },
  910. "require-dev": {
  911. "endroid/quality": "^1.3.7",
  912. "setasign/fpdf": "^1.8"
  913. },
  914. "suggest": {
  915. "ext-gd": "Required for generating PNG images",
  916. "roave/security-advisories": "Avoids installation of package versions with vulnerabilities",
  917. "setasign/fpdf": "Required to use the FPDF writer.",
  918. "symfony/security-checker": "Checks your composer.lock for vulnerabilities"
  919. },
  920. "type": "library",
  921. "extra": {
  922. "branch-alias": {
  923. "dev-master": "3.x-dev"
  924. }
  925. },
  926. "autoload": {
  927. "psr-4": {
  928. "Endroid\\QrCode\\": "src/"
  929. }
  930. },
  931. "notification-url": "https://packagist.org/downloads/",
  932. "license": [
  933. "MIT"
  934. ],
  935. "authors": [
  936. {
  937. "name": "Jeroen van den Enden",
  938. "email": "info@endroid.nl"
  939. }
  940. ],
  941. "description": "Endroid QR Code",
  942. "homepage": "https://github.com/endroid/qr-code",
  943. "keywords": [
  944. "bundle",
  945. "code",
  946. "endroid",
  947. "php",
  948. "qr",
  949. "qrcode"
  950. ],
  951. "support": {
  952. "issues": "https://github.com/endroid/qr-code/issues",
  953. "source": "https://github.com/endroid/qr-code/tree/3.9.6"
  954. },
  955. "funding": [
  956. {
  957. "url": "https://github.com/endroid",
  958. "type": "github"
  959. }
  960. ],
  961. "time": "2020-11-27T14:30:38+00:00"
  962. },
  963. {
  964. "name": "facade/flare-client-php",
  965. "version": "1.3.7",
  966. "source": {
  967. "type": "git",
  968. "url": "https://github.com/facade/flare-client-php.git",
  969. "reference": "fd688d3c06658f2b3b5f7bb19f051ee4ddf02492"
  970. },
  971. "dist": {
  972. "type": "zip",
  973. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/fd688d3c06658f2b3b5f7bb19f051ee4ddf02492",
  974. "reference": "fd688d3c06658f2b3b5f7bb19f051ee4ddf02492",
  975. "shasum": "",
  976. "mirrors": [
  977. {
  978. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  979. "preferred": true
  980. }
  981. ]
  982. },
  983. "require": {
  984. "facade/ignition-contracts": "~1.0",
  985. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  986. "php": "^7.1|^8.0",
  987. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  988. "symfony/mime": "^3.4|^4.0|^5.1",
  989. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  990. },
  991. "require-dev": {
  992. "friendsofphp/php-cs-fixer": "^2.14",
  993. "phpunit/phpunit": "^7.5.16",
  994. "spatie/phpunit-snapshot-assertions": "^2.0"
  995. },
  996. "type": "library",
  997. "extra": {
  998. "branch-alias": {
  999. "dev-master": "1.0-dev"
  1000. }
  1001. },
  1002. "autoload": {
  1003. "psr-4": {
  1004. "Facade\\FlareClient\\": "src"
  1005. },
  1006. "files": [
  1007. "src/helpers.php"
  1008. ]
  1009. },
  1010. "notification-url": "https://packagist.org/downloads/",
  1011. "license": [
  1012. "MIT"
  1013. ],
  1014. "description": "Send PHP errors to Flare",
  1015. "homepage": "https://github.com/facade/flare-client-php",
  1016. "keywords": [
  1017. "exception",
  1018. "facade",
  1019. "flare",
  1020. "reporting"
  1021. ],
  1022. "support": {
  1023. "issues": "https://github.com/facade/flare-client-php/issues",
  1024. "source": "https://github.com/facade/flare-client-php/tree/1.3.7"
  1025. },
  1026. "funding": [
  1027. {
  1028. "url": "https://github.com/spatie",
  1029. "type": "github"
  1030. }
  1031. ],
  1032. "time": "2020-10-21T16:02:39+00:00"
  1033. },
  1034. {
  1035. "name": "facade/ignition",
  1036. "version": "2.4.1",
  1037. "source": {
  1038. "type": "git",
  1039. "url": "https://github.com/facade/ignition.git",
  1040. "reference": "9fc6c3d3de5271a1b94cff19dce2c9295abf0ffa"
  1041. },
  1042. "dist": {
  1043. "type": "zip",
  1044. "url": "https://api.github.com/repos/facade/ignition/zipball/9fc6c3d3de5271a1b94cff19dce2c9295abf0ffa",
  1045. "reference": "9fc6c3d3de5271a1b94cff19dce2c9295abf0ffa",
  1046. "shasum": "",
  1047. "mirrors": [
  1048. {
  1049. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1050. "preferred": true
  1051. }
  1052. ]
  1053. },
  1054. "require": {
  1055. "ext-json": "*",
  1056. "ext-mbstring": "*",
  1057. "facade/flare-client-php": "^1.0",
  1058. "facade/ignition-contracts": "^1.0",
  1059. "filp/whoops": "^2.4",
  1060. "illuminate/support": "^7.0|^8.0",
  1061. "monolog/monolog": "^2.0",
  1062. "php": "^7.2.5",
  1063. "scrivo/highlight.php": "^9.15",
  1064. "symfony/console": "^5.0",
  1065. "symfony/var-dumper": "^5.0"
  1066. },
  1067. "require-dev": {
  1068. "friendsofphp/php-cs-fixer": "^2.14",
  1069. "mockery/mockery": "^1.3",
  1070. "orchestra/testbench": "^5.0|^6.0",
  1071. "psalm/plugin-laravel": "^1.2"
  1072. },
  1073. "suggest": {
  1074. "laravel/telescope": "^3.1"
  1075. },
  1076. "type": "library",
  1077. "extra": {
  1078. "branch-alias": {
  1079. "dev-master": "2.x-dev"
  1080. },
  1081. "laravel": {
  1082. "providers": [
  1083. "Facade\\Ignition\\IgnitionServiceProvider"
  1084. ],
  1085. "aliases": {
  1086. "Flare": "Facade\\Ignition\\Facades\\Flare"
  1087. }
  1088. }
  1089. },
  1090. "autoload": {
  1091. "psr-4": {
  1092. "Facade\\Ignition\\": "src"
  1093. },
  1094. "files": [
  1095. "src/helpers.php"
  1096. ]
  1097. },
  1098. "notification-url": "https://packagist.org/downloads/",
  1099. "license": [
  1100. "MIT"
  1101. ],
  1102. "description": "A beautiful error page for Laravel applications.",
  1103. "homepage": "https://github.com/facade/ignition",
  1104. "keywords": [
  1105. "error",
  1106. "flare",
  1107. "laravel",
  1108. "page"
  1109. ],
  1110. "support": {
  1111. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  1112. "forum": "https://twitter.com/flareappio",
  1113. "issues": "https://github.com/facade/ignition/issues",
  1114. "source": "https://github.com/facade/ignition"
  1115. },
  1116. "time": "2020-10-14T08:59:59+00:00"
  1117. },
  1118. {
  1119. "name": "facade/ignition-contracts",
  1120. "version": "1.0.1",
  1121. "source": {
  1122. "type": "git",
  1123. "url": "https://github.com/facade/ignition-contracts.git",
  1124. "reference": "aeab1ce8b68b188a43e81758e750151ad7da796b"
  1125. },
  1126. "dist": {
  1127. "type": "zip",
  1128. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/aeab1ce8b68b188a43e81758e750151ad7da796b",
  1129. "reference": "aeab1ce8b68b188a43e81758e750151ad7da796b",
  1130. "shasum": "",
  1131. "mirrors": [
  1132. {
  1133. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1134. "preferred": true
  1135. }
  1136. ]
  1137. },
  1138. "require": {
  1139. "php": "^7.1"
  1140. },
  1141. "require-dev": {
  1142. "friendsofphp/php-cs-fixer": "^2.14",
  1143. "phpunit/phpunit": "^7.5|^8.0",
  1144. "vimeo/psalm": "^3.12"
  1145. },
  1146. "type": "library",
  1147. "autoload": {
  1148. "psr-4": {
  1149. "Facade\\IgnitionContracts\\": "src"
  1150. }
  1151. },
  1152. "notification-url": "https://packagist.org/downloads/",
  1153. "license": [
  1154. "MIT"
  1155. ],
  1156. "authors": [
  1157. {
  1158. "name": "Freek Van der Herten",
  1159. "email": "freek@spatie.be",
  1160. "homepage": "https://flareapp.io",
  1161. "role": "Developer"
  1162. }
  1163. ],
  1164. "description": "Solution contracts for Ignition",
  1165. "homepage": "https://github.com/facade/ignition-contracts",
  1166. "keywords": [
  1167. "contracts",
  1168. "flare",
  1169. "ignition"
  1170. ],
  1171. "support": {
  1172. "issues": "https://github.com/facade/ignition-contracts/issues",
  1173. "source": "https://github.com/facade/ignition-contracts/tree/1.0.1"
  1174. },
  1175. "time": "2020-07-14T10:10:28+00:00"
  1176. },
  1177. {
  1178. "name": "fideloper/proxy",
  1179. "version": "4.4.1",
  1180. "source": {
  1181. "type": "git",
  1182. "url": "https://github.com/fideloper/TrustedProxy.git",
  1183. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0"
  1184. },
  1185. "dist": {
  1186. "type": "zip",
  1187. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  1188. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  1189. "shasum": "",
  1190. "mirrors": [
  1191. {
  1192. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1193. "preferred": true
  1194. }
  1195. ]
  1196. },
  1197. "require": {
  1198. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1199. "php": ">=5.4.0"
  1200. },
  1201. "require-dev": {
  1202. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1203. "mockery/mockery": "^1.0",
  1204. "phpunit/phpunit": "^6.0"
  1205. },
  1206. "type": "library",
  1207. "extra": {
  1208. "laravel": {
  1209. "providers": [
  1210. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  1211. ]
  1212. }
  1213. },
  1214. "autoload": {
  1215. "psr-4": {
  1216. "Fideloper\\Proxy\\": "src/"
  1217. }
  1218. },
  1219. "notification-url": "https://packagist.org/downloads/",
  1220. "license": [
  1221. "MIT"
  1222. ],
  1223. "authors": [
  1224. {
  1225. "name": "Chris Fidao",
  1226. "email": "fideloper@gmail.com"
  1227. }
  1228. ],
  1229. "description": "Set trusted proxies for Laravel",
  1230. "keywords": [
  1231. "load balancing",
  1232. "proxy",
  1233. "trusted proxy"
  1234. ],
  1235. "support": {
  1236. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  1237. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.1"
  1238. },
  1239. "time": "2020-10-22T13:48:01+00:00"
  1240. },
  1241. {
  1242. "name": "filp/whoops",
  1243. "version": "2.9.1",
  1244. "source": {
  1245. "type": "git",
  1246. "url": "https://github.com/filp/whoops.git",
  1247. "reference": "307fb34a5ab697461ec4c9db865b20ff2fd40771"
  1248. },
  1249. "dist": {
  1250. "type": "zip",
  1251. "url": "https://api.github.com/repos/filp/whoops/zipball/307fb34a5ab697461ec4c9db865b20ff2fd40771",
  1252. "reference": "307fb34a5ab697461ec4c9db865b20ff2fd40771",
  1253. "shasum": "",
  1254. "mirrors": [
  1255. {
  1256. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1257. "preferred": true
  1258. }
  1259. ]
  1260. },
  1261. "require": {
  1262. "php": "^5.5.9 || ^7.0 || ^8.0",
  1263. "psr/log": "^1.0.1"
  1264. },
  1265. "require-dev": {
  1266. "mockery/mockery": "^0.9 || ^1.0",
  1267. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  1268. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  1269. },
  1270. "suggest": {
  1271. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  1272. "whoops/soap": "Formats errors as SOAP responses"
  1273. },
  1274. "type": "library",
  1275. "extra": {
  1276. "branch-alias": {
  1277. "dev-master": "2.7-dev"
  1278. }
  1279. },
  1280. "autoload": {
  1281. "psr-4": {
  1282. "Whoops\\": "src/Whoops/"
  1283. }
  1284. },
  1285. "notification-url": "https://packagist.org/downloads/",
  1286. "license": [
  1287. "MIT"
  1288. ],
  1289. "authors": [
  1290. {
  1291. "name": "Filipe Dobreira",
  1292. "homepage": "https://github.com/filp",
  1293. "role": "Developer"
  1294. }
  1295. ],
  1296. "description": "php error handling for cool kids",
  1297. "homepage": "https://filp.github.io/whoops/",
  1298. "keywords": [
  1299. "error",
  1300. "exception",
  1301. "handling",
  1302. "library",
  1303. "throwable",
  1304. "whoops"
  1305. ],
  1306. "support": {
  1307. "issues": "https://github.com/filp/whoops/issues",
  1308. "source": "https://github.com/filp/whoops/tree/2.9.1"
  1309. },
  1310. "time": "2020-11-01T12:00:00+00:00"
  1311. },
  1312. {
  1313. "name": "guzzlehttp/guzzle",
  1314. "version": "6.5.5",
  1315. "source": {
  1316. "type": "git",
  1317. "url": "https://github.com/guzzle/guzzle.git",
  1318. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
  1319. },
  1320. "dist": {
  1321. "type": "zip",
  1322. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1323. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1324. "shasum": "",
  1325. "mirrors": [
  1326. {
  1327. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1328. "preferred": true
  1329. }
  1330. ]
  1331. },
  1332. "require": {
  1333. "ext-json": "*",
  1334. "guzzlehttp/promises": "^1.0",
  1335. "guzzlehttp/psr7": "^1.6.1",
  1336. "php": ">=5.5",
  1337. "symfony/polyfill-intl-idn": "^1.17.0"
  1338. },
  1339. "require-dev": {
  1340. "ext-curl": "*",
  1341. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  1342. "psr/log": "^1.1"
  1343. },
  1344. "suggest": {
  1345. "psr/log": "Required for using the Log middleware"
  1346. },
  1347. "type": "library",
  1348. "extra": {
  1349. "branch-alias": {
  1350. "dev-master": "6.5-dev"
  1351. }
  1352. },
  1353. "autoload": {
  1354. "psr-4": {
  1355. "GuzzleHttp\\": "src/"
  1356. },
  1357. "files": [
  1358. "src/functions_include.php"
  1359. ]
  1360. },
  1361. "notification-url": "https://packagist.org/downloads/",
  1362. "license": [
  1363. "MIT"
  1364. ],
  1365. "authors": [
  1366. {
  1367. "name": "Michael Dowling",
  1368. "email": "mtdowling@gmail.com",
  1369. "homepage": "https://github.com/mtdowling"
  1370. }
  1371. ],
  1372. "description": "Guzzle is a PHP HTTP client library",
  1373. "homepage": "http://guzzlephp.org/",
  1374. "keywords": [
  1375. "client",
  1376. "curl",
  1377. "framework",
  1378. "http",
  1379. "http client",
  1380. "rest",
  1381. "web service"
  1382. ],
  1383. "support": {
  1384. "issues": "https://github.com/guzzle/guzzle/issues",
  1385. "source": "https://github.com/guzzle/guzzle/tree/6.5"
  1386. },
  1387. "time": "2020-06-16T21:01:06+00:00"
  1388. },
  1389. {
  1390. "name": "guzzlehttp/promises",
  1391. "version": "1.4.0",
  1392. "source": {
  1393. "type": "git",
  1394. "url": "https://github.com/guzzle/promises.git",
  1395. "reference": "60d379c243457e073cff02bc323a2a86cb355631"
  1396. },
  1397. "dist": {
  1398. "type": "zip",
  1399. "url": "https://api.github.com/repos/guzzle/promises/zipball/60d379c243457e073cff02bc323a2a86cb355631",
  1400. "reference": "60d379c243457e073cff02bc323a2a86cb355631",
  1401. "shasum": "",
  1402. "mirrors": [
  1403. {
  1404. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1405. "preferred": true
  1406. }
  1407. ]
  1408. },
  1409. "require": {
  1410. "php": ">=5.5"
  1411. },
  1412. "require-dev": {
  1413. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  1414. },
  1415. "type": "library",
  1416. "extra": {
  1417. "branch-alias": {
  1418. "dev-master": "1.4-dev"
  1419. }
  1420. },
  1421. "autoload": {
  1422. "psr-4": {
  1423. "GuzzleHttp\\Promise\\": "src/"
  1424. },
  1425. "files": [
  1426. "src/functions_include.php"
  1427. ]
  1428. },
  1429. "notification-url": "https://packagist.org/downloads/",
  1430. "license": [
  1431. "MIT"
  1432. ],
  1433. "authors": [
  1434. {
  1435. "name": "Michael Dowling",
  1436. "email": "mtdowling@gmail.com",
  1437. "homepage": "https://github.com/mtdowling"
  1438. }
  1439. ],
  1440. "description": "Guzzle promises library",
  1441. "keywords": [
  1442. "promise"
  1443. ],
  1444. "support": {
  1445. "issues": "https://github.com/guzzle/promises/issues",
  1446. "source": "https://github.com/guzzle/promises/tree/1.4.0"
  1447. },
  1448. "time": "2020-09-30T07:37:28+00:00"
  1449. },
  1450. {
  1451. "name": "guzzlehttp/psr7",
  1452. "version": "1.7.0",
  1453. "source": {
  1454. "type": "git",
  1455. "url": "https://github.com/guzzle/psr7.git",
  1456. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3"
  1457. },
  1458. "dist": {
  1459. "type": "zip",
  1460. "url": "https://api.github.com/repos/guzzle/psr7/zipball/53330f47520498c0ae1f61f7e2c90f55690c06a3",
  1461. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3",
  1462. "shasum": "",
  1463. "mirrors": [
  1464. {
  1465. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1466. "preferred": true
  1467. }
  1468. ]
  1469. },
  1470. "require": {
  1471. "php": ">=5.4.0",
  1472. "psr/http-message": "~1.0",
  1473. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  1474. },
  1475. "provide": {
  1476. "psr/http-message-implementation": "1.0"
  1477. },
  1478. "require-dev": {
  1479. "ext-zlib": "*",
  1480. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  1481. },
  1482. "suggest": {
  1483. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1484. },
  1485. "type": "library",
  1486. "extra": {
  1487. "branch-alias": {
  1488. "dev-master": "1.7-dev"
  1489. }
  1490. },
  1491. "autoload": {
  1492. "psr-4": {
  1493. "GuzzleHttp\\Psr7\\": "src/"
  1494. },
  1495. "files": [
  1496. "src/functions_include.php"
  1497. ]
  1498. },
  1499. "notification-url": "https://packagist.org/downloads/",
  1500. "license": [
  1501. "MIT"
  1502. ],
  1503. "authors": [
  1504. {
  1505. "name": "Michael Dowling",
  1506. "email": "mtdowling@gmail.com",
  1507. "homepage": "https://github.com/mtdowling"
  1508. },
  1509. {
  1510. "name": "Tobias Schultze",
  1511. "homepage": "https://github.com/Tobion"
  1512. }
  1513. ],
  1514. "description": "PSR-7 message implementation that also provides common utility methods",
  1515. "keywords": [
  1516. "http",
  1517. "message",
  1518. "psr-7",
  1519. "request",
  1520. "response",
  1521. "stream",
  1522. "uri",
  1523. "url"
  1524. ],
  1525. "support": {
  1526. "issues": "https://github.com/guzzle/psr7/issues",
  1527. "source": "https://github.com/guzzle/psr7/tree/1.7.0"
  1528. },
  1529. "time": "2020-09-30T07:37:11+00:00"
  1530. },
  1531. {
  1532. "name": "intervention/image",
  1533. "version": "2.5.1",
  1534. "source": {
  1535. "type": "git",
  1536. "url": "https://github.com/Intervention/image.git",
  1537. "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e"
  1538. },
  1539. "dist": {
  1540. "type": "zip",
  1541. "url": "https://api.github.com/repos/Intervention/image/zipball/abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
  1542. "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
  1543. "shasum": "",
  1544. "mirrors": [
  1545. {
  1546. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1547. "preferred": true
  1548. }
  1549. ]
  1550. },
  1551. "require": {
  1552. "ext-fileinfo": "*",
  1553. "guzzlehttp/psr7": "~1.1",
  1554. "php": ">=5.4.0"
  1555. },
  1556. "require-dev": {
  1557. "mockery/mockery": "~0.9.2",
  1558. "phpunit/phpunit": "^4.8 || ^5.7"
  1559. },
  1560. "suggest": {
  1561. "ext-gd": "to use GD library based image processing.",
  1562. "ext-imagick": "to use Imagick based image processing.",
  1563. "intervention/imagecache": "Caching extension for the Intervention Image library"
  1564. },
  1565. "type": "library",
  1566. "extra": {
  1567. "branch-alias": {
  1568. "dev-master": "2.4-dev"
  1569. },
  1570. "laravel": {
  1571. "providers": [
  1572. "Intervention\\Image\\ImageServiceProvider"
  1573. ],
  1574. "aliases": {
  1575. "Image": "Intervention\\Image\\Facades\\Image"
  1576. }
  1577. }
  1578. },
  1579. "autoload": {
  1580. "psr-4": {
  1581. "Intervention\\Image\\": "src/Intervention/Image"
  1582. }
  1583. },
  1584. "notification-url": "https://packagist.org/downloads/",
  1585. "license": [
  1586. "MIT"
  1587. ],
  1588. "authors": [
  1589. {
  1590. "name": "Oliver Vogel",
  1591. "email": "oliver@olivervogel.com",
  1592. "homepage": "http://olivervogel.com/"
  1593. }
  1594. ],
  1595. "description": "Image handling and manipulation library with support for Laravel integration",
  1596. "homepage": "http://image.intervention.io/",
  1597. "keywords": [
  1598. "gd",
  1599. "image",
  1600. "imagick",
  1601. "laravel",
  1602. "thumbnail",
  1603. "watermark"
  1604. ],
  1605. "support": {
  1606. "issues": "https://github.com/Intervention/image/issues",
  1607. "source": "https://github.com/Intervention/image/tree/master"
  1608. },
  1609. "time": "2019-11-02T09:15:47+00:00"
  1610. },
  1611. {
  1612. "name": "khanamiryan/qrcode-detector-decoder",
  1613. "version": "1.0.4",
  1614. "source": {
  1615. "type": "git",
  1616. "url": "https://github.com/khanamiryan/php-qrcode-detector-decoder.git",
  1617. "reference": "07fceefb79d895e858e52921afb9c1433d2f3d5e"
  1618. },
  1619. "dist": {
  1620. "type": "zip",
  1621. "url": "https://api.github.com/repos/khanamiryan/php-qrcode-detector-decoder/zipball/07fceefb79d895e858e52921afb9c1433d2f3d5e",
  1622. "reference": "07fceefb79d895e858e52921afb9c1433d2f3d5e",
  1623. "shasum": "",
  1624. "mirrors": [
  1625. {
  1626. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1627. "preferred": true
  1628. }
  1629. ]
  1630. },
  1631. "require": {
  1632. "php": ">=5.6"
  1633. },
  1634. "require-dev": {
  1635. "phpunit/phpunit": "^9.0"
  1636. },
  1637. "type": "library",
  1638. "autoload": {
  1639. "psr-4": {
  1640. "Zxing\\": "lib/"
  1641. },
  1642. "files": [
  1643. "lib/Common/customFunctions.php"
  1644. ]
  1645. },
  1646. "notification-url": "https://packagist.org/downloads/",
  1647. "license": [
  1648. "MIT"
  1649. ],
  1650. "authors": [
  1651. {
  1652. "name": "Ashot Khanamiryan",
  1653. "email": "a.khanamiryan@gmail.com",
  1654. "homepage": "https://github.com/khanamiryan",
  1655. "role": "Developer"
  1656. }
  1657. ],
  1658. "description": "QR code decoder / reader",
  1659. "homepage": "https://github.com/khanamiryan/php-qrcode-detector-decoder/",
  1660. "keywords": [
  1661. "barcode",
  1662. "qr",
  1663. "zxing"
  1664. ],
  1665. "support": {
  1666. "issues": "https://github.com/khanamiryan/php-qrcode-detector-decoder/issues",
  1667. "source": "https://github.com/khanamiryan/php-qrcode-detector-decoder/tree/1.0.4"
  1668. },
  1669. "time": "2020-11-29T18:50:26+00:00"
  1670. },
  1671. {
  1672. "name": "kitetail/zttp",
  1673. "version": "v0.6.0",
  1674. "source": {
  1675. "type": "git",
  1676. "url": "https://github.com/kitetail/zttp.git",
  1677. "reference": "92662d7f9025b4c9a0b8a585e31810461fcca435"
  1678. },
  1679. "dist": {
  1680. "type": "zip",
  1681. "url": "https://api.github.com/repos/kitetail/zttp/zipball/92662d7f9025b4c9a0b8a585e31810461fcca435",
  1682. "reference": "92662d7f9025b4c9a0b8a585e31810461fcca435",
  1683. "shasum": "",
  1684. "mirrors": [
  1685. {
  1686. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1687. "preferred": true
  1688. }
  1689. ]
  1690. },
  1691. "require": {
  1692. "guzzlehttp/guzzle": "^6.0",
  1693. "php": ">=7.0",
  1694. "tightenco/collect": "^5.4"
  1695. },
  1696. "require-dev": {
  1697. "laravel/lumen-framework": "5.5.*",
  1698. "phpunit/phpunit": "^6.0"
  1699. },
  1700. "type": "library",
  1701. "autoload": {
  1702. "files": [
  1703. "src/Zttp.php"
  1704. ]
  1705. },
  1706. "notification-url": "https://packagist.org/downloads/",
  1707. "license": [
  1708. "MIT"
  1709. ],
  1710. "authors": [
  1711. {
  1712. "name": "Adam Wathan",
  1713. "email": "adam.wathan@gmail.com"
  1714. }
  1715. ],
  1716. "description": "A developer-experience focused HTTP client, optimized for most common use cases.",
  1717. "keywords": [
  1718. "Guzzle",
  1719. "http"
  1720. ],
  1721. "support": {
  1722. "issues": "https://github.com/kitetail/zttp/issues",
  1723. "source": "https://github.com/kitetail/zttp/tree/master"
  1724. },
  1725. "time": "2019-06-10T12:18:52+00:00"
  1726. },
  1727. {
  1728. "name": "laravel/framework",
  1729. "version": "v7.30.0",
  1730. "source": {
  1731. "type": "git",
  1732. "url": "https://github.com/laravel/framework.git",
  1733. "reference": "629c36a0fe87b66d8dccd3c82927950d0f59d3f9"
  1734. },
  1735. "dist": {
  1736. "type": "zip",
  1737. "url": "https://api.github.com/repos/laravel/framework/zipball/629c36a0fe87b66d8dccd3c82927950d0f59d3f9",
  1738. "reference": "629c36a0fe87b66d8dccd3c82927950d0f59d3f9",
  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. "doctrine/inflector": "^1.4|^2.0",
  1749. "dragonmantank/cron-expression": "^2.3.1",
  1750. "egulias/email-validator": "^2.1.10",
  1751. "ext-json": "*",
  1752. "ext-mbstring": "*",
  1753. "ext-openssl": "*",
  1754. "league/commonmark": "^1.3",
  1755. "league/flysystem": "^1.1",
  1756. "monolog/monolog": "^2.0",
  1757. "nesbot/carbon": "^2.31",
  1758. "opis/closure": "^3.6",
  1759. "php": "^7.2.5|^8.0",
  1760. "psr/container": "^1.0",
  1761. "psr/simple-cache": "^1.0",
  1762. "ramsey/uuid": "^3.7|^4.0",
  1763. "swiftmailer/swiftmailer": "^6.0",
  1764. "symfony/console": "^5.0",
  1765. "symfony/error-handler": "^5.0",
  1766. "symfony/finder": "^5.0",
  1767. "symfony/http-foundation": "^5.0",
  1768. "symfony/http-kernel": "^5.0",
  1769. "symfony/mime": "^5.0",
  1770. "symfony/polyfill-php73": "^1.17",
  1771. "symfony/process": "^5.0",
  1772. "symfony/routing": "^5.0",
  1773. "symfony/var-dumper": "^5.0",
  1774. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  1775. "vlucas/phpdotenv": "^4.0",
  1776. "voku/portable-ascii": "^1.4.8"
  1777. },
  1778. "conflict": {
  1779. "tightenco/collect": "<5.5.33"
  1780. },
  1781. "provide": {
  1782. "psr/container-implementation": "1.0"
  1783. },
  1784. "replace": {
  1785. "illuminate/auth": "self.version",
  1786. "illuminate/broadcasting": "self.version",
  1787. "illuminate/bus": "self.version",
  1788. "illuminate/cache": "self.version",
  1789. "illuminate/config": "self.version",
  1790. "illuminate/console": "self.version",
  1791. "illuminate/container": "self.version",
  1792. "illuminate/contracts": "self.version",
  1793. "illuminate/cookie": "self.version",
  1794. "illuminate/database": "self.version",
  1795. "illuminate/encryption": "self.version",
  1796. "illuminate/events": "self.version",
  1797. "illuminate/filesystem": "self.version",
  1798. "illuminate/hashing": "self.version",
  1799. "illuminate/http": "self.version",
  1800. "illuminate/log": "self.version",
  1801. "illuminate/mail": "self.version",
  1802. "illuminate/notifications": "self.version",
  1803. "illuminate/pagination": "self.version",
  1804. "illuminate/pipeline": "self.version",
  1805. "illuminate/queue": "self.version",
  1806. "illuminate/redis": "self.version",
  1807. "illuminate/routing": "self.version",
  1808. "illuminate/session": "self.version",
  1809. "illuminate/support": "self.version",
  1810. "illuminate/testing": "self.version",
  1811. "illuminate/translation": "self.version",
  1812. "illuminate/validation": "self.version",
  1813. "illuminate/view": "self.version"
  1814. },
  1815. "require-dev": {
  1816. "aws/aws-sdk-php": "^3.155",
  1817. "doctrine/dbal": "^2.6",
  1818. "filp/whoops": "^2.8",
  1819. "guzzlehttp/guzzle": "^6.3.1|^7.0.1",
  1820. "league/flysystem-cached-adapter": "^1.0",
  1821. "mockery/mockery": "~1.3.3|^1.4.2",
  1822. "moontoast/math": "^1.1",
  1823. "orchestra/testbench-core": "^5.8",
  1824. "pda/pheanstalk": "^4.0",
  1825. "phpunit/phpunit": "^8.4|^9.3.3",
  1826. "predis/predis": "^1.1.1",
  1827. "symfony/cache": "^5.0"
  1828. },
  1829. "suggest": {
  1830. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.155).",
  1831. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
  1832. "ext-ftp": "Required to use the Flysystem FTP driver.",
  1833. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  1834. "ext-memcached": "Required to use the memcache cache driver.",
  1835. "ext-pcntl": "Required to use all features of the queue worker.",
  1836. "ext-posix": "Required to use all features of the queue worker.",
  1837. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  1838. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  1839. "filp/whoops": "Required for friendly error pages in development (^2.8).",
  1840. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.3.1|^7.0.1).",
  1841. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  1842. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  1843. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  1844. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  1845. "mockery/mockery": "Required to use mocking (~1.3.3|^1.4.2).",
  1846. "moontoast/math": "Required to use ordered UUIDs (^1.1).",
  1847. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  1848. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  1849. "phpunit/phpunit": "Required to use assertions and run tests (^8.4|^9.3.3).",
  1850. "predis/predis": "Required to use the predis connector (^1.1.2).",
  1851. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  1852. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0).",
  1853. "symfony/cache": "Required to PSR-6 cache bridge (^5.0).",
  1854. "symfony/filesystem": "Required to create relative storage directory symbolic links (^5.0).",
  1855. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  1856. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  1857. },
  1858. "type": "library",
  1859. "extra": {
  1860. "branch-alias": {
  1861. "dev-master": "7.x-dev"
  1862. }
  1863. },
  1864. "autoload": {
  1865. "files": [
  1866. "src/Illuminate/Foundation/helpers.php",
  1867. "src/Illuminate/Support/helpers.php"
  1868. ],
  1869. "psr-4": {
  1870. "Illuminate\\": "src/Illuminate/"
  1871. }
  1872. },
  1873. "notification-url": "https://packagist.org/downloads/",
  1874. "license": [
  1875. "MIT"
  1876. ],
  1877. "authors": [
  1878. {
  1879. "name": "Taylor Otwell",
  1880. "email": "taylor@laravel.com"
  1881. }
  1882. ],
  1883. "description": "The Laravel Framework.",
  1884. "homepage": "https://laravel.com",
  1885. "keywords": [
  1886. "framework",
  1887. "laravel"
  1888. ],
  1889. "support": {
  1890. "issues": "https://github.com/laravel/framework/issues",
  1891. "source": "https://github.com/laravel/framework"
  1892. },
  1893. "time": "2020-12-01T15:01:25+00:00"
  1894. },
  1895. {
  1896. "name": "laravel/tinker",
  1897. "version": "v2.5.0",
  1898. "source": {
  1899. "type": "git",
  1900. "url": "https://github.com/laravel/tinker.git",
  1901. "reference": "45884b526e10a88a1b179fa1a1a24d5468c668c2"
  1902. },
  1903. "dist": {
  1904. "type": "zip",
  1905. "url": "https://api.github.com/repos/laravel/tinker/zipball/45884b526e10a88a1b179fa1a1a24d5468c668c2",
  1906. "reference": "45884b526e10a88a1b179fa1a1a24d5468c668c2",
  1907. "shasum": "",
  1908. "mirrors": [
  1909. {
  1910. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1911. "preferred": true
  1912. }
  1913. ]
  1914. },
  1915. "require": {
  1916. "illuminate/console": "^6.0|^7.0|^8.0",
  1917. "illuminate/contracts": "^6.0|^7.0|^8.0",
  1918. "illuminate/support": "^6.0|^7.0|^8.0",
  1919. "php": "^7.2.5|^8.0",
  1920. "psy/psysh": "^0.10.4",
  1921. "symfony/var-dumper": "^4.3.4|^5.0"
  1922. },
  1923. "require-dev": {
  1924. "mockery/mockery": "~1.3.3|^1.4.2",
  1925. "phpunit/phpunit": "^8.5.8|^9.3.3"
  1926. },
  1927. "suggest": {
  1928. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0)."
  1929. },
  1930. "type": "library",
  1931. "extra": {
  1932. "branch-alias": {
  1933. "dev-master": "2.x-dev"
  1934. },
  1935. "laravel": {
  1936. "providers": [
  1937. "Laravel\\Tinker\\TinkerServiceProvider"
  1938. ]
  1939. }
  1940. },
  1941. "autoload": {
  1942. "psr-4": {
  1943. "Laravel\\Tinker\\": "src/"
  1944. }
  1945. },
  1946. "notification-url": "https://packagist.org/downloads/",
  1947. "license": [
  1948. "MIT"
  1949. ],
  1950. "authors": [
  1951. {
  1952. "name": "Taylor Otwell",
  1953. "email": "taylor@laravel.com"
  1954. }
  1955. ],
  1956. "description": "Powerful REPL for the Laravel framework.",
  1957. "keywords": [
  1958. "REPL",
  1959. "Tinker",
  1960. "laravel",
  1961. "psysh"
  1962. ],
  1963. "support": {
  1964. "issues": "https://github.com/laravel/tinker/issues",
  1965. "source": "https://github.com/laravel/tinker/tree/v2.5.0"
  1966. },
  1967. "time": "2020-10-29T13:07:12+00:00"
  1968. },
  1969. {
  1970. "name": "laravel/ui",
  1971. "version": "v2.5.0",
  1972. "source": {
  1973. "type": "git",
  1974. "url": "https://github.com/laravel/ui.git",
  1975. "reference": "d01a705763c243b07be795e9d1bb47f89260f73d"
  1976. },
  1977. "dist": {
  1978. "type": "zip",
  1979. "url": "https://api.github.com/repos/laravel/ui/zipball/d01a705763c243b07be795e9d1bb47f89260f73d",
  1980. "reference": "d01a705763c243b07be795e9d1bb47f89260f73d",
  1981. "shasum": "",
  1982. "mirrors": [
  1983. {
  1984. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1985. "preferred": true
  1986. }
  1987. ]
  1988. },
  1989. "require": {
  1990. "illuminate/console": "^7.0",
  1991. "illuminate/filesystem": "^7.0",
  1992. "illuminate/support": "^7.0",
  1993. "php": "^7.2.5|^8.0"
  1994. },
  1995. "type": "library",
  1996. "extra": {
  1997. "laravel": {
  1998. "providers": [
  1999. "Laravel\\Ui\\UiServiceProvider"
  2000. ]
  2001. }
  2002. },
  2003. "autoload": {
  2004. "psr-4": {
  2005. "Laravel\\Ui\\": "src/",
  2006. "Illuminate\\Foundation\\Auth\\": "auth-backend/"
  2007. }
  2008. },
  2009. "notification-url": "https://packagist.org/downloads/",
  2010. "license": [
  2011. "MIT"
  2012. ],
  2013. "authors": [
  2014. {
  2015. "name": "Taylor Otwell",
  2016. "email": "taylor@laravel.com"
  2017. }
  2018. ],
  2019. "description": "Laravel UI utilities and presets.",
  2020. "keywords": [
  2021. "laravel",
  2022. "ui"
  2023. ],
  2024. "support": {
  2025. "issues": "https://github.com/laravel/ui/issues",
  2026. "source": "https://github.com/laravel/ui/tree/v2.5.0"
  2027. },
  2028. "time": "2020-11-03T19:45:19+00:00"
  2029. },
  2030. {
  2031. "name": "league/commonmark",
  2032. "version": "1.5.7",
  2033. "source": {
  2034. "type": "git",
  2035. "url": "https://github.com/thephpleague/commonmark.git",
  2036. "reference": "11df9b36fd4f1d2b727a73bf14931d81373b9a54"
  2037. },
  2038. "dist": {
  2039. "type": "zip",
  2040. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/11df9b36fd4f1d2b727a73bf14931d81373b9a54",
  2041. "reference": "11df9b36fd4f1d2b727a73bf14931d81373b9a54",
  2042. "shasum": "",
  2043. "mirrors": [
  2044. {
  2045. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2046. "preferred": true
  2047. }
  2048. ]
  2049. },
  2050. "require": {
  2051. "ext-mbstring": "*",
  2052. "php": "^7.1 || ^8.0"
  2053. },
  2054. "conflict": {
  2055. "scrutinizer/ocular": "1.7.*"
  2056. },
  2057. "require-dev": {
  2058. "cebe/markdown": "~1.0",
  2059. "commonmark/commonmark.js": "0.29.2",
  2060. "erusev/parsedown": "~1.0",
  2061. "ext-json": "*",
  2062. "github/gfm": "0.29.0",
  2063. "michelf/php-markdown": "~1.4",
  2064. "mikehaertl/php-shellcommand": "^1.4",
  2065. "phpstan/phpstan": "^0.12",
  2066. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.2",
  2067. "scrutinizer/ocular": "^1.5",
  2068. "symfony/finder": "^4.2"
  2069. },
  2070. "bin": [
  2071. "bin/commonmark"
  2072. ],
  2073. "type": "library",
  2074. "autoload": {
  2075. "psr-4": {
  2076. "League\\CommonMark\\": "src"
  2077. }
  2078. },
  2079. "notification-url": "https://packagist.org/downloads/",
  2080. "license": [
  2081. "BSD-3-Clause"
  2082. ],
  2083. "authors": [
  2084. {
  2085. "name": "Colin O'Dell",
  2086. "email": "colinodell@gmail.com",
  2087. "homepage": "https://www.colinodell.com",
  2088. "role": "Lead Developer"
  2089. }
  2090. ],
  2091. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and Github-Flavored Markdown (GFM)",
  2092. "homepage": "https://commonmark.thephpleague.com",
  2093. "keywords": [
  2094. "commonmark",
  2095. "flavored",
  2096. "gfm",
  2097. "github",
  2098. "github-flavored",
  2099. "markdown",
  2100. "md",
  2101. "parser"
  2102. ],
  2103. "support": {
  2104. "docs": "https://commonmark.thephpleague.com/",
  2105. "issues": "https://github.com/thephpleague/commonmark/issues",
  2106. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2107. "source": "https://github.com/thephpleague/commonmark"
  2108. },
  2109. "funding": [
  2110. {
  2111. "url": "https://enjoy.gitstore.app/repositories/thephpleague/commonmark",
  2112. "type": "custom"
  2113. },
  2114. {
  2115. "url": "https://www.colinodell.com/sponsor",
  2116. "type": "custom"
  2117. },
  2118. {
  2119. "url": "https://www.paypal.me/colinpodell/10.00",
  2120. "type": "custom"
  2121. },
  2122. {
  2123. "url": "https://github.com/colinodell",
  2124. "type": "github"
  2125. },
  2126. {
  2127. "url": "https://www.patreon.com/colinodell",
  2128. "type": "patreon"
  2129. },
  2130. {
  2131. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2132. "type": "tidelift"
  2133. }
  2134. ],
  2135. "time": "2020-10-31T13:49:32+00:00"
  2136. },
  2137. {
  2138. "name": "league/flysystem",
  2139. "version": "1.1.3",
  2140. "source": {
  2141. "type": "git",
  2142. "url": "https://github.com/thephpleague/flysystem.git",
  2143. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a"
  2144. },
  2145. "dist": {
  2146. "type": "zip",
  2147. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/9be3b16c877d477357c015cec057548cf9b2a14a",
  2148. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a",
  2149. "shasum": "",
  2150. "mirrors": [
  2151. {
  2152. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2153. "preferred": true
  2154. }
  2155. ]
  2156. },
  2157. "require": {
  2158. "ext-fileinfo": "*",
  2159. "league/mime-type-detection": "^1.3",
  2160. "php": "^7.2.5 || ^8.0"
  2161. },
  2162. "conflict": {
  2163. "league/flysystem-sftp": "<1.0.6"
  2164. },
  2165. "require-dev": {
  2166. "phpspec/prophecy": "^1.11.1",
  2167. "phpunit/phpunit": "^8.5.8"
  2168. },
  2169. "suggest": {
  2170. "ext-fileinfo": "Required for MimeType",
  2171. "ext-ftp": "Allows you to use FTP server storage",
  2172. "ext-openssl": "Allows you to use FTPS server storage",
  2173. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  2174. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  2175. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  2176. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2177. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  2178. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2179. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  2180. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2181. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2182. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2183. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2184. },
  2185. "type": "library",
  2186. "extra": {
  2187. "branch-alias": {
  2188. "dev-master": "1.1-dev"
  2189. }
  2190. },
  2191. "autoload": {
  2192. "psr-4": {
  2193. "League\\Flysystem\\": "src/"
  2194. }
  2195. },
  2196. "notification-url": "https://packagist.org/downloads/",
  2197. "license": [
  2198. "MIT"
  2199. ],
  2200. "authors": [
  2201. {
  2202. "name": "Frank de Jonge",
  2203. "email": "info@frenky.net"
  2204. }
  2205. ],
  2206. "description": "Filesystem abstraction: Many filesystems, one API.",
  2207. "keywords": [
  2208. "Cloud Files",
  2209. "WebDAV",
  2210. "abstraction",
  2211. "aws",
  2212. "cloud",
  2213. "copy.com",
  2214. "dropbox",
  2215. "file systems",
  2216. "files",
  2217. "filesystem",
  2218. "filesystems",
  2219. "ftp",
  2220. "rackspace",
  2221. "remote",
  2222. "s3",
  2223. "sftp",
  2224. "storage"
  2225. ],
  2226. "support": {
  2227. "issues": "https://github.com/thephpleague/flysystem/issues",
  2228. "source": "https://github.com/thephpleague/flysystem/tree/1.x"
  2229. },
  2230. "funding": [
  2231. {
  2232. "url": "https://offset.earth/frankdejonge",
  2233. "type": "other"
  2234. }
  2235. ],
  2236. "time": "2020-08-23T07:39:11+00:00"
  2237. },
  2238. {
  2239. "name": "league/mime-type-detection",
  2240. "version": "1.5.1",
  2241. "source": {
  2242. "type": "git",
  2243. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2244. "reference": "353f66d7555d8a90781f6f5e7091932f9a4250aa"
  2245. },
  2246. "dist": {
  2247. "type": "zip",
  2248. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/353f66d7555d8a90781f6f5e7091932f9a4250aa",
  2249. "reference": "353f66d7555d8a90781f6f5e7091932f9a4250aa",
  2250. "shasum": "",
  2251. "mirrors": [
  2252. {
  2253. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2254. "preferred": true
  2255. }
  2256. ]
  2257. },
  2258. "require": {
  2259. "ext-fileinfo": "*",
  2260. "php": "^7.2 || ^8.0"
  2261. },
  2262. "require-dev": {
  2263. "phpstan/phpstan": "^0.12.36",
  2264. "phpunit/phpunit": "^8.5.8"
  2265. },
  2266. "type": "library",
  2267. "autoload": {
  2268. "psr-4": {
  2269. "League\\MimeTypeDetection\\": "src"
  2270. }
  2271. },
  2272. "notification-url": "https://packagist.org/downloads/",
  2273. "license": [
  2274. "MIT"
  2275. ],
  2276. "authors": [
  2277. {
  2278. "name": "Frank de Jonge",
  2279. "email": "info@frankdejonge.nl"
  2280. }
  2281. ],
  2282. "description": "Mime-type detection for Flysystem",
  2283. "support": {
  2284. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2285. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.5.1"
  2286. },
  2287. "funding": [
  2288. {
  2289. "url": "https://github.com/frankdejonge",
  2290. "type": "github"
  2291. },
  2292. {
  2293. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2294. "type": "tidelift"
  2295. }
  2296. ],
  2297. "time": "2020-10-18T11:50:25+00:00"
  2298. },
  2299. {
  2300. "name": "maatwebsite/excel",
  2301. "version": "3.1.26",
  2302. "source": {
  2303. "type": "git",
  2304. "url": "https://github.com/Maatwebsite/Laravel-Excel.git",
  2305. "reference": "66f7c9584304ad0b6a267a5d8ffbfa2ff4272e85"
  2306. },
  2307. "dist": {
  2308. "type": "zip",
  2309. "url": "https://api.github.com/repos/Maatwebsite/Laravel-Excel/zipball/66f7c9584304ad0b6a267a5d8ffbfa2ff4272e85",
  2310. "reference": "66f7c9584304ad0b6a267a5d8ffbfa2ff4272e85",
  2311. "shasum": "",
  2312. "mirrors": [
  2313. {
  2314. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2315. "preferred": true
  2316. }
  2317. ]
  2318. },
  2319. "require": {
  2320. "ext-json": "*",
  2321. "illuminate/support": "5.8.*|^6.0|^7.0|^8.0",
  2322. "php": "^7.0|^8.0",
  2323. "phpoffice/phpspreadsheet": "^1.15"
  2324. },
  2325. "require-dev": {
  2326. "orchestra/testbench": "^6.0",
  2327. "predis/predis": "^1.1"
  2328. },
  2329. "type": "library",
  2330. "extra": {
  2331. "laravel": {
  2332. "providers": [
  2333. "Maatwebsite\\Excel\\ExcelServiceProvider"
  2334. ],
  2335. "aliases": {
  2336. "Excel": "Maatwebsite\\Excel\\Facades\\Excel"
  2337. }
  2338. }
  2339. },
  2340. "autoload": {
  2341. "psr-4": {
  2342. "Maatwebsite\\Excel\\": "src/"
  2343. }
  2344. },
  2345. "notification-url": "https://packagist.org/downloads/",
  2346. "license": [
  2347. "MIT"
  2348. ],
  2349. "authors": [
  2350. {
  2351. "name": "Patrick Brouwers",
  2352. "email": "patrick@maatwebsite.nl"
  2353. }
  2354. ],
  2355. "description": "Supercharged Excel exports and imports in Laravel",
  2356. "keywords": [
  2357. "PHPExcel",
  2358. "batch",
  2359. "csv",
  2360. "excel",
  2361. "export",
  2362. "import",
  2363. "laravel",
  2364. "php",
  2365. "phpspreadsheet"
  2366. ],
  2367. "support": {
  2368. "issues": "https://github.com/Maatwebsite/Laravel-Excel/issues",
  2369. "source": "https://github.com/Maatwebsite/Laravel-Excel/tree/3.1.26"
  2370. },
  2371. "funding": [
  2372. {
  2373. "url": "https://laravel-excel.com/commercial-support",
  2374. "type": "custom"
  2375. },
  2376. {
  2377. "url": "https://github.com/patrickbrouwers",
  2378. "type": "github"
  2379. }
  2380. ],
  2381. "time": "2020-11-27T16:17:38+00:00"
  2382. },
  2383. {
  2384. "name": "maennchen/zipstream-php",
  2385. "version": "2.1.0",
  2386. "source": {
  2387. "type": "git",
  2388. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  2389. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58"
  2390. },
  2391. "dist": {
  2392. "type": "zip",
  2393. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2394. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2395. "shasum": "",
  2396. "mirrors": [
  2397. {
  2398. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2399. "preferred": true
  2400. }
  2401. ]
  2402. },
  2403. "require": {
  2404. "myclabs/php-enum": "^1.5",
  2405. "php": ">= 7.1",
  2406. "psr/http-message": "^1.0",
  2407. "symfony/polyfill-mbstring": "^1.0"
  2408. },
  2409. "require-dev": {
  2410. "ext-zip": "*",
  2411. "guzzlehttp/guzzle": ">= 6.3",
  2412. "mikey179/vfsstream": "^1.6",
  2413. "phpunit/phpunit": ">= 7.5"
  2414. },
  2415. "type": "library",
  2416. "autoload": {
  2417. "psr-4": {
  2418. "ZipStream\\": "src/"
  2419. }
  2420. },
  2421. "notification-url": "https://packagist.org/downloads/",
  2422. "license": [
  2423. "MIT"
  2424. ],
  2425. "authors": [
  2426. {
  2427. "name": "Paul Duncan",
  2428. "email": "pabs@pablotron.org"
  2429. },
  2430. {
  2431. "name": "Jonatan Männchen",
  2432. "email": "jonatan@maennchen.ch"
  2433. },
  2434. {
  2435. "name": "Jesse Donat",
  2436. "email": "donatj@gmail.com"
  2437. },
  2438. {
  2439. "name": "András Kolesár",
  2440. "email": "kolesar@kolesar.hu"
  2441. }
  2442. ],
  2443. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  2444. "keywords": [
  2445. "stream",
  2446. "zip"
  2447. ],
  2448. "support": {
  2449. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  2450. "source": "https://github.com/maennchen/ZipStream-PHP/tree/master"
  2451. },
  2452. "funding": [
  2453. {
  2454. "url": "https://opencollective.com/zipstream",
  2455. "type": "open_collective"
  2456. }
  2457. ],
  2458. "time": "2020-05-30T13:11:16+00:00"
  2459. },
  2460. {
  2461. "name": "markbaker/complex",
  2462. "version": "2.0.0",
  2463. "source": {
  2464. "type": "git",
  2465. "url": "https://github.com/MarkBaker/PHPComplex.git",
  2466. "reference": "9999f1432fae467bc93c53f357105b4c31bb994c"
  2467. },
  2468. "dist": {
  2469. "type": "zip",
  2470. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/9999f1432fae467bc93c53f357105b4c31bb994c",
  2471. "reference": "9999f1432fae467bc93c53f357105b4c31bb994c",
  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. "php": "^7.2 || ^8.0"
  2482. },
  2483. "require-dev": {
  2484. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2485. "phpcompatibility/php-compatibility": "^9.0",
  2486. "phpdocumentor/phpdocumentor": "2.*",
  2487. "phploc/phploc": "^4.0",
  2488. "phpmd/phpmd": "2.*",
  2489. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  2490. "sebastian/phpcpd": "^4.0",
  2491. "squizlabs/php_codesniffer": "^3.4"
  2492. },
  2493. "type": "library",
  2494. "autoload": {
  2495. "psr-4": {
  2496. "Complex\\": "classes/src/"
  2497. },
  2498. "files": [
  2499. "classes/src/functions/abs.php",
  2500. "classes/src/functions/acos.php",
  2501. "classes/src/functions/acosh.php",
  2502. "classes/src/functions/acot.php",
  2503. "classes/src/functions/acoth.php",
  2504. "classes/src/functions/acsc.php",
  2505. "classes/src/functions/acsch.php",
  2506. "classes/src/functions/argument.php",
  2507. "classes/src/functions/asec.php",
  2508. "classes/src/functions/asech.php",
  2509. "classes/src/functions/asin.php",
  2510. "classes/src/functions/asinh.php",
  2511. "classes/src/functions/atan.php",
  2512. "classes/src/functions/atanh.php",
  2513. "classes/src/functions/conjugate.php",
  2514. "classes/src/functions/cos.php",
  2515. "classes/src/functions/cosh.php",
  2516. "classes/src/functions/cot.php",
  2517. "classes/src/functions/coth.php",
  2518. "classes/src/functions/csc.php",
  2519. "classes/src/functions/csch.php",
  2520. "classes/src/functions/exp.php",
  2521. "classes/src/functions/inverse.php",
  2522. "classes/src/functions/ln.php",
  2523. "classes/src/functions/log2.php",
  2524. "classes/src/functions/log10.php",
  2525. "classes/src/functions/negative.php",
  2526. "classes/src/functions/pow.php",
  2527. "classes/src/functions/rho.php",
  2528. "classes/src/functions/sec.php",
  2529. "classes/src/functions/sech.php",
  2530. "classes/src/functions/sin.php",
  2531. "classes/src/functions/sinh.php",
  2532. "classes/src/functions/sqrt.php",
  2533. "classes/src/functions/tan.php",
  2534. "classes/src/functions/tanh.php",
  2535. "classes/src/functions/theta.php",
  2536. "classes/src/operations/add.php",
  2537. "classes/src/operations/subtract.php",
  2538. "classes/src/operations/multiply.php",
  2539. "classes/src/operations/divideby.php",
  2540. "classes/src/operations/divideinto.php"
  2541. ]
  2542. },
  2543. "notification-url": "https://packagist.org/downloads/",
  2544. "license": [
  2545. "MIT"
  2546. ],
  2547. "authors": [
  2548. {
  2549. "name": "Mark Baker",
  2550. "email": "mark@lange.demon.co.uk"
  2551. }
  2552. ],
  2553. "description": "PHP Class for working with complex numbers",
  2554. "homepage": "https://github.com/MarkBaker/PHPComplex",
  2555. "keywords": [
  2556. "complex",
  2557. "mathematics"
  2558. ],
  2559. "support": {
  2560. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  2561. "source": "https://github.com/MarkBaker/PHPComplex/tree/PHP8"
  2562. },
  2563. "time": "2020-08-26T10:42:07+00:00"
  2564. },
  2565. {
  2566. "name": "markbaker/matrix",
  2567. "version": "2.0.0",
  2568. "source": {
  2569. "type": "git",
  2570. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  2571. "reference": "9567d9c4c519fbe40de01dbd1e4469dbbb66f46a"
  2572. },
  2573. "dist": {
  2574. "type": "zip",
  2575. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/9567d9c4c519fbe40de01dbd1e4469dbbb66f46a",
  2576. "reference": "9567d9c4c519fbe40de01dbd1e4469dbbb66f46a",
  2577. "shasum": "",
  2578. "mirrors": [
  2579. {
  2580. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2581. "preferred": true
  2582. }
  2583. ]
  2584. },
  2585. "require": {
  2586. "php": "^7.2 || ^8.0"
  2587. },
  2588. "require-dev": {
  2589. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2590. "phpcompatibility/php-compatibility": "^9.0",
  2591. "phpdocumentor/phpdocumentor": "2.*",
  2592. "phploc/phploc": "^4.0",
  2593. "phpmd/phpmd": "2.*",
  2594. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  2595. "sebastian/phpcpd": "^4.0",
  2596. "squizlabs/php_codesniffer": "^3.4"
  2597. },
  2598. "type": "library",
  2599. "autoload": {
  2600. "psr-4": {
  2601. "Matrix\\": "classes/src/"
  2602. },
  2603. "files": [
  2604. "classes/src/functions/adjoint.php",
  2605. "classes/src/functions/antidiagonal.php",
  2606. "classes/src/functions/cofactors.php",
  2607. "classes/src/functions/determinant.php",
  2608. "classes/src/functions/diagonal.php",
  2609. "classes/src/functions/identity.php",
  2610. "classes/src/functions/inverse.php",
  2611. "classes/src/functions/minors.php",
  2612. "classes/src/functions/trace.php",
  2613. "classes/src/functions/transpose.php",
  2614. "classes/src/operations/add.php",
  2615. "classes/src/operations/directsum.php",
  2616. "classes/src/operations/subtract.php",
  2617. "classes/src/operations/multiply.php",
  2618. "classes/src/operations/divideby.php",
  2619. "classes/src/operations/divideinto.php"
  2620. ]
  2621. },
  2622. "notification-url": "https://packagist.org/downloads/",
  2623. "license": [
  2624. "MIT"
  2625. ],
  2626. "authors": [
  2627. {
  2628. "name": "Mark Baker",
  2629. "email": "mark@demon-angel.eu"
  2630. }
  2631. ],
  2632. "description": "PHP Class for working with matrices",
  2633. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  2634. "keywords": [
  2635. "mathematics",
  2636. "matrix",
  2637. "vector"
  2638. ],
  2639. "support": {
  2640. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  2641. "source": "https://github.com/MarkBaker/PHPMatrix/tree/PHP8"
  2642. },
  2643. "time": "2020-08-28T17:11:00+00:00"
  2644. },
  2645. {
  2646. "name": "monolog/monolog",
  2647. "version": "2.1.1",
  2648. "source": {
  2649. "type": "git",
  2650. "url": "https://github.com/Seldaek/monolog.git",
  2651. "reference": "f9eee5cec93dfb313a38b6b288741e84e53f02d5"
  2652. },
  2653. "dist": {
  2654. "type": "zip",
  2655. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f9eee5cec93dfb313a38b6b288741e84e53f02d5",
  2656. "reference": "f9eee5cec93dfb313a38b6b288741e84e53f02d5",
  2657. "shasum": "",
  2658. "mirrors": [
  2659. {
  2660. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2661. "preferred": true
  2662. }
  2663. ]
  2664. },
  2665. "require": {
  2666. "php": ">=7.2",
  2667. "psr/log": "^1.0.1"
  2668. },
  2669. "provide": {
  2670. "psr/log-implementation": "1.0.0"
  2671. },
  2672. "require-dev": {
  2673. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2674. "doctrine/couchdb": "~1.0@dev",
  2675. "elasticsearch/elasticsearch": "^6.0",
  2676. "graylog2/gelf-php": "^1.4.2",
  2677. "php-amqplib/php-amqplib": "~2.4",
  2678. "php-console/php-console": "^3.1.3",
  2679. "php-parallel-lint/php-parallel-lint": "^1.0",
  2680. "phpspec/prophecy": "^1.6.1",
  2681. "phpunit/phpunit": "^8.5",
  2682. "predis/predis": "^1.1",
  2683. "rollbar/rollbar": "^1.3",
  2684. "ruflin/elastica": ">=0.90 <3.0",
  2685. "swiftmailer/swiftmailer": "^5.3|^6.0"
  2686. },
  2687. "suggest": {
  2688. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2689. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2690. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2691. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2692. "ext-mbstring": "Allow to work properly with unicode symbols",
  2693. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2694. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2695. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2696. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2697. "php-console/php-console": "Allow sending log messages to Google Chrome",
  2698. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2699. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2700. },
  2701. "type": "library",
  2702. "extra": {
  2703. "branch-alias": {
  2704. "dev-master": "2.x-dev"
  2705. }
  2706. },
  2707. "autoload": {
  2708. "psr-4": {
  2709. "Monolog\\": "src/Monolog"
  2710. }
  2711. },
  2712. "notification-url": "https://packagist.org/downloads/",
  2713. "license": [
  2714. "MIT"
  2715. ],
  2716. "authors": [
  2717. {
  2718. "name": "Jordi Boggiano",
  2719. "email": "j.boggiano@seld.be",
  2720. "homepage": "http://seld.be"
  2721. }
  2722. ],
  2723. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2724. "homepage": "http://github.com/Seldaek/monolog",
  2725. "keywords": [
  2726. "log",
  2727. "logging",
  2728. "psr-3"
  2729. ],
  2730. "support": {
  2731. "issues": "https://github.com/Seldaek/monolog/issues",
  2732. "source": "https://github.com/Seldaek/monolog/tree/2.1.1"
  2733. },
  2734. "funding": [
  2735. {
  2736. "url": "https://github.com/Seldaek",
  2737. "type": "github"
  2738. },
  2739. {
  2740. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2741. "type": "tidelift"
  2742. }
  2743. ],
  2744. "time": "2020-07-23T08:41:23+00:00"
  2745. },
  2746. {
  2747. "name": "myclabs/php-enum",
  2748. "version": "1.7.7",
  2749. "source": {
  2750. "type": "git",
  2751. "url": "https://github.com/myclabs/php-enum.git",
  2752. "reference": "d178027d1e679832db9f38248fcc7200647dc2b7"
  2753. },
  2754. "dist": {
  2755. "type": "zip",
  2756. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/d178027d1e679832db9f38248fcc7200647dc2b7",
  2757. "reference": "d178027d1e679832db9f38248fcc7200647dc2b7",
  2758. "shasum": "",
  2759. "mirrors": [
  2760. {
  2761. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2762. "preferred": true
  2763. }
  2764. ]
  2765. },
  2766. "require": {
  2767. "ext-json": "*",
  2768. "php": ">=7.1"
  2769. },
  2770. "require-dev": {
  2771. "phpunit/phpunit": "^7",
  2772. "squizlabs/php_codesniffer": "1.*",
  2773. "vimeo/psalm": "^3.8"
  2774. },
  2775. "type": "library",
  2776. "autoload": {
  2777. "psr-4": {
  2778. "MyCLabs\\Enum\\": "src/"
  2779. }
  2780. },
  2781. "notification-url": "https://packagist.org/downloads/",
  2782. "license": [
  2783. "MIT"
  2784. ],
  2785. "authors": [
  2786. {
  2787. "name": "PHP Enum contributors",
  2788. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  2789. }
  2790. ],
  2791. "description": "PHP Enum implementation",
  2792. "homepage": "http://github.com/myclabs/php-enum",
  2793. "keywords": [
  2794. "enum"
  2795. ],
  2796. "support": {
  2797. "issues": "https://github.com/myclabs/php-enum/issues",
  2798. "source": "https://github.com/myclabs/php-enum/tree/1.7.7"
  2799. },
  2800. "funding": [
  2801. {
  2802. "url": "https://github.com/mnapoli",
  2803. "type": "github"
  2804. },
  2805. {
  2806. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  2807. "type": "tidelift"
  2808. }
  2809. ],
  2810. "time": "2020-11-14T18:14:52+00:00"
  2811. },
  2812. {
  2813. "name": "nesbot/carbon",
  2814. "version": "2.42.0",
  2815. "source": {
  2816. "type": "git",
  2817. "url": "https://github.com/briannesbitt/Carbon.git",
  2818. "reference": "d0463779663437392fe42ff339ebc0213bd55498"
  2819. },
  2820. "dist": {
  2821. "type": "zip",
  2822. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/d0463779663437392fe42ff339ebc0213bd55498",
  2823. "reference": "d0463779663437392fe42ff339ebc0213bd55498",
  2824. "shasum": "",
  2825. "mirrors": [
  2826. {
  2827. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2828. "preferred": true
  2829. }
  2830. ]
  2831. },
  2832. "require": {
  2833. "ext-json": "*",
  2834. "php": "^7.1.8 || ^8.0",
  2835. "symfony/polyfill-mbstring": "^1.0",
  2836. "symfony/translation": "^3.4 || ^4.0 || ^5.0"
  2837. },
  2838. "require-dev": {
  2839. "doctrine/orm": "^2.7",
  2840. "friendsofphp/php-cs-fixer": "^2.14 || ^3.0",
  2841. "kylekatarnls/multi-tester": "^2.0",
  2842. "phpmd/phpmd": "^2.9",
  2843. "phpstan/extension-installer": "^1.0",
  2844. "phpstan/phpstan": "^0.12.54",
  2845. "phpunit/phpunit": "^7.5 || ^8.0",
  2846. "squizlabs/php_codesniffer": "^3.4"
  2847. },
  2848. "bin": [
  2849. "bin/carbon"
  2850. ],
  2851. "type": "library",
  2852. "extra": {
  2853. "branch-alias": {
  2854. "dev-master": "2.x-dev",
  2855. "dev-3.x": "3.x-dev"
  2856. },
  2857. "laravel": {
  2858. "providers": [
  2859. "Carbon\\Laravel\\ServiceProvider"
  2860. ]
  2861. },
  2862. "phpstan": {
  2863. "includes": [
  2864. "extension.neon"
  2865. ]
  2866. }
  2867. },
  2868. "autoload": {
  2869. "psr-4": {
  2870. "Carbon\\": "src/Carbon/"
  2871. }
  2872. },
  2873. "notification-url": "https://packagist.org/downloads/",
  2874. "license": [
  2875. "MIT"
  2876. ],
  2877. "authors": [
  2878. {
  2879. "name": "Brian Nesbitt",
  2880. "email": "brian@nesbot.com",
  2881. "homepage": "http://nesbot.com"
  2882. },
  2883. {
  2884. "name": "kylekatarnls",
  2885. "homepage": "http://github.com/kylekatarnls"
  2886. }
  2887. ],
  2888. "description": "An API extension for DateTime that supports 281 different languages.",
  2889. "homepage": "http://carbon.nesbot.com",
  2890. "keywords": [
  2891. "date",
  2892. "datetime",
  2893. "time"
  2894. ],
  2895. "support": {
  2896. "issues": "https://github.com/briannesbitt/Carbon/issues",
  2897. "source": "https://github.com/briannesbitt/Carbon"
  2898. },
  2899. "funding": [
  2900. {
  2901. "url": "https://opencollective.com/Carbon",
  2902. "type": "open_collective"
  2903. },
  2904. {
  2905. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  2906. "type": "tidelift"
  2907. }
  2908. ],
  2909. "time": "2020-11-28T14:25:28+00:00"
  2910. },
  2911. {
  2912. "name": "nikic/php-parser",
  2913. "version": "v4.10.3",
  2914. "source": {
  2915. "type": "git",
  2916. "url": "https://github.com/nikic/PHP-Parser.git",
  2917. "reference": "dbe56d23de8fcb157bbc0cfb3ad7c7de0cfb0984"
  2918. },
  2919. "dist": {
  2920. "type": "zip",
  2921. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/dbe56d23de8fcb157bbc0cfb3ad7c7de0cfb0984",
  2922. "reference": "dbe56d23de8fcb157bbc0cfb3ad7c7de0cfb0984",
  2923. "shasum": "",
  2924. "mirrors": [
  2925. {
  2926. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2927. "preferred": true
  2928. }
  2929. ]
  2930. },
  2931. "require": {
  2932. "ext-tokenizer": "*",
  2933. "php": ">=7.0"
  2934. },
  2935. "require-dev": {
  2936. "ircmaxell/php-yacc": "^0.0.7",
  2937. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  2938. },
  2939. "bin": [
  2940. "bin/php-parse"
  2941. ],
  2942. "type": "library",
  2943. "extra": {
  2944. "branch-alias": {
  2945. "dev-master": "4.9-dev"
  2946. }
  2947. },
  2948. "autoload": {
  2949. "psr-4": {
  2950. "PhpParser\\": "lib/PhpParser"
  2951. }
  2952. },
  2953. "notification-url": "https://packagist.org/downloads/",
  2954. "license": [
  2955. "BSD-3-Clause"
  2956. ],
  2957. "authors": [
  2958. {
  2959. "name": "Nikita Popov"
  2960. }
  2961. ],
  2962. "description": "A PHP parser written in PHP",
  2963. "keywords": [
  2964. "parser",
  2965. "php"
  2966. ],
  2967. "support": {
  2968. "issues": "https://github.com/nikic/PHP-Parser/issues",
  2969. "source": "https://github.com/nikic/PHP-Parser/tree/v4.10.3"
  2970. },
  2971. "time": "2020-12-03T17:45:45+00:00"
  2972. },
  2973. {
  2974. "name": "opis/closure",
  2975. "version": "3.6.1",
  2976. "source": {
  2977. "type": "git",
  2978. "url": "https://github.com/opis/closure.git",
  2979. "reference": "943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5"
  2980. },
  2981. "dist": {
  2982. "type": "zip",
  2983. "url": "https://api.github.com/repos/opis/closure/zipball/943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5",
  2984. "reference": "943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5",
  2985. "shasum": "",
  2986. "mirrors": [
  2987. {
  2988. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2989. "preferred": true
  2990. }
  2991. ]
  2992. },
  2993. "require": {
  2994. "php": "^5.4 || ^7.0 || ^8.0"
  2995. },
  2996. "require-dev": {
  2997. "jeremeamia/superclosure": "^2.0",
  2998. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  2999. },
  3000. "type": "library",
  3001. "extra": {
  3002. "branch-alias": {
  3003. "dev-master": "3.6.x-dev"
  3004. }
  3005. },
  3006. "autoload": {
  3007. "psr-4": {
  3008. "Opis\\Closure\\": "src/"
  3009. },
  3010. "files": [
  3011. "functions.php"
  3012. ]
  3013. },
  3014. "notification-url": "https://packagist.org/downloads/",
  3015. "license": [
  3016. "MIT"
  3017. ],
  3018. "authors": [
  3019. {
  3020. "name": "Marius Sarca",
  3021. "email": "marius.sarca@gmail.com"
  3022. },
  3023. {
  3024. "name": "Sorin Sarca",
  3025. "email": "sarca_sorin@hotmail.com"
  3026. }
  3027. ],
  3028. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  3029. "homepage": "https://opis.io/closure",
  3030. "keywords": [
  3031. "anonymous functions",
  3032. "closure",
  3033. "function",
  3034. "serializable",
  3035. "serialization",
  3036. "serialize"
  3037. ],
  3038. "support": {
  3039. "issues": "https://github.com/opis/closure/issues",
  3040. "source": "https://github.com/opis/closure/tree/3.6.1"
  3041. },
  3042. "time": "2020-11-07T02:01:34+00:00"
  3043. },
  3044. {
  3045. "name": "overtrue/laravel-pinyin",
  3046. "version": "4.0.0",
  3047. "source": {
  3048. "type": "git",
  3049. "url": "https://github.com/overtrue/laravel-pinyin.git",
  3050. "reference": "c0b15aa49eac08bff80122010b91a0b3fe0f1e21"
  3051. },
  3052. "dist": {
  3053. "type": "zip",
  3054. "url": "https://api.github.com/repos/overtrue/laravel-pinyin/zipball/c0b15aa49eac08bff80122010b91a0b3fe0f1e21",
  3055. "reference": "c0b15aa49eac08bff80122010b91a0b3fe0f1e21",
  3056. "shasum": "",
  3057. "mirrors": [
  3058. {
  3059. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3060. "preferred": true
  3061. }
  3062. ]
  3063. },
  3064. "require": {
  3065. "overtrue/pinyin": "~4.0"
  3066. },
  3067. "type": "library",
  3068. "extra": {
  3069. "laravel": {
  3070. "providers": [
  3071. "Overtrue\\LaravelPinyin\\ServiceProvider"
  3072. ],
  3073. "aliases": {
  3074. "Pinyin": "Overtrue\\LaravelPinyin\\Facades\\Pinyin"
  3075. }
  3076. }
  3077. },
  3078. "autoload": {
  3079. "psr-4": {
  3080. "Overtrue\\LaravelPinyin\\": "src/"
  3081. },
  3082. "files": [
  3083. "src/helpers.php"
  3084. ]
  3085. },
  3086. "notification-url": "https://packagist.org/downloads/",
  3087. "license": [
  3088. "MIT"
  3089. ],
  3090. "authors": [
  3091. {
  3092. "name": "overtrue",
  3093. "email": "anzhengchao@gmail.com"
  3094. }
  3095. ],
  3096. "description": "Chinese to Pinyin translator.",
  3097. "keywords": [
  3098. "Chinese",
  3099. "Pinyin",
  3100. "laravel",
  3101. "overtrue"
  3102. ],
  3103. "support": {
  3104. "issues": "https://github.com/overtrue/laravel-pinyin/issues",
  3105. "source": "https://github.com/overtrue/laravel-pinyin/tree/master"
  3106. },
  3107. "time": "2018-10-10T09:02:46+00:00"
  3108. },
  3109. {
  3110. "name": "overtrue/pinyin",
  3111. "version": "4.0.6",
  3112. "source": {
  3113. "type": "git",
  3114. "url": "https://github.com/overtrue/pinyin.git",
  3115. "reference": "9836dae1783bcf5934508a2abe32eca9ea5ee15d"
  3116. },
  3117. "dist": {
  3118. "type": "zip",
  3119. "url": "https://api.github.com/repos/overtrue/pinyin/zipball/9836dae1783bcf5934508a2abe32eca9ea5ee15d",
  3120. "reference": "9836dae1783bcf5934508a2abe32eca9ea5ee15d",
  3121. "shasum": "",
  3122. "mirrors": [
  3123. {
  3124. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3125. "preferred": true
  3126. }
  3127. ]
  3128. },
  3129. "require": {
  3130. "php": ">=7.1"
  3131. },
  3132. "require-dev": {
  3133. "brainmaestro/composer-git-hooks": "^2.7",
  3134. "friendsofphp/php-cs-fixer": "^2.16",
  3135. "phpunit/phpunit": "~8.0"
  3136. },
  3137. "type": "library",
  3138. "extra": {
  3139. "hooks": {
  3140. "pre-commit": [
  3141. "composer test",
  3142. "composer fix-style"
  3143. ],
  3144. "pre-push": [
  3145. "composer test",
  3146. "composer check-style"
  3147. ]
  3148. }
  3149. },
  3150. "autoload": {
  3151. "psr-4": {
  3152. "Overtrue\\Pinyin\\": "src/"
  3153. },
  3154. "files": [
  3155. "src/const.php"
  3156. ]
  3157. },
  3158. "notification-url": "https://packagist.org/downloads/",
  3159. "license": [
  3160. "MIT"
  3161. ],
  3162. "authors": [
  3163. {
  3164. "name": "overtrue",
  3165. "email": "anzhengchao@gmail.com",
  3166. "homepage": "http://github.com/overtrue"
  3167. }
  3168. ],
  3169. "description": "Chinese to pinyin translator.",
  3170. "homepage": "https://github.com/overtrue/pinyin",
  3171. "keywords": [
  3172. "Chinese",
  3173. "Pinyin",
  3174. "cn2pinyin"
  3175. ],
  3176. "support": {
  3177. "issues": "https://github.com/overtrue/pinyin/issues",
  3178. "source": "https://github.com/overtrue/pinyin/tree/master"
  3179. },
  3180. "funding": [
  3181. {
  3182. "url": "https://www.patreon.com/overtrue",
  3183. "type": "patreon"
  3184. }
  3185. ],
  3186. "time": "2020-04-13T08:53:30+00:00"
  3187. },
  3188. {
  3189. "name": "paragonie/random_compat",
  3190. "version": "v9.99.100",
  3191. "source": {
  3192. "type": "git",
  3193. "url": "https://github.com/paragonie/random_compat.git",
  3194. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  3195. },
  3196. "dist": {
  3197. "type": "zip",
  3198. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  3199. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  3200. "shasum": "",
  3201. "mirrors": [
  3202. {
  3203. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3204. "preferred": true
  3205. }
  3206. ]
  3207. },
  3208. "require": {
  3209. "php": ">= 7"
  3210. },
  3211. "require-dev": {
  3212. "phpunit/phpunit": "4.*|5.*",
  3213. "vimeo/psalm": "^1"
  3214. },
  3215. "suggest": {
  3216. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  3217. },
  3218. "type": "library",
  3219. "notification-url": "https://packagist.org/downloads/",
  3220. "license": [
  3221. "MIT"
  3222. ],
  3223. "authors": [
  3224. {
  3225. "name": "Paragon Initiative Enterprises",
  3226. "email": "security@paragonie.com",
  3227. "homepage": "https://paragonie.com"
  3228. }
  3229. ],
  3230. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  3231. "keywords": [
  3232. "csprng",
  3233. "polyfill",
  3234. "pseudorandom",
  3235. "random"
  3236. ],
  3237. "support": {
  3238. "email": "info@paragonie.com",
  3239. "issues": "https://github.com/paragonie/random_compat/issues",
  3240. "source": "https://github.com/paragonie/random_compat"
  3241. },
  3242. "time": "2020-10-15T08:29:30+00:00"
  3243. },
  3244. {
  3245. "name": "paragonie/sodium_compat",
  3246. "version": "v1.14.0",
  3247. "source": {
  3248. "type": "git",
  3249. "url": "https://github.com/paragonie/sodium_compat.git",
  3250. "reference": "a1cfe0b21faf9c0b61ac0c6188c4af7fd6fd0db3"
  3251. },
  3252. "dist": {
  3253. "type": "zip",
  3254. "url": "https://api.github.com/repos/paragonie/sodium_compat/zipball/a1cfe0b21faf9c0b61ac0c6188c4af7fd6fd0db3",
  3255. "reference": "a1cfe0b21faf9c0b61ac0c6188c4af7fd6fd0db3",
  3256. "shasum": "",
  3257. "mirrors": [
  3258. {
  3259. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3260. "preferred": true
  3261. }
  3262. ]
  3263. },
  3264. "require": {
  3265. "paragonie/random_compat": ">=1",
  3266. "php": "^5.2.4|^5.3|^5.4|^5.5|^5.6|^7|^8"
  3267. },
  3268. "require-dev": {
  3269. "phpunit/phpunit": "^3|^4|^5|^6|^7|^8|^9"
  3270. },
  3271. "suggest": {
  3272. "ext-libsodium": "PHP < 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security.",
  3273. "ext-sodium": "PHP >= 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security."
  3274. },
  3275. "type": "library",
  3276. "autoload": {
  3277. "files": [
  3278. "autoload.php"
  3279. ]
  3280. },
  3281. "notification-url": "https://packagist.org/downloads/",
  3282. "license": [
  3283. "ISC"
  3284. ],
  3285. "authors": [
  3286. {
  3287. "name": "Paragon Initiative Enterprises",
  3288. "email": "security@paragonie.com"
  3289. },
  3290. {
  3291. "name": "Frank Denis",
  3292. "email": "jedisct1@pureftpd.org"
  3293. }
  3294. ],
  3295. "description": "Pure PHP implementation of libsodium; uses the PHP extension if it exists",
  3296. "keywords": [
  3297. "Authentication",
  3298. "BLAKE2b",
  3299. "ChaCha20",
  3300. "ChaCha20-Poly1305",
  3301. "Chapoly",
  3302. "Curve25519",
  3303. "Ed25519",
  3304. "EdDSA",
  3305. "Edwards-curve Digital Signature Algorithm",
  3306. "Elliptic Curve Diffie-Hellman",
  3307. "Poly1305",
  3308. "Pure-PHP cryptography",
  3309. "RFC 7748",
  3310. "RFC 8032",
  3311. "Salpoly",
  3312. "Salsa20",
  3313. "X25519",
  3314. "XChaCha20-Poly1305",
  3315. "XSalsa20-Poly1305",
  3316. "Xchacha20",
  3317. "Xsalsa20",
  3318. "aead",
  3319. "cryptography",
  3320. "ecdh",
  3321. "elliptic curve",
  3322. "elliptic curve cryptography",
  3323. "encryption",
  3324. "libsodium",
  3325. "php",
  3326. "public-key cryptography",
  3327. "secret-key cryptography",
  3328. "side-channel resistant"
  3329. ],
  3330. "support": {
  3331. "issues": "https://github.com/paragonie/sodium_compat/issues",
  3332. "source": "https://github.com/paragonie/sodium_compat/tree/v1.14.0"
  3333. },
  3334. "time": "2020-12-03T16:26:19+00:00"
  3335. },
  3336. {
  3337. "name": "phpoffice/phpspreadsheet",
  3338. "version": "1.15.0",
  3339. "source": {
  3340. "type": "git",
  3341. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  3342. "reference": "a8e8068b31b8119e1daa5b1eb5715a3a8ea8305f"
  3343. },
  3344. "dist": {
  3345. "type": "zip",
  3346. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/a8e8068b31b8119e1daa5b1eb5715a3a8ea8305f",
  3347. "reference": "a8e8068b31b8119e1daa5b1eb5715a3a8ea8305f",
  3348. "shasum": "",
  3349. "mirrors": [
  3350. {
  3351. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3352. "preferred": true
  3353. }
  3354. ]
  3355. },
  3356. "require": {
  3357. "ext-ctype": "*",
  3358. "ext-dom": "*",
  3359. "ext-fileinfo": "*",
  3360. "ext-gd": "*",
  3361. "ext-iconv": "*",
  3362. "ext-libxml": "*",
  3363. "ext-mbstring": "*",
  3364. "ext-simplexml": "*",
  3365. "ext-xml": "*",
  3366. "ext-xmlreader": "*",
  3367. "ext-xmlwriter": "*",
  3368. "ext-zip": "*",
  3369. "ext-zlib": "*",
  3370. "maennchen/zipstream-php": "^2.1",
  3371. "markbaker/complex": "^1.5|^2.0",
  3372. "markbaker/matrix": "^1.2|^2.0",
  3373. "php": "^7.2|^8.0",
  3374. "psr/http-client": "^1.0",
  3375. "psr/http-factory": "^1.0",
  3376. "psr/simple-cache": "^1.0"
  3377. },
  3378. "require-dev": {
  3379. "dompdf/dompdf": "^0.8.5",
  3380. "friendsofphp/php-cs-fixer": "^2.16",
  3381. "jpgraph/jpgraph": "^4.0",
  3382. "mpdf/mpdf": "^8.0",
  3383. "phpcompatibility/php-compatibility": "^9.3",
  3384. "phpunit/phpunit": "^8.5|^9.3",
  3385. "squizlabs/php_codesniffer": "^3.5",
  3386. "tecnickcom/tcpdf": "^6.3"
  3387. },
  3388. "suggest": {
  3389. "dompdf/dompdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)",
  3390. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  3391. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  3392. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)"
  3393. },
  3394. "type": "library",
  3395. "autoload": {
  3396. "psr-4": {
  3397. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  3398. }
  3399. },
  3400. "notification-url": "https://packagist.org/downloads/",
  3401. "license": [
  3402. "MIT"
  3403. ],
  3404. "authors": [
  3405. {
  3406. "name": "Maarten Balliauw",
  3407. "homepage": "https://blog.maartenballiauw.be"
  3408. },
  3409. {
  3410. "name": "Mark Baker",
  3411. "homepage": "https://markbakeruk.net"
  3412. },
  3413. {
  3414. "name": "Franck Lefevre",
  3415. "homepage": "https://rootslabs.net"
  3416. },
  3417. {
  3418. "name": "Erik Tilt"
  3419. },
  3420. {
  3421. "name": "Adrien Crivelli"
  3422. }
  3423. ],
  3424. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  3425. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  3426. "keywords": [
  3427. "OpenXML",
  3428. "excel",
  3429. "gnumeric",
  3430. "ods",
  3431. "php",
  3432. "spreadsheet",
  3433. "xls",
  3434. "xlsx"
  3435. ],
  3436. "support": {
  3437. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  3438. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.15.0"
  3439. },
  3440. "time": "2020-10-11T13:20:59+00:00"
  3441. },
  3442. {
  3443. "name": "phpoption/phpoption",
  3444. "version": "1.7.5",
  3445. "source": {
  3446. "type": "git",
  3447. "url": "https://github.com/schmittjoh/php-option.git",
  3448. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525"
  3449. },
  3450. "dist": {
  3451. "type": "zip",
  3452. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/994ecccd8f3283ecf5ac33254543eb0ac946d525",
  3453. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525",
  3454. "shasum": "",
  3455. "mirrors": [
  3456. {
  3457. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3458. "preferred": true
  3459. }
  3460. ]
  3461. },
  3462. "require": {
  3463. "php": "^5.5.9 || ^7.0 || ^8.0"
  3464. },
  3465. "require-dev": {
  3466. "bamarni/composer-bin-plugin": "^1.4.1",
  3467. "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0 || ^8.0 || ^9.0"
  3468. },
  3469. "type": "library",
  3470. "extra": {
  3471. "branch-alias": {
  3472. "dev-master": "1.7-dev"
  3473. }
  3474. },
  3475. "autoload": {
  3476. "psr-4": {
  3477. "PhpOption\\": "src/PhpOption/"
  3478. }
  3479. },
  3480. "notification-url": "https://packagist.org/downloads/",
  3481. "license": [
  3482. "Apache-2.0"
  3483. ],
  3484. "authors": [
  3485. {
  3486. "name": "Johannes M. Schmitt",
  3487. "email": "schmittjoh@gmail.com"
  3488. },
  3489. {
  3490. "name": "Graham Campbell",
  3491. "email": "graham@alt-three.com"
  3492. }
  3493. ],
  3494. "description": "Option Type for PHP",
  3495. "keywords": [
  3496. "language",
  3497. "option",
  3498. "php",
  3499. "type"
  3500. ],
  3501. "support": {
  3502. "issues": "https://github.com/schmittjoh/php-option/issues",
  3503. "source": "https://github.com/schmittjoh/php-option/tree/1.7.5"
  3504. },
  3505. "funding": [
  3506. {
  3507. "url": "https://github.com/GrahamCampbell",
  3508. "type": "github"
  3509. },
  3510. {
  3511. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  3512. "type": "tidelift"
  3513. }
  3514. ],
  3515. "time": "2020-07-20T17:29:33+00:00"
  3516. },
  3517. {
  3518. "name": "predis/predis",
  3519. "version": "v1.1.6",
  3520. "source": {
  3521. "type": "git",
  3522. "url": "https://github.com/predis/predis.git",
  3523. "reference": "9930e933c67446962997b05201c69c2319bf26de"
  3524. },
  3525. "dist": {
  3526. "type": "zip",
  3527. "url": "https://api.github.com/repos/predis/predis/zipball/9930e933c67446962997b05201c69c2319bf26de",
  3528. "reference": "9930e933c67446962997b05201c69c2319bf26de",
  3529. "shasum": "",
  3530. "mirrors": [
  3531. {
  3532. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3533. "preferred": true
  3534. }
  3535. ]
  3536. },
  3537. "require": {
  3538. "php": ">=5.3.9"
  3539. },
  3540. "require-dev": {
  3541. "cweagans/composer-patches": "^1.6",
  3542. "phpunit/phpunit": "~4.8"
  3543. },
  3544. "suggest": {
  3545. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  3546. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  3547. },
  3548. "type": "library",
  3549. "extra": {
  3550. "composer-exit-on-patch-failure": true,
  3551. "patches": {
  3552. "phpunit/phpunit-mock-objects": {
  3553. "Fix PHP 7 and 8 compatibility": "./tests/phpunit_mock_objects.patch"
  3554. },
  3555. "phpunit/phpunit": {
  3556. "Fix PHP 7 compatibility": "./tests/phpunit_php7.patch",
  3557. "Fix PHP 8 compatibility": "./tests/phpunit_php8.patch"
  3558. }
  3559. }
  3560. },
  3561. "autoload": {
  3562. "psr-4": {
  3563. "Predis\\": "src/"
  3564. }
  3565. },
  3566. "notification-url": "https://packagist.org/downloads/",
  3567. "license": [
  3568. "MIT"
  3569. ],
  3570. "authors": [
  3571. {
  3572. "name": "Daniele Alessandri",
  3573. "email": "suppakilla@gmail.com",
  3574. "homepage": "http://clorophilla.net",
  3575. "role": "Creator & Maintainer"
  3576. },
  3577. {
  3578. "name": "Till Krüss",
  3579. "homepage": "https://till.im",
  3580. "role": "Maintainer"
  3581. }
  3582. ],
  3583. "description": "Flexible and feature-complete Redis client for PHP and HHVM",
  3584. "homepage": "http://github.com/predis/predis",
  3585. "keywords": [
  3586. "nosql",
  3587. "predis",
  3588. "redis"
  3589. ],
  3590. "support": {
  3591. "issues": "https://github.com/predis/predis/issues",
  3592. "source": "https://github.com/predis/predis/tree/v1.1.6"
  3593. },
  3594. "funding": [
  3595. {
  3596. "url": "https://github.com/sponsors/tillkruss",
  3597. "type": "github"
  3598. }
  3599. ],
  3600. "time": "2020-09-11T19:18:05+00:00"
  3601. },
  3602. {
  3603. "name": "psr/container",
  3604. "version": "1.0.0",
  3605. "source": {
  3606. "type": "git",
  3607. "url": "https://github.com/php-fig/container.git",
  3608. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  3609. },
  3610. "dist": {
  3611. "type": "zip",
  3612. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  3613. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  3614. "shasum": "",
  3615. "mirrors": [
  3616. {
  3617. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3618. "preferred": true
  3619. }
  3620. ]
  3621. },
  3622. "require": {
  3623. "php": ">=5.3.0"
  3624. },
  3625. "type": "library",
  3626. "extra": {
  3627. "branch-alias": {
  3628. "dev-master": "1.0.x-dev"
  3629. }
  3630. },
  3631. "autoload": {
  3632. "psr-4": {
  3633. "Psr\\Container\\": "src/"
  3634. }
  3635. },
  3636. "notification-url": "https://packagist.org/downloads/",
  3637. "license": [
  3638. "MIT"
  3639. ],
  3640. "authors": [
  3641. {
  3642. "name": "PHP-FIG",
  3643. "homepage": "http://www.php-fig.org/"
  3644. }
  3645. ],
  3646. "description": "Common Container Interface (PHP FIG PSR-11)",
  3647. "homepage": "https://github.com/php-fig/container",
  3648. "keywords": [
  3649. "PSR-11",
  3650. "container",
  3651. "container-interface",
  3652. "container-interop",
  3653. "psr"
  3654. ],
  3655. "support": {
  3656. "issues": "https://github.com/php-fig/container/issues",
  3657. "source": "https://github.com/php-fig/container/tree/master"
  3658. },
  3659. "time": "2017-02-14T16:28:37+00:00"
  3660. },
  3661. {
  3662. "name": "psr/event-dispatcher",
  3663. "version": "1.0.0",
  3664. "source": {
  3665. "type": "git",
  3666. "url": "https://github.com/php-fig/event-dispatcher.git",
  3667. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  3668. },
  3669. "dist": {
  3670. "type": "zip",
  3671. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3672. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3673. "shasum": "",
  3674. "mirrors": [
  3675. {
  3676. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3677. "preferred": true
  3678. }
  3679. ]
  3680. },
  3681. "require": {
  3682. "php": ">=7.2.0"
  3683. },
  3684. "type": "library",
  3685. "extra": {
  3686. "branch-alias": {
  3687. "dev-master": "1.0.x-dev"
  3688. }
  3689. },
  3690. "autoload": {
  3691. "psr-4": {
  3692. "Psr\\EventDispatcher\\": "src/"
  3693. }
  3694. },
  3695. "notification-url": "https://packagist.org/downloads/",
  3696. "license": [
  3697. "MIT"
  3698. ],
  3699. "authors": [
  3700. {
  3701. "name": "PHP-FIG",
  3702. "homepage": "http://www.php-fig.org/"
  3703. }
  3704. ],
  3705. "description": "Standard interfaces for event handling.",
  3706. "keywords": [
  3707. "events",
  3708. "psr",
  3709. "psr-14"
  3710. ],
  3711. "support": {
  3712. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  3713. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  3714. },
  3715. "time": "2019-01-08T18:20:26+00:00"
  3716. },
  3717. {
  3718. "name": "psr/http-client",
  3719. "version": "1.0.1",
  3720. "source": {
  3721. "type": "git",
  3722. "url": "https://github.com/php-fig/http-client.git",
  3723. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  3724. },
  3725. "dist": {
  3726. "type": "zip",
  3727. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3728. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3729. "shasum": "",
  3730. "mirrors": [
  3731. {
  3732. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3733. "preferred": true
  3734. }
  3735. ]
  3736. },
  3737. "require": {
  3738. "php": "^7.0 || ^8.0",
  3739. "psr/http-message": "^1.0"
  3740. },
  3741. "type": "library",
  3742. "extra": {
  3743. "branch-alias": {
  3744. "dev-master": "1.0.x-dev"
  3745. }
  3746. },
  3747. "autoload": {
  3748. "psr-4": {
  3749. "Psr\\Http\\Client\\": "src/"
  3750. }
  3751. },
  3752. "notification-url": "https://packagist.org/downloads/",
  3753. "license": [
  3754. "MIT"
  3755. ],
  3756. "authors": [
  3757. {
  3758. "name": "PHP-FIG",
  3759. "homepage": "http://www.php-fig.org/"
  3760. }
  3761. ],
  3762. "description": "Common interface for HTTP clients",
  3763. "homepage": "https://github.com/php-fig/http-client",
  3764. "keywords": [
  3765. "http",
  3766. "http-client",
  3767. "psr",
  3768. "psr-18"
  3769. ],
  3770. "support": {
  3771. "source": "https://github.com/php-fig/http-client/tree/master"
  3772. },
  3773. "time": "2020-06-29T06:28:15+00:00"
  3774. },
  3775. {
  3776. "name": "psr/http-factory",
  3777. "version": "1.0.1",
  3778. "source": {
  3779. "type": "git",
  3780. "url": "https://github.com/php-fig/http-factory.git",
  3781. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  3782. },
  3783. "dist": {
  3784. "type": "zip",
  3785. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  3786. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  3787. "shasum": "",
  3788. "mirrors": [
  3789. {
  3790. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3791. "preferred": true
  3792. }
  3793. ]
  3794. },
  3795. "require": {
  3796. "php": ">=7.0.0",
  3797. "psr/http-message": "^1.0"
  3798. },
  3799. "type": "library",
  3800. "extra": {
  3801. "branch-alias": {
  3802. "dev-master": "1.0.x-dev"
  3803. }
  3804. },
  3805. "autoload": {
  3806. "psr-4": {
  3807. "Psr\\Http\\Message\\": "src/"
  3808. }
  3809. },
  3810. "notification-url": "https://packagist.org/downloads/",
  3811. "license": [
  3812. "MIT"
  3813. ],
  3814. "authors": [
  3815. {
  3816. "name": "PHP-FIG",
  3817. "homepage": "http://www.php-fig.org/"
  3818. }
  3819. ],
  3820. "description": "Common interfaces for PSR-7 HTTP message factories",
  3821. "keywords": [
  3822. "factory",
  3823. "http",
  3824. "message",
  3825. "psr",
  3826. "psr-17",
  3827. "psr-7",
  3828. "request",
  3829. "response"
  3830. ],
  3831. "support": {
  3832. "source": "https://github.com/php-fig/http-factory/tree/master"
  3833. },
  3834. "time": "2019-04-30T12:38:16+00:00"
  3835. },
  3836. {
  3837. "name": "psr/http-message",
  3838. "version": "1.0.1",
  3839. "source": {
  3840. "type": "git",
  3841. "url": "https://github.com/php-fig/http-message.git",
  3842. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  3843. },
  3844. "dist": {
  3845. "type": "zip",
  3846. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  3847. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  3848. "shasum": "",
  3849. "mirrors": [
  3850. {
  3851. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3852. "preferred": true
  3853. }
  3854. ]
  3855. },
  3856. "require": {
  3857. "php": ">=5.3.0"
  3858. },
  3859. "type": "library",
  3860. "extra": {
  3861. "branch-alias": {
  3862. "dev-master": "1.0.x-dev"
  3863. }
  3864. },
  3865. "autoload": {
  3866. "psr-4": {
  3867. "Psr\\Http\\Message\\": "src/"
  3868. }
  3869. },
  3870. "notification-url": "https://packagist.org/downloads/",
  3871. "license": [
  3872. "MIT"
  3873. ],
  3874. "authors": [
  3875. {
  3876. "name": "PHP-FIG",
  3877. "homepage": "http://www.php-fig.org/"
  3878. }
  3879. ],
  3880. "description": "Common interface for HTTP messages",
  3881. "homepage": "https://github.com/php-fig/http-message",
  3882. "keywords": [
  3883. "http",
  3884. "http-message",
  3885. "psr",
  3886. "psr-7",
  3887. "request",
  3888. "response"
  3889. ],
  3890. "support": {
  3891. "source": "https://github.com/php-fig/http-message/tree/master"
  3892. },
  3893. "time": "2016-08-06T14:39:51+00:00"
  3894. },
  3895. {
  3896. "name": "psr/log",
  3897. "version": "1.1.3",
  3898. "source": {
  3899. "type": "git",
  3900. "url": "https://github.com/php-fig/log.git",
  3901. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  3902. },
  3903. "dist": {
  3904. "type": "zip",
  3905. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  3906. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  3907. "shasum": "",
  3908. "mirrors": [
  3909. {
  3910. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3911. "preferred": true
  3912. }
  3913. ]
  3914. },
  3915. "require": {
  3916. "php": ">=5.3.0"
  3917. },
  3918. "type": "library",
  3919. "extra": {
  3920. "branch-alias": {
  3921. "dev-master": "1.1.x-dev"
  3922. }
  3923. },
  3924. "autoload": {
  3925. "psr-4": {
  3926. "Psr\\Log\\": "Psr/Log/"
  3927. }
  3928. },
  3929. "notification-url": "https://packagist.org/downloads/",
  3930. "license": [
  3931. "MIT"
  3932. ],
  3933. "authors": [
  3934. {
  3935. "name": "PHP-FIG",
  3936. "homepage": "http://www.php-fig.org/"
  3937. }
  3938. ],
  3939. "description": "Common interface for logging libraries",
  3940. "homepage": "https://github.com/php-fig/log",
  3941. "keywords": [
  3942. "log",
  3943. "psr",
  3944. "psr-3"
  3945. ],
  3946. "support": {
  3947. "source": "https://github.com/php-fig/log/tree/1.1.3"
  3948. },
  3949. "time": "2020-03-23T09:12:05+00:00"
  3950. },
  3951. {
  3952. "name": "psr/simple-cache",
  3953. "version": "1.0.1",
  3954. "source": {
  3955. "type": "git",
  3956. "url": "https://github.com/php-fig/simple-cache.git",
  3957. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  3958. },
  3959. "dist": {
  3960. "type": "zip",
  3961. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3962. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3963. "shasum": "",
  3964. "mirrors": [
  3965. {
  3966. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3967. "preferred": true
  3968. }
  3969. ]
  3970. },
  3971. "require": {
  3972. "php": ">=5.3.0"
  3973. },
  3974. "type": "library",
  3975. "extra": {
  3976. "branch-alias": {
  3977. "dev-master": "1.0.x-dev"
  3978. }
  3979. },
  3980. "autoload": {
  3981. "psr-4": {
  3982. "Psr\\SimpleCache\\": "src/"
  3983. }
  3984. },
  3985. "notification-url": "https://packagist.org/downloads/",
  3986. "license": [
  3987. "MIT"
  3988. ],
  3989. "authors": [
  3990. {
  3991. "name": "PHP-FIG",
  3992. "homepage": "http://www.php-fig.org/"
  3993. }
  3994. ],
  3995. "description": "Common interfaces for simple caching",
  3996. "keywords": [
  3997. "cache",
  3998. "caching",
  3999. "psr",
  4000. "psr-16",
  4001. "simple-cache"
  4002. ],
  4003. "support": {
  4004. "source": "https://github.com/php-fig/simple-cache/tree/master"
  4005. },
  4006. "time": "2017-10-23T01:57:42+00:00"
  4007. },
  4008. {
  4009. "name": "psy/psysh",
  4010. "version": "v0.10.5",
  4011. "source": {
  4012. "type": "git",
  4013. "url": "https://github.com/bobthecow/psysh.git",
  4014. "reference": "7c710551d4a2653afa259c544508dc18a9098956"
  4015. },
  4016. "dist": {
  4017. "type": "zip",
  4018. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/7c710551d4a2653afa259c544508dc18a9098956",
  4019. "reference": "7c710551d4a2653afa259c544508dc18a9098956",
  4020. "shasum": "",
  4021. "mirrors": [
  4022. {
  4023. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4024. "preferred": true
  4025. }
  4026. ]
  4027. },
  4028. "require": {
  4029. "dnoegel/php-xdg-base-dir": "0.1.*",
  4030. "ext-json": "*",
  4031. "ext-tokenizer": "*",
  4032. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  4033. "php": "^8.0 || ^7.0 || ^5.5.9",
  4034. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  4035. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  4036. },
  4037. "require-dev": {
  4038. "bamarni/composer-bin-plugin": "^1.2",
  4039. "hoa/console": "3.17.*"
  4040. },
  4041. "suggest": {
  4042. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4043. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4044. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  4045. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  4046. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  4047. },
  4048. "bin": [
  4049. "bin/psysh"
  4050. ],
  4051. "type": "library",
  4052. "extra": {
  4053. "branch-alias": {
  4054. "dev-master": "0.10.x-dev"
  4055. }
  4056. },
  4057. "autoload": {
  4058. "files": [
  4059. "src/functions.php"
  4060. ],
  4061. "psr-4": {
  4062. "Psy\\": "src/"
  4063. }
  4064. },
  4065. "notification-url": "https://packagist.org/downloads/",
  4066. "license": [
  4067. "MIT"
  4068. ],
  4069. "authors": [
  4070. {
  4071. "name": "Justin Hileman",
  4072. "email": "justin@justinhileman.info",
  4073. "homepage": "http://justinhileman.com"
  4074. }
  4075. ],
  4076. "description": "An interactive shell for modern PHP.",
  4077. "homepage": "http://psysh.org",
  4078. "keywords": [
  4079. "REPL",
  4080. "console",
  4081. "interactive",
  4082. "shell"
  4083. ],
  4084. "support": {
  4085. "issues": "https://github.com/bobthecow/psysh/issues",
  4086. "source": "https://github.com/bobthecow/psysh/tree/v0.10.5"
  4087. },
  4088. "time": "2020-12-04T02:51:30+00:00"
  4089. },
  4090. {
  4091. "name": "pusher/pusher-php-server",
  4092. "version": "v4.1.4",
  4093. "source": {
  4094. "type": "git",
  4095. "url": "https://github.com/pusher/pusher-http-php.git",
  4096. "reference": "e75e5715e3b651ec20dee5844095aadefab81acb"
  4097. },
  4098. "dist": {
  4099. "type": "zip",
  4100. "url": "https://api.github.com/repos/pusher/pusher-http-php/zipball/e75e5715e3b651ec20dee5844095aadefab81acb",
  4101. "reference": "e75e5715e3b651ec20dee5844095aadefab81acb",
  4102. "shasum": "",
  4103. "mirrors": [
  4104. {
  4105. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4106. "preferred": true
  4107. }
  4108. ]
  4109. },
  4110. "require": {
  4111. "ext-curl": "*",
  4112. "paragonie/sodium_compat": "^1.6",
  4113. "php": "^7.1",
  4114. "psr/log": "^1.0"
  4115. },
  4116. "require-dev": {
  4117. "phpunit/phpunit": "^7.2"
  4118. },
  4119. "type": "library",
  4120. "extra": {
  4121. "branch-alias": {
  4122. "dev-master": "3.4-dev"
  4123. }
  4124. },
  4125. "autoload": {
  4126. "psr-4": {
  4127. "Pusher\\": "src/"
  4128. }
  4129. },
  4130. "notification-url": "https://packagist.org/downloads/",
  4131. "license": [
  4132. "MIT"
  4133. ],
  4134. "description": "Library for interacting with the Pusher REST API",
  4135. "keywords": [
  4136. "events",
  4137. "messaging",
  4138. "php-pusher-server",
  4139. "publish",
  4140. "push",
  4141. "pusher",
  4142. "real time",
  4143. "real-time",
  4144. "realtime",
  4145. "rest",
  4146. "trigger"
  4147. ],
  4148. "support": {
  4149. "issues": "https://github.com/pusher/pusher-http-php/issues",
  4150. "source": "https://github.com/pusher/pusher-http-php/tree/v4.1.4"
  4151. },
  4152. "time": "2020-04-14T15:20:04+00:00"
  4153. },
  4154. {
  4155. "name": "ralouphie/getallheaders",
  4156. "version": "3.0.3",
  4157. "source": {
  4158. "type": "git",
  4159. "url": "https://github.com/ralouphie/getallheaders.git",
  4160. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4161. },
  4162. "dist": {
  4163. "type": "zip",
  4164. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4165. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4166. "shasum": "",
  4167. "mirrors": [
  4168. {
  4169. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4170. "preferred": true
  4171. }
  4172. ]
  4173. },
  4174. "require": {
  4175. "php": ">=5.6"
  4176. },
  4177. "require-dev": {
  4178. "php-coveralls/php-coveralls": "^2.1",
  4179. "phpunit/phpunit": "^5 || ^6.5"
  4180. },
  4181. "type": "library",
  4182. "autoload": {
  4183. "files": [
  4184. "src/getallheaders.php"
  4185. ]
  4186. },
  4187. "notification-url": "https://packagist.org/downloads/",
  4188. "license": [
  4189. "MIT"
  4190. ],
  4191. "authors": [
  4192. {
  4193. "name": "Ralph Khattar",
  4194. "email": "ralph.khattar@gmail.com"
  4195. }
  4196. ],
  4197. "description": "A polyfill for getallheaders.",
  4198. "support": {
  4199. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4200. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4201. },
  4202. "time": "2019-03-08T08:55:37+00:00"
  4203. },
  4204. {
  4205. "name": "ramsey/collection",
  4206. "version": "1.1.1",
  4207. "source": {
  4208. "type": "git",
  4209. "url": "https://github.com/ramsey/collection.git",
  4210. "reference": "24d93aefb2cd786b7edd9f45b554aea20b28b9b1"
  4211. },
  4212. "dist": {
  4213. "type": "zip",
  4214. "url": "https://api.github.com/repos/ramsey/collection/zipball/24d93aefb2cd786b7edd9f45b554aea20b28b9b1",
  4215. "reference": "24d93aefb2cd786b7edd9f45b554aea20b28b9b1",
  4216. "shasum": "",
  4217. "mirrors": [
  4218. {
  4219. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4220. "preferred": true
  4221. }
  4222. ]
  4223. },
  4224. "require": {
  4225. "php": "^7.2 || ^8"
  4226. },
  4227. "require-dev": {
  4228. "captainhook/captainhook": "^5.3",
  4229. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4230. "ergebnis/composer-normalize": "^2.6",
  4231. "fzaninotto/faker": "^1.5",
  4232. "hamcrest/hamcrest-php": "^2",
  4233. "jangregor/phpstan-prophecy": "^0.6",
  4234. "mockery/mockery": "^1.3",
  4235. "phpstan/extension-installer": "^1",
  4236. "phpstan/phpstan": "^0.12.32",
  4237. "phpstan/phpstan-mockery": "^0.12.5",
  4238. "phpstan/phpstan-phpunit": "^0.12.11",
  4239. "phpunit/phpunit": "^8.5",
  4240. "psy/psysh": "^0.10.4",
  4241. "slevomat/coding-standard": "^6.3",
  4242. "squizlabs/php_codesniffer": "^3.5",
  4243. "vimeo/psalm": "^3.12.2"
  4244. },
  4245. "type": "library",
  4246. "autoload": {
  4247. "psr-4": {
  4248. "Ramsey\\Collection\\": "src/"
  4249. }
  4250. },
  4251. "notification-url": "https://packagist.org/downloads/",
  4252. "license": [
  4253. "MIT"
  4254. ],
  4255. "authors": [
  4256. {
  4257. "name": "Ben Ramsey",
  4258. "email": "ben@benramsey.com",
  4259. "homepage": "https://benramsey.com"
  4260. }
  4261. ],
  4262. "description": "A PHP 7.2+ library for representing and manipulating collections.",
  4263. "keywords": [
  4264. "array",
  4265. "collection",
  4266. "hash",
  4267. "map",
  4268. "queue",
  4269. "set"
  4270. ],
  4271. "support": {
  4272. "issues": "https://github.com/ramsey/collection/issues",
  4273. "source": "https://github.com/ramsey/collection/tree/1.1.1"
  4274. },
  4275. "funding": [
  4276. {
  4277. "url": "https://github.com/ramsey",
  4278. "type": "github"
  4279. }
  4280. ],
  4281. "time": "2020-09-10T20:58:17+00:00"
  4282. },
  4283. {
  4284. "name": "ramsey/uuid",
  4285. "version": "4.1.1",
  4286. "source": {
  4287. "type": "git",
  4288. "url": "https://github.com/ramsey/uuid.git",
  4289. "reference": "cd4032040a750077205918c86049aa0f43d22947"
  4290. },
  4291. "dist": {
  4292. "type": "zip",
  4293. "url": "https://api.github.com/repos/ramsey/uuid/zipball/cd4032040a750077205918c86049aa0f43d22947",
  4294. "reference": "cd4032040a750077205918c86049aa0f43d22947",
  4295. "shasum": "",
  4296. "mirrors": [
  4297. {
  4298. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4299. "preferred": true
  4300. }
  4301. ]
  4302. },
  4303. "require": {
  4304. "brick/math": "^0.8 || ^0.9",
  4305. "ext-json": "*",
  4306. "php": "^7.2 || ^8",
  4307. "ramsey/collection": "^1.0",
  4308. "symfony/polyfill-ctype": "^1.8"
  4309. },
  4310. "replace": {
  4311. "rhumsaa/uuid": "self.version"
  4312. },
  4313. "require-dev": {
  4314. "codeception/aspect-mock": "^3",
  4315. "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7.0",
  4316. "doctrine/annotations": "^1.8",
  4317. "goaop/framework": "^2",
  4318. "mockery/mockery": "^1.3",
  4319. "moontoast/math": "^1.1",
  4320. "paragonie/random-lib": "^2",
  4321. "php-mock/php-mock-mockery": "^1.3",
  4322. "php-mock/php-mock-phpunit": "^2.5",
  4323. "php-parallel-lint/php-parallel-lint": "^1.1",
  4324. "phpbench/phpbench": "^0.17.1",
  4325. "phpstan/extension-installer": "^1.0",
  4326. "phpstan/phpstan": "^0.12",
  4327. "phpstan/phpstan-mockery": "^0.12",
  4328. "phpstan/phpstan-phpunit": "^0.12",
  4329. "phpunit/phpunit": "^8.5",
  4330. "psy/psysh": "^0.10.0",
  4331. "slevomat/coding-standard": "^6.0",
  4332. "squizlabs/php_codesniffer": "^3.5",
  4333. "vimeo/psalm": "3.9.4"
  4334. },
  4335. "suggest": {
  4336. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4337. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  4338. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4339. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4340. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4341. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4342. },
  4343. "type": "library",
  4344. "extra": {
  4345. "branch-alias": {
  4346. "dev-master": "4.x-dev"
  4347. }
  4348. },
  4349. "autoload": {
  4350. "psr-4": {
  4351. "Ramsey\\Uuid\\": "src/"
  4352. },
  4353. "files": [
  4354. "src/functions.php"
  4355. ]
  4356. },
  4357. "notification-url": "https://packagist.org/downloads/",
  4358. "license": [
  4359. "MIT"
  4360. ],
  4361. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4362. "homepage": "https://github.com/ramsey/uuid",
  4363. "keywords": [
  4364. "guid",
  4365. "identifier",
  4366. "uuid"
  4367. ],
  4368. "support": {
  4369. "issues": "https://github.com/ramsey/uuid/issues",
  4370. "rss": "https://github.com/ramsey/uuid/releases.atom",
  4371. "source": "https://github.com/ramsey/uuid"
  4372. },
  4373. "funding": [
  4374. {
  4375. "url": "https://github.com/ramsey",
  4376. "type": "github"
  4377. }
  4378. ],
  4379. "time": "2020-08-18T17:17:46+00:00"
  4380. },
  4381. {
  4382. "name": "scrivo/highlight.php",
  4383. "version": "v9.18.1.5",
  4384. "source": {
  4385. "type": "git",
  4386. "url": "https://github.com/scrivo/highlight.php.git",
  4387. "reference": "fa75a865928a4a5d49e5e77faca6bd2f2410baaf"
  4388. },
  4389. "dist": {
  4390. "type": "zip",
  4391. "url": "https://api.github.com/repos/scrivo/highlight.php/zipball/fa75a865928a4a5d49e5e77faca6bd2f2410baaf",
  4392. "reference": "fa75a865928a4a5d49e5e77faca6bd2f2410baaf",
  4393. "shasum": "",
  4394. "mirrors": [
  4395. {
  4396. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4397. "preferred": true
  4398. }
  4399. ]
  4400. },
  4401. "require": {
  4402. "ext-json": "*",
  4403. "ext-mbstring": "*",
  4404. "php": ">=5.4"
  4405. },
  4406. "require-dev": {
  4407. "phpunit/phpunit": "^4.8|^5.7",
  4408. "sabberworm/php-css-parser": "^8.3",
  4409. "symfony/finder": "^2.8|^3.4",
  4410. "symfony/var-dumper": "^2.8|^3.4"
  4411. },
  4412. "suggest": {
  4413. "ext-dom": "Needed to make use of the features in the utilities namespace"
  4414. },
  4415. "type": "library",
  4416. "autoload": {
  4417. "psr-0": {
  4418. "Highlight\\": "",
  4419. "HighlightUtilities\\": ""
  4420. },
  4421. "files": [
  4422. "HighlightUtilities/functions.php"
  4423. ]
  4424. },
  4425. "notification-url": "https://packagist.org/downloads/",
  4426. "license": [
  4427. "BSD-3-Clause"
  4428. ],
  4429. "authors": [
  4430. {
  4431. "name": "Geert Bergman",
  4432. "homepage": "http://www.scrivo.org/",
  4433. "role": "Project Author"
  4434. },
  4435. {
  4436. "name": "Vladimir Jimenez",
  4437. "homepage": "https://allejo.io",
  4438. "role": "Maintainer"
  4439. },
  4440. {
  4441. "name": "Martin Folkers",
  4442. "homepage": "https://twobrain.io",
  4443. "role": "Contributor"
  4444. }
  4445. ],
  4446. "description": "Server side syntax highlighter that supports 185 languages. It's a PHP port of highlight.js",
  4447. "keywords": [
  4448. "code",
  4449. "highlight",
  4450. "highlight.js",
  4451. "highlight.php",
  4452. "syntax"
  4453. ],
  4454. "support": {
  4455. "issues": "https://github.com/scrivo/highlight.php/issues",
  4456. "source": "https://github.com/scrivo/highlight.php"
  4457. },
  4458. "funding": [
  4459. {
  4460. "url": "https://github.com/allejo",
  4461. "type": "github"
  4462. }
  4463. ],
  4464. "time": "2020-11-22T06:07:40+00:00"
  4465. },
  4466. {
  4467. "name": "swiftmailer/swiftmailer",
  4468. "version": "v6.2.4",
  4469. "source": {
  4470. "type": "git",
  4471. "url": "https://github.com/swiftmailer/swiftmailer.git",
  4472. "reference": "56f0ab23f54c4ccbb0d5dcc67ff8552e0c98d59e"
  4473. },
  4474. "dist": {
  4475. "type": "zip",
  4476. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/56f0ab23f54c4ccbb0d5dcc67ff8552e0c98d59e",
  4477. "reference": "56f0ab23f54c4ccbb0d5dcc67ff8552e0c98d59e",
  4478. "shasum": "",
  4479. "mirrors": [
  4480. {
  4481. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4482. "preferred": true
  4483. }
  4484. ]
  4485. },
  4486. "require": {
  4487. "egulias/email-validator": "^2.0",
  4488. "php": ">=7.0.0",
  4489. "symfony/polyfill-iconv": "^1.0",
  4490. "symfony/polyfill-intl-idn": "^1.10",
  4491. "symfony/polyfill-mbstring": "^1.0"
  4492. },
  4493. "require-dev": {
  4494. "mockery/mockery": "^1.0",
  4495. "symfony/phpunit-bridge": "^4.4|^5.0"
  4496. },
  4497. "suggest": {
  4498. "ext-intl": "Needed to support internationalized email addresses"
  4499. },
  4500. "type": "library",
  4501. "extra": {
  4502. "branch-alias": {
  4503. "dev-master": "6.2-dev"
  4504. }
  4505. },
  4506. "autoload": {
  4507. "files": [
  4508. "lib/swift_required.php"
  4509. ]
  4510. },
  4511. "notification-url": "https://packagist.org/downloads/",
  4512. "license": [
  4513. "MIT"
  4514. ],
  4515. "authors": [
  4516. {
  4517. "name": "Chris Corbyn"
  4518. },
  4519. {
  4520. "name": "Fabien Potencier",
  4521. "email": "fabien@symfony.com"
  4522. }
  4523. ],
  4524. "description": "Swiftmailer, free feature-rich PHP mailer",
  4525. "homepage": "https://swiftmailer.symfony.com",
  4526. "keywords": [
  4527. "email",
  4528. "mail",
  4529. "mailer"
  4530. ],
  4531. "support": {
  4532. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  4533. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.2.4"
  4534. },
  4535. "funding": [
  4536. {
  4537. "url": "https://github.com/fabpot",
  4538. "type": "github"
  4539. },
  4540. {
  4541. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  4542. "type": "tidelift"
  4543. }
  4544. ],
  4545. "time": "2020-12-08T18:02:06+00:00"
  4546. },
  4547. {
  4548. "name": "symfony/console",
  4549. "version": "v5.2.0",
  4550. "source": {
  4551. "type": "git",
  4552. "url": "https://github.com/symfony/console.git",
  4553. "reference": "3e0564fb08d44a98bd5f1960204c958e57bd586b"
  4554. },
  4555. "dist": {
  4556. "type": "zip",
  4557. "url": "https://api.github.com/repos/symfony/console/zipball/3e0564fb08d44a98bd5f1960204c958e57bd586b",
  4558. "reference": "3e0564fb08d44a98bd5f1960204c958e57bd586b",
  4559. "shasum": "",
  4560. "mirrors": [
  4561. {
  4562. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4563. "preferred": true
  4564. }
  4565. ]
  4566. },
  4567. "require": {
  4568. "php": ">=7.2.5",
  4569. "symfony/polyfill-mbstring": "~1.0",
  4570. "symfony/polyfill-php73": "^1.8",
  4571. "symfony/polyfill-php80": "^1.15",
  4572. "symfony/service-contracts": "^1.1|^2",
  4573. "symfony/string": "^5.1"
  4574. },
  4575. "conflict": {
  4576. "symfony/dependency-injection": "<4.4",
  4577. "symfony/dotenv": "<5.1",
  4578. "symfony/event-dispatcher": "<4.4",
  4579. "symfony/lock": "<4.4",
  4580. "symfony/process": "<4.4"
  4581. },
  4582. "provide": {
  4583. "psr/log-implementation": "1.0"
  4584. },
  4585. "require-dev": {
  4586. "psr/log": "~1.0",
  4587. "symfony/config": "^4.4|^5.0",
  4588. "symfony/dependency-injection": "^4.4|^5.0",
  4589. "symfony/event-dispatcher": "^4.4|^5.0",
  4590. "symfony/lock": "^4.4|^5.0",
  4591. "symfony/process": "^4.4|^5.0",
  4592. "symfony/var-dumper": "^4.4|^5.0"
  4593. },
  4594. "suggest": {
  4595. "psr/log": "For using the console logger",
  4596. "symfony/event-dispatcher": "",
  4597. "symfony/lock": "",
  4598. "symfony/process": ""
  4599. },
  4600. "type": "library",
  4601. "autoload": {
  4602. "psr-4": {
  4603. "Symfony\\Component\\Console\\": ""
  4604. },
  4605. "exclude-from-classmap": [
  4606. "/Tests/"
  4607. ]
  4608. },
  4609. "notification-url": "https://packagist.org/downloads/",
  4610. "license": [
  4611. "MIT"
  4612. ],
  4613. "authors": [
  4614. {
  4615. "name": "Fabien Potencier",
  4616. "email": "fabien@symfony.com"
  4617. },
  4618. {
  4619. "name": "Symfony Community",
  4620. "homepage": "https://symfony.com/contributors"
  4621. }
  4622. ],
  4623. "description": "Symfony Console Component",
  4624. "homepage": "https://symfony.com",
  4625. "keywords": [
  4626. "cli",
  4627. "command line",
  4628. "console",
  4629. "terminal"
  4630. ],
  4631. "support": {
  4632. "source": "https://github.com/symfony/console/tree/v5.2.0"
  4633. },
  4634. "funding": [
  4635. {
  4636. "url": "https://symfony.com/sponsor",
  4637. "type": "custom"
  4638. },
  4639. {
  4640. "url": "https://github.com/fabpot",
  4641. "type": "github"
  4642. },
  4643. {
  4644. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4645. "type": "tidelift"
  4646. }
  4647. ],
  4648. "time": "2020-11-28T11:24:18+00:00"
  4649. },
  4650. {
  4651. "name": "symfony/css-selector",
  4652. "version": "v5.2.0",
  4653. "source": {
  4654. "type": "git",
  4655. "url": "https://github.com/symfony/css-selector.git",
  4656. "reference": "b8d8eb06b0942e84a69e7acebc3e9c1e6e6e7256"
  4657. },
  4658. "dist": {
  4659. "type": "zip",
  4660. "url": "https://api.github.com/repos/symfony/css-selector/zipball/b8d8eb06b0942e84a69e7acebc3e9c1e6e6e7256",
  4661. "reference": "b8d8eb06b0942e84a69e7acebc3e9c1e6e6e7256",
  4662. "shasum": "",
  4663. "mirrors": [
  4664. {
  4665. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4666. "preferred": true
  4667. }
  4668. ]
  4669. },
  4670. "require": {
  4671. "php": ">=7.2.5"
  4672. },
  4673. "type": "library",
  4674. "autoload": {
  4675. "psr-4": {
  4676. "Symfony\\Component\\CssSelector\\": ""
  4677. },
  4678. "exclude-from-classmap": [
  4679. "/Tests/"
  4680. ]
  4681. },
  4682. "notification-url": "https://packagist.org/downloads/",
  4683. "license": [
  4684. "MIT"
  4685. ],
  4686. "authors": [
  4687. {
  4688. "name": "Fabien Potencier",
  4689. "email": "fabien@symfony.com"
  4690. },
  4691. {
  4692. "name": "Jean-François Simon",
  4693. "email": "jeanfrancois.simon@sensiolabs.com"
  4694. },
  4695. {
  4696. "name": "Symfony Community",
  4697. "homepage": "https://symfony.com/contributors"
  4698. }
  4699. ],
  4700. "description": "Symfony CssSelector Component",
  4701. "homepage": "https://symfony.com",
  4702. "support": {
  4703. "source": "https://github.com/symfony/css-selector/tree/v5.2.0"
  4704. },
  4705. "funding": [
  4706. {
  4707. "url": "https://symfony.com/sponsor",
  4708. "type": "custom"
  4709. },
  4710. {
  4711. "url": "https://github.com/fabpot",
  4712. "type": "github"
  4713. },
  4714. {
  4715. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4716. "type": "tidelift"
  4717. }
  4718. ],
  4719. "time": "2020-10-28T21:31:18+00:00"
  4720. },
  4721. {
  4722. "name": "symfony/deprecation-contracts",
  4723. "version": "v2.2.0",
  4724. "source": {
  4725. "type": "git",
  4726. "url": "https://github.com/symfony/deprecation-contracts.git",
  4727. "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665"
  4728. },
  4729. "dist": {
  4730. "type": "zip",
  4731. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5fa56b4074d1ae755beb55617ddafe6f5d78f665",
  4732. "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665",
  4733. "shasum": "",
  4734. "mirrors": [
  4735. {
  4736. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4737. "preferred": true
  4738. }
  4739. ]
  4740. },
  4741. "require": {
  4742. "php": ">=7.1"
  4743. },
  4744. "type": "library",
  4745. "extra": {
  4746. "branch-alias": {
  4747. "dev-master": "2.2-dev"
  4748. },
  4749. "thanks": {
  4750. "name": "symfony/contracts",
  4751. "url": "https://github.com/symfony/contracts"
  4752. }
  4753. },
  4754. "autoload": {
  4755. "files": [
  4756. "function.php"
  4757. ]
  4758. },
  4759. "notification-url": "https://packagist.org/downloads/",
  4760. "license": [
  4761. "MIT"
  4762. ],
  4763. "authors": [
  4764. {
  4765. "name": "Nicolas Grekas",
  4766. "email": "p@tchwork.com"
  4767. },
  4768. {
  4769. "name": "Symfony Community",
  4770. "homepage": "https://symfony.com/contributors"
  4771. }
  4772. ],
  4773. "description": "A generic function and convention to trigger deprecation notices",
  4774. "homepage": "https://symfony.com",
  4775. "support": {
  4776. "source": "https://github.com/symfony/deprecation-contracts/tree/master"
  4777. },
  4778. "funding": [
  4779. {
  4780. "url": "https://symfony.com/sponsor",
  4781. "type": "custom"
  4782. },
  4783. {
  4784. "url": "https://github.com/fabpot",
  4785. "type": "github"
  4786. },
  4787. {
  4788. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4789. "type": "tidelift"
  4790. }
  4791. ],
  4792. "time": "2020-09-07T11:33:47+00:00"
  4793. },
  4794. {
  4795. "name": "symfony/error-handler",
  4796. "version": "v5.2.0",
  4797. "source": {
  4798. "type": "git",
  4799. "url": "https://github.com/symfony/error-handler.git",
  4800. "reference": "289008c5be039e39908d33ae0a8ac99be1210bba"
  4801. },
  4802. "dist": {
  4803. "type": "zip",
  4804. "url": "https://api.github.com/repos/symfony/error-handler/zipball/289008c5be039e39908d33ae0a8ac99be1210bba",
  4805. "reference": "289008c5be039e39908d33ae0a8ac99be1210bba",
  4806. "shasum": "",
  4807. "mirrors": [
  4808. {
  4809. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4810. "preferred": true
  4811. }
  4812. ]
  4813. },
  4814. "require": {
  4815. "php": ">=7.2.5",
  4816. "psr/log": "^1.0",
  4817. "symfony/polyfill-php80": "^1.15",
  4818. "symfony/var-dumper": "^4.4|^5.0"
  4819. },
  4820. "require-dev": {
  4821. "symfony/deprecation-contracts": "^2.1",
  4822. "symfony/http-kernel": "^4.4|^5.0",
  4823. "symfony/serializer": "^4.4|^5.0"
  4824. },
  4825. "type": "library",
  4826. "autoload": {
  4827. "psr-4": {
  4828. "Symfony\\Component\\ErrorHandler\\": ""
  4829. },
  4830. "exclude-from-classmap": [
  4831. "/Tests/"
  4832. ]
  4833. },
  4834. "notification-url": "https://packagist.org/downloads/",
  4835. "license": [
  4836. "MIT"
  4837. ],
  4838. "authors": [
  4839. {
  4840. "name": "Fabien Potencier",
  4841. "email": "fabien@symfony.com"
  4842. },
  4843. {
  4844. "name": "Symfony Community",
  4845. "homepage": "https://symfony.com/contributors"
  4846. }
  4847. ],
  4848. "description": "Symfony ErrorHandler Component",
  4849. "homepage": "https://symfony.com",
  4850. "support": {
  4851. "source": "https://github.com/symfony/error-handler/tree/v5.2.0"
  4852. },
  4853. "funding": [
  4854. {
  4855. "url": "https://symfony.com/sponsor",
  4856. "type": "custom"
  4857. },
  4858. {
  4859. "url": "https://github.com/fabpot",
  4860. "type": "github"
  4861. },
  4862. {
  4863. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4864. "type": "tidelift"
  4865. }
  4866. ],
  4867. "time": "2020-10-28T21:46:03+00:00"
  4868. },
  4869. {
  4870. "name": "symfony/event-dispatcher",
  4871. "version": "v5.2.0",
  4872. "source": {
  4873. "type": "git",
  4874. "url": "https://github.com/symfony/event-dispatcher.git",
  4875. "reference": "aa13a09811e6d2ad43f8fb336bebdb7691d85d3c"
  4876. },
  4877. "dist": {
  4878. "type": "zip",
  4879. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/aa13a09811e6d2ad43f8fb336bebdb7691d85d3c",
  4880. "reference": "aa13a09811e6d2ad43f8fb336bebdb7691d85d3c",
  4881. "shasum": "",
  4882. "mirrors": [
  4883. {
  4884. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4885. "preferred": true
  4886. }
  4887. ]
  4888. },
  4889. "require": {
  4890. "php": ">=7.2.5",
  4891. "symfony/deprecation-contracts": "^2.1",
  4892. "symfony/event-dispatcher-contracts": "^2",
  4893. "symfony/polyfill-php80": "^1.15"
  4894. },
  4895. "conflict": {
  4896. "symfony/dependency-injection": "<4.4"
  4897. },
  4898. "provide": {
  4899. "psr/event-dispatcher-implementation": "1.0",
  4900. "symfony/event-dispatcher-implementation": "2.0"
  4901. },
  4902. "require-dev": {
  4903. "psr/log": "~1.0",
  4904. "symfony/config": "^4.4|^5.0",
  4905. "symfony/dependency-injection": "^4.4|^5.0",
  4906. "symfony/error-handler": "^4.4|^5.0",
  4907. "symfony/expression-language": "^4.4|^5.0",
  4908. "symfony/http-foundation": "^4.4|^5.0",
  4909. "symfony/service-contracts": "^1.1|^2",
  4910. "symfony/stopwatch": "^4.4|^5.0"
  4911. },
  4912. "suggest": {
  4913. "symfony/dependency-injection": "",
  4914. "symfony/http-kernel": ""
  4915. },
  4916. "type": "library",
  4917. "autoload": {
  4918. "psr-4": {
  4919. "Symfony\\Component\\EventDispatcher\\": ""
  4920. },
  4921. "exclude-from-classmap": [
  4922. "/Tests/"
  4923. ]
  4924. },
  4925. "notification-url": "https://packagist.org/downloads/",
  4926. "license": [
  4927. "MIT"
  4928. ],
  4929. "authors": [
  4930. {
  4931. "name": "Fabien Potencier",
  4932. "email": "fabien@symfony.com"
  4933. },
  4934. {
  4935. "name": "Symfony Community",
  4936. "homepage": "https://symfony.com/contributors"
  4937. }
  4938. ],
  4939. "description": "Symfony EventDispatcher Component",
  4940. "homepage": "https://symfony.com",
  4941. "support": {
  4942. "source": "https://github.com/symfony/event-dispatcher/tree/v5.2.0"
  4943. },
  4944. "funding": [
  4945. {
  4946. "url": "https://symfony.com/sponsor",
  4947. "type": "custom"
  4948. },
  4949. {
  4950. "url": "https://github.com/fabpot",
  4951. "type": "github"
  4952. },
  4953. {
  4954. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4955. "type": "tidelift"
  4956. }
  4957. ],
  4958. "time": "2020-11-01T16:14:45+00:00"
  4959. },
  4960. {
  4961. "name": "symfony/event-dispatcher-contracts",
  4962. "version": "v2.2.0",
  4963. "source": {
  4964. "type": "git",
  4965. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  4966. "reference": "0ba7d54483095a198fa51781bc608d17e84dffa2"
  4967. },
  4968. "dist": {
  4969. "type": "zip",
  4970. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/0ba7d54483095a198fa51781bc608d17e84dffa2",
  4971. "reference": "0ba7d54483095a198fa51781bc608d17e84dffa2",
  4972. "shasum": "",
  4973. "mirrors": [
  4974. {
  4975. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4976. "preferred": true
  4977. }
  4978. ]
  4979. },
  4980. "require": {
  4981. "php": ">=7.2.5",
  4982. "psr/event-dispatcher": "^1"
  4983. },
  4984. "suggest": {
  4985. "symfony/event-dispatcher-implementation": ""
  4986. },
  4987. "type": "library",
  4988. "extra": {
  4989. "branch-alias": {
  4990. "dev-master": "2.2-dev"
  4991. },
  4992. "thanks": {
  4993. "name": "symfony/contracts",
  4994. "url": "https://github.com/symfony/contracts"
  4995. }
  4996. },
  4997. "autoload": {
  4998. "psr-4": {
  4999. "Symfony\\Contracts\\EventDispatcher\\": ""
  5000. }
  5001. },
  5002. "notification-url": "https://packagist.org/downloads/",
  5003. "license": [
  5004. "MIT"
  5005. ],
  5006. "authors": [
  5007. {
  5008. "name": "Nicolas Grekas",
  5009. "email": "p@tchwork.com"
  5010. },
  5011. {
  5012. "name": "Symfony Community",
  5013. "homepage": "https://symfony.com/contributors"
  5014. }
  5015. ],
  5016. "description": "Generic abstractions related to dispatching event",
  5017. "homepage": "https://symfony.com",
  5018. "keywords": [
  5019. "abstractions",
  5020. "contracts",
  5021. "decoupling",
  5022. "interfaces",
  5023. "interoperability",
  5024. "standards"
  5025. ],
  5026. "support": {
  5027. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.2.0"
  5028. },
  5029. "funding": [
  5030. {
  5031. "url": "https://symfony.com/sponsor",
  5032. "type": "custom"
  5033. },
  5034. {
  5035. "url": "https://github.com/fabpot",
  5036. "type": "github"
  5037. },
  5038. {
  5039. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5040. "type": "tidelift"
  5041. }
  5042. ],
  5043. "time": "2020-09-07T11:33:47+00:00"
  5044. },
  5045. {
  5046. "name": "symfony/finder",
  5047. "version": "v5.2.0",
  5048. "source": {
  5049. "type": "git",
  5050. "url": "https://github.com/symfony/finder.git",
  5051. "reference": "fd8305521692f27eae3263895d1ef1571c71a78d"
  5052. },
  5053. "dist": {
  5054. "type": "zip",
  5055. "url": "https://api.github.com/repos/symfony/finder/zipball/fd8305521692f27eae3263895d1ef1571c71a78d",
  5056. "reference": "fd8305521692f27eae3263895d1ef1571c71a78d",
  5057. "shasum": "",
  5058. "mirrors": [
  5059. {
  5060. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5061. "preferred": true
  5062. }
  5063. ]
  5064. },
  5065. "require": {
  5066. "php": ">=7.2.5"
  5067. },
  5068. "type": "library",
  5069. "autoload": {
  5070. "psr-4": {
  5071. "Symfony\\Component\\Finder\\": ""
  5072. },
  5073. "exclude-from-classmap": [
  5074. "/Tests/"
  5075. ]
  5076. },
  5077. "notification-url": "https://packagist.org/downloads/",
  5078. "license": [
  5079. "MIT"
  5080. ],
  5081. "authors": [
  5082. {
  5083. "name": "Fabien Potencier",
  5084. "email": "fabien@symfony.com"
  5085. },
  5086. {
  5087. "name": "Symfony Community",
  5088. "homepage": "https://symfony.com/contributors"
  5089. }
  5090. ],
  5091. "description": "Symfony Finder Component",
  5092. "homepage": "https://symfony.com",
  5093. "support": {
  5094. "source": "https://github.com/symfony/finder/tree/v5.2.0"
  5095. },
  5096. "funding": [
  5097. {
  5098. "url": "https://symfony.com/sponsor",
  5099. "type": "custom"
  5100. },
  5101. {
  5102. "url": "https://github.com/fabpot",
  5103. "type": "github"
  5104. },
  5105. {
  5106. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5107. "type": "tidelift"
  5108. }
  5109. ],
  5110. "time": "2020-11-18T09:42:36+00:00"
  5111. },
  5112. {
  5113. "name": "symfony/http-client-contracts",
  5114. "version": "v2.3.1",
  5115. "source": {
  5116. "type": "git",
  5117. "url": "https://github.com/symfony/http-client-contracts.git",
  5118. "reference": "41db680a15018f9c1d4b23516059633ce280ca33"
  5119. },
  5120. "dist": {
  5121. "type": "zip",
  5122. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/41db680a15018f9c1d4b23516059633ce280ca33",
  5123. "reference": "41db680a15018f9c1d4b23516059633ce280ca33",
  5124. "shasum": "",
  5125. "mirrors": [
  5126. {
  5127. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5128. "preferred": true
  5129. }
  5130. ]
  5131. },
  5132. "require": {
  5133. "php": ">=7.2.5"
  5134. },
  5135. "suggest": {
  5136. "symfony/http-client-implementation": ""
  5137. },
  5138. "type": "library",
  5139. "extra": {
  5140. "branch-version": "2.3",
  5141. "branch-alias": {
  5142. "dev-main": "2.3-dev"
  5143. },
  5144. "thanks": {
  5145. "name": "symfony/contracts",
  5146. "url": "https://github.com/symfony/contracts"
  5147. }
  5148. },
  5149. "autoload": {
  5150. "psr-4": {
  5151. "Symfony\\Contracts\\HttpClient\\": ""
  5152. }
  5153. },
  5154. "notification-url": "https://packagist.org/downloads/",
  5155. "license": [
  5156. "MIT"
  5157. ],
  5158. "authors": [
  5159. {
  5160. "name": "Nicolas Grekas",
  5161. "email": "p@tchwork.com"
  5162. },
  5163. {
  5164. "name": "Symfony Community",
  5165. "homepage": "https://symfony.com/contributors"
  5166. }
  5167. ],
  5168. "description": "Generic abstractions related to HTTP clients",
  5169. "homepage": "https://symfony.com",
  5170. "keywords": [
  5171. "abstractions",
  5172. "contracts",
  5173. "decoupling",
  5174. "interfaces",
  5175. "interoperability",
  5176. "standards"
  5177. ],
  5178. "support": {
  5179. "source": "https://github.com/symfony/http-client-contracts/tree/v2.3.1"
  5180. },
  5181. "funding": [
  5182. {
  5183. "url": "https://symfony.com/sponsor",
  5184. "type": "custom"
  5185. },
  5186. {
  5187. "url": "https://github.com/fabpot",
  5188. "type": "github"
  5189. },
  5190. {
  5191. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5192. "type": "tidelift"
  5193. }
  5194. ],
  5195. "time": "2020-10-14T17:08:19+00:00"
  5196. },
  5197. {
  5198. "name": "symfony/http-foundation",
  5199. "version": "v5.2.0",
  5200. "source": {
  5201. "type": "git",
  5202. "url": "https://github.com/symfony/http-foundation.git",
  5203. "reference": "e4576271ee99123aa59a40564c7b5405f0ebd1e6"
  5204. },
  5205. "dist": {
  5206. "type": "zip",
  5207. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/e4576271ee99123aa59a40564c7b5405f0ebd1e6",
  5208. "reference": "e4576271ee99123aa59a40564c7b5405f0ebd1e6",
  5209. "shasum": "",
  5210. "mirrors": [
  5211. {
  5212. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5213. "preferred": true
  5214. }
  5215. ]
  5216. },
  5217. "require": {
  5218. "php": ">=7.2.5",
  5219. "symfony/deprecation-contracts": "^2.1",
  5220. "symfony/polyfill-mbstring": "~1.1",
  5221. "symfony/polyfill-php80": "^1.15"
  5222. },
  5223. "require-dev": {
  5224. "predis/predis": "~1.0",
  5225. "symfony/cache": "^4.4|^5.0",
  5226. "symfony/expression-language": "^4.4|^5.0",
  5227. "symfony/mime": "^4.4|^5.0"
  5228. },
  5229. "suggest": {
  5230. "symfony/mime": "To use the file extension guesser"
  5231. },
  5232. "type": "library",
  5233. "autoload": {
  5234. "psr-4": {
  5235. "Symfony\\Component\\HttpFoundation\\": ""
  5236. },
  5237. "exclude-from-classmap": [
  5238. "/Tests/"
  5239. ]
  5240. },
  5241. "notification-url": "https://packagist.org/downloads/",
  5242. "license": [
  5243. "MIT"
  5244. ],
  5245. "authors": [
  5246. {
  5247. "name": "Fabien Potencier",
  5248. "email": "fabien@symfony.com"
  5249. },
  5250. {
  5251. "name": "Symfony Community",
  5252. "homepage": "https://symfony.com/contributors"
  5253. }
  5254. ],
  5255. "description": "Symfony HttpFoundation Component",
  5256. "homepage": "https://symfony.com",
  5257. "support": {
  5258. "source": "https://github.com/symfony/http-foundation/tree/v5.2.0"
  5259. },
  5260. "funding": [
  5261. {
  5262. "url": "https://symfony.com/sponsor",
  5263. "type": "custom"
  5264. },
  5265. {
  5266. "url": "https://github.com/fabpot",
  5267. "type": "github"
  5268. },
  5269. {
  5270. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5271. "type": "tidelift"
  5272. }
  5273. ],
  5274. "time": "2020-11-27T06:13:25+00:00"
  5275. },
  5276. {
  5277. "name": "symfony/http-kernel",
  5278. "version": "v5.2.0",
  5279. "source": {
  5280. "type": "git",
  5281. "url": "https://github.com/symfony/http-kernel.git",
  5282. "reference": "38907e5ccb2d9d371191a946734afc83c7a03160"
  5283. },
  5284. "dist": {
  5285. "type": "zip",
  5286. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/38907e5ccb2d9d371191a946734afc83c7a03160",
  5287. "reference": "38907e5ccb2d9d371191a946734afc83c7a03160",
  5288. "shasum": "",
  5289. "mirrors": [
  5290. {
  5291. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5292. "preferred": true
  5293. }
  5294. ]
  5295. },
  5296. "require": {
  5297. "php": ">=7.2.5",
  5298. "psr/log": "~1.0",
  5299. "symfony/deprecation-contracts": "^2.1",
  5300. "symfony/error-handler": "^4.4|^5.0",
  5301. "symfony/event-dispatcher": "^5.0",
  5302. "symfony/http-client-contracts": "^1.1|^2",
  5303. "symfony/http-foundation": "^4.4|^5.0",
  5304. "symfony/polyfill-ctype": "^1.8",
  5305. "symfony/polyfill-php73": "^1.9",
  5306. "symfony/polyfill-php80": "^1.15"
  5307. },
  5308. "conflict": {
  5309. "symfony/browser-kit": "<4.4",
  5310. "symfony/cache": "<5.0",
  5311. "symfony/config": "<5.0",
  5312. "symfony/console": "<4.4",
  5313. "symfony/dependency-injection": "<5.1.8",
  5314. "symfony/doctrine-bridge": "<5.0",
  5315. "symfony/form": "<5.0",
  5316. "symfony/http-client": "<5.0",
  5317. "symfony/mailer": "<5.0",
  5318. "symfony/messenger": "<5.0",
  5319. "symfony/translation": "<5.0",
  5320. "symfony/twig-bridge": "<5.0",
  5321. "symfony/validator": "<5.0",
  5322. "twig/twig": "<2.4"
  5323. },
  5324. "provide": {
  5325. "psr/log-implementation": "1.0"
  5326. },
  5327. "require-dev": {
  5328. "psr/cache": "~1.0",
  5329. "symfony/browser-kit": "^4.4|^5.0",
  5330. "symfony/config": "^5.0",
  5331. "symfony/console": "^4.4|^5.0",
  5332. "symfony/css-selector": "^4.4|^5.0",
  5333. "symfony/dependency-injection": "^5.1.8",
  5334. "symfony/dom-crawler": "^4.4|^5.0",
  5335. "symfony/expression-language": "^4.4|^5.0",
  5336. "symfony/finder": "^4.4|^5.0",
  5337. "symfony/process": "^4.4|^5.0",
  5338. "symfony/routing": "^4.4|^5.0",
  5339. "symfony/stopwatch": "^4.4|^5.0",
  5340. "symfony/translation": "^4.4|^5.0",
  5341. "symfony/translation-contracts": "^1.1|^2",
  5342. "twig/twig": "^2.4|^3.0"
  5343. },
  5344. "suggest": {
  5345. "symfony/browser-kit": "",
  5346. "symfony/config": "",
  5347. "symfony/console": "",
  5348. "symfony/dependency-injection": ""
  5349. },
  5350. "type": "library",
  5351. "autoload": {
  5352. "psr-4": {
  5353. "Symfony\\Component\\HttpKernel\\": ""
  5354. },
  5355. "exclude-from-classmap": [
  5356. "/Tests/"
  5357. ]
  5358. },
  5359. "notification-url": "https://packagist.org/downloads/",
  5360. "license": [
  5361. "MIT"
  5362. ],
  5363. "authors": [
  5364. {
  5365. "name": "Fabien Potencier",
  5366. "email": "fabien@symfony.com"
  5367. },
  5368. {
  5369. "name": "Symfony Community",
  5370. "homepage": "https://symfony.com/contributors"
  5371. }
  5372. ],
  5373. "description": "Symfony HttpKernel Component",
  5374. "homepage": "https://symfony.com",
  5375. "support": {
  5376. "source": "https://github.com/symfony/http-kernel/tree/v5.2.0"
  5377. },
  5378. "funding": [
  5379. {
  5380. "url": "https://symfony.com/sponsor",
  5381. "type": "custom"
  5382. },
  5383. {
  5384. "url": "https://github.com/fabpot",
  5385. "type": "github"
  5386. },
  5387. {
  5388. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5389. "type": "tidelift"
  5390. }
  5391. ],
  5392. "time": "2020-11-30T05:54:18+00:00"
  5393. },
  5394. {
  5395. "name": "symfony/mime",
  5396. "version": "v5.2.0",
  5397. "source": {
  5398. "type": "git",
  5399. "url": "https://github.com/symfony/mime.git",
  5400. "reference": "05f667e8fa029568964fd3bec6bc17765b853cc5"
  5401. },
  5402. "dist": {
  5403. "type": "zip",
  5404. "url": "https://api.github.com/repos/symfony/mime/zipball/05f667e8fa029568964fd3bec6bc17765b853cc5",
  5405. "reference": "05f667e8fa029568964fd3bec6bc17765b853cc5",
  5406. "shasum": "",
  5407. "mirrors": [
  5408. {
  5409. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5410. "preferred": true
  5411. }
  5412. ]
  5413. },
  5414. "require": {
  5415. "php": ">=7.2.5",
  5416. "symfony/deprecation-contracts": "^2.1",
  5417. "symfony/polyfill-intl-idn": "^1.10",
  5418. "symfony/polyfill-mbstring": "^1.0",
  5419. "symfony/polyfill-php80": "^1.15"
  5420. },
  5421. "conflict": {
  5422. "symfony/mailer": "<4.4"
  5423. },
  5424. "require-dev": {
  5425. "egulias/email-validator": "^2.1.10",
  5426. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5427. "symfony/dependency-injection": "^4.4|^5.0",
  5428. "symfony/property-access": "^4.4|^5.1",
  5429. "symfony/property-info": "^4.4|^5.1",
  5430. "symfony/serializer": "^5.2"
  5431. },
  5432. "type": "library",
  5433. "autoload": {
  5434. "psr-4": {
  5435. "Symfony\\Component\\Mime\\": ""
  5436. },
  5437. "exclude-from-classmap": [
  5438. "/Tests/"
  5439. ]
  5440. },
  5441. "notification-url": "https://packagist.org/downloads/",
  5442. "license": [
  5443. "MIT"
  5444. ],
  5445. "authors": [
  5446. {
  5447. "name": "Fabien Potencier",
  5448. "email": "fabien@symfony.com"
  5449. },
  5450. {
  5451. "name": "Symfony Community",
  5452. "homepage": "https://symfony.com/contributors"
  5453. }
  5454. ],
  5455. "description": "A library to manipulate MIME messages",
  5456. "homepage": "https://symfony.com",
  5457. "keywords": [
  5458. "mime",
  5459. "mime-type"
  5460. ],
  5461. "support": {
  5462. "source": "https://github.com/symfony/mime/tree/v5.2.0"
  5463. },
  5464. "funding": [
  5465. {
  5466. "url": "https://symfony.com/sponsor",
  5467. "type": "custom"
  5468. },
  5469. {
  5470. "url": "https://github.com/fabpot",
  5471. "type": "github"
  5472. },
  5473. {
  5474. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5475. "type": "tidelift"
  5476. }
  5477. ],
  5478. "time": "2020-10-30T14:55:39+00:00"
  5479. },
  5480. {
  5481. "name": "symfony/options-resolver",
  5482. "version": "v5.2.0",
  5483. "source": {
  5484. "type": "git",
  5485. "url": "https://github.com/symfony/options-resolver.git",
  5486. "reference": "87a2a4a766244e796dd9cb9d6f58c123358cd986"
  5487. },
  5488. "dist": {
  5489. "type": "zip",
  5490. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/87a2a4a766244e796dd9cb9d6f58c123358cd986",
  5491. "reference": "87a2a4a766244e796dd9cb9d6f58c123358cd986",
  5492. "shasum": "",
  5493. "mirrors": [
  5494. {
  5495. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5496. "preferred": true
  5497. }
  5498. ]
  5499. },
  5500. "require": {
  5501. "php": ">=7.2.5",
  5502. "symfony/deprecation-contracts": "^2.1",
  5503. "symfony/polyfill-php73": "~1.0",
  5504. "symfony/polyfill-php80": "^1.15"
  5505. },
  5506. "type": "library",
  5507. "autoload": {
  5508. "psr-4": {
  5509. "Symfony\\Component\\OptionsResolver\\": ""
  5510. },
  5511. "exclude-from-classmap": [
  5512. "/Tests/"
  5513. ]
  5514. },
  5515. "notification-url": "https://packagist.org/downloads/",
  5516. "license": [
  5517. "MIT"
  5518. ],
  5519. "authors": [
  5520. {
  5521. "name": "Fabien Potencier",
  5522. "email": "fabien@symfony.com"
  5523. },
  5524. {
  5525. "name": "Symfony Community",
  5526. "homepage": "https://symfony.com/contributors"
  5527. }
  5528. ],
  5529. "description": "Symfony OptionsResolver Component",
  5530. "homepage": "https://symfony.com",
  5531. "keywords": [
  5532. "config",
  5533. "configuration",
  5534. "options"
  5535. ],
  5536. "support": {
  5537. "source": "https://github.com/symfony/options-resolver/tree/v5.2.0"
  5538. },
  5539. "funding": [
  5540. {
  5541. "url": "https://symfony.com/sponsor",
  5542. "type": "custom"
  5543. },
  5544. {
  5545. "url": "https://github.com/fabpot",
  5546. "type": "github"
  5547. },
  5548. {
  5549. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5550. "type": "tidelift"
  5551. }
  5552. ],
  5553. "time": "2020-10-24T12:08:07+00:00"
  5554. },
  5555. {
  5556. "name": "symfony/polyfill-ctype",
  5557. "version": "v1.20.0",
  5558. "source": {
  5559. "type": "git",
  5560. "url": "https://github.com/symfony/polyfill-ctype.git",
  5561. "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41"
  5562. },
  5563. "dist": {
  5564. "type": "zip",
  5565. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/f4ba089a5b6366e453971d3aad5fe8e897b37f41",
  5566. "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41",
  5567. "shasum": "",
  5568. "mirrors": [
  5569. {
  5570. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5571. "preferred": true
  5572. }
  5573. ]
  5574. },
  5575. "require": {
  5576. "php": ">=7.1"
  5577. },
  5578. "suggest": {
  5579. "ext-ctype": "For best performance"
  5580. },
  5581. "type": "library",
  5582. "extra": {
  5583. "branch-alias": {
  5584. "dev-main": "1.20-dev"
  5585. },
  5586. "thanks": {
  5587. "name": "symfony/polyfill",
  5588. "url": "https://github.com/symfony/polyfill"
  5589. }
  5590. },
  5591. "autoload": {
  5592. "psr-4": {
  5593. "Symfony\\Polyfill\\Ctype\\": ""
  5594. },
  5595. "files": [
  5596. "bootstrap.php"
  5597. ]
  5598. },
  5599. "notification-url": "https://packagist.org/downloads/",
  5600. "license": [
  5601. "MIT"
  5602. ],
  5603. "authors": [
  5604. {
  5605. "name": "Gert de Pagter",
  5606. "email": "BackEndTea@gmail.com"
  5607. },
  5608. {
  5609. "name": "Symfony Community",
  5610. "homepage": "https://symfony.com/contributors"
  5611. }
  5612. ],
  5613. "description": "Symfony polyfill for ctype functions",
  5614. "homepage": "https://symfony.com",
  5615. "keywords": [
  5616. "compatibility",
  5617. "ctype",
  5618. "polyfill",
  5619. "portable"
  5620. ],
  5621. "support": {
  5622. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.20.0"
  5623. },
  5624. "funding": [
  5625. {
  5626. "url": "https://symfony.com/sponsor",
  5627. "type": "custom"
  5628. },
  5629. {
  5630. "url": "https://github.com/fabpot",
  5631. "type": "github"
  5632. },
  5633. {
  5634. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5635. "type": "tidelift"
  5636. }
  5637. ],
  5638. "time": "2020-10-23T14:02:19+00:00"
  5639. },
  5640. {
  5641. "name": "symfony/polyfill-iconv",
  5642. "version": "v1.20.0",
  5643. "source": {
  5644. "type": "git",
  5645. "url": "https://github.com/symfony/polyfill-iconv.git",
  5646. "reference": "c536646fdb4f29104dd26effc2fdcb9a5b085024"
  5647. },
  5648. "dist": {
  5649. "type": "zip",
  5650. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/c536646fdb4f29104dd26effc2fdcb9a5b085024",
  5651. "reference": "c536646fdb4f29104dd26effc2fdcb9a5b085024",
  5652. "shasum": "",
  5653. "mirrors": [
  5654. {
  5655. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5656. "preferred": true
  5657. }
  5658. ]
  5659. },
  5660. "require": {
  5661. "php": ">=7.1"
  5662. },
  5663. "suggest": {
  5664. "ext-iconv": "For best performance"
  5665. },
  5666. "type": "library",
  5667. "extra": {
  5668. "branch-alias": {
  5669. "dev-main": "1.20-dev"
  5670. },
  5671. "thanks": {
  5672. "name": "symfony/polyfill",
  5673. "url": "https://github.com/symfony/polyfill"
  5674. }
  5675. },
  5676. "autoload": {
  5677. "psr-4": {
  5678. "Symfony\\Polyfill\\Iconv\\": ""
  5679. },
  5680. "files": [
  5681. "bootstrap.php"
  5682. ]
  5683. },
  5684. "notification-url": "https://packagist.org/downloads/",
  5685. "license": [
  5686. "MIT"
  5687. ],
  5688. "authors": [
  5689. {
  5690. "name": "Nicolas Grekas",
  5691. "email": "p@tchwork.com"
  5692. },
  5693. {
  5694. "name": "Symfony Community",
  5695. "homepage": "https://symfony.com/contributors"
  5696. }
  5697. ],
  5698. "description": "Symfony polyfill for the Iconv extension",
  5699. "homepage": "https://symfony.com",
  5700. "keywords": [
  5701. "compatibility",
  5702. "iconv",
  5703. "polyfill",
  5704. "portable",
  5705. "shim"
  5706. ],
  5707. "support": {
  5708. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.20.0"
  5709. },
  5710. "funding": [
  5711. {
  5712. "url": "https://symfony.com/sponsor",
  5713. "type": "custom"
  5714. },
  5715. {
  5716. "url": "https://github.com/fabpot",
  5717. "type": "github"
  5718. },
  5719. {
  5720. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5721. "type": "tidelift"
  5722. }
  5723. ],
  5724. "time": "2020-10-23T14:02:19+00:00"
  5725. },
  5726. {
  5727. "name": "symfony/polyfill-intl-grapheme",
  5728. "version": "v1.20.0",
  5729. "source": {
  5730. "type": "git",
  5731. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5732. "reference": "c7cf3f858ec7d70b89559d6e6eb1f7c2517d479c"
  5733. },
  5734. "dist": {
  5735. "type": "zip",
  5736. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/c7cf3f858ec7d70b89559d6e6eb1f7c2517d479c",
  5737. "reference": "c7cf3f858ec7d70b89559d6e6eb1f7c2517d479c",
  5738. "shasum": "",
  5739. "mirrors": [
  5740. {
  5741. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5742. "preferred": true
  5743. }
  5744. ]
  5745. },
  5746. "require": {
  5747. "php": ">=7.1"
  5748. },
  5749. "suggest": {
  5750. "ext-intl": "For best performance"
  5751. },
  5752. "type": "library",
  5753. "extra": {
  5754. "branch-alias": {
  5755. "dev-main": "1.20-dev"
  5756. },
  5757. "thanks": {
  5758. "name": "symfony/polyfill",
  5759. "url": "https://github.com/symfony/polyfill"
  5760. }
  5761. },
  5762. "autoload": {
  5763. "psr-4": {
  5764. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5765. },
  5766. "files": [
  5767. "bootstrap.php"
  5768. ]
  5769. },
  5770. "notification-url": "https://packagist.org/downloads/",
  5771. "license": [
  5772. "MIT"
  5773. ],
  5774. "authors": [
  5775. {
  5776. "name": "Nicolas Grekas",
  5777. "email": "p@tchwork.com"
  5778. },
  5779. {
  5780. "name": "Symfony Community",
  5781. "homepage": "https://symfony.com/contributors"
  5782. }
  5783. ],
  5784. "description": "Symfony polyfill for intl's grapheme_* functions",
  5785. "homepage": "https://symfony.com",
  5786. "keywords": [
  5787. "compatibility",
  5788. "grapheme",
  5789. "intl",
  5790. "polyfill",
  5791. "portable",
  5792. "shim"
  5793. ],
  5794. "support": {
  5795. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.20.0"
  5796. },
  5797. "funding": [
  5798. {
  5799. "url": "https://symfony.com/sponsor",
  5800. "type": "custom"
  5801. },
  5802. {
  5803. "url": "https://github.com/fabpot",
  5804. "type": "github"
  5805. },
  5806. {
  5807. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5808. "type": "tidelift"
  5809. }
  5810. ],
  5811. "time": "2020-10-23T14:02:19+00:00"
  5812. },
  5813. {
  5814. "name": "symfony/polyfill-intl-idn",
  5815. "version": "v1.20.0",
  5816. "source": {
  5817. "type": "git",
  5818. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5819. "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117"
  5820. },
  5821. "dist": {
  5822. "type": "zip",
  5823. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/3b75acd829741c768bc8b1f84eb33265e7cc5117",
  5824. "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117",
  5825. "shasum": "",
  5826. "mirrors": [
  5827. {
  5828. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5829. "preferred": true
  5830. }
  5831. ]
  5832. },
  5833. "require": {
  5834. "php": ">=7.1",
  5835. "symfony/polyfill-intl-normalizer": "^1.10",
  5836. "symfony/polyfill-php72": "^1.10"
  5837. },
  5838. "suggest": {
  5839. "ext-intl": "For best performance"
  5840. },
  5841. "type": "library",
  5842. "extra": {
  5843. "branch-alias": {
  5844. "dev-main": "1.20-dev"
  5845. },
  5846. "thanks": {
  5847. "name": "symfony/polyfill",
  5848. "url": "https://github.com/symfony/polyfill"
  5849. }
  5850. },
  5851. "autoload": {
  5852. "psr-4": {
  5853. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5854. },
  5855. "files": [
  5856. "bootstrap.php"
  5857. ]
  5858. },
  5859. "notification-url": "https://packagist.org/downloads/",
  5860. "license": [
  5861. "MIT"
  5862. ],
  5863. "authors": [
  5864. {
  5865. "name": "Laurent Bassin",
  5866. "email": "laurent@bassin.info"
  5867. },
  5868. {
  5869. "name": "Trevor Rowbotham",
  5870. "email": "trevor.rowbotham@pm.me"
  5871. },
  5872. {
  5873. "name": "Symfony Community",
  5874. "homepage": "https://symfony.com/contributors"
  5875. }
  5876. ],
  5877. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5878. "homepage": "https://symfony.com",
  5879. "keywords": [
  5880. "compatibility",
  5881. "idn",
  5882. "intl",
  5883. "polyfill",
  5884. "portable",
  5885. "shim"
  5886. ],
  5887. "support": {
  5888. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.20.0"
  5889. },
  5890. "funding": [
  5891. {
  5892. "url": "https://symfony.com/sponsor",
  5893. "type": "custom"
  5894. },
  5895. {
  5896. "url": "https://github.com/fabpot",
  5897. "type": "github"
  5898. },
  5899. {
  5900. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5901. "type": "tidelift"
  5902. }
  5903. ],
  5904. "time": "2020-10-23T14:02:19+00:00"
  5905. },
  5906. {
  5907. "name": "symfony/polyfill-intl-normalizer",
  5908. "version": "v1.20.0",
  5909. "source": {
  5910. "type": "git",
  5911. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5912. "reference": "727d1096295d807c309fb01a851577302394c897"
  5913. },
  5914. "dist": {
  5915. "type": "zip",
  5916. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/727d1096295d807c309fb01a851577302394c897",
  5917. "reference": "727d1096295d807c309fb01a851577302394c897",
  5918. "shasum": "",
  5919. "mirrors": [
  5920. {
  5921. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5922. "preferred": true
  5923. }
  5924. ]
  5925. },
  5926. "require": {
  5927. "php": ">=7.1"
  5928. },
  5929. "suggest": {
  5930. "ext-intl": "For best performance"
  5931. },
  5932. "type": "library",
  5933. "extra": {
  5934. "branch-alias": {
  5935. "dev-main": "1.20-dev"
  5936. },
  5937. "thanks": {
  5938. "name": "symfony/polyfill",
  5939. "url": "https://github.com/symfony/polyfill"
  5940. }
  5941. },
  5942. "autoload": {
  5943. "psr-4": {
  5944. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5945. },
  5946. "files": [
  5947. "bootstrap.php"
  5948. ],
  5949. "classmap": [
  5950. "Resources/stubs"
  5951. ]
  5952. },
  5953. "notification-url": "https://packagist.org/downloads/",
  5954. "license": [
  5955. "MIT"
  5956. ],
  5957. "authors": [
  5958. {
  5959. "name": "Nicolas Grekas",
  5960. "email": "p@tchwork.com"
  5961. },
  5962. {
  5963. "name": "Symfony Community",
  5964. "homepage": "https://symfony.com/contributors"
  5965. }
  5966. ],
  5967. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5968. "homepage": "https://symfony.com",
  5969. "keywords": [
  5970. "compatibility",
  5971. "intl",
  5972. "normalizer",
  5973. "polyfill",
  5974. "portable",
  5975. "shim"
  5976. ],
  5977. "support": {
  5978. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.20.0"
  5979. },
  5980. "funding": [
  5981. {
  5982. "url": "https://symfony.com/sponsor",
  5983. "type": "custom"
  5984. },
  5985. {
  5986. "url": "https://github.com/fabpot",
  5987. "type": "github"
  5988. },
  5989. {
  5990. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5991. "type": "tidelift"
  5992. }
  5993. ],
  5994. "time": "2020-10-23T14:02:19+00:00"
  5995. },
  5996. {
  5997. "name": "symfony/polyfill-mbstring",
  5998. "version": "v1.20.0",
  5999. "source": {
  6000. "type": "git",
  6001. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6002. "reference": "39d483bdf39be819deabf04ec872eb0b2410b531"
  6003. },
  6004. "dist": {
  6005. "type": "zip",
  6006. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/39d483bdf39be819deabf04ec872eb0b2410b531",
  6007. "reference": "39d483bdf39be819deabf04ec872eb0b2410b531",
  6008. "shasum": "",
  6009. "mirrors": [
  6010. {
  6011. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6012. "preferred": true
  6013. }
  6014. ]
  6015. },
  6016. "require": {
  6017. "php": ">=7.1"
  6018. },
  6019. "suggest": {
  6020. "ext-mbstring": "For best performance"
  6021. },
  6022. "type": "library",
  6023. "extra": {
  6024. "branch-alias": {
  6025. "dev-main": "1.20-dev"
  6026. },
  6027. "thanks": {
  6028. "name": "symfony/polyfill",
  6029. "url": "https://github.com/symfony/polyfill"
  6030. }
  6031. },
  6032. "autoload": {
  6033. "psr-4": {
  6034. "Symfony\\Polyfill\\Mbstring\\": ""
  6035. },
  6036. "files": [
  6037. "bootstrap.php"
  6038. ]
  6039. },
  6040. "notification-url": "https://packagist.org/downloads/",
  6041. "license": [
  6042. "MIT"
  6043. ],
  6044. "authors": [
  6045. {
  6046. "name": "Nicolas Grekas",
  6047. "email": "p@tchwork.com"
  6048. },
  6049. {
  6050. "name": "Symfony Community",
  6051. "homepage": "https://symfony.com/contributors"
  6052. }
  6053. ],
  6054. "description": "Symfony polyfill for the Mbstring extension",
  6055. "homepage": "https://symfony.com",
  6056. "keywords": [
  6057. "compatibility",
  6058. "mbstring",
  6059. "polyfill",
  6060. "portable",
  6061. "shim"
  6062. ],
  6063. "support": {
  6064. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.20.0"
  6065. },
  6066. "funding": [
  6067. {
  6068. "url": "https://symfony.com/sponsor",
  6069. "type": "custom"
  6070. },
  6071. {
  6072. "url": "https://github.com/fabpot",
  6073. "type": "github"
  6074. },
  6075. {
  6076. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6077. "type": "tidelift"
  6078. }
  6079. ],
  6080. "time": "2020-10-23T14:02:19+00:00"
  6081. },
  6082. {
  6083. "name": "symfony/polyfill-php72",
  6084. "version": "v1.20.0",
  6085. "source": {
  6086. "type": "git",
  6087. "url": "https://github.com/symfony/polyfill-php72.git",
  6088. "reference": "cede45fcdfabdd6043b3592e83678e42ec69e930"
  6089. },
  6090. "dist": {
  6091. "type": "zip",
  6092. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/cede45fcdfabdd6043b3592e83678e42ec69e930",
  6093. "reference": "cede45fcdfabdd6043b3592e83678e42ec69e930",
  6094. "shasum": "",
  6095. "mirrors": [
  6096. {
  6097. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6098. "preferred": true
  6099. }
  6100. ]
  6101. },
  6102. "require": {
  6103. "php": ">=7.1"
  6104. },
  6105. "type": "library",
  6106. "extra": {
  6107. "branch-alias": {
  6108. "dev-main": "1.20-dev"
  6109. },
  6110. "thanks": {
  6111. "name": "symfony/polyfill",
  6112. "url": "https://github.com/symfony/polyfill"
  6113. }
  6114. },
  6115. "autoload": {
  6116. "psr-4": {
  6117. "Symfony\\Polyfill\\Php72\\": ""
  6118. },
  6119. "files": [
  6120. "bootstrap.php"
  6121. ]
  6122. },
  6123. "notification-url": "https://packagist.org/downloads/",
  6124. "license": [
  6125. "MIT"
  6126. ],
  6127. "authors": [
  6128. {
  6129. "name": "Nicolas Grekas",
  6130. "email": "p@tchwork.com"
  6131. },
  6132. {
  6133. "name": "Symfony Community",
  6134. "homepage": "https://symfony.com/contributors"
  6135. }
  6136. ],
  6137. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  6138. "homepage": "https://symfony.com",
  6139. "keywords": [
  6140. "compatibility",
  6141. "polyfill",
  6142. "portable",
  6143. "shim"
  6144. ],
  6145. "support": {
  6146. "source": "https://github.com/symfony/polyfill-php72/tree/v1.20.0"
  6147. },
  6148. "funding": [
  6149. {
  6150. "url": "https://symfony.com/sponsor",
  6151. "type": "custom"
  6152. },
  6153. {
  6154. "url": "https://github.com/fabpot",
  6155. "type": "github"
  6156. },
  6157. {
  6158. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6159. "type": "tidelift"
  6160. }
  6161. ],
  6162. "time": "2020-10-23T14:02:19+00:00"
  6163. },
  6164. {
  6165. "name": "symfony/polyfill-php73",
  6166. "version": "v1.20.0",
  6167. "source": {
  6168. "type": "git",
  6169. "url": "https://github.com/symfony/polyfill-php73.git",
  6170. "reference": "8ff431c517be11c78c48a39a66d37431e26a6bed"
  6171. },
  6172. "dist": {
  6173. "type": "zip",
  6174. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/8ff431c517be11c78c48a39a66d37431e26a6bed",
  6175. "reference": "8ff431c517be11c78c48a39a66d37431e26a6bed",
  6176. "shasum": "",
  6177. "mirrors": [
  6178. {
  6179. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6180. "preferred": true
  6181. }
  6182. ]
  6183. },
  6184. "require": {
  6185. "php": ">=7.1"
  6186. },
  6187. "type": "library",
  6188. "extra": {
  6189. "branch-alias": {
  6190. "dev-main": "1.20-dev"
  6191. },
  6192. "thanks": {
  6193. "name": "symfony/polyfill",
  6194. "url": "https://github.com/symfony/polyfill"
  6195. }
  6196. },
  6197. "autoload": {
  6198. "psr-4": {
  6199. "Symfony\\Polyfill\\Php73\\": ""
  6200. },
  6201. "files": [
  6202. "bootstrap.php"
  6203. ],
  6204. "classmap": [
  6205. "Resources/stubs"
  6206. ]
  6207. },
  6208. "notification-url": "https://packagist.org/downloads/",
  6209. "license": [
  6210. "MIT"
  6211. ],
  6212. "authors": [
  6213. {
  6214. "name": "Nicolas Grekas",
  6215. "email": "p@tchwork.com"
  6216. },
  6217. {
  6218. "name": "Symfony Community",
  6219. "homepage": "https://symfony.com/contributors"
  6220. }
  6221. ],
  6222. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  6223. "homepage": "https://symfony.com",
  6224. "keywords": [
  6225. "compatibility",
  6226. "polyfill",
  6227. "portable",
  6228. "shim"
  6229. ],
  6230. "support": {
  6231. "source": "https://github.com/symfony/polyfill-php73/tree/v1.20.0"
  6232. },
  6233. "funding": [
  6234. {
  6235. "url": "https://symfony.com/sponsor",
  6236. "type": "custom"
  6237. },
  6238. {
  6239. "url": "https://github.com/fabpot",
  6240. "type": "github"
  6241. },
  6242. {
  6243. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6244. "type": "tidelift"
  6245. }
  6246. ],
  6247. "time": "2020-10-23T14:02:19+00:00"
  6248. },
  6249. {
  6250. "name": "symfony/polyfill-php80",
  6251. "version": "v1.20.0",
  6252. "source": {
  6253. "type": "git",
  6254. "url": "https://github.com/symfony/polyfill-php80.git",
  6255. "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de"
  6256. },
  6257. "dist": {
  6258. "type": "zip",
  6259. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/e70aa8b064c5b72d3df2abd5ab1e90464ad009de",
  6260. "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de",
  6261. "shasum": "",
  6262. "mirrors": [
  6263. {
  6264. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6265. "preferred": true
  6266. }
  6267. ]
  6268. },
  6269. "require": {
  6270. "php": ">=7.1"
  6271. },
  6272. "type": "library",
  6273. "extra": {
  6274. "branch-alias": {
  6275. "dev-main": "1.20-dev"
  6276. },
  6277. "thanks": {
  6278. "name": "symfony/polyfill",
  6279. "url": "https://github.com/symfony/polyfill"
  6280. }
  6281. },
  6282. "autoload": {
  6283. "psr-4": {
  6284. "Symfony\\Polyfill\\Php80\\": ""
  6285. },
  6286. "files": [
  6287. "bootstrap.php"
  6288. ],
  6289. "classmap": [
  6290. "Resources/stubs"
  6291. ]
  6292. },
  6293. "notification-url": "https://packagist.org/downloads/",
  6294. "license": [
  6295. "MIT"
  6296. ],
  6297. "authors": [
  6298. {
  6299. "name": "Ion Bazan",
  6300. "email": "ion.bazan@gmail.com"
  6301. },
  6302. {
  6303. "name": "Nicolas Grekas",
  6304. "email": "p@tchwork.com"
  6305. },
  6306. {
  6307. "name": "Symfony Community",
  6308. "homepage": "https://symfony.com/contributors"
  6309. }
  6310. ],
  6311. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6312. "homepage": "https://symfony.com",
  6313. "keywords": [
  6314. "compatibility",
  6315. "polyfill",
  6316. "portable",
  6317. "shim"
  6318. ],
  6319. "support": {
  6320. "source": "https://github.com/symfony/polyfill-php80/tree/v1.20.0"
  6321. },
  6322. "funding": [
  6323. {
  6324. "url": "https://symfony.com/sponsor",
  6325. "type": "custom"
  6326. },
  6327. {
  6328. "url": "https://github.com/fabpot",
  6329. "type": "github"
  6330. },
  6331. {
  6332. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6333. "type": "tidelift"
  6334. }
  6335. ],
  6336. "time": "2020-10-23T14:02:19+00:00"
  6337. },
  6338. {
  6339. "name": "symfony/process",
  6340. "version": "v5.2.0",
  6341. "source": {
  6342. "type": "git",
  6343. "url": "https://github.com/symfony/process.git",
  6344. "reference": "240e74140d4d956265048f3025c0aecbbc302d54"
  6345. },
  6346. "dist": {
  6347. "type": "zip",
  6348. "url": "https://api.github.com/repos/symfony/process/zipball/240e74140d4d956265048f3025c0aecbbc302d54",
  6349. "reference": "240e74140d4d956265048f3025c0aecbbc302d54",
  6350. "shasum": "",
  6351. "mirrors": [
  6352. {
  6353. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6354. "preferred": true
  6355. }
  6356. ]
  6357. },
  6358. "require": {
  6359. "php": ">=7.2.5",
  6360. "symfony/polyfill-php80": "^1.15"
  6361. },
  6362. "type": "library",
  6363. "autoload": {
  6364. "psr-4": {
  6365. "Symfony\\Component\\Process\\": ""
  6366. },
  6367. "exclude-from-classmap": [
  6368. "/Tests/"
  6369. ]
  6370. },
  6371. "notification-url": "https://packagist.org/downloads/",
  6372. "license": [
  6373. "MIT"
  6374. ],
  6375. "authors": [
  6376. {
  6377. "name": "Fabien Potencier",
  6378. "email": "fabien@symfony.com"
  6379. },
  6380. {
  6381. "name": "Symfony Community",
  6382. "homepage": "https://symfony.com/contributors"
  6383. }
  6384. ],
  6385. "description": "Symfony Process Component",
  6386. "homepage": "https://symfony.com",
  6387. "support": {
  6388. "source": "https://github.com/symfony/process/tree/v5.2.0"
  6389. },
  6390. "funding": [
  6391. {
  6392. "url": "https://symfony.com/sponsor",
  6393. "type": "custom"
  6394. },
  6395. {
  6396. "url": "https://github.com/fabpot",
  6397. "type": "github"
  6398. },
  6399. {
  6400. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6401. "type": "tidelift"
  6402. }
  6403. ],
  6404. "time": "2020-11-02T15:47:15+00:00"
  6405. },
  6406. {
  6407. "name": "symfony/property-access",
  6408. "version": "v5.2.0",
  6409. "source": {
  6410. "type": "git",
  6411. "url": "https://github.com/symfony/property-access.git",
  6412. "reference": "5cf86761edaf58376845a96ea6c0d28d475d5ad3"
  6413. },
  6414. "dist": {
  6415. "type": "zip",
  6416. "url": "https://api.github.com/repos/symfony/property-access/zipball/5cf86761edaf58376845a96ea6c0d28d475d5ad3",
  6417. "reference": "5cf86761edaf58376845a96ea6c0d28d475d5ad3",
  6418. "shasum": "",
  6419. "mirrors": [
  6420. {
  6421. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6422. "preferred": true
  6423. }
  6424. ]
  6425. },
  6426. "require": {
  6427. "php": ">=7.2.5",
  6428. "symfony/deprecation-contracts": "^2.1",
  6429. "symfony/polyfill-php80": "^1.15",
  6430. "symfony/property-info": "^5.2"
  6431. },
  6432. "require-dev": {
  6433. "symfony/cache": "^4.4|^5.0"
  6434. },
  6435. "suggest": {
  6436. "psr/cache-implementation": "To cache access methods."
  6437. },
  6438. "type": "library",
  6439. "autoload": {
  6440. "psr-4": {
  6441. "Symfony\\Component\\PropertyAccess\\": ""
  6442. },
  6443. "exclude-from-classmap": [
  6444. "/Tests/"
  6445. ]
  6446. },
  6447. "notification-url": "https://packagist.org/downloads/",
  6448. "license": [
  6449. "MIT"
  6450. ],
  6451. "authors": [
  6452. {
  6453. "name": "Fabien Potencier",
  6454. "email": "fabien@symfony.com"
  6455. },
  6456. {
  6457. "name": "Symfony Community",
  6458. "homepage": "https://symfony.com/contributors"
  6459. }
  6460. ],
  6461. "description": "Symfony PropertyAccess Component",
  6462. "homepage": "https://symfony.com",
  6463. "keywords": [
  6464. "access",
  6465. "array",
  6466. "extraction",
  6467. "index",
  6468. "injection",
  6469. "object",
  6470. "property",
  6471. "property path",
  6472. "reflection"
  6473. ],
  6474. "support": {
  6475. "source": "https://github.com/symfony/property-access/tree/v5.2.0"
  6476. },
  6477. "funding": [
  6478. {
  6479. "url": "https://symfony.com/sponsor",
  6480. "type": "custom"
  6481. },
  6482. {
  6483. "url": "https://github.com/fabpot",
  6484. "type": "github"
  6485. },
  6486. {
  6487. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6488. "type": "tidelift"
  6489. }
  6490. ],
  6491. "time": "2020-11-01T16:14:45+00:00"
  6492. },
  6493. {
  6494. "name": "symfony/property-info",
  6495. "version": "v5.2.0",
  6496. "source": {
  6497. "type": "git",
  6498. "url": "https://github.com/symfony/property-info.git",
  6499. "reference": "69ca096d096a0a58457818a5a2d1ce51f5f14909"
  6500. },
  6501. "dist": {
  6502. "type": "zip",
  6503. "url": "https://api.github.com/repos/symfony/property-info/zipball/69ca096d096a0a58457818a5a2d1ce51f5f14909",
  6504. "reference": "69ca096d096a0a58457818a5a2d1ce51f5f14909",
  6505. "shasum": "",
  6506. "mirrors": [
  6507. {
  6508. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6509. "preferred": true
  6510. }
  6511. ]
  6512. },
  6513. "require": {
  6514. "php": ">=7.2.5",
  6515. "symfony/deprecation-contracts": "^2.1",
  6516. "symfony/polyfill-php80": "^1.15",
  6517. "symfony/string": "^5.1"
  6518. },
  6519. "conflict": {
  6520. "phpdocumentor/reflection-docblock": "<3.2.2",
  6521. "phpdocumentor/type-resolver": "<0.3.0",
  6522. "symfony/dependency-injection": "<4.4"
  6523. },
  6524. "require-dev": {
  6525. "doctrine/annotations": "~1.7",
  6526. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6527. "symfony/cache": "^4.4|^5.0",
  6528. "symfony/dependency-injection": "^4.4|^5.0",
  6529. "symfony/serializer": "^4.4|^5.0"
  6530. },
  6531. "suggest": {
  6532. "phpdocumentor/reflection-docblock": "To use the PHPDoc",
  6533. "psr/cache-implementation": "To cache results",
  6534. "symfony/doctrine-bridge": "To use Doctrine metadata",
  6535. "symfony/serializer": "To use Serializer metadata"
  6536. },
  6537. "type": "library",
  6538. "autoload": {
  6539. "psr-4": {
  6540. "Symfony\\Component\\PropertyInfo\\": ""
  6541. },
  6542. "exclude-from-classmap": [
  6543. "/Tests/"
  6544. ]
  6545. },
  6546. "notification-url": "https://packagist.org/downloads/",
  6547. "license": [
  6548. "MIT"
  6549. ],
  6550. "authors": [
  6551. {
  6552. "name": "Kévin Dunglas",
  6553. "email": "dunglas@gmail.com"
  6554. },
  6555. {
  6556. "name": "Symfony Community",
  6557. "homepage": "https://symfony.com/contributors"
  6558. }
  6559. ],
  6560. "description": "Symfony Property Info Component",
  6561. "homepage": "https://symfony.com",
  6562. "keywords": [
  6563. "doctrine",
  6564. "phpdoc",
  6565. "property",
  6566. "symfony",
  6567. "type",
  6568. "validator"
  6569. ],
  6570. "support": {
  6571. "source": "https://github.com/symfony/property-info/tree/v5.2.0"
  6572. },
  6573. "funding": [
  6574. {
  6575. "url": "https://symfony.com/sponsor",
  6576. "type": "custom"
  6577. },
  6578. {
  6579. "url": "https://github.com/fabpot",
  6580. "type": "github"
  6581. },
  6582. {
  6583. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6584. "type": "tidelift"
  6585. }
  6586. ],
  6587. "time": "2020-10-28T21:46:03+00:00"
  6588. },
  6589. {
  6590. "name": "symfony/routing",
  6591. "version": "v5.2.0",
  6592. "source": {
  6593. "type": "git",
  6594. "url": "https://github.com/symfony/routing.git",
  6595. "reference": "130ac5175ad2fd417978baebd8062e2e6b2bc28b"
  6596. },
  6597. "dist": {
  6598. "type": "zip",
  6599. "url": "https://api.github.com/repos/symfony/routing/zipball/130ac5175ad2fd417978baebd8062e2e6b2bc28b",
  6600. "reference": "130ac5175ad2fd417978baebd8062e2e6b2bc28b",
  6601. "shasum": "",
  6602. "mirrors": [
  6603. {
  6604. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6605. "preferred": true
  6606. }
  6607. ]
  6608. },
  6609. "require": {
  6610. "php": ">=7.2.5",
  6611. "symfony/deprecation-contracts": "^2.1",
  6612. "symfony/polyfill-php80": "^1.15"
  6613. },
  6614. "conflict": {
  6615. "symfony/config": "<5.0",
  6616. "symfony/dependency-injection": "<4.4",
  6617. "symfony/yaml": "<4.4"
  6618. },
  6619. "require-dev": {
  6620. "doctrine/annotations": "^1.7",
  6621. "psr/log": "~1.0",
  6622. "symfony/config": "^5.0",
  6623. "symfony/dependency-injection": "^4.4|^5.0",
  6624. "symfony/expression-language": "^4.4|^5.0",
  6625. "symfony/http-foundation": "^4.4|^5.0",
  6626. "symfony/yaml": "^4.4|^5.0"
  6627. },
  6628. "suggest": {
  6629. "doctrine/annotations": "For using the annotation loader",
  6630. "symfony/config": "For using the all-in-one router or any loader",
  6631. "symfony/expression-language": "For using expression matching",
  6632. "symfony/http-foundation": "For using a Symfony Request object",
  6633. "symfony/yaml": "For using the YAML loader"
  6634. },
  6635. "type": "library",
  6636. "autoload": {
  6637. "psr-4": {
  6638. "Symfony\\Component\\Routing\\": ""
  6639. },
  6640. "exclude-from-classmap": [
  6641. "/Tests/"
  6642. ]
  6643. },
  6644. "notification-url": "https://packagist.org/downloads/",
  6645. "license": [
  6646. "MIT"
  6647. ],
  6648. "authors": [
  6649. {
  6650. "name": "Fabien Potencier",
  6651. "email": "fabien@symfony.com"
  6652. },
  6653. {
  6654. "name": "Symfony Community",
  6655. "homepage": "https://symfony.com/contributors"
  6656. }
  6657. ],
  6658. "description": "Symfony Routing Component",
  6659. "homepage": "https://symfony.com",
  6660. "keywords": [
  6661. "router",
  6662. "routing",
  6663. "uri",
  6664. "url"
  6665. ],
  6666. "support": {
  6667. "source": "https://github.com/symfony/routing/tree/v5.2.0"
  6668. },
  6669. "funding": [
  6670. {
  6671. "url": "https://symfony.com/sponsor",
  6672. "type": "custom"
  6673. },
  6674. {
  6675. "url": "https://github.com/fabpot",
  6676. "type": "github"
  6677. },
  6678. {
  6679. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6680. "type": "tidelift"
  6681. }
  6682. ],
  6683. "time": "2020-11-27T00:39:34+00:00"
  6684. },
  6685. {
  6686. "name": "symfony/service-contracts",
  6687. "version": "v2.2.0",
  6688. "source": {
  6689. "type": "git",
  6690. "url": "https://github.com/symfony/service-contracts.git",
  6691. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1"
  6692. },
  6693. "dist": {
  6694. "type": "zip",
  6695. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  6696. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  6697. "shasum": "",
  6698. "mirrors": [
  6699. {
  6700. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6701. "preferred": true
  6702. }
  6703. ]
  6704. },
  6705. "require": {
  6706. "php": ">=7.2.5",
  6707. "psr/container": "^1.0"
  6708. },
  6709. "suggest": {
  6710. "symfony/service-implementation": ""
  6711. },
  6712. "type": "library",
  6713. "extra": {
  6714. "branch-alias": {
  6715. "dev-master": "2.2-dev"
  6716. },
  6717. "thanks": {
  6718. "name": "symfony/contracts",
  6719. "url": "https://github.com/symfony/contracts"
  6720. }
  6721. },
  6722. "autoload": {
  6723. "psr-4": {
  6724. "Symfony\\Contracts\\Service\\": ""
  6725. }
  6726. },
  6727. "notification-url": "https://packagist.org/downloads/",
  6728. "license": [
  6729. "MIT"
  6730. ],
  6731. "authors": [
  6732. {
  6733. "name": "Nicolas Grekas",
  6734. "email": "p@tchwork.com"
  6735. },
  6736. {
  6737. "name": "Symfony Community",
  6738. "homepage": "https://symfony.com/contributors"
  6739. }
  6740. ],
  6741. "description": "Generic abstractions related to writing services",
  6742. "homepage": "https://symfony.com",
  6743. "keywords": [
  6744. "abstractions",
  6745. "contracts",
  6746. "decoupling",
  6747. "interfaces",
  6748. "interoperability",
  6749. "standards"
  6750. ],
  6751. "support": {
  6752. "source": "https://github.com/symfony/service-contracts/tree/master"
  6753. },
  6754. "funding": [
  6755. {
  6756. "url": "https://symfony.com/sponsor",
  6757. "type": "custom"
  6758. },
  6759. {
  6760. "url": "https://github.com/fabpot",
  6761. "type": "github"
  6762. },
  6763. {
  6764. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6765. "type": "tidelift"
  6766. }
  6767. ],
  6768. "time": "2020-09-07T11:33:47+00:00"
  6769. },
  6770. {
  6771. "name": "symfony/string",
  6772. "version": "v5.2.0",
  6773. "source": {
  6774. "type": "git",
  6775. "url": "https://github.com/symfony/string.git",
  6776. "reference": "40e975edadd4e32cd16f3753b3bad65d9ac48242"
  6777. },
  6778. "dist": {
  6779. "type": "zip",
  6780. "url": "https://api.github.com/repos/symfony/string/zipball/40e975edadd4e32cd16f3753b3bad65d9ac48242",
  6781. "reference": "40e975edadd4e32cd16f3753b3bad65d9ac48242",
  6782. "shasum": "",
  6783. "mirrors": [
  6784. {
  6785. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6786. "preferred": true
  6787. }
  6788. ]
  6789. },
  6790. "require": {
  6791. "php": ">=7.2.5",
  6792. "symfony/polyfill-ctype": "~1.8",
  6793. "symfony/polyfill-intl-grapheme": "~1.0",
  6794. "symfony/polyfill-intl-normalizer": "~1.0",
  6795. "symfony/polyfill-mbstring": "~1.0",
  6796. "symfony/polyfill-php80": "~1.15"
  6797. },
  6798. "require-dev": {
  6799. "symfony/error-handler": "^4.4|^5.0",
  6800. "symfony/http-client": "^4.4|^5.0",
  6801. "symfony/translation-contracts": "^1.1|^2",
  6802. "symfony/var-exporter": "^4.4|^5.0"
  6803. },
  6804. "type": "library",
  6805. "autoload": {
  6806. "psr-4": {
  6807. "Symfony\\Component\\String\\": ""
  6808. },
  6809. "files": [
  6810. "Resources/functions.php"
  6811. ],
  6812. "exclude-from-classmap": [
  6813. "/Tests/"
  6814. ]
  6815. },
  6816. "notification-url": "https://packagist.org/downloads/",
  6817. "license": [
  6818. "MIT"
  6819. ],
  6820. "authors": [
  6821. {
  6822. "name": "Nicolas Grekas",
  6823. "email": "p@tchwork.com"
  6824. },
  6825. {
  6826. "name": "Symfony Community",
  6827. "homepage": "https://symfony.com/contributors"
  6828. }
  6829. ],
  6830. "description": "Symfony String component",
  6831. "homepage": "https://symfony.com",
  6832. "keywords": [
  6833. "grapheme",
  6834. "i18n",
  6835. "string",
  6836. "unicode",
  6837. "utf-8",
  6838. "utf8"
  6839. ],
  6840. "support": {
  6841. "source": "https://github.com/symfony/string/tree/v5.2.0"
  6842. },
  6843. "funding": [
  6844. {
  6845. "url": "https://symfony.com/sponsor",
  6846. "type": "custom"
  6847. },
  6848. {
  6849. "url": "https://github.com/fabpot",
  6850. "type": "github"
  6851. },
  6852. {
  6853. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6854. "type": "tidelift"
  6855. }
  6856. ],
  6857. "time": "2020-10-24T12:08:07+00:00"
  6858. },
  6859. {
  6860. "name": "symfony/translation",
  6861. "version": "v5.2.0",
  6862. "source": {
  6863. "type": "git",
  6864. "url": "https://github.com/symfony/translation.git",
  6865. "reference": "52f486a707510884450df461b5a6429dd7a67379"
  6866. },
  6867. "dist": {
  6868. "type": "zip",
  6869. "url": "https://api.github.com/repos/symfony/translation/zipball/52f486a707510884450df461b5a6429dd7a67379",
  6870. "reference": "52f486a707510884450df461b5a6429dd7a67379",
  6871. "shasum": "",
  6872. "mirrors": [
  6873. {
  6874. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6875. "preferred": true
  6876. }
  6877. ]
  6878. },
  6879. "require": {
  6880. "php": ">=7.2.5",
  6881. "symfony/polyfill-mbstring": "~1.0",
  6882. "symfony/polyfill-php80": "^1.15",
  6883. "symfony/translation-contracts": "^2.3"
  6884. },
  6885. "conflict": {
  6886. "symfony/config": "<4.4",
  6887. "symfony/dependency-injection": "<5.0",
  6888. "symfony/http-kernel": "<5.0",
  6889. "symfony/twig-bundle": "<5.0",
  6890. "symfony/yaml": "<4.4"
  6891. },
  6892. "provide": {
  6893. "symfony/translation-implementation": "2.0"
  6894. },
  6895. "require-dev": {
  6896. "psr/log": "~1.0",
  6897. "symfony/config": "^4.4|^5.0",
  6898. "symfony/console": "^4.4|^5.0",
  6899. "symfony/dependency-injection": "^5.0",
  6900. "symfony/finder": "^4.4|^5.0",
  6901. "symfony/http-kernel": "^5.0",
  6902. "symfony/intl": "^4.4|^5.0",
  6903. "symfony/service-contracts": "^1.1.2|^2",
  6904. "symfony/yaml": "^4.4|^5.0"
  6905. },
  6906. "suggest": {
  6907. "psr/log-implementation": "To use logging capability in translator",
  6908. "symfony/config": "",
  6909. "symfony/yaml": ""
  6910. },
  6911. "type": "library",
  6912. "autoload": {
  6913. "files": [
  6914. "Resources/functions.php"
  6915. ],
  6916. "psr-4": {
  6917. "Symfony\\Component\\Translation\\": ""
  6918. },
  6919. "exclude-from-classmap": [
  6920. "/Tests/"
  6921. ]
  6922. },
  6923. "notification-url": "https://packagist.org/downloads/",
  6924. "license": [
  6925. "MIT"
  6926. ],
  6927. "authors": [
  6928. {
  6929. "name": "Fabien Potencier",
  6930. "email": "fabien@symfony.com"
  6931. },
  6932. {
  6933. "name": "Symfony Community",
  6934. "homepage": "https://symfony.com/contributors"
  6935. }
  6936. ],
  6937. "description": "Symfony Translation Component",
  6938. "homepage": "https://symfony.com",
  6939. "support": {
  6940. "source": "https://github.com/symfony/translation/tree/v5.2.0"
  6941. },
  6942. "funding": [
  6943. {
  6944. "url": "https://symfony.com/sponsor",
  6945. "type": "custom"
  6946. },
  6947. {
  6948. "url": "https://github.com/fabpot",
  6949. "type": "github"
  6950. },
  6951. {
  6952. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6953. "type": "tidelift"
  6954. }
  6955. ],
  6956. "time": "2020-11-28T11:24:18+00:00"
  6957. },
  6958. {
  6959. "name": "symfony/translation-contracts",
  6960. "version": "v2.3.0",
  6961. "source": {
  6962. "type": "git",
  6963. "url": "https://github.com/symfony/translation-contracts.git",
  6964. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105"
  6965. },
  6966. "dist": {
  6967. "type": "zip",
  6968. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  6969. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  6970. "shasum": "",
  6971. "mirrors": [
  6972. {
  6973. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6974. "preferred": true
  6975. }
  6976. ]
  6977. },
  6978. "require": {
  6979. "php": ">=7.2.5"
  6980. },
  6981. "suggest": {
  6982. "symfony/translation-implementation": ""
  6983. },
  6984. "type": "library",
  6985. "extra": {
  6986. "branch-alias": {
  6987. "dev-master": "2.3-dev"
  6988. },
  6989. "thanks": {
  6990. "name": "symfony/contracts",
  6991. "url": "https://github.com/symfony/contracts"
  6992. }
  6993. },
  6994. "autoload": {
  6995. "psr-4": {
  6996. "Symfony\\Contracts\\Translation\\": ""
  6997. }
  6998. },
  6999. "notification-url": "https://packagist.org/downloads/",
  7000. "license": [
  7001. "MIT"
  7002. ],
  7003. "authors": [
  7004. {
  7005. "name": "Nicolas Grekas",
  7006. "email": "p@tchwork.com"
  7007. },
  7008. {
  7009. "name": "Symfony Community",
  7010. "homepage": "https://symfony.com/contributors"
  7011. }
  7012. ],
  7013. "description": "Generic abstractions related to translation",
  7014. "homepage": "https://symfony.com",
  7015. "keywords": [
  7016. "abstractions",
  7017. "contracts",
  7018. "decoupling",
  7019. "interfaces",
  7020. "interoperability",
  7021. "standards"
  7022. ],
  7023. "support": {
  7024. "source": "https://github.com/symfony/translation-contracts/tree/v2.3.0"
  7025. },
  7026. "funding": [
  7027. {
  7028. "url": "https://symfony.com/sponsor",
  7029. "type": "custom"
  7030. },
  7031. {
  7032. "url": "https://github.com/fabpot",
  7033. "type": "github"
  7034. },
  7035. {
  7036. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7037. "type": "tidelift"
  7038. }
  7039. ],
  7040. "time": "2020-09-28T13:05:58+00:00"
  7041. },
  7042. {
  7043. "name": "symfony/var-dumper",
  7044. "version": "v5.2.0",
  7045. "source": {
  7046. "type": "git",
  7047. "url": "https://github.com/symfony/var-dumper.git",
  7048. "reference": "173a79c462b1c81e1fa26129f71e41333d846b26"
  7049. },
  7050. "dist": {
  7051. "type": "zip",
  7052. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/173a79c462b1c81e1fa26129f71e41333d846b26",
  7053. "reference": "173a79c462b1c81e1fa26129f71e41333d846b26",
  7054. "shasum": "",
  7055. "mirrors": [
  7056. {
  7057. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7058. "preferred": true
  7059. }
  7060. ]
  7061. },
  7062. "require": {
  7063. "php": ">=7.2.5",
  7064. "symfony/polyfill-mbstring": "~1.0",
  7065. "symfony/polyfill-php80": "^1.15"
  7066. },
  7067. "conflict": {
  7068. "phpunit/phpunit": "<5.4.3",
  7069. "symfony/console": "<4.4"
  7070. },
  7071. "require-dev": {
  7072. "ext-iconv": "*",
  7073. "symfony/console": "^4.4|^5.0",
  7074. "symfony/process": "^4.4|^5.0",
  7075. "twig/twig": "^2.4|^3.0"
  7076. },
  7077. "suggest": {
  7078. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  7079. "ext-intl": "To show region name in time zone dump",
  7080. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  7081. },
  7082. "bin": [
  7083. "Resources/bin/var-dump-server"
  7084. ],
  7085. "type": "library",
  7086. "autoload": {
  7087. "files": [
  7088. "Resources/functions/dump.php"
  7089. ],
  7090. "psr-4": {
  7091. "Symfony\\Component\\VarDumper\\": ""
  7092. },
  7093. "exclude-from-classmap": [
  7094. "/Tests/"
  7095. ]
  7096. },
  7097. "notification-url": "https://packagist.org/downloads/",
  7098. "license": [
  7099. "MIT"
  7100. ],
  7101. "authors": [
  7102. {
  7103. "name": "Nicolas Grekas",
  7104. "email": "p@tchwork.com"
  7105. },
  7106. {
  7107. "name": "Symfony Community",
  7108. "homepage": "https://symfony.com/contributors"
  7109. }
  7110. ],
  7111. "description": "Symfony mechanism for exploring and dumping PHP variables",
  7112. "homepage": "https://symfony.com",
  7113. "keywords": [
  7114. "debug",
  7115. "dump"
  7116. ],
  7117. "support": {
  7118. "source": "https://github.com/symfony/var-dumper/tree/v5.2.0"
  7119. },
  7120. "funding": [
  7121. {
  7122. "url": "https://symfony.com/sponsor",
  7123. "type": "custom"
  7124. },
  7125. {
  7126. "url": "https://github.com/fabpot",
  7127. "type": "github"
  7128. },
  7129. {
  7130. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7131. "type": "tidelift"
  7132. }
  7133. ],
  7134. "time": "2020-11-27T00:39:34+00:00"
  7135. },
  7136. {
  7137. "name": "te7a-houdini/laravel-trix",
  7138. "version": "2.0.4",
  7139. "source": {
  7140. "type": "git",
  7141. "url": "https://github.com/amaelftah/laravel-trix.git",
  7142. "reference": "2295ae96aad8b7c427647c84e814c33926eaf074"
  7143. },
  7144. "dist": {
  7145. "type": "zip",
  7146. "url": "https://api.github.com/repos/amaelftah/laravel-trix/zipball/2295ae96aad8b7c427647c84e814c33926eaf074",
  7147. "reference": "2295ae96aad8b7c427647c84e814c33926eaf074",
  7148. "shasum": "",
  7149. "mirrors": [
  7150. {
  7151. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7152. "preferred": true
  7153. }
  7154. ]
  7155. },
  7156. "require": {
  7157. "laravel/framework": "~5.8.0|~6.0|~7.0|~8.0",
  7158. "php": "^7.1"
  7159. },
  7160. "require-dev": {
  7161. "orchestra/testbench": "^3.5|~4.0|~5.0|~6.0"
  7162. },
  7163. "type": "library",
  7164. "extra": {
  7165. "laravel": {
  7166. "providers": [
  7167. "Te7aHoudini\\LaravelTrix\\LaravelTrixServiceProvider"
  7168. ]
  7169. }
  7170. },
  7171. "autoload": {
  7172. "psr-4": {
  7173. "Te7aHoudini\\LaravelTrix\\": "src"
  7174. }
  7175. },
  7176. "notification-url": "https://packagist.org/downloads/",
  7177. "license": [
  7178. "MIT"
  7179. ],
  7180. "authors": [
  7181. {
  7182. "name": "Ahmed Abd El Ftah",
  7183. "email": "ahmedabdelftah95165@gmail.com",
  7184. "role": "Developer"
  7185. }
  7186. ],
  7187. "description": "trix editor for laravel inspired by ActionText for rails",
  7188. "homepage": "https://github.com/te7ahoudini/laravel-trix",
  7189. "keywords": [
  7190. "laravel-trix",
  7191. "te7a-houdini"
  7192. ],
  7193. "support": {
  7194. "issues": "https://github.com/amaelftah/laravel-trix/issues",
  7195. "source": "https://github.com/amaelftah/laravel-trix/tree/2.0.4"
  7196. },
  7197. "time": "2020-11-12T10:48:06+00:00"
  7198. },
  7199. {
  7200. "name": "tightenco/collect",
  7201. "version": "v5.6.33",
  7202. "source": {
  7203. "type": "git",
  7204. "url": "https://github.com/tighten/collect.git",
  7205. "reference": "d7381736dca44ac17d0805a25191b094e5a22446"
  7206. },
  7207. "dist": {
  7208. "type": "zip",
  7209. "url": "https://api.github.com/repos/tighten/collect/zipball/d7381736dca44ac17d0805a25191b094e5a22446",
  7210. "reference": "d7381736dca44ac17d0805a25191b094e5a22446",
  7211. "shasum": "",
  7212. "mirrors": [
  7213. {
  7214. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7215. "preferred": true
  7216. }
  7217. ]
  7218. },
  7219. "require": {
  7220. "php": ">=7.1.3",
  7221. "symfony/var-dumper": ">=3.1.10"
  7222. },
  7223. "require-dev": {
  7224. "mockery/mockery": "~1.0",
  7225. "nesbot/carbon": "~1.20",
  7226. "phpunit/phpunit": "~7.0"
  7227. },
  7228. "type": "library",
  7229. "autoload": {
  7230. "files": [
  7231. "src/Collect/Support/helpers.php",
  7232. "src/Collect/Support/alias.php"
  7233. ],
  7234. "psr-4": {
  7235. "Tightenco\\Collect\\": "src/Collect"
  7236. }
  7237. },
  7238. "notification-url": "https://packagist.org/downloads/",
  7239. "license": [
  7240. "MIT"
  7241. ],
  7242. "authors": [
  7243. {
  7244. "name": "Taylor Otwell",
  7245. "email": "taylorotwell@gmail.com"
  7246. }
  7247. ],
  7248. "description": "Collect - Illuminate Collections as a separate package.",
  7249. "keywords": [
  7250. "collection",
  7251. "laravel"
  7252. ],
  7253. "support": {
  7254. "issues": "https://github.com/tighten/collect/issues",
  7255. "source": "https://github.com/tighten/collect/tree/v5.6.33"
  7256. },
  7257. "time": "2018-08-09T16:56:26+00:00"
  7258. },
  7259. {
  7260. "name": "tijsverkoyen/css-to-inline-styles",
  7261. "version": "2.2.3",
  7262. "source": {
  7263. "type": "git",
  7264. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7265. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5"
  7266. },
  7267. "dist": {
  7268. "type": "zip",
  7269. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/b43b05cf43c1b6d849478965062b6ef73e223bb5",
  7270. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5",
  7271. "shasum": "",
  7272. "mirrors": [
  7273. {
  7274. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7275. "preferred": true
  7276. }
  7277. ]
  7278. },
  7279. "require": {
  7280. "ext-dom": "*",
  7281. "ext-libxml": "*",
  7282. "php": "^5.5 || ^7.0 || ^8.0",
  7283. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0"
  7284. },
  7285. "require-dev": {
  7286. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5"
  7287. },
  7288. "type": "library",
  7289. "extra": {
  7290. "branch-alias": {
  7291. "dev-master": "2.2.x-dev"
  7292. }
  7293. },
  7294. "autoload": {
  7295. "psr-4": {
  7296. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  7297. }
  7298. },
  7299. "notification-url": "https://packagist.org/downloads/",
  7300. "license": [
  7301. "BSD-3-Clause"
  7302. ],
  7303. "authors": [
  7304. {
  7305. "name": "Tijs Verkoyen",
  7306. "email": "css_to_inline_styles@verkoyen.eu",
  7307. "role": "Developer"
  7308. }
  7309. ],
  7310. "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.",
  7311. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  7312. "support": {
  7313. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  7314. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.3"
  7315. },
  7316. "time": "2020-07-13T06:12:54+00:00"
  7317. },
  7318. {
  7319. "name": "vlucas/phpdotenv",
  7320. "version": "v4.1.8",
  7321. "source": {
  7322. "type": "git",
  7323. "url": "https://github.com/vlucas/phpdotenv.git",
  7324. "reference": "572af79d913627a9d70374d27a6f5d689a35de32"
  7325. },
  7326. "dist": {
  7327. "type": "zip",
  7328. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/572af79d913627a9d70374d27a6f5d689a35de32",
  7329. "reference": "572af79d913627a9d70374d27a6f5d689a35de32",
  7330. "shasum": "",
  7331. "mirrors": [
  7332. {
  7333. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7334. "preferred": true
  7335. }
  7336. ]
  7337. },
  7338. "require": {
  7339. "php": "^5.5.9 || ^7.0 || ^8.0",
  7340. "phpoption/phpoption": "^1.7.3",
  7341. "symfony/polyfill-ctype": "^1.17"
  7342. },
  7343. "require-dev": {
  7344. "bamarni/composer-bin-plugin": "^1.4.1",
  7345. "ext-filter": "*",
  7346. "ext-pcre": "*",
  7347. "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0"
  7348. },
  7349. "suggest": {
  7350. "ext-filter": "Required to use the boolean validator.",
  7351. "ext-pcre": "Required to use most of the library."
  7352. },
  7353. "type": "library",
  7354. "extra": {
  7355. "branch-alias": {
  7356. "dev-master": "4.1-dev"
  7357. }
  7358. },
  7359. "autoload": {
  7360. "psr-4": {
  7361. "Dotenv\\": "src/"
  7362. }
  7363. },
  7364. "notification-url": "https://packagist.org/downloads/",
  7365. "license": [
  7366. "BSD-3-Clause"
  7367. ],
  7368. "authors": [
  7369. {
  7370. "name": "Graham Campbell",
  7371. "email": "graham@alt-three.com",
  7372. "homepage": "https://gjcampbell.co.uk/"
  7373. },
  7374. {
  7375. "name": "Vance Lucas",
  7376. "email": "vance@vancelucas.com",
  7377. "homepage": "https://vancelucas.com/"
  7378. }
  7379. ],
  7380. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7381. "keywords": [
  7382. "dotenv",
  7383. "env",
  7384. "environment"
  7385. ],
  7386. "support": {
  7387. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7388. "source": "https://github.com/vlucas/phpdotenv/tree/4.1"
  7389. },
  7390. "funding": [
  7391. {
  7392. "url": "https://github.com/GrahamCampbell",
  7393. "type": "github"
  7394. },
  7395. {
  7396. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7397. "type": "tidelift"
  7398. }
  7399. ],
  7400. "time": "2020-07-14T19:22:52+00:00"
  7401. },
  7402. {
  7403. "name": "voku/portable-ascii",
  7404. "version": "1.5.6",
  7405. "source": {
  7406. "type": "git",
  7407. "url": "https://github.com/voku/portable-ascii.git",
  7408. "reference": "80953678b19901e5165c56752d087fc11526017c"
  7409. },
  7410. "dist": {
  7411. "type": "zip",
  7412. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/80953678b19901e5165c56752d087fc11526017c",
  7413. "reference": "80953678b19901e5165c56752d087fc11526017c",
  7414. "shasum": "",
  7415. "mirrors": [
  7416. {
  7417. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7418. "preferred": true
  7419. }
  7420. ]
  7421. },
  7422. "require": {
  7423. "php": ">=7.0.0"
  7424. },
  7425. "require-dev": {
  7426. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  7427. },
  7428. "suggest": {
  7429. "ext-intl": "Use Intl for transliterator_transliterate() support"
  7430. },
  7431. "type": "library",
  7432. "autoload": {
  7433. "psr-4": {
  7434. "voku\\": "src/voku/"
  7435. }
  7436. },
  7437. "notification-url": "https://packagist.org/downloads/",
  7438. "license": [
  7439. "MIT"
  7440. ],
  7441. "authors": [
  7442. {
  7443. "name": "Lars Moelleken",
  7444. "homepage": "http://www.moelleken.org/"
  7445. }
  7446. ],
  7447. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  7448. "homepage": "https://github.com/voku/portable-ascii",
  7449. "keywords": [
  7450. "ascii",
  7451. "clean",
  7452. "php"
  7453. ],
  7454. "support": {
  7455. "issues": "https://github.com/voku/portable-ascii/issues",
  7456. "source": "https://github.com/voku/portable-ascii/tree/1.5.6"
  7457. },
  7458. "funding": [
  7459. {
  7460. "url": "https://www.paypal.me/moelleken",
  7461. "type": "custom"
  7462. },
  7463. {
  7464. "url": "https://github.com/voku",
  7465. "type": "github"
  7466. },
  7467. {
  7468. "url": "https://opencollective.com/portable-ascii",
  7469. "type": "open_collective"
  7470. },
  7471. {
  7472. "url": "https://www.patreon.com/voku",
  7473. "type": "patreon"
  7474. },
  7475. {
  7476. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  7477. "type": "tidelift"
  7478. }
  7479. ],
  7480. "time": "2020-11-12T00:07:28+00:00"
  7481. },
  7482. {
  7483. "name": "yajra/laravel-oci8",
  7484. "version": "v7.0.0",
  7485. "source": {
  7486. "type": "git",
  7487. "url": "https://github.com/yajra/laravel-oci8.git",
  7488. "reference": "0d0db3c21a15438ee4bd610f6a0c585cb45fd974"
  7489. },
  7490. "dist": {
  7491. "type": "zip",
  7492. "url": "https://api.github.com/repos/yajra/laravel-oci8/zipball/0d0db3c21a15438ee4bd610f6a0c585cb45fd974",
  7493. "reference": "0d0db3c21a15438ee4bd610f6a0c585cb45fd974",
  7494. "shasum": "",
  7495. "mirrors": [
  7496. {
  7497. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7498. "preferred": true
  7499. }
  7500. ]
  7501. },
  7502. "require": {
  7503. "ext-oci8": ">=2.0.0",
  7504. "ext-pdo": "*",
  7505. "illuminate/database": "^7",
  7506. "illuminate/support": "^7",
  7507. "php": "^7.2.5",
  7508. "yajra/laravel-pdo-via-oci8": "^2"
  7509. },
  7510. "require-dev": {
  7511. "mockery/mockery": "^1.3.1",
  7512. "phpunit/phpunit": "^8.4|^9.0",
  7513. "scrutinizer/ocular": "~1.1"
  7514. },
  7515. "type": "library",
  7516. "extra": {
  7517. "branch-alias": {
  7518. "dev-master": "7.x-dev"
  7519. },
  7520. "laravel": {
  7521. "providers": [
  7522. "Yajra\\Oci8\\Oci8ServiceProvider"
  7523. ]
  7524. }
  7525. },
  7526. "autoload": {
  7527. "files": [
  7528. "src/helper.php"
  7529. ],
  7530. "psr-4": {
  7531. "Yajra\\": "src/"
  7532. }
  7533. },
  7534. "notification-url": "https://packagist.org/downloads/",
  7535. "license": [
  7536. "MIT"
  7537. ],
  7538. "authors": [
  7539. {
  7540. "name": "Arjay Angeles",
  7541. "email": "aqangeles@gmail.com"
  7542. }
  7543. ],
  7544. "description": "Oracle DB driver for Laravel 4|5|6|7 via OCI8",
  7545. "keywords": [
  7546. "laravel",
  7547. "oci8",
  7548. "oracle",
  7549. "pdo_oci"
  7550. ],
  7551. "support": {
  7552. "issues": "https://github.com/yajra/laravel-oci8/issues",
  7553. "source": "https://github.com/yajra/laravel-oci8/tree/v7.0.0"
  7554. },
  7555. "funding": [
  7556. {
  7557. "url": "https://www.paypal.me/yajra",
  7558. "type": "custom"
  7559. },
  7560. {
  7561. "url": "https://www.patreon.com/yajra",
  7562. "type": "patreon"
  7563. }
  7564. ],
  7565. "time": "2020-03-04T02:15:19+00:00"
  7566. },
  7567. {
  7568. "name": "yajra/laravel-pdo-via-oci8",
  7569. "version": "v2.1.3",
  7570. "source": {
  7571. "type": "git",
  7572. "url": "https://github.com/yajra/pdo-via-oci8.git",
  7573. "reference": "46af0dbe6b5671b0ff1d77807f900cd0b57b9faf"
  7574. },
  7575. "dist": {
  7576. "type": "zip",
  7577. "url": "https://api.github.com/repos/yajra/pdo-via-oci8/zipball/46af0dbe6b5671b0ff1d77807f900cd0b57b9faf",
  7578. "reference": "46af0dbe6b5671b0ff1d77807f900cd0b57b9faf",
  7579. "shasum": "",
  7580. "mirrors": [
  7581. {
  7582. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7583. "preferred": true
  7584. }
  7585. ]
  7586. },
  7587. "require-dev": {
  7588. "phpunit/phpunit": "^6.4"
  7589. },
  7590. "type": "library",
  7591. "extra": {
  7592. "branch-alias": {
  7593. "dev-master": "2.0-dev"
  7594. }
  7595. },
  7596. "autoload": {
  7597. "psr-4": {
  7598. "Yajra\\": "src/"
  7599. }
  7600. },
  7601. "notification-url": "https://packagist.org/downloads/",
  7602. "license": [
  7603. "MIT"
  7604. ],
  7605. "authors": [
  7606. {
  7607. "name": "Arjay Angeles",
  7608. "email": "aqangeles@gmail.com"
  7609. }
  7610. ],
  7611. "description": "PDO userspace driver proxying calls to PHP OCI8 driver",
  7612. "support": {
  7613. "issues": "https://github.com/yajra/pdo-via-oci8/issues",
  7614. "source": "https://github.com/yajra/pdo-via-oci8/tree/v2.1.3"
  7615. },
  7616. "time": "2020-10-20T01:44:31+00:00"
  7617. }
  7618. ],
  7619. "packages-dev": [
  7620. {
  7621. "name": "barryvdh/laravel-debugbar",
  7622. "version": "v3.5.1",
  7623. "source": {
  7624. "type": "git",
  7625. "url": "https://github.com/barryvdh/laravel-debugbar.git",
  7626. "reference": "233c10688f4c1a6e66ed2ef123038b1363d1bedc"
  7627. },
  7628. "dist": {
  7629. "type": "zip",
  7630. "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/233c10688f4c1a6e66ed2ef123038b1363d1bedc",
  7631. "reference": "233c10688f4c1a6e66ed2ef123038b1363d1bedc",
  7632. "shasum": "",
  7633. "mirrors": [
  7634. {
  7635. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7636. "preferred": true
  7637. }
  7638. ]
  7639. },
  7640. "require": {
  7641. "illuminate/routing": "^6|^7|^8",
  7642. "illuminate/session": "^6|^7|^8",
  7643. "illuminate/support": "^6|^7|^8",
  7644. "maximebf/debugbar": "^1.16.3",
  7645. "php": ">=7.2",
  7646. "symfony/debug": "^4.3|^5",
  7647. "symfony/finder": "^4.3|^5"
  7648. },
  7649. "require-dev": {
  7650. "orchestra/testbench-dusk": "^4|^5|^6",
  7651. "phpunit/phpunit": "^8.5|^9.0",
  7652. "squizlabs/php_codesniffer": "^3.5"
  7653. },
  7654. "type": "library",
  7655. "extra": {
  7656. "branch-alias": {
  7657. "dev-master": "3.5-dev"
  7658. },
  7659. "laravel": {
  7660. "providers": [
  7661. "Barryvdh\\Debugbar\\ServiceProvider"
  7662. ],
  7663. "aliases": {
  7664. "Debugbar": "Barryvdh\\Debugbar\\Facade"
  7665. }
  7666. }
  7667. },
  7668. "autoload": {
  7669. "psr-4": {
  7670. "Barryvdh\\Debugbar\\": "src/"
  7671. },
  7672. "files": [
  7673. "src/helpers.php"
  7674. ]
  7675. },
  7676. "notification-url": "https://packagist.org/downloads/",
  7677. "license": [
  7678. "MIT"
  7679. ],
  7680. "authors": [
  7681. {
  7682. "name": "Barry vd. Heuvel",
  7683. "email": "barryvdh@gmail.com"
  7684. }
  7685. ],
  7686. "description": "PHP Debugbar integration for Laravel",
  7687. "keywords": [
  7688. "debug",
  7689. "debugbar",
  7690. "laravel",
  7691. "profiler",
  7692. "webprofiler"
  7693. ],
  7694. "support": {
  7695. "issues": "https://github.com/barryvdh/laravel-debugbar/issues",
  7696. "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.5.1"
  7697. },
  7698. "funding": [
  7699. {
  7700. "url": "https://github.com/barryvdh",
  7701. "type": "github"
  7702. }
  7703. ],
  7704. "time": "2020-09-07T19:32:39+00:00"
  7705. },
  7706. {
  7707. "name": "beyondcode/laravel-dump-server",
  7708. "version": "1.6.0",
  7709. "source": {
  7710. "type": "git",
  7711. "url": "https://github.com/beyondcode/laravel-dump-server.git",
  7712. "reference": "1d1b4c066a7f855d34a027f7af49aa77416c3c1b"
  7713. },
  7714. "dist": {
  7715. "type": "zip",
  7716. "url": "https://api.github.com/repos/beyondcode/laravel-dump-server/zipball/1d1b4c066a7f855d34a027f7af49aa77416c3c1b",
  7717. "reference": "1d1b4c066a7f855d34a027f7af49aa77416c3c1b",
  7718. "shasum": "",
  7719. "mirrors": [
  7720. {
  7721. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7722. "preferred": true
  7723. }
  7724. ]
  7725. },
  7726. "require": {
  7727. "illuminate/console": "5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0",
  7728. "illuminate/http": "5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0",
  7729. "illuminate/support": "5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0",
  7730. "php": "^7.2.5",
  7731. "symfony/var-dumper": "^5.0"
  7732. },
  7733. "require-dev": {
  7734. "larapack/dd": "^1.0",
  7735. "phpunit/phpunit": "^7.0|^9.3"
  7736. },
  7737. "type": "library",
  7738. "extra": {
  7739. "laravel": {
  7740. "providers": [
  7741. "BeyondCode\\DumpServer\\DumpServerServiceProvider"
  7742. ]
  7743. }
  7744. },
  7745. "autoload": {
  7746. "psr-4": {
  7747. "BeyondCode\\DumpServer\\": "src"
  7748. },
  7749. "files": [
  7750. "helpers.php"
  7751. ]
  7752. },
  7753. "notification-url": "https://packagist.org/downloads/",
  7754. "license": [
  7755. "MIT"
  7756. ],
  7757. "authors": [
  7758. {
  7759. "name": "Marcel Pociot",
  7760. "email": "marcel@beyondco.de",
  7761. "homepage": "https://beyondco.de",
  7762. "role": "Developer"
  7763. }
  7764. ],
  7765. "description": "Symfony Var-Dump Server for Laravel",
  7766. "homepage": "https://github.com/beyondcode/laravel-dump-server",
  7767. "keywords": [
  7768. "beyondcode",
  7769. "laravel-dump-server"
  7770. ],
  7771. "support": {
  7772. "issues": "https://github.com/beyondcode/laravel-dump-server/issues",
  7773. "source": "https://github.com/beyondcode/laravel-dump-server/tree/1.6.0"
  7774. },
  7775. "time": "2020-10-22T07:39:00+00:00"
  7776. },
  7777. {
  7778. "name": "doctrine/instantiator",
  7779. "version": "1.4.0",
  7780. "source": {
  7781. "type": "git",
  7782. "url": "https://github.com/doctrine/instantiator.git",
  7783. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
  7784. },
  7785. "dist": {
  7786. "type": "zip",
  7787. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
  7788. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
  7789. "shasum": "",
  7790. "mirrors": [
  7791. {
  7792. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7793. "preferred": true
  7794. }
  7795. ]
  7796. },
  7797. "require": {
  7798. "php": "^7.1 || ^8.0"
  7799. },
  7800. "require-dev": {
  7801. "doctrine/coding-standard": "^8.0",
  7802. "ext-pdo": "*",
  7803. "ext-phar": "*",
  7804. "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
  7805. "phpstan/phpstan": "^0.12",
  7806. "phpstan/phpstan-phpunit": "^0.12",
  7807. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  7808. },
  7809. "type": "library",
  7810. "autoload": {
  7811. "psr-4": {
  7812. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  7813. }
  7814. },
  7815. "notification-url": "https://packagist.org/downloads/",
  7816. "license": [
  7817. "MIT"
  7818. ],
  7819. "authors": [
  7820. {
  7821. "name": "Marco Pivetta",
  7822. "email": "ocramius@gmail.com",
  7823. "homepage": "https://ocramius.github.io/"
  7824. }
  7825. ],
  7826. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  7827. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  7828. "keywords": [
  7829. "constructor",
  7830. "instantiate"
  7831. ],
  7832. "support": {
  7833. "issues": "https://github.com/doctrine/instantiator/issues",
  7834. "source": "https://github.com/doctrine/instantiator/tree/1.4.0"
  7835. },
  7836. "funding": [
  7837. {
  7838. "url": "https://www.doctrine-project.org/sponsorship.html",
  7839. "type": "custom"
  7840. },
  7841. {
  7842. "url": "https://www.patreon.com/phpdoctrine",
  7843. "type": "patreon"
  7844. },
  7845. {
  7846. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  7847. "type": "tidelift"
  7848. }
  7849. ],
  7850. "time": "2020-11-10T18:47:58+00:00"
  7851. },
  7852. {
  7853. "name": "fzaninotto/faker",
  7854. "version": "v1.9.1",
  7855. "source": {
  7856. "type": "git",
  7857. "url": "https://github.com/fzaninotto/Faker.git",
  7858. "reference": "fc10d778e4b84d5bd315dad194661e091d307c6f"
  7859. },
  7860. "dist": {
  7861. "type": "zip",
  7862. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/fc10d778e4b84d5bd315dad194661e091d307c6f",
  7863. "reference": "fc10d778e4b84d5bd315dad194661e091d307c6f",
  7864. "shasum": "",
  7865. "mirrors": [
  7866. {
  7867. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7868. "preferred": true
  7869. }
  7870. ]
  7871. },
  7872. "require": {
  7873. "php": "^5.3.3 || ^7.0"
  7874. },
  7875. "require-dev": {
  7876. "ext-intl": "*",
  7877. "phpunit/phpunit": "^4.8.35 || ^5.7",
  7878. "squizlabs/php_codesniffer": "^2.9.2"
  7879. },
  7880. "type": "library",
  7881. "extra": {
  7882. "branch-alias": {
  7883. "dev-master": "1.9-dev"
  7884. }
  7885. },
  7886. "autoload": {
  7887. "psr-4": {
  7888. "Faker\\": "src/Faker/"
  7889. }
  7890. },
  7891. "notification-url": "https://packagist.org/downloads/",
  7892. "license": [
  7893. "MIT"
  7894. ],
  7895. "authors": [
  7896. {
  7897. "name": "François Zaninotto"
  7898. }
  7899. ],
  7900. "description": "Faker is a PHP library that generates fake data for you.",
  7901. "keywords": [
  7902. "data",
  7903. "faker",
  7904. "fixtures"
  7905. ],
  7906. "support": {
  7907. "issues": "https://github.com/fzaninotto/Faker/issues",
  7908. "source": "https://github.com/fzaninotto/Faker/tree/v1.9.1"
  7909. },
  7910. "abandoned": true,
  7911. "time": "2019-12-12T13:22:17+00:00"
  7912. },
  7913. {
  7914. "name": "hamcrest/hamcrest-php",
  7915. "version": "v2.0.1",
  7916. "source": {
  7917. "type": "git",
  7918. "url": "https://github.com/hamcrest/hamcrest-php.git",
  7919. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  7920. },
  7921. "dist": {
  7922. "type": "zip",
  7923. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7924. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7925. "shasum": "",
  7926. "mirrors": [
  7927. {
  7928. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7929. "preferred": true
  7930. }
  7931. ]
  7932. },
  7933. "require": {
  7934. "php": "^5.3|^7.0|^8.0"
  7935. },
  7936. "replace": {
  7937. "cordoval/hamcrest-php": "*",
  7938. "davedevelopment/hamcrest-php": "*",
  7939. "kodova/hamcrest-php": "*"
  7940. },
  7941. "require-dev": {
  7942. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  7943. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  7944. },
  7945. "type": "library",
  7946. "extra": {
  7947. "branch-alias": {
  7948. "dev-master": "2.1-dev"
  7949. }
  7950. },
  7951. "autoload": {
  7952. "classmap": [
  7953. "hamcrest"
  7954. ]
  7955. },
  7956. "notification-url": "https://packagist.org/downloads/",
  7957. "license": [
  7958. "BSD-3-Clause"
  7959. ],
  7960. "description": "This is the PHP port of Hamcrest Matchers",
  7961. "keywords": [
  7962. "test"
  7963. ],
  7964. "support": {
  7965. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  7966. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  7967. },
  7968. "time": "2020-07-09T08:09:16+00:00"
  7969. },
  7970. {
  7971. "name": "maximebf/debugbar",
  7972. "version": "v1.16.4",
  7973. "source": {
  7974. "type": "git",
  7975. "url": "https://github.com/maximebf/php-debugbar.git",
  7976. "reference": "c86c717e4bf3c6d98422da5c38bfa7b0f494b04c"
  7977. },
  7978. "dist": {
  7979. "type": "zip",
  7980. "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/c86c717e4bf3c6d98422da5c38bfa7b0f494b04c",
  7981. "reference": "c86c717e4bf3c6d98422da5c38bfa7b0f494b04c",
  7982. "shasum": "",
  7983. "mirrors": [
  7984. {
  7985. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7986. "preferred": true
  7987. }
  7988. ]
  7989. },
  7990. "require": {
  7991. "php": "^7.1|^8",
  7992. "psr/log": "^1.0",
  7993. "symfony/var-dumper": "^2.6|^3|^4|^5"
  7994. },
  7995. "require-dev": {
  7996. "phpunit/phpunit": "^7.5.20 || ^9.4.2"
  7997. },
  7998. "suggest": {
  7999. "kriswallsmith/assetic": "The best way to manage assets",
  8000. "monolog/monolog": "Log using Monolog",
  8001. "predis/predis": "Redis storage"
  8002. },
  8003. "type": "library",
  8004. "extra": {
  8005. "branch-alias": {
  8006. "dev-master": "1.16-dev"
  8007. }
  8008. },
  8009. "autoload": {
  8010. "psr-4": {
  8011. "DebugBar\\": "src/DebugBar/"
  8012. }
  8013. },
  8014. "notification-url": "https://packagist.org/downloads/",
  8015. "license": [
  8016. "MIT"
  8017. ],
  8018. "authors": [
  8019. {
  8020. "name": "Maxime Bouroumeau-Fuseau",
  8021. "email": "maxime.bouroumeau@gmail.com",
  8022. "homepage": "http://maximebf.com"
  8023. },
  8024. {
  8025. "name": "Barry vd. Heuvel",
  8026. "email": "barryvdh@gmail.com"
  8027. }
  8028. ],
  8029. "description": "Debug bar in the browser for php application",
  8030. "homepage": "https://github.com/maximebf/php-debugbar",
  8031. "keywords": [
  8032. "debug",
  8033. "debugbar"
  8034. ],
  8035. "support": {
  8036. "issues": "https://github.com/maximebf/php-debugbar/issues",
  8037. "source": "https://github.com/maximebf/php-debugbar/tree/v1.16.4"
  8038. },
  8039. "time": "2020-12-07T10:48:48+00:00"
  8040. },
  8041. {
  8042. "name": "mockery/mockery",
  8043. "version": "1.3.3",
  8044. "source": {
  8045. "type": "git",
  8046. "url": "https://github.com/mockery/mockery.git",
  8047. "reference": "60fa2f67f6e4d3634bb4a45ff3171fa52215800d"
  8048. },
  8049. "dist": {
  8050. "type": "zip",
  8051. "url": "https://api.github.com/repos/mockery/mockery/zipball/60fa2f67f6e4d3634bb4a45ff3171fa52215800d",
  8052. "reference": "60fa2f67f6e4d3634bb4a45ff3171fa52215800d",
  8053. "shasum": "",
  8054. "mirrors": [
  8055. {
  8056. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8057. "preferred": true
  8058. }
  8059. ]
  8060. },
  8061. "require": {
  8062. "hamcrest/hamcrest-php": "^2.0.1",
  8063. "lib-pcre": ">=7.0",
  8064. "php": ">=5.6.0"
  8065. },
  8066. "require-dev": {
  8067. "phpunit/phpunit": "^5.7.10|^6.5|^7.5|^8.5|^9.3"
  8068. },
  8069. "type": "library",
  8070. "extra": {
  8071. "branch-alias": {
  8072. "dev-master": "1.3.x-dev"
  8073. }
  8074. },
  8075. "autoload": {
  8076. "psr-0": {
  8077. "Mockery": "library/"
  8078. }
  8079. },
  8080. "notification-url": "https://packagist.org/downloads/",
  8081. "license": [
  8082. "BSD-3-Clause"
  8083. ],
  8084. "authors": [
  8085. {
  8086. "name": "Pádraic Brady",
  8087. "email": "padraic.brady@gmail.com",
  8088. "homepage": "http://blog.astrumfutura.com"
  8089. },
  8090. {
  8091. "name": "Dave Marshall",
  8092. "email": "dave.marshall@atstsolutions.co.uk",
  8093. "homepage": "http://davedevelopment.co.uk"
  8094. }
  8095. ],
  8096. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8097. "homepage": "https://github.com/mockery/mockery",
  8098. "keywords": [
  8099. "BDD",
  8100. "TDD",
  8101. "library",
  8102. "mock",
  8103. "mock objects",
  8104. "mockery",
  8105. "stub",
  8106. "test",
  8107. "test double",
  8108. "testing"
  8109. ],
  8110. "support": {
  8111. "issues": "https://github.com/mockery/mockery/issues",
  8112. "source": "https://github.com/mockery/mockery/tree/1.3.3"
  8113. },
  8114. "time": "2020-08-11T18:10:21+00:00"
  8115. },
  8116. {
  8117. "name": "myclabs/deep-copy",
  8118. "version": "1.10.2",
  8119. "source": {
  8120. "type": "git",
  8121. "url": "https://github.com/myclabs/DeepCopy.git",
  8122. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
  8123. },
  8124. "dist": {
  8125. "type": "zip",
  8126. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
  8127. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
  8128. "shasum": "",
  8129. "mirrors": [
  8130. {
  8131. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8132. "preferred": true
  8133. }
  8134. ]
  8135. },
  8136. "require": {
  8137. "php": "^7.1 || ^8.0"
  8138. },
  8139. "replace": {
  8140. "myclabs/deep-copy": "self.version"
  8141. },
  8142. "require-dev": {
  8143. "doctrine/collections": "^1.0",
  8144. "doctrine/common": "^2.6",
  8145. "phpunit/phpunit": "^7.1"
  8146. },
  8147. "type": "library",
  8148. "autoload": {
  8149. "psr-4": {
  8150. "DeepCopy\\": "src/DeepCopy/"
  8151. },
  8152. "files": [
  8153. "src/DeepCopy/deep_copy.php"
  8154. ]
  8155. },
  8156. "notification-url": "https://packagist.org/downloads/",
  8157. "license": [
  8158. "MIT"
  8159. ],
  8160. "description": "Create deep copies (clones) of your objects",
  8161. "keywords": [
  8162. "clone",
  8163. "copy",
  8164. "duplicate",
  8165. "object",
  8166. "object graph"
  8167. ],
  8168. "support": {
  8169. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8170. "source": "https://github.com/myclabs/DeepCopy/tree/1.10.2"
  8171. },
  8172. "funding": [
  8173. {
  8174. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8175. "type": "tidelift"
  8176. }
  8177. ],
  8178. "time": "2020-11-13T09:40:50+00:00"
  8179. },
  8180. {
  8181. "name": "nunomaduro/collision",
  8182. "version": "v4.3.0",
  8183. "source": {
  8184. "type": "git",
  8185. "url": "https://github.com/nunomaduro/collision.git",
  8186. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e"
  8187. },
  8188. "dist": {
  8189. "type": "zip",
  8190. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/7c125dc2463f3e144ddc7e05e63077109508c94e",
  8191. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e",
  8192. "shasum": "",
  8193. "mirrors": [
  8194. {
  8195. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8196. "preferred": true
  8197. }
  8198. ]
  8199. },
  8200. "require": {
  8201. "facade/ignition-contracts": "^1.0",
  8202. "filp/whoops": "^2.4",
  8203. "php": "^7.2.5 || ^8.0",
  8204. "symfony/console": "^5.0"
  8205. },
  8206. "require-dev": {
  8207. "facade/ignition": "^2.0",
  8208. "fideloper/proxy": "^4.2",
  8209. "friendsofphp/php-cs-fixer": "^2.16",
  8210. "fruitcake/laravel-cors": "^1.0",
  8211. "laravel/framework": "^7.0",
  8212. "laravel/tinker": "^2.0",
  8213. "nunomaduro/larastan": "^0.6",
  8214. "orchestra/testbench": "^5.0",
  8215. "phpstan/phpstan": "^0.12.3",
  8216. "phpunit/phpunit": "^8.5.1 || ^9.0"
  8217. },
  8218. "type": "library",
  8219. "extra": {
  8220. "laravel": {
  8221. "providers": [
  8222. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  8223. ]
  8224. }
  8225. },
  8226. "autoload": {
  8227. "psr-4": {
  8228. "NunoMaduro\\Collision\\": "src/"
  8229. }
  8230. },
  8231. "notification-url": "https://packagist.org/downloads/",
  8232. "license": [
  8233. "MIT"
  8234. ],
  8235. "authors": [
  8236. {
  8237. "name": "Nuno Maduro",
  8238. "email": "enunomaduro@gmail.com"
  8239. }
  8240. ],
  8241. "description": "Cli error handling for console/command-line PHP applications.",
  8242. "keywords": [
  8243. "artisan",
  8244. "cli",
  8245. "command-line",
  8246. "console",
  8247. "error",
  8248. "handling",
  8249. "laravel",
  8250. "laravel-zero",
  8251. "php",
  8252. "symfony"
  8253. ],
  8254. "support": {
  8255. "issues": "https://github.com/nunomaduro/collision/issues",
  8256. "source": "https://github.com/nunomaduro/collision"
  8257. },
  8258. "funding": [
  8259. {
  8260. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  8261. "type": "custom"
  8262. },
  8263. {
  8264. "url": "https://github.com/nunomaduro",
  8265. "type": "github"
  8266. },
  8267. {
  8268. "url": "https://www.patreon.com/nunomaduro",
  8269. "type": "patreon"
  8270. }
  8271. ],
  8272. "time": "2020-10-29T15:12:23+00:00"
  8273. },
  8274. {
  8275. "name": "phar-io/manifest",
  8276. "version": "2.0.1",
  8277. "source": {
  8278. "type": "git",
  8279. "url": "https://github.com/phar-io/manifest.git",
  8280. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133"
  8281. },
  8282. "dist": {
  8283. "type": "zip",
  8284. "url": "https://api.github.com/repos/phar-io/manifest/zipball/85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  8285. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  8286. "shasum": "",
  8287. "mirrors": [
  8288. {
  8289. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8290. "preferred": true
  8291. }
  8292. ]
  8293. },
  8294. "require": {
  8295. "ext-dom": "*",
  8296. "ext-phar": "*",
  8297. "ext-xmlwriter": "*",
  8298. "phar-io/version": "^3.0.1",
  8299. "php": "^7.2 || ^8.0"
  8300. },
  8301. "type": "library",
  8302. "extra": {
  8303. "branch-alias": {
  8304. "dev-master": "2.0.x-dev"
  8305. }
  8306. },
  8307. "autoload": {
  8308. "classmap": [
  8309. "src/"
  8310. ]
  8311. },
  8312. "notification-url": "https://packagist.org/downloads/",
  8313. "license": [
  8314. "BSD-3-Clause"
  8315. ],
  8316. "authors": [
  8317. {
  8318. "name": "Arne Blankerts",
  8319. "email": "arne@blankerts.de",
  8320. "role": "Developer"
  8321. },
  8322. {
  8323. "name": "Sebastian Heuer",
  8324. "email": "sebastian@phpeople.de",
  8325. "role": "Developer"
  8326. },
  8327. {
  8328. "name": "Sebastian Bergmann",
  8329. "email": "sebastian@phpunit.de",
  8330. "role": "Developer"
  8331. }
  8332. ],
  8333. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8334. "support": {
  8335. "issues": "https://github.com/phar-io/manifest/issues",
  8336. "source": "https://github.com/phar-io/manifest/tree/master"
  8337. },
  8338. "time": "2020-06-27T14:33:11+00:00"
  8339. },
  8340. {
  8341. "name": "phar-io/version",
  8342. "version": "3.0.3",
  8343. "source": {
  8344. "type": "git",
  8345. "url": "https://github.com/phar-io/version.git",
  8346. "reference": "726c026815142e4f8677b7cb7f2249c9ffb7ecae"
  8347. },
  8348. "dist": {
  8349. "type": "zip",
  8350. "url": "https://api.github.com/repos/phar-io/version/zipball/726c026815142e4f8677b7cb7f2249c9ffb7ecae",
  8351. "reference": "726c026815142e4f8677b7cb7f2249c9ffb7ecae",
  8352. "shasum": "",
  8353. "mirrors": [
  8354. {
  8355. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8356. "preferred": true
  8357. }
  8358. ]
  8359. },
  8360. "require": {
  8361. "php": "^7.2 || ^8.0"
  8362. },
  8363. "type": "library",
  8364. "autoload": {
  8365. "classmap": [
  8366. "src/"
  8367. ]
  8368. },
  8369. "notification-url": "https://packagist.org/downloads/",
  8370. "license": [
  8371. "BSD-3-Clause"
  8372. ],
  8373. "authors": [
  8374. {
  8375. "name": "Arne Blankerts",
  8376. "email": "arne@blankerts.de",
  8377. "role": "Developer"
  8378. },
  8379. {
  8380. "name": "Sebastian Heuer",
  8381. "email": "sebastian@phpeople.de",
  8382. "role": "Developer"
  8383. },
  8384. {
  8385. "name": "Sebastian Bergmann",
  8386. "email": "sebastian@phpunit.de",
  8387. "role": "Developer"
  8388. }
  8389. ],
  8390. "description": "Library for handling version information and constraints",
  8391. "support": {
  8392. "issues": "https://github.com/phar-io/version/issues",
  8393. "source": "https://github.com/phar-io/version/tree/3.0.3"
  8394. },
  8395. "time": "2020-11-30T09:21:21+00:00"
  8396. },
  8397. {
  8398. "name": "phpdocumentor/reflection-common",
  8399. "version": "2.2.0",
  8400. "source": {
  8401. "type": "git",
  8402. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  8403. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  8404. },
  8405. "dist": {
  8406. "type": "zip",
  8407. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  8408. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  8409. "shasum": "",
  8410. "mirrors": [
  8411. {
  8412. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8413. "preferred": true
  8414. }
  8415. ]
  8416. },
  8417. "require": {
  8418. "php": "^7.2 || ^8.0"
  8419. },
  8420. "type": "library",
  8421. "extra": {
  8422. "branch-alias": {
  8423. "dev-2.x": "2.x-dev"
  8424. }
  8425. },
  8426. "autoload": {
  8427. "psr-4": {
  8428. "phpDocumentor\\Reflection\\": "src/"
  8429. }
  8430. },
  8431. "notification-url": "https://packagist.org/downloads/",
  8432. "license": [
  8433. "MIT"
  8434. ],
  8435. "authors": [
  8436. {
  8437. "name": "Jaap van Otterdijk",
  8438. "email": "opensource@ijaap.nl"
  8439. }
  8440. ],
  8441. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  8442. "homepage": "http://www.phpdoc.org",
  8443. "keywords": [
  8444. "FQSEN",
  8445. "phpDocumentor",
  8446. "phpdoc",
  8447. "reflection",
  8448. "static analysis"
  8449. ],
  8450. "support": {
  8451. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  8452. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  8453. },
  8454. "time": "2020-06-27T09:03:43+00:00"
  8455. },
  8456. {
  8457. "name": "phpdocumentor/reflection-docblock",
  8458. "version": "5.2.2",
  8459. "source": {
  8460. "type": "git",
  8461. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  8462. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556"
  8463. },
  8464. "dist": {
  8465. "type": "zip",
  8466. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556",
  8467. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556",
  8468. "shasum": "",
  8469. "mirrors": [
  8470. {
  8471. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8472. "preferred": true
  8473. }
  8474. ]
  8475. },
  8476. "require": {
  8477. "ext-filter": "*",
  8478. "php": "^7.2 || ^8.0",
  8479. "phpdocumentor/reflection-common": "^2.2",
  8480. "phpdocumentor/type-resolver": "^1.3",
  8481. "webmozart/assert": "^1.9.1"
  8482. },
  8483. "require-dev": {
  8484. "mockery/mockery": "~1.3.2"
  8485. },
  8486. "type": "library",
  8487. "extra": {
  8488. "branch-alias": {
  8489. "dev-master": "5.x-dev"
  8490. }
  8491. },
  8492. "autoload": {
  8493. "psr-4": {
  8494. "phpDocumentor\\Reflection\\": "src"
  8495. }
  8496. },
  8497. "notification-url": "https://packagist.org/downloads/",
  8498. "license": [
  8499. "MIT"
  8500. ],
  8501. "authors": [
  8502. {
  8503. "name": "Mike van Riel",
  8504. "email": "me@mikevanriel.com"
  8505. },
  8506. {
  8507. "name": "Jaap van Otterdijk",
  8508. "email": "account@ijaap.nl"
  8509. }
  8510. ],
  8511. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  8512. "support": {
  8513. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  8514. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/master"
  8515. },
  8516. "time": "2020-09-03T19:13:55+00:00"
  8517. },
  8518. {
  8519. "name": "phpdocumentor/type-resolver",
  8520. "version": "1.4.0",
  8521. "source": {
  8522. "type": "git",
  8523. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  8524. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0"
  8525. },
  8526. "dist": {
  8527. "type": "zip",
  8528. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  8529. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  8530. "shasum": "",
  8531. "mirrors": [
  8532. {
  8533. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8534. "preferred": true
  8535. }
  8536. ]
  8537. },
  8538. "require": {
  8539. "php": "^7.2 || ^8.0",
  8540. "phpdocumentor/reflection-common": "^2.0"
  8541. },
  8542. "require-dev": {
  8543. "ext-tokenizer": "*"
  8544. },
  8545. "type": "library",
  8546. "extra": {
  8547. "branch-alias": {
  8548. "dev-1.x": "1.x-dev"
  8549. }
  8550. },
  8551. "autoload": {
  8552. "psr-4": {
  8553. "phpDocumentor\\Reflection\\": "src"
  8554. }
  8555. },
  8556. "notification-url": "https://packagist.org/downloads/",
  8557. "license": [
  8558. "MIT"
  8559. ],
  8560. "authors": [
  8561. {
  8562. "name": "Mike van Riel",
  8563. "email": "me@mikevanriel.com"
  8564. }
  8565. ],
  8566. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  8567. "support": {
  8568. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  8569. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.4.0"
  8570. },
  8571. "time": "2020-09-17T18:55:26+00:00"
  8572. },
  8573. {
  8574. "name": "phpspec/prophecy",
  8575. "version": "1.12.1",
  8576. "source": {
  8577. "type": "git",
  8578. "url": "https://github.com/phpspec/prophecy.git",
  8579. "reference": "8ce87516be71aae9b956f81906aaf0338e0d8a2d"
  8580. },
  8581. "dist": {
  8582. "type": "zip",
  8583. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/8ce87516be71aae9b956f81906aaf0338e0d8a2d",
  8584. "reference": "8ce87516be71aae9b956f81906aaf0338e0d8a2d",
  8585. "shasum": "",
  8586. "mirrors": [
  8587. {
  8588. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8589. "preferred": true
  8590. }
  8591. ]
  8592. },
  8593. "require": {
  8594. "doctrine/instantiator": "^1.2",
  8595. "php": "^7.2 || ~8.0, <8.1",
  8596. "phpdocumentor/reflection-docblock": "^5.2",
  8597. "sebastian/comparator": "^3.0 || ^4.0",
  8598. "sebastian/recursion-context": "^3.0 || ^4.0"
  8599. },
  8600. "require-dev": {
  8601. "phpspec/phpspec": "^6.0",
  8602. "phpunit/phpunit": "^8.0 || ^9.0 <9.3"
  8603. },
  8604. "type": "library",
  8605. "extra": {
  8606. "branch-alias": {
  8607. "dev-master": "1.11.x-dev"
  8608. }
  8609. },
  8610. "autoload": {
  8611. "psr-4": {
  8612. "Prophecy\\": "src/Prophecy"
  8613. }
  8614. },
  8615. "notification-url": "https://packagist.org/downloads/",
  8616. "license": [
  8617. "MIT"
  8618. ],
  8619. "authors": [
  8620. {
  8621. "name": "Konstantin Kudryashov",
  8622. "email": "ever.zet@gmail.com",
  8623. "homepage": "http://everzet.com"
  8624. },
  8625. {
  8626. "name": "Marcello Duarte",
  8627. "email": "marcello.duarte@gmail.com"
  8628. }
  8629. ],
  8630. "description": "Highly opinionated mocking framework for PHP 5.3+",
  8631. "homepage": "https://github.com/phpspec/prophecy",
  8632. "keywords": [
  8633. "Double",
  8634. "Dummy",
  8635. "fake",
  8636. "mock",
  8637. "spy",
  8638. "stub"
  8639. ],
  8640. "support": {
  8641. "issues": "https://github.com/phpspec/prophecy/issues",
  8642. "source": "https://github.com/phpspec/prophecy/tree/1.12.1"
  8643. },
  8644. "time": "2020-09-29T09:10:42+00:00"
  8645. },
  8646. {
  8647. "name": "phpunit/php-code-coverage",
  8648. "version": "7.0.14",
  8649. "source": {
  8650. "type": "git",
  8651. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8652. "reference": "bb7c9a210c72e4709cdde67f8b7362f672f2225c"
  8653. },
  8654. "dist": {
  8655. "type": "zip",
  8656. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/bb7c9a210c72e4709cdde67f8b7362f672f2225c",
  8657. "reference": "bb7c9a210c72e4709cdde67f8b7362f672f2225c",
  8658. "shasum": "",
  8659. "mirrors": [
  8660. {
  8661. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8662. "preferred": true
  8663. }
  8664. ]
  8665. },
  8666. "require": {
  8667. "ext-dom": "*",
  8668. "ext-xmlwriter": "*",
  8669. "php": ">=7.2",
  8670. "phpunit/php-file-iterator": "^2.0.2",
  8671. "phpunit/php-text-template": "^1.2.1",
  8672. "phpunit/php-token-stream": "^3.1.1 || ^4.0",
  8673. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  8674. "sebastian/environment": "^4.2.2",
  8675. "sebastian/version": "^2.0.1",
  8676. "theseer/tokenizer": "^1.1.3"
  8677. },
  8678. "require-dev": {
  8679. "phpunit/phpunit": "^8.2.2"
  8680. },
  8681. "suggest": {
  8682. "ext-xdebug": "^2.7.2"
  8683. },
  8684. "type": "library",
  8685. "extra": {
  8686. "branch-alias": {
  8687. "dev-master": "7.0-dev"
  8688. }
  8689. },
  8690. "autoload": {
  8691. "classmap": [
  8692. "src/"
  8693. ]
  8694. },
  8695. "notification-url": "https://packagist.org/downloads/",
  8696. "license": [
  8697. "BSD-3-Clause"
  8698. ],
  8699. "authors": [
  8700. {
  8701. "name": "Sebastian Bergmann",
  8702. "email": "sebastian@phpunit.de",
  8703. "role": "lead"
  8704. }
  8705. ],
  8706. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8707. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8708. "keywords": [
  8709. "coverage",
  8710. "testing",
  8711. "xunit"
  8712. ],
  8713. "support": {
  8714. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8715. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/7.0.14"
  8716. },
  8717. "funding": [
  8718. {
  8719. "url": "https://github.com/sebastianbergmann",
  8720. "type": "github"
  8721. }
  8722. ],
  8723. "time": "2020-12-02T13:39:03+00:00"
  8724. },
  8725. {
  8726. "name": "phpunit/php-file-iterator",
  8727. "version": "2.0.3",
  8728. "source": {
  8729. "type": "git",
  8730. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8731. "reference": "4b49fb70f067272b659ef0174ff9ca40fdaa6357"
  8732. },
  8733. "dist": {
  8734. "type": "zip",
  8735. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/4b49fb70f067272b659ef0174ff9ca40fdaa6357",
  8736. "reference": "4b49fb70f067272b659ef0174ff9ca40fdaa6357",
  8737. "shasum": "",
  8738. "mirrors": [
  8739. {
  8740. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8741. "preferred": true
  8742. }
  8743. ]
  8744. },
  8745. "require": {
  8746. "php": ">=7.1"
  8747. },
  8748. "require-dev": {
  8749. "phpunit/phpunit": "^8.5"
  8750. },
  8751. "type": "library",
  8752. "extra": {
  8753. "branch-alias": {
  8754. "dev-master": "2.0.x-dev"
  8755. }
  8756. },
  8757. "autoload": {
  8758. "classmap": [
  8759. "src/"
  8760. ]
  8761. },
  8762. "notification-url": "https://packagist.org/downloads/",
  8763. "license": [
  8764. "BSD-3-Clause"
  8765. ],
  8766. "authors": [
  8767. {
  8768. "name": "Sebastian Bergmann",
  8769. "email": "sebastian@phpunit.de",
  8770. "role": "lead"
  8771. }
  8772. ],
  8773. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8774. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8775. "keywords": [
  8776. "filesystem",
  8777. "iterator"
  8778. ],
  8779. "support": {
  8780. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8781. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/2.0.3"
  8782. },
  8783. "funding": [
  8784. {
  8785. "url": "https://github.com/sebastianbergmann",
  8786. "type": "github"
  8787. }
  8788. ],
  8789. "time": "2020-11-30T08:25:21+00:00"
  8790. },
  8791. {
  8792. "name": "phpunit/php-text-template",
  8793. "version": "1.2.1",
  8794. "source": {
  8795. "type": "git",
  8796. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8797. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  8798. },
  8799. "dist": {
  8800. "type": "zip",
  8801. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  8802. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  8803. "shasum": "",
  8804. "mirrors": [
  8805. {
  8806. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8807. "preferred": true
  8808. }
  8809. ]
  8810. },
  8811. "require": {
  8812. "php": ">=5.3.3"
  8813. },
  8814. "type": "library",
  8815. "autoload": {
  8816. "classmap": [
  8817. "src/"
  8818. ]
  8819. },
  8820. "notification-url": "https://packagist.org/downloads/",
  8821. "license": [
  8822. "BSD-3-Clause"
  8823. ],
  8824. "authors": [
  8825. {
  8826. "name": "Sebastian Bergmann",
  8827. "email": "sebastian@phpunit.de",
  8828. "role": "lead"
  8829. }
  8830. ],
  8831. "description": "Simple template engine.",
  8832. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8833. "keywords": [
  8834. "template"
  8835. ],
  8836. "support": {
  8837. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8838. "source": "https://github.com/sebastianbergmann/php-text-template/tree/1.2.1"
  8839. },
  8840. "time": "2015-06-21T13:50:34+00:00"
  8841. },
  8842. {
  8843. "name": "phpunit/php-timer",
  8844. "version": "2.1.3",
  8845. "source": {
  8846. "type": "git",
  8847. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8848. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662"
  8849. },
  8850. "dist": {
  8851. "type": "zip",
  8852. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  8853. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  8854. "shasum": "",
  8855. "mirrors": [
  8856. {
  8857. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8858. "preferred": true
  8859. }
  8860. ]
  8861. },
  8862. "require": {
  8863. "php": ">=7.1"
  8864. },
  8865. "require-dev": {
  8866. "phpunit/phpunit": "^8.5"
  8867. },
  8868. "type": "library",
  8869. "extra": {
  8870. "branch-alias": {
  8871. "dev-master": "2.1-dev"
  8872. }
  8873. },
  8874. "autoload": {
  8875. "classmap": [
  8876. "src/"
  8877. ]
  8878. },
  8879. "notification-url": "https://packagist.org/downloads/",
  8880. "license": [
  8881. "BSD-3-Clause"
  8882. ],
  8883. "authors": [
  8884. {
  8885. "name": "Sebastian Bergmann",
  8886. "email": "sebastian@phpunit.de",
  8887. "role": "lead"
  8888. }
  8889. ],
  8890. "description": "Utility class for timing",
  8891. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8892. "keywords": [
  8893. "timer"
  8894. ],
  8895. "support": {
  8896. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  8897. "source": "https://github.com/sebastianbergmann/php-timer/tree/2.1.3"
  8898. },
  8899. "funding": [
  8900. {
  8901. "url": "https://github.com/sebastianbergmann",
  8902. "type": "github"
  8903. }
  8904. ],
  8905. "time": "2020-11-30T08:20:02+00:00"
  8906. },
  8907. {
  8908. "name": "phpunit/php-token-stream",
  8909. "version": "3.1.2",
  8910. "source": {
  8911. "type": "git",
  8912. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  8913. "reference": "472b687829041c24b25f475e14c2f38a09edf1c2"
  8914. },
  8915. "dist": {
  8916. "type": "zip",
  8917. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/472b687829041c24b25f475e14c2f38a09edf1c2",
  8918. "reference": "472b687829041c24b25f475e14c2f38a09edf1c2",
  8919. "shasum": "",
  8920. "mirrors": [
  8921. {
  8922. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8923. "preferred": true
  8924. }
  8925. ]
  8926. },
  8927. "require": {
  8928. "ext-tokenizer": "*",
  8929. "php": ">=7.1"
  8930. },
  8931. "require-dev": {
  8932. "phpunit/phpunit": "^7.0"
  8933. },
  8934. "type": "library",
  8935. "extra": {
  8936. "branch-alias": {
  8937. "dev-master": "3.1-dev"
  8938. }
  8939. },
  8940. "autoload": {
  8941. "classmap": [
  8942. "src/"
  8943. ]
  8944. },
  8945. "notification-url": "https://packagist.org/downloads/",
  8946. "license": [
  8947. "BSD-3-Clause"
  8948. ],
  8949. "authors": [
  8950. {
  8951. "name": "Sebastian Bergmann",
  8952. "email": "sebastian@phpunit.de"
  8953. }
  8954. ],
  8955. "description": "Wrapper around PHP's tokenizer extension.",
  8956. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  8957. "keywords": [
  8958. "tokenizer"
  8959. ],
  8960. "support": {
  8961. "issues": "https://github.com/sebastianbergmann/php-token-stream/issues",
  8962. "source": "https://github.com/sebastianbergmann/php-token-stream/tree/3.1.2"
  8963. },
  8964. "funding": [
  8965. {
  8966. "url": "https://github.com/sebastianbergmann",
  8967. "type": "github"
  8968. }
  8969. ],
  8970. "abandoned": true,
  8971. "time": "2020-11-30T08:38:46+00:00"
  8972. },
  8973. {
  8974. "name": "phpunit/phpunit",
  8975. "version": "8.5.13",
  8976. "source": {
  8977. "type": "git",
  8978. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8979. "reference": "8e86be391a58104ef86037ba8a846524528d784e"
  8980. },
  8981. "dist": {
  8982. "type": "zip",
  8983. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/8e86be391a58104ef86037ba8a846524528d784e",
  8984. "reference": "8e86be391a58104ef86037ba8a846524528d784e",
  8985. "shasum": "",
  8986. "mirrors": [
  8987. {
  8988. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8989. "preferred": true
  8990. }
  8991. ]
  8992. },
  8993. "require": {
  8994. "doctrine/instantiator": "^1.3.1",
  8995. "ext-dom": "*",
  8996. "ext-json": "*",
  8997. "ext-libxml": "*",
  8998. "ext-mbstring": "*",
  8999. "ext-xml": "*",
  9000. "ext-xmlwriter": "*",
  9001. "myclabs/deep-copy": "^1.10.0",
  9002. "phar-io/manifest": "^2.0.1",
  9003. "phar-io/version": "^3.0.2",
  9004. "php": ">=7.2",
  9005. "phpspec/prophecy": "^1.10.3",
  9006. "phpunit/php-code-coverage": "^7.0.12",
  9007. "phpunit/php-file-iterator": "^2.0.2",
  9008. "phpunit/php-text-template": "^1.2.1",
  9009. "phpunit/php-timer": "^2.1.2",
  9010. "sebastian/comparator": "^3.0.2",
  9011. "sebastian/diff": "^3.0.2",
  9012. "sebastian/environment": "^4.2.3",
  9013. "sebastian/exporter": "^3.1.2",
  9014. "sebastian/global-state": "^3.0.0",
  9015. "sebastian/object-enumerator": "^3.0.3",
  9016. "sebastian/resource-operations": "^2.0.1",
  9017. "sebastian/type": "^1.1.3",
  9018. "sebastian/version": "^2.0.1"
  9019. },
  9020. "require-dev": {
  9021. "ext-pdo": "*"
  9022. },
  9023. "suggest": {
  9024. "ext-soap": "*",
  9025. "ext-xdebug": "*",
  9026. "phpunit/php-invoker": "^2.0.0"
  9027. },
  9028. "bin": [
  9029. "phpunit"
  9030. ],
  9031. "type": "library",
  9032. "extra": {
  9033. "branch-alias": {
  9034. "dev-master": "8.5-dev"
  9035. }
  9036. },
  9037. "autoload": {
  9038. "classmap": [
  9039. "src/"
  9040. ]
  9041. },
  9042. "notification-url": "https://packagist.org/downloads/",
  9043. "license": [
  9044. "BSD-3-Clause"
  9045. ],
  9046. "authors": [
  9047. {
  9048. "name": "Sebastian Bergmann",
  9049. "email": "sebastian@phpunit.de",
  9050. "role": "lead"
  9051. }
  9052. ],
  9053. "description": "The PHP Unit Testing framework.",
  9054. "homepage": "https://phpunit.de/",
  9055. "keywords": [
  9056. "phpunit",
  9057. "testing",
  9058. "xunit"
  9059. ],
  9060. "support": {
  9061. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9062. "source": "https://github.com/sebastianbergmann/phpunit/tree/8.5.13"
  9063. },
  9064. "funding": [
  9065. {
  9066. "url": "https://phpunit.de/donate.html",
  9067. "type": "custom"
  9068. },
  9069. {
  9070. "url": "https://github.com/sebastianbergmann",
  9071. "type": "github"
  9072. }
  9073. ],
  9074. "time": "2020-12-01T04:53:52+00:00"
  9075. },
  9076. {
  9077. "name": "sebastian/code-unit-reverse-lookup",
  9078. "version": "1.0.2",
  9079. "source": {
  9080. "type": "git",
  9081. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9082. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619"
  9083. },
  9084. "dist": {
  9085. "type": "zip",
  9086. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  9087. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  9088. "shasum": "",
  9089. "mirrors": [
  9090. {
  9091. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9092. "preferred": true
  9093. }
  9094. ]
  9095. },
  9096. "require": {
  9097. "php": ">=5.6"
  9098. },
  9099. "require-dev": {
  9100. "phpunit/phpunit": "^8.5"
  9101. },
  9102. "type": "library",
  9103. "extra": {
  9104. "branch-alias": {
  9105. "dev-master": "1.0.x-dev"
  9106. }
  9107. },
  9108. "autoload": {
  9109. "classmap": [
  9110. "src/"
  9111. ]
  9112. },
  9113. "notification-url": "https://packagist.org/downloads/",
  9114. "license": [
  9115. "BSD-3-Clause"
  9116. ],
  9117. "authors": [
  9118. {
  9119. "name": "Sebastian Bergmann",
  9120. "email": "sebastian@phpunit.de"
  9121. }
  9122. ],
  9123. "description": "Looks up which function or method a line of code belongs to",
  9124. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9125. "support": {
  9126. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9127. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/1.0.2"
  9128. },
  9129. "funding": [
  9130. {
  9131. "url": "https://github.com/sebastianbergmann",
  9132. "type": "github"
  9133. }
  9134. ],
  9135. "time": "2020-11-30T08:15:22+00:00"
  9136. },
  9137. {
  9138. "name": "sebastian/comparator",
  9139. "version": "3.0.3",
  9140. "source": {
  9141. "type": "git",
  9142. "url": "https://github.com/sebastianbergmann/comparator.git",
  9143. "reference": "1071dfcef776a57013124ff35e1fc41ccd294758"
  9144. },
  9145. "dist": {
  9146. "type": "zip",
  9147. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/1071dfcef776a57013124ff35e1fc41ccd294758",
  9148. "reference": "1071dfcef776a57013124ff35e1fc41ccd294758",
  9149. "shasum": "",
  9150. "mirrors": [
  9151. {
  9152. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9153. "preferred": true
  9154. }
  9155. ]
  9156. },
  9157. "require": {
  9158. "php": ">=7.1",
  9159. "sebastian/diff": "^3.0",
  9160. "sebastian/exporter": "^3.1"
  9161. },
  9162. "require-dev": {
  9163. "phpunit/phpunit": "^8.5"
  9164. },
  9165. "type": "library",
  9166. "extra": {
  9167. "branch-alias": {
  9168. "dev-master": "3.0-dev"
  9169. }
  9170. },
  9171. "autoload": {
  9172. "classmap": [
  9173. "src/"
  9174. ]
  9175. },
  9176. "notification-url": "https://packagist.org/downloads/",
  9177. "license": [
  9178. "BSD-3-Clause"
  9179. ],
  9180. "authors": [
  9181. {
  9182. "name": "Sebastian Bergmann",
  9183. "email": "sebastian@phpunit.de"
  9184. },
  9185. {
  9186. "name": "Jeff Welch",
  9187. "email": "whatthejeff@gmail.com"
  9188. },
  9189. {
  9190. "name": "Volker Dusch",
  9191. "email": "github@wallbash.com"
  9192. },
  9193. {
  9194. "name": "Bernhard Schussek",
  9195. "email": "bschussek@2bepublished.at"
  9196. }
  9197. ],
  9198. "description": "Provides the functionality to compare PHP values for equality",
  9199. "homepage": "https://github.com/sebastianbergmann/comparator",
  9200. "keywords": [
  9201. "comparator",
  9202. "compare",
  9203. "equality"
  9204. ],
  9205. "support": {
  9206. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9207. "source": "https://github.com/sebastianbergmann/comparator/tree/3.0.3"
  9208. },
  9209. "funding": [
  9210. {
  9211. "url": "https://github.com/sebastianbergmann",
  9212. "type": "github"
  9213. }
  9214. ],
  9215. "time": "2020-11-30T08:04:30+00:00"
  9216. },
  9217. {
  9218. "name": "sebastian/diff",
  9219. "version": "3.0.3",
  9220. "source": {
  9221. "type": "git",
  9222. "url": "https://github.com/sebastianbergmann/diff.git",
  9223. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211"
  9224. },
  9225. "dist": {
  9226. "type": "zip",
  9227. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  9228. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  9229. "shasum": "",
  9230. "mirrors": [
  9231. {
  9232. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9233. "preferred": true
  9234. }
  9235. ]
  9236. },
  9237. "require": {
  9238. "php": ">=7.1"
  9239. },
  9240. "require-dev": {
  9241. "phpunit/phpunit": "^7.5 || ^8.0",
  9242. "symfony/process": "^2 || ^3.3 || ^4"
  9243. },
  9244. "type": "library",
  9245. "extra": {
  9246. "branch-alias": {
  9247. "dev-master": "3.0-dev"
  9248. }
  9249. },
  9250. "autoload": {
  9251. "classmap": [
  9252. "src/"
  9253. ]
  9254. },
  9255. "notification-url": "https://packagist.org/downloads/",
  9256. "license": [
  9257. "BSD-3-Clause"
  9258. ],
  9259. "authors": [
  9260. {
  9261. "name": "Sebastian Bergmann",
  9262. "email": "sebastian@phpunit.de"
  9263. },
  9264. {
  9265. "name": "Kore Nordmann",
  9266. "email": "mail@kore-nordmann.de"
  9267. }
  9268. ],
  9269. "description": "Diff implementation",
  9270. "homepage": "https://github.com/sebastianbergmann/diff",
  9271. "keywords": [
  9272. "diff",
  9273. "udiff",
  9274. "unidiff",
  9275. "unified diff"
  9276. ],
  9277. "support": {
  9278. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9279. "source": "https://github.com/sebastianbergmann/diff/tree/3.0.3"
  9280. },
  9281. "funding": [
  9282. {
  9283. "url": "https://github.com/sebastianbergmann",
  9284. "type": "github"
  9285. }
  9286. ],
  9287. "time": "2020-11-30T07:59:04+00:00"
  9288. },
  9289. {
  9290. "name": "sebastian/environment",
  9291. "version": "4.2.4",
  9292. "source": {
  9293. "type": "git",
  9294. "url": "https://github.com/sebastianbergmann/environment.git",
  9295. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0"
  9296. },
  9297. "dist": {
  9298. "type": "zip",
  9299. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  9300. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  9301. "shasum": "",
  9302. "mirrors": [
  9303. {
  9304. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9305. "preferred": true
  9306. }
  9307. ]
  9308. },
  9309. "require": {
  9310. "php": ">=7.1"
  9311. },
  9312. "require-dev": {
  9313. "phpunit/phpunit": "^7.5"
  9314. },
  9315. "suggest": {
  9316. "ext-posix": "*"
  9317. },
  9318. "type": "library",
  9319. "extra": {
  9320. "branch-alias": {
  9321. "dev-master": "4.2-dev"
  9322. }
  9323. },
  9324. "autoload": {
  9325. "classmap": [
  9326. "src/"
  9327. ]
  9328. },
  9329. "notification-url": "https://packagist.org/downloads/",
  9330. "license": [
  9331. "BSD-3-Clause"
  9332. ],
  9333. "authors": [
  9334. {
  9335. "name": "Sebastian Bergmann",
  9336. "email": "sebastian@phpunit.de"
  9337. }
  9338. ],
  9339. "description": "Provides functionality to handle HHVM/PHP environments",
  9340. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9341. "keywords": [
  9342. "Xdebug",
  9343. "environment",
  9344. "hhvm"
  9345. ],
  9346. "support": {
  9347. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9348. "source": "https://github.com/sebastianbergmann/environment/tree/4.2.4"
  9349. },
  9350. "funding": [
  9351. {
  9352. "url": "https://github.com/sebastianbergmann",
  9353. "type": "github"
  9354. }
  9355. ],
  9356. "time": "2020-11-30T07:53:42+00:00"
  9357. },
  9358. {
  9359. "name": "sebastian/exporter",
  9360. "version": "3.1.3",
  9361. "source": {
  9362. "type": "git",
  9363. "url": "https://github.com/sebastianbergmann/exporter.git",
  9364. "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e"
  9365. },
  9366. "dist": {
  9367. "type": "zip",
  9368. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/6b853149eab67d4da22291d36f5b0631c0fd856e",
  9369. "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e",
  9370. "shasum": "",
  9371. "mirrors": [
  9372. {
  9373. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9374. "preferred": true
  9375. }
  9376. ]
  9377. },
  9378. "require": {
  9379. "php": ">=7.0",
  9380. "sebastian/recursion-context": "^3.0"
  9381. },
  9382. "require-dev": {
  9383. "ext-mbstring": "*",
  9384. "phpunit/phpunit": "^6.0"
  9385. },
  9386. "type": "library",
  9387. "extra": {
  9388. "branch-alias": {
  9389. "dev-master": "3.1.x-dev"
  9390. }
  9391. },
  9392. "autoload": {
  9393. "classmap": [
  9394. "src/"
  9395. ]
  9396. },
  9397. "notification-url": "https://packagist.org/downloads/",
  9398. "license": [
  9399. "BSD-3-Clause"
  9400. ],
  9401. "authors": [
  9402. {
  9403. "name": "Sebastian Bergmann",
  9404. "email": "sebastian@phpunit.de"
  9405. },
  9406. {
  9407. "name": "Jeff Welch",
  9408. "email": "whatthejeff@gmail.com"
  9409. },
  9410. {
  9411. "name": "Volker Dusch",
  9412. "email": "github@wallbash.com"
  9413. },
  9414. {
  9415. "name": "Adam Harvey",
  9416. "email": "aharvey@php.net"
  9417. },
  9418. {
  9419. "name": "Bernhard Schussek",
  9420. "email": "bschussek@gmail.com"
  9421. }
  9422. ],
  9423. "description": "Provides the functionality to export PHP variables for visualization",
  9424. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  9425. "keywords": [
  9426. "export",
  9427. "exporter"
  9428. ],
  9429. "support": {
  9430. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9431. "source": "https://github.com/sebastianbergmann/exporter/tree/3.1.3"
  9432. },
  9433. "funding": [
  9434. {
  9435. "url": "https://github.com/sebastianbergmann",
  9436. "type": "github"
  9437. }
  9438. ],
  9439. "time": "2020-11-30T07:47:53+00:00"
  9440. },
  9441. {
  9442. "name": "sebastian/global-state",
  9443. "version": "3.0.1",
  9444. "source": {
  9445. "type": "git",
  9446. "url": "https://github.com/sebastianbergmann/global-state.git",
  9447. "reference": "474fb9edb7ab891665d3bfc6317f42a0a150454b"
  9448. },
  9449. "dist": {
  9450. "type": "zip",
  9451. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/474fb9edb7ab891665d3bfc6317f42a0a150454b",
  9452. "reference": "474fb9edb7ab891665d3bfc6317f42a0a150454b",
  9453. "shasum": "",
  9454. "mirrors": [
  9455. {
  9456. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9457. "preferred": true
  9458. }
  9459. ]
  9460. },
  9461. "require": {
  9462. "php": ">=7.2",
  9463. "sebastian/object-reflector": "^1.1.1",
  9464. "sebastian/recursion-context": "^3.0"
  9465. },
  9466. "require-dev": {
  9467. "ext-dom": "*",
  9468. "phpunit/phpunit": "^8.0"
  9469. },
  9470. "suggest": {
  9471. "ext-uopz": "*"
  9472. },
  9473. "type": "library",
  9474. "extra": {
  9475. "branch-alias": {
  9476. "dev-master": "3.0-dev"
  9477. }
  9478. },
  9479. "autoload": {
  9480. "classmap": [
  9481. "src/"
  9482. ]
  9483. },
  9484. "notification-url": "https://packagist.org/downloads/",
  9485. "license": [
  9486. "BSD-3-Clause"
  9487. ],
  9488. "authors": [
  9489. {
  9490. "name": "Sebastian Bergmann",
  9491. "email": "sebastian@phpunit.de"
  9492. }
  9493. ],
  9494. "description": "Snapshotting of global state",
  9495. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  9496. "keywords": [
  9497. "global state"
  9498. ],
  9499. "support": {
  9500. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9501. "source": "https://github.com/sebastianbergmann/global-state/tree/3.0.1"
  9502. },
  9503. "funding": [
  9504. {
  9505. "url": "https://github.com/sebastianbergmann",
  9506. "type": "github"
  9507. }
  9508. ],
  9509. "time": "2020-11-30T07:43:24+00:00"
  9510. },
  9511. {
  9512. "name": "sebastian/object-enumerator",
  9513. "version": "3.0.4",
  9514. "source": {
  9515. "type": "git",
  9516. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9517. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2"
  9518. },
  9519. "dist": {
  9520. "type": "zip",
  9521. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  9522. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  9523. "shasum": "",
  9524. "mirrors": [
  9525. {
  9526. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9527. "preferred": true
  9528. }
  9529. ]
  9530. },
  9531. "require": {
  9532. "php": ">=7.0",
  9533. "sebastian/object-reflector": "^1.1.1",
  9534. "sebastian/recursion-context": "^3.0"
  9535. },
  9536. "require-dev": {
  9537. "phpunit/phpunit": "^6.0"
  9538. },
  9539. "type": "library",
  9540. "extra": {
  9541. "branch-alias": {
  9542. "dev-master": "3.0.x-dev"
  9543. }
  9544. },
  9545. "autoload": {
  9546. "classmap": [
  9547. "src/"
  9548. ]
  9549. },
  9550. "notification-url": "https://packagist.org/downloads/",
  9551. "license": [
  9552. "BSD-3-Clause"
  9553. ],
  9554. "authors": [
  9555. {
  9556. "name": "Sebastian Bergmann",
  9557. "email": "sebastian@phpunit.de"
  9558. }
  9559. ],
  9560. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9561. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9562. "support": {
  9563. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9564. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/3.0.4"
  9565. },
  9566. "funding": [
  9567. {
  9568. "url": "https://github.com/sebastianbergmann",
  9569. "type": "github"
  9570. }
  9571. ],
  9572. "time": "2020-11-30T07:40:27+00:00"
  9573. },
  9574. {
  9575. "name": "sebastian/object-reflector",
  9576. "version": "1.1.2",
  9577. "source": {
  9578. "type": "git",
  9579. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9580. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d"
  9581. },
  9582. "dist": {
  9583. "type": "zip",
  9584. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  9585. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  9586. "shasum": "",
  9587. "mirrors": [
  9588. {
  9589. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9590. "preferred": true
  9591. }
  9592. ]
  9593. },
  9594. "require": {
  9595. "php": ">=7.0"
  9596. },
  9597. "require-dev": {
  9598. "phpunit/phpunit": "^6.0"
  9599. },
  9600. "type": "library",
  9601. "extra": {
  9602. "branch-alias": {
  9603. "dev-master": "1.1-dev"
  9604. }
  9605. },
  9606. "autoload": {
  9607. "classmap": [
  9608. "src/"
  9609. ]
  9610. },
  9611. "notification-url": "https://packagist.org/downloads/",
  9612. "license": [
  9613. "BSD-3-Clause"
  9614. ],
  9615. "authors": [
  9616. {
  9617. "name": "Sebastian Bergmann",
  9618. "email": "sebastian@phpunit.de"
  9619. }
  9620. ],
  9621. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9622. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9623. "support": {
  9624. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9625. "source": "https://github.com/sebastianbergmann/object-reflector/tree/1.1.2"
  9626. },
  9627. "funding": [
  9628. {
  9629. "url": "https://github.com/sebastianbergmann",
  9630. "type": "github"
  9631. }
  9632. ],
  9633. "time": "2020-11-30T07:37:18+00:00"
  9634. },
  9635. {
  9636. "name": "sebastian/recursion-context",
  9637. "version": "3.0.1",
  9638. "source": {
  9639. "type": "git",
  9640. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9641. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb"
  9642. },
  9643. "dist": {
  9644. "type": "zip",
  9645. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/367dcba38d6e1977be014dc4b22f47a484dac7fb",
  9646. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb",
  9647. "shasum": "",
  9648. "mirrors": [
  9649. {
  9650. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9651. "preferred": true
  9652. }
  9653. ]
  9654. },
  9655. "require": {
  9656. "php": ">=7.0"
  9657. },
  9658. "require-dev": {
  9659. "phpunit/phpunit": "^6.0"
  9660. },
  9661. "type": "library",
  9662. "extra": {
  9663. "branch-alias": {
  9664. "dev-master": "3.0.x-dev"
  9665. }
  9666. },
  9667. "autoload": {
  9668. "classmap": [
  9669. "src/"
  9670. ]
  9671. },
  9672. "notification-url": "https://packagist.org/downloads/",
  9673. "license": [
  9674. "BSD-3-Clause"
  9675. ],
  9676. "authors": [
  9677. {
  9678. "name": "Sebastian Bergmann",
  9679. "email": "sebastian@phpunit.de"
  9680. },
  9681. {
  9682. "name": "Jeff Welch",
  9683. "email": "whatthejeff@gmail.com"
  9684. },
  9685. {
  9686. "name": "Adam Harvey",
  9687. "email": "aharvey@php.net"
  9688. }
  9689. ],
  9690. "description": "Provides functionality to recursively process PHP variables",
  9691. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  9692. "support": {
  9693. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  9694. "source": "https://github.com/sebastianbergmann/recursion-context/tree/3.0.1"
  9695. },
  9696. "funding": [
  9697. {
  9698. "url": "https://github.com/sebastianbergmann",
  9699. "type": "github"
  9700. }
  9701. ],
  9702. "time": "2020-11-30T07:34:24+00:00"
  9703. },
  9704. {
  9705. "name": "sebastian/resource-operations",
  9706. "version": "2.0.2",
  9707. "source": {
  9708. "type": "git",
  9709. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  9710. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3"
  9711. },
  9712. "dist": {
  9713. "type": "zip",
  9714. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  9715. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  9716. "shasum": "",
  9717. "mirrors": [
  9718. {
  9719. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9720. "preferred": true
  9721. }
  9722. ]
  9723. },
  9724. "require": {
  9725. "php": ">=7.1"
  9726. },
  9727. "type": "library",
  9728. "extra": {
  9729. "branch-alias": {
  9730. "dev-master": "2.0-dev"
  9731. }
  9732. },
  9733. "autoload": {
  9734. "classmap": [
  9735. "src/"
  9736. ]
  9737. },
  9738. "notification-url": "https://packagist.org/downloads/",
  9739. "license": [
  9740. "BSD-3-Clause"
  9741. ],
  9742. "authors": [
  9743. {
  9744. "name": "Sebastian Bergmann",
  9745. "email": "sebastian@phpunit.de"
  9746. }
  9747. ],
  9748. "description": "Provides a list of PHP built-in functions that operate on resources",
  9749. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  9750. "support": {
  9751. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  9752. "source": "https://github.com/sebastianbergmann/resource-operations/tree/2.0.2"
  9753. },
  9754. "funding": [
  9755. {
  9756. "url": "https://github.com/sebastianbergmann",
  9757. "type": "github"
  9758. }
  9759. ],
  9760. "time": "2020-11-30T07:30:19+00:00"
  9761. },
  9762. {
  9763. "name": "sebastian/type",
  9764. "version": "1.1.4",
  9765. "source": {
  9766. "type": "git",
  9767. "url": "https://github.com/sebastianbergmann/type.git",
  9768. "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4"
  9769. },
  9770. "dist": {
  9771. "type": "zip",
  9772. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/0150cfbc4495ed2df3872fb31b26781e4e077eb4",
  9773. "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4",
  9774. "shasum": "",
  9775. "mirrors": [
  9776. {
  9777. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9778. "preferred": true
  9779. }
  9780. ]
  9781. },
  9782. "require": {
  9783. "php": ">=7.2"
  9784. },
  9785. "require-dev": {
  9786. "phpunit/phpunit": "^8.2"
  9787. },
  9788. "type": "library",
  9789. "extra": {
  9790. "branch-alias": {
  9791. "dev-master": "1.1-dev"
  9792. }
  9793. },
  9794. "autoload": {
  9795. "classmap": [
  9796. "src/"
  9797. ]
  9798. },
  9799. "notification-url": "https://packagist.org/downloads/",
  9800. "license": [
  9801. "BSD-3-Clause"
  9802. ],
  9803. "authors": [
  9804. {
  9805. "name": "Sebastian Bergmann",
  9806. "email": "sebastian@phpunit.de",
  9807. "role": "lead"
  9808. }
  9809. ],
  9810. "description": "Collection of value objects that represent the types of the PHP type system",
  9811. "homepage": "https://github.com/sebastianbergmann/type",
  9812. "support": {
  9813. "issues": "https://github.com/sebastianbergmann/type/issues",
  9814. "source": "https://github.com/sebastianbergmann/type/tree/1.1.4"
  9815. },
  9816. "funding": [
  9817. {
  9818. "url": "https://github.com/sebastianbergmann",
  9819. "type": "github"
  9820. }
  9821. ],
  9822. "time": "2020-11-30T07:25:11+00:00"
  9823. },
  9824. {
  9825. "name": "sebastian/version",
  9826. "version": "2.0.1",
  9827. "source": {
  9828. "type": "git",
  9829. "url": "https://github.com/sebastianbergmann/version.git",
  9830. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  9831. },
  9832. "dist": {
  9833. "type": "zip",
  9834. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  9835. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  9836. "shasum": "",
  9837. "mirrors": [
  9838. {
  9839. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9840. "preferred": true
  9841. }
  9842. ]
  9843. },
  9844. "require": {
  9845. "php": ">=5.6"
  9846. },
  9847. "type": "library",
  9848. "extra": {
  9849. "branch-alias": {
  9850. "dev-master": "2.0.x-dev"
  9851. }
  9852. },
  9853. "autoload": {
  9854. "classmap": [
  9855. "src/"
  9856. ]
  9857. },
  9858. "notification-url": "https://packagist.org/downloads/",
  9859. "license": [
  9860. "BSD-3-Clause"
  9861. ],
  9862. "authors": [
  9863. {
  9864. "name": "Sebastian Bergmann",
  9865. "email": "sebastian@phpunit.de",
  9866. "role": "lead"
  9867. }
  9868. ],
  9869. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  9870. "homepage": "https://github.com/sebastianbergmann/version",
  9871. "support": {
  9872. "issues": "https://github.com/sebastianbergmann/version/issues",
  9873. "source": "https://github.com/sebastianbergmann/version/tree/master"
  9874. },
  9875. "time": "2016-10-03T07:35:21+00:00"
  9876. },
  9877. {
  9878. "name": "symfony/debug",
  9879. "version": "v4.4.17",
  9880. "source": {
  9881. "type": "git",
  9882. "url": "https://github.com/symfony/debug.git",
  9883. "reference": "65fe7b49868378319b82da3035fb30801b931c47"
  9884. },
  9885. "dist": {
  9886. "type": "zip",
  9887. "url": "https://api.github.com/repos/symfony/debug/zipball/65fe7b49868378319b82da3035fb30801b931c47",
  9888. "reference": "65fe7b49868378319b82da3035fb30801b931c47",
  9889. "shasum": "",
  9890. "mirrors": [
  9891. {
  9892. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9893. "preferred": true
  9894. }
  9895. ]
  9896. },
  9897. "require": {
  9898. "php": ">=7.1.3",
  9899. "psr/log": "~1.0",
  9900. "symfony/polyfill-php80": "^1.15"
  9901. },
  9902. "conflict": {
  9903. "symfony/http-kernel": "<3.4"
  9904. },
  9905. "require-dev": {
  9906. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  9907. },
  9908. "type": "library",
  9909. "autoload": {
  9910. "psr-4": {
  9911. "Symfony\\Component\\Debug\\": ""
  9912. },
  9913. "exclude-from-classmap": [
  9914. "/Tests/"
  9915. ]
  9916. },
  9917. "notification-url": "https://packagist.org/downloads/",
  9918. "license": [
  9919. "MIT"
  9920. ],
  9921. "authors": [
  9922. {
  9923. "name": "Fabien Potencier",
  9924. "email": "fabien@symfony.com"
  9925. },
  9926. {
  9927. "name": "Symfony Community",
  9928. "homepage": "https://symfony.com/contributors"
  9929. }
  9930. ],
  9931. "description": "Symfony Debug Component",
  9932. "homepage": "https://symfony.com",
  9933. "support": {
  9934. "source": "https://github.com/symfony/debug/tree/v4.4.17"
  9935. },
  9936. "funding": [
  9937. {
  9938. "url": "https://symfony.com/sponsor",
  9939. "type": "custom"
  9940. },
  9941. {
  9942. "url": "https://github.com/fabpot",
  9943. "type": "github"
  9944. },
  9945. {
  9946. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9947. "type": "tidelift"
  9948. }
  9949. ],
  9950. "time": "2020-10-28T20:42:29+00:00"
  9951. },
  9952. {
  9953. "name": "theseer/tokenizer",
  9954. "version": "1.2.0",
  9955. "source": {
  9956. "type": "git",
  9957. "url": "https://github.com/theseer/tokenizer.git",
  9958. "reference": "75a63c33a8577608444246075ea0af0d052e452a"
  9959. },
  9960. "dist": {
  9961. "type": "zip",
  9962. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a",
  9963. "reference": "75a63c33a8577608444246075ea0af0d052e452a",
  9964. "shasum": "",
  9965. "mirrors": [
  9966. {
  9967. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9968. "preferred": true
  9969. }
  9970. ]
  9971. },
  9972. "require": {
  9973. "ext-dom": "*",
  9974. "ext-tokenizer": "*",
  9975. "ext-xmlwriter": "*",
  9976. "php": "^7.2 || ^8.0"
  9977. },
  9978. "type": "library",
  9979. "autoload": {
  9980. "classmap": [
  9981. "src/"
  9982. ]
  9983. },
  9984. "notification-url": "https://packagist.org/downloads/",
  9985. "license": [
  9986. "BSD-3-Clause"
  9987. ],
  9988. "authors": [
  9989. {
  9990. "name": "Arne Blankerts",
  9991. "email": "arne@blankerts.de",
  9992. "role": "Developer"
  9993. }
  9994. ],
  9995. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  9996. "support": {
  9997. "issues": "https://github.com/theseer/tokenizer/issues",
  9998. "source": "https://github.com/theseer/tokenizer/tree/master"
  9999. },
  10000. "funding": [
  10001. {
  10002. "url": "https://github.com/theseer",
  10003. "type": "github"
  10004. }
  10005. ],
  10006. "time": "2020-07-12T23:59:07+00:00"
  10007. },
  10008. {
  10009. "name": "webmozart/assert",
  10010. "version": "1.9.1",
  10011. "source": {
  10012. "type": "git",
  10013. "url": "https://github.com/webmozart/assert.git",
  10014. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389"
  10015. },
  10016. "dist": {
  10017. "type": "zip",
  10018. "url": "https://api.github.com/repos/webmozart/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389",
  10019. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389",
  10020. "shasum": "",
  10021. "mirrors": [
  10022. {
  10023. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10024. "preferred": true
  10025. }
  10026. ]
  10027. },
  10028. "require": {
  10029. "php": "^5.3.3 || ^7.0 || ^8.0",
  10030. "symfony/polyfill-ctype": "^1.8"
  10031. },
  10032. "conflict": {
  10033. "phpstan/phpstan": "<0.12.20",
  10034. "vimeo/psalm": "<3.9.1"
  10035. },
  10036. "require-dev": {
  10037. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  10038. },
  10039. "type": "library",
  10040. "autoload": {
  10041. "psr-4": {
  10042. "Webmozart\\Assert\\": "src/"
  10043. }
  10044. },
  10045. "notification-url": "https://packagist.org/downloads/",
  10046. "license": [
  10047. "MIT"
  10048. ],
  10049. "authors": [
  10050. {
  10051. "name": "Bernhard Schussek",
  10052. "email": "bschussek@gmail.com"
  10053. }
  10054. ],
  10055. "description": "Assertions to validate method input/output with nice error messages.",
  10056. "keywords": [
  10057. "assert",
  10058. "check",
  10059. "validate"
  10060. ],
  10061. "support": {
  10062. "issues": "https://github.com/webmozart/assert/issues",
  10063. "source": "https://github.com/webmozart/assert/tree/master"
  10064. },
  10065. "time": "2020-07-08T17:02:28+00:00"
  10066. }
  10067. ],
  10068. "aliases": [],
  10069. "minimum-stability": "dev",
  10070. "stability-flags": [],
  10071. "prefer-stable": true,
  10072. "prefer-lowest": false,
  10073. "platform": {
  10074. "php": "^7.1.3",
  10075. "ext-json": "*",
  10076. "ext-mbstring": "*",
  10077. "ext-openssl": "*",
  10078. "ext-pdo": "*",
  10079. "ext-bcmath": "*"
  10080. },
  10081. "platform-dev": [],
  10082. "plugin-api-version": "2.0.0"
  10083. }