composer.lock 375 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425
  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": "4c4342ce6a1481f75fbca7b9c6f7fcde",
  8. "packages": [
  9. {
  10. "name": "bacon/bacon-qr-code",
  11. "version": "2.0.4",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/Bacon/BaconQrCode.git",
  15. "reference": "f73543ac4e1def05f1a70bcd1525c8a157a1ad09"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/f73543ac4e1def05f1a70bcd1525c8a157a1ad09",
  20. "reference": "f73543ac4e1def05f1a70bcd1525c8a157a1ad09",
  21. "shasum": "",
  22. "mirrors": [
  23. {
  24. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  25. "preferred": true
  26. }
  27. ]
  28. },
  29. "require": {
  30. "dasprid/enum": "^1.0.3",
  31. "ext-iconv": "*",
  32. "php": "^7.1 || ^8.0"
  33. },
  34. "require-dev": {
  35. "phly/keep-a-changelog": "^1.4",
  36. "phpunit/phpunit": "^7 | ^8 | ^9",
  37. "squizlabs/php_codesniffer": "^3.4"
  38. },
  39. "suggest": {
  40. "ext-imagick": "to generate QR code images"
  41. },
  42. "type": "library",
  43. "autoload": {
  44. "psr-4": {
  45. "BaconQrCode\\": "src/"
  46. }
  47. },
  48. "notification-url": "https://packagist.org/downloads/",
  49. "license": [
  50. "BSD-2-Clause"
  51. ],
  52. "authors": [
  53. {
  54. "name": "Ben Scholzen 'DASPRiD'",
  55. "email": "mail@dasprids.de",
  56. "homepage": "https://dasprids.de/",
  57. "role": "Developer"
  58. }
  59. ],
  60. "description": "BaconQrCode is a QR code generator for PHP.",
  61. "homepage": "https://github.com/Bacon/BaconQrCode",
  62. "support": {
  63. "issues": "https://github.com/Bacon/BaconQrCode/issues",
  64. "source": "https://github.com/Bacon/BaconQrCode/tree/2.0.4"
  65. },
  66. "time": "2021-06-18T13:26:35+00:00"
  67. },
  68. {
  69. "name": "brick/math",
  70. "version": "0.9.2",
  71. "source": {
  72. "type": "git",
  73. "url": "https://github.com/brick/math.git",
  74. "reference": "dff976c2f3487d42c1db75a3b180e2b9f0e72ce0"
  75. },
  76. "dist": {
  77. "type": "zip",
  78. "url": "https://api.github.com/repos/brick/math/zipball/dff976c2f3487d42c1db75a3b180e2b9f0e72ce0",
  79. "reference": "dff976c2f3487d42c1db75a3b180e2b9f0e72ce0",
  80. "shasum": "",
  81. "mirrors": [
  82. {
  83. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  84. "preferred": true
  85. }
  86. ]
  87. },
  88. "require": {
  89. "ext-json": "*",
  90. "php": "^7.1 || ^8.0"
  91. },
  92. "require-dev": {
  93. "php-coveralls/php-coveralls": "^2.2",
  94. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.0",
  95. "vimeo/psalm": "4.3.2"
  96. },
  97. "type": "library",
  98. "autoload": {
  99. "psr-4": {
  100. "Brick\\Math\\": "src/"
  101. }
  102. },
  103. "notification-url": "https://packagist.org/downloads/",
  104. "license": [
  105. "MIT"
  106. ],
  107. "description": "Arbitrary-precision arithmetic library",
  108. "keywords": [
  109. "Arbitrary-precision",
  110. "BigInteger",
  111. "BigRational",
  112. "arithmetic",
  113. "bigdecimal",
  114. "bignum",
  115. "brick",
  116. "math"
  117. ],
  118. "support": {
  119. "issues": "https://github.com/brick/math/issues",
  120. "source": "https://github.com/brick/math/tree/0.9.2"
  121. },
  122. "funding": [
  123. {
  124. "url": "https://tidelift.com/funding/github/packagist/brick/math",
  125. "type": "tidelift"
  126. }
  127. ],
  128. "time": "2021-01-20T22:51:39+00:00"
  129. },
  130. {
  131. "name": "cakephp/chronos",
  132. "version": "2.2.0",
  133. "source": {
  134. "type": "git",
  135. "url": "https://github.com/cakephp/chronos.git",
  136. "reference": "556e14da67307ffc2e68beeb7df0694dc8d1207d"
  137. },
  138. "dist": {
  139. "type": "zip",
  140. "url": "https://api.github.com/repos/cakephp/chronos/zipball/556e14da67307ffc2e68beeb7df0694dc8d1207d",
  141. "reference": "556e14da67307ffc2e68beeb7df0694dc8d1207d",
  142. "shasum": "",
  143. "mirrors": [
  144. {
  145. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  146. "preferred": true
  147. }
  148. ]
  149. },
  150. "require": {
  151. "php": ">=7.2"
  152. },
  153. "require-dev": {
  154. "cakephp/cakephp-codesniffer": "^4.5",
  155. "phpunit/phpunit": "^8.0 || ^9.0"
  156. },
  157. "type": "library",
  158. "autoload": {
  159. "psr-4": {
  160. "Cake\\Chronos\\": "src/"
  161. },
  162. "files": [
  163. "src/carbon_compat.php"
  164. ]
  165. },
  166. "notification-url": "https://packagist.org/downloads/",
  167. "license": [
  168. "MIT"
  169. ],
  170. "authors": [
  171. {
  172. "name": "Brian Nesbitt",
  173. "email": "brian@nesbot.com",
  174. "homepage": "http://nesbot.com"
  175. },
  176. {
  177. "name": "The CakePHP Team",
  178. "homepage": "http://cakephp.org"
  179. }
  180. ],
  181. "description": "A simple API extension for DateTime.",
  182. "homepage": "http://cakephp.org",
  183. "keywords": [
  184. "date",
  185. "datetime",
  186. "time"
  187. ],
  188. "support": {
  189. "irc": "irc://irc.freenode.org/cakephp",
  190. "issues": "https://github.com/cakephp/chronos/issues",
  191. "source": "https://github.com/cakephp/chronos"
  192. },
  193. "time": "2021-06-17T13:49:10+00:00"
  194. },
  195. {
  196. "name": "dasprid/enum",
  197. "version": "1.0.3",
  198. "source": {
  199. "type": "git",
  200. "url": "https://github.com/DASPRiD/Enum.git",
  201. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2"
  202. },
  203. "dist": {
  204. "type": "zip",
  205. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/5abf82f213618696dda8e3bf6f64dd042d8542b2",
  206. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2",
  207. "shasum": "",
  208. "mirrors": [
  209. {
  210. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  211. "preferred": true
  212. }
  213. ]
  214. },
  215. "require-dev": {
  216. "phpunit/phpunit": "^7 | ^8 | ^9",
  217. "squizlabs/php_codesniffer": "^3.4"
  218. },
  219. "type": "library",
  220. "autoload": {
  221. "psr-4": {
  222. "DASPRiD\\Enum\\": "src/"
  223. }
  224. },
  225. "notification-url": "https://packagist.org/downloads/",
  226. "license": [
  227. "BSD-2-Clause"
  228. ],
  229. "authors": [
  230. {
  231. "name": "Ben Scholzen 'DASPRiD'",
  232. "email": "mail@dasprids.de",
  233. "homepage": "https://dasprids.de/",
  234. "role": "Developer"
  235. }
  236. ],
  237. "description": "PHP 7.1 enum implementation",
  238. "keywords": [
  239. "enum",
  240. "map"
  241. ],
  242. "support": {
  243. "issues": "https://github.com/DASPRiD/Enum/issues",
  244. "source": "https://github.com/DASPRiD/Enum/tree/1.0.3"
  245. },
  246. "time": "2020-10-02T16:03:48+00:00"
  247. },
  248. {
  249. "name": "doctrine/cache",
  250. "version": "2.0.3",
  251. "source": {
  252. "type": "git",
  253. "url": "https://github.com/doctrine/cache.git",
  254. "reference": "c9622c6820d3ede1e2315a6a377ea1076e421d88"
  255. },
  256. "dist": {
  257. "type": "zip",
  258. "url": "https://api.github.com/repos/doctrine/cache/zipball/c9622c6820d3ede1e2315a6a377ea1076e421d88",
  259. "reference": "c9622c6820d3ede1e2315a6a377ea1076e421d88",
  260. "shasum": "",
  261. "mirrors": [
  262. {
  263. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  264. "preferred": true
  265. }
  266. ]
  267. },
  268. "require": {
  269. "php": "~7.1 || ^8.0"
  270. },
  271. "conflict": {
  272. "doctrine/common": ">2.2,<2.4",
  273. "psr/cache": ">=3"
  274. },
  275. "require-dev": {
  276. "alcaeus/mongo-php-adapter": "^1.1",
  277. "cache/integration-tests": "dev-master",
  278. "doctrine/coding-standard": "^8.0",
  279. "mongodb/mongodb": "^1.1",
  280. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  281. "predis/predis": "~1.0",
  282. "psr/cache": "^1.0 || ^2.0",
  283. "symfony/cache": "^4.4 || ^5.2"
  284. },
  285. "suggest": {
  286. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  287. },
  288. "type": "library",
  289. "autoload": {
  290. "psr-4": {
  291. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  292. }
  293. },
  294. "notification-url": "https://packagist.org/downloads/",
  295. "license": [
  296. "MIT"
  297. ],
  298. "authors": [
  299. {
  300. "name": "Guilherme Blanco",
  301. "email": "guilhermeblanco@gmail.com"
  302. },
  303. {
  304. "name": "Roman Borschel",
  305. "email": "roman@code-factory.org"
  306. },
  307. {
  308. "name": "Benjamin Eberlei",
  309. "email": "kontakt@beberlei.de"
  310. },
  311. {
  312. "name": "Jonathan Wage",
  313. "email": "jonwage@gmail.com"
  314. },
  315. {
  316. "name": "Johannes Schmitt",
  317. "email": "schmittjoh@gmail.com"
  318. }
  319. ],
  320. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  321. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  322. "keywords": [
  323. "abstraction",
  324. "apcu",
  325. "cache",
  326. "caching",
  327. "couchdb",
  328. "memcached",
  329. "php",
  330. "redis",
  331. "xcache"
  332. ],
  333. "support": {
  334. "issues": "https://github.com/doctrine/cache/issues",
  335. "source": "https://github.com/doctrine/cache/tree/2.0.3"
  336. },
  337. "funding": [
  338. {
  339. "url": "https://www.doctrine-project.org/sponsorship.html",
  340. "type": "custom"
  341. },
  342. {
  343. "url": "https://www.patreon.com/phpdoctrine",
  344. "type": "patreon"
  345. },
  346. {
  347. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  348. "type": "tidelift"
  349. }
  350. ],
  351. "time": "2021-05-25T09:43:04+00:00"
  352. },
  353. {
  354. "name": "doctrine/dbal",
  355. "version": "2.13.2",
  356. "source": {
  357. "type": "git",
  358. "url": "https://github.com/doctrine/dbal.git",
  359. "reference": "8dd39d2ead4409ce652fd4f02621060f009ea5e4"
  360. },
  361. "dist": {
  362. "type": "zip",
  363. "url": "https://api.github.com/repos/doctrine/dbal/zipball/8dd39d2ead4409ce652fd4f02621060f009ea5e4",
  364. "reference": "8dd39d2ead4409ce652fd4f02621060f009ea5e4",
  365. "shasum": "",
  366. "mirrors": [
  367. {
  368. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  369. "preferred": true
  370. }
  371. ]
  372. },
  373. "require": {
  374. "doctrine/cache": "^1.0|^2.0",
  375. "doctrine/deprecations": "^0.5.3",
  376. "doctrine/event-manager": "^1.0",
  377. "ext-pdo": "*",
  378. "php": "^7.1 || ^8"
  379. },
  380. "require-dev": {
  381. "doctrine/coding-standard": "9.0.0",
  382. "jetbrains/phpstorm-stubs": "2020.2",
  383. "phpstan/phpstan": "0.12.81",
  384. "phpunit/phpunit": "^7.5.20|^8.5|9.5.5",
  385. "squizlabs/php_codesniffer": "3.6.0",
  386. "symfony/cache": "^4.4",
  387. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
  388. "vimeo/psalm": "4.6.4"
  389. },
  390. "suggest": {
  391. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  392. },
  393. "bin": [
  394. "bin/doctrine-dbal"
  395. ],
  396. "type": "library",
  397. "autoload": {
  398. "psr-4": {
  399. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  400. }
  401. },
  402. "notification-url": "https://packagist.org/downloads/",
  403. "license": [
  404. "MIT"
  405. ],
  406. "authors": [
  407. {
  408. "name": "Guilherme Blanco",
  409. "email": "guilhermeblanco@gmail.com"
  410. },
  411. {
  412. "name": "Roman Borschel",
  413. "email": "roman@code-factory.org"
  414. },
  415. {
  416. "name": "Benjamin Eberlei",
  417. "email": "kontakt@beberlei.de"
  418. },
  419. {
  420. "name": "Jonathan Wage",
  421. "email": "jonwage@gmail.com"
  422. }
  423. ],
  424. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  425. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  426. "keywords": [
  427. "abstraction",
  428. "database",
  429. "db2",
  430. "dbal",
  431. "mariadb",
  432. "mssql",
  433. "mysql",
  434. "oci8",
  435. "oracle",
  436. "pdo",
  437. "pgsql",
  438. "postgresql",
  439. "queryobject",
  440. "sasql",
  441. "sql",
  442. "sqlanywhere",
  443. "sqlite",
  444. "sqlserver",
  445. "sqlsrv"
  446. ],
  447. "support": {
  448. "issues": "https://github.com/doctrine/dbal/issues",
  449. "source": "https://github.com/doctrine/dbal/tree/2.13.2"
  450. },
  451. "funding": [
  452. {
  453. "url": "https://www.doctrine-project.org/sponsorship.html",
  454. "type": "custom"
  455. },
  456. {
  457. "url": "https://www.patreon.com/phpdoctrine",
  458. "type": "patreon"
  459. },
  460. {
  461. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  462. "type": "tidelift"
  463. }
  464. ],
  465. "time": "2021-06-18T21:48:39+00:00"
  466. },
  467. {
  468. "name": "doctrine/deprecations",
  469. "version": "v0.5.3",
  470. "source": {
  471. "type": "git",
  472. "url": "https://github.com/doctrine/deprecations.git",
  473. "reference": "9504165960a1f83cc1480e2be1dd0a0478561314"
  474. },
  475. "dist": {
  476. "type": "zip",
  477. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/9504165960a1f83cc1480e2be1dd0a0478561314",
  478. "reference": "9504165960a1f83cc1480e2be1dd0a0478561314",
  479. "shasum": "",
  480. "mirrors": [
  481. {
  482. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  483. "preferred": true
  484. }
  485. ]
  486. },
  487. "require": {
  488. "php": "^7.1|^8.0"
  489. },
  490. "require-dev": {
  491. "doctrine/coding-standard": "^6.0|^7.0|^8.0",
  492. "phpunit/phpunit": "^7.0|^8.0|^9.0",
  493. "psr/log": "^1.0"
  494. },
  495. "suggest": {
  496. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  497. },
  498. "type": "library",
  499. "autoload": {
  500. "psr-4": {
  501. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  502. }
  503. },
  504. "notification-url": "https://packagist.org/downloads/",
  505. "license": [
  506. "MIT"
  507. ],
  508. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  509. "homepage": "https://www.doctrine-project.org/",
  510. "support": {
  511. "issues": "https://github.com/doctrine/deprecations/issues",
  512. "source": "https://github.com/doctrine/deprecations/tree/v0.5.3"
  513. },
  514. "time": "2021-03-21T12:59:47+00:00"
  515. },
  516. {
  517. "name": "doctrine/event-manager",
  518. "version": "1.1.1",
  519. "source": {
  520. "type": "git",
  521. "url": "https://github.com/doctrine/event-manager.git",
  522. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  523. },
  524. "dist": {
  525. "type": "zip",
  526. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  527. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  528. "shasum": "",
  529. "mirrors": [
  530. {
  531. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  532. "preferred": true
  533. }
  534. ]
  535. },
  536. "require": {
  537. "php": "^7.1 || ^8.0"
  538. },
  539. "conflict": {
  540. "doctrine/common": "<2.9@dev"
  541. },
  542. "require-dev": {
  543. "doctrine/coding-standard": "^6.0",
  544. "phpunit/phpunit": "^7.0"
  545. },
  546. "type": "library",
  547. "extra": {
  548. "branch-alias": {
  549. "dev-master": "1.0.x-dev"
  550. }
  551. },
  552. "autoload": {
  553. "psr-4": {
  554. "Doctrine\\Common\\": "lib/Doctrine/Common"
  555. }
  556. },
  557. "notification-url": "https://packagist.org/downloads/",
  558. "license": [
  559. "MIT"
  560. ],
  561. "authors": [
  562. {
  563. "name": "Guilherme Blanco",
  564. "email": "guilhermeblanco@gmail.com"
  565. },
  566. {
  567. "name": "Roman Borschel",
  568. "email": "roman@code-factory.org"
  569. },
  570. {
  571. "name": "Benjamin Eberlei",
  572. "email": "kontakt@beberlei.de"
  573. },
  574. {
  575. "name": "Jonathan Wage",
  576. "email": "jonwage@gmail.com"
  577. },
  578. {
  579. "name": "Johannes Schmitt",
  580. "email": "schmittjoh@gmail.com"
  581. },
  582. {
  583. "name": "Marco Pivetta",
  584. "email": "ocramius@gmail.com"
  585. }
  586. ],
  587. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  588. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  589. "keywords": [
  590. "event",
  591. "event dispatcher",
  592. "event manager",
  593. "event system",
  594. "events"
  595. ],
  596. "support": {
  597. "issues": "https://github.com/doctrine/event-manager/issues",
  598. "source": "https://github.com/doctrine/event-manager/tree/1.1.x"
  599. },
  600. "funding": [
  601. {
  602. "url": "https://www.doctrine-project.org/sponsorship.html",
  603. "type": "custom"
  604. },
  605. {
  606. "url": "https://www.patreon.com/phpdoctrine",
  607. "type": "patreon"
  608. },
  609. {
  610. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  611. "type": "tidelift"
  612. }
  613. ],
  614. "time": "2020-05-29T18:28:51+00:00"
  615. },
  616. {
  617. "name": "doctrine/inflector",
  618. "version": "2.0.3",
  619. "source": {
  620. "type": "git",
  621. "url": "https://github.com/doctrine/inflector.git",
  622. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210"
  623. },
  624. "dist": {
  625. "type": "zip",
  626. "url": "https://api.github.com/repos/doctrine/inflector/zipball/9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  627. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  628. "shasum": "",
  629. "mirrors": [
  630. {
  631. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  632. "preferred": true
  633. }
  634. ]
  635. },
  636. "require": {
  637. "php": "^7.2 || ^8.0"
  638. },
  639. "require-dev": {
  640. "doctrine/coding-standard": "^7.0",
  641. "phpstan/phpstan": "^0.11",
  642. "phpstan/phpstan-phpunit": "^0.11",
  643. "phpstan/phpstan-strict-rules": "^0.11",
  644. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  645. },
  646. "type": "library",
  647. "extra": {
  648. "branch-alias": {
  649. "dev-master": "2.0.x-dev"
  650. }
  651. },
  652. "autoload": {
  653. "psr-4": {
  654. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  655. }
  656. },
  657. "notification-url": "https://packagist.org/downloads/",
  658. "license": [
  659. "MIT"
  660. ],
  661. "authors": [
  662. {
  663. "name": "Guilherme Blanco",
  664. "email": "guilhermeblanco@gmail.com"
  665. },
  666. {
  667. "name": "Roman Borschel",
  668. "email": "roman@code-factory.org"
  669. },
  670. {
  671. "name": "Benjamin Eberlei",
  672. "email": "kontakt@beberlei.de"
  673. },
  674. {
  675. "name": "Jonathan Wage",
  676. "email": "jonwage@gmail.com"
  677. },
  678. {
  679. "name": "Johannes Schmitt",
  680. "email": "schmittjoh@gmail.com"
  681. }
  682. ],
  683. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  684. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  685. "keywords": [
  686. "inflection",
  687. "inflector",
  688. "lowercase",
  689. "manipulation",
  690. "php",
  691. "plural",
  692. "singular",
  693. "strings",
  694. "uppercase",
  695. "words"
  696. ],
  697. "support": {
  698. "issues": "https://github.com/doctrine/inflector/issues",
  699. "source": "https://github.com/doctrine/inflector/tree/2.0.x"
  700. },
  701. "funding": [
  702. {
  703. "url": "https://www.doctrine-project.org/sponsorship.html",
  704. "type": "custom"
  705. },
  706. {
  707. "url": "https://www.patreon.com/phpdoctrine",
  708. "type": "patreon"
  709. },
  710. {
  711. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  712. "type": "tidelift"
  713. }
  714. ],
  715. "time": "2020-05-29T15:13:26+00:00"
  716. },
  717. {
  718. "name": "doctrine/lexer",
  719. "version": "1.2.1",
  720. "source": {
  721. "type": "git",
  722. "url": "https://github.com/doctrine/lexer.git",
  723. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  724. },
  725. "dist": {
  726. "type": "zip",
  727. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  728. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  729. "shasum": "",
  730. "mirrors": [
  731. {
  732. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  733. "preferred": true
  734. }
  735. ]
  736. },
  737. "require": {
  738. "php": "^7.2 || ^8.0"
  739. },
  740. "require-dev": {
  741. "doctrine/coding-standard": "^6.0",
  742. "phpstan/phpstan": "^0.11.8",
  743. "phpunit/phpunit": "^8.2"
  744. },
  745. "type": "library",
  746. "extra": {
  747. "branch-alias": {
  748. "dev-master": "1.2.x-dev"
  749. }
  750. },
  751. "autoload": {
  752. "psr-4": {
  753. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  754. }
  755. },
  756. "notification-url": "https://packagist.org/downloads/",
  757. "license": [
  758. "MIT"
  759. ],
  760. "authors": [
  761. {
  762. "name": "Guilherme Blanco",
  763. "email": "guilhermeblanco@gmail.com"
  764. },
  765. {
  766. "name": "Roman Borschel",
  767. "email": "roman@code-factory.org"
  768. },
  769. {
  770. "name": "Johannes Schmitt",
  771. "email": "schmittjoh@gmail.com"
  772. }
  773. ],
  774. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  775. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  776. "keywords": [
  777. "annotations",
  778. "docblock",
  779. "lexer",
  780. "parser",
  781. "php"
  782. ],
  783. "support": {
  784. "issues": "https://github.com/doctrine/lexer/issues",
  785. "source": "https://github.com/doctrine/lexer/tree/1.2.1"
  786. },
  787. "funding": [
  788. {
  789. "url": "https://www.doctrine-project.org/sponsorship.html",
  790. "type": "custom"
  791. },
  792. {
  793. "url": "https://www.patreon.com/phpdoctrine",
  794. "type": "patreon"
  795. },
  796. {
  797. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  798. "type": "tidelift"
  799. }
  800. ],
  801. "time": "2020-05-25T17:44:05+00:00"
  802. },
  803. {
  804. "name": "dragonmantank/cron-expression",
  805. "version": "v2.3.1",
  806. "source": {
  807. "type": "git",
  808. "url": "https://github.com/dragonmantank/cron-expression.git",
  809. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2"
  810. },
  811. "dist": {
  812. "type": "zip",
  813. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/65b2d8ee1f10915efb3b55597da3404f096acba2",
  814. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2",
  815. "shasum": "",
  816. "mirrors": [
  817. {
  818. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  819. "preferred": true
  820. }
  821. ]
  822. },
  823. "require": {
  824. "php": "^7.0|^8.0"
  825. },
  826. "require-dev": {
  827. "phpunit/phpunit": "^6.4|^7.0|^8.0|^9.0"
  828. },
  829. "type": "library",
  830. "extra": {
  831. "branch-alias": {
  832. "dev-master": "2.3-dev"
  833. }
  834. },
  835. "autoload": {
  836. "psr-4": {
  837. "Cron\\": "src/Cron/"
  838. }
  839. },
  840. "notification-url": "https://packagist.org/downloads/",
  841. "license": [
  842. "MIT"
  843. ],
  844. "authors": [
  845. {
  846. "name": "Michael Dowling",
  847. "email": "mtdowling@gmail.com",
  848. "homepage": "https://github.com/mtdowling"
  849. },
  850. {
  851. "name": "Chris Tankersley",
  852. "email": "chris@ctankersley.com",
  853. "homepage": "https://github.com/dragonmantank"
  854. }
  855. ],
  856. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  857. "keywords": [
  858. "cron",
  859. "schedule"
  860. ],
  861. "support": {
  862. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  863. "source": "https://github.com/dragonmantank/cron-expression/tree/v2.3.1"
  864. },
  865. "funding": [
  866. {
  867. "url": "https://github.com/dragonmantank",
  868. "type": "github"
  869. }
  870. ],
  871. "time": "2020-10-13T00:52:37+00:00"
  872. },
  873. {
  874. "name": "egulias/email-validator",
  875. "version": "2.1.25",
  876. "source": {
  877. "type": "git",
  878. "url": "https://github.com/egulias/EmailValidator.git",
  879. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  880. },
  881. "dist": {
  882. "type": "zip",
  883. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  884. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  885. "shasum": "",
  886. "mirrors": [
  887. {
  888. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  889. "preferred": true
  890. }
  891. ]
  892. },
  893. "require": {
  894. "doctrine/lexer": "^1.0.1",
  895. "php": ">=5.5",
  896. "symfony/polyfill-intl-idn": "^1.10"
  897. },
  898. "require-dev": {
  899. "dominicsayers/isemail": "^3.0.7",
  900. "phpunit/phpunit": "^4.8.36|^7.5.15",
  901. "satooshi/php-coveralls": "^1.0.1"
  902. },
  903. "suggest": {
  904. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  905. },
  906. "type": "library",
  907. "extra": {
  908. "branch-alias": {
  909. "dev-master": "2.1.x-dev"
  910. }
  911. },
  912. "autoload": {
  913. "psr-4": {
  914. "Egulias\\EmailValidator\\": "src"
  915. }
  916. },
  917. "notification-url": "https://packagist.org/downloads/",
  918. "license": [
  919. "MIT"
  920. ],
  921. "authors": [
  922. {
  923. "name": "Eduardo Gulias Davis"
  924. }
  925. ],
  926. "description": "A library for validating emails against several RFCs",
  927. "homepage": "https://github.com/egulias/EmailValidator",
  928. "keywords": [
  929. "email",
  930. "emailvalidation",
  931. "emailvalidator",
  932. "validation",
  933. "validator"
  934. ],
  935. "support": {
  936. "issues": "https://github.com/egulias/EmailValidator/issues",
  937. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  938. },
  939. "funding": [
  940. {
  941. "url": "https://github.com/egulias",
  942. "type": "github"
  943. }
  944. ],
  945. "time": "2020-12-29T14:50:06+00:00"
  946. },
  947. {
  948. "name": "endroid/qr-code",
  949. "version": "3.9.7",
  950. "source": {
  951. "type": "git",
  952. "url": "https://github.com/endroid/qr-code.git",
  953. "reference": "94563d7b3105288e6ac53a67ae720e3669fac1f6"
  954. },
  955. "dist": {
  956. "type": "zip",
  957. "url": "https://api.github.com/repos/endroid/qr-code/zipball/94563d7b3105288e6ac53a67ae720e3669fac1f6",
  958. "reference": "94563d7b3105288e6ac53a67ae720e3669fac1f6",
  959. "shasum": "",
  960. "mirrors": [
  961. {
  962. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  963. "preferred": true
  964. }
  965. ]
  966. },
  967. "require": {
  968. "bacon/bacon-qr-code": "^2.0",
  969. "khanamiryan/qrcode-detector-decoder": "^1.0.5",
  970. "myclabs/php-enum": "^1.5",
  971. "php": "^7.3||^8.0",
  972. "symfony/options-resolver": "^3.4||^4.4||^5.0",
  973. "symfony/property-access": "^3.4||^4.4||^5.0"
  974. },
  975. "require-dev": {
  976. "endroid/quality": "^1.5.2",
  977. "setasign/fpdf": "^1.8"
  978. },
  979. "suggest": {
  980. "ext-gd": "Required for generating PNG images",
  981. "roave/security-advisories": "Avoids installation of package versions with vulnerabilities",
  982. "setasign/fpdf": "Required to use the FPDF writer.",
  983. "symfony/security-checker": "Checks your composer.lock for vulnerabilities"
  984. },
  985. "type": "library",
  986. "extra": {
  987. "branch-alias": {
  988. "dev-master": "3.x-dev"
  989. }
  990. },
  991. "autoload": {
  992. "psr-4": {
  993. "Endroid\\QrCode\\": "src/"
  994. }
  995. },
  996. "notification-url": "https://packagist.org/downloads/",
  997. "license": [
  998. "MIT"
  999. ],
  1000. "authors": [
  1001. {
  1002. "name": "Jeroen van den Enden",
  1003. "email": "info@endroid.nl"
  1004. }
  1005. ],
  1006. "description": "Endroid QR Code",
  1007. "homepage": "https://github.com/endroid/qr-code",
  1008. "keywords": [
  1009. "bundle",
  1010. "code",
  1011. "endroid",
  1012. "php",
  1013. "qr",
  1014. "qrcode"
  1015. ],
  1016. "support": {
  1017. "issues": "https://github.com/endroid/qr-code/issues",
  1018. "source": "https://github.com/endroid/qr-code/tree/3.9.7"
  1019. },
  1020. "funding": [
  1021. {
  1022. "url": "https://github.com/endroid",
  1023. "type": "github"
  1024. }
  1025. ],
  1026. "time": "2021-04-20T19:10:54+00:00"
  1027. },
  1028. {
  1029. "name": "ezyang/htmlpurifier",
  1030. "version": "v4.13.0",
  1031. "source": {
  1032. "type": "git",
  1033. "url": "https://github.com/ezyang/htmlpurifier.git",
  1034. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75"
  1035. },
  1036. "dist": {
  1037. "type": "zip",
  1038. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  1039. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  1040. "shasum": "",
  1041. "mirrors": [
  1042. {
  1043. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1044. "preferred": true
  1045. }
  1046. ]
  1047. },
  1048. "require": {
  1049. "php": ">=5.2"
  1050. },
  1051. "require-dev": {
  1052. "simpletest/simpletest": "dev-master#72de02a7b80c6bb8864ef9bf66d41d2f58f826bd"
  1053. },
  1054. "type": "library",
  1055. "autoload": {
  1056. "psr-0": {
  1057. "HTMLPurifier": "library/"
  1058. },
  1059. "files": [
  1060. "library/HTMLPurifier.composer.php"
  1061. ],
  1062. "exclude-from-classmap": [
  1063. "/library/HTMLPurifier/Language/"
  1064. ]
  1065. },
  1066. "notification-url": "https://packagist.org/downloads/",
  1067. "license": [
  1068. "LGPL-2.1-or-later"
  1069. ],
  1070. "authors": [
  1071. {
  1072. "name": "Edward Z. Yang",
  1073. "email": "admin@htmlpurifier.org",
  1074. "homepage": "http://ezyang.com"
  1075. }
  1076. ],
  1077. "description": "Standards compliant HTML filter written in PHP",
  1078. "homepage": "http://htmlpurifier.org/",
  1079. "keywords": [
  1080. "html"
  1081. ],
  1082. "support": {
  1083. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  1084. "source": "https://github.com/ezyang/htmlpurifier/tree/master"
  1085. },
  1086. "time": "2020-06-29T00:56:53+00:00"
  1087. },
  1088. {
  1089. "name": "facade/flare-client-php",
  1090. "version": "1.8.1",
  1091. "source": {
  1092. "type": "git",
  1093. "url": "https://github.com/facade/flare-client-php.git",
  1094. "reference": "47b639dc02bcfdfc4ebb83de703856fa01e35f5f"
  1095. },
  1096. "dist": {
  1097. "type": "zip",
  1098. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/47b639dc02bcfdfc4ebb83de703856fa01e35f5f",
  1099. "reference": "47b639dc02bcfdfc4ebb83de703856fa01e35f5f",
  1100. "shasum": "",
  1101. "mirrors": [
  1102. {
  1103. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1104. "preferred": true
  1105. }
  1106. ]
  1107. },
  1108. "require": {
  1109. "facade/ignition-contracts": "~1.0",
  1110. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  1111. "php": "^7.1|^8.0",
  1112. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  1113. "symfony/mime": "^3.4|^4.0|^5.1",
  1114. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  1115. },
  1116. "require-dev": {
  1117. "friendsofphp/php-cs-fixer": "^2.14",
  1118. "phpunit/phpunit": "^7.5.16",
  1119. "spatie/phpunit-snapshot-assertions": "^2.0"
  1120. },
  1121. "type": "library",
  1122. "extra": {
  1123. "branch-alias": {
  1124. "dev-master": "1.0-dev"
  1125. }
  1126. },
  1127. "autoload": {
  1128. "psr-4": {
  1129. "Facade\\FlareClient\\": "src"
  1130. },
  1131. "files": [
  1132. "src/helpers.php"
  1133. ]
  1134. },
  1135. "notification-url": "https://packagist.org/downloads/",
  1136. "license": [
  1137. "MIT"
  1138. ],
  1139. "description": "Send PHP errors to Flare",
  1140. "homepage": "https://github.com/facade/flare-client-php",
  1141. "keywords": [
  1142. "exception",
  1143. "facade",
  1144. "flare",
  1145. "reporting"
  1146. ],
  1147. "support": {
  1148. "issues": "https://github.com/facade/flare-client-php/issues",
  1149. "source": "https://github.com/facade/flare-client-php/tree/1.8.1"
  1150. },
  1151. "funding": [
  1152. {
  1153. "url": "https://github.com/spatie",
  1154. "type": "github"
  1155. }
  1156. ],
  1157. "time": "2021-05-31T19:23:29+00:00"
  1158. },
  1159. {
  1160. "name": "facade/ignition",
  1161. "version": "2.10.2",
  1162. "source": {
  1163. "type": "git",
  1164. "url": "https://github.com/facade/ignition.git",
  1165. "reference": "43688227bbf27c43bc1ad83af224f135b6ef0ff4"
  1166. },
  1167. "dist": {
  1168. "type": "zip",
  1169. "url": "https://api.github.com/repos/facade/ignition/zipball/43688227bbf27c43bc1ad83af224f135b6ef0ff4",
  1170. "reference": "43688227bbf27c43bc1ad83af224f135b6ef0ff4",
  1171. "shasum": "",
  1172. "mirrors": [
  1173. {
  1174. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1175. "preferred": true
  1176. }
  1177. ]
  1178. },
  1179. "require": {
  1180. "ext-json": "*",
  1181. "ext-mbstring": "*",
  1182. "facade/flare-client-php": "^1.6",
  1183. "facade/ignition-contracts": "^1.0.2",
  1184. "filp/whoops": "^2.4",
  1185. "illuminate/support": "^7.0|^8.0",
  1186. "monolog/monolog": "^2.0",
  1187. "php": "^7.2.5|^8.0",
  1188. "symfony/console": "^5.0",
  1189. "symfony/var-dumper": "^5.0"
  1190. },
  1191. "require-dev": {
  1192. "friendsofphp/php-cs-fixer": "^2.14",
  1193. "mockery/mockery": "^1.3",
  1194. "orchestra/testbench": "^5.0|^6.0",
  1195. "psalm/plugin-laravel": "^1.2"
  1196. },
  1197. "suggest": {
  1198. "laravel/telescope": "^3.1"
  1199. },
  1200. "type": "library",
  1201. "extra": {
  1202. "branch-alias": {
  1203. "dev-master": "2.x-dev"
  1204. },
  1205. "laravel": {
  1206. "providers": [
  1207. "Facade\\Ignition\\IgnitionServiceProvider"
  1208. ],
  1209. "aliases": {
  1210. "Flare": "Facade\\Ignition\\Facades\\Flare"
  1211. }
  1212. }
  1213. },
  1214. "autoload": {
  1215. "psr-4": {
  1216. "Facade\\Ignition\\": "src"
  1217. },
  1218. "files": [
  1219. "src/helpers.php"
  1220. ]
  1221. },
  1222. "notification-url": "https://packagist.org/downloads/",
  1223. "license": [
  1224. "MIT"
  1225. ],
  1226. "description": "A beautiful error page for Laravel applications.",
  1227. "homepage": "https://github.com/facade/ignition",
  1228. "keywords": [
  1229. "error",
  1230. "flare",
  1231. "laravel",
  1232. "page"
  1233. ],
  1234. "support": {
  1235. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  1236. "forum": "https://twitter.com/flareappio",
  1237. "issues": "https://github.com/facade/ignition/issues",
  1238. "source": "https://github.com/facade/ignition"
  1239. },
  1240. "time": "2021-06-11T06:57:25+00:00"
  1241. },
  1242. {
  1243. "name": "facade/ignition-contracts",
  1244. "version": "1.0.2",
  1245. "source": {
  1246. "type": "git",
  1247. "url": "https://github.com/facade/ignition-contracts.git",
  1248. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  1249. },
  1250. "dist": {
  1251. "type": "zip",
  1252. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  1253. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  1254. "shasum": "",
  1255. "mirrors": [
  1256. {
  1257. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1258. "preferred": true
  1259. }
  1260. ]
  1261. },
  1262. "require": {
  1263. "php": "^7.3|^8.0"
  1264. },
  1265. "require-dev": {
  1266. "friendsofphp/php-cs-fixer": "^v2.15.8",
  1267. "phpunit/phpunit": "^9.3.11",
  1268. "vimeo/psalm": "^3.17.1"
  1269. },
  1270. "type": "library",
  1271. "autoload": {
  1272. "psr-4": {
  1273. "Facade\\IgnitionContracts\\": "src"
  1274. }
  1275. },
  1276. "notification-url": "https://packagist.org/downloads/",
  1277. "license": [
  1278. "MIT"
  1279. ],
  1280. "authors": [
  1281. {
  1282. "name": "Freek Van der Herten",
  1283. "email": "freek@spatie.be",
  1284. "homepage": "https://flareapp.io",
  1285. "role": "Developer"
  1286. }
  1287. ],
  1288. "description": "Solution contracts for Ignition",
  1289. "homepage": "https://github.com/facade/ignition-contracts",
  1290. "keywords": [
  1291. "contracts",
  1292. "flare",
  1293. "ignition"
  1294. ],
  1295. "support": {
  1296. "issues": "https://github.com/facade/ignition-contracts/issues",
  1297. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  1298. },
  1299. "time": "2020-10-16T08:27:54+00:00"
  1300. },
  1301. {
  1302. "name": "fideloper/proxy",
  1303. "version": "4.4.1",
  1304. "source": {
  1305. "type": "git",
  1306. "url": "https://github.com/fideloper/TrustedProxy.git",
  1307. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0"
  1308. },
  1309. "dist": {
  1310. "type": "zip",
  1311. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  1312. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  1313. "shasum": "",
  1314. "mirrors": [
  1315. {
  1316. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1317. "preferred": true
  1318. }
  1319. ]
  1320. },
  1321. "require": {
  1322. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1323. "php": ">=5.4.0"
  1324. },
  1325. "require-dev": {
  1326. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1327. "mockery/mockery": "^1.0",
  1328. "phpunit/phpunit": "^6.0"
  1329. },
  1330. "type": "library",
  1331. "extra": {
  1332. "laravel": {
  1333. "providers": [
  1334. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  1335. ]
  1336. }
  1337. },
  1338. "autoload": {
  1339. "psr-4": {
  1340. "Fideloper\\Proxy\\": "src/"
  1341. }
  1342. },
  1343. "notification-url": "https://packagist.org/downloads/",
  1344. "license": [
  1345. "MIT"
  1346. ],
  1347. "authors": [
  1348. {
  1349. "name": "Chris Fidao",
  1350. "email": "fideloper@gmail.com"
  1351. }
  1352. ],
  1353. "description": "Set trusted proxies for Laravel",
  1354. "keywords": [
  1355. "load balancing",
  1356. "proxy",
  1357. "trusted proxy"
  1358. ],
  1359. "support": {
  1360. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  1361. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.1"
  1362. },
  1363. "time": "2020-10-22T13:48:01+00:00"
  1364. },
  1365. {
  1366. "name": "filp/whoops",
  1367. "version": "2.13.0",
  1368. "source": {
  1369. "type": "git",
  1370. "url": "https://github.com/filp/whoops.git",
  1371. "reference": "2edbc73a4687d9085c8f20f398eebade844e8424"
  1372. },
  1373. "dist": {
  1374. "type": "zip",
  1375. "url": "https://api.github.com/repos/filp/whoops/zipball/2edbc73a4687d9085c8f20f398eebade844e8424",
  1376. "reference": "2edbc73a4687d9085c8f20f398eebade844e8424",
  1377. "shasum": "",
  1378. "mirrors": [
  1379. {
  1380. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1381. "preferred": true
  1382. }
  1383. ]
  1384. },
  1385. "require": {
  1386. "php": "^5.5.9 || ^7.0 || ^8.0",
  1387. "psr/log": "^1.0.1"
  1388. },
  1389. "require-dev": {
  1390. "mockery/mockery": "^0.9 || ^1.0",
  1391. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  1392. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  1393. },
  1394. "suggest": {
  1395. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  1396. "whoops/soap": "Formats errors as SOAP responses"
  1397. },
  1398. "type": "library",
  1399. "extra": {
  1400. "branch-alias": {
  1401. "dev-master": "2.7-dev"
  1402. }
  1403. },
  1404. "autoload": {
  1405. "psr-4": {
  1406. "Whoops\\": "src/Whoops/"
  1407. }
  1408. },
  1409. "notification-url": "https://packagist.org/downloads/",
  1410. "license": [
  1411. "MIT"
  1412. ],
  1413. "authors": [
  1414. {
  1415. "name": "Filipe Dobreira",
  1416. "homepage": "https://github.com/filp",
  1417. "role": "Developer"
  1418. }
  1419. ],
  1420. "description": "php error handling for cool kids",
  1421. "homepage": "https://filp.github.io/whoops/",
  1422. "keywords": [
  1423. "error",
  1424. "exception",
  1425. "handling",
  1426. "library",
  1427. "throwable",
  1428. "whoops"
  1429. ],
  1430. "support": {
  1431. "issues": "https://github.com/filp/whoops/issues",
  1432. "source": "https://github.com/filp/whoops/tree/2.13.0"
  1433. },
  1434. "funding": [
  1435. {
  1436. "url": "https://github.com/denis-sokolov",
  1437. "type": "github"
  1438. }
  1439. ],
  1440. "time": "2021-06-04T12:00:00+00:00"
  1441. },
  1442. {
  1443. "name": "firebase/php-jwt",
  1444. "version": "v5.4.0",
  1445. "source": {
  1446. "type": "git",
  1447. "url": "https://github.com/firebase/php-jwt.git",
  1448. "reference": "d2113d9b2e0e349796e72d2a63cf9319100382d2"
  1449. },
  1450. "dist": {
  1451. "type": "zip",
  1452. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/d2113d9b2e0e349796e72d2a63cf9319100382d2",
  1453. "reference": "d2113d9b2e0e349796e72d2a63cf9319100382d2",
  1454. "shasum": "",
  1455. "mirrors": [
  1456. {
  1457. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1458. "preferred": true
  1459. }
  1460. ]
  1461. },
  1462. "require": {
  1463. "php": ">=5.3.0"
  1464. },
  1465. "require-dev": {
  1466. "phpunit/phpunit": ">=4.8 <=9"
  1467. },
  1468. "suggest": {
  1469. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  1470. },
  1471. "type": "library",
  1472. "autoload": {
  1473. "psr-4": {
  1474. "Firebase\\JWT\\": "src"
  1475. }
  1476. },
  1477. "notification-url": "https://packagist.org/downloads/",
  1478. "license": [
  1479. "BSD-3-Clause"
  1480. ],
  1481. "authors": [
  1482. {
  1483. "name": "Neuman Vong",
  1484. "email": "neuman+pear@twilio.com",
  1485. "role": "Developer"
  1486. },
  1487. {
  1488. "name": "Anant Narayanan",
  1489. "email": "anant@php.net",
  1490. "role": "Developer"
  1491. }
  1492. ],
  1493. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  1494. "homepage": "https://github.com/firebase/php-jwt",
  1495. "keywords": [
  1496. "jwt",
  1497. "php"
  1498. ],
  1499. "support": {
  1500. "issues": "https://github.com/firebase/php-jwt/issues",
  1501. "source": "https://github.com/firebase/php-jwt/tree/v5.4.0"
  1502. },
  1503. "time": "2021-06-23T19:00:23+00:00"
  1504. },
  1505. {
  1506. "name": "guzzlehttp/guzzle",
  1507. "version": "6.5.5",
  1508. "source": {
  1509. "type": "git",
  1510. "url": "https://github.com/guzzle/guzzle.git",
  1511. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
  1512. },
  1513. "dist": {
  1514. "type": "zip",
  1515. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1516. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1517. "shasum": "",
  1518. "mirrors": [
  1519. {
  1520. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1521. "preferred": true
  1522. }
  1523. ]
  1524. },
  1525. "require": {
  1526. "ext-json": "*",
  1527. "guzzlehttp/promises": "^1.0",
  1528. "guzzlehttp/psr7": "^1.6.1",
  1529. "php": ">=5.5",
  1530. "symfony/polyfill-intl-idn": "^1.17.0"
  1531. },
  1532. "require-dev": {
  1533. "ext-curl": "*",
  1534. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  1535. "psr/log": "^1.1"
  1536. },
  1537. "suggest": {
  1538. "psr/log": "Required for using the Log middleware"
  1539. },
  1540. "type": "library",
  1541. "extra": {
  1542. "branch-alias": {
  1543. "dev-master": "6.5-dev"
  1544. }
  1545. },
  1546. "autoload": {
  1547. "psr-4": {
  1548. "GuzzleHttp\\": "src/"
  1549. },
  1550. "files": [
  1551. "src/functions_include.php"
  1552. ]
  1553. },
  1554. "notification-url": "https://packagist.org/downloads/",
  1555. "license": [
  1556. "MIT"
  1557. ],
  1558. "authors": [
  1559. {
  1560. "name": "Michael Dowling",
  1561. "email": "mtdowling@gmail.com",
  1562. "homepage": "https://github.com/mtdowling"
  1563. }
  1564. ],
  1565. "description": "Guzzle is a PHP HTTP client library",
  1566. "homepage": "http://guzzlephp.org/",
  1567. "keywords": [
  1568. "client",
  1569. "curl",
  1570. "framework",
  1571. "http",
  1572. "http client",
  1573. "rest",
  1574. "web service"
  1575. ],
  1576. "support": {
  1577. "issues": "https://github.com/guzzle/guzzle/issues",
  1578. "source": "https://github.com/guzzle/guzzle/tree/6.5"
  1579. },
  1580. "time": "2020-06-16T21:01:06+00:00"
  1581. },
  1582. {
  1583. "name": "guzzlehttp/promises",
  1584. "version": "1.4.1",
  1585. "source": {
  1586. "type": "git",
  1587. "url": "https://github.com/guzzle/promises.git",
  1588. "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d"
  1589. },
  1590. "dist": {
  1591. "type": "zip",
  1592. "url": "https://api.github.com/repos/guzzle/promises/zipball/8e7d04f1f6450fef59366c399cfad4b9383aa30d",
  1593. "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d",
  1594. "shasum": "",
  1595. "mirrors": [
  1596. {
  1597. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1598. "preferred": true
  1599. }
  1600. ]
  1601. },
  1602. "require": {
  1603. "php": ">=5.5"
  1604. },
  1605. "require-dev": {
  1606. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  1607. },
  1608. "type": "library",
  1609. "extra": {
  1610. "branch-alias": {
  1611. "dev-master": "1.4-dev"
  1612. }
  1613. },
  1614. "autoload": {
  1615. "psr-4": {
  1616. "GuzzleHttp\\Promise\\": "src/"
  1617. },
  1618. "files": [
  1619. "src/functions_include.php"
  1620. ]
  1621. },
  1622. "notification-url": "https://packagist.org/downloads/",
  1623. "license": [
  1624. "MIT"
  1625. ],
  1626. "authors": [
  1627. {
  1628. "name": "Michael Dowling",
  1629. "email": "mtdowling@gmail.com",
  1630. "homepage": "https://github.com/mtdowling"
  1631. }
  1632. ],
  1633. "description": "Guzzle promises library",
  1634. "keywords": [
  1635. "promise"
  1636. ],
  1637. "support": {
  1638. "issues": "https://github.com/guzzle/promises/issues",
  1639. "source": "https://github.com/guzzle/promises/tree/1.4.1"
  1640. },
  1641. "time": "2021-03-07T09:25:29+00:00"
  1642. },
  1643. {
  1644. "name": "guzzlehttp/psr7",
  1645. "version": "1.8.2",
  1646. "source": {
  1647. "type": "git",
  1648. "url": "https://github.com/guzzle/psr7.git",
  1649. "reference": "dc960a912984efb74d0a90222870c72c87f10c91"
  1650. },
  1651. "dist": {
  1652. "type": "zip",
  1653. "url": "https://api.github.com/repos/guzzle/psr7/zipball/dc960a912984efb74d0a90222870c72c87f10c91",
  1654. "reference": "dc960a912984efb74d0a90222870c72c87f10c91",
  1655. "shasum": "",
  1656. "mirrors": [
  1657. {
  1658. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1659. "preferred": true
  1660. }
  1661. ]
  1662. },
  1663. "require": {
  1664. "php": ">=5.4.0",
  1665. "psr/http-message": "~1.0",
  1666. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  1667. },
  1668. "provide": {
  1669. "psr/http-message-implementation": "1.0"
  1670. },
  1671. "require-dev": {
  1672. "ext-zlib": "*",
  1673. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  1674. },
  1675. "suggest": {
  1676. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1677. },
  1678. "type": "library",
  1679. "extra": {
  1680. "branch-alias": {
  1681. "dev-master": "1.7-dev"
  1682. }
  1683. },
  1684. "autoload": {
  1685. "psr-4": {
  1686. "GuzzleHttp\\Psr7\\": "src/"
  1687. },
  1688. "files": [
  1689. "src/functions_include.php"
  1690. ]
  1691. },
  1692. "notification-url": "https://packagist.org/downloads/",
  1693. "license": [
  1694. "MIT"
  1695. ],
  1696. "authors": [
  1697. {
  1698. "name": "Michael Dowling",
  1699. "email": "mtdowling@gmail.com",
  1700. "homepage": "https://github.com/mtdowling"
  1701. },
  1702. {
  1703. "name": "Tobias Schultze",
  1704. "homepage": "https://github.com/Tobion"
  1705. }
  1706. ],
  1707. "description": "PSR-7 message implementation that also provides common utility methods",
  1708. "keywords": [
  1709. "http",
  1710. "message",
  1711. "psr-7",
  1712. "request",
  1713. "response",
  1714. "stream",
  1715. "uri",
  1716. "url"
  1717. ],
  1718. "support": {
  1719. "issues": "https://github.com/guzzle/psr7/issues",
  1720. "source": "https://github.com/guzzle/psr7/tree/1.8.2"
  1721. },
  1722. "time": "2021-04-26T09:17:50+00:00"
  1723. },
  1724. {
  1725. "name": "intervention/image",
  1726. "version": "2.5.1",
  1727. "source": {
  1728. "type": "git",
  1729. "url": "https://github.com/Intervention/image.git",
  1730. "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e"
  1731. },
  1732. "dist": {
  1733. "type": "zip",
  1734. "url": "https://api.github.com/repos/Intervention/image/zipball/abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
  1735. "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
  1736. "shasum": "",
  1737. "mirrors": [
  1738. {
  1739. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1740. "preferred": true
  1741. }
  1742. ]
  1743. },
  1744. "require": {
  1745. "ext-fileinfo": "*",
  1746. "guzzlehttp/psr7": "~1.1",
  1747. "php": ">=5.4.0"
  1748. },
  1749. "require-dev": {
  1750. "mockery/mockery": "~0.9.2",
  1751. "phpunit/phpunit": "^4.8 || ^5.7"
  1752. },
  1753. "suggest": {
  1754. "ext-gd": "to use GD library based image processing.",
  1755. "ext-imagick": "to use Imagick based image processing.",
  1756. "intervention/imagecache": "Caching extension for the Intervention Image library"
  1757. },
  1758. "type": "library",
  1759. "extra": {
  1760. "branch-alias": {
  1761. "dev-master": "2.4-dev"
  1762. },
  1763. "laravel": {
  1764. "providers": [
  1765. "Intervention\\Image\\ImageServiceProvider"
  1766. ],
  1767. "aliases": {
  1768. "Image": "Intervention\\Image\\Facades\\Image"
  1769. }
  1770. }
  1771. },
  1772. "autoload": {
  1773. "psr-4": {
  1774. "Intervention\\Image\\": "src/Intervention/Image"
  1775. }
  1776. },
  1777. "notification-url": "https://packagist.org/downloads/",
  1778. "license": [
  1779. "MIT"
  1780. ],
  1781. "authors": [
  1782. {
  1783. "name": "Oliver Vogel",
  1784. "email": "oliver@olivervogel.com",
  1785. "homepage": "http://olivervogel.com/"
  1786. }
  1787. ],
  1788. "description": "Image handling and manipulation library with support for Laravel integration",
  1789. "homepage": "http://image.intervention.io/",
  1790. "keywords": [
  1791. "gd",
  1792. "image",
  1793. "imagick",
  1794. "laravel",
  1795. "thumbnail",
  1796. "watermark"
  1797. ],
  1798. "support": {
  1799. "issues": "https://github.com/Intervention/image/issues",
  1800. "source": "https://github.com/Intervention/image/tree/master"
  1801. },
  1802. "time": "2019-11-02T09:15:47+00:00"
  1803. },
  1804. {
  1805. "name": "khanamiryan/qrcode-detector-decoder",
  1806. "version": "1.0.5.1",
  1807. "source": {
  1808. "type": "git",
  1809. "url": "https://github.com/khanamiryan/php-qrcode-detector-decoder.git",
  1810. "reference": "b96163d4f074970dfe67d4185e75e1f4541b30ca"
  1811. },
  1812. "dist": {
  1813. "type": "zip",
  1814. "url": "https://api.github.com/repos/khanamiryan/php-qrcode-detector-decoder/zipball/b96163d4f074970dfe67d4185e75e1f4541b30ca",
  1815. "reference": "b96163d4f074970dfe67d4185e75e1f4541b30ca",
  1816. "shasum": "",
  1817. "mirrors": [
  1818. {
  1819. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1820. "preferred": true
  1821. }
  1822. ]
  1823. },
  1824. "require": {
  1825. "php": ">=5.6"
  1826. },
  1827. "require-dev": {
  1828. "phpunit/phpunit": "^5.7 | ^7.5 | ^8.0 | ^9.0"
  1829. },
  1830. "type": "library",
  1831. "autoload": {
  1832. "psr-4": {
  1833. "Zxing\\": "lib/"
  1834. },
  1835. "files": [
  1836. "lib/Common/customFunctions.php"
  1837. ]
  1838. },
  1839. "notification-url": "https://packagist.org/downloads/",
  1840. "license": [
  1841. "MIT",
  1842. "Apache-2.0"
  1843. ],
  1844. "authors": [
  1845. {
  1846. "name": "Ashot Khanamiryan",
  1847. "email": "a.khanamiryan@gmail.com",
  1848. "homepage": "https://github.com/khanamiryan",
  1849. "role": "Developer"
  1850. }
  1851. ],
  1852. "description": "QR code decoder / reader",
  1853. "homepage": "https://github.com/khanamiryan/php-qrcode-detector-decoder/",
  1854. "keywords": [
  1855. "barcode",
  1856. "qr",
  1857. "zxing"
  1858. ],
  1859. "support": {
  1860. "issues": "https://github.com/khanamiryan/php-qrcode-detector-decoder/issues",
  1861. "source": "https://github.com/khanamiryan/php-qrcode-detector-decoder/tree/1.0.5.1"
  1862. },
  1863. "time": "2021-04-21T08:02:08+00:00"
  1864. },
  1865. {
  1866. "name": "kitetail/zttp",
  1867. "version": "v0.6.0",
  1868. "source": {
  1869. "type": "git",
  1870. "url": "https://github.com/kitetail/zttp.git",
  1871. "reference": "92662d7f9025b4c9a0b8a585e31810461fcca435"
  1872. },
  1873. "dist": {
  1874. "type": "zip",
  1875. "url": "https://api.github.com/repos/kitetail/zttp/zipball/92662d7f9025b4c9a0b8a585e31810461fcca435",
  1876. "reference": "92662d7f9025b4c9a0b8a585e31810461fcca435",
  1877. "shasum": "",
  1878. "mirrors": [
  1879. {
  1880. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1881. "preferred": true
  1882. }
  1883. ]
  1884. },
  1885. "require": {
  1886. "guzzlehttp/guzzle": "^6.0",
  1887. "php": ">=7.0",
  1888. "tightenco/collect": "^5.4"
  1889. },
  1890. "require-dev": {
  1891. "laravel/lumen-framework": "5.5.*",
  1892. "phpunit/phpunit": "^6.0"
  1893. },
  1894. "type": "library",
  1895. "autoload": {
  1896. "files": [
  1897. "src/Zttp.php"
  1898. ]
  1899. },
  1900. "notification-url": "https://packagist.org/downloads/",
  1901. "license": [
  1902. "MIT"
  1903. ],
  1904. "authors": [
  1905. {
  1906. "name": "Adam Wathan",
  1907. "email": "adam.wathan@gmail.com"
  1908. }
  1909. ],
  1910. "description": "A developer-experience focused HTTP client, optimized for most common use cases.",
  1911. "keywords": [
  1912. "Guzzle",
  1913. "http"
  1914. ],
  1915. "support": {
  1916. "issues": "https://github.com/kitetail/zttp/issues",
  1917. "source": "https://github.com/kitetail/zttp/tree/master"
  1918. },
  1919. "time": "2019-06-10T12:18:52+00:00"
  1920. },
  1921. {
  1922. "name": "laravel/framework",
  1923. "version": "v7.30.4",
  1924. "source": {
  1925. "type": "git",
  1926. "url": "https://github.com/laravel/framework.git",
  1927. "reference": "9dd38140dc2924daa1a020a3d7a45f9ceff03df3"
  1928. },
  1929. "dist": {
  1930. "type": "zip",
  1931. "url": "https://api.github.com/repos/laravel/framework/zipball/9dd38140dc2924daa1a020a3d7a45f9ceff03df3",
  1932. "reference": "9dd38140dc2924daa1a020a3d7a45f9ceff03df3",
  1933. "shasum": "",
  1934. "mirrors": [
  1935. {
  1936. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1937. "preferred": true
  1938. }
  1939. ]
  1940. },
  1941. "require": {
  1942. "doctrine/inflector": "^1.4|^2.0",
  1943. "dragonmantank/cron-expression": "^2.3.1",
  1944. "egulias/email-validator": "^2.1.10",
  1945. "ext-json": "*",
  1946. "ext-mbstring": "*",
  1947. "ext-openssl": "*",
  1948. "league/commonmark": "^1.3",
  1949. "league/flysystem": "^1.1",
  1950. "monolog/monolog": "^2.0",
  1951. "nesbot/carbon": "^2.31",
  1952. "opis/closure": "^3.6",
  1953. "php": "^7.2.5|^8.0",
  1954. "psr/container": "^1.0",
  1955. "psr/simple-cache": "^1.0",
  1956. "ramsey/uuid": "^3.7|^4.0",
  1957. "swiftmailer/swiftmailer": "^6.0",
  1958. "symfony/console": "^5.0",
  1959. "symfony/error-handler": "^5.0",
  1960. "symfony/finder": "^5.0",
  1961. "symfony/http-foundation": "^5.0",
  1962. "symfony/http-kernel": "^5.0",
  1963. "symfony/mime": "^5.0",
  1964. "symfony/polyfill-php73": "^1.17",
  1965. "symfony/process": "^5.0",
  1966. "symfony/routing": "^5.0",
  1967. "symfony/var-dumper": "^5.0",
  1968. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  1969. "vlucas/phpdotenv": "^4.0",
  1970. "voku/portable-ascii": "^1.4.8"
  1971. },
  1972. "conflict": {
  1973. "tightenco/collect": "<5.5.33"
  1974. },
  1975. "provide": {
  1976. "psr/container-implementation": "1.0"
  1977. },
  1978. "replace": {
  1979. "illuminate/auth": "self.version",
  1980. "illuminate/broadcasting": "self.version",
  1981. "illuminate/bus": "self.version",
  1982. "illuminate/cache": "self.version",
  1983. "illuminate/config": "self.version",
  1984. "illuminate/console": "self.version",
  1985. "illuminate/container": "self.version",
  1986. "illuminate/contracts": "self.version",
  1987. "illuminate/cookie": "self.version",
  1988. "illuminate/database": "self.version",
  1989. "illuminate/encryption": "self.version",
  1990. "illuminate/events": "self.version",
  1991. "illuminate/filesystem": "self.version",
  1992. "illuminate/hashing": "self.version",
  1993. "illuminate/http": "self.version",
  1994. "illuminate/log": "self.version",
  1995. "illuminate/mail": "self.version",
  1996. "illuminate/notifications": "self.version",
  1997. "illuminate/pagination": "self.version",
  1998. "illuminate/pipeline": "self.version",
  1999. "illuminate/queue": "self.version",
  2000. "illuminate/redis": "self.version",
  2001. "illuminate/routing": "self.version",
  2002. "illuminate/session": "self.version",
  2003. "illuminate/support": "self.version",
  2004. "illuminate/testing": "self.version",
  2005. "illuminate/translation": "self.version",
  2006. "illuminate/validation": "self.version",
  2007. "illuminate/view": "self.version"
  2008. },
  2009. "require-dev": {
  2010. "aws/aws-sdk-php": "^3.155",
  2011. "doctrine/dbal": "^2.6",
  2012. "filp/whoops": "^2.8",
  2013. "guzzlehttp/guzzle": "^6.3.1|^7.0.1",
  2014. "league/flysystem-cached-adapter": "^1.0",
  2015. "mockery/mockery": "~1.3.3|^1.4.2",
  2016. "moontoast/math": "^1.1",
  2017. "orchestra/testbench-core": "^5.8",
  2018. "pda/pheanstalk": "^4.0",
  2019. "phpunit/phpunit": "^8.4|^9.3.3",
  2020. "predis/predis": "^1.1.1",
  2021. "symfony/cache": "^5.0"
  2022. },
  2023. "suggest": {
  2024. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.155).",
  2025. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
  2026. "ext-ftp": "Required to use the Flysystem FTP driver.",
  2027. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  2028. "ext-memcached": "Required to use the memcache cache driver.",
  2029. "ext-pcntl": "Required to use all features of the queue worker.",
  2030. "ext-posix": "Required to use all features of the queue worker.",
  2031. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  2032. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  2033. "filp/whoops": "Required for friendly error pages in development (^2.8).",
  2034. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.3.1|^7.0.1).",
  2035. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  2036. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  2037. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  2038. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  2039. "mockery/mockery": "Required to use mocking (~1.3.3|^1.4.2).",
  2040. "moontoast/math": "Required to use ordered UUIDs (^1.1).",
  2041. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  2042. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  2043. "phpunit/phpunit": "Required to use assertions and run tests (^8.4|^9.3.3).",
  2044. "predis/predis": "Required to use the predis connector (^1.1.2).",
  2045. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  2046. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0).",
  2047. "symfony/cache": "Required to PSR-6 cache bridge (^5.0).",
  2048. "symfony/filesystem": "Required to create relative storage directory symbolic links (^5.0).",
  2049. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  2050. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  2051. },
  2052. "type": "library",
  2053. "extra": {
  2054. "branch-alias": {
  2055. "dev-master": "7.x-dev"
  2056. }
  2057. },
  2058. "autoload": {
  2059. "files": [
  2060. "src/Illuminate/Foundation/helpers.php",
  2061. "src/Illuminate/Support/helpers.php"
  2062. ],
  2063. "psr-4": {
  2064. "Illuminate\\": "src/Illuminate/"
  2065. }
  2066. },
  2067. "notification-url": "https://packagist.org/downloads/",
  2068. "license": [
  2069. "MIT"
  2070. ],
  2071. "authors": [
  2072. {
  2073. "name": "Taylor Otwell",
  2074. "email": "taylor@laravel.com"
  2075. }
  2076. ],
  2077. "description": "The Laravel Framework.",
  2078. "homepage": "https://laravel.com",
  2079. "keywords": [
  2080. "framework",
  2081. "laravel"
  2082. ],
  2083. "support": {
  2084. "issues": "https://github.com/laravel/framework/issues",
  2085. "source": "https://github.com/laravel/framework"
  2086. },
  2087. "time": "2021-01-21T14:10:48+00:00"
  2088. },
  2089. {
  2090. "name": "laravel/horizon",
  2091. "version": "v4.3.5",
  2092. "source": {
  2093. "type": "git",
  2094. "url": "https://github.com/laravel/horizon.git",
  2095. "reference": "b3fba0daaaaf5e84197b06dd25f3b27bb7301171"
  2096. },
  2097. "dist": {
  2098. "type": "zip",
  2099. "url": "https://api.github.com/repos/laravel/horizon/zipball/b3fba0daaaaf5e84197b06dd25f3b27bb7301171",
  2100. "reference": "b3fba0daaaaf5e84197b06dd25f3b27bb7301171",
  2101. "shasum": "",
  2102. "mirrors": [
  2103. {
  2104. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2105. "preferred": true
  2106. }
  2107. ]
  2108. },
  2109. "require": {
  2110. "cakephp/chronos": "^2.0",
  2111. "ext-json": "*",
  2112. "ext-pcntl": "*",
  2113. "ext-posix": "*",
  2114. "illuminate/contracts": "^7.0",
  2115. "illuminate/queue": "^7.0",
  2116. "illuminate/support": "^7.0",
  2117. "php": "^7.2",
  2118. "ramsey/uuid": "^3.5|^4.0",
  2119. "symfony/error-handler": "^5.0",
  2120. "symfony/process": "^5.0"
  2121. },
  2122. "require-dev": {
  2123. "mockery/mockery": "^1.0",
  2124. "orchestra/testbench": "^5.0",
  2125. "phpunit/phpunit": "^8.0",
  2126. "predis/predis": "^1.1"
  2127. },
  2128. "suggest": {
  2129. "ext-redis": "Required to use the Redis PHP driver.",
  2130. "predis/predis": "Required when not using the Redis PHP driver (^1.1)."
  2131. },
  2132. "type": "library",
  2133. "extra": {
  2134. "branch-alias": {
  2135. "dev-master": "4.x-dev"
  2136. },
  2137. "laravel": {
  2138. "providers": [
  2139. "Laravel\\Horizon\\HorizonServiceProvider"
  2140. ],
  2141. "aliases": {
  2142. "Horizon": "Laravel\\Horizon\\Horizon"
  2143. }
  2144. }
  2145. },
  2146. "autoload": {
  2147. "psr-4": {
  2148. "Laravel\\Horizon\\": "src/"
  2149. }
  2150. },
  2151. "notification-url": "https://packagist.org/downloads/",
  2152. "license": [
  2153. "MIT"
  2154. ],
  2155. "authors": [
  2156. {
  2157. "name": "Taylor Otwell",
  2158. "email": "taylor@laravel.com"
  2159. }
  2160. ],
  2161. "description": "Dashboard and code-driven configuration for Laravel queues.",
  2162. "keywords": [
  2163. "laravel",
  2164. "queue"
  2165. ],
  2166. "support": {
  2167. "issues": "https://github.com/laravel/horizon/issues",
  2168. "source": "https://github.com/laravel/horizon/tree/4.x"
  2169. },
  2170. "time": "2020-09-08T13:19:23+00:00"
  2171. },
  2172. {
  2173. "name": "laravel/tinker",
  2174. "version": "v2.6.1",
  2175. "source": {
  2176. "type": "git",
  2177. "url": "https://github.com/laravel/tinker.git",
  2178. "reference": "04ad32c1a3328081097a181875733fa51f402083"
  2179. },
  2180. "dist": {
  2181. "type": "zip",
  2182. "url": "https://api.github.com/repos/laravel/tinker/zipball/04ad32c1a3328081097a181875733fa51f402083",
  2183. "reference": "04ad32c1a3328081097a181875733fa51f402083",
  2184. "shasum": "",
  2185. "mirrors": [
  2186. {
  2187. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2188. "preferred": true
  2189. }
  2190. ]
  2191. },
  2192. "require": {
  2193. "illuminate/console": "^6.0|^7.0|^8.0",
  2194. "illuminate/contracts": "^6.0|^7.0|^8.0",
  2195. "illuminate/support": "^6.0|^7.0|^8.0",
  2196. "php": "^7.2.5|^8.0",
  2197. "psy/psysh": "^0.10.4",
  2198. "symfony/var-dumper": "^4.3.4|^5.0"
  2199. },
  2200. "require-dev": {
  2201. "mockery/mockery": "~1.3.3|^1.4.2",
  2202. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2203. },
  2204. "suggest": {
  2205. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0)."
  2206. },
  2207. "type": "library",
  2208. "extra": {
  2209. "branch-alias": {
  2210. "dev-master": "2.x-dev"
  2211. },
  2212. "laravel": {
  2213. "providers": [
  2214. "Laravel\\Tinker\\TinkerServiceProvider"
  2215. ]
  2216. }
  2217. },
  2218. "autoload": {
  2219. "psr-4": {
  2220. "Laravel\\Tinker\\": "src/"
  2221. }
  2222. },
  2223. "notification-url": "https://packagist.org/downloads/",
  2224. "license": [
  2225. "MIT"
  2226. ],
  2227. "authors": [
  2228. {
  2229. "name": "Taylor Otwell",
  2230. "email": "taylor@laravel.com"
  2231. }
  2232. ],
  2233. "description": "Powerful REPL for the Laravel framework.",
  2234. "keywords": [
  2235. "REPL",
  2236. "Tinker",
  2237. "laravel",
  2238. "psysh"
  2239. ],
  2240. "support": {
  2241. "issues": "https://github.com/laravel/tinker/issues",
  2242. "source": "https://github.com/laravel/tinker/tree/v2.6.1"
  2243. },
  2244. "time": "2021-03-02T16:53:12+00:00"
  2245. },
  2246. {
  2247. "name": "laravel/ui",
  2248. "version": "v2.5.0",
  2249. "source": {
  2250. "type": "git",
  2251. "url": "https://github.com/laravel/ui.git",
  2252. "reference": "d01a705763c243b07be795e9d1bb47f89260f73d"
  2253. },
  2254. "dist": {
  2255. "type": "zip",
  2256. "url": "https://api.github.com/repos/laravel/ui/zipball/d01a705763c243b07be795e9d1bb47f89260f73d",
  2257. "reference": "d01a705763c243b07be795e9d1bb47f89260f73d",
  2258. "shasum": "",
  2259. "mirrors": [
  2260. {
  2261. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2262. "preferred": true
  2263. }
  2264. ]
  2265. },
  2266. "require": {
  2267. "illuminate/console": "^7.0",
  2268. "illuminate/filesystem": "^7.0",
  2269. "illuminate/support": "^7.0",
  2270. "php": "^7.2.5|^8.0"
  2271. },
  2272. "type": "library",
  2273. "extra": {
  2274. "laravel": {
  2275. "providers": [
  2276. "Laravel\\Ui\\UiServiceProvider"
  2277. ]
  2278. }
  2279. },
  2280. "autoload": {
  2281. "psr-4": {
  2282. "Laravel\\Ui\\": "src/",
  2283. "Illuminate\\Foundation\\Auth\\": "auth-backend/"
  2284. }
  2285. },
  2286. "notification-url": "https://packagist.org/downloads/",
  2287. "license": [
  2288. "MIT"
  2289. ],
  2290. "authors": [
  2291. {
  2292. "name": "Taylor Otwell",
  2293. "email": "taylor@laravel.com"
  2294. }
  2295. ],
  2296. "description": "Laravel UI utilities and presets.",
  2297. "keywords": [
  2298. "laravel",
  2299. "ui"
  2300. ],
  2301. "support": {
  2302. "issues": "https://github.com/laravel/ui/issues",
  2303. "source": "https://github.com/laravel/ui/tree/v2.5.0"
  2304. },
  2305. "time": "2020-11-03T19:45:19+00:00"
  2306. },
  2307. {
  2308. "name": "league/commonmark",
  2309. "version": "1.6.5",
  2310. "source": {
  2311. "type": "git",
  2312. "url": "https://github.com/thephpleague/commonmark.git",
  2313. "reference": "44ffd8d3c4a9133e4bd0548622b09c55af39db5f"
  2314. },
  2315. "dist": {
  2316. "type": "zip",
  2317. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/44ffd8d3c4a9133e4bd0548622b09c55af39db5f",
  2318. "reference": "44ffd8d3c4a9133e4bd0548622b09c55af39db5f",
  2319. "shasum": "",
  2320. "mirrors": [
  2321. {
  2322. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2323. "preferred": true
  2324. }
  2325. ]
  2326. },
  2327. "require": {
  2328. "ext-mbstring": "*",
  2329. "php": "^7.1 || ^8.0"
  2330. },
  2331. "conflict": {
  2332. "scrutinizer/ocular": "1.7.*"
  2333. },
  2334. "require-dev": {
  2335. "cebe/markdown": "~1.0",
  2336. "commonmark/commonmark.js": "0.29.2",
  2337. "erusev/parsedown": "~1.0",
  2338. "ext-json": "*",
  2339. "github/gfm": "0.29.0",
  2340. "michelf/php-markdown": "~1.4",
  2341. "mikehaertl/php-shellcommand": "^1.4",
  2342. "phpstan/phpstan": "^0.12.90",
  2343. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.2",
  2344. "scrutinizer/ocular": "^1.5",
  2345. "symfony/finder": "^4.2"
  2346. },
  2347. "bin": [
  2348. "bin/commonmark"
  2349. ],
  2350. "type": "library",
  2351. "autoload": {
  2352. "psr-4": {
  2353. "League\\CommonMark\\": "src"
  2354. }
  2355. },
  2356. "notification-url": "https://packagist.org/downloads/",
  2357. "license": [
  2358. "BSD-3-Clause"
  2359. ],
  2360. "authors": [
  2361. {
  2362. "name": "Colin O'Dell",
  2363. "email": "colinodell@gmail.com",
  2364. "homepage": "https://www.colinodell.com",
  2365. "role": "Lead Developer"
  2366. }
  2367. ],
  2368. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and Github-Flavored Markdown (GFM)",
  2369. "homepage": "https://commonmark.thephpleague.com",
  2370. "keywords": [
  2371. "commonmark",
  2372. "flavored",
  2373. "gfm",
  2374. "github",
  2375. "github-flavored",
  2376. "markdown",
  2377. "md",
  2378. "parser"
  2379. ],
  2380. "support": {
  2381. "docs": "https://commonmark.thephpleague.com/",
  2382. "issues": "https://github.com/thephpleague/commonmark/issues",
  2383. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2384. "source": "https://github.com/thephpleague/commonmark"
  2385. },
  2386. "funding": [
  2387. {
  2388. "url": "https://enjoy.gitstore.app/repositories/thephpleague/commonmark",
  2389. "type": "custom"
  2390. },
  2391. {
  2392. "url": "https://www.colinodell.com/sponsor",
  2393. "type": "custom"
  2394. },
  2395. {
  2396. "url": "https://www.paypal.me/colinpodell/10.00",
  2397. "type": "custom"
  2398. },
  2399. {
  2400. "url": "https://github.com/colinodell",
  2401. "type": "github"
  2402. },
  2403. {
  2404. "url": "https://www.patreon.com/colinodell",
  2405. "type": "patreon"
  2406. },
  2407. {
  2408. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2409. "type": "tidelift"
  2410. }
  2411. ],
  2412. "time": "2021-06-26T11:57:13+00:00"
  2413. },
  2414. {
  2415. "name": "league/flysystem",
  2416. "version": "1.1.4",
  2417. "source": {
  2418. "type": "git",
  2419. "url": "https://github.com/thephpleague/flysystem.git",
  2420. "reference": "f3ad69181b8afed2c9edf7be5a2918144ff4ea32"
  2421. },
  2422. "dist": {
  2423. "type": "zip",
  2424. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/f3ad69181b8afed2c9edf7be5a2918144ff4ea32",
  2425. "reference": "f3ad69181b8afed2c9edf7be5a2918144ff4ea32",
  2426. "shasum": "",
  2427. "mirrors": [
  2428. {
  2429. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2430. "preferred": true
  2431. }
  2432. ]
  2433. },
  2434. "require": {
  2435. "ext-fileinfo": "*",
  2436. "league/mime-type-detection": "^1.3",
  2437. "php": "^7.2.5 || ^8.0"
  2438. },
  2439. "conflict": {
  2440. "league/flysystem-sftp": "<1.0.6"
  2441. },
  2442. "require-dev": {
  2443. "phpspec/prophecy": "^1.11.1",
  2444. "phpunit/phpunit": "^8.5.8"
  2445. },
  2446. "suggest": {
  2447. "ext-ftp": "Allows you to use FTP server storage",
  2448. "ext-openssl": "Allows you to use FTPS server storage",
  2449. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  2450. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  2451. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  2452. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2453. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  2454. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2455. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  2456. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2457. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2458. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2459. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2460. },
  2461. "type": "library",
  2462. "extra": {
  2463. "branch-alias": {
  2464. "dev-master": "1.1-dev"
  2465. }
  2466. },
  2467. "autoload": {
  2468. "psr-4": {
  2469. "League\\Flysystem\\": "src/"
  2470. }
  2471. },
  2472. "notification-url": "https://packagist.org/downloads/",
  2473. "license": [
  2474. "MIT"
  2475. ],
  2476. "authors": [
  2477. {
  2478. "name": "Frank de Jonge",
  2479. "email": "info@frenky.net"
  2480. }
  2481. ],
  2482. "description": "Filesystem abstraction: Many filesystems, one API.",
  2483. "keywords": [
  2484. "Cloud Files",
  2485. "WebDAV",
  2486. "abstraction",
  2487. "aws",
  2488. "cloud",
  2489. "copy.com",
  2490. "dropbox",
  2491. "file systems",
  2492. "files",
  2493. "filesystem",
  2494. "filesystems",
  2495. "ftp",
  2496. "rackspace",
  2497. "remote",
  2498. "s3",
  2499. "sftp",
  2500. "storage"
  2501. ],
  2502. "support": {
  2503. "issues": "https://github.com/thephpleague/flysystem/issues",
  2504. "source": "https://github.com/thephpleague/flysystem/tree/1.1.4"
  2505. },
  2506. "funding": [
  2507. {
  2508. "url": "https://offset.earth/frankdejonge",
  2509. "type": "other"
  2510. }
  2511. ],
  2512. "time": "2021-06-23T21:56:05+00:00"
  2513. },
  2514. {
  2515. "name": "league/mime-type-detection",
  2516. "version": "1.7.0",
  2517. "source": {
  2518. "type": "git",
  2519. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2520. "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3"
  2521. },
  2522. "dist": {
  2523. "type": "zip",
  2524. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
  2525. "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
  2526. "shasum": "",
  2527. "mirrors": [
  2528. {
  2529. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2530. "preferred": true
  2531. }
  2532. ]
  2533. },
  2534. "require": {
  2535. "ext-fileinfo": "*",
  2536. "php": "^7.2 || ^8.0"
  2537. },
  2538. "require-dev": {
  2539. "friendsofphp/php-cs-fixer": "^2.18",
  2540. "phpstan/phpstan": "^0.12.68",
  2541. "phpunit/phpunit": "^8.5.8 || ^9.3"
  2542. },
  2543. "type": "library",
  2544. "autoload": {
  2545. "psr-4": {
  2546. "League\\MimeTypeDetection\\": "src"
  2547. }
  2548. },
  2549. "notification-url": "https://packagist.org/downloads/",
  2550. "license": [
  2551. "MIT"
  2552. ],
  2553. "authors": [
  2554. {
  2555. "name": "Frank de Jonge",
  2556. "email": "info@frankdejonge.nl"
  2557. }
  2558. ],
  2559. "description": "Mime-type detection for Flysystem",
  2560. "support": {
  2561. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2562. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.7.0"
  2563. },
  2564. "funding": [
  2565. {
  2566. "url": "https://github.com/frankdejonge",
  2567. "type": "github"
  2568. },
  2569. {
  2570. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2571. "type": "tidelift"
  2572. }
  2573. ],
  2574. "time": "2021-01-18T20:58:21+00:00"
  2575. },
  2576. {
  2577. "name": "maatwebsite/excel",
  2578. "version": "3.1.31",
  2579. "source": {
  2580. "type": "git",
  2581. "url": "https://github.com/Maatwebsite/Laravel-Excel.git",
  2582. "reference": "cbe6370af70f93bd017f77ef92d32bd492a47fcb"
  2583. },
  2584. "dist": {
  2585. "type": "zip",
  2586. "url": "https://api.github.com/repos/Maatwebsite/Laravel-Excel/zipball/cbe6370af70f93bd017f77ef92d32bd492a47fcb",
  2587. "reference": "cbe6370af70f93bd017f77ef92d32bd492a47fcb",
  2588. "shasum": "",
  2589. "mirrors": [
  2590. {
  2591. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2592. "preferred": true
  2593. }
  2594. ]
  2595. },
  2596. "require": {
  2597. "ext-json": "*",
  2598. "illuminate/support": "5.8.*|^6.0|^7.0|^8.0",
  2599. "php": "^7.0|^8.0",
  2600. "phpoffice/phpspreadsheet": "^1.18"
  2601. },
  2602. "require-dev": {
  2603. "orchestra/testbench": "^6.0",
  2604. "predis/predis": "^1.1"
  2605. },
  2606. "type": "library",
  2607. "extra": {
  2608. "laravel": {
  2609. "providers": [
  2610. "Maatwebsite\\Excel\\ExcelServiceProvider"
  2611. ],
  2612. "aliases": {
  2613. "Excel": "Maatwebsite\\Excel\\Facades\\Excel"
  2614. }
  2615. }
  2616. },
  2617. "autoload": {
  2618. "psr-4": {
  2619. "Maatwebsite\\Excel\\": "src/"
  2620. }
  2621. },
  2622. "notification-url": "https://packagist.org/downloads/",
  2623. "license": [
  2624. "MIT"
  2625. ],
  2626. "authors": [
  2627. {
  2628. "name": "Patrick Brouwers",
  2629. "email": "patrick@maatwebsite.nl"
  2630. }
  2631. ],
  2632. "description": "Supercharged Excel exports and imports in Laravel",
  2633. "keywords": [
  2634. "PHPExcel",
  2635. "batch",
  2636. "csv",
  2637. "excel",
  2638. "export",
  2639. "import",
  2640. "laravel",
  2641. "php",
  2642. "phpspreadsheet"
  2643. ],
  2644. "support": {
  2645. "issues": "https://github.com/Maatwebsite/Laravel-Excel/issues",
  2646. "source": "https://github.com/Maatwebsite/Laravel-Excel/tree/3.1.31"
  2647. },
  2648. "funding": [
  2649. {
  2650. "url": "https://laravel-excel.com/commercial-support",
  2651. "type": "custom"
  2652. },
  2653. {
  2654. "url": "https://github.com/patrickbrouwers",
  2655. "type": "github"
  2656. }
  2657. ],
  2658. "time": "2021-06-02T17:31:29+00:00"
  2659. },
  2660. {
  2661. "name": "maennchen/zipstream-php",
  2662. "version": "2.1.0",
  2663. "source": {
  2664. "type": "git",
  2665. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  2666. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58"
  2667. },
  2668. "dist": {
  2669. "type": "zip",
  2670. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2671. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2672. "shasum": "",
  2673. "mirrors": [
  2674. {
  2675. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2676. "preferred": true
  2677. }
  2678. ]
  2679. },
  2680. "require": {
  2681. "myclabs/php-enum": "^1.5",
  2682. "php": ">= 7.1",
  2683. "psr/http-message": "^1.0",
  2684. "symfony/polyfill-mbstring": "^1.0"
  2685. },
  2686. "require-dev": {
  2687. "ext-zip": "*",
  2688. "guzzlehttp/guzzle": ">= 6.3",
  2689. "mikey179/vfsstream": "^1.6",
  2690. "phpunit/phpunit": ">= 7.5"
  2691. },
  2692. "type": "library",
  2693. "autoload": {
  2694. "psr-4": {
  2695. "ZipStream\\": "src/"
  2696. }
  2697. },
  2698. "notification-url": "https://packagist.org/downloads/",
  2699. "license": [
  2700. "MIT"
  2701. ],
  2702. "authors": [
  2703. {
  2704. "name": "Paul Duncan",
  2705. "email": "pabs@pablotron.org"
  2706. },
  2707. {
  2708. "name": "Jonatan Männchen",
  2709. "email": "jonatan@maennchen.ch"
  2710. },
  2711. {
  2712. "name": "Jesse Donat",
  2713. "email": "donatj@gmail.com"
  2714. },
  2715. {
  2716. "name": "András Kolesár",
  2717. "email": "kolesar@kolesar.hu"
  2718. }
  2719. ],
  2720. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  2721. "keywords": [
  2722. "stream",
  2723. "zip"
  2724. ],
  2725. "support": {
  2726. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  2727. "source": "https://github.com/maennchen/ZipStream-PHP/tree/master"
  2728. },
  2729. "funding": [
  2730. {
  2731. "url": "https://opencollective.com/zipstream",
  2732. "type": "open_collective"
  2733. }
  2734. ],
  2735. "time": "2020-05-30T13:11:16+00:00"
  2736. },
  2737. {
  2738. "name": "markbaker/complex",
  2739. "version": "2.0.3",
  2740. "source": {
  2741. "type": "git",
  2742. "url": "https://github.com/MarkBaker/PHPComplex.git",
  2743. "reference": "6f724d7e04606fd8adaa4e3bb381c3e9db09c946"
  2744. },
  2745. "dist": {
  2746. "type": "zip",
  2747. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/6f724d7e04606fd8adaa4e3bb381c3e9db09c946",
  2748. "reference": "6f724d7e04606fd8adaa4e3bb381c3e9db09c946",
  2749. "shasum": "",
  2750. "mirrors": [
  2751. {
  2752. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2753. "preferred": true
  2754. }
  2755. ]
  2756. },
  2757. "require": {
  2758. "php": "^7.2 || ^8.0"
  2759. },
  2760. "require-dev": {
  2761. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2762. "phpcompatibility/php-compatibility": "^9.0",
  2763. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  2764. "squizlabs/php_codesniffer": "^3.4"
  2765. },
  2766. "type": "library",
  2767. "autoload": {
  2768. "psr-4": {
  2769. "Complex\\": "classes/src/"
  2770. },
  2771. "files": [
  2772. "classes/src/functions/abs.php",
  2773. "classes/src/functions/acos.php",
  2774. "classes/src/functions/acosh.php",
  2775. "classes/src/functions/acot.php",
  2776. "classes/src/functions/acoth.php",
  2777. "classes/src/functions/acsc.php",
  2778. "classes/src/functions/acsch.php",
  2779. "classes/src/functions/argument.php",
  2780. "classes/src/functions/asec.php",
  2781. "classes/src/functions/asech.php",
  2782. "classes/src/functions/asin.php",
  2783. "classes/src/functions/asinh.php",
  2784. "classes/src/functions/atan.php",
  2785. "classes/src/functions/atanh.php",
  2786. "classes/src/functions/conjugate.php",
  2787. "classes/src/functions/cos.php",
  2788. "classes/src/functions/cosh.php",
  2789. "classes/src/functions/cot.php",
  2790. "classes/src/functions/coth.php",
  2791. "classes/src/functions/csc.php",
  2792. "classes/src/functions/csch.php",
  2793. "classes/src/functions/exp.php",
  2794. "classes/src/functions/inverse.php",
  2795. "classes/src/functions/ln.php",
  2796. "classes/src/functions/log2.php",
  2797. "classes/src/functions/log10.php",
  2798. "classes/src/functions/negative.php",
  2799. "classes/src/functions/pow.php",
  2800. "classes/src/functions/rho.php",
  2801. "classes/src/functions/sec.php",
  2802. "classes/src/functions/sech.php",
  2803. "classes/src/functions/sin.php",
  2804. "classes/src/functions/sinh.php",
  2805. "classes/src/functions/sqrt.php",
  2806. "classes/src/functions/tan.php",
  2807. "classes/src/functions/tanh.php",
  2808. "classes/src/functions/theta.php",
  2809. "classes/src/operations/add.php",
  2810. "classes/src/operations/subtract.php",
  2811. "classes/src/operations/multiply.php",
  2812. "classes/src/operations/divideby.php",
  2813. "classes/src/operations/divideinto.php"
  2814. ]
  2815. },
  2816. "notification-url": "https://packagist.org/downloads/",
  2817. "license": [
  2818. "MIT"
  2819. ],
  2820. "authors": [
  2821. {
  2822. "name": "Mark Baker",
  2823. "email": "mark@lange.demon.co.uk"
  2824. }
  2825. ],
  2826. "description": "PHP Class for working with complex numbers",
  2827. "homepage": "https://github.com/MarkBaker/PHPComplex",
  2828. "keywords": [
  2829. "complex",
  2830. "mathematics"
  2831. ],
  2832. "support": {
  2833. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  2834. "source": "https://github.com/MarkBaker/PHPComplex/tree/2.0.3"
  2835. },
  2836. "time": "2021-06-02T09:44:11+00:00"
  2837. },
  2838. {
  2839. "name": "markbaker/matrix",
  2840. "version": "2.1.3",
  2841. "source": {
  2842. "type": "git",
  2843. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  2844. "reference": "174395a901b5ba0925f1d790fa91bab531074b61"
  2845. },
  2846. "dist": {
  2847. "type": "zip",
  2848. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/174395a901b5ba0925f1d790fa91bab531074b61",
  2849. "reference": "174395a901b5ba0925f1d790fa91bab531074b61",
  2850. "shasum": "",
  2851. "mirrors": [
  2852. {
  2853. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2854. "preferred": true
  2855. }
  2856. ]
  2857. },
  2858. "require": {
  2859. "php": "^7.1 || ^8.0"
  2860. },
  2861. "require-dev": {
  2862. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2863. "phpcompatibility/php-compatibility": "^9.0",
  2864. "phpdocumentor/phpdocumentor": "2.*",
  2865. "phploc/phploc": "^4.0",
  2866. "phpmd/phpmd": "2.*",
  2867. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  2868. "sebastian/phpcpd": "^4.0",
  2869. "squizlabs/php_codesniffer": "^3.4"
  2870. },
  2871. "type": "library",
  2872. "autoload": {
  2873. "psr-4": {
  2874. "Matrix\\": "classes/src/"
  2875. },
  2876. "files": [
  2877. "classes/src/Functions/adjoint.php",
  2878. "classes/src/Functions/antidiagonal.php",
  2879. "classes/src/Functions/cofactors.php",
  2880. "classes/src/Functions/determinant.php",
  2881. "classes/src/Functions/diagonal.php",
  2882. "classes/src/Functions/identity.php",
  2883. "classes/src/Functions/inverse.php",
  2884. "classes/src/Functions/minors.php",
  2885. "classes/src/Functions/trace.php",
  2886. "classes/src/Functions/transpose.php",
  2887. "classes/src/Operations/add.php",
  2888. "classes/src/Operations/directsum.php",
  2889. "classes/src/Operations/subtract.php",
  2890. "classes/src/Operations/multiply.php",
  2891. "classes/src/Operations/divideby.php",
  2892. "classes/src/Operations/divideinto.php"
  2893. ]
  2894. },
  2895. "notification-url": "https://packagist.org/downloads/",
  2896. "license": [
  2897. "MIT"
  2898. ],
  2899. "authors": [
  2900. {
  2901. "name": "Mark Baker",
  2902. "email": "mark@demon-angel.eu"
  2903. }
  2904. ],
  2905. "description": "PHP Class for working with matrices",
  2906. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  2907. "keywords": [
  2908. "mathematics",
  2909. "matrix",
  2910. "vector"
  2911. ],
  2912. "support": {
  2913. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  2914. "source": "https://github.com/MarkBaker/PHPMatrix/tree/2.1.3"
  2915. },
  2916. "time": "2021-05-25T15:42:17+00:00"
  2917. },
  2918. {
  2919. "name": "monolog/monolog",
  2920. "version": "2.2.0",
  2921. "source": {
  2922. "type": "git",
  2923. "url": "https://github.com/Seldaek/monolog.git",
  2924. "reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084"
  2925. },
  2926. "dist": {
  2927. "type": "zip",
  2928. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/1cb1cde8e8dd0f70cc0fe51354a59acad9302084",
  2929. "reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084",
  2930. "shasum": "",
  2931. "mirrors": [
  2932. {
  2933. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2934. "preferred": true
  2935. }
  2936. ]
  2937. },
  2938. "require": {
  2939. "php": ">=7.2",
  2940. "psr/log": "^1.0.1"
  2941. },
  2942. "provide": {
  2943. "psr/log-implementation": "1.0.0"
  2944. },
  2945. "require-dev": {
  2946. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2947. "doctrine/couchdb": "~1.0@dev",
  2948. "elasticsearch/elasticsearch": "^7",
  2949. "graylog2/gelf-php": "^1.4.2",
  2950. "mongodb/mongodb": "^1.8",
  2951. "php-amqplib/php-amqplib": "~2.4",
  2952. "php-console/php-console": "^3.1.3",
  2953. "phpspec/prophecy": "^1.6.1",
  2954. "phpstan/phpstan": "^0.12.59",
  2955. "phpunit/phpunit": "^8.5",
  2956. "predis/predis": "^1.1",
  2957. "rollbar/rollbar": "^1.3",
  2958. "ruflin/elastica": ">=0.90 <7.0.1",
  2959. "swiftmailer/swiftmailer": "^5.3|^6.0"
  2960. },
  2961. "suggest": {
  2962. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2963. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2964. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2965. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2966. "ext-mbstring": "Allow to work properly with unicode symbols",
  2967. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2968. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2969. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2970. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2971. "php-console/php-console": "Allow sending log messages to Google Chrome",
  2972. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2973. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2974. },
  2975. "type": "library",
  2976. "extra": {
  2977. "branch-alias": {
  2978. "dev-main": "2.x-dev"
  2979. }
  2980. },
  2981. "autoload": {
  2982. "psr-4": {
  2983. "Monolog\\": "src/Monolog"
  2984. }
  2985. },
  2986. "notification-url": "https://packagist.org/downloads/",
  2987. "license": [
  2988. "MIT"
  2989. ],
  2990. "authors": [
  2991. {
  2992. "name": "Jordi Boggiano",
  2993. "email": "j.boggiano@seld.be",
  2994. "homepage": "https://seld.be"
  2995. }
  2996. ],
  2997. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2998. "homepage": "https://github.com/Seldaek/monolog",
  2999. "keywords": [
  3000. "log",
  3001. "logging",
  3002. "psr-3"
  3003. ],
  3004. "support": {
  3005. "issues": "https://github.com/Seldaek/monolog/issues",
  3006. "source": "https://github.com/Seldaek/monolog/tree/2.2.0"
  3007. },
  3008. "funding": [
  3009. {
  3010. "url": "https://github.com/Seldaek",
  3011. "type": "github"
  3012. },
  3013. {
  3014. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  3015. "type": "tidelift"
  3016. }
  3017. ],
  3018. "time": "2020-12-14T13:15:25+00:00"
  3019. },
  3020. {
  3021. "name": "myclabs/php-enum",
  3022. "version": "1.8.1",
  3023. "source": {
  3024. "type": "git",
  3025. "url": "https://github.com/myclabs/php-enum.git",
  3026. "reference": "55555d31a622b4bc9662664132a0533ae6ef47b1"
  3027. },
  3028. "dist": {
  3029. "type": "zip",
  3030. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/55555d31a622b4bc9662664132a0533ae6ef47b1",
  3031. "reference": "55555d31a622b4bc9662664132a0533ae6ef47b1",
  3032. "shasum": "",
  3033. "mirrors": [
  3034. {
  3035. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3036. "preferred": true
  3037. }
  3038. ]
  3039. },
  3040. "require": {
  3041. "ext-json": "*",
  3042. "php": "^7.3 || ^8.0"
  3043. },
  3044. "require-dev": {
  3045. "phpunit/phpunit": "^9.5",
  3046. "squizlabs/php_codesniffer": "1.*",
  3047. "vimeo/psalm": "^4.6.2"
  3048. },
  3049. "type": "library",
  3050. "autoload": {
  3051. "psr-4": {
  3052. "MyCLabs\\Enum\\": "src/"
  3053. }
  3054. },
  3055. "notification-url": "https://packagist.org/downloads/",
  3056. "license": [
  3057. "MIT"
  3058. ],
  3059. "authors": [
  3060. {
  3061. "name": "PHP Enum contributors",
  3062. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  3063. }
  3064. ],
  3065. "description": "PHP Enum implementation",
  3066. "homepage": "http://github.com/myclabs/php-enum",
  3067. "keywords": [
  3068. "enum"
  3069. ],
  3070. "support": {
  3071. "issues": "https://github.com/myclabs/php-enum/issues",
  3072. "source": "https://github.com/myclabs/php-enum/tree/1.8.1"
  3073. },
  3074. "funding": [
  3075. {
  3076. "url": "https://github.com/mnapoli",
  3077. "type": "github"
  3078. },
  3079. {
  3080. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  3081. "type": "tidelift"
  3082. }
  3083. ],
  3084. "time": "2021-06-29T09:20:05+00:00"
  3085. },
  3086. {
  3087. "name": "nesbot/carbon",
  3088. "version": "2.50.0",
  3089. "source": {
  3090. "type": "git",
  3091. "url": "https://github.com/briannesbitt/Carbon.git",
  3092. "reference": "f47f17d17602b2243414a44ad53d9f8b9ada5fdb"
  3093. },
  3094. "dist": {
  3095. "type": "zip",
  3096. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/f47f17d17602b2243414a44ad53d9f8b9ada5fdb",
  3097. "reference": "f47f17d17602b2243414a44ad53d9f8b9ada5fdb",
  3098. "shasum": "",
  3099. "mirrors": [
  3100. {
  3101. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3102. "preferred": true
  3103. }
  3104. ]
  3105. },
  3106. "require": {
  3107. "ext-json": "*",
  3108. "php": "^7.1.8 || ^8.0",
  3109. "symfony/polyfill-mbstring": "^1.0",
  3110. "symfony/translation": "^3.4 || ^4.0 || ^5.0"
  3111. },
  3112. "require-dev": {
  3113. "doctrine/orm": "^2.7",
  3114. "friendsofphp/php-cs-fixer": "^2.14 || ^3.0",
  3115. "kylekatarnls/multi-tester": "^2.0",
  3116. "phpmd/phpmd": "^2.9",
  3117. "phpstan/extension-installer": "^1.0",
  3118. "phpstan/phpstan": "^0.12.54",
  3119. "phpunit/phpunit": "^7.5.20 || ^8.5.14",
  3120. "squizlabs/php_codesniffer": "^3.4"
  3121. },
  3122. "bin": [
  3123. "bin/carbon"
  3124. ],
  3125. "type": "library",
  3126. "extra": {
  3127. "branch-alias": {
  3128. "dev-master": "2.x-dev",
  3129. "dev-3.x": "3.x-dev"
  3130. },
  3131. "laravel": {
  3132. "providers": [
  3133. "Carbon\\Laravel\\ServiceProvider"
  3134. ]
  3135. },
  3136. "phpstan": {
  3137. "includes": [
  3138. "extension.neon"
  3139. ]
  3140. }
  3141. },
  3142. "autoload": {
  3143. "psr-4": {
  3144. "Carbon\\": "src/Carbon/"
  3145. }
  3146. },
  3147. "notification-url": "https://packagist.org/downloads/",
  3148. "license": [
  3149. "MIT"
  3150. ],
  3151. "authors": [
  3152. {
  3153. "name": "Brian Nesbitt",
  3154. "email": "brian@nesbot.com",
  3155. "homepage": "https://markido.com"
  3156. },
  3157. {
  3158. "name": "kylekatarnls",
  3159. "homepage": "https://github.com/kylekatarnls"
  3160. }
  3161. ],
  3162. "description": "An API extension for DateTime that supports 281 different languages.",
  3163. "homepage": "https://carbon.nesbot.com",
  3164. "keywords": [
  3165. "date",
  3166. "datetime",
  3167. "time"
  3168. ],
  3169. "support": {
  3170. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3171. "source": "https://github.com/briannesbitt/Carbon"
  3172. },
  3173. "funding": [
  3174. {
  3175. "url": "https://opencollective.com/Carbon",
  3176. "type": "open_collective"
  3177. },
  3178. {
  3179. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  3180. "type": "tidelift"
  3181. }
  3182. ],
  3183. "time": "2021-06-28T22:38:45+00:00"
  3184. },
  3185. {
  3186. "name": "nikic/php-parser",
  3187. "version": "v4.10.5",
  3188. "source": {
  3189. "type": "git",
  3190. "url": "https://github.com/nikic/PHP-Parser.git",
  3191. "reference": "4432ba399e47c66624bc73c8c0f811e5c109576f"
  3192. },
  3193. "dist": {
  3194. "type": "zip",
  3195. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/4432ba399e47c66624bc73c8c0f811e5c109576f",
  3196. "reference": "4432ba399e47c66624bc73c8c0f811e5c109576f",
  3197. "shasum": "",
  3198. "mirrors": [
  3199. {
  3200. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3201. "preferred": true
  3202. }
  3203. ]
  3204. },
  3205. "require": {
  3206. "ext-tokenizer": "*",
  3207. "php": ">=7.0"
  3208. },
  3209. "require-dev": {
  3210. "ircmaxell/php-yacc": "^0.0.7",
  3211. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  3212. },
  3213. "bin": [
  3214. "bin/php-parse"
  3215. ],
  3216. "type": "library",
  3217. "extra": {
  3218. "branch-alias": {
  3219. "dev-master": "4.9-dev"
  3220. }
  3221. },
  3222. "autoload": {
  3223. "psr-4": {
  3224. "PhpParser\\": "lib/PhpParser"
  3225. }
  3226. },
  3227. "notification-url": "https://packagist.org/downloads/",
  3228. "license": [
  3229. "BSD-3-Clause"
  3230. ],
  3231. "authors": [
  3232. {
  3233. "name": "Nikita Popov"
  3234. }
  3235. ],
  3236. "description": "A PHP parser written in PHP",
  3237. "keywords": [
  3238. "parser",
  3239. "php"
  3240. ],
  3241. "support": {
  3242. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3243. "source": "https://github.com/nikic/PHP-Parser/tree/v4.10.5"
  3244. },
  3245. "time": "2021-05-03T19:11:20+00:00"
  3246. },
  3247. {
  3248. "name": "opis/closure",
  3249. "version": "3.6.2",
  3250. "source": {
  3251. "type": "git",
  3252. "url": "https://github.com/opis/closure.git",
  3253. "reference": "06e2ebd25f2869e54a306dda991f7db58066f7f6"
  3254. },
  3255. "dist": {
  3256. "type": "zip",
  3257. "url": "https://api.github.com/repos/opis/closure/zipball/06e2ebd25f2869e54a306dda991f7db58066f7f6",
  3258. "reference": "06e2ebd25f2869e54a306dda991f7db58066f7f6",
  3259. "shasum": "",
  3260. "mirrors": [
  3261. {
  3262. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3263. "preferred": true
  3264. }
  3265. ]
  3266. },
  3267. "require": {
  3268. "php": "^5.4 || ^7.0 || ^8.0"
  3269. },
  3270. "require-dev": {
  3271. "jeremeamia/superclosure": "^2.0",
  3272. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  3273. },
  3274. "type": "library",
  3275. "extra": {
  3276. "branch-alias": {
  3277. "dev-master": "3.6.x-dev"
  3278. }
  3279. },
  3280. "autoload": {
  3281. "psr-4": {
  3282. "Opis\\Closure\\": "src/"
  3283. },
  3284. "files": [
  3285. "functions.php"
  3286. ]
  3287. },
  3288. "notification-url": "https://packagist.org/downloads/",
  3289. "license": [
  3290. "MIT"
  3291. ],
  3292. "authors": [
  3293. {
  3294. "name": "Marius Sarca",
  3295. "email": "marius.sarca@gmail.com"
  3296. },
  3297. {
  3298. "name": "Sorin Sarca",
  3299. "email": "sarca_sorin@hotmail.com"
  3300. }
  3301. ],
  3302. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  3303. "homepage": "https://opis.io/closure",
  3304. "keywords": [
  3305. "anonymous functions",
  3306. "closure",
  3307. "function",
  3308. "serializable",
  3309. "serialization",
  3310. "serialize"
  3311. ],
  3312. "support": {
  3313. "issues": "https://github.com/opis/closure/issues",
  3314. "source": "https://github.com/opis/closure/tree/3.6.2"
  3315. },
  3316. "time": "2021-04-09T13:42:10+00:00"
  3317. },
  3318. {
  3319. "name": "oursdreams/export",
  3320. "version": "0.0.7",
  3321. "source": {
  3322. "type": "git",
  3323. "url": "https://github.com/oursdreams/export.git",
  3324. "reference": "ef7694ac342ff18742c17ddbce3a85076cac17e3"
  3325. },
  3326. "dist": {
  3327. "type": "zip",
  3328. "url": "https://api.github.com/repos/oursdreams/export/zipball/ef7694ac342ff18742c17ddbce3a85076cac17e3",
  3329. "reference": "ef7694ac342ff18742c17ddbce3a85076cac17e3",
  3330. "shasum": "",
  3331. "mirrors": [
  3332. {
  3333. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3334. "preferred": true
  3335. }
  3336. ]
  3337. },
  3338. "type": "library",
  3339. "extra": {
  3340. "laravel": {
  3341. "providers": [
  3342. "Oursdreams\\Export\\ExportServiceProvider"
  3343. ]
  3344. }
  3345. },
  3346. "autoload": {
  3347. "psr-4": {
  3348. "Oursdreams\\Export\\": "./src"
  3349. }
  3350. },
  3351. "notification-url": "https://packagist.org/downloads/",
  3352. "license": [
  3353. "MIT"
  3354. ],
  3355. "authors": [
  3356. {
  3357. "name": "oursdreams",
  3358. "email": "z1792524653@163.com"
  3359. }
  3360. ],
  3361. "description": "A simple export plug-in",
  3362. "support": {
  3363. "issues": "https://github.com/oursdreams/export/issues",
  3364. "source": "https://github.com/oursdreams/export/tree/0.0.7"
  3365. },
  3366. "time": "2021-06-01T03:01:13+00:00"
  3367. },
  3368. {
  3369. "name": "overtrue/laravel-pinyin",
  3370. "version": "4.0.0",
  3371. "source": {
  3372. "type": "git",
  3373. "url": "https://github.com/overtrue/laravel-pinyin.git",
  3374. "reference": "c0b15aa49eac08bff80122010b91a0b3fe0f1e21"
  3375. },
  3376. "dist": {
  3377. "type": "zip",
  3378. "url": "https://api.github.com/repos/overtrue/laravel-pinyin/zipball/c0b15aa49eac08bff80122010b91a0b3fe0f1e21",
  3379. "reference": "c0b15aa49eac08bff80122010b91a0b3fe0f1e21",
  3380. "shasum": "",
  3381. "mirrors": [
  3382. {
  3383. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3384. "preferred": true
  3385. }
  3386. ]
  3387. },
  3388. "require": {
  3389. "overtrue/pinyin": "~4.0"
  3390. },
  3391. "type": "library",
  3392. "extra": {
  3393. "laravel": {
  3394. "providers": [
  3395. "Overtrue\\LaravelPinyin\\ServiceProvider"
  3396. ],
  3397. "aliases": {
  3398. "Pinyin": "Overtrue\\LaravelPinyin\\Facades\\Pinyin"
  3399. }
  3400. }
  3401. },
  3402. "autoload": {
  3403. "psr-4": {
  3404. "Overtrue\\LaravelPinyin\\": "src/"
  3405. },
  3406. "files": [
  3407. "src/helpers.php"
  3408. ]
  3409. },
  3410. "notification-url": "https://packagist.org/downloads/",
  3411. "license": [
  3412. "MIT"
  3413. ],
  3414. "authors": [
  3415. {
  3416. "name": "overtrue",
  3417. "email": "anzhengchao@gmail.com"
  3418. }
  3419. ],
  3420. "description": "Chinese to Pinyin translator.",
  3421. "keywords": [
  3422. "Chinese",
  3423. "Pinyin",
  3424. "laravel",
  3425. "overtrue"
  3426. ],
  3427. "support": {
  3428. "issues": "https://github.com/overtrue/laravel-pinyin/issues",
  3429. "source": "https://github.com/overtrue/laravel-pinyin/tree/master"
  3430. },
  3431. "time": "2018-10-10T09:02:46+00:00"
  3432. },
  3433. {
  3434. "name": "overtrue/pinyin",
  3435. "version": "4.0.7",
  3436. "source": {
  3437. "type": "git",
  3438. "url": "https://github.com/overtrue/pinyin.git",
  3439. "reference": "083de406907d42df2e0feaaeb83f1a3c2e0095eb"
  3440. },
  3441. "dist": {
  3442. "type": "zip",
  3443. "url": "https://api.github.com/repos/overtrue/pinyin/zipball/083de406907d42df2e0feaaeb83f1a3c2e0095eb",
  3444. "reference": "083de406907d42df2e0feaaeb83f1a3c2e0095eb",
  3445. "shasum": "",
  3446. "mirrors": [
  3447. {
  3448. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3449. "preferred": true
  3450. }
  3451. ]
  3452. },
  3453. "require": {
  3454. "php": ">=7.1"
  3455. },
  3456. "require-dev": {
  3457. "brainmaestro/composer-git-hooks": "^2.7",
  3458. "friendsofphp/php-cs-fixer": "^2.16",
  3459. "phpunit/phpunit": "~8.0"
  3460. },
  3461. "type": "library",
  3462. "extra": {
  3463. "hooks": {
  3464. "pre-commit": [
  3465. "composer test",
  3466. "composer fix-style"
  3467. ],
  3468. "pre-push": [
  3469. "composer test",
  3470. "composer check-style"
  3471. ]
  3472. }
  3473. },
  3474. "autoload": {
  3475. "psr-4": {
  3476. "Overtrue\\Pinyin\\": "src/"
  3477. },
  3478. "files": [
  3479. "src/const.php"
  3480. ]
  3481. },
  3482. "notification-url": "https://packagist.org/downloads/",
  3483. "license": [
  3484. "MIT"
  3485. ],
  3486. "authors": [
  3487. {
  3488. "name": "overtrue",
  3489. "email": "anzhengchao@gmail.com",
  3490. "homepage": "http://github.com/overtrue"
  3491. }
  3492. ],
  3493. "description": "Chinese to pinyin translator.",
  3494. "homepage": "https://github.com/overtrue/pinyin",
  3495. "keywords": [
  3496. "Chinese",
  3497. "Pinyin",
  3498. "cn2pinyin"
  3499. ],
  3500. "support": {
  3501. "issues": "https://github.com/overtrue/pinyin/issues",
  3502. "source": "https://github.com/overtrue/pinyin/tree/4.0.7"
  3503. },
  3504. "funding": [
  3505. {
  3506. "url": "https://www.patreon.com/overtrue",
  3507. "type": "patreon"
  3508. }
  3509. ],
  3510. "time": "2021-04-16T11:13:48+00:00"
  3511. },
  3512. {
  3513. "name": "paragonie/random_compat",
  3514. "version": "v9.99.100",
  3515. "source": {
  3516. "type": "git",
  3517. "url": "https://github.com/paragonie/random_compat.git",
  3518. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  3519. },
  3520. "dist": {
  3521. "type": "zip",
  3522. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  3523. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  3524. "shasum": "",
  3525. "mirrors": [
  3526. {
  3527. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3528. "preferred": true
  3529. }
  3530. ]
  3531. },
  3532. "require": {
  3533. "php": ">= 7"
  3534. },
  3535. "require-dev": {
  3536. "phpunit/phpunit": "4.*|5.*",
  3537. "vimeo/psalm": "^1"
  3538. },
  3539. "suggest": {
  3540. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  3541. },
  3542. "type": "library",
  3543. "notification-url": "https://packagist.org/downloads/",
  3544. "license": [
  3545. "MIT"
  3546. ],
  3547. "authors": [
  3548. {
  3549. "name": "Paragon Initiative Enterprises",
  3550. "email": "security@paragonie.com",
  3551. "homepage": "https://paragonie.com"
  3552. }
  3553. ],
  3554. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  3555. "keywords": [
  3556. "csprng",
  3557. "polyfill",
  3558. "pseudorandom",
  3559. "random"
  3560. ],
  3561. "support": {
  3562. "email": "info@paragonie.com",
  3563. "issues": "https://github.com/paragonie/random_compat/issues",
  3564. "source": "https://github.com/paragonie/random_compat"
  3565. },
  3566. "time": "2020-10-15T08:29:30+00:00"
  3567. },
  3568. {
  3569. "name": "paragonie/sodium_compat",
  3570. "version": "v1.16.1",
  3571. "source": {
  3572. "type": "git",
  3573. "url": "https://github.com/paragonie/sodium_compat.git",
  3574. "reference": "2e856afe80bfc968b47da1f4a7e1ea8f03d06b38"
  3575. },
  3576. "dist": {
  3577. "type": "zip",
  3578. "url": "https://api.github.com/repos/paragonie/sodium_compat/zipball/2e856afe80bfc968b47da1f4a7e1ea8f03d06b38",
  3579. "reference": "2e856afe80bfc968b47da1f4a7e1ea8f03d06b38",
  3580. "shasum": "",
  3581. "mirrors": [
  3582. {
  3583. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3584. "preferred": true
  3585. }
  3586. ]
  3587. },
  3588. "require": {
  3589. "paragonie/random_compat": ">=1",
  3590. "php": "^5.2.4|^5.3|^5.4|^5.5|^5.6|^7|^8"
  3591. },
  3592. "require-dev": {
  3593. "phpunit/phpunit": "^3|^4|^5|^6|^7|^8|^9"
  3594. },
  3595. "suggest": {
  3596. "ext-libsodium": "PHP < 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security.",
  3597. "ext-sodium": "PHP >= 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security."
  3598. },
  3599. "type": "library",
  3600. "autoload": {
  3601. "files": [
  3602. "autoload.php"
  3603. ]
  3604. },
  3605. "notification-url": "https://packagist.org/downloads/",
  3606. "license": [
  3607. "ISC"
  3608. ],
  3609. "authors": [
  3610. {
  3611. "name": "Paragon Initiative Enterprises",
  3612. "email": "security@paragonie.com"
  3613. },
  3614. {
  3615. "name": "Frank Denis",
  3616. "email": "jedisct1@pureftpd.org"
  3617. }
  3618. ],
  3619. "description": "Pure PHP implementation of libsodium; uses the PHP extension if it exists",
  3620. "keywords": [
  3621. "Authentication",
  3622. "BLAKE2b",
  3623. "ChaCha20",
  3624. "ChaCha20-Poly1305",
  3625. "Chapoly",
  3626. "Curve25519",
  3627. "Ed25519",
  3628. "EdDSA",
  3629. "Edwards-curve Digital Signature Algorithm",
  3630. "Elliptic Curve Diffie-Hellman",
  3631. "Poly1305",
  3632. "Pure-PHP cryptography",
  3633. "RFC 7748",
  3634. "RFC 8032",
  3635. "Salpoly",
  3636. "Salsa20",
  3637. "X25519",
  3638. "XChaCha20-Poly1305",
  3639. "XSalsa20-Poly1305",
  3640. "Xchacha20",
  3641. "Xsalsa20",
  3642. "aead",
  3643. "cryptography",
  3644. "ecdh",
  3645. "elliptic curve",
  3646. "elliptic curve cryptography",
  3647. "encryption",
  3648. "libsodium",
  3649. "php",
  3650. "public-key cryptography",
  3651. "secret-key cryptography",
  3652. "side-channel resistant"
  3653. ],
  3654. "support": {
  3655. "issues": "https://github.com/paragonie/sodium_compat/issues",
  3656. "source": "https://github.com/paragonie/sodium_compat/tree/v1.16.1"
  3657. },
  3658. "time": "2021-05-25T12:58:14+00:00"
  3659. },
  3660. {
  3661. "name": "phpoffice/phpspreadsheet",
  3662. "version": "1.18.0",
  3663. "source": {
  3664. "type": "git",
  3665. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  3666. "reference": "418cd304e8e6b417ea79c3b29126a25dc4b1170c"
  3667. },
  3668. "dist": {
  3669. "type": "zip",
  3670. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/418cd304e8e6b417ea79c3b29126a25dc4b1170c",
  3671. "reference": "418cd304e8e6b417ea79c3b29126a25dc4b1170c",
  3672. "shasum": "",
  3673. "mirrors": [
  3674. {
  3675. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3676. "preferred": true
  3677. }
  3678. ]
  3679. },
  3680. "require": {
  3681. "ext-ctype": "*",
  3682. "ext-dom": "*",
  3683. "ext-fileinfo": "*",
  3684. "ext-gd": "*",
  3685. "ext-iconv": "*",
  3686. "ext-libxml": "*",
  3687. "ext-mbstring": "*",
  3688. "ext-simplexml": "*",
  3689. "ext-xml": "*",
  3690. "ext-xmlreader": "*",
  3691. "ext-xmlwriter": "*",
  3692. "ext-zip": "*",
  3693. "ext-zlib": "*",
  3694. "ezyang/htmlpurifier": "^4.13",
  3695. "maennchen/zipstream-php": "^2.1",
  3696. "markbaker/complex": "^2.0",
  3697. "markbaker/matrix": "^2.0",
  3698. "php": "^7.2 || ^8.0",
  3699. "psr/http-client": "^1.0",
  3700. "psr/http-factory": "^1.0",
  3701. "psr/simple-cache": "^1.0"
  3702. },
  3703. "require-dev": {
  3704. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  3705. "dompdf/dompdf": "^1.0",
  3706. "friendsofphp/php-cs-fixer": "^2.18",
  3707. "jpgraph/jpgraph": "^4.0",
  3708. "mpdf/mpdf": "^8.0",
  3709. "phpcompatibility/php-compatibility": "^9.3",
  3710. "phpstan/phpstan": "^0.12.82",
  3711. "phpstan/phpstan-phpunit": "^0.12.18",
  3712. "phpunit/phpunit": "^8.5",
  3713. "squizlabs/php_codesniffer": "^3.5",
  3714. "tecnickcom/tcpdf": "^6.3"
  3715. },
  3716. "suggest": {
  3717. "dompdf/dompdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)",
  3718. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  3719. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  3720. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)"
  3721. },
  3722. "type": "library",
  3723. "autoload": {
  3724. "psr-4": {
  3725. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  3726. }
  3727. },
  3728. "notification-url": "https://packagist.org/downloads/",
  3729. "license": [
  3730. "MIT"
  3731. ],
  3732. "authors": [
  3733. {
  3734. "name": "Maarten Balliauw",
  3735. "homepage": "https://blog.maartenballiauw.be"
  3736. },
  3737. {
  3738. "name": "Mark Baker",
  3739. "homepage": "https://markbakeruk.net"
  3740. },
  3741. {
  3742. "name": "Franck Lefevre",
  3743. "homepage": "https://rootslabs.net"
  3744. },
  3745. {
  3746. "name": "Erik Tilt"
  3747. },
  3748. {
  3749. "name": "Adrien Crivelli"
  3750. }
  3751. ],
  3752. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  3753. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  3754. "keywords": [
  3755. "OpenXML",
  3756. "excel",
  3757. "gnumeric",
  3758. "ods",
  3759. "php",
  3760. "spreadsheet",
  3761. "xls",
  3762. "xlsx"
  3763. ],
  3764. "support": {
  3765. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  3766. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.18.0"
  3767. },
  3768. "time": "2021-05-31T18:21:15+00:00"
  3769. },
  3770. {
  3771. "name": "phpoption/phpoption",
  3772. "version": "1.7.5",
  3773. "source": {
  3774. "type": "git",
  3775. "url": "https://github.com/schmittjoh/php-option.git",
  3776. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525"
  3777. },
  3778. "dist": {
  3779. "type": "zip",
  3780. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/994ecccd8f3283ecf5ac33254543eb0ac946d525",
  3781. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525",
  3782. "shasum": "",
  3783. "mirrors": [
  3784. {
  3785. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3786. "preferred": true
  3787. }
  3788. ]
  3789. },
  3790. "require": {
  3791. "php": "^5.5.9 || ^7.0 || ^8.0"
  3792. },
  3793. "require-dev": {
  3794. "bamarni/composer-bin-plugin": "^1.4.1",
  3795. "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0 || ^8.0 || ^9.0"
  3796. },
  3797. "type": "library",
  3798. "extra": {
  3799. "branch-alias": {
  3800. "dev-master": "1.7-dev"
  3801. }
  3802. },
  3803. "autoload": {
  3804. "psr-4": {
  3805. "PhpOption\\": "src/PhpOption/"
  3806. }
  3807. },
  3808. "notification-url": "https://packagist.org/downloads/",
  3809. "license": [
  3810. "Apache-2.0"
  3811. ],
  3812. "authors": [
  3813. {
  3814. "name": "Johannes M. Schmitt",
  3815. "email": "schmittjoh@gmail.com"
  3816. },
  3817. {
  3818. "name": "Graham Campbell",
  3819. "email": "graham@alt-three.com"
  3820. }
  3821. ],
  3822. "description": "Option Type for PHP",
  3823. "keywords": [
  3824. "language",
  3825. "option",
  3826. "php",
  3827. "type"
  3828. ],
  3829. "support": {
  3830. "issues": "https://github.com/schmittjoh/php-option/issues",
  3831. "source": "https://github.com/schmittjoh/php-option/tree/1.7.5"
  3832. },
  3833. "funding": [
  3834. {
  3835. "url": "https://github.com/GrahamCampbell",
  3836. "type": "github"
  3837. },
  3838. {
  3839. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  3840. "type": "tidelift"
  3841. }
  3842. ],
  3843. "time": "2020-07-20T17:29:33+00:00"
  3844. },
  3845. {
  3846. "name": "picqer/php-barcode-generator",
  3847. "version": "v2.2.0",
  3848. "source": {
  3849. "type": "git",
  3850. "url": "https://github.com/picqer/php-barcode-generator.git",
  3851. "reference": "7df93b40099e5fefad055543320a36b80dccda05"
  3852. },
  3853. "dist": {
  3854. "type": "zip",
  3855. "url": "https://api.github.com/repos/picqer/php-barcode-generator/zipball/7df93b40099e5fefad055543320a36b80dccda05",
  3856. "reference": "7df93b40099e5fefad055543320a36b80dccda05",
  3857. "shasum": "",
  3858. "mirrors": [
  3859. {
  3860. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3861. "preferred": true
  3862. }
  3863. ]
  3864. },
  3865. "require": {
  3866. "ext-mbstring": "*",
  3867. "php": "^7.3|^8.0"
  3868. },
  3869. "require-dev": {
  3870. "phpunit/phpunit": "^9.5"
  3871. },
  3872. "suggest": {
  3873. "ext-bcmath": "Barcode IMB (Intelligent Mail Barcode) needs bcmath extension",
  3874. "ext-gd": "For JPG and PNG generators, GD or Imagick is required",
  3875. "ext-imagick": "For JPG and PNG generators, GD or Imagick is required"
  3876. },
  3877. "type": "library",
  3878. "autoload": {
  3879. "psr-4": {
  3880. "Picqer\\Barcode\\": "src"
  3881. }
  3882. },
  3883. "notification-url": "https://packagist.org/downloads/",
  3884. "license": [
  3885. "LGPL-3.0-or-later"
  3886. ],
  3887. "authors": [
  3888. {
  3889. "name": "Nicola Asuni",
  3890. "email": "info@tecnick.com",
  3891. "homepage": "http://nicolaasuni.tecnick.com"
  3892. },
  3893. {
  3894. "name": "Casper Bakker",
  3895. "email": "info@picqer.com",
  3896. "homepage": "https://picqer.com"
  3897. }
  3898. ],
  3899. "description": "An easy to use, non-bloated, barcode generator in PHP. Creates SVG, PNG, JPG and HTML images from the most used 1D barcode standards.",
  3900. "homepage": "https://github.com/picqer/php-barcode-generator",
  3901. "keywords": [
  3902. "CODABAR",
  3903. "Code11",
  3904. "Code93",
  3905. "EAN13",
  3906. "KIX",
  3907. "KIXCODE",
  3908. "MSI",
  3909. "POSTNET",
  3910. "Pharma",
  3911. "Standard 2 of 5",
  3912. "barcode",
  3913. "barcode generator",
  3914. "code128",
  3915. "code39",
  3916. "ean",
  3917. "html",
  3918. "jpeg",
  3919. "jpg",
  3920. "php",
  3921. "png",
  3922. "svg",
  3923. "upc"
  3924. ],
  3925. "support": {
  3926. "issues": "https://github.com/picqer/php-barcode-generator/issues",
  3927. "source": "https://github.com/picqer/php-barcode-generator/tree/v2.2.0"
  3928. },
  3929. "funding": [
  3930. {
  3931. "url": "https://github.com/casperbakker",
  3932. "type": "github"
  3933. }
  3934. ],
  3935. "time": "2021-03-27T09:06:22+00:00"
  3936. },
  3937. {
  3938. "name": "predis/predis",
  3939. "version": "v1.1.7",
  3940. "source": {
  3941. "type": "git",
  3942. "url": "https://github.com/predis/predis.git",
  3943. "reference": "b240daa106d4e02f0c5b7079b41e31ddf66fddf8"
  3944. },
  3945. "dist": {
  3946. "type": "zip",
  3947. "url": "https://api.github.com/repos/predis/predis/zipball/b240daa106d4e02f0c5b7079b41e31ddf66fddf8",
  3948. "reference": "b240daa106d4e02f0c5b7079b41e31ddf66fddf8",
  3949. "shasum": "",
  3950. "mirrors": [
  3951. {
  3952. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3953. "preferred": true
  3954. }
  3955. ]
  3956. },
  3957. "require": {
  3958. "php": ">=5.3.9"
  3959. },
  3960. "require-dev": {
  3961. "phpunit/phpunit": "~4.8"
  3962. },
  3963. "suggest": {
  3964. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  3965. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  3966. },
  3967. "type": "library",
  3968. "autoload": {
  3969. "psr-4": {
  3970. "Predis\\": "src/"
  3971. }
  3972. },
  3973. "notification-url": "https://packagist.org/downloads/",
  3974. "license": [
  3975. "MIT"
  3976. ],
  3977. "authors": [
  3978. {
  3979. "name": "Daniele Alessandri",
  3980. "email": "suppakilla@gmail.com",
  3981. "homepage": "http://clorophilla.net",
  3982. "role": "Creator & Maintainer"
  3983. },
  3984. {
  3985. "name": "Till Krüss",
  3986. "homepage": "https://till.im",
  3987. "role": "Maintainer"
  3988. }
  3989. ],
  3990. "description": "Flexible and feature-complete Redis client for PHP and HHVM",
  3991. "homepage": "http://github.com/predis/predis",
  3992. "keywords": [
  3993. "nosql",
  3994. "predis",
  3995. "redis"
  3996. ],
  3997. "support": {
  3998. "issues": "https://github.com/predis/predis/issues",
  3999. "source": "https://github.com/predis/predis/tree/v1.1.7"
  4000. },
  4001. "funding": [
  4002. {
  4003. "url": "https://github.com/sponsors/tillkruss",
  4004. "type": "github"
  4005. }
  4006. ],
  4007. "time": "2021-04-04T19:34:46+00:00"
  4008. },
  4009. {
  4010. "name": "psr/container",
  4011. "version": "1.1.1",
  4012. "source": {
  4013. "type": "git",
  4014. "url": "https://github.com/php-fig/container.git",
  4015. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
  4016. },
  4017. "dist": {
  4018. "type": "zip",
  4019. "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
  4020. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
  4021. "shasum": "",
  4022. "mirrors": [
  4023. {
  4024. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4025. "preferred": true
  4026. }
  4027. ]
  4028. },
  4029. "require": {
  4030. "php": ">=7.2.0"
  4031. },
  4032. "type": "library",
  4033. "autoload": {
  4034. "psr-4": {
  4035. "Psr\\Container\\": "src/"
  4036. }
  4037. },
  4038. "notification-url": "https://packagist.org/downloads/",
  4039. "license": [
  4040. "MIT"
  4041. ],
  4042. "authors": [
  4043. {
  4044. "name": "PHP-FIG",
  4045. "homepage": "https://www.php-fig.org/"
  4046. }
  4047. ],
  4048. "description": "Common Container Interface (PHP FIG PSR-11)",
  4049. "homepage": "https://github.com/php-fig/container",
  4050. "keywords": [
  4051. "PSR-11",
  4052. "container",
  4053. "container-interface",
  4054. "container-interop",
  4055. "psr"
  4056. ],
  4057. "support": {
  4058. "issues": "https://github.com/php-fig/container/issues",
  4059. "source": "https://github.com/php-fig/container/tree/1.1.1"
  4060. },
  4061. "time": "2021-03-05T17:36:06+00:00"
  4062. },
  4063. {
  4064. "name": "psr/event-dispatcher",
  4065. "version": "1.0.0",
  4066. "source": {
  4067. "type": "git",
  4068. "url": "https://github.com/php-fig/event-dispatcher.git",
  4069. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  4070. },
  4071. "dist": {
  4072. "type": "zip",
  4073. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4074. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4075. "shasum": "",
  4076. "mirrors": [
  4077. {
  4078. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4079. "preferred": true
  4080. }
  4081. ]
  4082. },
  4083. "require": {
  4084. "php": ">=7.2.0"
  4085. },
  4086. "type": "library",
  4087. "extra": {
  4088. "branch-alias": {
  4089. "dev-master": "1.0.x-dev"
  4090. }
  4091. },
  4092. "autoload": {
  4093. "psr-4": {
  4094. "Psr\\EventDispatcher\\": "src/"
  4095. }
  4096. },
  4097. "notification-url": "https://packagist.org/downloads/",
  4098. "license": [
  4099. "MIT"
  4100. ],
  4101. "authors": [
  4102. {
  4103. "name": "PHP-FIG",
  4104. "homepage": "http://www.php-fig.org/"
  4105. }
  4106. ],
  4107. "description": "Standard interfaces for event handling.",
  4108. "keywords": [
  4109. "events",
  4110. "psr",
  4111. "psr-14"
  4112. ],
  4113. "support": {
  4114. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  4115. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  4116. },
  4117. "time": "2019-01-08T18:20:26+00:00"
  4118. },
  4119. {
  4120. "name": "psr/http-client",
  4121. "version": "1.0.1",
  4122. "source": {
  4123. "type": "git",
  4124. "url": "https://github.com/php-fig/http-client.git",
  4125. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  4126. },
  4127. "dist": {
  4128. "type": "zip",
  4129. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  4130. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  4131. "shasum": "",
  4132. "mirrors": [
  4133. {
  4134. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4135. "preferred": true
  4136. }
  4137. ]
  4138. },
  4139. "require": {
  4140. "php": "^7.0 || ^8.0",
  4141. "psr/http-message": "^1.0"
  4142. },
  4143. "type": "library",
  4144. "extra": {
  4145. "branch-alias": {
  4146. "dev-master": "1.0.x-dev"
  4147. }
  4148. },
  4149. "autoload": {
  4150. "psr-4": {
  4151. "Psr\\Http\\Client\\": "src/"
  4152. }
  4153. },
  4154. "notification-url": "https://packagist.org/downloads/",
  4155. "license": [
  4156. "MIT"
  4157. ],
  4158. "authors": [
  4159. {
  4160. "name": "PHP-FIG",
  4161. "homepage": "http://www.php-fig.org/"
  4162. }
  4163. ],
  4164. "description": "Common interface for HTTP clients",
  4165. "homepage": "https://github.com/php-fig/http-client",
  4166. "keywords": [
  4167. "http",
  4168. "http-client",
  4169. "psr",
  4170. "psr-18"
  4171. ],
  4172. "support": {
  4173. "source": "https://github.com/php-fig/http-client/tree/master"
  4174. },
  4175. "time": "2020-06-29T06:28:15+00:00"
  4176. },
  4177. {
  4178. "name": "psr/http-factory",
  4179. "version": "1.0.1",
  4180. "source": {
  4181. "type": "git",
  4182. "url": "https://github.com/php-fig/http-factory.git",
  4183. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  4184. },
  4185. "dist": {
  4186. "type": "zip",
  4187. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  4188. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  4189. "shasum": "",
  4190. "mirrors": [
  4191. {
  4192. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4193. "preferred": true
  4194. }
  4195. ]
  4196. },
  4197. "require": {
  4198. "php": ">=7.0.0",
  4199. "psr/http-message": "^1.0"
  4200. },
  4201. "type": "library",
  4202. "extra": {
  4203. "branch-alias": {
  4204. "dev-master": "1.0.x-dev"
  4205. }
  4206. },
  4207. "autoload": {
  4208. "psr-4": {
  4209. "Psr\\Http\\Message\\": "src/"
  4210. }
  4211. },
  4212. "notification-url": "https://packagist.org/downloads/",
  4213. "license": [
  4214. "MIT"
  4215. ],
  4216. "authors": [
  4217. {
  4218. "name": "PHP-FIG",
  4219. "homepage": "http://www.php-fig.org/"
  4220. }
  4221. ],
  4222. "description": "Common interfaces for PSR-7 HTTP message factories",
  4223. "keywords": [
  4224. "factory",
  4225. "http",
  4226. "message",
  4227. "psr",
  4228. "psr-17",
  4229. "psr-7",
  4230. "request",
  4231. "response"
  4232. ],
  4233. "support": {
  4234. "source": "https://github.com/php-fig/http-factory/tree/master"
  4235. },
  4236. "time": "2019-04-30T12:38:16+00:00"
  4237. },
  4238. {
  4239. "name": "psr/http-message",
  4240. "version": "1.0.1",
  4241. "source": {
  4242. "type": "git",
  4243. "url": "https://github.com/php-fig/http-message.git",
  4244. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  4245. },
  4246. "dist": {
  4247. "type": "zip",
  4248. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  4249. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  4250. "shasum": "",
  4251. "mirrors": [
  4252. {
  4253. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4254. "preferred": true
  4255. }
  4256. ]
  4257. },
  4258. "require": {
  4259. "php": ">=5.3.0"
  4260. },
  4261. "type": "library",
  4262. "extra": {
  4263. "branch-alias": {
  4264. "dev-master": "1.0.x-dev"
  4265. }
  4266. },
  4267. "autoload": {
  4268. "psr-4": {
  4269. "Psr\\Http\\Message\\": "src/"
  4270. }
  4271. },
  4272. "notification-url": "https://packagist.org/downloads/",
  4273. "license": [
  4274. "MIT"
  4275. ],
  4276. "authors": [
  4277. {
  4278. "name": "PHP-FIG",
  4279. "homepage": "http://www.php-fig.org/"
  4280. }
  4281. ],
  4282. "description": "Common interface for HTTP messages",
  4283. "homepage": "https://github.com/php-fig/http-message",
  4284. "keywords": [
  4285. "http",
  4286. "http-message",
  4287. "psr",
  4288. "psr-7",
  4289. "request",
  4290. "response"
  4291. ],
  4292. "support": {
  4293. "source": "https://github.com/php-fig/http-message/tree/master"
  4294. },
  4295. "time": "2016-08-06T14:39:51+00:00"
  4296. },
  4297. {
  4298. "name": "psr/log",
  4299. "version": "1.1.4",
  4300. "source": {
  4301. "type": "git",
  4302. "url": "https://github.com/php-fig/log.git",
  4303. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  4304. },
  4305. "dist": {
  4306. "type": "zip",
  4307. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  4308. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  4309. "shasum": "",
  4310. "mirrors": [
  4311. {
  4312. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4313. "preferred": true
  4314. }
  4315. ]
  4316. },
  4317. "require": {
  4318. "php": ">=5.3.0"
  4319. },
  4320. "type": "library",
  4321. "extra": {
  4322. "branch-alias": {
  4323. "dev-master": "1.1.x-dev"
  4324. }
  4325. },
  4326. "autoload": {
  4327. "psr-4": {
  4328. "Psr\\Log\\": "Psr/Log/"
  4329. }
  4330. },
  4331. "notification-url": "https://packagist.org/downloads/",
  4332. "license": [
  4333. "MIT"
  4334. ],
  4335. "authors": [
  4336. {
  4337. "name": "PHP-FIG",
  4338. "homepage": "https://www.php-fig.org/"
  4339. }
  4340. ],
  4341. "description": "Common interface for logging libraries",
  4342. "homepage": "https://github.com/php-fig/log",
  4343. "keywords": [
  4344. "log",
  4345. "psr",
  4346. "psr-3"
  4347. ],
  4348. "support": {
  4349. "source": "https://github.com/php-fig/log/tree/1.1.4"
  4350. },
  4351. "time": "2021-05-03T11:20:27+00:00"
  4352. },
  4353. {
  4354. "name": "psr/simple-cache",
  4355. "version": "1.0.1",
  4356. "source": {
  4357. "type": "git",
  4358. "url": "https://github.com/php-fig/simple-cache.git",
  4359. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  4360. },
  4361. "dist": {
  4362. "type": "zip",
  4363. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4364. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  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": ">=5.3.0"
  4375. },
  4376. "type": "library",
  4377. "extra": {
  4378. "branch-alias": {
  4379. "dev-master": "1.0.x-dev"
  4380. }
  4381. },
  4382. "autoload": {
  4383. "psr-4": {
  4384. "Psr\\SimpleCache\\": "src/"
  4385. }
  4386. },
  4387. "notification-url": "https://packagist.org/downloads/",
  4388. "license": [
  4389. "MIT"
  4390. ],
  4391. "authors": [
  4392. {
  4393. "name": "PHP-FIG",
  4394. "homepage": "http://www.php-fig.org/"
  4395. }
  4396. ],
  4397. "description": "Common interfaces for simple caching",
  4398. "keywords": [
  4399. "cache",
  4400. "caching",
  4401. "psr",
  4402. "psr-16",
  4403. "simple-cache"
  4404. ],
  4405. "support": {
  4406. "source": "https://github.com/php-fig/simple-cache/tree/master"
  4407. },
  4408. "time": "2017-10-23T01:57:42+00:00"
  4409. },
  4410. {
  4411. "name": "psy/psysh",
  4412. "version": "v0.10.8",
  4413. "source": {
  4414. "type": "git",
  4415. "url": "https://github.com/bobthecow/psysh.git",
  4416. "reference": "e4573f47750dd6c92dca5aee543fa77513cbd8d3"
  4417. },
  4418. "dist": {
  4419. "type": "zip",
  4420. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/e4573f47750dd6c92dca5aee543fa77513cbd8d3",
  4421. "reference": "e4573f47750dd6c92dca5aee543fa77513cbd8d3",
  4422. "shasum": "",
  4423. "mirrors": [
  4424. {
  4425. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4426. "preferred": true
  4427. }
  4428. ]
  4429. },
  4430. "require": {
  4431. "ext-json": "*",
  4432. "ext-tokenizer": "*",
  4433. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  4434. "php": "^8.0 || ^7.0 || ^5.5.9",
  4435. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  4436. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  4437. },
  4438. "require-dev": {
  4439. "bamarni/composer-bin-plugin": "^1.2",
  4440. "hoa/console": "3.17.*"
  4441. },
  4442. "suggest": {
  4443. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4444. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4445. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  4446. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  4447. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  4448. },
  4449. "bin": [
  4450. "bin/psysh"
  4451. ],
  4452. "type": "library",
  4453. "extra": {
  4454. "branch-alias": {
  4455. "dev-main": "0.10.x-dev"
  4456. }
  4457. },
  4458. "autoload": {
  4459. "files": [
  4460. "src/functions.php"
  4461. ],
  4462. "psr-4": {
  4463. "Psy\\": "src/"
  4464. }
  4465. },
  4466. "notification-url": "https://packagist.org/downloads/",
  4467. "license": [
  4468. "MIT"
  4469. ],
  4470. "authors": [
  4471. {
  4472. "name": "Justin Hileman",
  4473. "email": "justin@justinhileman.info",
  4474. "homepage": "http://justinhileman.com"
  4475. }
  4476. ],
  4477. "description": "An interactive shell for modern PHP.",
  4478. "homepage": "http://psysh.org",
  4479. "keywords": [
  4480. "REPL",
  4481. "console",
  4482. "interactive",
  4483. "shell"
  4484. ],
  4485. "support": {
  4486. "issues": "https://github.com/bobthecow/psysh/issues",
  4487. "source": "https://github.com/bobthecow/psysh/tree/v0.10.8"
  4488. },
  4489. "time": "2021-04-10T16:23:39+00:00"
  4490. },
  4491. {
  4492. "name": "pusher/pusher-php-server",
  4493. "version": "v4.1.5",
  4494. "source": {
  4495. "type": "git",
  4496. "url": "https://github.com/pusher/pusher-http-php.git",
  4497. "reference": "251f22602320c1b1aff84798fe74f3f7ee0504a9"
  4498. },
  4499. "dist": {
  4500. "type": "zip",
  4501. "url": "https://api.github.com/repos/pusher/pusher-http-php/zipball/251f22602320c1b1aff84798fe74f3f7ee0504a9",
  4502. "reference": "251f22602320c1b1aff84798fe74f3f7ee0504a9",
  4503. "shasum": "",
  4504. "mirrors": [
  4505. {
  4506. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4507. "preferred": true
  4508. }
  4509. ]
  4510. },
  4511. "require": {
  4512. "ext-curl": "*",
  4513. "paragonie/sodium_compat": "^1.6",
  4514. "php": "^7.1|^8.0",
  4515. "psr/log": "^1.0"
  4516. },
  4517. "require-dev": {
  4518. "phpunit/phpunit": "^7.2|^8.5|^9.3"
  4519. },
  4520. "type": "library",
  4521. "extra": {
  4522. "branch-alias": {
  4523. "dev-master": "3.4-dev"
  4524. }
  4525. },
  4526. "autoload": {
  4527. "psr-4": {
  4528. "Pusher\\": "src/"
  4529. }
  4530. },
  4531. "notification-url": "https://packagist.org/downloads/",
  4532. "license": [
  4533. "MIT"
  4534. ],
  4535. "description": "Library for interacting with the Pusher REST API",
  4536. "keywords": [
  4537. "events",
  4538. "messaging",
  4539. "php-pusher-server",
  4540. "publish",
  4541. "push",
  4542. "pusher",
  4543. "real time",
  4544. "real-time",
  4545. "realtime",
  4546. "rest",
  4547. "trigger"
  4548. ],
  4549. "support": {
  4550. "issues": "https://github.com/pusher/pusher-http-php/issues",
  4551. "source": "https://github.com/pusher/pusher-http-php/tree/v4.1.5"
  4552. },
  4553. "time": "2020-12-09T09:38:19+00:00"
  4554. },
  4555. {
  4556. "name": "ralouphie/getallheaders",
  4557. "version": "3.0.3",
  4558. "source": {
  4559. "type": "git",
  4560. "url": "https://github.com/ralouphie/getallheaders.git",
  4561. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4562. },
  4563. "dist": {
  4564. "type": "zip",
  4565. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4566. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4567. "shasum": "",
  4568. "mirrors": [
  4569. {
  4570. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4571. "preferred": true
  4572. }
  4573. ]
  4574. },
  4575. "require": {
  4576. "php": ">=5.6"
  4577. },
  4578. "require-dev": {
  4579. "php-coveralls/php-coveralls": "^2.1",
  4580. "phpunit/phpunit": "^5 || ^6.5"
  4581. },
  4582. "type": "library",
  4583. "autoload": {
  4584. "files": [
  4585. "src/getallheaders.php"
  4586. ]
  4587. },
  4588. "notification-url": "https://packagist.org/downloads/",
  4589. "license": [
  4590. "MIT"
  4591. ],
  4592. "authors": [
  4593. {
  4594. "name": "Ralph Khattar",
  4595. "email": "ralph.khattar@gmail.com"
  4596. }
  4597. ],
  4598. "description": "A polyfill for getallheaders.",
  4599. "support": {
  4600. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4601. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4602. },
  4603. "time": "2019-03-08T08:55:37+00:00"
  4604. },
  4605. {
  4606. "name": "ramsey/collection",
  4607. "version": "1.1.3",
  4608. "source": {
  4609. "type": "git",
  4610. "url": "https://github.com/ramsey/collection.git",
  4611. "reference": "28a5c4ab2f5111db6a60b2b4ec84057e0f43b9c1"
  4612. },
  4613. "dist": {
  4614. "type": "zip",
  4615. "url": "https://api.github.com/repos/ramsey/collection/zipball/28a5c4ab2f5111db6a60b2b4ec84057e0f43b9c1",
  4616. "reference": "28a5c4ab2f5111db6a60b2b4ec84057e0f43b9c1",
  4617. "shasum": "",
  4618. "mirrors": [
  4619. {
  4620. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4621. "preferred": true
  4622. }
  4623. ]
  4624. },
  4625. "require": {
  4626. "php": "^7.2 || ^8"
  4627. },
  4628. "require-dev": {
  4629. "captainhook/captainhook": "^5.3",
  4630. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4631. "ergebnis/composer-normalize": "^2.6",
  4632. "fakerphp/faker": "^1.5",
  4633. "hamcrest/hamcrest-php": "^2",
  4634. "jangregor/phpstan-prophecy": "^0.8",
  4635. "mockery/mockery": "^1.3",
  4636. "phpstan/extension-installer": "^1",
  4637. "phpstan/phpstan": "^0.12.32",
  4638. "phpstan/phpstan-mockery": "^0.12.5",
  4639. "phpstan/phpstan-phpunit": "^0.12.11",
  4640. "phpunit/phpunit": "^8.5 || ^9",
  4641. "psy/psysh": "^0.10.4",
  4642. "slevomat/coding-standard": "^6.3",
  4643. "squizlabs/php_codesniffer": "^3.5",
  4644. "vimeo/psalm": "^4.4"
  4645. },
  4646. "type": "library",
  4647. "autoload": {
  4648. "psr-4": {
  4649. "Ramsey\\Collection\\": "src/"
  4650. }
  4651. },
  4652. "notification-url": "https://packagist.org/downloads/",
  4653. "license": [
  4654. "MIT"
  4655. ],
  4656. "authors": [
  4657. {
  4658. "name": "Ben Ramsey",
  4659. "email": "ben@benramsey.com",
  4660. "homepage": "https://benramsey.com"
  4661. }
  4662. ],
  4663. "description": "A PHP 7.2+ library for representing and manipulating collections.",
  4664. "keywords": [
  4665. "array",
  4666. "collection",
  4667. "hash",
  4668. "map",
  4669. "queue",
  4670. "set"
  4671. ],
  4672. "support": {
  4673. "issues": "https://github.com/ramsey/collection/issues",
  4674. "source": "https://github.com/ramsey/collection/tree/1.1.3"
  4675. },
  4676. "funding": [
  4677. {
  4678. "url": "https://github.com/ramsey",
  4679. "type": "github"
  4680. },
  4681. {
  4682. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4683. "type": "tidelift"
  4684. }
  4685. ],
  4686. "time": "2021-01-21T17:40:04+00:00"
  4687. },
  4688. {
  4689. "name": "ramsey/uuid",
  4690. "version": "4.1.1",
  4691. "source": {
  4692. "type": "git",
  4693. "url": "https://github.com/ramsey/uuid.git",
  4694. "reference": "cd4032040a750077205918c86049aa0f43d22947"
  4695. },
  4696. "dist": {
  4697. "type": "zip",
  4698. "url": "https://api.github.com/repos/ramsey/uuid/zipball/cd4032040a750077205918c86049aa0f43d22947",
  4699. "reference": "cd4032040a750077205918c86049aa0f43d22947",
  4700. "shasum": "",
  4701. "mirrors": [
  4702. {
  4703. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4704. "preferred": true
  4705. }
  4706. ]
  4707. },
  4708. "require": {
  4709. "brick/math": "^0.8 || ^0.9",
  4710. "ext-json": "*",
  4711. "php": "^7.2 || ^8",
  4712. "ramsey/collection": "^1.0",
  4713. "symfony/polyfill-ctype": "^1.8"
  4714. },
  4715. "replace": {
  4716. "rhumsaa/uuid": "self.version"
  4717. },
  4718. "require-dev": {
  4719. "codeception/aspect-mock": "^3",
  4720. "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7.0",
  4721. "doctrine/annotations": "^1.8",
  4722. "goaop/framework": "^2",
  4723. "mockery/mockery": "^1.3",
  4724. "moontoast/math": "^1.1",
  4725. "paragonie/random-lib": "^2",
  4726. "php-mock/php-mock-mockery": "^1.3",
  4727. "php-mock/php-mock-phpunit": "^2.5",
  4728. "php-parallel-lint/php-parallel-lint": "^1.1",
  4729. "phpbench/phpbench": "^0.17.1",
  4730. "phpstan/extension-installer": "^1.0",
  4731. "phpstan/phpstan": "^0.12",
  4732. "phpstan/phpstan-mockery": "^0.12",
  4733. "phpstan/phpstan-phpunit": "^0.12",
  4734. "phpunit/phpunit": "^8.5",
  4735. "psy/psysh": "^0.10.0",
  4736. "slevomat/coding-standard": "^6.0",
  4737. "squizlabs/php_codesniffer": "^3.5",
  4738. "vimeo/psalm": "3.9.4"
  4739. },
  4740. "suggest": {
  4741. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4742. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  4743. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4744. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4745. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4746. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4747. },
  4748. "type": "library",
  4749. "extra": {
  4750. "branch-alias": {
  4751. "dev-master": "4.x-dev"
  4752. }
  4753. },
  4754. "autoload": {
  4755. "psr-4": {
  4756. "Ramsey\\Uuid\\": "src/"
  4757. },
  4758. "files": [
  4759. "src/functions.php"
  4760. ]
  4761. },
  4762. "notification-url": "https://packagist.org/downloads/",
  4763. "license": [
  4764. "MIT"
  4765. ],
  4766. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4767. "homepage": "https://github.com/ramsey/uuid",
  4768. "keywords": [
  4769. "guid",
  4770. "identifier",
  4771. "uuid"
  4772. ],
  4773. "support": {
  4774. "issues": "https://github.com/ramsey/uuid/issues",
  4775. "rss": "https://github.com/ramsey/uuid/releases.atom",
  4776. "source": "https://github.com/ramsey/uuid"
  4777. },
  4778. "funding": [
  4779. {
  4780. "url": "https://github.com/ramsey",
  4781. "type": "github"
  4782. }
  4783. ],
  4784. "time": "2020-08-18T17:17:46+00:00"
  4785. },
  4786. {
  4787. "name": "swiftmailer/swiftmailer",
  4788. "version": "v6.2.7",
  4789. "source": {
  4790. "type": "git",
  4791. "url": "https://github.com/swiftmailer/swiftmailer.git",
  4792. "reference": "15f7faf8508e04471f666633addacf54c0ab5933"
  4793. },
  4794. "dist": {
  4795. "type": "zip",
  4796. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/15f7faf8508e04471f666633addacf54c0ab5933",
  4797. "reference": "15f7faf8508e04471f666633addacf54c0ab5933",
  4798. "shasum": "",
  4799. "mirrors": [
  4800. {
  4801. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4802. "preferred": true
  4803. }
  4804. ]
  4805. },
  4806. "require": {
  4807. "egulias/email-validator": "^2.0|^3.1",
  4808. "php": ">=7.0.0",
  4809. "symfony/polyfill-iconv": "^1.0",
  4810. "symfony/polyfill-intl-idn": "^1.10",
  4811. "symfony/polyfill-mbstring": "^1.0"
  4812. },
  4813. "require-dev": {
  4814. "mockery/mockery": "^1.0",
  4815. "symfony/phpunit-bridge": "^4.4|^5.0"
  4816. },
  4817. "suggest": {
  4818. "ext-intl": "Needed to support internationalized email addresses"
  4819. },
  4820. "type": "library",
  4821. "extra": {
  4822. "branch-alias": {
  4823. "dev-master": "6.2-dev"
  4824. }
  4825. },
  4826. "autoload": {
  4827. "files": [
  4828. "lib/swift_required.php"
  4829. ]
  4830. },
  4831. "notification-url": "https://packagist.org/downloads/",
  4832. "license": [
  4833. "MIT"
  4834. ],
  4835. "authors": [
  4836. {
  4837. "name": "Chris Corbyn"
  4838. },
  4839. {
  4840. "name": "Fabien Potencier",
  4841. "email": "fabien@symfony.com"
  4842. }
  4843. ],
  4844. "description": "Swiftmailer, free feature-rich PHP mailer",
  4845. "homepage": "https://swiftmailer.symfony.com",
  4846. "keywords": [
  4847. "email",
  4848. "mail",
  4849. "mailer"
  4850. ],
  4851. "support": {
  4852. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  4853. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.2.7"
  4854. },
  4855. "funding": [
  4856. {
  4857. "url": "https://github.com/fabpot",
  4858. "type": "github"
  4859. },
  4860. {
  4861. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  4862. "type": "tidelift"
  4863. }
  4864. ],
  4865. "time": "2021-03-09T12:30:35+00:00"
  4866. },
  4867. {
  4868. "name": "symfony/console",
  4869. "version": "v5.3.2",
  4870. "source": {
  4871. "type": "git",
  4872. "url": "https://github.com/symfony/console.git",
  4873. "reference": "649730483885ff2ca99ca0560ef0e5f6b03f2ac1"
  4874. },
  4875. "dist": {
  4876. "type": "zip",
  4877. "url": "https://api.github.com/repos/symfony/console/zipball/649730483885ff2ca99ca0560ef0e5f6b03f2ac1",
  4878. "reference": "649730483885ff2ca99ca0560ef0e5f6b03f2ac1",
  4879. "shasum": "",
  4880. "mirrors": [
  4881. {
  4882. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4883. "preferred": true
  4884. }
  4885. ]
  4886. },
  4887. "require": {
  4888. "php": ">=7.2.5",
  4889. "symfony/deprecation-contracts": "^2.1",
  4890. "symfony/polyfill-mbstring": "~1.0",
  4891. "symfony/polyfill-php73": "^1.8",
  4892. "symfony/polyfill-php80": "^1.15",
  4893. "symfony/service-contracts": "^1.1|^2",
  4894. "symfony/string": "^5.1"
  4895. },
  4896. "conflict": {
  4897. "symfony/dependency-injection": "<4.4",
  4898. "symfony/dotenv": "<5.1",
  4899. "symfony/event-dispatcher": "<4.4",
  4900. "symfony/lock": "<4.4",
  4901. "symfony/process": "<4.4"
  4902. },
  4903. "provide": {
  4904. "psr/log-implementation": "1.0"
  4905. },
  4906. "require-dev": {
  4907. "psr/log": "~1.0",
  4908. "symfony/config": "^4.4|^5.0",
  4909. "symfony/dependency-injection": "^4.4|^5.0",
  4910. "symfony/event-dispatcher": "^4.4|^5.0",
  4911. "symfony/lock": "^4.4|^5.0",
  4912. "symfony/process": "^4.4|^5.0",
  4913. "symfony/var-dumper": "^4.4|^5.0"
  4914. },
  4915. "suggest": {
  4916. "psr/log": "For using the console logger",
  4917. "symfony/event-dispatcher": "",
  4918. "symfony/lock": "",
  4919. "symfony/process": ""
  4920. },
  4921. "type": "library",
  4922. "autoload": {
  4923. "psr-4": {
  4924. "Symfony\\Component\\Console\\": ""
  4925. },
  4926. "exclude-from-classmap": [
  4927. "/Tests/"
  4928. ]
  4929. },
  4930. "notification-url": "https://packagist.org/downloads/",
  4931. "license": [
  4932. "MIT"
  4933. ],
  4934. "authors": [
  4935. {
  4936. "name": "Fabien Potencier",
  4937. "email": "fabien@symfony.com"
  4938. },
  4939. {
  4940. "name": "Symfony Community",
  4941. "homepage": "https://symfony.com/contributors"
  4942. }
  4943. ],
  4944. "description": "Eases the creation of beautiful and testable command line interfaces",
  4945. "homepage": "https://symfony.com",
  4946. "keywords": [
  4947. "cli",
  4948. "command line",
  4949. "console",
  4950. "terminal"
  4951. ],
  4952. "support": {
  4953. "source": "https://github.com/symfony/console/tree/v5.3.2"
  4954. },
  4955. "funding": [
  4956. {
  4957. "url": "https://symfony.com/sponsor",
  4958. "type": "custom"
  4959. },
  4960. {
  4961. "url": "https://github.com/fabpot",
  4962. "type": "github"
  4963. },
  4964. {
  4965. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4966. "type": "tidelift"
  4967. }
  4968. ],
  4969. "time": "2021-06-12T09:42:48+00:00"
  4970. },
  4971. {
  4972. "name": "symfony/css-selector",
  4973. "version": "v5.3.0",
  4974. "source": {
  4975. "type": "git",
  4976. "url": "https://github.com/symfony/css-selector.git",
  4977. "reference": "fcd0b29a7a0b1bb5bfbedc6231583d77fea04814"
  4978. },
  4979. "dist": {
  4980. "type": "zip",
  4981. "url": "https://api.github.com/repos/symfony/css-selector/zipball/fcd0b29a7a0b1bb5bfbedc6231583d77fea04814",
  4982. "reference": "fcd0b29a7a0b1bb5bfbedc6231583d77fea04814",
  4983. "shasum": "",
  4984. "mirrors": [
  4985. {
  4986. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4987. "preferred": true
  4988. }
  4989. ]
  4990. },
  4991. "require": {
  4992. "php": ">=7.2.5"
  4993. },
  4994. "type": "library",
  4995. "autoload": {
  4996. "psr-4": {
  4997. "Symfony\\Component\\CssSelector\\": ""
  4998. },
  4999. "exclude-from-classmap": [
  5000. "/Tests/"
  5001. ]
  5002. },
  5003. "notification-url": "https://packagist.org/downloads/",
  5004. "license": [
  5005. "MIT"
  5006. ],
  5007. "authors": [
  5008. {
  5009. "name": "Fabien Potencier",
  5010. "email": "fabien@symfony.com"
  5011. },
  5012. {
  5013. "name": "Jean-François Simon",
  5014. "email": "jeanfrancois.simon@sensiolabs.com"
  5015. },
  5016. {
  5017. "name": "Symfony Community",
  5018. "homepage": "https://symfony.com/contributors"
  5019. }
  5020. ],
  5021. "description": "Converts CSS selectors to XPath expressions",
  5022. "homepage": "https://symfony.com",
  5023. "support": {
  5024. "source": "https://github.com/symfony/css-selector/tree/v5.3.0"
  5025. },
  5026. "funding": [
  5027. {
  5028. "url": "https://symfony.com/sponsor",
  5029. "type": "custom"
  5030. },
  5031. {
  5032. "url": "https://github.com/fabpot",
  5033. "type": "github"
  5034. },
  5035. {
  5036. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5037. "type": "tidelift"
  5038. }
  5039. ],
  5040. "time": "2021-05-26T17:40:38+00:00"
  5041. },
  5042. {
  5043. "name": "symfony/deprecation-contracts",
  5044. "version": "v2.4.0",
  5045. "source": {
  5046. "type": "git",
  5047. "url": "https://github.com/symfony/deprecation-contracts.git",
  5048. "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627"
  5049. },
  5050. "dist": {
  5051. "type": "zip",
  5052. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5f38c8804a9e97d23e0c8d63341088cd8a22d627",
  5053. "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627",
  5054. "shasum": "",
  5055. "mirrors": [
  5056. {
  5057. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5058. "preferred": true
  5059. }
  5060. ]
  5061. },
  5062. "require": {
  5063. "php": ">=7.1"
  5064. },
  5065. "type": "library",
  5066. "extra": {
  5067. "branch-alias": {
  5068. "dev-main": "2.4-dev"
  5069. },
  5070. "thanks": {
  5071. "name": "symfony/contracts",
  5072. "url": "https://github.com/symfony/contracts"
  5073. }
  5074. },
  5075. "autoload": {
  5076. "files": [
  5077. "function.php"
  5078. ]
  5079. },
  5080. "notification-url": "https://packagist.org/downloads/",
  5081. "license": [
  5082. "MIT"
  5083. ],
  5084. "authors": [
  5085. {
  5086. "name": "Nicolas Grekas",
  5087. "email": "p@tchwork.com"
  5088. },
  5089. {
  5090. "name": "Symfony Community",
  5091. "homepage": "https://symfony.com/contributors"
  5092. }
  5093. ],
  5094. "description": "A generic function and convention to trigger deprecation notices",
  5095. "homepage": "https://symfony.com",
  5096. "support": {
  5097. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.4.0"
  5098. },
  5099. "funding": [
  5100. {
  5101. "url": "https://symfony.com/sponsor",
  5102. "type": "custom"
  5103. },
  5104. {
  5105. "url": "https://github.com/fabpot",
  5106. "type": "github"
  5107. },
  5108. {
  5109. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5110. "type": "tidelift"
  5111. }
  5112. ],
  5113. "time": "2021-03-23T23:28:01+00:00"
  5114. },
  5115. {
  5116. "name": "symfony/error-handler",
  5117. "version": "v5.3.3",
  5118. "source": {
  5119. "type": "git",
  5120. "url": "https://github.com/symfony/error-handler.git",
  5121. "reference": "43323e79c80719e8a4674e33484bca98270d223f"
  5122. },
  5123. "dist": {
  5124. "type": "zip",
  5125. "url": "https://api.github.com/repos/symfony/error-handler/zipball/43323e79c80719e8a4674e33484bca98270d223f",
  5126. "reference": "43323e79c80719e8a4674e33484bca98270d223f",
  5127. "shasum": "",
  5128. "mirrors": [
  5129. {
  5130. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5131. "preferred": true
  5132. }
  5133. ]
  5134. },
  5135. "require": {
  5136. "php": ">=7.2.5",
  5137. "psr/log": "^1.0",
  5138. "symfony/polyfill-php80": "^1.15",
  5139. "symfony/var-dumper": "^4.4|^5.0"
  5140. },
  5141. "require-dev": {
  5142. "symfony/deprecation-contracts": "^2.1",
  5143. "symfony/http-kernel": "^4.4|^5.0",
  5144. "symfony/serializer": "^4.4|^5.0"
  5145. },
  5146. "type": "library",
  5147. "autoload": {
  5148. "psr-4": {
  5149. "Symfony\\Component\\ErrorHandler\\": ""
  5150. },
  5151. "exclude-from-classmap": [
  5152. "/Tests/"
  5153. ]
  5154. },
  5155. "notification-url": "https://packagist.org/downloads/",
  5156. "license": [
  5157. "MIT"
  5158. ],
  5159. "authors": [
  5160. {
  5161. "name": "Fabien Potencier",
  5162. "email": "fabien@symfony.com"
  5163. },
  5164. {
  5165. "name": "Symfony Community",
  5166. "homepage": "https://symfony.com/contributors"
  5167. }
  5168. ],
  5169. "description": "Provides tools to manage errors and ease debugging PHP code",
  5170. "homepage": "https://symfony.com",
  5171. "support": {
  5172. "source": "https://github.com/symfony/error-handler/tree/v5.3.3"
  5173. },
  5174. "funding": [
  5175. {
  5176. "url": "https://symfony.com/sponsor",
  5177. "type": "custom"
  5178. },
  5179. {
  5180. "url": "https://github.com/fabpot",
  5181. "type": "github"
  5182. },
  5183. {
  5184. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5185. "type": "tidelift"
  5186. }
  5187. ],
  5188. "time": "2021-06-24T08:13:00+00:00"
  5189. },
  5190. {
  5191. "name": "symfony/event-dispatcher",
  5192. "version": "v5.3.0",
  5193. "source": {
  5194. "type": "git",
  5195. "url": "https://github.com/symfony/event-dispatcher.git",
  5196. "reference": "67a5f354afa8e2f231081b3fa11a5912f933c3ce"
  5197. },
  5198. "dist": {
  5199. "type": "zip",
  5200. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/67a5f354afa8e2f231081b3fa11a5912f933c3ce",
  5201. "reference": "67a5f354afa8e2f231081b3fa11a5912f933c3ce",
  5202. "shasum": "",
  5203. "mirrors": [
  5204. {
  5205. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5206. "preferred": true
  5207. }
  5208. ]
  5209. },
  5210. "require": {
  5211. "php": ">=7.2.5",
  5212. "symfony/deprecation-contracts": "^2.1",
  5213. "symfony/event-dispatcher-contracts": "^2",
  5214. "symfony/polyfill-php80": "^1.15"
  5215. },
  5216. "conflict": {
  5217. "symfony/dependency-injection": "<4.4"
  5218. },
  5219. "provide": {
  5220. "psr/event-dispatcher-implementation": "1.0",
  5221. "symfony/event-dispatcher-implementation": "2.0"
  5222. },
  5223. "require-dev": {
  5224. "psr/log": "~1.0",
  5225. "symfony/config": "^4.4|^5.0",
  5226. "symfony/dependency-injection": "^4.4|^5.0",
  5227. "symfony/error-handler": "^4.4|^5.0",
  5228. "symfony/expression-language": "^4.4|^5.0",
  5229. "symfony/http-foundation": "^4.4|^5.0",
  5230. "symfony/service-contracts": "^1.1|^2",
  5231. "symfony/stopwatch": "^4.4|^5.0"
  5232. },
  5233. "suggest": {
  5234. "symfony/dependency-injection": "",
  5235. "symfony/http-kernel": ""
  5236. },
  5237. "type": "library",
  5238. "autoload": {
  5239. "psr-4": {
  5240. "Symfony\\Component\\EventDispatcher\\": ""
  5241. },
  5242. "exclude-from-classmap": [
  5243. "/Tests/"
  5244. ]
  5245. },
  5246. "notification-url": "https://packagist.org/downloads/",
  5247. "license": [
  5248. "MIT"
  5249. ],
  5250. "authors": [
  5251. {
  5252. "name": "Fabien Potencier",
  5253. "email": "fabien@symfony.com"
  5254. },
  5255. {
  5256. "name": "Symfony Community",
  5257. "homepage": "https://symfony.com/contributors"
  5258. }
  5259. ],
  5260. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5261. "homepage": "https://symfony.com",
  5262. "support": {
  5263. "source": "https://github.com/symfony/event-dispatcher/tree/v5.3.0"
  5264. },
  5265. "funding": [
  5266. {
  5267. "url": "https://symfony.com/sponsor",
  5268. "type": "custom"
  5269. },
  5270. {
  5271. "url": "https://github.com/fabpot",
  5272. "type": "github"
  5273. },
  5274. {
  5275. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5276. "type": "tidelift"
  5277. }
  5278. ],
  5279. "time": "2021-05-26T17:43:10+00:00"
  5280. },
  5281. {
  5282. "name": "symfony/event-dispatcher-contracts",
  5283. "version": "v2.4.0",
  5284. "source": {
  5285. "type": "git",
  5286. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5287. "reference": "69fee1ad2332a7cbab3aca13591953da9cdb7a11"
  5288. },
  5289. "dist": {
  5290. "type": "zip",
  5291. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/69fee1ad2332a7cbab3aca13591953da9cdb7a11",
  5292. "reference": "69fee1ad2332a7cbab3aca13591953da9cdb7a11",
  5293. "shasum": "",
  5294. "mirrors": [
  5295. {
  5296. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5297. "preferred": true
  5298. }
  5299. ]
  5300. },
  5301. "require": {
  5302. "php": ">=7.2.5",
  5303. "psr/event-dispatcher": "^1"
  5304. },
  5305. "suggest": {
  5306. "symfony/event-dispatcher-implementation": ""
  5307. },
  5308. "type": "library",
  5309. "extra": {
  5310. "branch-alias": {
  5311. "dev-main": "2.4-dev"
  5312. },
  5313. "thanks": {
  5314. "name": "symfony/contracts",
  5315. "url": "https://github.com/symfony/contracts"
  5316. }
  5317. },
  5318. "autoload": {
  5319. "psr-4": {
  5320. "Symfony\\Contracts\\EventDispatcher\\": ""
  5321. }
  5322. },
  5323. "notification-url": "https://packagist.org/downloads/",
  5324. "license": [
  5325. "MIT"
  5326. ],
  5327. "authors": [
  5328. {
  5329. "name": "Nicolas Grekas",
  5330. "email": "p@tchwork.com"
  5331. },
  5332. {
  5333. "name": "Symfony Community",
  5334. "homepage": "https://symfony.com/contributors"
  5335. }
  5336. ],
  5337. "description": "Generic abstractions related to dispatching event",
  5338. "homepage": "https://symfony.com",
  5339. "keywords": [
  5340. "abstractions",
  5341. "contracts",
  5342. "decoupling",
  5343. "interfaces",
  5344. "interoperability",
  5345. "standards"
  5346. ],
  5347. "support": {
  5348. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.4.0"
  5349. },
  5350. "funding": [
  5351. {
  5352. "url": "https://symfony.com/sponsor",
  5353. "type": "custom"
  5354. },
  5355. {
  5356. "url": "https://github.com/fabpot",
  5357. "type": "github"
  5358. },
  5359. {
  5360. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5361. "type": "tidelift"
  5362. }
  5363. ],
  5364. "time": "2021-03-23T23:28:01+00:00"
  5365. },
  5366. {
  5367. "name": "symfony/finder",
  5368. "version": "v5.3.0",
  5369. "source": {
  5370. "type": "git",
  5371. "url": "https://github.com/symfony/finder.git",
  5372. "reference": "0ae3f047bed4edff6fd35b26a9a6bfdc92c953c6"
  5373. },
  5374. "dist": {
  5375. "type": "zip",
  5376. "url": "https://api.github.com/repos/symfony/finder/zipball/0ae3f047bed4edff6fd35b26a9a6bfdc92c953c6",
  5377. "reference": "0ae3f047bed4edff6fd35b26a9a6bfdc92c953c6",
  5378. "shasum": "",
  5379. "mirrors": [
  5380. {
  5381. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5382. "preferred": true
  5383. }
  5384. ]
  5385. },
  5386. "require": {
  5387. "php": ">=7.2.5"
  5388. },
  5389. "type": "library",
  5390. "autoload": {
  5391. "psr-4": {
  5392. "Symfony\\Component\\Finder\\": ""
  5393. },
  5394. "exclude-from-classmap": [
  5395. "/Tests/"
  5396. ]
  5397. },
  5398. "notification-url": "https://packagist.org/downloads/",
  5399. "license": [
  5400. "MIT"
  5401. ],
  5402. "authors": [
  5403. {
  5404. "name": "Fabien Potencier",
  5405. "email": "fabien@symfony.com"
  5406. },
  5407. {
  5408. "name": "Symfony Community",
  5409. "homepage": "https://symfony.com/contributors"
  5410. }
  5411. ],
  5412. "description": "Finds files and directories via an intuitive fluent interface",
  5413. "homepage": "https://symfony.com",
  5414. "support": {
  5415. "source": "https://github.com/symfony/finder/tree/v5.3.0"
  5416. },
  5417. "funding": [
  5418. {
  5419. "url": "https://symfony.com/sponsor",
  5420. "type": "custom"
  5421. },
  5422. {
  5423. "url": "https://github.com/fabpot",
  5424. "type": "github"
  5425. },
  5426. {
  5427. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5428. "type": "tidelift"
  5429. }
  5430. ],
  5431. "time": "2021-05-26T12:52:38+00:00"
  5432. },
  5433. {
  5434. "name": "symfony/http-client-contracts",
  5435. "version": "v2.4.0",
  5436. "source": {
  5437. "type": "git",
  5438. "url": "https://github.com/symfony/http-client-contracts.git",
  5439. "reference": "7e82f6084d7cae521a75ef2cb5c9457bbda785f4"
  5440. },
  5441. "dist": {
  5442. "type": "zip",
  5443. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/7e82f6084d7cae521a75ef2cb5c9457bbda785f4",
  5444. "reference": "7e82f6084d7cae521a75ef2cb5c9457bbda785f4",
  5445. "shasum": "",
  5446. "mirrors": [
  5447. {
  5448. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5449. "preferred": true
  5450. }
  5451. ]
  5452. },
  5453. "require": {
  5454. "php": ">=7.2.5"
  5455. },
  5456. "suggest": {
  5457. "symfony/http-client-implementation": ""
  5458. },
  5459. "type": "library",
  5460. "extra": {
  5461. "branch-alias": {
  5462. "dev-main": "2.4-dev"
  5463. },
  5464. "thanks": {
  5465. "name": "symfony/contracts",
  5466. "url": "https://github.com/symfony/contracts"
  5467. }
  5468. },
  5469. "autoload": {
  5470. "psr-4": {
  5471. "Symfony\\Contracts\\HttpClient\\": ""
  5472. }
  5473. },
  5474. "notification-url": "https://packagist.org/downloads/",
  5475. "license": [
  5476. "MIT"
  5477. ],
  5478. "authors": [
  5479. {
  5480. "name": "Nicolas Grekas",
  5481. "email": "p@tchwork.com"
  5482. },
  5483. {
  5484. "name": "Symfony Community",
  5485. "homepage": "https://symfony.com/contributors"
  5486. }
  5487. ],
  5488. "description": "Generic abstractions related to HTTP clients",
  5489. "homepage": "https://symfony.com",
  5490. "keywords": [
  5491. "abstractions",
  5492. "contracts",
  5493. "decoupling",
  5494. "interfaces",
  5495. "interoperability",
  5496. "standards"
  5497. ],
  5498. "support": {
  5499. "source": "https://github.com/symfony/http-client-contracts/tree/v2.4.0"
  5500. },
  5501. "funding": [
  5502. {
  5503. "url": "https://symfony.com/sponsor",
  5504. "type": "custom"
  5505. },
  5506. {
  5507. "url": "https://github.com/fabpot",
  5508. "type": "github"
  5509. },
  5510. {
  5511. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5512. "type": "tidelift"
  5513. }
  5514. ],
  5515. "time": "2021-04-11T23:07:08+00:00"
  5516. },
  5517. {
  5518. "name": "symfony/http-foundation",
  5519. "version": "v5.3.3",
  5520. "source": {
  5521. "type": "git",
  5522. "url": "https://github.com/symfony/http-foundation.git",
  5523. "reference": "0e45ab1574caa0460d9190871a8ce47539e40ccf"
  5524. },
  5525. "dist": {
  5526. "type": "zip",
  5527. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/0e45ab1574caa0460d9190871a8ce47539e40ccf",
  5528. "reference": "0e45ab1574caa0460d9190871a8ce47539e40ccf",
  5529. "shasum": "",
  5530. "mirrors": [
  5531. {
  5532. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5533. "preferred": true
  5534. }
  5535. ]
  5536. },
  5537. "require": {
  5538. "php": ">=7.2.5",
  5539. "symfony/deprecation-contracts": "^2.1",
  5540. "symfony/polyfill-mbstring": "~1.1",
  5541. "symfony/polyfill-php80": "^1.15"
  5542. },
  5543. "require-dev": {
  5544. "predis/predis": "~1.0",
  5545. "symfony/cache": "^4.4|^5.0",
  5546. "symfony/expression-language": "^4.4|^5.0",
  5547. "symfony/mime": "^4.4|^5.0"
  5548. },
  5549. "suggest": {
  5550. "symfony/mime": "To use the file extension guesser"
  5551. },
  5552. "type": "library",
  5553. "autoload": {
  5554. "psr-4": {
  5555. "Symfony\\Component\\HttpFoundation\\": ""
  5556. },
  5557. "exclude-from-classmap": [
  5558. "/Tests/"
  5559. ]
  5560. },
  5561. "notification-url": "https://packagist.org/downloads/",
  5562. "license": [
  5563. "MIT"
  5564. ],
  5565. "authors": [
  5566. {
  5567. "name": "Fabien Potencier",
  5568. "email": "fabien@symfony.com"
  5569. },
  5570. {
  5571. "name": "Symfony Community",
  5572. "homepage": "https://symfony.com/contributors"
  5573. }
  5574. ],
  5575. "description": "Defines an object-oriented layer for the HTTP specification",
  5576. "homepage": "https://symfony.com",
  5577. "support": {
  5578. "source": "https://github.com/symfony/http-foundation/tree/v5.3.3"
  5579. },
  5580. "funding": [
  5581. {
  5582. "url": "https://symfony.com/sponsor",
  5583. "type": "custom"
  5584. },
  5585. {
  5586. "url": "https://github.com/fabpot",
  5587. "type": "github"
  5588. },
  5589. {
  5590. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5591. "type": "tidelift"
  5592. }
  5593. ],
  5594. "time": "2021-06-27T09:19:40+00:00"
  5595. },
  5596. {
  5597. "name": "symfony/http-kernel",
  5598. "version": "v5.3.3",
  5599. "source": {
  5600. "type": "git",
  5601. "url": "https://github.com/symfony/http-kernel.git",
  5602. "reference": "90ad9f4b21ddcb8ebe9faadfcca54929ad23f9f8"
  5603. },
  5604. "dist": {
  5605. "type": "zip",
  5606. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/90ad9f4b21ddcb8ebe9faadfcca54929ad23f9f8",
  5607. "reference": "90ad9f4b21ddcb8ebe9faadfcca54929ad23f9f8",
  5608. "shasum": "",
  5609. "mirrors": [
  5610. {
  5611. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5612. "preferred": true
  5613. }
  5614. ]
  5615. },
  5616. "require": {
  5617. "php": ">=7.2.5",
  5618. "psr/log": "~1.0",
  5619. "symfony/deprecation-contracts": "^2.1",
  5620. "symfony/error-handler": "^4.4|^5.0",
  5621. "symfony/event-dispatcher": "^5.0",
  5622. "symfony/http-client-contracts": "^1.1|^2",
  5623. "symfony/http-foundation": "^5.3",
  5624. "symfony/polyfill-ctype": "^1.8",
  5625. "symfony/polyfill-php73": "^1.9",
  5626. "symfony/polyfill-php80": "^1.15"
  5627. },
  5628. "conflict": {
  5629. "symfony/browser-kit": "<4.4",
  5630. "symfony/cache": "<5.0",
  5631. "symfony/config": "<5.0",
  5632. "symfony/console": "<4.4",
  5633. "symfony/dependency-injection": "<5.3",
  5634. "symfony/doctrine-bridge": "<5.0",
  5635. "symfony/form": "<5.0",
  5636. "symfony/http-client": "<5.0",
  5637. "symfony/mailer": "<5.0",
  5638. "symfony/messenger": "<5.0",
  5639. "symfony/translation": "<5.0",
  5640. "symfony/twig-bridge": "<5.0",
  5641. "symfony/validator": "<5.0",
  5642. "twig/twig": "<2.13"
  5643. },
  5644. "provide": {
  5645. "psr/log-implementation": "1.0"
  5646. },
  5647. "require-dev": {
  5648. "psr/cache": "^1.0|^2.0|^3.0",
  5649. "symfony/browser-kit": "^4.4|^5.0",
  5650. "symfony/config": "^5.0",
  5651. "symfony/console": "^4.4|^5.0",
  5652. "symfony/css-selector": "^4.4|^5.0",
  5653. "symfony/dependency-injection": "^5.3",
  5654. "symfony/dom-crawler": "^4.4|^5.0",
  5655. "symfony/expression-language": "^4.4|^5.0",
  5656. "symfony/finder": "^4.4|^5.0",
  5657. "symfony/process": "^4.4|^5.0",
  5658. "symfony/routing": "^4.4|^5.0",
  5659. "symfony/stopwatch": "^4.4|^5.0",
  5660. "symfony/translation": "^4.4|^5.0",
  5661. "symfony/translation-contracts": "^1.1|^2",
  5662. "twig/twig": "^2.13|^3.0.4"
  5663. },
  5664. "suggest": {
  5665. "symfony/browser-kit": "",
  5666. "symfony/config": "",
  5667. "symfony/console": "",
  5668. "symfony/dependency-injection": ""
  5669. },
  5670. "type": "library",
  5671. "autoload": {
  5672. "psr-4": {
  5673. "Symfony\\Component\\HttpKernel\\": ""
  5674. },
  5675. "exclude-from-classmap": [
  5676. "/Tests/"
  5677. ]
  5678. },
  5679. "notification-url": "https://packagist.org/downloads/",
  5680. "license": [
  5681. "MIT"
  5682. ],
  5683. "authors": [
  5684. {
  5685. "name": "Fabien Potencier",
  5686. "email": "fabien@symfony.com"
  5687. },
  5688. {
  5689. "name": "Symfony Community",
  5690. "homepage": "https://symfony.com/contributors"
  5691. }
  5692. ],
  5693. "description": "Provides a structured process for converting a Request into a Response",
  5694. "homepage": "https://symfony.com",
  5695. "support": {
  5696. "source": "https://github.com/symfony/http-kernel/tree/v5.3.3"
  5697. },
  5698. "funding": [
  5699. {
  5700. "url": "https://symfony.com/sponsor",
  5701. "type": "custom"
  5702. },
  5703. {
  5704. "url": "https://github.com/fabpot",
  5705. "type": "github"
  5706. },
  5707. {
  5708. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5709. "type": "tidelift"
  5710. }
  5711. ],
  5712. "time": "2021-06-30T08:27:49+00:00"
  5713. },
  5714. {
  5715. "name": "symfony/mime",
  5716. "version": "v5.3.2",
  5717. "source": {
  5718. "type": "git",
  5719. "url": "https://github.com/symfony/mime.git",
  5720. "reference": "47dd7912152b82d0d4c8d9040dbc93d6232d472a"
  5721. },
  5722. "dist": {
  5723. "type": "zip",
  5724. "url": "https://api.github.com/repos/symfony/mime/zipball/47dd7912152b82d0d4c8d9040dbc93d6232d472a",
  5725. "reference": "47dd7912152b82d0d4c8d9040dbc93d6232d472a",
  5726. "shasum": "",
  5727. "mirrors": [
  5728. {
  5729. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5730. "preferred": true
  5731. }
  5732. ]
  5733. },
  5734. "require": {
  5735. "php": ">=7.2.5",
  5736. "symfony/deprecation-contracts": "^2.1",
  5737. "symfony/polyfill-intl-idn": "^1.10",
  5738. "symfony/polyfill-mbstring": "^1.0",
  5739. "symfony/polyfill-php80": "^1.15"
  5740. },
  5741. "conflict": {
  5742. "egulias/email-validator": "~3.0.0",
  5743. "phpdocumentor/reflection-docblock": "<3.2.2",
  5744. "phpdocumentor/type-resolver": "<1.4.0",
  5745. "symfony/mailer": "<4.4"
  5746. },
  5747. "require-dev": {
  5748. "egulias/email-validator": "^2.1.10|^3.1",
  5749. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5750. "symfony/dependency-injection": "^4.4|^5.0",
  5751. "symfony/property-access": "^4.4|^5.1",
  5752. "symfony/property-info": "^4.4|^5.1",
  5753. "symfony/serializer": "^5.2"
  5754. },
  5755. "type": "library",
  5756. "autoload": {
  5757. "psr-4": {
  5758. "Symfony\\Component\\Mime\\": ""
  5759. },
  5760. "exclude-from-classmap": [
  5761. "/Tests/"
  5762. ]
  5763. },
  5764. "notification-url": "https://packagist.org/downloads/",
  5765. "license": [
  5766. "MIT"
  5767. ],
  5768. "authors": [
  5769. {
  5770. "name": "Fabien Potencier",
  5771. "email": "fabien@symfony.com"
  5772. },
  5773. {
  5774. "name": "Symfony Community",
  5775. "homepage": "https://symfony.com/contributors"
  5776. }
  5777. ],
  5778. "description": "Allows manipulating MIME messages",
  5779. "homepage": "https://symfony.com",
  5780. "keywords": [
  5781. "mime",
  5782. "mime-type"
  5783. ],
  5784. "support": {
  5785. "source": "https://github.com/symfony/mime/tree/v5.3.2"
  5786. },
  5787. "funding": [
  5788. {
  5789. "url": "https://symfony.com/sponsor",
  5790. "type": "custom"
  5791. },
  5792. {
  5793. "url": "https://github.com/fabpot",
  5794. "type": "github"
  5795. },
  5796. {
  5797. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5798. "type": "tidelift"
  5799. }
  5800. ],
  5801. "time": "2021-06-09T10:58:01+00:00"
  5802. },
  5803. {
  5804. "name": "symfony/options-resolver",
  5805. "version": "v5.3.0",
  5806. "source": {
  5807. "type": "git",
  5808. "url": "https://github.com/symfony/options-resolver.git",
  5809. "reference": "162e886ca035869866d233a2bfef70cc28f9bbe5"
  5810. },
  5811. "dist": {
  5812. "type": "zip",
  5813. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/162e886ca035869866d233a2bfef70cc28f9bbe5",
  5814. "reference": "162e886ca035869866d233a2bfef70cc28f9bbe5",
  5815. "shasum": "",
  5816. "mirrors": [
  5817. {
  5818. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5819. "preferred": true
  5820. }
  5821. ]
  5822. },
  5823. "require": {
  5824. "php": ">=7.2.5",
  5825. "symfony/deprecation-contracts": "^2.1",
  5826. "symfony/polyfill-php73": "~1.0",
  5827. "symfony/polyfill-php80": "^1.15"
  5828. },
  5829. "type": "library",
  5830. "autoload": {
  5831. "psr-4": {
  5832. "Symfony\\Component\\OptionsResolver\\": ""
  5833. },
  5834. "exclude-from-classmap": [
  5835. "/Tests/"
  5836. ]
  5837. },
  5838. "notification-url": "https://packagist.org/downloads/",
  5839. "license": [
  5840. "MIT"
  5841. ],
  5842. "authors": [
  5843. {
  5844. "name": "Fabien Potencier",
  5845. "email": "fabien@symfony.com"
  5846. },
  5847. {
  5848. "name": "Symfony Community",
  5849. "homepage": "https://symfony.com/contributors"
  5850. }
  5851. ],
  5852. "description": "Provides an improved replacement for the array_replace PHP function",
  5853. "homepage": "https://symfony.com",
  5854. "keywords": [
  5855. "config",
  5856. "configuration",
  5857. "options"
  5858. ],
  5859. "support": {
  5860. "source": "https://github.com/symfony/options-resolver/tree/v5.3.0"
  5861. },
  5862. "funding": [
  5863. {
  5864. "url": "https://symfony.com/sponsor",
  5865. "type": "custom"
  5866. },
  5867. {
  5868. "url": "https://github.com/fabpot",
  5869. "type": "github"
  5870. },
  5871. {
  5872. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5873. "type": "tidelift"
  5874. }
  5875. ],
  5876. "time": "2021-05-26T17:43:10+00:00"
  5877. },
  5878. {
  5879. "name": "symfony/polyfill-ctype",
  5880. "version": "v1.23.0",
  5881. "source": {
  5882. "type": "git",
  5883. "url": "https://github.com/symfony/polyfill-ctype.git",
  5884. "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce"
  5885. },
  5886. "dist": {
  5887. "type": "zip",
  5888. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/46cd95797e9df938fdd2b03693b5fca5e64b01ce",
  5889. "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce",
  5890. "shasum": "",
  5891. "mirrors": [
  5892. {
  5893. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5894. "preferred": true
  5895. }
  5896. ]
  5897. },
  5898. "require": {
  5899. "php": ">=7.1"
  5900. },
  5901. "suggest": {
  5902. "ext-ctype": "For best performance"
  5903. },
  5904. "type": "library",
  5905. "extra": {
  5906. "branch-alias": {
  5907. "dev-main": "1.23-dev"
  5908. },
  5909. "thanks": {
  5910. "name": "symfony/polyfill",
  5911. "url": "https://github.com/symfony/polyfill"
  5912. }
  5913. },
  5914. "autoload": {
  5915. "psr-4": {
  5916. "Symfony\\Polyfill\\Ctype\\": ""
  5917. },
  5918. "files": [
  5919. "bootstrap.php"
  5920. ]
  5921. },
  5922. "notification-url": "https://packagist.org/downloads/",
  5923. "license": [
  5924. "MIT"
  5925. ],
  5926. "authors": [
  5927. {
  5928. "name": "Gert de Pagter",
  5929. "email": "BackEndTea@gmail.com"
  5930. },
  5931. {
  5932. "name": "Symfony Community",
  5933. "homepage": "https://symfony.com/contributors"
  5934. }
  5935. ],
  5936. "description": "Symfony polyfill for ctype functions",
  5937. "homepage": "https://symfony.com",
  5938. "keywords": [
  5939. "compatibility",
  5940. "ctype",
  5941. "polyfill",
  5942. "portable"
  5943. ],
  5944. "support": {
  5945. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.23.0"
  5946. },
  5947. "funding": [
  5948. {
  5949. "url": "https://symfony.com/sponsor",
  5950. "type": "custom"
  5951. },
  5952. {
  5953. "url": "https://github.com/fabpot",
  5954. "type": "github"
  5955. },
  5956. {
  5957. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5958. "type": "tidelift"
  5959. }
  5960. ],
  5961. "time": "2021-02-19T12:13:01+00:00"
  5962. },
  5963. {
  5964. "name": "symfony/polyfill-iconv",
  5965. "version": "v1.23.0",
  5966. "source": {
  5967. "type": "git",
  5968. "url": "https://github.com/symfony/polyfill-iconv.git",
  5969. "reference": "63b5bb7db83e5673936d6e3b8b3e022ff6474933"
  5970. },
  5971. "dist": {
  5972. "type": "zip",
  5973. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/63b5bb7db83e5673936d6e3b8b3e022ff6474933",
  5974. "reference": "63b5bb7db83e5673936d6e3b8b3e022ff6474933",
  5975. "shasum": "",
  5976. "mirrors": [
  5977. {
  5978. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5979. "preferred": true
  5980. }
  5981. ]
  5982. },
  5983. "require": {
  5984. "php": ">=7.1"
  5985. },
  5986. "suggest": {
  5987. "ext-iconv": "For best performance"
  5988. },
  5989. "type": "library",
  5990. "extra": {
  5991. "branch-alias": {
  5992. "dev-main": "1.23-dev"
  5993. },
  5994. "thanks": {
  5995. "name": "symfony/polyfill",
  5996. "url": "https://github.com/symfony/polyfill"
  5997. }
  5998. },
  5999. "autoload": {
  6000. "psr-4": {
  6001. "Symfony\\Polyfill\\Iconv\\": ""
  6002. },
  6003. "files": [
  6004. "bootstrap.php"
  6005. ]
  6006. },
  6007. "notification-url": "https://packagist.org/downloads/",
  6008. "license": [
  6009. "MIT"
  6010. ],
  6011. "authors": [
  6012. {
  6013. "name": "Nicolas Grekas",
  6014. "email": "p@tchwork.com"
  6015. },
  6016. {
  6017. "name": "Symfony Community",
  6018. "homepage": "https://symfony.com/contributors"
  6019. }
  6020. ],
  6021. "description": "Symfony polyfill for the Iconv extension",
  6022. "homepage": "https://symfony.com",
  6023. "keywords": [
  6024. "compatibility",
  6025. "iconv",
  6026. "polyfill",
  6027. "portable",
  6028. "shim"
  6029. ],
  6030. "support": {
  6031. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.23.0"
  6032. },
  6033. "funding": [
  6034. {
  6035. "url": "https://symfony.com/sponsor",
  6036. "type": "custom"
  6037. },
  6038. {
  6039. "url": "https://github.com/fabpot",
  6040. "type": "github"
  6041. },
  6042. {
  6043. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6044. "type": "tidelift"
  6045. }
  6046. ],
  6047. "time": "2021-05-27T09:27:20+00:00"
  6048. },
  6049. {
  6050. "name": "symfony/polyfill-intl-grapheme",
  6051. "version": "v1.23.0",
  6052. "source": {
  6053. "type": "git",
  6054. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6055. "reference": "24b72c6baa32c746a4d0840147c9715e42bb68ab"
  6056. },
  6057. "dist": {
  6058. "type": "zip",
  6059. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/24b72c6baa32c746a4d0840147c9715e42bb68ab",
  6060. "reference": "24b72c6baa32c746a4d0840147c9715e42bb68ab",
  6061. "shasum": "",
  6062. "mirrors": [
  6063. {
  6064. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6065. "preferred": true
  6066. }
  6067. ]
  6068. },
  6069. "require": {
  6070. "php": ">=7.1"
  6071. },
  6072. "suggest": {
  6073. "ext-intl": "For best performance"
  6074. },
  6075. "type": "library",
  6076. "extra": {
  6077. "branch-alias": {
  6078. "dev-main": "1.23-dev"
  6079. },
  6080. "thanks": {
  6081. "name": "symfony/polyfill",
  6082. "url": "https://github.com/symfony/polyfill"
  6083. }
  6084. },
  6085. "autoload": {
  6086. "psr-4": {
  6087. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6088. },
  6089. "files": [
  6090. "bootstrap.php"
  6091. ]
  6092. },
  6093. "notification-url": "https://packagist.org/downloads/",
  6094. "license": [
  6095. "MIT"
  6096. ],
  6097. "authors": [
  6098. {
  6099. "name": "Nicolas Grekas",
  6100. "email": "p@tchwork.com"
  6101. },
  6102. {
  6103. "name": "Symfony Community",
  6104. "homepage": "https://symfony.com/contributors"
  6105. }
  6106. ],
  6107. "description": "Symfony polyfill for intl's grapheme_* functions",
  6108. "homepage": "https://symfony.com",
  6109. "keywords": [
  6110. "compatibility",
  6111. "grapheme",
  6112. "intl",
  6113. "polyfill",
  6114. "portable",
  6115. "shim"
  6116. ],
  6117. "support": {
  6118. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.23.0"
  6119. },
  6120. "funding": [
  6121. {
  6122. "url": "https://symfony.com/sponsor",
  6123. "type": "custom"
  6124. },
  6125. {
  6126. "url": "https://github.com/fabpot",
  6127. "type": "github"
  6128. },
  6129. {
  6130. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6131. "type": "tidelift"
  6132. }
  6133. ],
  6134. "time": "2021-05-27T09:17:38+00:00"
  6135. },
  6136. {
  6137. "name": "symfony/polyfill-intl-idn",
  6138. "version": "v1.23.0",
  6139. "source": {
  6140. "type": "git",
  6141. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6142. "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65"
  6143. },
  6144. "dist": {
  6145. "type": "zip",
  6146. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/65bd267525e82759e7d8c4e8ceea44f398838e65",
  6147. "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65",
  6148. "shasum": "",
  6149. "mirrors": [
  6150. {
  6151. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6152. "preferred": true
  6153. }
  6154. ]
  6155. },
  6156. "require": {
  6157. "php": ">=7.1",
  6158. "symfony/polyfill-intl-normalizer": "^1.10",
  6159. "symfony/polyfill-php72": "^1.10"
  6160. },
  6161. "suggest": {
  6162. "ext-intl": "For best performance"
  6163. },
  6164. "type": "library",
  6165. "extra": {
  6166. "branch-alias": {
  6167. "dev-main": "1.23-dev"
  6168. },
  6169. "thanks": {
  6170. "name": "symfony/polyfill",
  6171. "url": "https://github.com/symfony/polyfill"
  6172. }
  6173. },
  6174. "autoload": {
  6175. "psr-4": {
  6176. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6177. },
  6178. "files": [
  6179. "bootstrap.php"
  6180. ]
  6181. },
  6182. "notification-url": "https://packagist.org/downloads/",
  6183. "license": [
  6184. "MIT"
  6185. ],
  6186. "authors": [
  6187. {
  6188. "name": "Laurent Bassin",
  6189. "email": "laurent@bassin.info"
  6190. },
  6191. {
  6192. "name": "Trevor Rowbotham",
  6193. "email": "trevor.rowbotham@pm.me"
  6194. },
  6195. {
  6196. "name": "Symfony Community",
  6197. "homepage": "https://symfony.com/contributors"
  6198. }
  6199. ],
  6200. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6201. "homepage": "https://symfony.com",
  6202. "keywords": [
  6203. "compatibility",
  6204. "idn",
  6205. "intl",
  6206. "polyfill",
  6207. "portable",
  6208. "shim"
  6209. ],
  6210. "support": {
  6211. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.23.0"
  6212. },
  6213. "funding": [
  6214. {
  6215. "url": "https://symfony.com/sponsor",
  6216. "type": "custom"
  6217. },
  6218. {
  6219. "url": "https://github.com/fabpot",
  6220. "type": "github"
  6221. },
  6222. {
  6223. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6224. "type": "tidelift"
  6225. }
  6226. ],
  6227. "time": "2021-05-27T09:27:20+00:00"
  6228. },
  6229. {
  6230. "name": "symfony/polyfill-intl-normalizer",
  6231. "version": "v1.23.0",
  6232. "source": {
  6233. "type": "git",
  6234. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6235. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8"
  6236. },
  6237. "dist": {
  6238. "type": "zip",
  6239. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8590a5f561694770bdcd3f9b5c69dde6945028e8",
  6240. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8",
  6241. "shasum": "",
  6242. "mirrors": [
  6243. {
  6244. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6245. "preferred": true
  6246. }
  6247. ]
  6248. },
  6249. "require": {
  6250. "php": ">=7.1"
  6251. },
  6252. "suggest": {
  6253. "ext-intl": "For best performance"
  6254. },
  6255. "type": "library",
  6256. "extra": {
  6257. "branch-alias": {
  6258. "dev-main": "1.23-dev"
  6259. },
  6260. "thanks": {
  6261. "name": "symfony/polyfill",
  6262. "url": "https://github.com/symfony/polyfill"
  6263. }
  6264. },
  6265. "autoload": {
  6266. "psr-4": {
  6267. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6268. },
  6269. "files": [
  6270. "bootstrap.php"
  6271. ],
  6272. "classmap": [
  6273. "Resources/stubs"
  6274. ]
  6275. },
  6276. "notification-url": "https://packagist.org/downloads/",
  6277. "license": [
  6278. "MIT"
  6279. ],
  6280. "authors": [
  6281. {
  6282. "name": "Nicolas Grekas",
  6283. "email": "p@tchwork.com"
  6284. },
  6285. {
  6286. "name": "Symfony Community",
  6287. "homepage": "https://symfony.com/contributors"
  6288. }
  6289. ],
  6290. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6291. "homepage": "https://symfony.com",
  6292. "keywords": [
  6293. "compatibility",
  6294. "intl",
  6295. "normalizer",
  6296. "polyfill",
  6297. "portable",
  6298. "shim"
  6299. ],
  6300. "support": {
  6301. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.23.0"
  6302. },
  6303. "funding": [
  6304. {
  6305. "url": "https://symfony.com/sponsor",
  6306. "type": "custom"
  6307. },
  6308. {
  6309. "url": "https://github.com/fabpot",
  6310. "type": "github"
  6311. },
  6312. {
  6313. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6314. "type": "tidelift"
  6315. }
  6316. ],
  6317. "time": "2021-02-19T12:13:01+00:00"
  6318. },
  6319. {
  6320. "name": "symfony/polyfill-mbstring",
  6321. "version": "v1.23.0",
  6322. "source": {
  6323. "type": "git",
  6324. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6325. "reference": "2df51500adbaebdc4c38dea4c89a2e131c45c8a1"
  6326. },
  6327. "dist": {
  6328. "type": "zip",
  6329. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/2df51500adbaebdc4c38dea4c89a2e131c45c8a1",
  6330. "reference": "2df51500adbaebdc4c38dea4c89a2e131c45c8a1",
  6331. "shasum": "",
  6332. "mirrors": [
  6333. {
  6334. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6335. "preferred": true
  6336. }
  6337. ]
  6338. },
  6339. "require": {
  6340. "php": ">=7.1"
  6341. },
  6342. "suggest": {
  6343. "ext-mbstring": "For best performance"
  6344. },
  6345. "type": "library",
  6346. "extra": {
  6347. "branch-alias": {
  6348. "dev-main": "1.23-dev"
  6349. },
  6350. "thanks": {
  6351. "name": "symfony/polyfill",
  6352. "url": "https://github.com/symfony/polyfill"
  6353. }
  6354. },
  6355. "autoload": {
  6356. "psr-4": {
  6357. "Symfony\\Polyfill\\Mbstring\\": ""
  6358. },
  6359. "files": [
  6360. "bootstrap.php"
  6361. ]
  6362. },
  6363. "notification-url": "https://packagist.org/downloads/",
  6364. "license": [
  6365. "MIT"
  6366. ],
  6367. "authors": [
  6368. {
  6369. "name": "Nicolas Grekas",
  6370. "email": "p@tchwork.com"
  6371. },
  6372. {
  6373. "name": "Symfony Community",
  6374. "homepage": "https://symfony.com/contributors"
  6375. }
  6376. ],
  6377. "description": "Symfony polyfill for the Mbstring extension",
  6378. "homepage": "https://symfony.com",
  6379. "keywords": [
  6380. "compatibility",
  6381. "mbstring",
  6382. "polyfill",
  6383. "portable",
  6384. "shim"
  6385. ],
  6386. "support": {
  6387. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.23.0"
  6388. },
  6389. "funding": [
  6390. {
  6391. "url": "https://symfony.com/sponsor",
  6392. "type": "custom"
  6393. },
  6394. {
  6395. "url": "https://github.com/fabpot",
  6396. "type": "github"
  6397. },
  6398. {
  6399. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6400. "type": "tidelift"
  6401. }
  6402. ],
  6403. "time": "2021-05-27T09:27:20+00:00"
  6404. },
  6405. {
  6406. "name": "symfony/polyfill-php72",
  6407. "version": "v1.23.0",
  6408. "source": {
  6409. "type": "git",
  6410. "url": "https://github.com/symfony/polyfill-php72.git",
  6411. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976"
  6412. },
  6413. "dist": {
  6414. "type": "zip",
  6415. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/9a142215a36a3888e30d0a9eeea9766764e96976",
  6416. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976",
  6417. "shasum": "",
  6418. "mirrors": [
  6419. {
  6420. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6421. "preferred": true
  6422. }
  6423. ]
  6424. },
  6425. "require": {
  6426. "php": ">=7.1"
  6427. },
  6428. "type": "library",
  6429. "extra": {
  6430. "branch-alias": {
  6431. "dev-main": "1.23-dev"
  6432. },
  6433. "thanks": {
  6434. "name": "symfony/polyfill",
  6435. "url": "https://github.com/symfony/polyfill"
  6436. }
  6437. },
  6438. "autoload": {
  6439. "psr-4": {
  6440. "Symfony\\Polyfill\\Php72\\": ""
  6441. },
  6442. "files": [
  6443. "bootstrap.php"
  6444. ]
  6445. },
  6446. "notification-url": "https://packagist.org/downloads/",
  6447. "license": [
  6448. "MIT"
  6449. ],
  6450. "authors": [
  6451. {
  6452. "name": "Nicolas Grekas",
  6453. "email": "p@tchwork.com"
  6454. },
  6455. {
  6456. "name": "Symfony Community",
  6457. "homepage": "https://symfony.com/contributors"
  6458. }
  6459. ],
  6460. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  6461. "homepage": "https://symfony.com",
  6462. "keywords": [
  6463. "compatibility",
  6464. "polyfill",
  6465. "portable",
  6466. "shim"
  6467. ],
  6468. "support": {
  6469. "source": "https://github.com/symfony/polyfill-php72/tree/v1.23.0"
  6470. },
  6471. "funding": [
  6472. {
  6473. "url": "https://symfony.com/sponsor",
  6474. "type": "custom"
  6475. },
  6476. {
  6477. "url": "https://github.com/fabpot",
  6478. "type": "github"
  6479. },
  6480. {
  6481. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6482. "type": "tidelift"
  6483. }
  6484. ],
  6485. "time": "2021-05-27T09:17:38+00:00"
  6486. },
  6487. {
  6488. "name": "symfony/polyfill-php73",
  6489. "version": "v1.23.0",
  6490. "source": {
  6491. "type": "git",
  6492. "url": "https://github.com/symfony/polyfill-php73.git",
  6493. "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010"
  6494. },
  6495. "dist": {
  6496. "type": "zip",
  6497. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fba8933c384d6476ab14fb7b8526e5287ca7e010",
  6498. "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010",
  6499. "shasum": "",
  6500. "mirrors": [
  6501. {
  6502. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6503. "preferred": true
  6504. }
  6505. ]
  6506. },
  6507. "require": {
  6508. "php": ">=7.1"
  6509. },
  6510. "type": "library",
  6511. "extra": {
  6512. "branch-alias": {
  6513. "dev-main": "1.23-dev"
  6514. },
  6515. "thanks": {
  6516. "name": "symfony/polyfill",
  6517. "url": "https://github.com/symfony/polyfill"
  6518. }
  6519. },
  6520. "autoload": {
  6521. "psr-4": {
  6522. "Symfony\\Polyfill\\Php73\\": ""
  6523. },
  6524. "files": [
  6525. "bootstrap.php"
  6526. ],
  6527. "classmap": [
  6528. "Resources/stubs"
  6529. ]
  6530. },
  6531. "notification-url": "https://packagist.org/downloads/",
  6532. "license": [
  6533. "MIT"
  6534. ],
  6535. "authors": [
  6536. {
  6537. "name": "Nicolas Grekas",
  6538. "email": "p@tchwork.com"
  6539. },
  6540. {
  6541. "name": "Symfony Community",
  6542. "homepage": "https://symfony.com/contributors"
  6543. }
  6544. ],
  6545. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  6546. "homepage": "https://symfony.com",
  6547. "keywords": [
  6548. "compatibility",
  6549. "polyfill",
  6550. "portable",
  6551. "shim"
  6552. ],
  6553. "support": {
  6554. "source": "https://github.com/symfony/polyfill-php73/tree/v1.23.0"
  6555. },
  6556. "funding": [
  6557. {
  6558. "url": "https://symfony.com/sponsor",
  6559. "type": "custom"
  6560. },
  6561. {
  6562. "url": "https://github.com/fabpot",
  6563. "type": "github"
  6564. },
  6565. {
  6566. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6567. "type": "tidelift"
  6568. }
  6569. ],
  6570. "time": "2021-02-19T12:13:01+00:00"
  6571. },
  6572. {
  6573. "name": "symfony/polyfill-php80",
  6574. "version": "v1.23.0",
  6575. "source": {
  6576. "type": "git",
  6577. "url": "https://github.com/symfony/polyfill-php80.git",
  6578. "reference": "eca0bf41ed421bed1b57c4958bab16aa86b757d0"
  6579. },
  6580. "dist": {
  6581. "type": "zip",
  6582. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/eca0bf41ed421bed1b57c4958bab16aa86b757d0",
  6583. "reference": "eca0bf41ed421bed1b57c4958bab16aa86b757d0",
  6584. "shasum": "",
  6585. "mirrors": [
  6586. {
  6587. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6588. "preferred": true
  6589. }
  6590. ]
  6591. },
  6592. "require": {
  6593. "php": ">=7.1"
  6594. },
  6595. "type": "library",
  6596. "extra": {
  6597. "branch-alias": {
  6598. "dev-main": "1.23-dev"
  6599. },
  6600. "thanks": {
  6601. "name": "symfony/polyfill",
  6602. "url": "https://github.com/symfony/polyfill"
  6603. }
  6604. },
  6605. "autoload": {
  6606. "psr-4": {
  6607. "Symfony\\Polyfill\\Php80\\": ""
  6608. },
  6609. "files": [
  6610. "bootstrap.php"
  6611. ],
  6612. "classmap": [
  6613. "Resources/stubs"
  6614. ]
  6615. },
  6616. "notification-url": "https://packagist.org/downloads/",
  6617. "license": [
  6618. "MIT"
  6619. ],
  6620. "authors": [
  6621. {
  6622. "name": "Ion Bazan",
  6623. "email": "ion.bazan@gmail.com"
  6624. },
  6625. {
  6626. "name": "Nicolas Grekas",
  6627. "email": "p@tchwork.com"
  6628. },
  6629. {
  6630. "name": "Symfony Community",
  6631. "homepage": "https://symfony.com/contributors"
  6632. }
  6633. ],
  6634. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6635. "homepage": "https://symfony.com",
  6636. "keywords": [
  6637. "compatibility",
  6638. "polyfill",
  6639. "portable",
  6640. "shim"
  6641. ],
  6642. "support": {
  6643. "source": "https://github.com/symfony/polyfill-php80/tree/v1.23.0"
  6644. },
  6645. "funding": [
  6646. {
  6647. "url": "https://symfony.com/sponsor",
  6648. "type": "custom"
  6649. },
  6650. {
  6651. "url": "https://github.com/fabpot",
  6652. "type": "github"
  6653. },
  6654. {
  6655. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6656. "type": "tidelift"
  6657. }
  6658. ],
  6659. "time": "2021-02-19T12:13:01+00:00"
  6660. },
  6661. {
  6662. "name": "symfony/process",
  6663. "version": "v5.3.2",
  6664. "source": {
  6665. "type": "git",
  6666. "url": "https://github.com/symfony/process.git",
  6667. "reference": "714b47f9196de61a196d86c4bad5f09201b307df"
  6668. },
  6669. "dist": {
  6670. "type": "zip",
  6671. "url": "https://api.github.com/repos/symfony/process/zipball/714b47f9196de61a196d86c4bad5f09201b307df",
  6672. "reference": "714b47f9196de61a196d86c4bad5f09201b307df",
  6673. "shasum": "",
  6674. "mirrors": [
  6675. {
  6676. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6677. "preferred": true
  6678. }
  6679. ]
  6680. },
  6681. "require": {
  6682. "php": ">=7.2.5",
  6683. "symfony/polyfill-php80": "^1.15"
  6684. },
  6685. "type": "library",
  6686. "autoload": {
  6687. "psr-4": {
  6688. "Symfony\\Component\\Process\\": ""
  6689. },
  6690. "exclude-from-classmap": [
  6691. "/Tests/"
  6692. ]
  6693. },
  6694. "notification-url": "https://packagist.org/downloads/",
  6695. "license": [
  6696. "MIT"
  6697. ],
  6698. "authors": [
  6699. {
  6700. "name": "Fabien Potencier",
  6701. "email": "fabien@symfony.com"
  6702. },
  6703. {
  6704. "name": "Symfony Community",
  6705. "homepage": "https://symfony.com/contributors"
  6706. }
  6707. ],
  6708. "description": "Executes commands in sub-processes",
  6709. "homepage": "https://symfony.com",
  6710. "support": {
  6711. "source": "https://github.com/symfony/process/tree/v5.3.2"
  6712. },
  6713. "funding": [
  6714. {
  6715. "url": "https://symfony.com/sponsor",
  6716. "type": "custom"
  6717. },
  6718. {
  6719. "url": "https://github.com/fabpot",
  6720. "type": "github"
  6721. },
  6722. {
  6723. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6724. "type": "tidelift"
  6725. }
  6726. ],
  6727. "time": "2021-06-12T10:15:01+00:00"
  6728. },
  6729. {
  6730. "name": "symfony/property-access",
  6731. "version": "v5.3.0",
  6732. "source": {
  6733. "type": "git",
  6734. "url": "https://github.com/symfony/property-access.git",
  6735. "reference": "8988399a556cffb0fba9bb3603f8d1ba4543eceb"
  6736. },
  6737. "dist": {
  6738. "type": "zip",
  6739. "url": "https://api.github.com/repos/symfony/property-access/zipball/8988399a556cffb0fba9bb3603f8d1ba4543eceb",
  6740. "reference": "8988399a556cffb0fba9bb3603f8d1ba4543eceb",
  6741. "shasum": "",
  6742. "mirrors": [
  6743. {
  6744. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6745. "preferred": true
  6746. }
  6747. ]
  6748. },
  6749. "require": {
  6750. "php": ">=7.2.5",
  6751. "symfony/deprecation-contracts": "^2.1",
  6752. "symfony/polyfill-php80": "^1.15",
  6753. "symfony/property-info": "^5.2"
  6754. },
  6755. "require-dev": {
  6756. "symfony/cache": "^4.4|^5.0"
  6757. },
  6758. "suggest": {
  6759. "psr/cache-implementation": "To cache access methods."
  6760. },
  6761. "type": "library",
  6762. "autoload": {
  6763. "psr-4": {
  6764. "Symfony\\Component\\PropertyAccess\\": ""
  6765. },
  6766. "exclude-from-classmap": [
  6767. "/Tests/"
  6768. ]
  6769. },
  6770. "notification-url": "https://packagist.org/downloads/",
  6771. "license": [
  6772. "MIT"
  6773. ],
  6774. "authors": [
  6775. {
  6776. "name": "Fabien Potencier",
  6777. "email": "fabien@symfony.com"
  6778. },
  6779. {
  6780. "name": "Symfony Community",
  6781. "homepage": "https://symfony.com/contributors"
  6782. }
  6783. ],
  6784. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  6785. "homepage": "https://symfony.com",
  6786. "keywords": [
  6787. "access",
  6788. "array",
  6789. "extraction",
  6790. "index",
  6791. "injection",
  6792. "object",
  6793. "property",
  6794. "property path",
  6795. "reflection"
  6796. ],
  6797. "support": {
  6798. "source": "https://github.com/symfony/property-access/tree/v5.3.0"
  6799. },
  6800. "funding": [
  6801. {
  6802. "url": "https://symfony.com/sponsor",
  6803. "type": "custom"
  6804. },
  6805. {
  6806. "url": "https://github.com/fabpot",
  6807. "type": "github"
  6808. },
  6809. {
  6810. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6811. "type": "tidelift"
  6812. }
  6813. ],
  6814. "time": "2021-05-26T17:43:10+00:00"
  6815. },
  6816. {
  6817. "name": "symfony/property-info",
  6818. "version": "v5.3.1",
  6819. "source": {
  6820. "type": "git",
  6821. "url": "https://github.com/symfony/property-info.git",
  6822. "reference": "6f8bff281f215dbf41929c7ec6f8309cdc0912cf"
  6823. },
  6824. "dist": {
  6825. "type": "zip",
  6826. "url": "https://api.github.com/repos/symfony/property-info/zipball/6f8bff281f215dbf41929c7ec6f8309cdc0912cf",
  6827. "reference": "6f8bff281f215dbf41929c7ec6f8309cdc0912cf",
  6828. "shasum": "",
  6829. "mirrors": [
  6830. {
  6831. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6832. "preferred": true
  6833. }
  6834. ]
  6835. },
  6836. "require": {
  6837. "php": ">=7.2.5",
  6838. "symfony/deprecation-contracts": "^2.1",
  6839. "symfony/polyfill-php80": "^1.15",
  6840. "symfony/string": "^5.1"
  6841. },
  6842. "conflict": {
  6843. "phpdocumentor/reflection-docblock": "<3.2.2",
  6844. "phpdocumentor/type-resolver": "<1.4.0",
  6845. "symfony/dependency-injection": "<4.4"
  6846. },
  6847. "require-dev": {
  6848. "doctrine/annotations": "^1.10.4",
  6849. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6850. "symfony/cache": "^4.4|^5.0",
  6851. "symfony/dependency-injection": "^4.4|^5.0",
  6852. "symfony/serializer": "^4.4|^5.0"
  6853. },
  6854. "suggest": {
  6855. "phpdocumentor/reflection-docblock": "To use the PHPDoc",
  6856. "psr/cache-implementation": "To cache results",
  6857. "symfony/doctrine-bridge": "To use Doctrine metadata",
  6858. "symfony/serializer": "To use Serializer metadata"
  6859. },
  6860. "type": "library",
  6861. "autoload": {
  6862. "psr-4": {
  6863. "Symfony\\Component\\PropertyInfo\\": ""
  6864. },
  6865. "exclude-from-classmap": [
  6866. "/Tests/"
  6867. ]
  6868. },
  6869. "notification-url": "https://packagist.org/downloads/",
  6870. "license": [
  6871. "MIT"
  6872. ],
  6873. "authors": [
  6874. {
  6875. "name": "Kévin Dunglas",
  6876. "email": "dunglas@gmail.com"
  6877. },
  6878. {
  6879. "name": "Symfony Community",
  6880. "homepage": "https://symfony.com/contributors"
  6881. }
  6882. ],
  6883. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  6884. "homepage": "https://symfony.com",
  6885. "keywords": [
  6886. "doctrine",
  6887. "phpdoc",
  6888. "property",
  6889. "symfony",
  6890. "type",
  6891. "validator"
  6892. ],
  6893. "support": {
  6894. "source": "https://github.com/symfony/property-info/tree/v5.3.1"
  6895. },
  6896. "funding": [
  6897. {
  6898. "url": "https://symfony.com/sponsor",
  6899. "type": "custom"
  6900. },
  6901. {
  6902. "url": "https://github.com/fabpot",
  6903. "type": "github"
  6904. },
  6905. {
  6906. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6907. "type": "tidelift"
  6908. }
  6909. ],
  6910. "time": "2021-05-31T12:40:48+00:00"
  6911. },
  6912. {
  6913. "name": "symfony/routing",
  6914. "version": "v5.3.0",
  6915. "source": {
  6916. "type": "git",
  6917. "url": "https://github.com/symfony/routing.git",
  6918. "reference": "368e81376a8e049c37cb80ae87dbfbf411279199"
  6919. },
  6920. "dist": {
  6921. "type": "zip",
  6922. "url": "https://api.github.com/repos/symfony/routing/zipball/368e81376a8e049c37cb80ae87dbfbf411279199",
  6923. "reference": "368e81376a8e049c37cb80ae87dbfbf411279199",
  6924. "shasum": "",
  6925. "mirrors": [
  6926. {
  6927. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6928. "preferred": true
  6929. }
  6930. ]
  6931. },
  6932. "require": {
  6933. "php": ">=7.2.5",
  6934. "symfony/deprecation-contracts": "^2.1",
  6935. "symfony/polyfill-php80": "^1.15"
  6936. },
  6937. "conflict": {
  6938. "doctrine/annotations": "<1.12",
  6939. "symfony/config": "<5.3",
  6940. "symfony/dependency-injection": "<4.4",
  6941. "symfony/yaml": "<4.4"
  6942. },
  6943. "require-dev": {
  6944. "doctrine/annotations": "^1.12",
  6945. "psr/log": "~1.0",
  6946. "symfony/config": "^5.3",
  6947. "symfony/dependency-injection": "^4.4|^5.0",
  6948. "symfony/expression-language": "^4.4|^5.0",
  6949. "symfony/http-foundation": "^4.4|^5.0",
  6950. "symfony/yaml": "^4.4|^5.0"
  6951. },
  6952. "suggest": {
  6953. "symfony/config": "For using the all-in-one router or any loader",
  6954. "symfony/expression-language": "For using expression matching",
  6955. "symfony/http-foundation": "For using a Symfony Request object",
  6956. "symfony/yaml": "For using the YAML loader"
  6957. },
  6958. "type": "library",
  6959. "autoload": {
  6960. "psr-4": {
  6961. "Symfony\\Component\\Routing\\": ""
  6962. },
  6963. "exclude-from-classmap": [
  6964. "/Tests/"
  6965. ]
  6966. },
  6967. "notification-url": "https://packagist.org/downloads/",
  6968. "license": [
  6969. "MIT"
  6970. ],
  6971. "authors": [
  6972. {
  6973. "name": "Fabien Potencier",
  6974. "email": "fabien@symfony.com"
  6975. },
  6976. {
  6977. "name": "Symfony Community",
  6978. "homepage": "https://symfony.com/contributors"
  6979. }
  6980. ],
  6981. "description": "Maps an HTTP request to a set of configuration variables",
  6982. "homepage": "https://symfony.com",
  6983. "keywords": [
  6984. "router",
  6985. "routing",
  6986. "uri",
  6987. "url"
  6988. ],
  6989. "support": {
  6990. "source": "https://github.com/symfony/routing/tree/v5.3.0"
  6991. },
  6992. "funding": [
  6993. {
  6994. "url": "https://symfony.com/sponsor",
  6995. "type": "custom"
  6996. },
  6997. {
  6998. "url": "https://github.com/fabpot",
  6999. "type": "github"
  7000. },
  7001. {
  7002. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7003. "type": "tidelift"
  7004. }
  7005. ],
  7006. "time": "2021-05-26T17:43:10+00:00"
  7007. },
  7008. {
  7009. "name": "symfony/service-contracts",
  7010. "version": "v2.4.0",
  7011. "source": {
  7012. "type": "git",
  7013. "url": "https://github.com/symfony/service-contracts.git",
  7014. "reference": "f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb"
  7015. },
  7016. "dist": {
  7017. "type": "zip",
  7018. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb",
  7019. "reference": "f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb",
  7020. "shasum": "",
  7021. "mirrors": [
  7022. {
  7023. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7024. "preferred": true
  7025. }
  7026. ]
  7027. },
  7028. "require": {
  7029. "php": ">=7.2.5",
  7030. "psr/container": "^1.1"
  7031. },
  7032. "suggest": {
  7033. "symfony/service-implementation": ""
  7034. },
  7035. "type": "library",
  7036. "extra": {
  7037. "branch-alias": {
  7038. "dev-main": "2.4-dev"
  7039. },
  7040. "thanks": {
  7041. "name": "symfony/contracts",
  7042. "url": "https://github.com/symfony/contracts"
  7043. }
  7044. },
  7045. "autoload": {
  7046. "psr-4": {
  7047. "Symfony\\Contracts\\Service\\": ""
  7048. }
  7049. },
  7050. "notification-url": "https://packagist.org/downloads/",
  7051. "license": [
  7052. "MIT"
  7053. ],
  7054. "authors": [
  7055. {
  7056. "name": "Nicolas Grekas",
  7057. "email": "p@tchwork.com"
  7058. },
  7059. {
  7060. "name": "Symfony Community",
  7061. "homepage": "https://symfony.com/contributors"
  7062. }
  7063. ],
  7064. "description": "Generic abstractions related to writing services",
  7065. "homepage": "https://symfony.com",
  7066. "keywords": [
  7067. "abstractions",
  7068. "contracts",
  7069. "decoupling",
  7070. "interfaces",
  7071. "interoperability",
  7072. "standards"
  7073. ],
  7074. "support": {
  7075. "source": "https://github.com/symfony/service-contracts/tree/v2.4.0"
  7076. },
  7077. "funding": [
  7078. {
  7079. "url": "https://symfony.com/sponsor",
  7080. "type": "custom"
  7081. },
  7082. {
  7083. "url": "https://github.com/fabpot",
  7084. "type": "github"
  7085. },
  7086. {
  7087. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7088. "type": "tidelift"
  7089. }
  7090. ],
  7091. "time": "2021-04-01T10:43:52+00:00"
  7092. },
  7093. {
  7094. "name": "symfony/string",
  7095. "version": "v5.3.3",
  7096. "source": {
  7097. "type": "git",
  7098. "url": "https://github.com/symfony/string.git",
  7099. "reference": "bd53358e3eccec6a670b5f33ab680d8dbe1d4ae1"
  7100. },
  7101. "dist": {
  7102. "type": "zip",
  7103. "url": "https://api.github.com/repos/symfony/string/zipball/bd53358e3eccec6a670b5f33ab680d8dbe1d4ae1",
  7104. "reference": "bd53358e3eccec6a670b5f33ab680d8dbe1d4ae1",
  7105. "shasum": "",
  7106. "mirrors": [
  7107. {
  7108. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7109. "preferred": true
  7110. }
  7111. ]
  7112. },
  7113. "require": {
  7114. "php": ">=7.2.5",
  7115. "symfony/polyfill-ctype": "~1.8",
  7116. "symfony/polyfill-intl-grapheme": "~1.0",
  7117. "symfony/polyfill-intl-normalizer": "~1.0",
  7118. "symfony/polyfill-mbstring": "~1.0",
  7119. "symfony/polyfill-php80": "~1.15"
  7120. },
  7121. "require-dev": {
  7122. "symfony/error-handler": "^4.4|^5.0",
  7123. "symfony/http-client": "^4.4|^5.0",
  7124. "symfony/translation-contracts": "^1.1|^2",
  7125. "symfony/var-exporter": "^4.4|^5.0"
  7126. },
  7127. "type": "library",
  7128. "autoload": {
  7129. "psr-4": {
  7130. "Symfony\\Component\\String\\": ""
  7131. },
  7132. "files": [
  7133. "Resources/functions.php"
  7134. ],
  7135. "exclude-from-classmap": [
  7136. "/Tests/"
  7137. ]
  7138. },
  7139. "notification-url": "https://packagist.org/downloads/",
  7140. "license": [
  7141. "MIT"
  7142. ],
  7143. "authors": [
  7144. {
  7145. "name": "Nicolas Grekas",
  7146. "email": "p@tchwork.com"
  7147. },
  7148. {
  7149. "name": "Symfony Community",
  7150. "homepage": "https://symfony.com/contributors"
  7151. }
  7152. ],
  7153. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7154. "homepage": "https://symfony.com",
  7155. "keywords": [
  7156. "grapheme",
  7157. "i18n",
  7158. "string",
  7159. "unicode",
  7160. "utf-8",
  7161. "utf8"
  7162. ],
  7163. "support": {
  7164. "source": "https://github.com/symfony/string/tree/v5.3.3"
  7165. },
  7166. "funding": [
  7167. {
  7168. "url": "https://symfony.com/sponsor",
  7169. "type": "custom"
  7170. },
  7171. {
  7172. "url": "https://github.com/fabpot",
  7173. "type": "github"
  7174. },
  7175. {
  7176. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7177. "type": "tidelift"
  7178. }
  7179. ],
  7180. "time": "2021-06-27T11:44:38+00:00"
  7181. },
  7182. {
  7183. "name": "symfony/translation",
  7184. "version": "v5.3.3",
  7185. "source": {
  7186. "type": "git",
  7187. "url": "https://github.com/symfony/translation.git",
  7188. "reference": "380b8c9e944d0e364b25f28e8e555241eb49c01c"
  7189. },
  7190. "dist": {
  7191. "type": "zip",
  7192. "url": "https://api.github.com/repos/symfony/translation/zipball/380b8c9e944d0e364b25f28e8e555241eb49c01c",
  7193. "reference": "380b8c9e944d0e364b25f28e8e555241eb49c01c",
  7194. "shasum": "",
  7195. "mirrors": [
  7196. {
  7197. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7198. "preferred": true
  7199. }
  7200. ]
  7201. },
  7202. "require": {
  7203. "php": ">=7.2.5",
  7204. "symfony/deprecation-contracts": "^2.1",
  7205. "symfony/polyfill-mbstring": "~1.0",
  7206. "symfony/polyfill-php80": "^1.15",
  7207. "symfony/translation-contracts": "^2.3"
  7208. },
  7209. "conflict": {
  7210. "symfony/config": "<4.4",
  7211. "symfony/dependency-injection": "<5.0",
  7212. "symfony/http-kernel": "<5.0",
  7213. "symfony/twig-bundle": "<5.0",
  7214. "symfony/yaml": "<4.4"
  7215. },
  7216. "provide": {
  7217. "symfony/translation-implementation": "2.3"
  7218. },
  7219. "require-dev": {
  7220. "psr/log": "~1.0",
  7221. "symfony/config": "^4.4|^5.0",
  7222. "symfony/console": "^4.4|^5.0",
  7223. "symfony/dependency-injection": "^5.0",
  7224. "symfony/finder": "^4.4|^5.0",
  7225. "symfony/http-kernel": "^5.0",
  7226. "symfony/intl": "^4.4|^5.0",
  7227. "symfony/polyfill-intl-icu": "^1.21",
  7228. "symfony/service-contracts": "^1.1.2|^2",
  7229. "symfony/yaml": "^4.4|^5.0"
  7230. },
  7231. "suggest": {
  7232. "psr/log-implementation": "To use logging capability in translator",
  7233. "symfony/config": "",
  7234. "symfony/yaml": ""
  7235. },
  7236. "type": "library",
  7237. "autoload": {
  7238. "files": [
  7239. "Resources/functions.php"
  7240. ],
  7241. "psr-4": {
  7242. "Symfony\\Component\\Translation\\": ""
  7243. },
  7244. "exclude-from-classmap": [
  7245. "/Tests/"
  7246. ]
  7247. },
  7248. "notification-url": "https://packagist.org/downloads/",
  7249. "license": [
  7250. "MIT"
  7251. ],
  7252. "authors": [
  7253. {
  7254. "name": "Fabien Potencier",
  7255. "email": "fabien@symfony.com"
  7256. },
  7257. {
  7258. "name": "Symfony Community",
  7259. "homepage": "https://symfony.com/contributors"
  7260. }
  7261. ],
  7262. "description": "Provides tools to internationalize your application",
  7263. "homepage": "https://symfony.com",
  7264. "support": {
  7265. "source": "https://github.com/symfony/translation/tree/v5.3.3"
  7266. },
  7267. "funding": [
  7268. {
  7269. "url": "https://symfony.com/sponsor",
  7270. "type": "custom"
  7271. },
  7272. {
  7273. "url": "https://github.com/fabpot",
  7274. "type": "github"
  7275. },
  7276. {
  7277. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7278. "type": "tidelift"
  7279. }
  7280. ],
  7281. "time": "2021-06-27T12:22:47+00:00"
  7282. },
  7283. {
  7284. "name": "symfony/translation-contracts",
  7285. "version": "v2.4.0",
  7286. "source": {
  7287. "type": "git",
  7288. "url": "https://github.com/symfony/translation-contracts.git",
  7289. "reference": "95c812666f3e91db75385749fe219c5e494c7f95"
  7290. },
  7291. "dist": {
  7292. "type": "zip",
  7293. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/95c812666f3e91db75385749fe219c5e494c7f95",
  7294. "reference": "95c812666f3e91db75385749fe219c5e494c7f95",
  7295. "shasum": "",
  7296. "mirrors": [
  7297. {
  7298. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7299. "preferred": true
  7300. }
  7301. ]
  7302. },
  7303. "require": {
  7304. "php": ">=7.2.5"
  7305. },
  7306. "suggest": {
  7307. "symfony/translation-implementation": ""
  7308. },
  7309. "type": "library",
  7310. "extra": {
  7311. "branch-alias": {
  7312. "dev-main": "2.4-dev"
  7313. },
  7314. "thanks": {
  7315. "name": "symfony/contracts",
  7316. "url": "https://github.com/symfony/contracts"
  7317. }
  7318. },
  7319. "autoload": {
  7320. "psr-4": {
  7321. "Symfony\\Contracts\\Translation\\": ""
  7322. }
  7323. },
  7324. "notification-url": "https://packagist.org/downloads/",
  7325. "license": [
  7326. "MIT"
  7327. ],
  7328. "authors": [
  7329. {
  7330. "name": "Nicolas Grekas",
  7331. "email": "p@tchwork.com"
  7332. },
  7333. {
  7334. "name": "Symfony Community",
  7335. "homepage": "https://symfony.com/contributors"
  7336. }
  7337. ],
  7338. "description": "Generic abstractions related to translation",
  7339. "homepage": "https://symfony.com",
  7340. "keywords": [
  7341. "abstractions",
  7342. "contracts",
  7343. "decoupling",
  7344. "interfaces",
  7345. "interoperability",
  7346. "standards"
  7347. ],
  7348. "support": {
  7349. "source": "https://github.com/symfony/translation-contracts/tree/v2.4.0"
  7350. },
  7351. "funding": [
  7352. {
  7353. "url": "https://symfony.com/sponsor",
  7354. "type": "custom"
  7355. },
  7356. {
  7357. "url": "https://github.com/fabpot",
  7358. "type": "github"
  7359. },
  7360. {
  7361. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7362. "type": "tidelift"
  7363. }
  7364. ],
  7365. "time": "2021-03-23T23:28:01+00:00"
  7366. },
  7367. {
  7368. "name": "symfony/var-dumper",
  7369. "version": "v5.3.3",
  7370. "source": {
  7371. "type": "git",
  7372. "url": "https://github.com/symfony/var-dumper.git",
  7373. "reference": "46aa709affb9ad3355bd7a810f9662d71025c384"
  7374. },
  7375. "dist": {
  7376. "type": "zip",
  7377. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/46aa709affb9ad3355bd7a810f9662d71025c384",
  7378. "reference": "46aa709affb9ad3355bd7a810f9662d71025c384",
  7379. "shasum": "",
  7380. "mirrors": [
  7381. {
  7382. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7383. "preferred": true
  7384. }
  7385. ]
  7386. },
  7387. "require": {
  7388. "php": ">=7.2.5",
  7389. "symfony/polyfill-mbstring": "~1.0",
  7390. "symfony/polyfill-php80": "^1.15"
  7391. },
  7392. "conflict": {
  7393. "phpunit/phpunit": "<5.4.3",
  7394. "symfony/console": "<4.4"
  7395. },
  7396. "require-dev": {
  7397. "ext-iconv": "*",
  7398. "symfony/console": "^4.4|^5.0",
  7399. "symfony/process": "^4.4|^5.0",
  7400. "twig/twig": "^2.13|^3.0.4"
  7401. },
  7402. "suggest": {
  7403. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  7404. "ext-intl": "To show region name in time zone dump",
  7405. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  7406. },
  7407. "bin": [
  7408. "Resources/bin/var-dump-server"
  7409. ],
  7410. "type": "library",
  7411. "autoload": {
  7412. "files": [
  7413. "Resources/functions/dump.php"
  7414. ],
  7415. "psr-4": {
  7416. "Symfony\\Component\\VarDumper\\": ""
  7417. },
  7418. "exclude-from-classmap": [
  7419. "/Tests/"
  7420. ]
  7421. },
  7422. "notification-url": "https://packagist.org/downloads/",
  7423. "license": [
  7424. "MIT"
  7425. ],
  7426. "authors": [
  7427. {
  7428. "name": "Nicolas Grekas",
  7429. "email": "p@tchwork.com"
  7430. },
  7431. {
  7432. "name": "Symfony Community",
  7433. "homepage": "https://symfony.com/contributors"
  7434. }
  7435. ],
  7436. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7437. "homepage": "https://symfony.com",
  7438. "keywords": [
  7439. "debug",
  7440. "dump"
  7441. ],
  7442. "support": {
  7443. "source": "https://github.com/symfony/var-dumper/tree/v5.3.3"
  7444. },
  7445. "funding": [
  7446. {
  7447. "url": "https://symfony.com/sponsor",
  7448. "type": "custom"
  7449. },
  7450. {
  7451. "url": "https://github.com/fabpot",
  7452. "type": "github"
  7453. },
  7454. {
  7455. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7456. "type": "tidelift"
  7457. }
  7458. ],
  7459. "time": "2021-06-24T08:13:00+00:00"
  7460. },
  7461. {
  7462. "name": "te7a-houdini/laravel-trix",
  7463. "version": "2.0.4",
  7464. "source": {
  7465. "type": "git",
  7466. "url": "https://github.com/amaelftah/laravel-trix.git",
  7467. "reference": "2295ae96aad8b7c427647c84e814c33926eaf074"
  7468. },
  7469. "dist": {
  7470. "type": "zip",
  7471. "url": "https://api.github.com/repos/amaelftah/laravel-trix/zipball/2295ae96aad8b7c427647c84e814c33926eaf074",
  7472. "reference": "2295ae96aad8b7c427647c84e814c33926eaf074",
  7473. "shasum": "",
  7474. "mirrors": [
  7475. {
  7476. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7477. "preferred": true
  7478. }
  7479. ]
  7480. },
  7481. "require": {
  7482. "laravel/framework": "~5.8.0|~6.0|~7.0|~8.0",
  7483. "php": "^7.1"
  7484. },
  7485. "require-dev": {
  7486. "orchestra/testbench": "^3.5|~4.0|~5.0|~6.0"
  7487. },
  7488. "type": "library",
  7489. "extra": {
  7490. "laravel": {
  7491. "providers": [
  7492. "Te7aHoudini\\LaravelTrix\\LaravelTrixServiceProvider"
  7493. ]
  7494. }
  7495. },
  7496. "autoload": {
  7497. "psr-4": {
  7498. "Te7aHoudini\\LaravelTrix\\": "src"
  7499. }
  7500. },
  7501. "notification-url": "https://packagist.org/downloads/",
  7502. "license": [
  7503. "MIT"
  7504. ],
  7505. "authors": [
  7506. {
  7507. "name": "Ahmed Abd El Ftah",
  7508. "email": "ahmedabdelftah95165@gmail.com",
  7509. "role": "Developer"
  7510. }
  7511. ],
  7512. "description": "trix editor for laravel inspired by ActionText for rails",
  7513. "homepage": "https://github.com/te7ahoudini/laravel-trix",
  7514. "keywords": [
  7515. "laravel-trix",
  7516. "te7a-houdini"
  7517. ],
  7518. "support": {
  7519. "issues": "https://github.com/amaelftah/laravel-trix/issues",
  7520. "source": "https://github.com/amaelftah/laravel-trix/tree/2.0.4"
  7521. },
  7522. "time": "2020-11-12T10:48:06+00:00"
  7523. },
  7524. {
  7525. "name": "tightenco/collect",
  7526. "version": "v5.6.33",
  7527. "source": {
  7528. "type": "git",
  7529. "url": "https://github.com/tighten/collect.git",
  7530. "reference": "d7381736dca44ac17d0805a25191b094e5a22446"
  7531. },
  7532. "dist": {
  7533. "type": "zip",
  7534. "url": "https://api.github.com/repos/tighten/collect/zipball/d7381736dca44ac17d0805a25191b094e5a22446",
  7535. "reference": "d7381736dca44ac17d0805a25191b094e5a22446",
  7536. "shasum": "",
  7537. "mirrors": [
  7538. {
  7539. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7540. "preferred": true
  7541. }
  7542. ]
  7543. },
  7544. "require": {
  7545. "php": ">=7.1.3",
  7546. "symfony/var-dumper": ">=3.1.10"
  7547. },
  7548. "require-dev": {
  7549. "mockery/mockery": "~1.0",
  7550. "nesbot/carbon": "~1.20",
  7551. "phpunit/phpunit": "~7.0"
  7552. },
  7553. "type": "library",
  7554. "autoload": {
  7555. "files": [
  7556. "src/Collect/Support/helpers.php",
  7557. "src/Collect/Support/alias.php"
  7558. ],
  7559. "psr-4": {
  7560. "Tightenco\\Collect\\": "src/Collect"
  7561. }
  7562. },
  7563. "notification-url": "https://packagist.org/downloads/",
  7564. "license": [
  7565. "MIT"
  7566. ],
  7567. "authors": [
  7568. {
  7569. "name": "Taylor Otwell",
  7570. "email": "taylorotwell@gmail.com"
  7571. }
  7572. ],
  7573. "description": "Collect - Illuminate Collections as a separate package.",
  7574. "keywords": [
  7575. "collection",
  7576. "laravel"
  7577. ],
  7578. "support": {
  7579. "issues": "https://github.com/tighten/collect/issues",
  7580. "source": "https://github.com/tighten/collect/tree/v5.6.33"
  7581. },
  7582. "time": "2018-08-09T16:56:26+00:00"
  7583. },
  7584. {
  7585. "name": "tijsverkoyen/css-to-inline-styles",
  7586. "version": "2.2.3",
  7587. "source": {
  7588. "type": "git",
  7589. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7590. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5"
  7591. },
  7592. "dist": {
  7593. "type": "zip",
  7594. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/b43b05cf43c1b6d849478965062b6ef73e223bb5",
  7595. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5",
  7596. "shasum": "",
  7597. "mirrors": [
  7598. {
  7599. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7600. "preferred": true
  7601. }
  7602. ]
  7603. },
  7604. "require": {
  7605. "ext-dom": "*",
  7606. "ext-libxml": "*",
  7607. "php": "^5.5 || ^7.0 || ^8.0",
  7608. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0"
  7609. },
  7610. "require-dev": {
  7611. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5"
  7612. },
  7613. "type": "library",
  7614. "extra": {
  7615. "branch-alias": {
  7616. "dev-master": "2.2.x-dev"
  7617. }
  7618. },
  7619. "autoload": {
  7620. "psr-4": {
  7621. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  7622. }
  7623. },
  7624. "notification-url": "https://packagist.org/downloads/",
  7625. "license": [
  7626. "BSD-3-Clause"
  7627. ],
  7628. "authors": [
  7629. {
  7630. "name": "Tijs Verkoyen",
  7631. "email": "css_to_inline_styles@verkoyen.eu",
  7632. "role": "Developer"
  7633. }
  7634. ],
  7635. "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.",
  7636. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  7637. "support": {
  7638. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  7639. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.3"
  7640. },
  7641. "time": "2020-07-13T06:12:54+00:00"
  7642. },
  7643. {
  7644. "name": "vlucas/phpdotenv",
  7645. "version": "v4.2.0",
  7646. "source": {
  7647. "type": "git",
  7648. "url": "https://github.com/vlucas/phpdotenv.git",
  7649. "reference": "da64796370fc4eb03cc277088f6fede9fde88482"
  7650. },
  7651. "dist": {
  7652. "type": "zip",
  7653. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/da64796370fc4eb03cc277088f6fede9fde88482",
  7654. "reference": "da64796370fc4eb03cc277088f6fede9fde88482",
  7655. "shasum": "",
  7656. "mirrors": [
  7657. {
  7658. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7659. "preferred": true
  7660. }
  7661. ]
  7662. },
  7663. "require": {
  7664. "php": "^5.5.9 || ^7.0 || ^8.0",
  7665. "phpoption/phpoption": "^1.7.3",
  7666. "symfony/polyfill-ctype": "^1.17"
  7667. },
  7668. "require-dev": {
  7669. "bamarni/composer-bin-plugin": "^1.4.1",
  7670. "ext-filter": "*",
  7671. "ext-pcre": "*",
  7672. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20"
  7673. },
  7674. "suggest": {
  7675. "ext-filter": "Required to use the boolean validator.",
  7676. "ext-pcre": "Required to use most of the library."
  7677. },
  7678. "type": "library",
  7679. "extra": {
  7680. "branch-alias": {
  7681. "dev-master": "4.1-dev"
  7682. }
  7683. },
  7684. "autoload": {
  7685. "psr-4": {
  7686. "Dotenv\\": "src/"
  7687. }
  7688. },
  7689. "notification-url": "https://packagist.org/downloads/",
  7690. "license": [
  7691. "BSD-3-Clause"
  7692. ],
  7693. "authors": [
  7694. {
  7695. "name": "Graham Campbell",
  7696. "email": "graham@alt-three.com",
  7697. "homepage": "https://gjcampbell.co.uk/"
  7698. },
  7699. {
  7700. "name": "Vance Lucas",
  7701. "email": "vance@vancelucas.com",
  7702. "homepage": "https://vancelucas.com/"
  7703. }
  7704. ],
  7705. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7706. "keywords": [
  7707. "dotenv",
  7708. "env",
  7709. "environment"
  7710. ],
  7711. "support": {
  7712. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7713. "source": "https://github.com/vlucas/phpdotenv/tree/v4.2.0"
  7714. },
  7715. "funding": [
  7716. {
  7717. "url": "https://github.com/GrahamCampbell",
  7718. "type": "github"
  7719. },
  7720. {
  7721. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7722. "type": "tidelift"
  7723. }
  7724. ],
  7725. "time": "2021-01-20T15:11:48+00:00"
  7726. },
  7727. {
  7728. "name": "voku/portable-ascii",
  7729. "version": "1.5.6",
  7730. "source": {
  7731. "type": "git",
  7732. "url": "https://github.com/voku/portable-ascii.git",
  7733. "reference": "80953678b19901e5165c56752d087fc11526017c"
  7734. },
  7735. "dist": {
  7736. "type": "zip",
  7737. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/80953678b19901e5165c56752d087fc11526017c",
  7738. "reference": "80953678b19901e5165c56752d087fc11526017c",
  7739. "shasum": "",
  7740. "mirrors": [
  7741. {
  7742. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7743. "preferred": true
  7744. }
  7745. ]
  7746. },
  7747. "require": {
  7748. "php": ">=7.0.0"
  7749. },
  7750. "require-dev": {
  7751. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  7752. },
  7753. "suggest": {
  7754. "ext-intl": "Use Intl for transliterator_transliterate() support"
  7755. },
  7756. "type": "library",
  7757. "autoload": {
  7758. "psr-4": {
  7759. "voku\\": "src/voku/"
  7760. }
  7761. },
  7762. "notification-url": "https://packagist.org/downloads/",
  7763. "license": [
  7764. "MIT"
  7765. ],
  7766. "authors": [
  7767. {
  7768. "name": "Lars Moelleken",
  7769. "homepage": "http://www.moelleken.org/"
  7770. }
  7771. ],
  7772. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  7773. "homepage": "https://github.com/voku/portable-ascii",
  7774. "keywords": [
  7775. "ascii",
  7776. "clean",
  7777. "php"
  7778. ],
  7779. "support": {
  7780. "issues": "https://github.com/voku/portable-ascii/issues",
  7781. "source": "https://github.com/voku/portable-ascii/tree/1.5.6"
  7782. },
  7783. "funding": [
  7784. {
  7785. "url": "https://www.paypal.me/moelleken",
  7786. "type": "custom"
  7787. },
  7788. {
  7789. "url": "https://github.com/voku",
  7790. "type": "github"
  7791. },
  7792. {
  7793. "url": "https://opencollective.com/portable-ascii",
  7794. "type": "open_collective"
  7795. },
  7796. {
  7797. "url": "https://www.patreon.com/voku",
  7798. "type": "patreon"
  7799. },
  7800. {
  7801. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  7802. "type": "tidelift"
  7803. }
  7804. ],
  7805. "time": "2020-11-12T00:07:28+00:00"
  7806. },
  7807. {
  7808. "name": "yajra/laravel-oci8",
  7809. "version": "v7.0.0",
  7810. "source": {
  7811. "type": "git",
  7812. "url": "https://github.com/yajra/laravel-oci8.git",
  7813. "reference": "0d0db3c21a15438ee4bd610f6a0c585cb45fd974"
  7814. },
  7815. "dist": {
  7816. "type": "zip",
  7817. "url": "https://api.github.com/repos/yajra/laravel-oci8/zipball/0d0db3c21a15438ee4bd610f6a0c585cb45fd974",
  7818. "reference": "0d0db3c21a15438ee4bd610f6a0c585cb45fd974",
  7819. "shasum": "",
  7820. "mirrors": [
  7821. {
  7822. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7823. "preferred": true
  7824. }
  7825. ]
  7826. },
  7827. "require": {
  7828. "ext-oci8": ">=2.0.0",
  7829. "ext-pdo": "*",
  7830. "illuminate/database": "^7",
  7831. "illuminate/support": "^7",
  7832. "php": "^7.2.5",
  7833. "yajra/laravel-pdo-via-oci8": "^2"
  7834. },
  7835. "require-dev": {
  7836. "mockery/mockery": "^1.3.1",
  7837. "phpunit/phpunit": "^8.4|^9.0",
  7838. "scrutinizer/ocular": "~1.1"
  7839. },
  7840. "type": "library",
  7841. "extra": {
  7842. "branch-alias": {
  7843. "dev-master": "7.x-dev"
  7844. },
  7845. "laravel": {
  7846. "providers": [
  7847. "Yajra\\Oci8\\Oci8ServiceProvider"
  7848. ]
  7849. }
  7850. },
  7851. "autoload": {
  7852. "files": [
  7853. "src/helper.php"
  7854. ],
  7855. "psr-4": {
  7856. "Yajra\\": "src/"
  7857. }
  7858. },
  7859. "notification-url": "https://packagist.org/downloads/",
  7860. "license": [
  7861. "MIT"
  7862. ],
  7863. "authors": [
  7864. {
  7865. "name": "Arjay Angeles",
  7866. "email": "aqangeles@gmail.com"
  7867. }
  7868. ],
  7869. "description": "Oracle DB driver for Laravel 4|5|6|7 via OCI8",
  7870. "keywords": [
  7871. "laravel",
  7872. "oci8",
  7873. "oracle",
  7874. "pdo_oci"
  7875. ],
  7876. "support": {
  7877. "issues": "https://github.com/yajra/laravel-oci8/issues",
  7878. "source": "https://github.com/yajra/laravel-oci8/tree/v7.0.0"
  7879. },
  7880. "funding": [
  7881. {
  7882. "url": "https://www.paypal.me/yajra",
  7883. "type": "custom"
  7884. },
  7885. {
  7886. "url": "https://www.patreon.com/yajra",
  7887. "type": "patreon"
  7888. }
  7889. ],
  7890. "time": "2020-03-04T02:15:19+00:00"
  7891. },
  7892. {
  7893. "name": "yajra/laravel-pdo-via-oci8",
  7894. "version": "v2.2.0",
  7895. "source": {
  7896. "type": "git",
  7897. "url": "https://github.com/yajra/pdo-via-oci8.git",
  7898. "reference": "93610843b7abe975413288bcc4adb347edefb4b8"
  7899. },
  7900. "dist": {
  7901. "type": "zip",
  7902. "url": "https://api.github.com/repos/yajra/pdo-via-oci8/zipball/93610843b7abe975413288bcc4adb347edefb4b8",
  7903. "reference": "93610843b7abe975413288bcc4adb347edefb4b8",
  7904. "shasum": "",
  7905. "mirrors": [
  7906. {
  7907. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7908. "preferred": true
  7909. }
  7910. ]
  7911. },
  7912. "require-dev": {
  7913. "phpunit/phpunit": "^6.4"
  7914. },
  7915. "type": "library",
  7916. "extra": {
  7917. "branch-alias": {
  7918. "dev-master": "2.0-dev"
  7919. }
  7920. },
  7921. "autoload": {
  7922. "psr-4": {
  7923. "Yajra\\": "src/"
  7924. }
  7925. },
  7926. "notification-url": "https://packagist.org/downloads/",
  7927. "license": [
  7928. "MIT"
  7929. ],
  7930. "authors": [
  7931. {
  7932. "name": "Arjay Angeles",
  7933. "email": "aqangeles@gmail.com"
  7934. }
  7935. ],
  7936. "description": "PDO userspace driver proxying calls to PHP OCI8 driver",
  7937. "support": {
  7938. "issues": "https://github.com/yajra/pdo-via-oci8/issues",
  7939. "source": "https://github.com/yajra/pdo-via-oci8/tree/v2.2.0"
  7940. },
  7941. "time": "2020-12-11T12:29:18+00:00"
  7942. }
  7943. ],
  7944. "packages-dev": [
  7945. {
  7946. "name": "barryvdh/laravel-debugbar",
  7947. "version": "v3.6.2",
  7948. "source": {
  7949. "type": "git",
  7950. "url": "https://github.com/barryvdh/laravel-debugbar.git",
  7951. "reference": "70b89754913fd89fef16d0170a91dbc2a5cd633a"
  7952. },
  7953. "dist": {
  7954. "type": "zip",
  7955. "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/70b89754913fd89fef16d0170a91dbc2a5cd633a",
  7956. "reference": "70b89754913fd89fef16d0170a91dbc2a5cd633a",
  7957. "shasum": "",
  7958. "mirrors": [
  7959. {
  7960. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7961. "preferred": true
  7962. }
  7963. ]
  7964. },
  7965. "require": {
  7966. "illuminate/routing": "^6|^7|^8",
  7967. "illuminate/session": "^6|^7|^8",
  7968. "illuminate/support": "^6|^7|^8",
  7969. "maximebf/debugbar": "^1.16.3",
  7970. "php": ">=7.2",
  7971. "symfony/debug": "^4.3|^5",
  7972. "symfony/finder": "^4.3|^5"
  7973. },
  7974. "require-dev": {
  7975. "mockery/mockery": "^1.3.3",
  7976. "orchestra/testbench-dusk": "^4|^5|^6",
  7977. "phpunit/phpunit": "^8.5|^9.0",
  7978. "squizlabs/php_codesniffer": "^3.5"
  7979. },
  7980. "type": "library",
  7981. "extra": {
  7982. "branch-alias": {
  7983. "dev-master": "3.5-dev"
  7984. },
  7985. "laravel": {
  7986. "providers": [
  7987. "Barryvdh\\Debugbar\\ServiceProvider"
  7988. ],
  7989. "aliases": {
  7990. "Debugbar": "Barryvdh\\Debugbar\\Facade"
  7991. }
  7992. }
  7993. },
  7994. "autoload": {
  7995. "psr-4": {
  7996. "Barryvdh\\Debugbar\\": "src/"
  7997. },
  7998. "files": [
  7999. "src/helpers.php"
  8000. ]
  8001. },
  8002. "notification-url": "https://packagist.org/downloads/",
  8003. "license": [
  8004. "MIT"
  8005. ],
  8006. "authors": [
  8007. {
  8008. "name": "Barry vd. Heuvel",
  8009. "email": "barryvdh@gmail.com"
  8010. }
  8011. ],
  8012. "description": "PHP Debugbar integration for Laravel",
  8013. "keywords": [
  8014. "debug",
  8015. "debugbar",
  8016. "laravel",
  8017. "profiler",
  8018. "webprofiler"
  8019. ],
  8020. "support": {
  8021. "issues": "https://github.com/barryvdh/laravel-debugbar/issues",
  8022. "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.6.2"
  8023. },
  8024. "funding": [
  8025. {
  8026. "url": "https://fruitcake.nl",
  8027. "type": "custom"
  8028. },
  8029. {
  8030. "url": "https://github.com/barryvdh",
  8031. "type": "github"
  8032. }
  8033. ],
  8034. "time": "2021-06-14T14:29:26+00:00"
  8035. },
  8036. {
  8037. "name": "beyondcode/laravel-dump-server",
  8038. "version": "1.7.0",
  8039. "source": {
  8040. "type": "git",
  8041. "url": "https://github.com/beyondcode/laravel-dump-server.git",
  8042. "reference": "e27c7b942ab62f6ac7168359393d328ec5215b89"
  8043. },
  8044. "dist": {
  8045. "type": "zip",
  8046. "url": "https://api.github.com/repos/beyondcode/laravel-dump-server/zipball/e27c7b942ab62f6ac7168359393d328ec5215b89",
  8047. "reference": "e27c7b942ab62f6ac7168359393d328ec5215b89",
  8048. "shasum": "",
  8049. "mirrors": [
  8050. {
  8051. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8052. "preferred": true
  8053. }
  8054. ]
  8055. },
  8056. "require": {
  8057. "illuminate/console": "5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0",
  8058. "illuminate/http": "5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0",
  8059. "illuminate/support": "5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0",
  8060. "php": ">=7.2.5",
  8061. "symfony/var-dumper": "^5.0"
  8062. },
  8063. "require-dev": {
  8064. "larapack/dd": "^1.0",
  8065. "phpunit/phpunit": "^7.0|^9.3"
  8066. },
  8067. "type": "library",
  8068. "extra": {
  8069. "laravel": {
  8070. "providers": [
  8071. "BeyondCode\\DumpServer\\DumpServerServiceProvider"
  8072. ]
  8073. }
  8074. },
  8075. "autoload": {
  8076. "psr-4": {
  8077. "BeyondCode\\DumpServer\\": "src"
  8078. },
  8079. "files": [
  8080. "helpers.php"
  8081. ]
  8082. },
  8083. "notification-url": "https://packagist.org/downloads/",
  8084. "license": [
  8085. "MIT"
  8086. ],
  8087. "authors": [
  8088. {
  8089. "name": "Marcel Pociot",
  8090. "email": "marcel@beyondco.de",
  8091. "homepage": "https://beyondco.de",
  8092. "role": "Developer"
  8093. }
  8094. ],
  8095. "description": "Symfony Var-Dump Server for Laravel",
  8096. "homepage": "https://github.com/beyondcode/laravel-dump-server",
  8097. "keywords": [
  8098. "beyondcode",
  8099. "laravel-dump-server"
  8100. ],
  8101. "support": {
  8102. "issues": "https://github.com/beyondcode/laravel-dump-server/issues",
  8103. "source": "https://github.com/beyondcode/laravel-dump-server/tree/1.7.0"
  8104. },
  8105. "time": "2020-12-15T10:57:43+00:00"
  8106. },
  8107. {
  8108. "name": "doctrine/instantiator",
  8109. "version": "1.4.0",
  8110. "source": {
  8111. "type": "git",
  8112. "url": "https://github.com/doctrine/instantiator.git",
  8113. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
  8114. },
  8115. "dist": {
  8116. "type": "zip",
  8117. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
  8118. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
  8119. "shasum": "",
  8120. "mirrors": [
  8121. {
  8122. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8123. "preferred": true
  8124. }
  8125. ]
  8126. },
  8127. "require": {
  8128. "php": "^7.1 || ^8.0"
  8129. },
  8130. "require-dev": {
  8131. "doctrine/coding-standard": "^8.0",
  8132. "ext-pdo": "*",
  8133. "ext-phar": "*",
  8134. "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
  8135. "phpstan/phpstan": "^0.12",
  8136. "phpstan/phpstan-phpunit": "^0.12",
  8137. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  8138. },
  8139. "type": "library",
  8140. "autoload": {
  8141. "psr-4": {
  8142. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  8143. }
  8144. },
  8145. "notification-url": "https://packagist.org/downloads/",
  8146. "license": [
  8147. "MIT"
  8148. ],
  8149. "authors": [
  8150. {
  8151. "name": "Marco Pivetta",
  8152. "email": "ocramius@gmail.com",
  8153. "homepage": "https://ocramius.github.io/"
  8154. }
  8155. ],
  8156. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8157. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  8158. "keywords": [
  8159. "constructor",
  8160. "instantiate"
  8161. ],
  8162. "support": {
  8163. "issues": "https://github.com/doctrine/instantiator/issues",
  8164. "source": "https://github.com/doctrine/instantiator/tree/1.4.0"
  8165. },
  8166. "funding": [
  8167. {
  8168. "url": "https://www.doctrine-project.org/sponsorship.html",
  8169. "type": "custom"
  8170. },
  8171. {
  8172. "url": "https://www.patreon.com/phpdoctrine",
  8173. "type": "patreon"
  8174. },
  8175. {
  8176. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  8177. "type": "tidelift"
  8178. }
  8179. ],
  8180. "time": "2020-11-10T18:47:58+00:00"
  8181. },
  8182. {
  8183. "name": "fzaninotto/faker",
  8184. "version": "v1.9.2",
  8185. "source": {
  8186. "type": "git",
  8187. "url": "https://github.com/fzaninotto/Faker.git",
  8188. "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e"
  8189. },
  8190. "dist": {
  8191. "type": "zip",
  8192. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
  8193. "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
  8194. "shasum": "",
  8195. "mirrors": [
  8196. {
  8197. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8198. "preferred": true
  8199. }
  8200. ]
  8201. },
  8202. "require": {
  8203. "php": "^5.3.3 || ^7.0"
  8204. },
  8205. "require-dev": {
  8206. "ext-intl": "*",
  8207. "phpunit/phpunit": "^4.8.35 || ^5.7",
  8208. "squizlabs/php_codesniffer": "^2.9.2"
  8209. },
  8210. "type": "library",
  8211. "extra": {
  8212. "branch-alias": {
  8213. "dev-master": "1.9-dev"
  8214. }
  8215. },
  8216. "autoload": {
  8217. "psr-4": {
  8218. "Faker\\": "src/Faker/"
  8219. }
  8220. },
  8221. "notification-url": "https://packagist.org/downloads/",
  8222. "license": [
  8223. "MIT"
  8224. ],
  8225. "authors": [
  8226. {
  8227. "name": "François Zaninotto"
  8228. }
  8229. ],
  8230. "description": "Faker is a PHP library that generates fake data for you.",
  8231. "keywords": [
  8232. "data",
  8233. "faker",
  8234. "fixtures"
  8235. ],
  8236. "support": {
  8237. "issues": "https://github.com/fzaninotto/Faker/issues",
  8238. "source": "https://github.com/fzaninotto/Faker/tree/v1.9.2"
  8239. },
  8240. "abandoned": true,
  8241. "time": "2020-12-11T09:56:16+00:00"
  8242. },
  8243. {
  8244. "name": "hamcrest/hamcrest-php",
  8245. "version": "v2.0.1",
  8246. "source": {
  8247. "type": "git",
  8248. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8249. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8250. },
  8251. "dist": {
  8252. "type": "zip",
  8253. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8254. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8255. "shasum": "",
  8256. "mirrors": [
  8257. {
  8258. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8259. "preferred": true
  8260. }
  8261. ]
  8262. },
  8263. "require": {
  8264. "php": "^5.3|^7.0|^8.0"
  8265. },
  8266. "replace": {
  8267. "cordoval/hamcrest-php": "*",
  8268. "davedevelopment/hamcrest-php": "*",
  8269. "kodova/hamcrest-php": "*"
  8270. },
  8271. "require-dev": {
  8272. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8273. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8274. },
  8275. "type": "library",
  8276. "extra": {
  8277. "branch-alias": {
  8278. "dev-master": "2.1-dev"
  8279. }
  8280. },
  8281. "autoload": {
  8282. "classmap": [
  8283. "hamcrest"
  8284. ]
  8285. },
  8286. "notification-url": "https://packagist.org/downloads/",
  8287. "license": [
  8288. "BSD-3-Clause"
  8289. ],
  8290. "description": "This is the PHP port of Hamcrest Matchers",
  8291. "keywords": [
  8292. "test"
  8293. ],
  8294. "support": {
  8295. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8296. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8297. },
  8298. "time": "2020-07-09T08:09:16+00:00"
  8299. },
  8300. {
  8301. "name": "maximebf/debugbar",
  8302. "version": "v1.16.5",
  8303. "source": {
  8304. "type": "git",
  8305. "url": "https://github.com/maximebf/php-debugbar.git",
  8306. "reference": "6d51ee9e94cff14412783785e79a4e7ef97b9d62"
  8307. },
  8308. "dist": {
  8309. "type": "zip",
  8310. "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/6d51ee9e94cff14412783785e79a4e7ef97b9d62",
  8311. "reference": "6d51ee9e94cff14412783785e79a4e7ef97b9d62",
  8312. "shasum": "",
  8313. "mirrors": [
  8314. {
  8315. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8316. "preferred": true
  8317. }
  8318. ]
  8319. },
  8320. "require": {
  8321. "php": "^7.1|^8",
  8322. "psr/log": "^1.0",
  8323. "symfony/var-dumper": "^2.6|^3|^4|^5"
  8324. },
  8325. "require-dev": {
  8326. "phpunit/phpunit": "^7.5.20 || ^9.4.2"
  8327. },
  8328. "suggest": {
  8329. "kriswallsmith/assetic": "The best way to manage assets",
  8330. "monolog/monolog": "Log using Monolog",
  8331. "predis/predis": "Redis storage"
  8332. },
  8333. "type": "library",
  8334. "extra": {
  8335. "branch-alias": {
  8336. "dev-master": "1.16-dev"
  8337. }
  8338. },
  8339. "autoload": {
  8340. "psr-4": {
  8341. "DebugBar\\": "src/DebugBar/"
  8342. }
  8343. },
  8344. "notification-url": "https://packagist.org/downloads/",
  8345. "license": [
  8346. "MIT"
  8347. ],
  8348. "authors": [
  8349. {
  8350. "name": "Maxime Bouroumeau-Fuseau",
  8351. "email": "maxime.bouroumeau@gmail.com",
  8352. "homepage": "http://maximebf.com"
  8353. },
  8354. {
  8355. "name": "Barry vd. Heuvel",
  8356. "email": "barryvdh@gmail.com"
  8357. }
  8358. ],
  8359. "description": "Debug bar in the browser for php application",
  8360. "homepage": "https://github.com/maximebf/php-debugbar",
  8361. "keywords": [
  8362. "debug",
  8363. "debugbar"
  8364. ],
  8365. "support": {
  8366. "issues": "https://github.com/maximebf/php-debugbar/issues",
  8367. "source": "https://github.com/maximebf/php-debugbar/tree/v1.16.5"
  8368. },
  8369. "time": "2020-12-07T11:07:24+00:00"
  8370. },
  8371. {
  8372. "name": "mockery/mockery",
  8373. "version": "1.4.3",
  8374. "source": {
  8375. "type": "git",
  8376. "url": "https://github.com/mockery/mockery.git",
  8377. "reference": "d1339f64479af1bee0e82a0413813fe5345a54ea"
  8378. },
  8379. "dist": {
  8380. "type": "zip",
  8381. "url": "https://api.github.com/repos/mockery/mockery/zipball/d1339f64479af1bee0e82a0413813fe5345a54ea",
  8382. "reference": "d1339f64479af1bee0e82a0413813fe5345a54ea",
  8383. "shasum": "",
  8384. "mirrors": [
  8385. {
  8386. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8387. "preferred": true
  8388. }
  8389. ]
  8390. },
  8391. "require": {
  8392. "hamcrest/hamcrest-php": "^2.0.1",
  8393. "lib-pcre": ">=7.0",
  8394. "php": "^7.3 || ^8.0"
  8395. },
  8396. "conflict": {
  8397. "phpunit/phpunit": "<8.0"
  8398. },
  8399. "require-dev": {
  8400. "phpunit/phpunit": "^8.5 || ^9.3"
  8401. },
  8402. "type": "library",
  8403. "extra": {
  8404. "branch-alias": {
  8405. "dev-master": "1.4.x-dev"
  8406. }
  8407. },
  8408. "autoload": {
  8409. "psr-0": {
  8410. "Mockery": "library/"
  8411. }
  8412. },
  8413. "notification-url": "https://packagist.org/downloads/",
  8414. "license": [
  8415. "BSD-3-Clause"
  8416. ],
  8417. "authors": [
  8418. {
  8419. "name": "Pádraic Brady",
  8420. "email": "padraic.brady@gmail.com",
  8421. "homepage": "http://blog.astrumfutura.com"
  8422. },
  8423. {
  8424. "name": "Dave Marshall",
  8425. "email": "dave.marshall@atstsolutions.co.uk",
  8426. "homepage": "http://davedevelopment.co.uk"
  8427. }
  8428. ],
  8429. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8430. "homepage": "https://github.com/mockery/mockery",
  8431. "keywords": [
  8432. "BDD",
  8433. "TDD",
  8434. "library",
  8435. "mock",
  8436. "mock objects",
  8437. "mockery",
  8438. "stub",
  8439. "test",
  8440. "test double",
  8441. "testing"
  8442. ],
  8443. "support": {
  8444. "issues": "https://github.com/mockery/mockery/issues",
  8445. "source": "https://github.com/mockery/mockery/tree/1.4.3"
  8446. },
  8447. "time": "2021-02-24T09:51:49+00:00"
  8448. },
  8449. {
  8450. "name": "myclabs/deep-copy",
  8451. "version": "1.10.2",
  8452. "source": {
  8453. "type": "git",
  8454. "url": "https://github.com/myclabs/DeepCopy.git",
  8455. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
  8456. },
  8457. "dist": {
  8458. "type": "zip",
  8459. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
  8460. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
  8461. "shasum": "",
  8462. "mirrors": [
  8463. {
  8464. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8465. "preferred": true
  8466. }
  8467. ]
  8468. },
  8469. "require": {
  8470. "php": "^7.1 || ^8.0"
  8471. },
  8472. "replace": {
  8473. "myclabs/deep-copy": "self.version"
  8474. },
  8475. "require-dev": {
  8476. "doctrine/collections": "^1.0",
  8477. "doctrine/common": "^2.6",
  8478. "phpunit/phpunit": "^7.1"
  8479. },
  8480. "type": "library",
  8481. "autoload": {
  8482. "psr-4": {
  8483. "DeepCopy\\": "src/DeepCopy/"
  8484. },
  8485. "files": [
  8486. "src/DeepCopy/deep_copy.php"
  8487. ]
  8488. },
  8489. "notification-url": "https://packagist.org/downloads/",
  8490. "license": [
  8491. "MIT"
  8492. ],
  8493. "description": "Create deep copies (clones) of your objects",
  8494. "keywords": [
  8495. "clone",
  8496. "copy",
  8497. "duplicate",
  8498. "object",
  8499. "object graph"
  8500. ],
  8501. "support": {
  8502. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8503. "source": "https://github.com/myclabs/DeepCopy/tree/1.10.2"
  8504. },
  8505. "funding": [
  8506. {
  8507. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8508. "type": "tidelift"
  8509. }
  8510. ],
  8511. "time": "2020-11-13T09:40:50+00:00"
  8512. },
  8513. {
  8514. "name": "nunomaduro/collision",
  8515. "version": "v4.3.0",
  8516. "source": {
  8517. "type": "git",
  8518. "url": "https://github.com/nunomaduro/collision.git",
  8519. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e"
  8520. },
  8521. "dist": {
  8522. "type": "zip",
  8523. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/7c125dc2463f3e144ddc7e05e63077109508c94e",
  8524. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e",
  8525. "shasum": "",
  8526. "mirrors": [
  8527. {
  8528. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8529. "preferred": true
  8530. }
  8531. ]
  8532. },
  8533. "require": {
  8534. "facade/ignition-contracts": "^1.0",
  8535. "filp/whoops": "^2.4",
  8536. "php": "^7.2.5 || ^8.0",
  8537. "symfony/console": "^5.0"
  8538. },
  8539. "require-dev": {
  8540. "facade/ignition": "^2.0",
  8541. "fideloper/proxy": "^4.2",
  8542. "friendsofphp/php-cs-fixer": "^2.16",
  8543. "fruitcake/laravel-cors": "^1.0",
  8544. "laravel/framework": "^7.0",
  8545. "laravel/tinker": "^2.0",
  8546. "nunomaduro/larastan": "^0.6",
  8547. "orchestra/testbench": "^5.0",
  8548. "phpstan/phpstan": "^0.12.3",
  8549. "phpunit/phpunit": "^8.5.1 || ^9.0"
  8550. },
  8551. "type": "library",
  8552. "extra": {
  8553. "laravel": {
  8554. "providers": [
  8555. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  8556. ]
  8557. }
  8558. },
  8559. "autoload": {
  8560. "psr-4": {
  8561. "NunoMaduro\\Collision\\": "src/"
  8562. }
  8563. },
  8564. "notification-url": "https://packagist.org/downloads/",
  8565. "license": [
  8566. "MIT"
  8567. ],
  8568. "authors": [
  8569. {
  8570. "name": "Nuno Maduro",
  8571. "email": "enunomaduro@gmail.com"
  8572. }
  8573. ],
  8574. "description": "Cli error handling for console/command-line PHP applications.",
  8575. "keywords": [
  8576. "artisan",
  8577. "cli",
  8578. "command-line",
  8579. "console",
  8580. "error",
  8581. "handling",
  8582. "laravel",
  8583. "laravel-zero",
  8584. "php",
  8585. "symfony"
  8586. ],
  8587. "support": {
  8588. "issues": "https://github.com/nunomaduro/collision/issues",
  8589. "source": "https://github.com/nunomaduro/collision"
  8590. },
  8591. "funding": [
  8592. {
  8593. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  8594. "type": "custom"
  8595. },
  8596. {
  8597. "url": "https://github.com/nunomaduro",
  8598. "type": "github"
  8599. },
  8600. {
  8601. "url": "https://www.patreon.com/nunomaduro",
  8602. "type": "patreon"
  8603. }
  8604. ],
  8605. "time": "2020-10-29T15:12:23+00:00"
  8606. },
  8607. {
  8608. "name": "phar-io/manifest",
  8609. "version": "2.0.1",
  8610. "source": {
  8611. "type": "git",
  8612. "url": "https://github.com/phar-io/manifest.git",
  8613. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133"
  8614. },
  8615. "dist": {
  8616. "type": "zip",
  8617. "url": "https://api.github.com/repos/phar-io/manifest/zipball/85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  8618. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  8619. "shasum": "",
  8620. "mirrors": [
  8621. {
  8622. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8623. "preferred": true
  8624. }
  8625. ]
  8626. },
  8627. "require": {
  8628. "ext-dom": "*",
  8629. "ext-phar": "*",
  8630. "ext-xmlwriter": "*",
  8631. "phar-io/version": "^3.0.1",
  8632. "php": "^7.2 || ^8.0"
  8633. },
  8634. "type": "library",
  8635. "extra": {
  8636. "branch-alias": {
  8637. "dev-master": "2.0.x-dev"
  8638. }
  8639. },
  8640. "autoload": {
  8641. "classmap": [
  8642. "src/"
  8643. ]
  8644. },
  8645. "notification-url": "https://packagist.org/downloads/",
  8646. "license": [
  8647. "BSD-3-Clause"
  8648. ],
  8649. "authors": [
  8650. {
  8651. "name": "Arne Blankerts",
  8652. "email": "arne@blankerts.de",
  8653. "role": "Developer"
  8654. },
  8655. {
  8656. "name": "Sebastian Heuer",
  8657. "email": "sebastian@phpeople.de",
  8658. "role": "Developer"
  8659. },
  8660. {
  8661. "name": "Sebastian Bergmann",
  8662. "email": "sebastian@phpunit.de",
  8663. "role": "Developer"
  8664. }
  8665. ],
  8666. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8667. "support": {
  8668. "issues": "https://github.com/phar-io/manifest/issues",
  8669. "source": "https://github.com/phar-io/manifest/tree/master"
  8670. },
  8671. "time": "2020-06-27T14:33:11+00:00"
  8672. },
  8673. {
  8674. "name": "phar-io/version",
  8675. "version": "3.1.0",
  8676. "source": {
  8677. "type": "git",
  8678. "url": "https://github.com/phar-io/version.git",
  8679. "reference": "bae7c545bef187884426f042434e561ab1ddb182"
  8680. },
  8681. "dist": {
  8682. "type": "zip",
  8683. "url": "https://api.github.com/repos/phar-io/version/zipball/bae7c545bef187884426f042434e561ab1ddb182",
  8684. "reference": "bae7c545bef187884426f042434e561ab1ddb182",
  8685. "shasum": "",
  8686. "mirrors": [
  8687. {
  8688. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8689. "preferred": true
  8690. }
  8691. ]
  8692. },
  8693. "require": {
  8694. "php": "^7.2 || ^8.0"
  8695. },
  8696. "type": "library",
  8697. "autoload": {
  8698. "classmap": [
  8699. "src/"
  8700. ]
  8701. },
  8702. "notification-url": "https://packagist.org/downloads/",
  8703. "license": [
  8704. "BSD-3-Clause"
  8705. ],
  8706. "authors": [
  8707. {
  8708. "name": "Arne Blankerts",
  8709. "email": "arne@blankerts.de",
  8710. "role": "Developer"
  8711. },
  8712. {
  8713. "name": "Sebastian Heuer",
  8714. "email": "sebastian@phpeople.de",
  8715. "role": "Developer"
  8716. },
  8717. {
  8718. "name": "Sebastian Bergmann",
  8719. "email": "sebastian@phpunit.de",
  8720. "role": "Developer"
  8721. }
  8722. ],
  8723. "description": "Library for handling version information and constraints",
  8724. "support": {
  8725. "issues": "https://github.com/phar-io/version/issues",
  8726. "source": "https://github.com/phar-io/version/tree/3.1.0"
  8727. },
  8728. "time": "2021-02-23T14:00:09+00:00"
  8729. },
  8730. {
  8731. "name": "phpdocumentor/reflection-common",
  8732. "version": "2.2.0",
  8733. "source": {
  8734. "type": "git",
  8735. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  8736. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  8737. },
  8738. "dist": {
  8739. "type": "zip",
  8740. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  8741. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  8742. "shasum": "",
  8743. "mirrors": [
  8744. {
  8745. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8746. "preferred": true
  8747. }
  8748. ]
  8749. },
  8750. "require": {
  8751. "php": "^7.2 || ^8.0"
  8752. },
  8753. "type": "library",
  8754. "extra": {
  8755. "branch-alias": {
  8756. "dev-2.x": "2.x-dev"
  8757. }
  8758. },
  8759. "autoload": {
  8760. "psr-4": {
  8761. "phpDocumentor\\Reflection\\": "src/"
  8762. }
  8763. },
  8764. "notification-url": "https://packagist.org/downloads/",
  8765. "license": [
  8766. "MIT"
  8767. ],
  8768. "authors": [
  8769. {
  8770. "name": "Jaap van Otterdijk",
  8771. "email": "opensource@ijaap.nl"
  8772. }
  8773. ],
  8774. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  8775. "homepage": "http://www.phpdoc.org",
  8776. "keywords": [
  8777. "FQSEN",
  8778. "phpDocumentor",
  8779. "phpdoc",
  8780. "reflection",
  8781. "static analysis"
  8782. ],
  8783. "support": {
  8784. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  8785. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  8786. },
  8787. "time": "2020-06-27T09:03:43+00:00"
  8788. },
  8789. {
  8790. "name": "phpdocumentor/reflection-docblock",
  8791. "version": "5.2.2",
  8792. "source": {
  8793. "type": "git",
  8794. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  8795. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556"
  8796. },
  8797. "dist": {
  8798. "type": "zip",
  8799. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556",
  8800. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556",
  8801. "shasum": "",
  8802. "mirrors": [
  8803. {
  8804. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8805. "preferred": true
  8806. }
  8807. ]
  8808. },
  8809. "require": {
  8810. "ext-filter": "*",
  8811. "php": "^7.2 || ^8.0",
  8812. "phpdocumentor/reflection-common": "^2.2",
  8813. "phpdocumentor/type-resolver": "^1.3",
  8814. "webmozart/assert": "^1.9.1"
  8815. },
  8816. "require-dev": {
  8817. "mockery/mockery": "~1.3.2"
  8818. },
  8819. "type": "library",
  8820. "extra": {
  8821. "branch-alias": {
  8822. "dev-master": "5.x-dev"
  8823. }
  8824. },
  8825. "autoload": {
  8826. "psr-4": {
  8827. "phpDocumentor\\Reflection\\": "src"
  8828. }
  8829. },
  8830. "notification-url": "https://packagist.org/downloads/",
  8831. "license": [
  8832. "MIT"
  8833. ],
  8834. "authors": [
  8835. {
  8836. "name": "Mike van Riel",
  8837. "email": "me@mikevanriel.com"
  8838. },
  8839. {
  8840. "name": "Jaap van Otterdijk",
  8841. "email": "account@ijaap.nl"
  8842. }
  8843. ],
  8844. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  8845. "support": {
  8846. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  8847. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/master"
  8848. },
  8849. "time": "2020-09-03T19:13:55+00:00"
  8850. },
  8851. {
  8852. "name": "phpdocumentor/type-resolver",
  8853. "version": "1.4.0",
  8854. "source": {
  8855. "type": "git",
  8856. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  8857. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0"
  8858. },
  8859. "dist": {
  8860. "type": "zip",
  8861. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  8862. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  8863. "shasum": "",
  8864. "mirrors": [
  8865. {
  8866. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8867. "preferred": true
  8868. }
  8869. ]
  8870. },
  8871. "require": {
  8872. "php": "^7.2 || ^8.0",
  8873. "phpdocumentor/reflection-common": "^2.0"
  8874. },
  8875. "require-dev": {
  8876. "ext-tokenizer": "*"
  8877. },
  8878. "type": "library",
  8879. "extra": {
  8880. "branch-alias": {
  8881. "dev-1.x": "1.x-dev"
  8882. }
  8883. },
  8884. "autoload": {
  8885. "psr-4": {
  8886. "phpDocumentor\\Reflection\\": "src"
  8887. }
  8888. },
  8889. "notification-url": "https://packagist.org/downloads/",
  8890. "license": [
  8891. "MIT"
  8892. ],
  8893. "authors": [
  8894. {
  8895. "name": "Mike van Riel",
  8896. "email": "me@mikevanriel.com"
  8897. }
  8898. ],
  8899. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  8900. "support": {
  8901. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  8902. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.4.0"
  8903. },
  8904. "time": "2020-09-17T18:55:26+00:00"
  8905. },
  8906. {
  8907. "name": "phpspec/prophecy",
  8908. "version": "1.13.0",
  8909. "source": {
  8910. "type": "git",
  8911. "url": "https://github.com/phpspec/prophecy.git",
  8912. "reference": "be1996ed8adc35c3fd795488a653f4b518be70ea"
  8913. },
  8914. "dist": {
  8915. "type": "zip",
  8916. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/be1996ed8adc35c3fd795488a653f4b518be70ea",
  8917. "reference": "be1996ed8adc35c3fd795488a653f4b518be70ea",
  8918. "shasum": "",
  8919. "mirrors": [
  8920. {
  8921. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8922. "preferred": true
  8923. }
  8924. ]
  8925. },
  8926. "require": {
  8927. "doctrine/instantiator": "^1.2",
  8928. "php": "^7.2 || ~8.0, <8.1",
  8929. "phpdocumentor/reflection-docblock": "^5.2",
  8930. "sebastian/comparator": "^3.0 || ^4.0",
  8931. "sebastian/recursion-context": "^3.0 || ^4.0"
  8932. },
  8933. "require-dev": {
  8934. "phpspec/phpspec": "^6.0",
  8935. "phpunit/phpunit": "^8.0 || ^9.0"
  8936. },
  8937. "type": "library",
  8938. "extra": {
  8939. "branch-alias": {
  8940. "dev-master": "1.11.x-dev"
  8941. }
  8942. },
  8943. "autoload": {
  8944. "psr-4": {
  8945. "Prophecy\\": "src/Prophecy"
  8946. }
  8947. },
  8948. "notification-url": "https://packagist.org/downloads/",
  8949. "license": [
  8950. "MIT"
  8951. ],
  8952. "authors": [
  8953. {
  8954. "name": "Konstantin Kudryashov",
  8955. "email": "ever.zet@gmail.com",
  8956. "homepage": "http://everzet.com"
  8957. },
  8958. {
  8959. "name": "Marcello Duarte",
  8960. "email": "marcello.duarte@gmail.com"
  8961. }
  8962. ],
  8963. "description": "Highly opinionated mocking framework for PHP 5.3+",
  8964. "homepage": "https://github.com/phpspec/prophecy",
  8965. "keywords": [
  8966. "Double",
  8967. "Dummy",
  8968. "fake",
  8969. "mock",
  8970. "spy",
  8971. "stub"
  8972. ],
  8973. "support": {
  8974. "issues": "https://github.com/phpspec/prophecy/issues",
  8975. "source": "https://github.com/phpspec/prophecy/tree/1.13.0"
  8976. },
  8977. "time": "2021-03-17T13:42:18+00:00"
  8978. },
  8979. {
  8980. "name": "phpunit/php-code-coverage",
  8981. "version": "7.0.14",
  8982. "source": {
  8983. "type": "git",
  8984. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8985. "reference": "bb7c9a210c72e4709cdde67f8b7362f672f2225c"
  8986. },
  8987. "dist": {
  8988. "type": "zip",
  8989. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/bb7c9a210c72e4709cdde67f8b7362f672f2225c",
  8990. "reference": "bb7c9a210c72e4709cdde67f8b7362f672f2225c",
  8991. "shasum": "",
  8992. "mirrors": [
  8993. {
  8994. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8995. "preferred": true
  8996. }
  8997. ]
  8998. },
  8999. "require": {
  9000. "ext-dom": "*",
  9001. "ext-xmlwriter": "*",
  9002. "php": ">=7.2",
  9003. "phpunit/php-file-iterator": "^2.0.2",
  9004. "phpunit/php-text-template": "^1.2.1",
  9005. "phpunit/php-token-stream": "^3.1.1 || ^4.0",
  9006. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  9007. "sebastian/environment": "^4.2.2",
  9008. "sebastian/version": "^2.0.1",
  9009. "theseer/tokenizer": "^1.1.3"
  9010. },
  9011. "require-dev": {
  9012. "phpunit/phpunit": "^8.2.2"
  9013. },
  9014. "suggest": {
  9015. "ext-xdebug": "^2.7.2"
  9016. },
  9017. "type": "library",
  9018. "extra": {
  9019. "branch-alias": {
  9020. "dev-master": "7.0-dev"
  9021. }
  9022. },
  9023. "autoload": {
  9024. "classmap": [
  9025. "src/"
  9026. ]
  9027. },
  9028. "notification-url": "https://packagist.org/downloads/",
  9029. "license": [
  9030. "BSD-3-Clause"
  9031. ],
  9032. "authors": [
  9033. {
  9034. "name": "Sebastian Bergmann",
  9035. "email": "sebastian@phpunit.de",
  9036. "role": "lead"
  9037. }
  9038. ],
  9039. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9040. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9041. "keywords": [
  9042. "coverage",
  9043. "testing",
  9044. "xunit"
  9045. ],
  9046. "support": {
  9047. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9048. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/7.0.14"
  9049. },
  9050. "funding": [
  9051. {
  9052. "url": "https://github.com/sebastianbergmann",
  9053. "type": "github"
  9054. }
  9055. ],
  9056. "time": "2020-12-02T13:39:03+00:00"
  9057. },
  9058. {
  9059. "name": "phpunit/php-file-iterator",
  9060. "version": "2.0.3",
  9061. "source": {
  9062. "type": "git",
  9063. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9064. "reference": "4b49fb70f067272b659ef0174ff9ca40fdaa6357"
  9065. },
  9066. "dist": {
  9067. "type": "zip",
  9068. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/4b49fb70f067272b659ef0174ff9ca40fdaa6357",
  9069. "reference": "4b49fb70f067272b659ef0174ff9ca40fdaa6357",
  9070. "shasum": "",
  9071. "mirrors": [
  9072. {
  9073. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9074. "preferred": true
  9075. }
  9076. ]
  9077. },
  9078. "require": {
  9079. "php": ">=7.1"
  9080. },
  9081. "require-dev": {
  9082. "phpunit/phpunit": "^8.5"
  9083. },
  9084. "type": "library",
  9085. "extra": {
  9086. "branch-alias": {
  9087. "dev-master": "2.0.x-dev"
  9088. }
  9089. },
  9090. "autoload": {
  9091. "classmap": [
  9092. "src/"
  9093. ]
  9094. },
  9095. "notification-url": "https://packagist.org/downloads/",
  9096. "license": [
  9097. "BSD-3-Clause"
  9098. ],
  9099. "authors": [
  9100. {
  9101. "name": "Sebastian Bergmann",
  9102. "email": "sebastian@phpunit.de",
  9103. "role": "lead"
  9104. }
  9105. ],
  9106. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9107. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9108. "keywords": [
  9109. "filesystem",
  9110. "iterator"
  9111. ],
  9112. "support": {
  9113. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9114. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/2.0.3"
  9115. },
  9116. "funding": [
  9117. {
  9118. "url": "https://github.com/sebastianbergmann",
  9119. "type": "github"
  9120. }
  9121. ],
  9122. "time": "2020-11-30T08:25:21+00:00"
  9123. },
  9124. {
  9125. "name": "phpunit/php-text-template",
  9126. "version": "1.2.1",
  9127. "source": {
  9128. "type": "git",
  9129. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9130. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  9131. },
  9132. "dist": {
  9133. "type": "zip",
  9134. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  9135. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  9136. "shasum": "",
  9137. "mirrors": [
  9138. {
  9139. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9140. "preferred": true
  9141. }
  9142. ]
  9143. },
  9144. "require": {
  9145. "php": ">=5.3.3"
  9146. },
  9147. "type": "library",
  9148. "autoload": {
  9149. "classmap": [
  9150. "src/"
  9151. ]
  9152. },
  9153. "notification-url": "https://packagist.org/downloads/",
  9154. "license": [
  9155. "BSD-3-Clause"
  9156. ],
  9157. "authors": [
  9158. {
  9159. "name": "Sebastian Bergmann",
  9160. "email": "sebastian@phpunit.de",
  9161. "role": "lead"
  9162. }
  9163. ],
  9164. "description": "Simple template engine.",
  9165. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9166. "keywords": [
  9167. "template"
  9168. ],
  9169. "support": {
  9170. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9171. "source": "https://github.com/sebastianbergmann/php-text-template/tree/1.2.1"
  9172. },
  9173. "time": "2015-06-21T13:50:34+00:00"
  9174. },
  9175. {
  9176. "name": "phpunit/php-timer",
  9177. "version": "2.1.3",
  9178. "source": {
  9179. "type": "git",
  9180. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9181. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662"
  9182. },
  9183. "dist": {
  9184. "type": "zip",
  9185. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  9186. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  9187. "shasum": "",
  9188. "mirrors": [
  9189. {
  9190. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9191. "preferred": true
  9192. }
  9193. ]
  9194. },
  9195. "require": {
  9196. "php": ">=7.1"
  9197. },
  9198. "require-dev": {
  9199. "phpunit/phpunit": "^8.5"
  9200. },
  9201. "type": "library",
  9202. "extra": {
  9203. "branch-alias": {
  9204. "dev-master": "2.1-dev"
  9205. }
  9206. },
  9207. "autoload": {
  9208. "classmap": [
  9209. "src/"
  9210. ]
  9211. },
  9212. "notification-url": "https://packagist.org/downloads/",
  9213. "license": [
  9214. "BSD-3-Clause"
  9215. ],
  9216. "authors": [
  9217. {
  9218. "name": "Sebastian Bergmann",
  9219. "email": "sebastian@phpunit.de",
  9220. "role": "lead"
  9221. }
  9222. ],
  9223. "description": "Utility class for timing",
  9224. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9225. "keywords": [
  9226. "timer"
  9227. ],
  9228. "support": {
  9229. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9230. "source": "https://github.com/sebastianbergmann/php-timer/tree/2.1.3"
  9231. },
  9232. "funding": [
  9233. {
  9234. "url": "https://github.com/sebastianbergmann",
  9235. "type": "github"
  9236. }
  9237. ],
  9238. "time": "2020-11-30T08:20:02+00:00"
  9239. },
  9240. {
  9241. "name": "phpunit/php-token-stream",
  9242. "version": "4.0.4",
  9243. "source": {
  9244. "type": "git",
  9245. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  9246. "reference": "a853a0e183b9db7eed023d7933a858fa1c8d25a3"
  9247. },
  9248. "dist": {
  9249. "type": "zip",
  9250. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/a853a0e183b9db7eed023d7933a858fa1c8d25a3",
  9251. "reference": "a853a0e183b9db7eed023d7933a858fa1c8d25a3",
  9252. "shasum": "",
  9253. "mirrors": [
  9254. {
  9255. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9256. "preferred": true
  9257. }
  9258. ]
  9259. },
  9260. "require": {
  9261. "ext-tokenizer": "*",
  9262. "php": "^7.3 || ^8.0"
  9263. },
  9264. "require-dev": {
  9265. "phpunit/phpunit": "^9.0"
  9266. },
  9267. "type": "library",
  9268. "extra": {
  9269. "branch-alias": {
  9270. "dev-master": "4.0-dev"
  9271. }
  9272. },
  9273. "autoload": {
  9274. "classmap": [
  9275. "src/"
  9276. ]
  9277. },
  9278. "notification-url": "https://packagist.org/downloads/",
  9279. "license": [
  9280. "BSD-3-Clause"
  9281. ],
  9282. "authors": [
  9283. {
  9284. "name": "Sebastian Bergmann",
  9285. "email": "sebastian@phpunit.de"
  9286. }
  9287. ],
  9288. "description": "Wrapper around PHP's tokenizer extension.",
  9289. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  9290. "keywords": [
  9291. "tokenizer"
  9292. ],
  9293. "support": {
  9294. "issues": "https://github.com/sebastianbergmann/php-token-stream/issues",
  9295. "source": "https://github.com/sebastianbergmann/php-token-stream/tree/master"
  9296. },
  9297. "funding": [
  9298. {
  9299. "url": "https://github.com/sebastianbergmann",
  9300. "type": "github"
  9301. }
  9302. ],
  9303. "abandoned": true,
  9304. "time": "2020-08-04T08:28:15+00:00"
  9305. },
  9306. {
  9307. "name": "phpunit/phpunit",
  9308. "version": "8.5.17",
  9309. "source": {
  9310. "type": "git",
  9311. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9312. "reference": "79067856d85421c56d413bd238d4e2cd6b0e54da"
  9313. },
  9314. "dist": {
  9315. "type": "zip",
  9316. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/79067856d85421c56d413bd238d4e2cd6b0e54da",
  9317. "reference": "79067856d85421c56d413bd238d4e2cd6b0e54da",
  9318. "shasum": "",
  9319. "mirrors": [
  9320. {
  9321. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9322. "preferred": true
  9323. }
  9324. ]
  9325. },
  9326. "require": {
  9327. "doctrine/instantiator": "^1.3.1",
  9328. "ext-dom": "*",
  9329. "ext-json": "*",
  9330. "ext-libxml": "*",
  9331. "ext-mbstring": "*",
  9332. "ext-xml": "*",
  9333. "ext-xmlwriter": "*",
  9334. "myclabs/deep-copy": "^1.10.0",
  9335. "phar-io/manifest": "^2.0.1",
  9336. "phar-io/version": "^3.0.2",
  9337. "php": ">=7.2",
  9338. "phpspec/prophecy": "^1.10.3",
  9339. "phpunit/php-code-coverage": "^7.0.12",
  9340. "phpunit/php-file-iterator": "^2.0.2",
  9341. "phpunit/php-text-template": "^1.2.1",
  9342. "phpunit/php-timer": "^2.1.2",
  9343. "sebastian/comparator": "^3.0.2",
  9344. "sebastian/diff": "^3.0.2",
  9345. "sebastian/environment": "^4.2.3",
  9346. "sebastian/exporter": "^3.1.2",
  9347. "sebastian/global-state": "^3.0.0",
  9348. "sebastian/object-enumerator": "^3.0.3",
  9349. "sebastian/resource-operations": "^2.0.1",
  9350. "sebastian/type": "^1.1.3",
  9351. "sebastian/version": "^2.0.1"
  9352. },
  9353. "require-dev": {
  9354. "ext-pdo": "*"
  9355. },
  9356. "suggest": {
  9357. "ext-soap": "*",
  9358. "ext-xdebug": "*",
  9359. "phpunit/php-invoker": "^2.0.0"
  9360. },
  9361. "bin": [
  9362. "phpunit"
  9363. ],
  9364. "type": "library",
  9365. "extra": {
  9366. "branch-alias": {
  9367. "dev-master": "8.5-dev"
  9368. }
  9369. },
  9370. "autoload": {
  9371. "classmap": [
  9372. "src/"
  9373. ]
  9374. },
  9375. "notification-url": "https://packagist.org/downloads/",
  9376. "license": [
  9377. "BSD-3-Clause"
  9378. ],
  9379. "authors": [
  9380. {
  9381. "name": "Sebastian Bergmann",
  9382. "email": "sebastian@phpunit.de",
  9383. "role": "lead"
  9384. }
  9385. ],
  9386. "description": "The PHP Unit Testing framework.",
  9387. "homepage": "https://phpunit.de/",
  9388. "keywords": [
  9389. "phpunit",
  9390. "testing",
  9391. "xunit"
  9392. ],
  9393. "support": {
  9394. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9395. "source": "https://github.com/sebastianbergmann/phpunit/tree/8.5.17"
  9396. },
  9397. "funding": [
  9398. {
  9399. "url": "https://phpunit.de/donate.html",
  9400. "type": "custom"
  9401. },
  9402. {
  9403. "url": "https://github.com/sebastianbergmann",
  9404. "type": "github"
  9405. }
  9406. ],
  9407. "time": "2021-06-23T05:12:43+00:00"
  9408. },
  9409. {
  9410. "name": "sebastian/code-unit-reverse-lookup",
  9411. "version": "1.0.2",
  9412. "source": {
  9413. "type": "git",
  9414. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9415. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619"
  9416. },
  9417. "dist": {
  9418. "type": "zip",
  9419. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  9420. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  9421. "shasum": "",
  9422. "mirrors": [
  9423. {
  9424. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9425. "preferred": true
  9426. }
  9427. ]
  9428. },
  9429. "require": {
  9430. "php": ">=5.6"
  9431. },
  9432. "require-dev": {
  9433. "phpunit/phpunit": "^8.5"
  9434. },
  9435. "type": "library",
  9436. "extra": {
  9437. "branch-alias": {
  9438. "dev-master": "1.0.x-dev"
  9439. }
  9440. },
  9441. "autoload": {
  9442. "classmap": [
  9443. "src/"
  9444. ]
  9445. },
  9446. "notification-url": "https://packagist.org/downloads/",
  9447. "license": [
  9448. "BSD-3-Clause"
  9449. ],
  9450. "authors": [
  9451. {
  9452. "name": "Sebastian Bergmann",
  9453. "email": "sebastian@phpunit.de"
  9454. }
  9455. ],
  9456. "description": "Looks up which function or method a line of code belongs to",
  9457. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9458. "support": {
  9459. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9460. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/1.0.2"
  9461. },
  9462. "funding": [
  9463. {
  9464. "url": "https://github.com/sebastianbergmann",
  9465. "type": "github"
  9466. }
  9467. ],
  9468. "time": "2020-11-30T08:15:22+00:00"
  9469. },
  9470. {
  9471. "name": "sebastian/comparator",
  9472. "version": "3.0.3",
  9473. "source": {
  9474. "type": "git",
  9475. "url": "https://github.com/sebastianbergmann/comparator.git",
  9476. "reference": "1071dfcef776a57013124ff35e1fc41ccd294758"
  9477. },
  9478. "dist": {
  9479. "type": "zip",
  9480. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/1071dfcef776a57013124ff35e1fc41ccd294758",
  9481. "reference": "1071dfcef776a57013124ff35e1fc41ccd294758",
  9482. "shasum": "",
  9483. "mirrors": [
  9484. {
  9485. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9486. "preferred": true
  9487. }
  9488. ]
  9489. },
  9490. "require": {
  9491. "php": ">=7.1",
  9492. "sebastian/diff": "^3.0",
  9493. "sebastian/exporter": "^3.1"
  9494. },
  9495. "require-dev": {
  9496. "phpunit/phpunit": "^8.5"
  9497. },
  9498. "type": "library",
  9499. "extra": {
  9500. "branch-alias": {
  9501. "dev-master": "3.0-dev"
  9502. }
  9503. },
  9504. "autoload": {
  9505. "classmap": [
  9506. "src/"
  9507. ]
  9508. },
  9509. "notification-url": "https://packagist.org/downloads/",
  9510. "license": [
  9511. "BSD-3-Clause"
  9512. ],
  9513. "authors": [
  9514. {
  9515. "name": "Sebastian Bergmann",
  9516. "email": "sebastian@phpunit.de"
  9517. },
  9518. {
  9519. "name": "Jeff Welch",
  9520. "email": "whatthejeff@gmail.com"
  9521. },
  9522. {
  9523. "name": "Volker Dusch",
  9524. "email": "github@wallbash.com"
  9525. },
  9526. {
  9527. "name": "Bernhard Schussek",
  9528. "email": "bschussek@2bepublished.at"
  9529. }
  9530. ],
  9531. "description": "Provides the functionality to compare PHP values for equality",
  9532. "homepage": "https://github.com/sebastianbergmann/comparator",
  9533. "keywords": [
  9534. "comparator",
  9535. "compare",
  9536. "equality"
  9537. ],
  9538. "support": {
  9539. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9540. "source": "https://github.com/sebastianbergmann/comparator/tree/3.0.3"
  9541. },
  9542. "funding": [
  9543. {
  9544. "url": "https://github.com/sebastianbergmann",
  9545. "type": "github"
  9546. }
  9547. ],
  9548. "time": "2020-11-30T08:04:30+00:00"
  9549. },
  9550. {
  9551. "name": "sebastian/diff",
  9552. "version": "3.0.3",
  9553. "source": {
  9554. "type": "git",
  9555. "url": "https://github.com/sebastianbergmann/diff.git",
  9556. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211"
  9557. },
  9558. "dist": {
  9559. "type": "zip",
  9560. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  9561. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  9562. "shasum": "",
  9563. "mirrors": [
  9564. {
  9565. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9566. "preferred": true
  9567. }
  9568. ]
  9569. },
  9570. "require": {
  9571. "php": ">=7.1"
  9572. },
  9573. "require-dev": {
  9574. "phpunit/phpunit": "^7.5 || ^8.0",
  9575. "symfony/process": "^2 || ^3.3 || ^4"
  9576. },
  9577. "type": "library",
  9578. "extra": {
  9579. "branch-alias": {
  9580. "dev-master": "3.0-dev"
  9581. }
  9582. },
  9583. "autoload": {
  9584. "classmap": [
  9585. "src/"
  9586. ]
  9587. },
  9588. "notification-url": "https://packagist.org/downloads/",
  9589. "license": [
  9590. "BSD-3-Clause"
  9591. ],
  9592. "authors": [
  9593. {
  9594. "name": "Sebastian Bergmann",
  9595. "email": "sebastian@phpunit.de"
  9596. },
  9597. {
  9598. "name": "Kore Nordmann",
  9599. "email": "mail@kore-nordmann.de"
  9600. }
  9601. ],
  9602. "description": "Diff implementation",
  9603. "homepage": "https://github.com/sebastianbergmann/diff",
  9604. "keywords": [
  9605. "diff",
  9606. "udiff",
  9607. "unidiff",
  9608. "unified diff"
  9609. ],
  9610. "support": {
  9611. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9612. "source": "https://github.com/sebastianbergmann/diff/tree/3.0.3"
  9613. },
  9614. "funding": [
  9615. {
  9616. "url": "https://github.com/sebastianbergmann",
  9617. "type": "github"
  9618. }
  9619. ],
  9620. "time": "2020-11-30T07:59:04+00:00"
  9621. },
  9622. {
  9623. "name": "sebastian/environment",
  9624. "version": "4.2.4",
  9625. "source": {
  9626. "type": "git",
  9627. "url": "https://github.com/sebastianbergmann/environment.git",
  9628. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0"
  9629. },
  9630. "dist": {
  9631. "type": "zip",
  9632. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  9633. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  9634. "shasum": "",
  9635. "mirrors": [
  9636. {
  9637. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9638. "preferred": true
  9639. }
  9640. ]
  9641. },
  9642. "require": {
  9643. "php": ">=7.1"
  9644. },
  9645. "require-dev": {
  9646. "phpunit/phpunit": "^7.5"
  9647. },
  9648. "suggest": {
  9649. "ext-posix": "*"
  9650. },
  9651. "type": "library",
  9652. "extra": {
  9653. "branch-alias": {
  9654. "dev-master": "4.2-dev"
  9655. }
  9656. },
  9657. "autoload": {
  9658. "classmap": [
  9659. "src/"
  9660. ]
  9661. },
  9662. "notification-url": "https://packagist.org/downloads/",
  9663. "license": [
  9664. "BSD-3-Clause"
  9665. ],
  9666. "authors": [
  9667. {
  9668. "name": "Sebastian Bergmann",
  9669. "email": "sebastian@phpunit.de"
  9670. }
  9671. ],
  9672. "description": "Provides functionality to handle HHVM/PHP environments",
  9673. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9674. "keywords": [
  9675. "Xdebug",
  9676. "environment",
  9677. "hhvm"
  9678. ],
  9679. "support": {
  9680. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9681. "source": "https://github.com/sebastianbergmann/environment/tree/4.2.4"
  9682. },
  9683. "funding": [
  9684. {
  9685. "url": "https://github.com/sebastianbergmann",
  9686. "type": "github"
  9687. }
  9688. ],
  9689. "time": "2020-11-30T07:53:42+00:00"
  9690. },
  9691. {
  9692. "name": "sebastian/exporter",
  9693. "version": "3.1.3",
  9694. "source": {
  9695. "type": "git",
  9696. "url": "https://github.com/sebastianbergmann/exporter.git",
  9697. "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e"
  9698. },
  9699. "dist": {
  9700. "type": "zip",
  9701. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/6b853149eab67d4da22291d36f5b0631c0fd856e",
  9702. "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e",
  9703. "shasum": "",
  9704. "mirrors": [
  9705. {
  9706. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9707. "preferred": true
  9708. }
  9709. ]
  9710. },
  9711. "require": {
  9712. "php": ">=7.0",
  9713. "sebastian/recursion-context": "^3.0"
  9714. },
  9715. "require-dev": {
  9716. "ext-mbstring": "*",
  9717. "phpunit/phpunit": "^6.0"
  9718. },
  9719. "type": "library",
  9720. "extra": {
  9721. "branch-alias": {
  9722. "dev-master": "3.1.x-dev"
  9723. }
  9724. },
  9725. "autoload": {
  9726. "classmap": [
  9727. "src/"
  9728. ]
  9729. },
  9730. "notification-url": "https://packagist.org/downloads/",
  9731. "license": [
  9732. "BSD-3-Clause"
  9733. ],
  9734. "authors": [
  9735. {
  9736. "name": "Sebastian Bergmann",
  9737. "email": "sebastian@phpunit.de"
  9738. },
  9739. {
  9740. "name": "Jeff Welch",
  9741. "email": "whatthejeff@gmail.com"
  9742. },
  9743. {
  9744. "name": "Volker Dusch",
  9745. "email": "github@wallbash.com"
  9746. },
  9747. {
  9748. "name": "Adam Harvey",
  9749. "email": "aharvey@php.net"
  9750. },
  9751. {
  9752. "name": "Bernhard Schussek",
  9753. "email": "bschussek@gmail.com"
  9754. }
  9755. ],
  9756. "description": "Provides the functionality to export PHP variables for visualization",
  9757. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  9758. "keywords": [
  9759. "export",
  9760. "exporter"
  9761. ],
  9762. "support": {
  9763. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9764. "source": "https://github.com/sebastianbergmann/exporter/tree/3.1.3"
  9765. },
  9766. "funding": [
  9767. {
  9768. "url": "https://github.com/sebastianbergmann",
  9769. "type": "github"
  9770. }
  9771. ],
  9772. "time": "2020-11-30T07:47:53+00:00"
  9773. },
  9774. {
  9775. "name": "sebastian/global-state",
  9776. "version": "3.0.1",
  9777. "source": {
  9778. "type": "git",
  9779. "url": "https://github.com/sebastianbergmann/global-state.git",
  9780. "reference": "474fb9edb7ab891665d3bfc6317f42a0a150454b"
  9781. },
  9782. "dist": {
  9783. "type": "zip",
  9784. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/474fb9edb7ab891665d3bfc6317f42a0a150454b",
  9785. "reference": "474fb9edb7ab891665d3bfc6317f42a0a150454b",
  9786. "shasum": "",
  9787. "mirrors": [
  9788. {
  9789. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9790. "preferred": true
  9791. }
  9792. ]
  9793. },
  9794. "require": {
  9795. "php": ">=7.2",
  9796. "sebastian/object-reflector": "^1.1.1",
  9797. "sebastian/recursion-context": "^3.0"
  9798. },
  9799. "require-dev": {
  9800. "ext-dom": "*",
  9801. "phpunit/phpunit": "^8.0"
  9802. },
  9803. "suggest": {
  9804. "ext-uopz": "*"
  9805. },
  9806. "type": "library",
  9807. "extra": {
  9808. "branch-alias": {
  9809. "dev-master": "3.0-dev"
  9810. }
  9811. },
  9812. "autoload": {
  9813. "classmap": [
  9814. "src/"
  9815. ]
  9816. },
  9817. "notification-url": "https://packagist.org/downloads/",
  9818. "license": [
  9819. "BSD-3-Clause"
  9820. ],
  9821. "authors": [
  9822. {
  9823. "name": "Sebastian Bergmann",
  9824. "email": "sebastian@phpunit.de"
  9825. }
  9826. ],
  9827. "description": "Snapshotting of global state",
  9828. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  9829. "keywords": [
  9830. "global state"
  9831. ],
  9832. "support": {
  9833. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9834. "source": "https://github.com/sebastianbergmann/global-state/tree/3.0.1"
  9835. },
  9836. "funding": [
  9837. {
  9838. "url": "https://github.com/sebastianbergmann",
  9839. "type": "github"
  9840. }
  9841. ],
  9842. "time": "2020-11-30T07:43:24+00:00"
  9843. },
  9844. {
  9845. "name": "sebastian/object-enumerator",
  9846. "version": "3.0.4",
  9847. "source": {
  9848. "type": "git",
  9849. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9850. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2"
  9851. },
  9852. "dist": {
  9853. "type": "zip",
  9854. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  9855. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  9856. "shasum": "",
  9857. "mirrors": [
  9858. {
  9859. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9860. "preferred": true
  9861. }
  9862. ]
  9863. },
  9864. "require": {
  9865. "php": ">=7.0",
  9866. "sebastian/object-reflector": "^1.1.1",
  9867. "sebastian/recursion-context": "^3.0"
  9868. },
  9869. "require-dev": {
  9870. "phpunit/phpunit": "^6.0"
  9871. },
  9872. "type": "library",
  9873. "extra": {
  9874. "branch-alias": {
  9875. "dev-master": "3.0.x-dev"
  9876. }
  9877. },
  9878. "autoload": {
  9879. "classmap": [
  9880. "src/"
  9881. ]
  9882. },
  9883. "notification-url": "https://packagist.org/downloads/",
  9884. "license": [
  9885. "BSD-3-Clause"
  9886. ],
  9887. "authors": [
  9888. {
  9889. "name": "Sebastian Bergmann",
  9890. "email": "sebastian@phpunit.de"
  9891. }
  9892. ],
  9893. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9894. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9895. "support": {
  9896. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9897. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/3.0.4"
  9898. },
  9899. "funding": [
  9900. {
  9901. "url": "https://github.com/sebastianbergmann",
  9902. "type": "github"
  9903. }
  9904. ],
  9905. "time": "2020-11-30T07:40:27+00:00"
  9906. },
  9907. {
  9908. "name": "sebastian/object-reflector",
  9909. "version": "1.1.2",
  9910. "source": {
  9911. "type": "git",
  9912. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9913. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d"
  9914. },
  9915. "dist": {
  9916. "type": "zip",
  9917. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  9918. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  9919. "shasum": "",
  9920. "mirrors": [
  9921. {
  9922. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9923. "preferred": true
  9924. }
  9925. ]
  9926. },
  9927. "require": {
  9928. "php": ">=7.0"
  9929. },
  9930. "require-dev": {
  9931. "phpunit/phpunit": "^6.0"
  9932. },
  9933. "type": "library",
  9934. "extra": {
  9935. "branch-alias": {
  9936. "dev-master": "1.1-dev"
  9937. }
  9938. },
  9939. "autoload": {
  9940. "classmap": [
  9941. "src/"
  9942. ]
  9943. },
  9944. "notification-url": "https://packagist.org/downloads/",
  9945. "license": [
  9946. "BSD-3-Clause"
  9947. ],
  9948. "authors": [
  9949. {
  9950. "name": "Sebastian Bergmann",
  9951. "email": "sebastian@phpunit.de"
  9952. }
  9953. ],
  9954. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9955. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9956. "support": {
  9957. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9958. "source": "https://github.com/sebastianbergmann/object-reflector/tree/1.1.2"
  9959. },
  9960. "funding": [
  9961. {
  9962. "url": "https://github.com/sebastianbergmann",
  9963. "type": "github"
  9964. }
  9965. ],
  9966. "time": "2020-11-30T07:37:18+00:00"
  9967. },
  9968. {
  9969. "name": "sebastian/recursion-context",
  9970. "version": "3.0.1",
  9971. "source": {
  9972. "type": "git",
  9973. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9974. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb"
  9975. },
  9976. "dist": {
  9977. "type": "zip",
  9978. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/367dcba38d6e1977be014dc4b22f47a484dac7fb",
  9979. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb",
  9980. "shasum": "",
  9981. "mirrors": [
  9982. {
  9983. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9984. "preferred": true
  9985. }
  9986. ]
  9987. },
  9988. "require": {
  9989. "php": ">=7.0"
  9990. },
  9991. "require-dev": {
  9992. "phpunit/phpunit": "^6.0"
  9993. },
  9994. "type": "library",
  9995. "extra": {
  9996. "branch-alias": {
  9997. "dev-master": "3.0.x-dev"
  9998. }
  9999. },
  10000. "autoload": {
  10001. "classmap": [
  10002. "src/"
  10003. ]
  10004. },
  10005. "notification-url": "https://packagist.org/downloads/",
  10006. "license": [
  10007. "BSD-3-Clause"
  10008. ],
  10009. "authors": [
  10010. {
  10011. "name": "Sebastian Bergmann",
  10012. "email": "sebastian@phpunit.de"
  10013. },
  10014. {
  10015. "name": "Jeff Welch",
  10016. "email": "whatthejeff@gmail.com"
  10017. },
  10018. {
  10019. "name": "Adam Harvey",
  10020. "email": "aharvey@php.net"
  10021. }
  10022. ],
  10023. "description": "Provides functionality to recursively process PHP variables",
  10024. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  10025. "support": {
  10026. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10027. "source": "https://github.com/sebastianbergmann/recursion-context/tree/3.0.1"
  10028. },
  10029. "funding": [
  10030. {
  10031. "url": "https://github.com/sebastianbergmann",
  10032. "type": "github"
  10033. }
  10034. ],
  10035. "time": "2020-11-30T07:34:24+00:00"
  10036. },
  10037. {
  10038. "name": "sebastian/resource-operations",
  10039. "version": "2.0.2",
  10040. "source": {
  10041. "type": "git",
  10042. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  10043. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3"
  10044. },
  10045. "dist": {
  10046. "type": "zip",
  10047. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  10048. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  10049. "shasum": "",
  10050. "mirrors": [
  10051. {
  10052. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10053. "preferred": true
  10054. }
  10055. ]
  10056. },
  10057. "require": {
  10058. "php": ">=7.1"
  10059. },
  10060. "type": "library",
  10061. "extra": {
  10062. "branch-alias": {
  10063. "dev-master": "2.0-dev"
  10064. }
  10065. },
  10066. "autoload": {
  10067. "classmap": [
  10068. "src/"
  10069. ]
  10070. },
  10071. "notification-url": "https://packagist.org/downloads/",
  10072. "license": [
  10073. "BSD-3-Clause"
  10074. ],
  10075. "authors": [
  10076. {
  10077. "name": "Sebastian Bergmann",
  10078. "email": "sebastian@phpunit.de"
  10079. }
  10080. ],
  10081. "description": "Provides a list of PHP built-in functions that operate on resources",
  10082. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  10083. "support": {
  10084. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  10085. "source": "https://github.com/sebastianbergmann/resource-operations/tree/2.0.2"
  10086. },
  10087. "funding": [
  10088. {
  10089. "url": "https://github.com/sebastianbergmann",
  10090. "type": "github"
  10091. }
  10092. ],
  10093. "time": "2020-11-30T07:30:19+00:00"
  10094. },
  10095. {
  10096. "name": "sebastian/type",
  10097. "version": "1.1.4",
  10098. "source": {
  10099. "type": "git",
  10100. "url": "https://github.com/sebastianbergmann/type.git",
  10101. "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4"
  10102. },
  10103. "dist": {
  10104. "type": "zip",
  10105. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/0150cfbc4495ed2df3872fb31b26781e4e077eb4",
  10106. "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4",
  10107. "shasum": "",
  10108. "mirrors": [
  10109. {
  10110. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10111. "preferred": true
  10112. }
  10113. ]
  10114. },
  10115. "require": {
  10116. "php": ">=7.2"
  10117. },
  10118. "require-dev": {
  10119. "phpunit/phpunit": "^8.2"
  10120. },
  10121. "type": "library",
  10122. "extra": {
  10123. "branch-alias": {
  10124. "dev-master": "1.1-dev"
  10125. }
  10126. },
  10127. "autoload": {
  10128. "classmap": [
  10129. "src/"
  10130. ]
  10131. },
  10132. "notification-url": "https://packagist.org/downloads/",
  10133. "license": [
  10134. "BSD-3-Clause"
  10135. ],
  10136. "authors": [
  10137. {
  10138. "name": "Sebastian Bergmann",
  10139. "email": "sebastian@phpunit.de",
  10140. "role": "lead"
  10141. }
  10142. ],
  10143. "description": "Collection of value objects that represent the types of the PHP type system",
  10144. "homepage": "https://github.com/sebastianbergmann/type",
  10145. "support": {
  10146. "issues": "https://github.com/sebastianbergmann/type/issues",
  10147. "source": "https://github.com/sebastianbergmann/type/tree/1.1.4"
  10148. },
  10149. "funding": [
  10150. {
  10151. "url": "https://github.com/sebastianbergmann",
  10152. "type": "github"
  10153. }
  10154. ],
  10155. "time": "2020-11-30T07:25:11+00:00"
  10156. },
  10157. {
  10158. "name": "sebastian/version",
  10159. "version": "2.0.1",
  10160. "source": {
  10161. "type": "git",
  10162. "url": "https://github.com/sebastianbergmann/version.git",
  10163. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  10164. },
  10165. "dist": {
  10166. "type": "zip",
  10167. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  10168. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  10169. "shasum": "",
  10170. "mirrors": [
  10171. {
  10172. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10173. "preferred": true
  10174. }
  10175. ]
  10176. },
  10177. "require": {
  10178. "php": ">=5.6"
  10179. },
  10180. "type": "library",
  10181. "extra": {
  10182. "branch-alias": {
  10183. "dev-master": "2.0.x-dev"
  10184. }
  10185. },
  10186. "autoload": {
  10187. "classmap": [
  10188. "src/"
  10189. ]
  10190. },
  10191. "notification-url": "https://packagist.org/downloads/",
  10192. "license": [
  10193. "BSD-3-Clause"
  10194. ],
  10195. "authors": [
  10196. {
  10197. "name": "Sebastian Bergmann",
  10198. "email": "sebastian@phpunit.de",
  10199. "role": "lead"
  10200. }
  10201. ],
  10202. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10203. "homepage": "https://github.com/sebastianbergmann/version",
  10204. "support": {
  10205. "issues": "https://github.com/sebastianbergmann/version/issues",
  10206. "source": "https://github.com/sebastianbergmann/version/tree/master"
  10207. },
  10208. "time": "2016-10-03T07:35:21+00:00"
  10209. },
  10210. {
  10211. "name": "symfony/debug",
  10212. "version": "v4.4.25",
  10213. "source": {
  10214. "type": "git",
  10215. "url": "https://github.com/symfony/debug.git",
  10216. "reference": "a8d2d5c94438548bff9f998ca874e202bb29d07f"
  10217. },
  10218. "dist": {
  10219. "type": "zip",
  10220. "url": "https://api.github.com/repos/symfony/debug/zipball/a8d2d5c94438548bff9f998ca874e202bb29d07f",
  10221. "reference": "a8d2d5c94438548bff9f998ca874e202bb29d07f",
  10222. "shasum": "",
  10223. "mirrors": [
  10224. {
  10225. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10226. "preferred": true
  10227. }
  10228. ]
  10229. },
  10230. "require": {
  10231. "php": ">=7.1.3",
  10232. "psr/log": "~1.0",
  10233. "symfony/polyfill-php80": "^1.15"
  10234. },
  10235. "conflict": {
  10236. "symfony/http-kernel": "<3.4"
  10237. },
  10238. "require-dev": {
  10239. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  10240. },
  10241. "type": "library",
  10242. "autoload": {
  10243. "psr-4": {
  10244. "Symfony\\Component\\Debug\\": ""
  10245. },
  10246. "exclude-from-classmap": [
  10247. "/Tests/"
  10248. ]
  10249. },
  10250. "notification-url": "https://packagist.org/downloads/",
  10251. "license": [
  10252. "MIT"
  10253. ],
  10254. "authors": [
  10255. {
  10256. "name": "Fabien Potencier",
  10257. "email": "fabien@symfony.com"
  10258. },
  10259. {
  10260. "name": "Symfony Community",
  10261. "homepage": "https://symfony.com/contributors"
  10262. }
  10263. ],
  10264. "description": "Provides tools to ease debugging PHP code",
  10265. "homepage": "https://symfony.com",
  10266. "support": {
  10267. "source": "https://github.com/symfony/debug/tree/v4.4.25"
  10268. },
  10269. "funding": [
  10270. {
  10271. "url": "https://symfony.com/sponsor",
  10272. "type": "custom"
  10273. },
  10274. {
  10275. "url": "https://github.com/fabpot",
  10276. "type": "github"
  10277. },
  10278. {
  10279. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10280. "type": "tidelift"
  10281. }
  10282. ],
  10283. "time": "2021-05-26T17:39:37+00:00"
  10284. },
  10285. {
  10286. "name": "theseer/tokenizer",
  10287. "version": "1.2.0",
  10288. "source": {
  10289. "type": "git",
  10290. "url": "https://github.com/theseer/tokenizer.git",
  10291. "reference": "75a63c33a8577608444246075ea0af0d052e452a"
  10292. },
  10293. "dist": {
  10294. "type": "zip",
  10295. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a",
  10296. "reference": "75a63c33a8577608444246075ea0af0d052e452a",
  10297. "shasum": "",
  10298. "mirrors": [
  10299. {
  10300. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10301. "preferred": true
  10302. }
  10303. ]
  10304. },
  10305. "require": {
  10306. "ext-dom": "*",
  10307. "ext-tokenizer": "*",
  10308. "ext-xmlwriter": "*",
  10309. "php": "^7.2 || ^8.0"
  10310. },
  10311. "type": "library",
  10312. "autoload": {
  10313. "classmap": [
  10314. "src/"
  10315. ]
  10316. },
  10317. "notification-url": "https://packagist.org/downloads/",
  10318. "license": [
  10319. "BSD-3-Clause"
  10320. ],
  10321. "authors": [
  10322. {
  10323. "name": "Arne Blankerts",
  10324. "email": "arne@blankerts.de",
  10325. "role": "Developer"
  10326. }
  10327. ],
  10328. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10329. "support": {
  10330. "issues": "https://github.com/theseer/tokenizer/issues",
  10331. "source": "https://github.com/theseer/tokenizer/tree/master"
  10332. },
  10333. "funding": [
  10334. {
  10335. "url": "https://github.com/theseer",
  10336. "type": "github"
  10337. }
  10338. ],
  10339. "time": "2020-07-12T23:59:07+00:00"
  10340. },
  10341. {
  10342. "name": "webmozart/assert",
  10343. "version": "1.10.0",
  10344. "source": {
  10345. "type": "git",
  10346. "url": "https://github.com/webmozarts/assert.git",
  10347. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
  10348. },
  10349. "dist": {
  10350. "type": "zip",
  10351. "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
  10352. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
  10353. "shasum": "",
  10354. "mirrors": [
  10355. {
  10356. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10357. "preferred": true
  10358. }
  10359. ]
  10360. },
  10361. "require": {
  10362. "php": "^7.2 || ^8.0",
  10363. "symfony/polyfill-ctype": "^1.8"
  10364. },
  10365. "conflict": {
  10366. "phpstan/phpstan": "<0.12.20",
  10367. "vimeo/psalm": "<4.6.1 || 4.6.2"
  10368. },
  10369. "require-dev": {
  10370. "phpunit/phpunit": "^8.5.13"
  10371. },
  10372. "type": "library",
  10373. "extra": {
  10374. "branch-alias": {
  10375. "dev-master": "1.10-dev"
  10376. }
  10377. },
  10378. "autoload": {
  10379. "psr-4": {
  10380. "Webmozart\\Assert\\": "src/"
  10381. }
  10382. },
  10383. "notification-url": "https://packagist.org/downloads/",
  10384. "license": [
  10385. "MIT"
  10386. ],
  10387. "authors": [
  10388. {
  10389. "name": "Bernhard Schussek",
  10390. "email": "bschussek@gmail.com"
  10391. }
  10392. ],
  10393. "description": "Assertions to validate method input/output with nice error messages.",
  10394. "keywords": [
  10395. "assert",
  10396. "check",
  10397. "validate"
  10398. ],
  10399. "support": {
  10400. "issues": "https://github.com/webmozarts/assert/issues",
  10401. "source": "https://github.com/webmozarts/assert/tree/1.10.0"
  10402. },
  10403. "time": "2021-03-09T10:59:23+00:00"
  10404. }
  10405. ],
  10406. "aliases": [],
  10407. "minimum-stability": "dev",
  10408. "stability-flags": [],
  10409. "prefer-stable": true,
  10410. "prefer-lowest": false,
  10411. "platform": {
  10412. "php": "^7.2.14",
  10413. "ext-bcmath": "*",
  10414. "ext-json": "*",
  10415. "ext-mbstring": "*",
  10416. "ext-openssl": "*",
  10417. "ext-pdo": "*"
  10418. },
  10419. "platform-dev": [],
  10420. "platform-overrides": {
  10421. "ext-pcntl": "7.2",
  10422. "ext-posix": "7.2"
  10423. },
  10424. "plugin-api-version": "2.1.0"
  10425. }