composer.lock 335 KB

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