composer.lock 300 KB

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