composer.lock 308 KB

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