composer.lock 379 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530
  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": "5dc450e032b783ab6f83fb3d7348eb9e",
  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.3",
  71. "source": {
  72. "type": "git",
  73. "url": "https://github.com/brick/math.git",
  74. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae"
  75. },
  76. "dist": {
  77. "type": "zip",
  78. "url": "https://api.github.com/repos/brick/math/zipball/ca57d18f028f84f777b2168cd1911b0dee2343ae",
  79. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae",
  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.9.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.3"
  121. },
  122. "funding": [
  123. {
  124. "url": "https://github.com/BenMorel",
  125. "type": "github"
  126. },
  127. {
  128. "url": "https://tidelift.com/funding/github/packagist/brick/math",
  129. "type": "tidelift"
  130. }
  131. ],
  132. "time": "2021-08-15T20:50:18+00:00"
  133. },
  134. {
  135. "name": "cakephp/chronos",
  136. "version": "2.2.0",
  137. "source": {
  138. "type": "git",
  139. "url": "https://github.com/cakephp/chronos.git",
  140. "reference": "556e14da67307ffc2e68beeb7df0694dc8d1207d"
  141. },
  142. "dist": {
  143. "type": "zip",
  144. "url": "https://api.github.com/repos/cakephp/chronos/zipball/556e14da67307ffc2e68beeb7df0694dc8d1207d",
  145. "reference": "556e14da67307ffc2e68beeb7df0694dc8d1207d",
  146. "shasum": "",
  147. "mirrors": [
  148. {
  149. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  150. "preferred": true
  151. }
  152. ]
  153. },
  154. "require": {
  155. "php": ">=7.2"
  156. },
  157. "require-dev": {
  158. "cakephp/cakephp-codesniffer": "^4.5",
  159. "phpunit/phpunit": "^8.0 || ^9.0"
  160. },
  161. "type": "library",
  162. "autoload": {
  163. "psr-4": {
  164. "Cake\\Chronos\\": "src/"
  165. },
  166. "files": [
  167. "src/carbon_compat.php"
  168. ]
  169. },
  170. "notification-url": "https://packagist.org/downloads/",
  171. "license": [
  172. "MIT"
  173. ],
  174. "authors": [
  175. {
  176. "name": "Brian Nesbitt",
  177. "email": "brian@nesbot.com",
  178. "homepage": "http://nesbot.com"
  179. },
  180. {
  181. "name": "The CakePHP Team",
  182. "homepage": "http://cakephp.org"
  183. }
  184. ],
  185. "description": "A simple API extension for DateTime.",
  186. "homepage": "http://cakephp.org",
  187. "keywords": [
  188. "date",
  189. "datetime",
  190. "time"
  191. ],
  192. "support": {
  193. "irc": "irc://irc.freenode.org/cakephp",
  194. "issues": "https://github.com/cakephp/chronos/issues",
  195. "source": "https://github.com/cakephp/chronos"
  196. },
  197. "time": "2021-06-17T13:49:10+00:00"
  198. },
  199. {
  200. "name": "dasprid/enum",
  201. "version": "1.0.3",
  202. "source": {
  203. "type": "git",
  204. "url": "https://github.com/DASPRiD/Enum.git",
  205. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2"
  206. },
  207. "dist": {
  208. "type": "zip",
  209. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/5abf82f213618696dda8e3bf6f64dd042d8542b2",
  210. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2",
  211. "shasum": "",
  212. "mirrors": [
  213. {
  214. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  215. "preferred": true
  216. }
  217. ]
  218. },
  219. "require-dev": {
  220. "phpunit/phpunit": "^7 | ^8 | ^9",
  221. "squizlabs/php_codesniffer": "^3.4"
  222. },
  223. "type": "library",
  224. "autoload": {
  225. "psr-4": {
  226. "DASPRiD\\Enum\\": "src/"
  227. }
  228. },
  229. "notification-url": "https://packagist.org/downloads/",
  230. "license": [
  231. "BSD-2-Clause"
  232. ],
  233. "authors": [
  234. {
  235. "name": "Ben Scholzen 'DASPRiD'",
  236. "email": "mail@dasprids.de",
  237. "homepage": "https://dasprids.de/",
  238. "role": "Developer"
  239. }
  240. ],
  241. "description": "PHP 7.1 enum implementation",
  242. "keywords": [
  243. "enum",
  244. "map"
  245. ],
  246. "support": {
  247. "issues": "https://github.com/DASPRiD/Enum/issues",
  248. "source": "https://github.com/DASPRiD/Enum/tree/1.0.3"
  249. },
  250. "time": "2020-10-02T16:03:48+00:00"
  251. },
  252. {
  253. "name": "doctrine/cache",
  254. "version": "2.1.1",
  255. "source": {
  256. "type": "git",
  257. "url": "https://github.com/doctrine/cache.git",
  258. "reference": "331b4d5dbaeab3827976273e9356b3b453c300ce"
  259. },
  260. "dist": {
  261. "type": "zip",
  262. "url": "https://api.github.com/repos/doctrine/cache/zipball/331b4d5dbaeab3827976273e9356b3b453c300ce",
  263. "reference": "331b4d5dbaeab3827976273e9356b3b453c300ce",
  264. "shasum": "",
  265. "mirrors": [
  266. {
  267. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  268. "preferred": true
  269. }
  270. ]
  271. },
  272. "require": {
  273. "php": "~7.1 || ^8.0"
  274. },
  275. "conflict": {
  276. "doctrine/common": ">2.2,<2.4"
  277. },
  278. "require-dev": {
  279. "alcaeus/mongo-php-adapter": "^1.1",
  280. "cache/integration-tests": "dev-master",
  281. "doctrine/coding-standard": "^8.0",
  282. "mongodb/mongodb": "^1.1",
  283. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  284. "predis/predis": "~1.0",
  285. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  286. "symfony/cache": "^4.4 || ^5.2 || ^6.0@dev",
  287. "symfony/var-exporter": "^4.4 || ^5.2 || ^6.0@dev"
  288. },
  289. "suggest": {
  290. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  291. },
  292. "type": "library",
  293. "autoload": {
  294. "psr-4": {
  295. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  296. }
  297. },
  298. "notification-url": "https://packagist.org/downloads/",
  299. "license": [
  300. "MIT"
  301. ],
  302. "authors": [
  303. {
  304. "name": "Guilherme Blanco",
  305. "email": "guilhermeblanco@gmail.com"
  306. },
  307. {
  308. "name": "Roman Borschel",
  309. "email": "roman@code-factory.org"
  310. },
  311. {
  312. "name": "Benjamin Eberlei",
  313. "email": "kontakt@beberlei.de"
  314. },
  315. {
  316. "name": "Jonathan Wage",
  317. "email": "jonwage@gmail.com"
  318. },
  319. {
  320. "name": "Johannes Schmitt",
  321. "email": "schmittjoh@gmail.com"
  322. }
  323. ],
  324. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  325. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  326. "keywords": [
  327. "abstraction",
  328. "apcu",
  329. "cache",
  330. "caching",
  331. "couchdb",
  332. "memcached",
  333. "php",
  334. "redis",
  335. "xcache"
  336. ],
  337. "support": {
  338. "issues": "https://github.com/doctrine/cache/issues",
  339. "source": "https://github.com/doctrine/cache/tree/2.1.1"
  340. },
  341. "funding": [
  342. {
  343. "url": "https://www.doctrine-project.org/sponsorship.html",
  344. "type": "custom"
  345. },
  346. {
  347. "url": "https://www.patreon.com/phpdoctrine",
  348. "type": "patreon"
  349. },
  350. {
  351. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  352. "type": "tidelift"
  353. }
  354. ],
  355. "time": "2021-07-17T14:49:29+00:00"
  356. },
  357. {
  358. "name": "doctrine/dbal",
  359. "version": "2.13.4",
  360. "source": {
  361. "type": "git",
  362. "url": "https://github.com/doctrine/dbal.git",
  363. "reference": "2411a55a2a628e6d8dd598388ab13474802c7b6e"
  364. },
  365. "dist": {
  366. "type": "zip",
  367. "url": "https://api.github.com/repos/doctrine/dbal/zipball/2411a55a2a628e6d8dd598388ab13474802c7b6e",
  368. "reference": "2411a55a2a628e6d8dd598388ab13474802c7b6e",
  369. "shasum": "",
  370. "mirrors": [
  371. {
  372. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  373. "preferred": true
  374. }
  375. ]
  376. },
  377. "require": {
  378. "doctrine/cache": "^1.0|^2.0",
  379. "doctrine/deprecations": "^0.5.3",
  380. "doctrine/event-manager": "^1.0",
  381. "ext-pdo": "*",
  382. "php": "^7.1 || ^8"
  383. },
  384. "require-dev": {
  385. "doctrine/coding-standard": "9.0.0",
  386. "jetbrains/phpstorm-stubs": "2021.1",
  387. "phpstan/phpstan": "0.12.99",
  388. "phpunit/phpunit": "^7.5.20|^8.5|9.5.10",
  389. "psalm/plugin-phpunit": "0.16.1",
  390. "squizlabs/php_codesniffer": "3.6.0",
  391. "symfony/cache": "^4.4",
  392. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
  393. "vimeo/psalm": "4.10.0"
  394. },
  395. "suggest": {
  396. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  397. },
  398. "bin": [
  399. "bin/doctrine-dbal"
  400. ],
  401. "type": "library",
  402. "autoload": {
  403. "psr-4": {
  404. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  405. }
  406. },
  407. "notification-url": "https://packagist.org/downloads/",
  408. "license": [
  409. "MIT"
  410. ],
  411. "authors": [
  412. {
  413. "name": "Guilherme Blanco",
  414. "email": "guilhermeblanco@gmail.com"
  415. },
  416. {
  417. "name": "Roman Borschel",
  418. "email": "roman@code-factory.org"
  419. },
  420. {
  421. "name": "Benjamin Eberlei",
  422. "email": "kontakt@beberlei.de"
  423. },
  424. {
  425. "name": "Jonathan Wage",
  426. "email": "jonwage@gmail.com"
  427. }
  428. ],
  429. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  430. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  431. "keywords": [
  432. "abstraction",
  433. "database",
  434. "db2",
  435. "dbal",
  436. "mariadb",
  437. "mssql",
  438. "mysql",
  439. "oci8",
  440. "oracle",
  441. "pdo",
  442. "pgsql",
  443. "postgresql",
  444. "queryobject",
  445. "sasql",
  446. "sql",
  447. "sqlanywhere",
  448. "sqlite",
  449. "sqlserver",
  450. "sqlsrv"
  451. ],
  452. "support": {
  453. "issues": "https://github.com/doctrine/dbal/issues",
  454. "source": "https://github.com/doctrine/dbal/tree/2.13.4"
  455. },
  456. "funding": [
  457. {
  458. "url": "https://www.doctrine-project.org/sponsorship.html",
  459. "type": "custom"
  460. },
  461. {
  462. "url": "https://www.patreon.com/phpdoctrine",
  463. "type": "patreon"
  464. },
  465. {
  466. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  467. "type": "tidelift"
  468. }
  469. ],
  470. "time": "2021-10-02T15:59:26+00:00"
  471. },
  472. {
  473. "name": "doctrine/deprecations",
  474. "version": "v0.5.3",
  475. "source": {
  476. "type": "git",
  477. "url": "https://github.com/doctrine/deprecations.git",
  478. "reference": "9504165960a1f83cc1480e2be1dd0a0478561314"
  479. },
  480. "dist": {
  481. "type": "zip",
  482. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/9504165960a1f83cc1480e2be1dd0a0478561314",
  483. "reference": "9504165960a1f83cc1480e2be1dd0a0478561314",
  484. "shasum": "",
  485. "mirrors": [
  486. {
  487. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  488. "preferred": true
  489. }
  490. ]
  491. },
  492. "require": {
  493. "php": "^7.1|^8.0"
  494. },
  495. "require-dev": {
  496. "doctrine/coding-standard": "^6.0|^7.0|^8.0",
  497. "phpunit/phpunit": "^7.0|^8.0|^9.0",
  498. "psr/log": "^1.0"
  499. },
  500. "suggest": {
  501. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  502. },
  503. "type": "library",
  504. "autoload": {
  505. "psr-4": {
  506. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  507. }
  508. },
  509. "notification-url": "https://packagist.org/downloads/",
  510. "license": [
  511. "MIT"
  512. ],
  513. "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.",
  514. "homepage": "https://www.doctrine-project.org/",
  515. "support": {
  516. "issues": "https://github.com/doctrine/deprecations/issues",
  517. "source": "https://github.com/doctrine/deprecations/tree/v0.5.3"
  518. },
  519. "time": "2021-03-21T12:59:47+00:00"
  520. },
  521. {
  522. "name": "doctrine/event-manager",
  523. "version": "1.1.1",
  524. "source": {
  525. "type": "git",
  526. "url": "https://github.com/doctrine/event-manager.git",
  527. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  528. },
  529. "dist": {
  530. "type": "zip",
  531. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  532. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  533. "shasum": "",
  534. "mirrors": [
  535. {
  536. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  537. "preferred": true
  538. }
  539. ]
  540. },
  541. "require": {
  542. "php": "^7.1 || ^8.0"
  543. },
  544. "conflict": {
  545. "doctrine/common": "<2.9@dev"
  546. },
  547. "require-dev": {
  548. "doctrine/coding-standard": "^6.0",
  549. "phpunit/phpunit": "^7.0"
  550. },
  551. "type": "library",
  552. "extra": {
  553. "branch-alias": {
  554. "dev-master": "1.0.x-dev"
  555. }
  556. },
  557. "autoload": {
  558. "psr-4": {
  559. "Doctrine\\Common\\": "lib/Doctrine/Common"
  560. }
  561. },
  562. "notification-url": "https://packagist.org/downloads/",
  563. "license": [
  564. "MIT"
  565. ],
  566. "authors": [
  567. {
  568. "name": "Guilherme Blanco",
  569. "email": "guilhermeblanco@gmail.com"
  570. },
  571. {
  572. "name": "Roman Borschel",
  573. "email": "roman@code-factory.org"
  574. },
  575. {
  576. "name": "Benjamin Eberlei",
  577. "email": "kontakt@beberlei.de"
  578. },
  579. {
  580. "name": "Jonathan Wage",
  581. "email": "jonwage@gmail.com"
  582. },
  583. {
  584. "name": "Johannes Schmitt",
  585. "email": "schmittjoh@gmail.com"
  586. },
  587. {
  588. "name": "Marco Pivetta",
  589. "email": "ocramius@gmail.com"
  590. }
  591. ],
  592. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  593. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  594. "keywords": [
  595. "event",
  596. "event dispatcher",
  597. "event manager",
  598. "event system",
  599. "events"
  600. ],
  601. "support": {
  602. "issues": "https://github.com/doctrine/event-manager/issues",
  603. "source": "https://github.com/doctrine/event-manager/tree/1.1.x"
  604. },
  605. "funding": [
  606. {
  607. "url": "https://www.doctrine-project.org/sponsorship.html",
  608. "type": "custom"
  609. },
  610. {
  611. "url": "https://www.patreon.com/phpdoctrine",
  612. "type": "patreon"
  613. },
  614. {
  615. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  616. "type": "tidelift"
  617. }
  618. ],
  619. "time": "2020-05-29T18:28:51+00:00"
  620. },
  621. {
  622. "name": "doctrine/inflector",
  623. "version": "2.0.3",
  624. "source": {
  625. "type": "git",
  626. "url": "https://github.com/doctrine/inflector.git",
  627. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210"
  628. },
  629. "dist": {
  630. "type": "zip",
  631. "url": "https://api.github.com/repos/doctrine/inflector/zipball/9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  632. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  633. "shasum": "",
  634. "mirrors": [
  635. {
  636. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  637. "preferred": true
  638. }
  639. ]
  640. },
  641. "require": {
  642. "php": "^7.2 || ^8.0"
  643. },
  644. "require-dev": {
  645. "doctrine/coding-standard": "^7.0",
  646. "phpstan/phpstan": "^0.11",
  647. "phpstan/phpstan-phpunit": "^0.11",
  648. "phpstan/phpstan-strict-rules": "^0.11",
  649. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  650. },
  651. "type": "library",
  652. "extra": {
  653. "branch-alias": {
  654. "dev-master": "2.0.x-dev"
  655. }
  656. },
  657. "autoload": {
  658. "psr-4": {
  659. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  660. }
  661. },
  662. "notification-url": "https://packagist.org/downloads/",
  663. "license": [
  664. "MIT"
  665. ],
  666. "authors": [
  667. {
  668. "name": "Guilherme Blanco",
  669. "email": "guilhermeblanco@gmail.com"
  670. },
  671. {
  672. "name": "Roman Borschel",
  673. "email": "roman@code-factory.org"
  674. },
  675. {
  676. "name": "Benjamin Eberlei",
  677. "email": "kontakt@beberlei.de"
  678. },
  679. {
  680. "name": "Jonathan Wage",
  681. "email": "jonwage@gmail.com"
  682. },
  683. {
  684. "name": "Johannes Schmitt",
  685. "email": "schmittjoh@gmail.com"
  686. }
  687. ],
  688. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  689. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  690. "keywords": [
  691. "inflection",
  692. "inflector",
  693. "lowercase",
  694. "manipulation",
  695. "php",
  696. "plural",
  697. "singular",
  698. "strings",
  699. "uppercase",
  700. "words"
  701. ],
  702. "support": {
  703. "issues": "https://github.com/doctrine/inflector/issues",
  704. "source": "https://github.com/doctrine/inflector/tree/2.0.x"
  705. },
  706. "funding": [
  707. {
  708. "url": "https://www.doctrine-project.org/sponsorship.html",
  709. "type": "custom"
  710. },
  711. {
  712. "url": "https://www.patreon.com/phpdoctrine",
  713. "type": "patreon"
  714. },
  715. {
  716. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  717. "type": "tidelift"
  718. }
  719. ],
  720. "time": "2020-05-29T15:13:26+00:00"
  721. },
  722. {
  723. "name": "doctrine/lexer",
  724. "version": "1.2.1",
  725. "source": {
  726. "type": "git",
  727. "url": "https://github.com/doctrine/lexer.git",
  728. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  729. },
  730. "dist": {
  731. "type": "zip",
  732. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  733. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  734. "shasum": "",
  735. "mirrors": [
  736. {
  737. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  738. "preferred": true
  739. }
  740. ]
  741. },
  742. "require": {
  743. "php": "^7.2 || ^8.0"
  744. },
  745. "require-dev": {
  746. "doctrine/coding-standard": "^6.0",
  747. "phpstan/phpstan": "^0.11.8",
  748. "phpunit/phpunit": "^8.2"
  749. },
  750. "type": "library",
  751. "extra": {
  752. "branch-alias": {
  753. "dev-master": "1.2.x-dev"
  754. }
  755. },
  756. "autoload": {
  757. "psr-4": {
  758. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  759. }
  760. },
  761. "notification-url": "https://packagist.org/downloads/",
  762. "license": [
  763. "MIT"
  764. ],
  765. "authors": [
  766. {
  767. "name": "Guilherme Blanco",
  768. "email": "guilhermeblanco@gmail.com"
  769. },
  770. {
  771. "name": "Roman Borschel",
  772. "email": "roman@code-factory.org"
  773. },
  774. {
  775. "name": "Johannes Schmitt",
  776. "email": "schmittjoh@gmail.com"
  777. }
  778. ],
  779. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  780. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  781. "keywords": [
  782. "annotations",
  783. "docblock",
  784. "lexer",
  785. "parser",
  786. "php"
  787. ],
  788. "support": {
  789. "issues": "https://github.com/doctrine/lexer/issues",
  790. "source": "https://github.com/doctrine/lexer/tree/1.2.1"
  791. },
  792. "funding": [
  793. {
  794. "url": "https://www.doctrine-project.org/sponsorship.html",
  795. "type": "custom"
  796. },
  797. {
  798. "url": "https://www.patreon.com/phpdoctrine",
  799. "type": "patreon"
  800. },
  801. {
  802. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  803. "type": "tidelift"
  804. }
  805. ],
  806. "time": "2020-05-25T17:44:05+00:00"
  807. },
  808. {
  809. "name": "dragonmantank/cron-expression",
  810. "version": "v2.3.1",
  811. "source": {
  812. "type": "git",
  813. "url": "https://github.com/dragonmantank/cron-expression.git",
  814. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2"
  815. },
  816. "dist": {
  817. "type": "zip",
  818. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/65b2d8ee1f10915efb3b55597da3404f096acba2",
  819. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2",
  820. "shasum": "",
  821. "mirrors": [
  822. {
  823. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  824. "preferred": true
  825. }
  826. ]
  827. },
  828. "require": {
  829. "php": "^7.0|^8.0"
  830. },
  831. "require-dev": {
  832. "phpunit/phpunit": "^6.4|^7.0|^8.0|^9.0"
  833. },
  834. "type": "library",
  835. "extra": {
  836. "branch-alias": {
  837. "dev-master": "2.3-dev"
  838. }
  839. },
  840. "autoload": {
  841. "psr-4": {
  842. "Cron\\": "src/Cron/"
  843. }
  844. },
  845. "notification-url": "https://packagist.org/downloads/",
  846. "license": [
  847. "MIT"
  848. ],
  849. "authors": [
  850. {
  851. "name": "Michael Dowling",
  852. "email": "mtdowling@gmail.com",
  853. "homepage": "https://github.com/mtdowling"
  854. },
  855. {
  856. "name": "Chris Tankersley",
  857. "email": "chris@ctankersley.com",
  858. "homepage": "https://github.com/dragonmantank"
  859. }
  860. ],
  861. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  862. "keywords": [
  863. "cron",
  864. "schedule"
  865. ],
  866. "support": {
  867. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  868. "source": "https://github.com/dragonmantank/cron-expression/tree/v2.3.1"
  869. },
  870. "funding": [
  871. {
  872. "url": "https://github.com/dragonmantank",
  873. "type": "github"
  874. }
  875. ],
  876. "time": "2020-10-13T00:52:37+00:00"
  877. },
  878. {
  879. "name": "egulias/email-validator",
  880. "version": "2.1.25",
  881. "source": {
  882. "type": "git",
  883. "url": "https://github.com/egulias/EmailValidator.git",
  884. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  885. },
  886. "dist": {
  887. "type": "zip",
  888. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  889. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  890. "shasum": "",
  891. "mirrors": [
  892. {
  893. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  894. "preferred": true
  895. }
  896. ]
  897. },
  898. "require": {
  899. "doctrine/lexer": "^1.0.1",
  900. "php": ">=5.5",
  901. "symfony/polyfill-intl-idn": "^1.10"
  902. },
  903. "require-dev": {
  904. "dominicsayers/isemail": "^3.0.7",
  905. "phpunit/phpunit": "^4.8.36|^7.5.15",
  906. "satooshi/php-coveralls": "^1.0.1"
  907. },
  908. "suggest": {
  909. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  910. },
  911. "type": "library",
  912. "extra": {
  913. "branch-alias": {
  914. "dev-master": "2.1.x-dev"
  915. }
  916. },
  917. "autoload": {
  918. "psr-4": {
  919. "Egulias\\EmailValidator\\": "src"
  920. }
  921. },
  922. "notification-url": "https://packagist.org/downloads/",
  923. "license": [
  924. "MIT"
  925. ],
  926. "authors": [
  927. {
  928. "name": "Eduardo Gulias Davis"
  929. }
  930. ],
  931. "description": "A library for validating emails against several RFCs",
  932. "homepage": "https://github.com/egulias/EmailValidator",
  933. "keywords": [
  934. "email",
  935. "emailvalidation",
  936. "emailvalidator",
  937. "validation",
  938. "validator"
  939. ],
  940. "support": {
  941. "issues": "https://github.com/egulias/EmailValidator/issues",
  942. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  943. },
  944. "funding": [
  945. {
  946. "url": "https://github.com/egulias",
  947. "type": "github"
  948. }
  949. ],
  950. "time": "2020-12-29T14:50:06+00:00"
  951. },
  952. {
  953. "name": "endroid/qr-code",
  954. "version": "3.9.7",
  955. "source": {
  956. "type": "git",
  957. "url": "https://github.com/endroid/qr-code.git",
  958. "reference": "94563d7b3105288e6ac53a67ae720e3669fac1f6"
  959. },
  960. "dist": {
  961. "type": "zip",
  962. "url": "https://api.github.com/repos/endroid/qr-code/zipball/94563d7b3105288e6ac53a67ae720e3669fac1f6",
  963. "reference": "94563d7b3105288e6ac53a67ae720e3669fac1f6",
  964. "shasum": "",
  965. "mirrors": [
  966. {
  967. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  968. "preferred": true
  969. }
  970. ]
  971. },
  972. "require": {
  973. "bacon/bacon-qr-code": "^2.0",
  974. "khanamiryan/qrcode-detector-decoder": "^1.0.5",
  975. "myclabs/php-enum": "^1.5",
  976. "php": "^7.3||^8.0",
  977. "symfony/options-resolver": "^3.4||^4.4||^5.0",
  978. "symfony/property-access": "^3.4||^4.4||^5.0"
  979. },
  980. "require-dev": {
  981. "endroid/quality": "^1.5.2",
  982. "setasign/fpdf": "^1.8"
  983. },
  984. "suggest": {
  985. "ext-gd": "Required for generating PNG images",
  986. "roave/security-advisories": "Avoids installation of package versions with vulnerabilities",
  987. "setasign/fpdf": "Required to use the FPDF writer.",
  988. "symfony/security-checker": "Checks your composer.lock for vulnerabilities"
  989. },
  990. "type": "library",
  991. "extra": {
  992. "branch-alias": {
  993. "dev-master": "3.x-dev"
  994. }
  995. },
  996. "autoload": {
  997. "psr-4": {
  998. "Endroid\\QrCode\\": "src/"
  999. }
  1000. },
  1001. "notification-url": "https://packagist.org/downloads/",
  1002. "license": [
  1003. "MIT"
  1004. ],
  1005. "authors": [
  1006. {
  1007. "name": "Jeroen van den Enden",
  1008. "email": "info@endroid.nl"
  1009. }
  1010. ],
  1011. "description": "Endroid QR Code",
  1012. "homepage": "https://github.com/endroid/qr-code",
  1013. "keywords": [
  1014. "bundle",
  1015. "code",
  1016. "endroid",
  1017. "php",
  1018. "qr",
  1019. "qrcode"
  1020. ],
  1021. "support": {
  1022. "issues": "https://github.com/endroid/qr-code/issues",
  1023. "source": "https://github.com/endroid/qr-code/tree/3.9.7"
  1024. },
  1025. "funding": [
  1026. {
  1027. "url": "https://github.com/endroid",
  1028. "type": "github"
  1029. }
  1030. ],
  1031. "time": "2021-04-20T19:10:54+00:00"
  1032. },
  1033. {
  1034. "name": "ezyang/htmlpurifier",
  1035. "version": "v4.13.0",
  1036. "source": {
  1037. "type": "git",
  1038. "url": "https://github.com/ezyang/htmlpurifier.git",
  1039. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75"
  1040. },
  1041. "dist": {
  1042. "type": "zip",
  1043. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  1044. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  1045. "shasum": "",
  1046. "mirrors": [
  1047. {
  1048. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1049. "preferred": true
  1050. }
  1051. ]
  1052. },
  1053. "require": {
  1054. "php": ">=5.2"
  1055. },
  1056. "require-dev": {
  1057. "simpletest/simpletest": "dev-master#72de02a7b80c6bb8864ef9bf66d41d2f58f826bd"
  1058. },
  1059. "type": "library",
  1060. "autoload": {
  1061. "psr-0": {
  1062. "HTMLPurifier": "library/"
  1063. },
  1064. "files": [
  1065. "library/HTMLPurifier.composer.php"
  1066. ],
  1067. "exclude-from-classmap": [
  1068. "/library/HTMLPurifier/Language/"
  1069. ]
  1070. },
  1071. "notification-url": "https://packagist.org/downloads/",
  1072. "license": [
  1073. "LGPL-2.1-or-later"
  1074. ],
  1075. "authors": [
  1076. {
  1077. "name": "Edward Z. Yang",
  1078. "email": "admin@htmlpurifier.org",
  1079. "homepage": "http://ezyang.com"
  1080. }
  1081. ],
  1082. "description": "Standards compliant HTML filter written in PHP",
  1083. "homepage": "http://htmlpurifier.org/",
  1084. "keywords": [
  1085. "html"
  1086. ],
  1087. "support": {
  1088. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  1089. "source": "https://github.com/ezyang/htmlpurifier/tree/master"
  1090. },
  1091. "time": "2020-06-29T00:56:53+00:00"
  1092. },
  1093. {
  1094. "name": "facade/flare-client-php",
  1095. "version": "1.9.1",
  1096. "source": {
  1097. "type": "git",
  1098. "url": "https://github.com/facade/flare-client-php.git",
  1099. "reference": "b2adf1512755637d0cef4f7d1b54301325ac78ed"
  1100. },
  1101. "dist": {
  1102. "type": "zip",
  1103. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/b2adf1512755637d0cef4f7d1b54301325ac78ed",
  1104. "reference": "b2adf1512755637d0cef4f7d1b54301325ac78ed",
  1105. "shasum": "",
  1106. "mirrors": [
  1107. {
  1108. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1109. "preferred": true
  1110. }
  1111. ]
  1112. },
  1113. "require": {
  1114. "facade/ignition-contracts": "~1.0",
  1115. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  1116. "php": "^7.1|^8.0",
  1117. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  1118. "symfony/mime": "^3.4|^4.0|^5.1",
  1119. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  1120. },
  1121. "require-dev": {
  1122. "friendsofphp/php-cs-fixer": "^2.14",
  1123. "phpunit/phpunit": "^7.5.16",
  1124. "spatie/phpunit-snapshot-assertions": "^2.0"
  1125. },
  1126. "type": "library",
  1127. "extra": {
  1128. "branch-alias": {
  1129. "dev-master": "1.0-dev"
  1130. }
  1131. },
  1132. "autoload": {
  1133. "psr-4": {
  1134. "Facade\\FlareClient\\": "src"
  1135. },
  1136. "files": [
  1137. "src/helpers.php"
  1138. ]
  1139. },
  1140. "notification-url": "https://packagist.org/downloads/",
  1141. "license": [
  1142. "MIT"
  1143. ],
  1144. "description": "Send PHP errors to Flare",
  1145. "homepage": "https://github.com/facade/flare-client-php",
  1146. "keywords": [
  1147. "exception",
  1148. "facade",
  1149. "flare",
  1150. "reporting"
  1151. ],
  1152. "support": {
  1153. "issues": "https://github.com/facade/flare-client-php/issues",
  1154. "source": "https://github.com/facade/flare-client-php/tree/1.9.1"
  1155. },
  1156. "funding": [
  1157. {
  1158. "url": "https://github.com/spatie",
  1159. "type": "github"
  1160. }
  1161. ],
  1162. "time": "2021-09-13T12:16:46+00:00"
  1163. },
  1164. {
  1165. "name": "facade/ignition",
  1166. "version": "2.14.1",
  1167. "source": {
  1168. "type": "git",
  1169. "url": "https://github.com/facade/ignition.git",
  1170. "reference": "6d89c4c99537f487ad29f646d57ebf107ef714ed"
  1171. },
  1172. "dist": {
  1173. "type": "zip",
  1174. "url": "https://api.github.com/repos/facade/ignition/zipball/6d89c4c99537f487ad29f646d57ebf107ef714ed",
  1175. "reference": "6d89c4c99537f487ad29f646d57ebf107ef714ed",
  1176. "shasum": "",
  1177. "mirrors": [
  1178. {
  1179. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1180. "preferred": true
  1181. }
  1182. ]
  1183. },
  1184. "require": {
  1185. "ext-json": "*",
  1186. "ext-mbstring": "*",
  1187. "facade/flare-client-php": "^1.9.1",
  1188. "facade/ignition-contracts": "^1.0.2",
  1189. "illuminate/support": "^7.0|^8.0",
  1190. "monolog/monolog": "^2.0",
  1191. "php": "^7.2.5|^8.0",
  1192. "symfony/console": "^5.0",
  1193. "symfony/var-dumper": "^5.0"
  1194. },
  1195. "require-dev": {
  1196. "friendsofphp/php-cs-fixer": "^2.14",
  1197. "mockery/mockery": "^1.3",
  1198. "orchestra/testbench": "^5.0|^6.0",
  1199. "psalm/plugin-laravel": "^1.2"
  1200. },
  1201. "suggest": {
  1202. "laravel/telescope": "^3.1"
  1203. },
  1204. "type": "library",
  1205. "extra": {
  1206. "branch-alias": {
  1207. "dev-master": "2.x-dev"
  1208. },
  1209. "laravel": {
  1210. "providers": [
  1211. "Facade\\Ignition\\IgnitionServiceProvider"
  1212. ],
  1213. "aliases": {
  1214. "Flare": "Facade\\Ignition\\Facades\\Flare"
  1215. }
  1216. }
  1217. },
  1218. "autoload": {
  1219. "psr-4": {
  1220. "Facade\\Ignition\\": "src"
  1221. },
  1222. "files": [
  1223. "src/helpers.php"
  1224. ]
  1225. },
  1226. "notification-url": "https://packagist.org/downloads/",
  1227. "license": [
  1228. "MIT"
  1229. ],
  1230. "description": "A beautiful error page for Laravel applications.",
  1231. "homepage": "https://github.com/facade/ignition",
  1232. "keywords": [
  1233. "error",
  1234. "flare",
  1235. "laravel",
  1236. "page"
  1237. ],
  1238. "support": {
  1239. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  1240. "forum": "https://twitter.com/flareappio",
  1241. "issues": "https://github.com/facade/ignition/issues",
  1242. "source": "https://github.com/facade/ignition"
  1243. },
  1244. "time": "2021-10-08T12:34:52+00:00"
  1245. },
  1246. {
  1247. "name": "facade/ignition-contracts",
  1248. "version": "1.0.2",
  1249. "source": {
  1250. "type": "git",
  1251. "url": "https://github.com/facade/ignition-contracts.git",
  1252. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  1253. },
  1254. "dist": {
  1255. "type": "zip",
  1256. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  1257. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  1258. "shasum": "",
  1259. "mirrors": [
  1260. {
  1261. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1262. "preferred": true
  1263. }
  1264. ]
  1265. },
  1266. "require": {
  1267. "php": "^7.3|^8.0"
  1268. },
  1269. "require-dev": {
  1270. "friendsofphp/php-cs-fixer": "^v2.15.8",
  1271. "phpunit/phpunit": "^9.3.11",
  1272. "vimeo/psalm": "^3.17.1"
  1273. },
  1274. "type": "library",
  1275. "autoload": {
  1276. "psr-4": {
  1277. "Facade\\IgnitionContracts\\": "src"
  1278. }
  1279. },
  1280. "notification-url": "https://packagist.org/downloads/",
  1281. "license": [
  1282. "MIT"
  1283. ],
  1284. "authors": [
  1285. {
  1286. "name": "Freek Van der Herten",
  1287. "email": "freek@spatie.be",
  1288. "homepage": "https://flareapp.io",
  1289. "role": "Developer"
  1290. }
  1291. ],
  1292. "description": "Solution contracts for Ignition",
  1293. "homepage": "https://github.com/facade/ignition-contracts",
  1294. "keywords": [
  1295. "contracts",
  1296. "flare",
  1297. "ignition"
  1298. ],
  1299. "support": {
  1300. "issues": "https://github.com/facade/ignition-contracts/issues",
  1301. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  1302. },
  1303. "time": "2020-10-16T08:27:54+00:00"
  1304. },
  1305. {
  1306. "name": "fideloper/proxy",
  1307. "version": "4.4.1",
  1308. "source": {
  1309. "type": "git",
  1310. "url": "https://github.com/fideloper/TrustedProxy.git",
  1311. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0"
  1312. },
  1313. "dist": {
  1314. "type": "zip",
  1315. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  1316. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  1317. "shasum": "",
  1318. "mirrors": [
  1319. {
  1320. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1321. "preferred": true
  1322. }
  1323. ]
  1324. },
  1325. "require": {
  1326. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1327. "php": ">=5.4.0"
  1328. },
  1329. "require-dev": {
  1330. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1331. "mockery/mockery": "^1.0",
  1332. "phpunit/phpunit": "^6.0"
  1333. },
  1334. "type": "library",
  1335. "extra": {
  1336. "laravel": {
  1337. "providers": [
  1338. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  1339. ]
  1340. }
  1341. },
  1342. "autoload": {
  1343. "psr-4": {
  1344. "Fideloper\\Proxy\\": "src/"
  1345. }
  1346. },
  1347. "notification-url": "https://packagist.org/downloads/",
  1348. "license": [
  1349. "MIT"
  1350. ],
  1351. "authors": [
  1352. {
  1353. "name": "Chris Fidao",
  1354. "email": "fideloper@gmail.com"
  1355. }
  1356. ],
  1357. "description": "Set trusted proxies for Laravel",
  1358. "keywords": [
  1359. "load balancing",
  1360. "proxy",
  1361. "trusted proxy"
  1362. ],
  1363. "support": {
  1364. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  1365. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.1"
  1366. },
  1367. "time": "2020-10-22T13:48:01+00:00"
  1368. },
  1369. {
  1370. "name": "firebase/php-jwt",
  1371. "version": "v5.4.0",
  1372. "source": {
  1373. "type": "git",
  1374. "url": "https://github.com/firebase/php-jwt.git",
  1375. "reference": "d2113d9b2e0e349796e72d2a63cf9319100382d2"
  1376. },
  1377. "dist": {
  1378. "type": "zip",
  1379. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/d2113d9b2e0e349796e72d2a63cf9319100382d2",
  1380. "reference": "d2113d9b2e0e349796e72d2a63cf9319100382d2",
  1381. "shasum": "",
  1382. "mirrors": [
  1383. {
  1384. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1385. "preferred": true
  1386. }
  1387. ]
  1388. },
  1389. "require": {
  1390. "php": ">=5.3.0"
  1391. },
  1392. "require-dev": {
  1393. "phpunit/phpunit": ">=4.8 <=9"
  1394. },
  1395. "suggest": {
  1396. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  1397. },
  1398. "type": "library",
  1399. "autoload": {
  1400. "psr-4": {
  1401. "Firebase\\JWT\\": "src"
  1402. }
  1403. },
  1404. "notification-url": "https://packagist.org/downloads/",
  1405. "license": [
  1406. "BSD-3-Clause"
  1407. ],
  1408. "authors": [
  1409. {
  1410. "name": "Neuman Vong",
  1411. "email": "neuman+pear@twilio.com",
  1412. "role": "Developer"
  1413. },
  1414. {
  1415. "name": "Anant Narayanan",
  1416. "email": "anant@php.net",
  1417. "role": "Developer"
  1418. }
  1419. ],
  1420. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  1421. "homepage": "https://github.com/firebase/php-jwt",
  1422. "keywords": [
  1423. "jwt",
  1424. "php"
  1425. ],
  1426. "support": {
  1427. "issues": "https://github.com/firebase/php-jwt/issues",
  1428. "source": "https://github.com/firebase/php-jwt/tree/v5.4.0"
  1429. },
  1430. "time": "2021-06-23T19:00:23+00:00"
  1431. },
  1432. {
  1433. "name": "guzzlehttp/guzzle",
  1434. "version": "6.5.5",
  1435. "source": {
  1436. "type": "git",
  1437. "url": "https://github.com/guzzle/guzzle.git",
  1438. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
  1439. },
  1440. "dist": {
  1441. "type": "zip",
  1442. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1443. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1444. "shasum": "",
  1445. "mirrors": [
  1446. {
  1447. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1448. "preferred": true
  1449. }
  1450. ]
  1451. },
  1452. "require": {
  1453. "ext-json": "*",
  1454. "guzzlehttp/promises": "^1.0",
  1455. "guzzlehttp/psr7": "^1.6.1",
  1456. "php": ">=5.5",
  1457. "symfony/polyfill-intl-idn": "^1.17.0"
  1458. },
  1459. "require-dev": {
  1460. "ext-curl": "*",
  1461. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  1462. "psr/log": "^1.1"
  1463. },
  1464. "suggest": {
  1465. "psr/log": "Required for using the Log middleware"
  1466. },
  1467. "type": "library",
  1468. "extra": {
  1469. "branch-alias": {
  1470. "dev-master": "6.5-dev"
  1471. }
  1472. },
  1473. "autoload": {
  1474. "psr-4": {
  1475. "GuzzleHttp\\": "src/"
  1476. },
  1477. "files": [
  1478. "src/functions_include.php"
  1479. ]
  1480. },
  1481. "notification-url": "https://packagist.org/downloads/",
  1482. "license": [
  1483. "MIT"
  1484. ],
  1485. "authors": [
  1486. {
  1487. "name": "Michael Dowling",
  1488. "email": "mtdowling@gmail.com",
  1489. "homepage": "https://github.com/mtdowling"
  1490. }
  1491. ],
  1492. "description": "Guzzle is a PHP HTTP client library",
  1493. "homepage": "http://guzzlephp.org/",
  1494. "keywords": [
  1495. "client",
  1496. "curl",
  1497. "framework",
  1498. "http",
  1499. "http client",
  1500. "rest",
  1501. "web service"
  1502. ],
  1503. "support": {
  1504. "issues": "https://github.com/guzzle/guzzle/issues",
  1505. "source": "https://github.com/guzzle/guzzle/tree/6.5"
  1506. },
  1507. "time": "2020-06-16T21:01:06+00:00"
  1508. },
  1509. {
  1510. "name": "guzzlehttp/promises",
  1511. "version": "1.5.0",
  1512. "source": {
  1513. "type": "git",
  1514. "url": "https://github.com/guzzle/promises.git",
  1515. "reference": "136a635e2b4a49b9d79e9c8fee267ffb257fdba0"
  1516. },
  1517. "dist": {
  1518. "type": "zip",
  1519. "url": "https://api.github.com/repos/guzzle/promises/zipball/136a635e2b4a49b9d79e9c8fee267ffb257fdba0",
  1520. "reference": "136a635e2b4a49b9d79e9c8fee267ffb257fdba0",
  1521. "shasum": "",
  1522. "mirrors": [
  1523. {
  1524. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1525. "preferred": true
  1526. }
  1527. ]
  1528. },
  1529. "require": {
  1530. "php": ">=5.5"
  1531. },
  1532. "require-dev": {
  1533. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  1534. },
  1535. "type": "library",
  1536. "extra": {
  1537. "branch-alias": {
  1538. "dev-master": "1.5-dev"
  1539. }
  1540. },
  1541. "autoload": {
  1542. "psr-4": {
  1543. "GuzzleHttp\\Promise\\": "src/"
  1544. },
  1545. "files": [
  1546. "src/functions_include.php"
  1547. ]
  1548. },
  1549. "notification-url": "https://packagist.org/downloads/",
  1550. "license": [
  1551. "MIT"
  1552. ],
  1553. "authors": [
  1554. {
  1555. "name": "Graham Campbell",
  1556. "email": "hello@gjcampbell.co.uk",
  1557. "homepage": "https://github.com/GrahamCampbell"
  1558. },
  1559. {
  1560. "name": "Michael Dowling",
  1561. "email": "mtdowling@gmail.com",
  1562. "homepage": "https://github.com/mtdowling"
  1563. },
  1564. {
  1565. "name": "Tobias Nyholm",
  1566. "email": "tobias.nyholm@gmail.com",
  1567. "homepage": "https://github.com/Nyholm"
  1568. },
  1569. {
  1570. "name": "Tobias Schultze",
  1571. "email": "webmaster@tubo-world.de",
  1572. "homepage": "https://github.com/Tobion"
  1573. }
  1574. ],
  1575. "description": "Guzzle promises library",
  1576. "keywords": [
  1577. "promise"
  1578. ],
  1579. "support": {
  1580. "issues": "https://github.com/guzzle/promises/issues",
  1581. "source": "https://github.com/guzzle/promises/tree/1.5.0"
  1582. },
  1583. "funding": [
  1584. {
  1585. "url": "https://github.com/GrahamCampbell",
  1586. "type": "github"
  1587. },
  1588. {
  1589. "url": "https://github.com/Nyholm",
  1590. "type": "github"
  1591. },
  1592. {
  1593. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1594. "type": "tidelift"
  1595. }
  1596. ],
  1597. "time": "2021-10-07T13:05:22+00:00"
  1598. },
  1599. {
  1600. "name": "guzzlehttp/psr7",
  1601. "version": "1.8.3",
  1602. "source": {
  1603. "type": "git",
  1604. "url": "https://github.com/guzzle/psr7.git",
  1605. "reference": "1afdd860a2566ed3c2b0b4a3de6e23434a79ec85"
  1606. },
  1607. "dist": {
  1608. "type": "zip",
  1609. "url": "https://api.github.com/repos/guzzle/psr7/zipball/1afdd860a2566ed3c2b0b4a3de6e23434a79ec85",
  1610. "reference": "1afdd860a2566ed3c2b0b4a3de6e23434a79ec85",
  1611. "shasum": "",
  1612. "mirrors": [
  1613. {
  1614. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1615. "preferred": true
  1616. }
  1617. ]
  1618. },
  1619. "require": {
  1620. "php": ">=5.4.0",
  1621. "psr/http-message": "~1.0",
  1622. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  1623. },
  1624. "provide": {
  1625. "psr/http-message-implementation": "1.0"
  1626. },
  1627. "require-dev": {
  1628. "ext-zlib": "*",
  1629. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  1630. },
  1631. "suggest": {
  1632. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1633. },
  1634. "type": "library",
  1635. "extra": {
  1636. "branch-alias": {
  1637. "dev-master": "1.7-dev"
  1638. }
  1639. },
  1640. "autoload": {
  1641. "psr-4": {
  1642. "GuzzleHttp\\Psr7\\": "src/"
  1643. },
  1644. "files": [
  1645. "src/functions_include.php"
  1646. ]
  1647. },
  1648. "notification-url": "https://packagist.org/downloads/",
  1649. "license": [
  1650. "MIT"
  1651. ],
  1652. "authors": [
  1653. {
  1654. "name": "Graham Campbell",
  1655. "email": "hello@gjcampbell.co.uk",
  1656. "homepage": "https://github.com/GrahamCampbell"
  1657. },
  1658. {
  1659. "name": "Michael Dowling",
  1660. "email": "mtdowling@gmail.com",
  1661. "homepage": "https://github.com/mtdowling"
  1662. },
  1663. {
  1664. "name": "George Mponos",
  1665. "email": "gmponos@gmail.com",
  1666. "homepage": "https://github.com/gmponos"
  1667. },
  1668. {
  1669. "name": "Tobias Nyholm",
  1670. "email": "tobias.nyholm@gmail.com",
  1671. "homepage": "https://github.com/Nyholm"
  1672. },
  1673. {
  1674. "name": "Márk Sági-Kazár",
  1675. "email": "mark.sagikazar@gmail.com",
  1676. "homepage": "https://github.com/sagikazarmark"
  1677. },
  1678. {
  1679. "name": "Tobias Schultze",
  1680. "email": "webmaster@tubo-world.de",
  1681. "homepage": "https://github.com/Tobion"
  1682. }
  1683. ],
  1684. "description": "PSR-7 message implementation that also provides common utility methods",
  1685. "keywords": [
  1686. "http",
  1687. "message",
  1688. "psr-7",
  1689. "request",
  1690. "response",
  1691. "stream",
  1692. "uri",
  1693. "url"
  1694. ],
  1695. "support": {
  1696. "issues": "https://github.com/guzzle/psr7/issues",
  1697. "source": "https://github.com/guzzle/psr7/tree/1.8.3"
  1698. },
  1699. "funding": [
  1700. {
  1701. "url": "https://github.com/GrahamCampbell",
  1702. "type": "github"
  1703. },
  1704. {
  1705. "url": "https://github.com/Nyholm",
  1706. "type": "github"
  1707. },
  1708. {
  1709. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1710. "type": "tidelift"
  1711. }
  1712. ],
  1713. "time": "2021-10-05T13:56:00+00:00"
  1714. },
  1715. {
  1716. "name": "intervention/image",
  1717. "version": "2.7.0",
  1718. "source": {
  1719. "type": "git",
  1720. "url": "https://github.com/Intervention/image.git",
  1721. "reference": "9a8cc99d30415ec0b3f7649e1647d03a55698545"
  1722. },
  1723. "dist": {
  1724. "type": "zip",
  1725. "url": "https://api.github.com/repos/Intervention/image/zipball/9a8cc99d30415ec0b3f7649e1647d03a55698545",
  1726. "reference": "9a8cc99d30415ec0b3f7649e1647d03a55698545",
  1727. "shasum": "",
  1728. "mirrors": [
  1729. {
  1730. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1731. "preferred": true
  1732. }
  1733. ]
  1734. },
  1735. "require": {
  1736. "ext-fileinfo": "*",
  1737. "guzzlehttp/psr7": "~1.1 || ^2.0",
  1738. "php": ">=5.4.0"
  1739. },
  1740. "require-dev": {
  1741. "mockery/mockery": "~0.9.2",
  1742. "phpunit/phpunit": "^4.8 || ^5.7 || ^7.5.15"
  1743. },
  1744. "suggest": {
  1745. "ext-gd": "to use GD library based image processing.",
  1746. "ext-imagick": "to use Imagick based image processing.",
  1747. "intervention/imagecache": "Caching extension for the Intervention Image library"
  1748. },
  1749. "type": "library",
  1750. "extra": {
  1751. "branch-alias": {
  1752. "dev-master": "2.4-dev"
  1753. },
  1754. "laravel": {
  1755. "providers": [
  1756. "Intervention\\Image\\ImageServiceProvider"
  1757. ],
  1758. "aliases": {
  1759. "Image": "Intervention\\Image\\Facades\\Image"
  1760. }
  1761. }
  1762. },
  1763. "autoload": {
  1764. "psr-4": {
  1765. "Intervention\\Image\\": "src/Intervention/Image"
  1766. }
  1767. },
  1768. "notification-url": "https://packagist.org/downloads/",
  1769. "license": [
  1770. "MIT"
  1771. ],
  1772. "authors": [
  1773. {
  1774. "name": "Oliver Vogel",
  1775. "email": "oliver@olivervogel.com",
  1776. "homepage": "http://olivervogel.com/"
  1777. }
  1778. ],
  1779. "description": "Image handling and manipulation library with support for Laravel integration",
  1780. "homepage": "http://image.intervention.io/",
  1781. "keywords": [
  1782. "gd",
  1783. "image",
  1784. "imagick",
  1785. "laravel",
  1786. "thumbnail",
  1787. "watermark"
  1788. ],
  1789. "support": {
  1790. "issues": "https://github.com/Intervention/image/issues",
  1791. "source": "https://github.com/Intervention/image/tree/2.7.0"
  1792. },
  1793. "funding": [
  1794. {
  1795. "url": "https://www.paypal.me/interventionphp",
  1796. "type": "custom"
  1797. },
  1798. {
  1799. "url": "https://github.com/Intervention",
  1800. "type": "github"
  1801. }
  1802. ],
  1803. "time": "2021-10-03T14:17:12+00:00"
  1804. },
  1805. {
  1806. "name": "khanamiryan/qrcode-detector-decoder",
  1807. "version": "1.0.5.2",
  1808. "source": {
  1809. "type": "git",
  1810. "url": "https://github.com/khanamiryan/php-qrcode-detector-decoder.git",
  1811. "reference": "04fdd58d86a387065f707dc6d3cc304c719910c1"
  1812. },
  1813. "dist": {
  1814. "type": "zip",
  1815. "url": "https://api.github.com/repos/khanamiryan/php-qrcode-detector-decoder/zipball/04fdd58d86a387065f707dc6d3cc304c719910c1",
  1816. "reference": "04fdd58d86a387065f707dc6d3cc304c719910c1",
  1817. "shasum": "",
  1818. "mirrors": [
  1819. {
  1820. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1821. "preferred": true
  1822. }
  1823. ]
  1824. },
  1825. "require": {
  1826. "php": ">=5.6"
  1827. },
  1828. "require-dev": {
  1829. "phpunit/phpunit": "^5.7 | ^7.5 | ^8.0 | ^9.0"
  1830. },
  1831. "type": "library",
  1832. "autoload": {
  1833. "psr-4": {
  1834. "Zxing\\": "lib/"
  1835. },
  1836. "files": [
  1837. "lib/Common/customFunctions.php"
  1838. ]
  1839. },
  1840. "notification-url": "https://packagist.org/downloads/",
  1841. "license": [
  1842. "MIT",
  1843. "Apache-2.0"
  1844. ],
  1845. "authors": [
  1846. {
  1847. "name": "Ashot Khanamiryan",
  1848. "email": "a.khanamiryan@gmail.com",
  1849. "homepage": "https://github.com/khanamiryan",
  1850. "role": "Developer"
  1851. }
  1852. ],
  1853. "description": "QR code decoder / reader",
  1854. "homepage": "https://github.com/khanamiryan/php-qrcode-detector-decoder/",
  1855. "keywords": [
  1856. "barcode",
  1857. "qr",
  1858. "zxing"
  1859. ],
  1860. "support": {
  1861. "issues": "https://github.com/khanamiryan/php-qrcode-detector-decoder/issues",
  1862. "source": "https://github.com/khanamiryan/php-qrcode-detector-decoder/tree/1.0.5.2"
  1863. },
  1864. "time": "2021-07-13T18:46:38+00:00"
  1865. },
  1866. {
  1867. "name": "kitetail/zttp",
  1868. "version": "v0.6.0",
  1869. "source": {
  1870. "type": "git",
  1871. "url": "https://github.com/kitetail/zttp.git",
  1872. "reference": "92662d7f9025b4c9a0b8a585e31810461fcca435"
  1873. },
  1874. "dist": {
  1875. "type": "zip",
  1876. "url": "https://api.github.com/repos/kitetail/zttp/zipball/92662d7f9025b4c9a0b8a585e31810461fcca435",
  1877. "reference": "92662d7f9025b4c9a0b8a585e31810461fcca435",
  1878. "shasum": "",
  1879. "mirrors": [
  1880. {
  1881. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1882. "preferred": true
  1883. }
  1884. ]
  1885. },
  1886. "require": {
  1887. "guzzlehttp/guzzle": "^6.0",
  1888. "php": ">=7.0",
  1889. "tightenco/collect": "^5.4"
  1890. },
  1891. "require-dev": {
  1892. "laravel/lumen-framework": "5.5.*",
  1893. "phpunit/phpunit": "^6.0"
  1894. },
  1895. "type": "library",
  1896. "autoload": {
  1897. "files": [
  1898. "src/Zttp.php"
  1899. ]
  1900. },
  1901. "notification-url": "https://packagist.org/downloads/",
  1902. "license": [
  1903. "MIT"
  1904. ],
  1905. "authors": [
  1906. {
  1907. "name": "Adam Wathan",
  1908. "email": "adam.wathan@gmail.com"
  1909. }
  1910. ],
  1911. "description": "A developer-experience focused HTTP client, optimized for most common use cases.",
  1912. "keywords": [
  1913. "Guzzle",
  1914. "http"
  1915. ],
  1916. "support": {
  1917. "issues": "https://github.com/kitetail/zttp/issues",
  1918. "source": "https://github.com/kitetail/zttp/tree/master"
  1919. },
  1920. "time": "2019-06-10T12:18:52+00:00"
  1921. },
  1922. {
  1923. "name": "laravel/framework",
  1924. "version": "v7.30.4",
  1925. "source": {
  1926. "type": "git",
  1927. "url": "https://github.com/laravel/framework.git",
  1928. "reference": "9dd38140dc2924daa1a020a3d7a45f9ceff03df3"
  1929. },
  1930. "dist": {
  1931. "type": "zip",
  1932. "url": "https://api.github.com/repos/laravel/framework/zipball/9dd38140dc2924daa1a020a3d7a45f9ceff03df3",
  1933. "reference": "9dd38140dc2924daa1a020a3d7a45f9ceff03df3",
  1934. "shasum": "",
  1935. "mirrors": [
  1936. {
  1937. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1938. "preferred": true
  1939. }
  1940. ]
  1941. },
  1942. "require": {
  1943. "doctrine/inflector": "^1.4|^2.0",
  1944. "dragonmantank/cron-expression": "^2.3.1",
  1945. "egulias/email-validator": "^2.1.10",
  1946. "ext-json": "*",
  1947. "ext-mbstring": "*",
  1948. "ext-openssl": "*",
  1949. "league/commonmark": "^1.3",
  1950. "league/flysystem": "^1.1",
  1951. "monolog/monolog": "^2.0",
  1952. "nesbot/carbon": "^2.31",
  1953. "opis/closure": "^3.6",
  1954. "php": "^7.2.5|^8.0",
  1955. "psr/container": "^1.0",
  1956. "psr/simple-cache": "^1.0",
  1957. "ramsey/uuid": "^3.7|^4.0",
  1958. "swiftmailer/swiftmailer": "^6.0",
  1959. "symfony/console": "^5.0",
  1960. "symfony/error-handler": "^5.0",
  1961. "symfony/finder": "^5.0",
  1962. "symfony/http-foundation": "^5.0",
  1963. "symfony/http-kernel": "^5.0",
  1964. "symfony/mime": "^5.0",
  1965. "symfony/polyfill-php73": "^1.17",
  1966. "symfony/process": "^5.0",
  1967. "symfony/routing": "^5.0",
  1968. "symfony/var-dumper": "^5.0",
  1969. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  1970. "vlucas/phpdotenv": "^4.0",
  1971. "voku/portable-ascii": "^1.4.8"
  1972. },
  1973. "conflict": {
  1974. "tightenco/collect": "<5.5.33"
  1975. },
  1976. "provide": {
  1977. "psr/container-implementation": "1.0"
  1978. },
  1979. "replace": {
  1980. "illuminate/auth": "self.version",
  1981. "illuminate/broadcasting": "self.version",
  1982. "illuminate/bus": "self.version",
  1983. "illuminate/cache": "self.version",
  1984. "illuminate/config": "self.version",
  1985. "illuminate/console": "self.version",
  1986. "illuminate/container": "self.version",
  1987. "illuminate/contracts": "self.version",
  1988. "illuminate/cookie": "self.version",
  1989. "illuminate/database": "self.version",
  1990. "illuminate/encryption": "self.version",
  1991. "illuminate/events": "self.version",
  1992. "illuminate/filesystem": "self.version",
  1993. "illuminate/hashing": "self.version",
  1994. "illuminate/http": "self.version",
  1995. "illuminate/log": "self.version",
  1996. "illuminate/mail": "self.version",
  1997. "illuminate/notifications": "self.version",
  1998. "illuminate/pagination": "self.version",
  1999. "illuminate/pipeline": "self.version",
  2000. "illuminate/queue": "self.version",
  2001. "illuminate/redis": "self.version",
  2002. "illuminate/routing": "self.version",
  2003. "illuminate/session": "self.version",
  2004. "illuminate/support": "self.version",
  2005. "illuminate/testing": "self.version",
  2006. "illuminate/translation": "self.version",
  2007. "illuminate/validation": "self.version",
  2008. "illuminate/view": "self.version"
  2009. },
  2010. "require-dev": {
  2011. "aws/aws-sdk-php": "^3.155",
  2012. "doctrine/dbal": "^2.6",
  2013. "filp/whoops": "^2.8",
  2014. "guzzlehttp/guzzle": "^6.3.1|^7.0.1",
  2015. "league/flysystem-cached-adapter": "^1.0",
  2016. "mockery/mockery": "~1.3.3|^1.4.2",
  2017. "moontoast/math": "^1.1",
  2018. "orchestra/testbench-core": "^5.8",
  2019. "pda/pheanstalk": "^4.0",
  2020. "phpunit/phpunit": "^8.4|^9.3.3",
  2021. "predis/predis": "^1.1.1",
  2022. "symfony/cache": "^5.0"
  2023. },
  2024. "suggest": {
  2025. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.155).",
  2026. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
  2027. "ext-ftp": "Required to use the Flysystem FTP driver.",
  2028. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  2029. "ext-memcached": "Required to use the memcache cache driver.",
  2030. "ext-pcntl": "Required to use all features of the queue worker.",
  2031. "ext-posix": "Required to use all features of the queue worker.",
  2032. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  2033. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  2034. "filp/whoops": "Required for friendly error pages in development (^2.8).",
  2035. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.3.1|^7.0.1).",
  2036. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  2037. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  2038. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  2039. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  2040. "mockery/mockery": "Required to use mocking (~1.3.3|^1.4.2).",
  2041. "moontoast/math": "Required to use ordered UUIDs (^1.1).",
  2042. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  2043. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  2044. "phpunit/phpunit": "Required to use assertions and run tests (^8.4|^9.3.3).",
  2045. "predis/predis": "Required to use the predis connector (^1.1.2).",
  2046. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  2047. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0).",
  2048. "symfony/cache": "Required to PSR-6 cache bridge (^5.0).",
  2049. "symfony/filesystem": "Required to create relative storage directory symbolic links (^5.0).",
  2050. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  2051. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  2052. },
  2053. "type": "library",
  2054. "extra": {
  2055. "branch-alias": {
  2056. "dev-master": "7.x-dev"
  2057. }
  2058. },
  2059. "autoload": {
  2060. "files": [
  2061. "src/Illuminate/Foundation/helpers.php",
  2062. "src/Illuminate/Support/helpers.php"
  2063. ],
  2064. "psr-4": {
  2065. "Illuminate\\": "src/Illuminate/"
  2066. }
  2067. },
  2068. "notification-url": "https://packagist.org/downloads/",
  2069. "license": [
  2070. "MIT"
  2071. ],
  2072. "authors": [
  2073. {
  2074. "name": "Taylor Otwell",
  2075. "email": "taylor@laravel.com"
  2076. }
  2077. ],
  2078. "description": "The Laravel Framework.",
  2079. "homepage": "https://laravel.com",
  2080. "keywords": [
  2081. "framework",
  2082. "laravel"
  2083. ],
  2084. "support": {
  2085. "issues": "https://github.com/laravel/framework/issues",
  2086. "source": "https://github.com/laravel/framework"
  2087. },
  2088. "time": "2021-01-21T14:10:48+00:00"
  2089. },
  2090. {
  2091. "name": "laravel/horizon",
  2092. "version": "v4.3.5",
  2093. "source": {
  2094. "type": "git",
  2095. "url": "https://github.com/laravel/horizon.git",
  2096. "reference": "b3fba0daaaaf5e84197b06dd25f3b27bb7301171"
  2097. },
  2098. "dist": {
  2099. "type": "zip",
  2100. "url": "https://api.github.com/repos/laravel/horizon/zipball/b3fba0daaaaf5e84197b06dd25f3b27bb7301171",
  2101. "reference": "b3fba0daaaaf5e84197b06dd25f3b27bb7301171",
  2102. "shasum": "",
  2103. "mirrors": [
  2104. {
  2105. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2106. "preferred": true
  2107. }
  2108. ]
  2109. },
  2110. "require": {
  2111. "cakephp/chronos": "^2.0",
  2112. "ext-json": "*",
  2113. "ext-pcntl": "*",
  2114. "ext-posix": "*",
  2115. "illuminate/contracts": "^7.0",
  2116. "illuminate/queue": "^7.0",
  2117. "illuminate/support": "^7.0",
  2118. "php": "^7.2",
  2119. "ramsey/uuid": "^3.5|^4.0",
  2120. "symfony/error-handler": "^5.0",
  2121. "symfony/process": "^5.0"
  2122. },
  2123. "require-dev": {
  2124. "mockery/mockery": "^1.0",
  2125. "orchestra/testbench": "^5.0",
  2126. "phpunit/phpunit": "^8.0",
  2127. "predis/predis": "^1.1"
  2128. },
  2129. "suggest": {
  2130. "ext-redis": "Required to use the Redis PHP driver.",
  2131. "predis/predis": "Required when not using the Redis PHP driver (^1.1)."
  2132. },
  2133. "type": "library",
  2134. "extra": {
  2135. "branch-alias": {
  2136. "dev-master": "4.x-dev"
  2137. },
  2138. "laravel": {
  2139. "providers": [
  2140. "Laravel\\Horizon\\HorizonServiceProvider"
  2141. ],
  2142. "aliases": {
  2143. "Horizon": "Laravel\\Horizon\\Horizon"
  2144. }
  2145. }
  2146. },
  2147. "autoload": {
  2148. "psr-4": {
  2149. "Laravel\\Horizon\\": "src/"
  2150. }
  2151. },
  2152. "notification-url": "https://packagist.org/downloads/",
  2153. "license": [
  2154. "MIT"
  2155. ],
  2156. "authors": [
  2157. {
  2158. "name": "Taylor Otwell",
  2159. "email": "taylor@laravel.com"
  2160. }
  2161. ],
  2162. "description": "Dashboard and code-driven configuration for Laravel queues.",
  2163. "keywords": [
  2164. "laravel",
  2165. "queue"
  2166. ],
  2167. "support": {
  2168. "issues": "https://github.com/laravel/horizon/issues",
  2169. "source": "https://github.com/laravel/horizon/tree/4.x"
  2170. },
  2171. "time": "2020-09-08T13:19:23+00:00"
  2172. },
  2173. {
  2174. "name": "laravel/tinker",
  2175. "version": "v2.6.2",
  2176. "source": {
  2177. "type": "git",
  2178. "url": "https://github.com/laravel/tinker.git",
  2179. "reference": "c808a7227f97ecfd9219fbf913bad842ea854ddc"
  2180. },
  2181. "dist": {
  2182. "type": "zip",
  2183. "url": "https://api.github.com/repos/laravel/tinker/zipball/c808a7227f97ecfd9219fbf913bad842ea854ddc",
  2184. "reference": "c808a7227f97ecfd9219fbf913bad842ea854ddc",
  2185. "shasum": "",
  2186. "mirrors": [
  2187. {
  2188. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2189. "preferred": true
  2190. }
  2191. ]
  2192. },
  2193. "require": {
  2194. "illuminate/console": "^6.0|^7.0|^8.0",
  2195. "illuminate/contracts": "^6.0|^7.0|^8.0",
  2196. "illuminate/support": "^6.0|^7.0|^8.0",
  2197. "php": "^7.2.5|^8.0",
  2198. "psy/psysh": "^0.10.4",
  2199. "symfony/var-dumper": "^4.3.4|^5.0"
  2200. },
  2201. "require-dev": {
  2202. "mockery/mockery": "~1.3.3|^1.4.2",
  2203. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2204. },
  2205. "suggest": {
  2206. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0)."
  2207. },
  2208. "type": "library",
  2209. "extra": {
  2210. "branch-alias": {
  2211. "dev-master": "2.x-dev"
  2212. },
  2213. "laravel": {
  2214. "providers": [
  2215. "Laravel\\Tinker\\TinkerServiceProvider"
  2216. ]
  2217. }
  2218. },
  2219. "autoload": {
  2220. "psr-4": {
  2221. "Laravel\\Tinker\\": "src/"
  2222. }
  2223. },
  2224. "notification-url": "https://packagist.org/downloads/",
  2225. "license": [
  2226. "MIT"
  2227. ],
  2228. "authors": [
  2229. {
  2230. "name": "Taylor Otwell",
  2231. "email": "taylor@laravel.com"
  2232. }
  2233. ],
  2234. "description": "Powerful REPL for the Laravel framework.",
  2235. "keywords": [
  2236. "REPL",
  2237. "Tinker",
  2238. "laravel",
  2239. "psysh"
  2240. ],
  2241. "support": {
  2242. "issues": "https://github.com/laravel/tinker/issues",
  2243. "source": "https://github.com/laravel/tinker/tree/v2.6.2"
  2244. },
  2245. "time": "2021-09-28T15:47:34+00:00"
  2246. },
  2247. {
  2248. "name": "laravel/ui",
  2249. "version": "v2.5.0",
  2250. "source": {
  2251. "type": "git",
  2252. "url": "https://github.com/laravel/ui.git",
  2253. "reference": "d01a705763c243b07be795e9d1bb47f89260f73d"
  2254. },
  2255. "dist": {
  2256. "type": "zip",
  2257. "url": "https://api.github.com/repos/laravel/ui/zipball/d01a705763c243b07be795e9d1bb47f89260f73d",
  2258. "reference": "d01a705763c243b07be795e9d1bb47f89260f73d",
  2259. "shasum": "",
  2260. "mirrors": [
  2261. {
  2262. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2263. "preferred": true
  2264. }
  2265. ]
  2266. },
  2267. "require": {
  2268. "illuminate/console": "^7.0",
  2269. "illuminate/filesystem": "^7.0",
  2270. "illuminate/support": "^7.0",
  2271. "php": "^7.2.5|^8.0"
  2272. },
  2273. "type": "library",
  2274. "extra": {
  2275. "laravel": {
  2276. "providers": [
  2277. "Laravel\\Ui\\UiServiceProvider"
  2278. ]
  2279. }
  2280. },
  2281. "autoload": {
  2282. "psr-4": {
  2283. "Laravel\\Ui\\": "src/",
  2284. "Illuminate\\Foundation\\Auth\\": "auth-backend/"
  2285. }
  2286. },
  2287. "notification-url": "https://packagist.org/downloads/",
  2288. "license": [
  2289. "MIT"
  2290. ],
  2291. "authors": [
  2292. {
  2293. "name": "Taylor Otwell",
  2294. "email": "taylor@laravel.com"
  2295. }
  2296. ],
  2297. "description": "Laravel UI utilities and presets.",
  2298. "keywords": [
  2299. "laravel",
  2300. "ui"
  2301. ],
  2302. "support": {
  2303. "issues": "https://github.com/laravel/ui/issues",
  2304. "source": "https://github.com/laravel/ui/tree/v2.5.0"
  2305. },
  2306. "time": "2020-11-03T19:45:19+00:00"
  2307. },
  2308. {
  2309. "name": "league/commonmark",
  2310. "version": "1.6.6",
  2311. "source": {
  2312. "type": "git",
  2313. "url": "https://github.com/thephpleague/commonmark.git",
  2314. "reference": "c4228d11e30d7493c6836d20872f9582d8ba6dcf"
  2315. },
  2316. "dist": {
  2317. "type": "zip",
  2318. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/c4228d11e30d7493c6836d20872f9582d8ba6dcf",
  2319. "reference": "c4228d11e30d7493c6836d20872f9582d8ba6dcf",
  2320. "shasum": "",
  2321. "mirrors": [
  2322. {
  2323. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2324. "preferred": true
  2325. }
  2326. ]
  2327. },
  2328. "require": {
  2329. "ext-mbstring": "*",
  2330. "php": "^7.1 || ^8.0"
  2331. },
  2332. "conflict": {
  2333. "scrutinizer/ocular": "1.7.*"
  2334. },
  2335. "require-dev": {
  2336. "cebe/markdown": "~1.0",
  2337. "commonmark/commonmark.js": "0.29.2",
  2338. "erusev/parsedown": "~1.0",
  2339. "ext-json": "*",
  2340. "github/gfm": "0.29.0",
  2341. "michelf/php-markdown": "~1.4",
  2342. "mikehaertl/php-shellcommand": "^1.4",
  2343. "phpstan/phpstan": "^0.12.90",
  2344. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.2",
  2345. "scrutinizer/ocular": "^1.5",
  2346. "symfony/finder": "^4.2"
  2347. },
  2348. "bin": [
  2349. "bin/commonmark"
  2350. ],
  2351. "type": "library",
  2352. "autoload": {
  2353. "psr-4": {
  2354. "League\\CommonMark\\": "src"
  2355. }
  2356. },
  2357. "notification-url": "https://packagist.org/downloads/",
  2358. "license": [
  2359. "BSD-3-Clause"
  2360. ],
  2361. "authors": [
  2362. {
  2363. "name": "Colin O'Dell",
  2364. "email": "colinodell@gmail.com",
  2365. "homepage": "https://www.colinodell.com",
  2366. "role": "Lead Developer"
  2367. }
  2368. ],
  2369. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and Github-Flavored Markdown (GFM)",
  2370. "homepage": "https://commonmark.thephpleague.com",
  2371. "keywords": [
  2372. "commonmark",
  2373. "flavored",
  2374. "gfm",
  2375. "github",
  2376. "github-flavored",
  2377. "markdown",
  2378. "md",
  2379. "parser"
  2380. ],
  2381. "support": {
  2382. "docs": "https://commonmark.thephpleague.com/",
  2383. "issues": "https://github.com/thephpleague/commonmark/issues",
  2384. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2385. "source": "https://github.com/thephpleague/commonmark"
  2386. },
  2387. "funding": [
  2388. {
  2389. "url": "https://enjoy.gitstore.app/repositories/thephpleague/commonmark",
  2390. "type": "custom"
  2391. },
  2392. {
  2393. "url": "https://www.colinodell.com/sponsor",
  2394. "type": "custom"
  2395. },
  2396. {
  2397. "url": "https://www.paypal.me/colinpodell/10.00",
  2398. "type": "custom"
  2399. },
  2400. {
  2401. "url": "https://github.com/colinodell",
  2402. "type": "github"
  2403. },
  2404. {
  2405. "url": "https://www.patreon.com/colinodell",
  2406. "type": "patreon"
  2407. },
  2408. {
  2409. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2410. "type": "tidelift"
  2411. }
  2412. ],
  2413. "time": "2021-07-17T17:13:23+00:00"
  2414. },
  2415. {
  2416. "name": "league/flysystem",
  2417. "version": "1.1.5",
  2418. "source": {
  2419. "type": "git",
  2420. "url": "https://github.com/thephpleague/flysystem.git",
  2421. "reference": "18634df356bfd4119fe3d6156bdb990c414c14ea"
  2422. },
  2423. "dist": {
  2424. "type": "zip",
  2425. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/18634df356bfd4119fe3d6156bdb990c414c14ea",
  2426. "reference": "18634df356bfd4119fe3d6156bdb990c414c14ea",
  2427. "shasum": "",
  2428. "mirrors": [
  2429. {
  2430. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2431. "preferred": true
  2432. }
  2433. ]
  2434. },
  2435. "require": {
  2436. "ext-fileinfo": "*",
  2437. "league/mime-type-detection": "^1.3",
  2438. "php": "^7.2.5 || ^8.0"
  2439. },
  2440. "conflict": {
  2441. "league/flysystem-sftp": "<1.0.6"
  2442. },
  2443. "require-dev": {
  2444. "phpspec/prophecy": "^1.11.1",
  2445. "phpunit/phpunit": "^8.5.8"
  2446. },
  2447. "suggest": {
  2448. "ext-ftp": "Allows you to use FTP server storage",
  2449. "ext-openssl": "Allows you to use FTPS server storage",
  2450. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  2451. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  2452. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  2453. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2454. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  2455. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2456. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  2457. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2458. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2459. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2460. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2461. },
  2462. "type": "library",
  2463. "extra": {
  2464. "branch-alias": {
  2465. "dev-master": "1.1-dev"
  2466. }
  2467. },
  2468. "autoload": {
  2469. "psr-4": {
  2470. "League\\Flysystem\\": "src/"
  2471. }
  2472. },
  2473. "notification-url": "https://packagist.org/downloads/",
  2474. "license": [
  2475. "MIT"
  2476. ],
  2477. "authors": [
  2478. {
  2479. "name": "Frank de Jonge",
  2480. "email": "info@frenky.net"
  2481. }
  2482. ],
  2483. "description": "Filesystem abstraction: Many filesystems, one API.",
  2484. "keywords": [
  2485. "Cloud Files",
  2486. "WebDAV",
  2487. "abstraction",
  2488. "aws",
  2489. "cloud",
  2490. "copy.com",
  2491. "dropbox",
  2492. "file systems",
  2493. "files",
  2494. "filesystem",
  2495. "filesystems",
  2496. "ftp",
  2497. "rackspace",
  2498. "remote",
  2499. "s3",
  2500. "sftp",
  2501. "storage"
  2502. ],
  2503. "support": {
  2504. "issues": "https://github.com/thephpleague/flysystem/issues",
  2505. "source": "https://github.com/thephpleague/flysystem/tree/1.1.5"
  2506. },
  2507. "funding": [
  2508. {
  2509. "url": "https://offset.earth/frankdejonge",
  2510. "type": "other"
  2511. }
  2512. ],
  2513. "time": "2021-08-17T13:49:42+00:00"
  2514. },
  2515. {
  2516. "name": "league/mime-type-detection",
  2517. "version": "1.8.0",
  2518. "source": {
  2519. "type": "git",
  2520. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2521. "reference": "b38b25d7b372e9fddb00335400467b223349fd7e"
  2522. },
  2523. "dist": {
  2524. "type": "zip",
  2525. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/b38b25d7b372e9fddb00335400467b223349fd7e",
  2526. "reference": "b38b25d7b372e9fddb00335400467b223349fd7e",
  2527. "shasum": "",
  2528. "mirrors": [
  2529. {
  2530. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2531. "preferred": true
  2532. }
  2533. ]
  2534. },
  2535. "require": {
  2536. "ext-fileinfo": "*",
  2537. "php": "^7.2 || ^8.0"
  2538. },
  2539. "require-dev": {
  2540. "friendsofphp/php-cs-fixer": "^2.18",
  2541. "phpstan/phpstan": "^0.12.68",
  2542. "phpunit/phpunit": "^8.5.8 || ^9.3"
  2543. },
  2544. "type": "library",
  2545. "autoload": {
  2546. "psr-4": {
  2547. "League\\MimeTypeDetection\\": "src"
  2548. }
  2549. },
  2550. "notification-url": "https://packagist.org/downloads/",
  2551. "license": [
  2552. "MIT"
  2553. ],
  2554. "authors": [
  2555. {
  2556. "name": "Frank de Jonge",
  2557. "email": "info@frankdejonge.nl"
  2558. }
  2559. ],
  2560. "description": "Mime-type detection for Flysystem",
  2561. "support": {
  2562. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2563. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.8.0"
  2564. },
  2565. "funding": [
  2566. {
  2567. "url": "https://github.com/frankdejonge",
  2568. "type": "github"
  2569. },
  2570. {
  2571. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2572. "type": "tidelift"
  2573. }
  2574. ],
  2575. "time": "2021-09-25T08:23:19+00:00"
  2576. },
  2577. {
  2578. "name": "maatwebsite/excel",
  2579. "version": "3.1.32",
  2580. "source": {
  2581. "type": "git",
  2582. "url": "https://github.com/Maatwebsite/Laravel-Excel.git",
  2583. "reference": "9dc29b63a77fb7f2f514ef754af3a1b57e83cadf"
  2584. },
  2585. "dist": {
  2586. "type": "zip",
  2587. "url": "https://api.github.com/repos/Maatwebsite/Laravel-Excel/zipball/9dc29b63a77fb7f2f514ef754af3a1b57e83cadf",
  2588. "reference": "9dc29b63a77fb7f2f514ef754af3a1b57e83cadf",
  2589. "shasum": "",
  2590. "mirrors": [
  2591. {
  2592. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2593. "preferred": true
  2594. }
  2595. ]
  2596. },
  2597. "require": {
  2598. "ext-json": "*",
  2599. "illuminate/support": "5.8.*|^6.0|^7.0|^8.0",
  2600. "php": "^7.0|^8.0",
  2601. "phpoffice/phpspreadsheet": "^1.18"
  2602. },
  2603. "require-dev": {
  2604. "orchestra/testbench": "^6.0",
  2605. "predis/predis": "^1.1"
  2606. },
  2607. "type": "library",
  2608. "extra": {
  2609. "laravel": {
  2610. "providers": [
  2611. "Maatwebsite\\Excel\\ExcelServiceProvider"
  2612. ],
  2613. "aliases": {
  2614. "Excel": "Maatwebsite\\Excel\\Facades\\Excel"
  2615. }
  2616. }
  2617. },
  2618. "autoload": {
  2619. "psr-4": {
  2620. "Maatwebsite\\Excel\\": "src/"
  2621. }
  2622. },
  2623. "notification-url": "https://packagist.org/downloads/",
  2624. "license": [
  2625. "MIT"
  2626. ],
  2627. "authors": [
  2628. {
  2629. "name": "Patrick Brouwers",
  2630. "email": "patrick@maatwebsite.nl"
  2631. }
  2632. ],
  2633. "description": "Supercharged Excel exports and imports in Laravel",
  2634. "keywords": [
  2635. "PHPExcel",
  2636. "batch",
  2637. "csv",
  2638. "excel",
  2639. "export",
  2640. "import",
  2641. "laravel",
  2642. "php",
  2643. "phpspreadsheet"
  2644. ],
  2645. "support": {
  2646. "issues": "https://github.com/Maatwebsite/Laravel-Excel/issues",
  2647. "source": "https://github.com/Maatwebsite/Laravel-Excel/tree/3.1.32"
  2648. },
  2649. "funding": [
  2650. {
  2651. "url": "https://laravel-excel.com/commercial-support",
  2652. "type": "custom"
  2653. },
  2654. {
  2655. "url": "https://github.com/patrickbrouwers",
  2656. "type": "github"
  2657. }
  2658. ],
  2659. "time": "2021-07-08T10:11:21+00:00"
  2660. },
  2661. {
  2662. "name": "maennchen/zipstream-php",
  2663. "version": "2.1.0",
  2664. "source": {
  2665. "type": "git",
  2666. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  2667. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58"
  2668. },
  2669. "dist": {
  2670. "type": "zip",
  2671. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2672. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2673. "shasum": "",
  2674. "mirrors": [
  2675. {
  2676. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2677. "preferred": true
  2678. }
  2679. ]
  2680. },
  2681. "require": {
  2682. "myclabs/php-enum": "^1.5",
  2683. "php": ">= 7.1",
  2684. "psr/http-message": "^1.0",
  2685. "symfony/polyfill-mbstring": "^1.0"
  2686. },
  2687. "require-dev": {
  2688. "ext-zip": "*",
  2689. "guzzlehttp/guzzle": ">= 6.3",
  2690. "mikey179/vfsstream": "^1.6",
  2691. "phpunit/phpunit": ">= 7.5"
  2692. },
  2693. "type": "library",
  2694. "autoload": {
  2695. "psr-4": {
  2696. "ZipStream\\": "src/"
  2697. }
  2698. },
  2699. "notification-url": "https://packagist.org/downloads/",
  2700. "license": [
  2701. "MIT"
  2702. ],
  2703. "authors": [
  2704. {
  2705. "name": "Paul Duncan",
  2706. "email": "pabs@pablotron.org"
  2707. },
  2708. {
  2709. "name": "Jonatan Männchen",
  2710. "email": "jonatan@maennchen.ch"
  2711. },
  2712. {
  2713. "name": "Jesse Donat",
  2714. "email": "donatj@gmail.com"
  2715. },
  2716. {
  2717. "name": "András Kolesár",
  2718. "email": "kolesar@kolesar.hu"
  2719. }
  2720. ],
  2721. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  2722. "keywords": [
  2723. "stream",
  2724. "zip"
  2725. ],
  2726. "support": {
  2727. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  2728. "source": "https://github.com/maennchen/ZipStream-PHP/tree/master"
  2729. },
  2730. "funding": [
  2731. {
  2732. "url": "https://opencollective.com/zipstream",
  2733. "type": "open_collective"
  2734. }
  2735. ],
  2736. "time": "2020-05-30T13:11:16+00:00"
  2737. },
  2738. {
  2739. "name": "markbaker/complex",
  2740. "version": "2.0.3",
  2741. "source": {
  2742. "type": "git",
  2743. "url": "https://github.com/MarkBaker/PHPComplex.git",
  2744. "reference": "6f724d7e04606fd8adaa4e3bb381c3e9db09c946"
  2745. },
  2746. "dist": {
  2747. "type": "zip",
  2748. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/6f724d7e04606fd8adaa4e3bb381c3e9db09c946",
  2749. "reference": "6f724d7e04606fd8adaa4e3bb381c3e9db09c946",
  2750. "shasum": "",
  2751. "mirrors": [
  2752. {
  2753. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2754. "preferred": true
  2755. }
  2756. ]
  2757. },
  2758. "require": {
  2759. "php": "^7.2 || ^8.0"
  2760. },
  2761. "require-dev": {
  2762. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2763. "phpcompatibility/php-compatibility": "^9.0",
  2764. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  2765. "squizlabs/php_codesniffer": "^3.4"
  2766. },
  2767. "type": "library",
  2768. "autoload": {
  2769. "psr-4": {
  2770. "Complex\\": "classes/src/"
  2771. },
  2772. "files": [
  2773. "classes/src/functions/abs.php",
  2774. "classes/src/functions/acos.php",
  2775. "classes/src/functions/acosh.php",
  2776. "classes/src/functions/acot.php",
  2777. "classes/src/functions/acoth.php",
  2778. "classes/src/functions/acsc.php",
  2779. "classes/src/functions/acsch.php",
  2780. "classes/src/functions/argument.php",
  2781. "classes/src/functions/asec.php",
  2782. "classes/src/functions/asech.php",
  2783. "classes/src/functions/asin.php",
  2784. "classes/src/functions/asinh.php",
  2785. "classes/src/functions/atan.php",
  2786. "classes/src/functions/atanh.php",
  2787. "classes/src/functions/conjugate.php",
  2788. "classes/src/functions/cos.php",
  2789. "classes/src/functions/cosh.php",
  2790. "classes/src/functions/cot.php",
  2791. "classes/src/functions/coth.php",
  2792. "classes/src/functions/csc.php",
  2793. "classes/src/functions/csch.php",
  2794. "classes/src/functions/exp.php",
  2795. "classes/src/functions/inverse.php",
  2796. "classes/src/functions/ln.php",
  2797. "classes/src/functions/log2.php",
  2798. "classes/src/functions/log10.php",
  2799. "classes/src/functions/negative.php",
  2800. "classes/src/functions/pow.php",
  2801. "classes/src/functions/rho.php",
  2802. "classes/src/functions/sec.php",
  2803. "classes/src/functions/sech.php",
  2804. "classes/src/functions/sin.php",
  2805. "classes/src/functions/sinh.php",
  2806. "classes/src/functions/sqrt.php",
  2807. "classes/src/functions/tan.php",
  2808. "classes/src/functions/tanh.php",
  2809. "classes/src/functions/theta.php",
  2810. "classes/src/operations/add.php",
  2811. "classes/src/operations/subtract.php",
  2812. "classes/src/operations/multiply.php",
  2813. "classes/src/operations/divideby.php",
  2814. "classes/src/operations/divideinto.php"
  2815. ]
  2816. },
  2817. "notification-url": "https://packagist.org/downloads/",
  2818. "license": [
  2819. "MIT"
  2820. ],
  2821. "authors": [
  2822. {
  2823. "name": "Mark Baker",
  2824. "email": "mark@lange.demon.co.uk"
  2825. }
  2826. ],
  2827. "description": "PHP Class for working with complex numbers",
  2828. "homepage": "https://github.com/MarkBaker/PHPComplex",
  2829. "keywords": [
  2830. "complex",
  2831. "mathematics"
  2832. ],
  2833. "support": {
  2834. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  2835. "source": "https://github.com/MarkBaker/PHPComplex/tree/2.0.3"
  2836. },
  2837. "time": "2021-06-02T09:44:11+00:00"
  2838. },
  2839. {
  2840. "name": "markbaker/matrix",
  2841. "version": "2.1.3",
  2842. "source": {
  2843. "type": "git",
  2844. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  2845. "reference": "174395a901b5ba0925f1d790fa91bab531074b61"
  2846. },
  2847. "dist": {
  2848. "type": "zip",
  2849. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/174395a901b5ba0925f1d790fa91bab531074b61",
  2850. "reference": "174395a901b5ba0925f1d790fa91bab531074b61",
  2851. "shasum": "",
  2852. "mirrors": [
  2853. {
  2854. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2855. "preferred": true
  2856. }
  2857. ]
  2858. },
  2859. "require": {
  2860. "php": "^7.1 || ^8.0"
  2861. },
  2862. "require-dev": {
  2863. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2864. "phpcompatibility/php-compatibility": "^9.0",
  2865. "phpdocumentor/phpdocumentor": "2.*",
  2866. "phploc/phploc": "^4.0",
  2867. "phpmd/phpmd": "2.*",
  2868. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  2869. "sebastian/phpcpd": "^4.0",
  2870. "squizlabs/php_codesniffer": "^3.4"
  2871. },
  2872. "type": "library",
  2873. "autoload": {
  2874. "psr-4": {
  2875. "Matrix\\": "classes/src/"
  2876. },
  2877. "files": [
  2878. "classes/src/Functions/adjoint.php",
  2879. "classes/src/Functions/antidiagonal.php",
  2880. "classes/src/Functions/cofactors.php",
  2881. "classes/src/Functions/determinant.php",
  2882. "classes/src/Functions/diagonal.php",
  2883. "classes/src/Functions/identity.php",
  2884. "classes/src/Functions/inverse.php",
  2885. "classes/src/Functions/minors.php",
  2886. "classes/src/Functions/trace.php",
  2887. "classes/src/Functions/transpose.php",
  2888. "classes/src/Operations/add.php",
  2889. "classes/src/Operations/directsum.php",
  2890. "classes/src/Operations/subtract.php",
  2891. "classes/src/Operations/multiply.php",
  2892. "classes/src/Operations/divideby.php",
  2893. "classes/src/Operations/divideinto.php"
  2894. ]
  2895. },
  2896. "notification-url": "https://packagist.org/downloads/",
  2897. "license": [
  2898. "MIT"
  2899. ],
  2900. "authors": [
  2901. {
  2902. "name": "Mark Baker",
  2903. "email": "mark@demon-angel.eu"
  2904. }
  2905. ],
  2906. "description": "PHP Class for working with matrices",
  2907. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  2908. "keywords": [
  2909. "mathematics",
  2910. "matrix",
  2911. "vector"
  2912. ],
  2913. "support": {
  2914. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  2915. "source": "https://github.com/MarkBaker/PHPMatrix/tree/2.1.3"
  2916. },
  2917. "time": "2021-05-25T15:42:17+00:00"
  2918. },
  2919. {
  2920. "name": "monolog/monolog",
  2921. "version": "2.3.5",
  2922. "source": {
  2923. "type": "git",
  2924. "url": "https://github.com/Seldaek/monolog.git",
  2925. "reference": "fd4380d6fc37626e2f799f29d91195040137eba9"
  2926. },
  2927. "dist": {
  2928. "type": "zip",
  2929. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/fd4380d6fc37626e2f799f29d91195040137eba9",
  2930. "reference": "fd4380d6fc37626e2f799f29d91195040137eba9",
  2931. "shasum": "",
  2932. "mirrors": [
  2933. {
  2934. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2935. "preferred": true
  2936. }
  2937. ]
  2938. },
  2939. "require": {
  2940. "php": ">=7.2",
  2941. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  2942. },
  2943. "provide": {
  2944. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  2945. },
  2946. "require-dev": {
  2947. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2948. "doctrine/couchdb": "~1.0@dev",
  2949. "elasticsearch/elasticsearch": "^7",
  2950. "graylog2/gelf-php": "^1.4.2",
  2951. "mongodb/mongodb": "^1.8",
  2952. "php-amqplib/php-amqplib": "~2.4 || ^3",
  2953. "php-console/php-console": "^3.1.3",
  2954. "phpspec/prophecy": "^1.6.1",
  2955. "phpstan/phpstan": "^0.12.91",
  2956. "phpunit/phpunit": "^8.5",
  2957. "predis/predis": "^1.1",
  2958. "rollbar/rollbar": "^1.3",
  2959. "ruflin/elastica": ">=0.90@dev",
  2960. "swiftmailer/swiftmailer": "^5.3|^6.0"
  2961. },
  2962. "suggest": {
  2963. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2964. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2965. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2966. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2967. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  2968. "ext-mbstring": "Allow to work properly with unicode symbols",
  2969. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2970. "ext-openssl": "Required to send log messages using SSL",
  2971. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  2972. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2973. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2974. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2975. "php-console/php-console": "Allow sending log messages to Google Chrome",
  2976. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2977. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2978. },
  2979. "type": "library",
  2980. "extra": {
  2981. "branch-alias": {
  2982. "dev-main": "2.x-dev"
  2983. }
  2984. },
  2985. "autoload": {
  2986. "psr-4": {
  2987. "Monolog\\": "src/Monolog"
  2988. }
  2989. },
  2990. "notification-url": "https://packagist.org/downloads/",
  2991. "license": [
  2992. "MIT"
  2993. ],
  2994. "authors": [
  2995. {
  2996. "name": "Jordi Boggiano",
  2997. "email": "j.boggiano@seld.be",
  2998. "homepage": "https://seld.be"
  2999. }
  3000. ],
  3001. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  3002. "homepage": "https://github.com/Seldaek/monolog",
  3003. "keywords": [
  3004. "log",
  3005. "logging",
  3006. "psr-3"
  3007. ],
  3008. "support": {
  3009. "issues": "https://github.com/Seldaek/monolog/issues",
  3010. "source": "https://github.com/Seldaek/monolog/tree/2.3.5"
  3011. },
  3012. "funding": [
  3013. {
  3014. "url": "https://github.com/Seldaek",
  3015. "type": "github"
  3016. },
  3017. {
  3018. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  3019. "type": "tidelift"
  3020. }
  3021. ],
  3022. "time": "2021-10-01T21:08:31+00:00"
  3023. },
  3024. {
  3025. "name": "myclabs/php-enum",
  3026. "version": "1.8.3",
  3027. "source": {
  3028. "type": "git",
  3029. "url": "https://github.com/myclabs/php-enum.git",
  3030. "reference": "b942d263c641ddb5190929ff840c68f78713e937"
  3031. },
  3032. "dist": {
  3033. "type": "zip",
  3034. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/b942d263c641ddb5190929ff840c68f78713e937",
  3035. "reference": "b942d263c641ddb5190929ff840c68f78713e937",
  3036. "shasum": "",
  3037. "mirrors": [
  3038. {
  3039. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3040. "preferred": true
  3041. }
  3042. ]
  3043. },
  3044. "require": {
  3045. "ext-json": "*",
  3046. "php": "^7.3 || ^8.0"
  3047. },
  3048. "require-dev": {
  3049. "phpunit/phpunit": "^9.5",
  3050. "squizlabs/php_codesniffer": "1.*",
  3051. "vimeo/psalm": "^4.6.2"
  3052. },
  3053. "type": "library",
  3054. "autoload": {
  3055. "psr-4": {
  3056. "MyCLabs\\Enum\\": "src/"
  3057. }
  3058. },
  3059. "notification-url": "https://packagist.org/downloads/",
  3060. "license": [
  3061. "MIT"
  3062. ],
  3063. "authors": [
  3064. {
  3065. "name": "PHP Enum contributors",
  3066. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  3067. }
  3068. ],
  3069. "description": "PHP Enum implementation",
  3070. "homepage": "http://github.com/myclabs/php-enum",
  3071. "keywords": [
  3072. "enum"
  3073. ],
  3074. "support": {
  3075. "issues": "https://github.com/myclabs/php-enum/issues",
  3076. "source": "https://github.com/myclabs/php-enum/tree/1.8.3"
  3077. },
  3078. "funding": [
  3079. {
  3080. "url": "https://github.com/mnapoli",
  3081. "type": "github"
  3082. },
  3083. {
  3084. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  3085. "type": "tidelift"
  3086. }
  3087. ],
  3088. "time": "2021-07-05T08:18:36+00:00"
  3089. },
  3090. {
  3091. "name": "nesbot/carbon",
  3092. "version": "2.53.1",
  3093. "source": {
  3094. "type": "git",
  3095. "url": "https://github.com/briannesbitt/Carbon.git",
  3096. "reference": "f4655858a784988f880c1b8c7feabbf02dfdf045"
  3097. },
  3098. "dist": {
  3099. "type": "zip",
  3100. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/f4655858a784988f880c1b8c7feabbf02dfdf045",
  3101. "reference": "f4655858a784988f880c1b8c7feabbf02dfdf045",
  3102. "shasum": "",
  3103. "mirrors": [
  3104. {
  3105. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3106. "preferred": true
  3107. }
  3108. ]
  3109. },
  3110. "require": {
  3111. "ext-json": "*",
  3112. "php": "^7.1.8 || ^8.0",
  3113. "symfony/polyfill-mbstring": "^1.0",
  3114. "symfony/polyfill-php80": "^1.16",
  3115. "symfony/translation": "^3.4 || ^4.0 || ^5.0"
  3116. },
  3117. "require-dev": {
  3118. "doctrine/orm": "^2.7",
  3119. "friendsofphp/php-cs-fixer": "^3.0",
  3120. "kylekatarnls/multi-tester": "^2.0",
  3121. "phpmd/phpmd": "^2.9",
  3122. "phpstan/extension-installer": "^1.0",
  3123. "phpstan/phpstan": "^0.12.54",
  3124. "phpunit/phpunit": "^7.5.20 || ^8.5.14",
  3125. "squizlabs/php_codesniffer": "^3.4"
  3126. },
  3127. "bin": [
  3128. "bin/carbon"
  3129. ],
  3130. "type": "library",
  3131. "extra": {
  3132. "branch-alias": {
  3133. "dev-3.x": "3.x-dev",
  3134. "dev-master": "2.x-dev"
  3135. },
  3136. "laravel": {
  3137. "providers": [
  3138. "Carbon\\Laravel\\ServiceProvider"
  3139. ]
  3140. },
  3141. "phpstan": {
  3142. "includes": [
  3143. "extension.neon"
  3144. ]
  3145. }
  3146. },
  3147. "autoload": {
  3148. "psr-4": {
  3149. "Carbon\\": "src/Carbon/"
  3150. }
  3151. },
  3152. "notification-url": "https://packagist.org/downloads/",
  3153. "license": [
  3154. "MIT"
  3155. ],
  3156. "authors": [
  3157. {
  3158. "name": "Brian Nesbitt",
  3159. "email": "brian@nesbot.com",
  3160. "homepage": "https://markido.com"
  3161. },
  3162. {
  3163. "name": "kylekatarnls",
  3164. "homepage": "https://github.com/kylekatarnls"
  3165. }
  3166. ],
  3167. "description": "An API extension for DateTime that supports 281 different languages.",
  3168. "homepage": "https://carbon.nesbot.com",
  3169. "keywords": [
  3170. "date",
  3171. "datetime",
  3172. "time"
  3173. ],
  3174. "support": {
  3175. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3176. "source": "https://github.com/briannesbitt/Carbon"
  3177. },
  3178. "funding": [
  3179. {
  3180. "url": "https://opencollective.com/Carbon",
  3181. "type": "open_collective"
  3182. },
  3183. {
  3184. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  3185. "type": "tidelift"
  3186. }
  3187. ],
  3188. "time": "2021-09-06T09:29:23+00:00"
  3189. },
  3190. {
  3191. "name": "nikic/php-parser",
  3192. "version": "v4.13.0",
  3193. "source": {
  3194. "type": "git",
  3195. "url": "https://github.com/nikic/PHP-Parser.git",
  3196. "reference": "50953a2691a922aa1769461637869a0a2faa3f53"
  3197. },
  3198. "dist": {
  3199. "type": "zip",
  3200. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/50953a2691a922aa1769461637869a0a2faa3f53",
  3201. "reference": "50953a2691a922aa1769461637869a0a2faa3f53",
  3202. "shasum": "",
  3203. "mirrors": [
  3204. {
  3205. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3206. "preferred": true
  3207. }
  3208. ]
  3209. },
  3210. "require": {
  3211. "ext-tokenizer": "*",
  3212. "php": ">=7.0"
  3213. },
  3214. "require-dev": {
  3215. "ircmaxell/php-yacc": "^0.0.7",
  3216. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  3217. },
  3218. "bin": [
  3219. "bin/php-parse"
  3220. ],
  3221. "type": "library",
  3222. "extra": {
  3223. "branch-alias": {
  3224. "dev-master": "4.9-dev"
  3225. }
  3226. },
  3227. "autoload": {
  3228. "psr-4": {
  3229. "PhpParser\\": "lib/PhpParser"
  3230. }
  3231. },
  3232. "notification-url": "https://packagist.org/downloads/",
  3233. "license": [
  3234. "BSD-3-Clause"
  3235. ],
  3236. "authors": [
  3237. {
  3238. "name": "Nikita Popov"
  3239. }
  3240. ],
  3241. "description": "A PHP parser written in PHP",
  3242. "keywords": [
  3243. "parser",
  3244. "php"
  3245. ],
  3246. "support": {
  3247. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3248. "source": "https://github.com/nikic/PHP-Parser/tree/v4.13.0"
  3249. },
  3250. "time": "2021-09-20T12:20:58+00:00"
  3251. },
  3252. {
  3253. "name": "opis/closure",
  3254. "version": "3.6.2",
  3255. "source": {
  3256. "type": "git",
  3257. "url": "https://github.com/opis/closure.git",
  3258. "reference": "06e2ebd25f2869e54a306dda991f7db58066f7f6"
  3259. },
  3260. "dist": {
  3261. "type": "zip",
  3262. "url": "https://api.github.com/repos/opis/closure/zipball/06e2ebd25f2869e54a306dda991f7db58066f7f6",
  3263. "reference": "06e2ebd25f2869e54a306dda991f7db58066f7f6",
  3264. "shasum": "",
  3265. "mirrors": [
  3266. {
  3267. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3268. "preferred": true
  3269. }
  3270. ]
  3271. },
  3272. "require": {
  3273. "php": "^5.4 || ^7.0 || ^8.0"
  3274. },
  3275. "require-dev": {
  3276. "jeremeamia/superclosure": "^2.0",
  3277. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  3278. },
  3279. "type": "library",
  3280. "extra": {
  3281. "branch-alias": {
  3282. "dev-master": "3.6.x-dev"
  3283. }
  3284. },
  3285. "autoload": {
  3286. "psr-4": {
  3287. "Opis\\Closure\\": "src/"
  3288. },
  3289. "files": [
  3290. "functions.php"
  3291. ]
  3292. },
  3293. "notification-url": "https://packagist.org/downloads/",
  3294. "license": [
  3295. "MIT"
  3296. ],
  3297. "authors": [
  3298. {
  3299. "name": "Marius Sarca",
  3300. "email": "marius.sarca@gmail.com"
  3301. },
  3302. {
  3303. "name": "Sorin Sarca",
  3304. "email": "sarca_sorin@hotmail.com"
  3305. }
  3306. ],
  3307. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  3308. "homepage": "https://opis.io/closure",
  3309. "keywords": [
  3310. "anonymous functions",
  3311. "closure",
  3312. "function",
  3313. "serializable",
  3314. "serialization",
  3315. "serialize"
  3316. ],
  3317. "support": {
  3318. "issues": "https://github.com/opis/closure/issues",
  3319. "source": "https://github.com/opis/closure/tree/3.6.2"
  3320. },
  3321. "time": "2021-04-09T13:42:10+00:00"
  3322. },
  3323. {
  3324. "name": "oursdreams/export",
  3325. "version": "0.0.7",
  3326. "source": {
  3327. "type": "git",
  3328. "url": "https://github.com/oursdreams/export.git",
  3329. "reference": "ef7694ac342ff18742c17ddbce3a85076cac17e3"
  3330. },
  3331. "dist": {
  3332. "type": "zip",
  3333. "url": "https://api.github.com/repos/oursdreams/export/zipball/ef7694ac342ff18742c17ddbce3a85076cac17e3",
  3334. "reference": "ef7694ac342ff18742c17ddbce3a85076cac17e3",
  3335. "shasum": "",
  3336. "mirrors": [
  3337. {
  3338. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3339. "preferred": true
  3340. }
  3341. ]
  3342. },
  3343. "type": "library",
  3344. "extra": {
  3345. "laravel": {
  3346. "providers": [
  3347. "Oursdreams\\Export\\ExportServiceProvider"
  3348. ]
  3349. }
  3350. },
  3351. "autoload": {
  3352. "psr-4": {
  3353. "Oursdreams\\Export\\": "./src"
  3354. }
  3355. },
  3356. "notification-url": "https://packagist.org/downloads/",
  3357. "license": [
  3358. "MIT"
  3359. ],
  3360. "authors": [
  3361. {
  3362. "name": "oursdreams",
  3363. "email": "z1792524653@163.com"
  3364. }
  3365. ],
  3366. "description": "A simple export plug-in",
  3367. "support": {
  3368. "issues": "https://github.com/oursdreams/export/issues",
  3369. "source": "https://github.com/oursdreams/export/tree/0.0.7"
  3370. },
  3371. "time": "2021-06-01T03:01:13+00:00"
  3372. },
  3373. {
  3374. "name": "overtrue/laravel-pinyin",
  3375. "version": "4.0.0",
  3376. "source": {
  3377. "type": "git",
  3378. "url": "https://github.com/overtrue/laravel-pinyin.git",
  3379. "reference": "c0b15aa49eac08bff80122010b91a0b3fe0f1e21"
  3380. },
  3381. "dist": {
  3382. "type": "zip",
  3383. "url": "https://api.github.com/repos/overtrue/laravel-pinyin/zipball/c0b15aa49eac08bff80122010b91a0b3fe0f1e21",
  3384. "reference": "c0b15aa49eac08bff80122010b91a0b3fe0f1e21",
  3385. "shasum": "",
  3386. "mirrors": [
  3387. {
  3388. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3389. "preferred": true
  3390. }
  3391. ]
  3392. },
  3393. "require": {
  3394. "overtrue/pinyin": "~4.0"
  3395. },
  3396. "type": "library",
  3397. "extra": {
  3398. "laravel": {
  3399. "providers": [
  3400. "Overtrue\\LaravelPinyin\\ServiceProvider"
  3401. ],
  3402. "aliases": {
  3403. "Pinyin": "Overtrue\\LaravelPinyin\\Facades\\Pinyin"
  3404. }
  3405. }
  3406. },
  3407. "autoload": {
  3408. "psr-4": {
  3409. "Overtrue\\LaravelPinyin\\": "src/"
  3410. },
  3411. "files": [
  3412. "src/helpers.php"
  3413. ]
  3414. },
  3415. "notification-url": "https://packagist.org/downloads/",
  3416. "license": [
  3417. "MIT"
  3418. ],
  3419. "authors": [
  3420. {
  3421. "name": "overtrue",
  3422. "email": "anzhengchao@gmail.com"
  3423. }
  3424. ],
  3425. "description": "Chinese to Pinyin translator.",
  3426. "keywords": [
  3427. "Chinese",
  3428. "Pinyin",
  3429. "laravel",
  3430. "overtrue"
  3431. ],
  3432. "support": {
  3433. "issues": "https://github.com/overtrue/laravel-pinyin/issues",
  3434. "source": "https://github.com/overtrue/laravel-pinyin/tree/master"
  3435. },
  3436. "time": "2018-10-10T09:02:46+00:00"
  3437. },
  3438. {
  3439. "name": "overtrue/pinyin",
  3440. "version": "4.0.8",
  3441. "source": {
  3442. "type": "git",
  3443. "url": "https://github.com/overtrue/pinyin.git",
  3444. "reference": "04bdb4d33d50e8fb1aa5a824064c5151c4b15dc2"
  3445. },
  3446. "dist": {
  3447. "type": "zip",
  3448. "url": "https://api.github.com/repos/overtrue/pinyin/zipball/04bdb4d33d50e8fb1aa5a824064c5151c4b15dc2",
  3449. "reference": "04bdb4d33d50e8fb1aa5a824064c5151c4b15dc2",
  3450. "shasum": "",
  3451. "mirrors": [
  3452. {
  3453. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3454. "preferred": true
  3455. }
  3456. ]
  3457. },
  3458. "require": {
  3459. "php": ">=7.1"
  3460. },
  3461. "require-dev": {
  3462. "brainmaestro/composer-git-hooks": "^2.7",
  3463. "friendsofphp/php-cs-fixer": "^2.16",
  3464. "phpunit/phpunit": "~8.0"
  3465. },
  3466. "type": "library",
  3467. "extra": {
  3468. "hooks": {
  3469. "pre-commit": [
  3470. "composer test",
  3471. "composer fix-style"
  3472. ],
  3473. "pre-push": [
  3474. "composer test",
  3475. "composer check-style"
  3476. ]
  3477. }
  3478. },
  3479. "autoload": {
  3480. "psr-4": {
  3481. "Overtrue\\Pinyin\\": "src/"
  3482. },
  3483. "files": [
  3484. "src/const.php"
  3485. ]
  3486. },
  3487. "notification-url": "https://packagist.org/downloads/",
  3488. "license": [
  3489. "MIT"
  3490. ],
  3491. "authors": [
  3492. {
  3493. "name": "overtrue",
  3494. "email": "anzhengchao@gmail.com",
  3495. "homepage": "http://github.com/overtrue"
  3496. }
  3497. ],
  3498. "description": "Chinese to pinyin translator.",
  3499. "homepage": "https://github.com/overtrue/pinyin",
  3500. "keywords": [
  3501. "Chinese",
  3502. "Pinyin",
  3503. "cn2pinyin"
  3504. ],
  3505. "support": {
  3506. "issues": "https://github.com/overtrue/pinyin/issues",
  3507. "source": "https://github.com/overtrue/pinyin/tree/4.0.8"
  3508. },
  3509. "funding": [
  3510. {
  3511. "url": "https://www.patreon.com/overtrue",
  3512. "type": "patreon"
  3513. }
  3514. ],
  3515. "time": "2021-07-19T03:43:32+00:00"
  3516. },
  3517. {
  3518. "name": "paragonie/random_compat",
  3519. "version": "v9.99.100",
  3520. "source": {
  3521. "type": "git",
  3522. "url": "https://github.com/paragonie/random_compat.git",
  3523. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  3524. },
  3525. "dist": {
  3526. "type": "zip",
  3527. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  3528. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  3529. "shasum": "",
  3530. "mirrors": [
  3531. {
  3532. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3533. "preferred": true
  3534. }
  3535. ]
  3536. },
  3537. "require": {
  3538. "php": ">= 7"
  3539. },
  3540. "require-dev": {
  3541. "phpunit/phpunit": "4.*|5.*",
  3542. "vimeo/psalm": "^1"
  3543. },
  3544. "suggest": {
  3545. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  3546. },
  3547. "type": "library",
  3548. "notification-url": "https://packagist.org/downloads/",
  3549. "license": [
  3550. "MIT"
  3551. ],
  3552. "authors": [
  3553. {
  3554. "name": "Paragon Initiative Enterprises",
  3555. "email": "security@paragonie.com",
  3556. "homepage": "https://paragonie.com"
  3557. }
  3558. ],
  3559. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  3560. "keywords": [
  3561. "csprng",
  3562. "polyfill",
  3563. "pseudorandom",
  3564. "random"
  3565. ],
  3566. "support": {
  3567. "email": "info@paragonie.com",
  3568. "issues": "https://github.com/paragonie/random_compat/issues",
  3569. "source": "https://github.com/paragonie/random_compat"
  3570. },
  3571. "time": "2020-10-15T08:29:30+00:00"
  3572. },
  3573. {
  3574. "name": "paragonie/sodium_compat",
  3575. "version": "v1.17.0",
  3576. "source": {
  3577. "type": "git",
  3578. "url": "https://github.com/paragonie/sodium_compat.git",
  3579. "reference": "c59cac21abbcc0df06a3dd18076450ea4797b321"
  3580. },
  3581. "dist": {
  3582. "type": "zip",
  3583. "url": "https://api.github.com/repos/paragonie/sodium_compat/zipball/c59cac21abbcc0df06a3dd18076450ea4797b321",
  3584. "reference": "c59cac21abbcc0df06a3dd18076450ea4797b321",
  3585. "shasum": "",
  3586. "mirrors": [
  3587. {
  3588. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3589. "preferred": true
  3590. }
  3591. ]
  3592. },
  3593. "require": {
  3594. "paragonie/random_compat": ">=1",
  3595. "php": "^5.2.4|^5.3|^5.4|^5.5|^5.6|^7|^8"
  3596. },
  3597. "require-dev": {
  3598. "phpunit/phpunit": "^3|^4|^5|^6|^7|^8|^9"
  3599. },
  3600. "suggest": {
  3601. "ext-libsodium": "PHP < 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security.",
  3602. "ext-sodium": "PHP >= 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security."
  3603. },
  3604. "type": "library",
  3605. "autoload": {
  3606. "files": [
  3607. "autoload.php"
  3608. ]
  3609. },
  3610. "notification-url": "https://packagist.org/downloads/",
  3611. "license": [
  3612. "ISC"
  3613. ],
  3614. "authors": [
  3615. {
  3616. "name": "Paragon Initiative Enterprises",
  3617. "email": "security@paragonie.com"
  3618. },
  3619. {
  3620. "name": "Frank Denis",
  3621. "email": "jedisct1@pureftpd.org"
  3622. }
  3623. ],
  3624. "description": "Pure PHP implementation of libsodium; uses the PHP extension if it exists",
  3625. "keywords": [
  3626. "Authentication",
  3627. "BLAKE2b",
  3628. "ChaCha20",
  3629. "ChaCha20-Poly1305",
  3630. "Chapoly",
  3631. "Curve25519",
  3632. "Ed25519",
  3633. "EdDSA",
  3634. "Edwards-curve Digital Signature Algorithm",
  3635. "Elliptic Curve Diffie-Hellman",
  3636. "Poly1305",
  3637. "Pure-PHP cryptography",
  3638. "RFC 7748",
  3639. "RFC 8032",
  3640. "Salpoly",
  3641. "Salsa20",
  3642. "X25519",
  3643. "XChaCha20-Poly1305",
  3644. "XSalsa20-Poly1305",
  3645. "Xchacha20",
  3646. "Xsalsa20",
  3647. "aead",
  3648. "cryptography",
  3649. "ecdh",
  3650. "elliptic curve",
  3651. "elliptic curve cryptography",
  3652. "encryption",
  3653. "libsodium",
  3654. "php",
  3655. "public-key cryptography",
  3656. "secret-key cryptography",
  3657. "side-channel resistant"
  3658. ],
  3659. "support": {
  3660. "issues": "https://github.com/paragonie/sodium_compat/issues",
  3661. "source": "https://github.com/paragonie/sodium_compat/tree/v1.17.0"
  3662. },
  3663. "time": "2021-08-10T02:43:50+00:00"
  3664. },
  3665. {
  3666. "name": "phpoffice/phpspreadsheet",
  3667. "version": "1.18.0",
  3668. "source": {
  3669. "type": "git",
  3670. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  3671. "reference": "418cd304e8e6b417ea79c3b29126a25dc4b1170c"
  3672. },
  3673. "dist": {
  3674. "type": "zip",
  3675. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/418cd304e8e6b417ea79c3b29126a25dc4b1170c",
  3676. "reference": "418cd304e8e6b417ea79c3b29126a25dc4b1170c",
  3677. "shasum": "",
  3678. "mirrors": [
  3679. {
  3680. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3681. "preferred": true
  3682. }
  3683. ]
  3684. },
  3685. "require": {
  3686. "ext-ctype": "*",
  3687. "ext-dom": "*",
  3688. "ext-fileinfo": "*",
  3689. "ext-gd": "*",
  3690. "ext-iconv": "*",
  3691. "ext-libxml": "*",
  3692. "ext-mbstring": "*",
  3693. "ext-simplexml": "*",
  3694. "ext-xml": "*",
  3695. "ext-xmlreader": "*",
  3696. "ext-xmlwriter": "*",
  3697. "ext-zip": "*",
  3698. "ext-zlib": "*",
  3699. "ezyang/htmlpurifier": "^4.13",
  3700. "maennchen/zipstream-php": "^2.1",
  3701. "markbaker/complex": "^2.0",
  3702. "markbaker/matrix": "^2.0",
  3703. "php": "^7.2 || ^8.0",
  3704. "psr/http-client": "^1.0",
  3705. "psr/http-factory": "^1.0",
  3706. "psr/simple-cache": "^1.0"
  3707. },
  3708. "require-dev": {
  3709. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  3710. "dompdf/dompdf": "^1.0",
  3711. "friendsofphp/php-cs-fixer": "^2.18",
  3712. "jpgraph/jpgraph": "^4.0",
  3713. "mpdf/mpdf": "^8.0",
  3714. "phpcompatibility/php-compatibility": "^9.3",
  3715. "phpstan/phpstan": "^0.12.82",
  3716. "phpstan/phpstan-phpunit": "^0.12.18",
  3717. "phpunit/phpunit": "^8.5",
  3718. "squizlabs/php_codesniffer": "^3.5",
  3719. "tecnickcom/tcpdf": "^6.3"
  3720. },
  3721. "suggest": {
  3722. "dompdf/dompdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)",
  3723. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  3724. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  3725. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)"
  3726. },
  3727. "type": "library",
  3728. "autoload": {
  3729. "psr-4": {
  3730. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  3731. }
  3732. },
  3733. "notification-url": "https://packagist.org/downloads/",
  3734. "license": [
  3735. "MIT"
  3736. ],
  3737. "authors": [
  3738. {
  3739. "name": "Maarten Balliauw",
  3740. "homepage": "https://blog.maartenballiauw.be"
  3741. },
  3742. {
  3743. "name": "Mark Baker",
  3744. "homepage": "https://markbakeruk.net"
  3745. },
  3746. {
  3747. "name": "Franck Lefevre",
  3748. "homepage": "https://rootslabs.net"
  3749. },
  3750. {
  3751. "name": "Erik Tilt"
  3752. },
  3753. {
  3754. "name": "Adrien Crivelli"
  3755. }
  3756. ],
  3757. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  3758. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  3759. "keywords": [
  3760. "OpenXML",
  3761. "excel",
  3762. "gnumeric",
  3763. "ods",
  3764. "php",
  3765. "spreadsheet",
  3766. "xls",
  3767. "xlsx"
  3768. ],
  3769. "support": {
  3770. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  3771. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.18.0"
  3772. },
  3773. "time": "2021-05-31T18:21:15+00:00"
  3774. },
  3775. {
  3776. "name": "phpoption/phpoption",
  3777. "version": "1.8.0",
  3778. "source": {
  3779. "type": "git",
  3780. "url": "https://github.com/schmittjoh/php-option.git",
  3781. "reference": "5455cb38aed4523f99977c4a12ef19da4bfe2a28"
  3782. },
  3783. "dist": {
  3784. "type": "zip",
  3785. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/5455cb38aed4523f99977c4a12ef19da4bfe2a28",
  3786. "reference": "5455cb38aed4523f99977c4a12ef19da4bfe2a28",
  3787. "shasum": "",
  3788. "mirrors": [
  3789. {
  3790. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3791. "preferred": true
  3792. }
  3793. ]
  3794. },
  3795. "require": {
  3796. "php": "^7.0 || ^8.0"
  3797. },
  3798. "require-dev": {
  3799. "bamarni/composer-bin-plugin": "^1.4.1",
  3800. "phpunit/phpunit": "^6.5.14 || ^7.0.20 || ^8.5.19 || ^9.5.8"
  3801. },
  3802. "type": "library",
  3803. "extra": {
  3804. "branch-alias": {
  3805. "dev-master": "1.8-dev"
  3806. }
  3807. },
  3808. "autoload": {
  3809. "psr-4": {
  3810. "PhpOption\\": "src/PhpOption/"
  3811. }
  3812. },
  3813. "notification-url": "https://packagist.org/downloads/",
  3814. "license": [
  3815. "Apache-2.0"
  3816. ],
  3817. "authors": [
  3818. {
  3819. "name": "Johannes M. Schmitt",
  3820. "email": "schmittjoh@gmail.com"
  3821. },
  3822. {
  3823. "name": "Graham Campbell",
  3824. "email": "hello@gjcampbell.co.uk"
  3825. }
  3826. ],
  3827. "description": "Option Type for PHP",
  3828. "keywords": [
  3829. "language",
  3830. "option",
  3831. "php",
  3832. "type"
  3833. ],
  3834. "support": {
  3835. "issues": "https://github.com/schmittjoh/php-option/issues",
  3836. "source": "https://github.com/schmittjoh/php-option/tree/1.8.0"
  3837. },
  3838. "funding": [
  3839. {
  3840. "url": "https://github.com/GrahamCampbell",
  3841. "type": "github"
  3842. },
  3843. {
  3844. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  3845. "type": "tidelift"
  3846. }
  3847. ],
  3848. "time": "2021-08-28T21:27:29+00:00"
  3849. },
  3850. {
  3851. "name": "picqer/php-barcode-generator",
  3852. "version": "v2.2.0",
  3853. "source": {
  3854. "type": "git",
  3855. "url": "https://github.com/picqer/php-barcode-generator.git",
  3856. "reference": "7df93b40099e5fefad055543320a36b80dccda05"
  3857. },
  3858. "dist": {
  3859. "type": "zip",
  3860. "url": "https://api.github.com/repos/picqer/php-barcode-generator/zipball/7df93b40099e5fefad055543320a36b80dccda05",
  3861. "reference": "7df93b40099e5fefad055543320a36b80dccda05",
  3862. "shasum": "",
  3863. "mirrors": [
  3864. {
  3865. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3866. "preferred": true
  3867. }
  3868. ]
  3869. },
  3870. "require": {
  3871. "ext-mbstring": "*",
  3872. "php": "^7.3|^8.0"
  3873. },
  3874. "require-dev": {
  3875. "phpunit/phpunit": "^9.5"
  3876. },
  3877. "suggest": {
  3878. "ext-bcmath": "Barcode IMB (Intelligent Mail Barcode) needs bcmath extension",
  3879. "ext-gd": "For JPG and PNG generators, GD or Imagick is required",
  3880. "ext-imagick": "For JPG and PNG generators, GD or Imagick is required"
  3881. },
  3882. "type": "library",
  3883. "autoload": {
  3884. "psr-4": {
  3885. "Picqer\\Barcode\\": "src"
  3886. }
  3887. },
  3888. "notification-url": "https://packagist.org/downloads/",
  3889. "license": [
  3890. "LGPL-3.0-or-later"
  3891. ],
  3892. "authors": [
  3893. {
  3894. "name": "Nicola Asuni",
  3895. "email": "info@tecnick.com",
  3896. "homepage": "http://nicolaasuni.tecnick.com"
  3897. },
  3898. {
  3899. "name": "Casper Bakker",
  3900. "email": "info@picqer.com",
  3901. "homepage": "https://picqer.com"
  3902. }
  3903. ],
  3904. "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.",
  3905. "homepage": "https://github.com/picqer/php-barcode-generator",
  3906. "keywords": [
  3907. "CODABAR",
  3908. "Code11",
  3909. "Code93",
  3910. "EAN13",
  3911. "KIX",
  3912. "KIXCODE",
  3913. "MSI",
  3914. "POSTNET",
  3915. "Pharma",
  3916. "Standard 2 of 5",
  3917. "barcode",
  3918. "barcode generator",
  3919. "code128",
  3920. "code39",
  3921. "ean",
  3922. "html",
  3923. "jpeg",
  3924. "jpg",
  3925. "php",
  3926. "png",
  3927. "svg",
  3928. "upc"
  3929. ],
  3930. "support": {
  3931. "issues": "https://github.com/picqer/php-barcode-generator/issues",
  3932. "source": "https://github.com/picqer/php-barcode-generator/tree/v2.2.0"
  3933. },
  3934. "funding": [
  3935. {
  3936. "url": "https://github.com/casperbakker",
  3937. "type": "github"
  3938. }
  3939. ],
  3940. "time": "2021-03-27T09:06:22+00:00"
  3941. },
  3942. {
  3943. "name": "predis/predis",
  3944. "version": "v1.1.9",
  3945. "source": {
  3946. "type": "git",
  3947. "url": "https://github.com/predis/predis.git",
  3948. "reference": "c50c3393bb9f47fa012d0cdfb727a266b0818259"
  3949. },
  3950. "dist": {
  3951. "type": "zip",
  3952. "url": "https://api.github.com/repos/predis/predis/zipball/c50c3393bb9f47fa012d0cdfb727a266b0818259",
  3953. "reference": "c50c3393bb9f47fa012d0cdfb727a266b0818259",
  3954. "shasum": "",
  3955. "mirrors": [
  3956. {
  3957. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3958. "preferred": true
  3959. }
  3960. ]
  3961. },
  3962. "require": {
  3963. "php": ">=5.3.9"
  3964. },
  3965. "require-dev": {
  3966. "phpunit/phpunit": "~4.8"
  3967. },
  3968. "suggest": {
  3969. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  3970. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  3971. },
  3972. "type": "library",
  3973. "autoload": {
  3974. "psr-4": {
  3975. "Predis\\": "src/"
  3976. }
  3977. },
  3978. "notification-url": "https://packagist.org/downloads/",
  3979. "license": [
  3980. "MIT"
  3981. ],
  3982. "authors": [
  3983. {
  3984. "name": "Daniele Alessandri",
  3985. "email": "suppakilla@gmail.com",
  3986. "homepage": "http://clorophilla.net",
  3987. "role": "Creator & Maintainer"
  3988. },
  3989. {
  3990. "name": "Till Krüss",
  3991. "homepage": "https://till.im",
  3992. "role": "Maintainer"
  3993. }
  3994. ],
  3995. "description": "Flexible and feature-complete Redis client for PHP and HHVM",
  3996. "homepage": "http://github.com/predis/predis",
  3997. "keywords": [
  3998. "nosql",
  3999. "predis",
  4000. "redis"
  4001. ],
  4002. "support": {
  4003. "issues": "https://github.com/predis/predis/issues",
  4004. "source": "https://github.com/predis/predis/tree/v1.1.9"
  4005. },
  4006. "funding": [
  4007. {
  4008. "url": "https://github.com/sponsors/tillkruss",
  4009. "type": "github"
  4010. }
  4011. ],
  4012. "time": "2021-10-05T19:02:38+00:00"
  4013. },
  4014. {
  4015. "name": "psr/container",
  4016. "version": "1.1.1",
  4017. "source": {
  4018. "type": "git",
  4019. "url": "https://github.com/php-fig/container.git",
  4020. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
  4021. },
  4022. "dist": {
  4023. "type": "zip",
  4024. "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
  4025. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
  4026. "shasum": "",
  4027. "mirrors": [
  4028. {
  4029. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4030. "preferred": true
  4031. }
  4032. ]
  4033. },
  4034. "require": {
  4035. "php": ">=7.2.0"
  4036. },
  4037. "type": "library",
  4038. "autoload": {
  4039. "psr-4": {
  4040. "Psr\\Container\\": "src/"
  4041. }
  4042. },
  4043. "notification-url": "https://packagist.org/downloads/",
  4044. "license": [
  4045. "MIT"
  4046. ],
  4047. "authors": [
  4048. {
  4049. "name": "PHP-FIG",
  4050. "homepage": "https://www.php-fig.org/"
  4051. }
  4052. ],
  4053. "description": "Common Container Interface (PHP FIG PSR-11)",
  4054. "homepage": "https://github.com/php-fig/container",
  4055. "keywords": [
  4056. "PSR-11",
  4057. "container",
  4058. "container-interface",
  4059. "container-interop",
  4060. "psr"
  4061. ],
  4062. "support": {
  4063. "issues": "https://github.com/php-fig/container/issues",
  4064. "source": "https://github.com/php-fig/container/tree/1.1.1"
  4065. },
  4066. "time": "2021-03-05T17:36:06+00:00"
  4067. },
  4068. {
  4069. "name": "psr/event-dispatcher",
  4070. "version": "1.0.0",
  4071. "source": {
  4072. "type": "git",
  4073. "url": "https://github.com/php-fig/event-dispatcher.git",
  4074. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  4075. },
  4076. "dist": {
  4077. "type": "zip",
  4078. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4079. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4080. "shasum": "",
  4081. "mirrors": [
  4082. {
  4083. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4084. "preferred": true
  4085. }
  4086. ]
  4087. },
  4088. "require": {
  4089. "php": ">=7.2.0"
  4090. },
  4091. "type": "library",
  4092. "extra": {
  4093. "branch-alias": {
  4094. "dev-master": "1.0.x-dev"
  4095. }
  4096. },
  4097. "autoload": {
  4098. "psr-4": {
  4099. "Psr\\EventDispatcher\\": "src/"
  4100. }
  4101. },
  4102. "notification-url": "https://packagist.org/downloads/",
  4103. "license": [
  4104. "MIT"
  4105. ],
  4106. "authors": [
  4107. {
  4108. "name": "PHP-FIG",
  4109. "homepage": "http://www.php-fig.org/"
  4110. }
  4111. ],
  4112. "description": "Standard interfaces for event handling.",
  4113. "keywords": [
  4114. "events",
  4115. "psr",
  4116. "psr-14"
  4117. ],
  4118. "support": {
  4119. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  4120. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  4121. },
  4122. "time": "2019-01-08T18:20:26+00:00"
  4123. },
  4124. {
  4125. "name": "psr/http-client",
  4126. "version": "1.0.1",
  4127. "source": {
  4128. "type": "git",
  4129. "url": "https://github.com/php-fig/http-client.git",
  4130. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  4131. },
  4132. "dist": {
  4133. "type": "zip",
  4134. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  4135. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  4136. "shasum": "",
  4137. "mirrors": [
  4138. {
  4139. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4140. "preferred": true
  4141. }
  4142. ]
  4143. },
  4144. "require": {
  4145. "php": "^7.0 || ^8.0",
  4146. "psr/http-message": "^1.0"
  4147. },
  4148. "type": "library",
  4149. "extra": {
  4150. "branch-alias": {
  4151. "dev-master": "1.0.x-dev"
  4152. }
  4153. },
  4154. "autoload": {
  4155. "psr-4": {
  4156. "Psr\\Http\\Client\\": "src/"
  4157. }
  4158. },
  4159. "notification-url": "https://packagist.org/downloads/",
  4160. "license": [
  4161. "MIT"
  4162. ],
  4163. "authors": [
  4164. {
  4165. "name": "PHP-FIG",
  4166. "homepage": "http://www.php-fig.org/"
  4167. }
  4168. ],
  4169. "description": "Common interface for HTTP clients",
  4170. "homepage": "https://github.com/php-fig/http-client",
  4171. "keywords": [
  4172. "http",
  4173. "http-client",
  4174. "psr",
  4175. "psr-18"
  4176. ],
  4177. "support": {
  4178. "source": "https://github.com/php-fig/http-client/tree/master"
  4179. },
  4180. "time": "2020-06-29T06:28:15+00:00"
  4181. },
  4182. {
  4183. "name": "psr/http-factory",
  4184. "version": "1.0.1",
  4185. "source": {
  4186. "type": "git",
  4187. "url": "https://github.com/php-fig/http-factory.git",
  4188. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  4189. },
  4190. "dist": {
  4191. "type": "zip",
  4192. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  4193. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  4194. "shasum": "",
  4195. "mirrors": [
  4196. {
  4197. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4198. "preferred": true
  4199. }
  4200. ]
  4201. },
  4202. "require": {
  4203. "php": ">=7.0.0",
  4204. "psr/http-message": "^1.0"
  4205. },
  4206. "type": "library",
  4207. "extra": {
  4208. "branch-alias": {
  4209. "dev-master": "1.0.x-dev"
  4210. }
  4211. },
  4212. "autoload": {
  4213. "psr-4": {
  4214. "Psr\\Http\\Message\\": "src/"
  4215. }
  4216. },
  4217. "notification-url": "https://packagist.org/downloads/",
  4218. "license": [
  4219. "MIT"
  4220. ],
  4221. "authors": [
  4222. {
  4223. "name": "PHP-FIG",
  4224. "homepage": "http://www.php-fig.org/"
  4225. }
  4226. ],
  4227. "description": "Common interfaces for PSR-7 HTTP message factories",
  4228. "keywords": [
  4229. "factory",
  4230. "http",
  4231. "message",
  4232. "psr",
  4233. "psr-17",
  4234. "psr-7",
  4235. "request",
  4236. "response"
  4237. ],
  4238. "support": {
  4239. "source": "https://github.com/php-fig/http-factory/tree/master"
  4240. },
  4241. "time": "2019-04-30T12:38:16+00:00"
  4242. },
  4243. {
  4244. "name": "psr/http-message",
  4245. "version": "1.0.1",
  4246. "source": {
  4247. "type": "git",
  4248. "url": "https://github.com/php-fig/http-message.git",
  4249. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  4250. },
  4251. "dist": {
  4252. "type": "zip",
  4253. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  4254. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  4255. "shasum": "",
  4256. "mirrors": [
  4257. {
  4258. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4259. "preferred": true
  4260. }
  4261. ]
  4262. },
  4263. "require": {
  4264. "php": ">=5.3.0"
  4265. },
  4266. "type": "library",
  4267. "extra": {
  4268. "branch-alias": {
  4269. "dev-master": "1.0.x-dev"
  4270. }
  4271. },
  4272. "autoload": {
  4273. "psr-4": {
  4274. "Psr\\Http\\Message\\": "src/"
  4275. }
  4276. },
  4277. "notification-url": "https://packagist.org/downloads/",
  4278. "license": [
  4279. "MIT"
  4280. ],
  4281. "authors": [
  4282. {
  4283. "name": "PHP-FIG",
  4284. "homepage": "http://www.php-fig.org/"
  4285. }
  4286. ],
  4287. "description": "Common interface for HTTP messages",
  4288. "homepage": "https://github.com/php-fig/http-message",
  4289. "keywords": [
  4290. "http",
  4291. "http-message",
  4292. "psr",
  4293. "psr-7",
  4294. "request",
  4295. "response"
  4296. ],
  4297. "support": {
  4298. "source": "https://github.com/php-fig/http-message/tree/master"
  4299. },
  4300. "time": "2016-08-06T14:39:51+00:00"
  4301. },
  4302. {
  4303. "name": "psr/log",
  4304. "version": "1.1.4",
  4305. "source": {
  4306. "type": "git",
  4307. "url": "https://github.com/php-fig/log.git",
  4308. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  4309. },
  4310. "dist": {
  4311. "type": "zip",
  4312. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  4313. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  4314. "shasum": "",
  4315. "mirrors": [
  4316. {
  4317. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4318. "preferred": true
  4319. }
  4320. ]
  4321. },
  4322. "require": {
  4323. "php": ">=5.3.0"
  4324. },
  4325. "type": "library",
  4326. "extra": {
  4327. "branch-alias": {
  4328. "dev-master": "1.1.x-dev"
  4329. }
  4330. },
  4331. "autoload": {
  4332. "psr-4": {
  4333. "Psr\\Log\\": "Psr/Log/"
  4334. }
  4335. },
  4336. "notification-url": "https://packagist.org/downloads/",
  4337. "license": [
  4338. "MIT"
  4339. ],
  4340. "authors": [
  4341. {
  4342. "name": "PHP-FIG",
  4343. "homepage": "https://www.php-fig.org/"
  4344. }
  4345. ],
  4346. "description": "Common interface for logging libraries",
  4347. "homepage": "https://github.com/php-fig/log",
  4348. "keywords": [
  4349. "log",
  4350. "psr",
  4351. "psr-3"
  4352. ],
  4353. "support": {
  4354. "source": "https://github.com/php-fig/log/tree/1.1.4"
  4355. },
  4356. "time": "2021-05-03T11:20:27+00:00"
  4357. },
  4358. {
  4359. "name": "psr/simple-cache",
  4360. "version": "1.0.1",
  4361. "source": {
  4362. "type": "git",
  4363. "url": "https://github.com/php-fig/simple-cache.git",
  4364. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  4365. },
  4366. "dist": {
  4367. "type": "zip",
  4368. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4369. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4370. "shasum": "",
  4371. "mirrors": [
  4372. {
  4373. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4374. "preferred": true
  4375. }
  4376. ]
  4377. },
  4378. "require": {
  4379. "php": ">=5.3.0"
  4380. },
  4381. "type": "library",
  4382. "extra": {
  4383. "branch-alias": {
  4384. "dev-master": "1.0.x-dev"
  4385. }
  4386. },
  4387. "autoload": {
  4388. "psr-4": {
  4389. "Psr\\SimpleCache\\": "src/"
  4390. }
  4391. },
  4392. "notification-url": "https://packagist.org/downloads/",
  4393. "license": [
  4394. "MIT"
  4395. ],
  4396. "authors": [
  4397. {
  4398. "name": "PHP-FIG",
  4399. "homepage": "http://www.php-fig.org/"
  4400. }
  4401. ],
  4402. "description": "Common interfaces for simple caching",
  4403. "keywords": [
  4404. "cache",
  4405. "caching",
  4406. "psr",
  4407. "psr-16",
  4408. "simple-cache"
  4409. ],
  4410. "support": {
  4411. "source": "https://github.com/php-fig/simple-cache/tree/master"
  4412. },
  4413. "time": "2017-10-23T01:57:42+00:00"
  4414. },
  4415. {
  4416. "name": "psy/psysh",
  4417. "version": "v0.10.8",
  4418. "source": {
  4419. "type": "git",
  4420. "url": "https://github.com/bobthecow/psysh.git",
  4421. "reference": "e4573f47750dd6c92dca5aee543fa77513cbd8d3"
  4422. },
  4423. "dist": {
  4424. "type": "zip",
  4425. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/e4573f47750dd6c92dca5aee543fa77513cbd8d3",
  4426. "reference": "e4573f47750dd6c92dca5aee543fa77513cbd8d3",
  4427. "shasum": "",
  4428. "mirrors": [
  4429. {
  4430. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4431. "preferred": true
  4432. }
  4433. ]
  4434. },
  4435. "require": {
  4436. "ext-json": "*",
  4437. "ext-tokenizer": "*",
  4438. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  4439. "php": "^8.0 || ^7.0 || ^5.5.9",
  4440. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  4441. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  4442. },
  4443. "require-dev": {
  4444. "bamarni/composer-bin-plugin": "^1.2",
  4445. "hoa/console": "3.17.*"
  4446. },
  4447. "suggest": {
  4448. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4449. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4450. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  4451. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  4452. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  4453. },
  4454. "bin": [
  4455. "bin/psysh"
  4456. ],
  4457. "type": "library",
  4458. "extra": {
  4459. "branch-alias": {
  4460. "dev-main": "0.10.x-dev"
  4461. }
  4462. },
  4463. "autoload": {
  4464. "files": [
  4465. "src/functions.php"
  4466. ],
  4467. "psr-4": {
  4468. "Psy\\": "src/"
  4469. }
  4470. },
  4471. "notification-url": "https://packagist.org/downloads/",
  4472. "license": [
  4473. "MIT"
  4474. ],
  4475. "authors": [
  4476. {
  4477. "name": "Justin Hileman",
  4478. "email": "justin@justinhileman.info",
  4479. "homepage": "http://justinhileman.com"
  4480. }
  4481. ],
  4482. "description": "An interactive shell for modern PHP.",
  4483. "homepage": "http://psysh.org",
  4484. "keywords": [
  4485. "REPL",
  4486. "console",
  4487. "interactive",
  4488. "shell"
  4489. ],
  4490. "support": {
  4491. "issues": "https://github.com/bobthecow/psysh/issues",
  4492. "source": "https://github.com/bobthecow/psysh/tree/v0.10.8"
  4493. },
  4494. "time": "2021-04-10T16:23:39+00:00"
  4495. },
  4496. {
  4497. "name": "pusher/pusher-php-server",
  4498. "version": "v4.1.5",
  4499. "source": {
  4500. "type": "git",
  4501. "url": "https://github.com/pusher/pusher-http-php.git",
  4502. "reference": "251f22602320c1b1aff84798fe74f3f7ee0504a9"
  4503. },
  4504. "dist": {
  4505. "type": "zip",
  4506. "url": "https://api.github.com/repos/pusher/pusher-http-php/zipball/251f22602320c1b1aff84798fe74f3f7ee0504a9",
  4507. "reference": "251f22602320c1b1aff84798fe74f3f7ee0504a9",
  4508. "shasum": "",
  4509. "mirrors": [
  4510. {
  4511. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4512. "preferred": true
  4513. }
  4514. ]
  4515. },
  4516. "require": {
  4517. "ext-curl": "*",
  4518. "paragonie/sodium_compat": "^1.6",
  4519. "php": "^7.1|^8.0",
  4520. "psr/log": "^1.0"
  4521. },
  4522. "require-dev": {
  4523. "phpunit/phpunit": "^7.2|^8.5|^9.3"
  4524. },
  4525. "type": "library",
  4526. "extra": {
  4527. "branch-alias": {
  4528. "dev-master": "3.4-dev"
  4529. }
  4530. },
  4531. "autoload": {
  4532. "psr-4": {
  4533. "Pusher\\": "src/"
  4534. }
  4535. },
  4536. "notification-url": "https://packagist.org/downloads/",
  4537. "license": [
  4538. "MIT"
  4539. ],
  4540. "description": "Library for interacting with the Pusher REST API",
  4541. "keywords": [
  4542. "events",
  4543. "messaging",
  4544. "php-pusher-server",
  4545. "publish",
  4546. "push",
  4547. "pusher",
  4548. "real time",
  4549. "real-time",
  4550. "realtime",
  4551. "rest",
  4552. "trigger"
  4553. ],
  4554. "support": {
  4555. "issues": "https://github.com/pusher/pusher-http-php/issues",
  4556. "source": "https://github.com/pusher/pusher-http-php/tree/v4.1.5"
  4557. },
  4558. "time": "2020-12-09T09:38:19+00:00"
  4559. },
  4560. {
  4561. "name": "ralouphie/getallheaders",
  4562. "version": "3.0.3",
  4563. "source": {
  4564. "type": "git",
  4565. "url": "https://github.com/ralouphie/getallheaders.git",
  4566. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4567. },
  4568. "dist": {
  4569. "type": "zip",
  4570. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4571. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4572. "shasum": "",
  4573. "mirrors": [
  4574. {
  4575. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4576. "preferred": true
  4577. }
  4578. ]
  4579. },
  4580. "require": {
  4581. "php": ">=5.6"
  4582. },
  4583. "require-dev": {
  4584. "php-coveralls/php-coveralls": "^2.1",
  4585. "phpunit/phpunit": "^5 || ^6.5"
  4586. },
  4587. "type": "library",
  4588. "autoload": {
  4589. "files": [
  4590. "src/getallheaders.php"
  4591. ]
  4592. },
  4593. "notification-url": "https://packagist.org/downloads/",
  4594. "license": [
  4595. "MIT"
  4596. ],
  4597. "authors": [
  4598. {
  4599. "name": "Ralph Khattar",
  4600. "email": "ralph.khattar@gmail.com"
  4601. }
  4602. ],
  4603. "description": "A polyfill for getallheaders.",
  4604. "support": {
  4605. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4606. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4607. },
  4608. "time": "2019-03-08T08:55:37+00:00"
  4609. },
  4610. {
  4611. "name": "ramsey/collection",
  4612. "version": "1.2.1",
  4613. "source": {
  4614. "type": "git",
  4615. "url": "https://github.com/ramsey/collection.git",
  4616. "reference": "eaca1dc1054ddd10cbd83c1461907bee6fb528fa"
  4617. },
  4618. "dist": {
  4619. "type": "zip",
  4620. "url": "https://api.github.com/repos/ramsey/collection/zipball/eaca1dc1054ddd10cbd83c1461907bee6fb528fa",
  4621. "reference": "eaca1dc1054ddd10cbd83c1461907bee6fb528fa",
  4622. "shasum": "",
  4623. "mirrors": [
  4624. {
  4625. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4626. "preferred": true
  4627. }
  4628. ]
  4629. },
  4630. "require": {
  4631. "php": "^7.3 || ^8",
  4632. "symfony/polyfill-php81": "^1.23"
  4633. },
  4634. "require-dev": {
  4635. "captainhook/captainhook": "^5.3",
  4636. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4637. "ergebnis/composer-normalize": "^2.6",
  4638. "fakerphp/faker": "^1.5",
  4639. "hamcrest/hamcrest-php": "^2",
  4640. "jangregor/phpstan-prophecy": "^0.8",
  4641. "mockery/mockery": "^1.3",
  4642. "phpspec/prophecy-phpunit": "^2.0",
  4643. "phpstan/extension-installer": "^1",
  4644. "phpstan/phpstan": "^0.12.32",
  4645. "phpstan/phpstan-mockery": "^0.12.5",
  4646. "phpstan/phpstan-phpunit": "^0.12.11",
  4647. "phpunit/phpunit": "^8.5 || ^9",
  4648. "psy/psysh": "^0.10.4",
  4649. "slevomat/coding-standard": "^6.3",
  4650. "squizlabs/php_codesniffer": "^3.5",
  4651. "vimeo/psalm": "^4.4"
  4652. },
  4653. "type": "library",
  4654. "autoload": {
  4655. "psr-4": {
  4656. "Ramsey\\Collection\\": "src/"
  4657. }
  4658. },
  4659. "notification-url": "https://packagist.org/downloads/",
  4660. "license": [
  4661. "MIT"
  4662. ],
  4663. "authors": [
  4664. {
  4665. "name": "Ben Ramsey",
  4666. "email": "ben@benramsey.com",
  4667. "homepage": "https://benramsey.com"
  4668. }
  4669. ],
  4670. "description": "A PHP library for representing and manipulating collections.",
  4671. "keywords": [
  4672. "array",
  4673. "collection",
  4674. "hash",
  4675. "map",
  4676. "queue",
  4677. "set"
  4678. ],
  4679. "support": {
  4680. "issues": "https://github.com/ramsey/collection/issues",
  4681. "source": "https://github.com/ramsey/collection/tree/1.2.1"
  4682. },
  4683. "funding": [
  4684. {
  4685. "url": "https://github.com/ramsey",
  4686. "type": "github"
  4687. },
  4688. {
  4689. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4690. "type": "tidelift"
  4691. }
  4692. ],
  4693. "time": "2021-08-06T03:41:06+00:00"
  4694. },
  4695. {
  4696. "name": "ramsey/uuid",
  4697. "version": "4.2.3",
  4698. "source": {
  4699. "type": "git",
  4700. "url": "https://github.com/ramsey/uuid.git",
  4701. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df"
  4702. },
  4703. "dist": {
  4704. "type": "zip",
  4705. "url": "https://api.github.com/repos/ramsey/uuid/zipball/fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  4706. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  4707. "shasum": "",
  4708. "mirrors": [
  4709. {
  4710. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4711. "preferred": true
  4712. }
  4713. ]
  4714. },
  4715. "require": {
  4716. "brick/math": "^0.8 || ^0.9",
  4717. "ext-json": "*",
  4718. "php": "^7.2 || ^8.0",
  4719. "ramsey/collection": "^1.0",
  4720. "symfony/polyfill-ctype": "^1.8",
  4721. "symfony/polyfill-php80": "^1.14"
  4722. },
  4723. "replace": {
  4724. "rhumsaa/uuid": "self.version"
  4725. },
  4726. "require-dev": {
  4727. "captainhook/captainhook": "^5.10",
  4728. "captainhook/plugin-composer": "^5.3",
  4729. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4730. "doctrine/annotations": "^1.8",
  4731. "ergebnis/composer-normalize": "^2.15",
  4732. "mockery/mockery": "^1.3",
  4733. "moontoast/math": "^1.1",
  4734. "paragonie/random-lib": "^2",
  4735. "php-mock/php-mock": "^2.2",
  4736. "php-mock/php-mock-mockery": "^1.3",
  4737. "php-parallel-lint/php-parallel-lint": "^1.1",
  4738. "phpbench/phpbench": "^1.0",
  4739. "phpstan/extension-installer": "^1.0",
  4740. "phpstan/phpstan": "^0.12",
  4741. "phpstan/phpstan-mockery": "^0.12",
  4742. "phpstan/phpstan-phpunit": "^0.12",
  4743. "phpunit/phpunit": "^8.5 || ^9",
  4744. "slevomat/coding-standard": "^7.0",
  4745. "squizlabs/php_codesniffer": "^3.5",
  4746. "vimeo/psalm": "^4.9"
  4747. },
  4748. "suggest": {
  4749. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4750. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  4751. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4752. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4753. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4754. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4755. },
  4756. "type": "library",
  4757. "extra": {
  4758. "branch-alias": {
  4759. "dev-main": "4.x-dev"
  4760. },
  4761. "captainhook": {
  4762. "force-install": true
  4763. }
  4764. },
  4765. "autoload": {
  4766. "psr-4": {
  4767. "Ramsey\\Uuid\\": "src/"
  4768. },
  4769. "files": [
  4770. "src/functions.php"
  4771. ]
  4772. },
  4773. "notification-url": "https://packagist.org/downloads/",
  4774. "license": [
  4775. "MIT"
  4776. ],
  4777. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4778. "keywords": [
  4779. "guid",
  4780. "identifier",
  4781. "uuid"
  4782. ],
  4783. "support": {
  4784. "issues": "https://github.com/ramsey/uuid/issues",
  4785. "source": "https://github.com/ramsey/uuid/tree/4.2.3"
  4786. },
  4787. "funding": [
  4788. {
  4789. "url": "https://github.com/ramsey",
  4790. "type": "github"
  4791. },
  4792. {
  4793. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  4794. "type": "tidelift"
  4795. }
  4796. ],
  4797. "time": "2021-09-25T23:10:38+00:00"
  4798. },
  4799. {
  4800. "name": "swiftmailer/swiftmailer",
  4801. "version": "v6.2.7",
  4802. "source": {
  4803. "type": "git",
  4804. "url": "https://github.com/swiftmailer/swiftmailer.git",
  4805. "reference": "15f7faf8508e04471f666633addacf54c0ab5933"
  4806. },
  4807. "dist": {
  4808. "type": "zip",
  4809. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/15f7faf8508e04471f666633addacf54c0ab5933",
  4810. "reference": "15f7faf8508e04471f666633addacf54c0ab5933",
  4811. "shasum": "",
  4812. "mirrors": [
  4813. {
  4814. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4815. "preferred": true
  4816. }
  4817. ]
  4818. },
  4819. "require": {
  4820. "egulias/email-validator": "^2.0|^3.1",
  4821. "php": ">=7.0.0",
  4822. "symfony/polyfill-iconv": "^1.0",
  4823. "symfony/polyfill-intl-idn": "^1.10",
  4824. "symfony/polyfill-mbstring": "^1.0"
  4825. },
  4826. "require-dev": {
  4827. "mockery/mockery": "^1.0",
  4828. "symfony/phpunit-bridge": "^4.4|^5.0"
  4829. },
  4830. "suggest": {
  4831. "ext-intl": "Needed to support internationalized email addresses"
  4832. },
  4833. "type": "library",
  4834. "extra": {
  4835. "branch-alias": {
  4836. "dev-master": "6.2-dev"
  4837. }
  4838. },
  4839. "autoload": {
  4840. "files": [
  4841. "lib/swift_required.php"
  4842. ]
  4843. },
  4844. "notification-url": "https://packagist.org/downloads/",
  4845. "license": [
  4846. "MIT"
  4847. ],
  4848. "authors": [
  4849. {
  4850. "name": "Chris Corbyn"
  4851. },
  4852. {
  4853. "name": "Fabien Potencier",
  4854. "email": "fabien@symfony.com"
  4855. }
  4856. ],
  4857. "description": "Swiftmailer, free feature-rich PHP mailer",
  4858. "homepage": "https://swiftmailer.symfony.com",
  4859. "keywords": [
  4860. "email",
  4861. "mail",
  4862. "mailer"
  4863. ],
  4864. "support": {
  4865. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  4866. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.2.7"
  4867. },
  4868. "funding": [
  4869. {
  4870. "url": "https://github.com/fabpot",
  4871. "type": "github"
  4872. },
  4873. {
  4874. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  4875. "type": "tidelift"
  4876. }
  4877. ],
  4878. "time": "2021-03-09T12:30:35+00:00"
  4879. },
  4880. {
  4881. "name": "symfony/console",
  4882. "version": "v5.3.7",
  4883. "source": {
  4884. "type": "git",
  4885. "url": "https://github.com/symfony/console.git",
  4886. "reference": "8b1008344647462ae6ec57559da166c2bfa5e16a"
  4887. },
  4888. "dist": {
  4889. "type": "zip",
  4890. "url": "https://api.github.com/repos/symfony/console/zipball/8b1008344647462ae6ec57559da166c2bfa5e16a",
  4891. "reference": "8b1008344647462ae6ec57559da166c2bfa5e16a",
  4892. "shasum": "",
  4893. "mirrors": [
  4894. {
  4895. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4896. "preferred": true
  4897. }
  4898. ]
  4899. },
  4900. "require": {
  4901. "php": ">=7.2.5",
  4902. "symfony/deprecation-contracts": "^2.1",
  4903. "symfony/polyfill-mbstring": "~1.0",
  4904. "symfony/polyfill-php73": "^1.8",
  4905. "symfony/polyfill-php80": "^1.16",
  4906. "symfony/service-contracts": "^1.1|^2",
  4907. "symfony/string": "^5.1"
  4908. },
  4909. "conflict": {
  4910. "psr/log": ">=3",
  4911. "symfony/dependency-injection": "<4.4",
  4912. "symfony/dotenv": "<5.1",
  4913. "symfony/event-dispatcher": "<4.4",
  4914. "symfony/lock": "<4.4",
  4915. "symfony/process": "<4.4"
  4916. },
  4917. "provide": {
  4918. "psr/log-implementation": "1.0|2.0"
  4919. },
  4920. "require-dev": {
  4921. "psr/log": "^1|^2",
  4922. "symfony/config": "^4.4|^5.0",
  4923. "symfony/dependency-injection": "^4.4|^5.0",
  4924. "symfony/event-dispatcher": "^4.4|^5.0",
  4925. "symfony/lock": "^4.4|^5.0",
  4926. "symfony/process": "^4.4|^5.0",
  4927. "symfony/var-dumper": "^4.4|^5.0"
  4928. },
  4929. "suggest": {
  4930. "psr/log": "For using the console logger",
  4931. "symfony/event-dispatcher": "",
  4932. "symfony/lock": "",
  4933. "symfony/process": ""
  4934. },
  4935. "type": "library",
  4936. "autoload": {
  4937. "psr-4": {
  4938. "Symfony\\Component\\Console\\": ""
  4939. },
  4940. "exclude-from-classmap": [
  4941. "/Tests/"
  4942. ]
  4943. },
  4944. "notification-url": "https://packagist.org/downloads/",
  4945. "license": [
  4946. "MIT"
  4947. ],
  4948. "authors": [
  4949. {
  4950. "name": "Fabien Potencier",
  4951. "email": "fabien@symfony.com"
  4952. },
  4953. {
  4954. "name": "Symfony Community",
  4955. "homepage": "https://symfony.com/contributors"
  4956. }
  4957. ],
  4958. "description": "Eases the creation of beautiful and testable command line interfaces",
  4959. "homepage": "https://symfony.com",
  4960. "keywords": [
  4961. "cli",
  4962. "command line",
  4963. "console",
  4964. "terminal"
  4965. ],
  4966. "support": {
  4967. "source": "https://github.com/symfony/console/tree/v5.3.7"
  4968. },
  4969. "funding": [
  4970. {
  4971. "url": "https://symfony.com/sponsor",
  4972. "type": "custom"
  4973. },
  4974. {
  4975. "url": "https://github.com/fabpot",
  4976. "type": "github"
  4977. },
  4978. {
  4979. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4980. "type": "tidelift"
  4981. }
  4982. ],
  4983. "time": "2021-08-25T20:02:16+00:00"
  4984. },
  4985. {
  4986. "name": "symfony/css-selector",
  4987. "version": "v5.3.4",
  4988. "source": {
  4989. "type": "git",
  4990. "url": "https://github.com/symfony/css-selector.git",
  4991. "reference": "7fb120adc7f600a59027775b224c13a33530dd90"
  4992. },
  4993. "dist": {
  4994. "type": "zip",
  4995. "url": "https://api.github.com/repos/symfony/css-selector/zipball/7fb120adc7f600a59027775b224c13a33530dd90",
  4996. "reference": "7fb120adc7f600a59027775b224c13a33530dd90",
  4997. "shasum": "",
  4998. "mirrors": [
  4999. {
  5000. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5001. "preferred": true
  5002. }
  5003. ]
  5004. },
  5005. "require": {
  5006. "php": ">=7.2.5",
  5007. "symfony/polyfill-php80": "^1.16"
  5008. },
  5009. "type": "library",
  5010. "autoload": {
  5011. "psr-4": {
  5012. "Symfony\\Component\\CssSelector\\": ""
  5013. },
  5014. "exclude-from-classmap": [
  5015. "/Tests/"
  5016. ]
  5017. },
  5018. "notification-url": "https://packagist.org/downloads/",
  5019. "license": [
  5020. "MIT"
  5021. ],
  5022. "authors": [
  5023. {
  5024. "name": "Fabien Potencier",
  5025. "email": "fabien@symfony.com"
  5026. },
  5027. {
  5028. "name": "Jean-François Simon",
  5029. "email": "jeanfrancois.simon@sensiolabs.com"
  5030. },
  5031. {
  5032. "name": "Symfony Community",
  5033. "homepage": "https://symfony.com/contributors"
  5034. }
  5035. ],
  5036. "description": "Converts CSS selectors to XPath expressions",
  5037. "homepage": "https://symfony.com",
  5038. "support": {
  5039. "source": "https://github.com/symfony/css-selector/tree/v5.3.4"
  5040. },
  5041. "funding": [
  5042. {
  5043. "url": "https://symfony.com/sponsor",
  5044. "type": "custom"
  5045. },
  5046. {
  5047. "url": "https://github.com/fabpot",
  5048. "type": "github"
  5049. },
  5050. {
  5051. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5052. "type": "tidelift"
  5053. }
  5054. ],
  5055. "time": "2021-07-21T12:38:00+00:00"
  5056. },
  5057. {
  5058. "name": "symfony/deprecation-contracts",
  5059. "version": "v2.4.0",
  5060. "source": {
  5061. "type": "git",
  5062. "url": "https://github.com/symfony/deprecation-contracts.git",
  5063. "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627"
  5064. },
  5065. "dist": {
  5066. "type": "zip",
  5067. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5f38c8804a9e97d23e0c8d63341088cd8a22d627",
  5068. "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627",
  5069. "shasum": "",
  5070. "mirrors": [
  5071. {
  5072. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5073. "preferred": true
  5074. }
  5075. ]
  5076. },
  5077. "require": {
  5078. "php": ">=7.1"
  5079. },
  5080. "type": "library",
  5081. "extra": {
  5082. "branch-alias": {
  5083. "dev-main": "2.4-dev"
  5084. },
  5085. "thanks": {
  5086. "name": "symfony/contracts",
  5087. "url": "https://github.com/symfony/contracts"
  5088. }
  5089. },
  5090. "autoload": {
  5091. "files": [
  5092. "function.php"
  5093. ]
  5094. },
  5095. "notification-url": "https://packagist.org/downloads/",
  5096. "license": [
  5097. "MIT"
  5098. ],
  5099. "authors": [
  5100. {
  5101. "name": "Nicolas Grekas",
  5102. "email": "p@tchwork.com"
  5103. },
  5104. {
  5105. "name": "Symfony Community",
  5106. "homepage": "https://symfony.com/contributors"
  5107. }
  5108. ],
  5109. "description": "A generic function and convention to trigger deprecation notices",
  5110. "homepage": "https://symfony.com",
  5111. "support": {
  5112. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.4.0"
  5113. },
  5114. "funding": [
  5115. {
  5116. "url": "https://symfony.com/sponsor",
  5117. "type": "custom"
  5118. },
  5119. {
  5120. "url": "https://github.com/fabpot",
  5121. "type": "github"
  5122. },
  5123. {
  5124. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5125. "type": "tidelift"
  5126. }
  5127. ],
  5128. "time": "2021-03-23T23:28:01+00:00"
  5129. },
  5130. {
  5131. "name": "symfony/error-handler",
  5132. "version": "v5.3.7",
  5133. "source": {
  5134. "type": "git",
  5135. "url": "https://github.com/symfony/error-handler.git",
  5136. "reference": "3bc60d0fba00ae8d1eaa9eb5ab11a2bbdd1fc321"
  5137. },
  5138. "dist": {
  5139. "type": "zip",
  5140. "url": "https://api.github.com/repos/symfony/error-handler/zipball/3bc60d0fba00ae8d1eaa9eb5ab11a2bbdd1fc321",
  5141. "reference": "3bc60d0fba00ae8d1eaa9eb5ab11a2bbdd1fc321",
  5142. "shasum": "",
  5143. "mirrors": [
  5144. {
  5145. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5146. "preferred": true
  5147. }
  5148. ]
  5149. },
  5150. "require": {
  5151. "php": ">=7.2.5",
  5152. "psr/log": "^1|^2|^3",
  5153. "symfony/var-dumper": "^4.4|^5.0"
  5154. },
  5155. "require-dev": {
  5156. "symfony/deprecation-contracts": "^2.1",
  5157. "symfony/http-kernel": "^4.4|^5.0",
  5158. "symfony/serializer": "^4.4|^5.0"
  5159. },
  5160. "type": "library",
  5161. "autoload": {
  5162. "psr-4": {
  5163. "Symfony\\Component\\ErrorHandler\\": ""
  5164. },
  5165. "exclude-from-classmap": [
  5166. "/Tests/"
  5167. ]
  5168. },
  5169. "notification-url": "https://packagist.org/downloads/",
  5170. "license": [
  5171. "MIT"
  5172. ],
  5173. "authors": [
  5174. {
  5175. "name": "Fabien Potencier",
  5176. "email": "fabien@symfony.com"
  5177. },
  5178. {
  5179. "name": "Symfony Community",
  5180. "homepage": "https://symfony.com/contributors"
  5181. }
  5182. ],
  5183. "description": "Provides tools to manage errors and ease debugging PHP code",
  5184. "homepage": "https://symfony.com",
  5185. "support": {
  5186. "source": "https://github.com/symfony/error-handler/tree/v5.3.7"
  5187. },
  5188. "funding": [
  5189. {
  5190. "url": "https://symfony.com/sponsor",
  5191. "type": "custom"
  5192. },
  5193. {
  5194. "url": "https://github.com/fabpot",
  5195. "type": "github"
  5196. },
  5197. {
  5198. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5199. "type": "tidelift"
  5200. }
  5201. ],
  5202. "time": "2021-08-28T15:07:08+00:00"
  5203. },
  5204. {
  5205. "name": "symfony/event-dispatcher",
  5206. "version": "v5.3.7",
  5207. "source": {
  5208. "type": "git",
  5209. "url": "https://github.com/symfony/event-dispatcher.git",
  5210. "reference": "ce7b20d69c66a20939d8952b617506a44d102130"
  5211. },
  5212. "dist": {
  5213. "type": "zip",
  5214. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/ce7b20d69c66a20939d8952b617506a44d102130",
  5215. "reference": "ce7b20d69c66a20939d8952b617506a44d102130",
  5216. "shasum": "",
  5217. "mirrors": [
  5218. {
  5219. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5220. "preferred": true
  5221. }
  5222. ]
  5223. },
  5224. "require": {
  5225. "php": ">=7.2.5",
  5226. "symfony/deprecation-contracts": "^2.1",
  5227. "symfony/event-dispatcher-contracts": "^2",
  5228. "symfony/polyfill-php80": "^1.16"
  5229. },
  5230. "conflict": {
  5231. "symfony/dependency-injection": "<4.4"
  5232. },
  5233. "provide": {
  5234. "psr/event-dispatcher-implementation": "1.0",
  5235. "symfony/event-dispatcher-implementation": "2.0"
  5236. },
  5237. "require-dev": {
  5238. "psr/log": "^1|^2|^3",
  5239. "symfony/config": "^4.4|^5.0",
  5240. "symfony/dependency-injection": "^4.4|^5.0",
  5241. "symfony/error-handler": "^4.4|^5.0",
  5242. "symfony/expression-language": "^4.4|^5.0",
  5243. "symfony/http-foundation": "^4.4|^5.0",
  5244. "symfony/service-contracts": "^1.1|^2",
  5245. "symfony/stopwatch": "^4.4|^5.0"
  5246. },
  5247. "suggest": {
  5248. "symfony/dependency-injection": "",
  5249. "symfony/http-kernel": ""
  5250. },
  5251. "type": "library",
  5252. "autoload": {
  5253. "psr-4": {
  5254. "Symfony\\Component\\EventDispatcher\\": ""
  5255. },
  5256. "exclude-from-classmap": [
  5257. "/Tests/"
  5258. ]
  5259. },
  5260. "notification-url": "https://packagist.org/downloads/",
  5261. "license": [
  5262. "MIT"
  5263. ],
  5264. "authors": [
  5265. {
  5266. "name": "Fabien Potencier",
  5267. "email": "fabien@symfony.com"
  5268. },
  5269. {
  5270. "name": "Symfony Community",
  5271. "homepage": "https://symfony.com/contributors"
  5272. }
  5273. ],
  5274. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5275. "homepage": "https://symfony.com",
  5276. "support": {
  5277. "source": "https://github.com/symfony/event-dispatcher/tree/v5.3.7"
  5278. },
  5279. "funding": [
  5280. {
  5281. "url": "https://symfony.com/sponsor",
  5282. "type": "custom"
  5283. },
  5284. {
  5285. "url": "https://github.com/fabpot",
  5286. "type": "github"
  5287. },
  5288. {
  5289. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5290. "type": "tidelift"
  5291. }
  5292. ],
  5293. "time": "2021-08-04T21:20:46+00:00"
  5294. },
  5295. {
  5296. "name": "symfony/event-dispatcher-contracts",
  5297. "version": "v2.4.0",
  5298. "source": {
  5299. "type": "git",
  5300. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5301. "reference": "69fee1ad2332a7cbab3aca13591953da9cdb7a11"
  5302. },
  5303. "dist": {
  5304. "type": "zip",
  5305. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/69fee1ad2332a7cbab3aca13591953da9cdb7a11",
  5306. "reference": "69fee1ad2332a7cbab3aca13591953da9cdb7a11",
  5307. "shasum": "",
  5308. "mirrors": [
  5309. {
  5310. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5311. "preferred": true
  5312. }
  5313. ]
  5314. },
  5315. "require": {
  5316. "php": ">=7.2.5",
  5317. "psr/event-dispatcher": "^1"
  5318. },
  5319. "suggest": {
  5320. "symfony/event-dispatcher-implementation": ""
  5321. },
  5322. "type": "library",
  5323. "extra": {
  5324. "branch-alias": {
  5325. "dev-main": "2.4-dev"
  5326. },
  5327. "thanks": {
  5328. "name": "symfony/contracts",
  5329. "url": "https://github.com/symfony/contracts"
  5330. }
  5331. },
  5332. "autoload": {
  5333. "psr-4": {
  5334. "Symfony\\Contracts\\EventDispatcher\\": ""
  5335. }
  5336. },
  5337. "notification-url": "https://packagist.org/downloads/",
  5338. "license": [
  5339. "MIT"
  5340. ],
  5341. "authors": [
  5342. {
  5343. "name": "Nicolas Grekas",
  5344. "email": "p@tchwork.com"
  5345. },
  5346. {
  5347. "name": "Symfony Community",
  5348. "homepage": "https://symfony.com/contributors"
  5349. }
  5350. ],
  5351. "description": "Generic abstractions related to dispatching event",
  5352. "homepage": "https://symfony.com",
  5353. "keywords": [
  5354. "abstractions",
  5355. "contracts",
  5356. "decoupling",
  5357. "interfaces",
  5358. "interoperability",
  5359. "standards"
  5360. ],
  5361. "support": {
  5362. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.4.0"
  5363. },
  5364. "funding": [
  5365. {
  5366. "url": "https://symfony.com/sponsor",
  5367. "type": "custom"
  5368. },
  5369. {
  5370. "url": "https://github.com/fabpot",
  5371. "type": "github"
  5372. },
  5373. {
  5374. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5375. "type": "tidelift"
  5376. }
  5377. ],
  5378. "time": "2021-03-23T23:28:01+00:00"
  5379. },
  5380. {
  5381. "name": "symfony/finder",
  5382. "version": "v5.3.7",
  5383. "source": {
  5384. "type": "git",
  5385. "url": "https://github.com/symfony/finder.git",
  5386. "reference": "a10000ada1e600d109a6c7632e9ac42e8bf2fb93"
  5387. },
  5388. "dist": {
  5389. "type": "zip",
  5390. "url": "https://api.github.com/repos/symfony/finder/zipball/a10000ada1e600d109a6c7632e9ac42e8bf2fb93",
  5391. "reference": "a10000ada1e600d109a6c7632e9ac42e8bf2fb93",
  5392. "shasum": "",
  5393. "mirrors": [
  5394. {
  5395. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5396. "preferred": true
  5397. }
  5398. ]
  5399. },
  5400. "require": {
  5401. "php": ">=7.2.5",
  5402. "symfony/polyfill-php80": "^1.16"
  5403. },
  5404. "type": "library",
  5405. "autoload": {
  5406. "psr-4": {
  5407. "Symfony\\Component\\Finder\\": ""
  5408. },
  5409. "exclude-from-classmap": [
  5410. "/Tests/"
  5411. ]
  5412. },
  5413. "notification-url": "https://packagist.org/downloads/",
  5414. "license": [
  5415. "MIT"
  5416. ],
  5417. "authors": [
  5418. {
  5419. "name": "Fabien Potencier",
  5420. "email": "fabien@symfony.com"
  5421. },
  5422. {
  5423. "name": "Symfony Community",
  5424. "homepage": "https://symfony.com/contributors"
  5425. }
  5426. ],
  5427. "description": "Finds files and directories via an intuitive fluent interface",
  5428. "homepage": "https://symfony.com",
  5429. "support": {
  5430. "source": "https://github.com/symfony/finder/tree/v5.3.7"
  5431. },
  5432. "funding": [
  5433. {
  5434. "url": "https://symfony.com/sponsor",
  5435. "type": "custom"
  5436. },
  5437. {
  5438. "url": "https://github.com/fabpot",
  5439. "type": "github"
  5440. },
  5441. {
  5442. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5443. "type": "tidelift"
  5444. }
  5445. ],
  5446. "time": "2021-08-04T21:20:46+00:00"
  5447. },
  5448. {
  5449. "name": "symfony/http-client-contracts",
  5450. "version": "v2.4.0",
  5451. "source": {
  5452. "type": "git",
  5453. "url": "https://github.com/symfony/http-client-contracts.git",
  5454. "reference": "7e82f6084d7cae521a75ef2cb5c9457bbda785f4"
  5455. },
  5456. "dist": {
  5457. "type": "zip",
  5458. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/7e82f6084d7cae521a75ef2cb5c9457bbda785f4",
  5459. "reference": "7e82f6084d7cae521a75ef2cb5c9457bbda785f4",
  5460. "shasum": "",
  5461. "mirrors": [
  5462. {
  5463. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5464. "preferred": true
  5465. }
  5466. ]
  5467. },
  5468. "require": {
  5469. "php": ">=7.2.5"
  5470. },
  5471. "suggest": {
  5472. "symfony/http-client-implementation": ""
  5473. },
  5474. "type": "library",
  5475. "extra": {
  5476. "branch-alias": {
  5477. "dev-main": "2.4-dev"
  5478. },
  5479. "thanks": {
  5480. "name": "symfony/contracts",
  5481. "url": "https://github.com/symfony/contracts"
  5482. }
  5483. },
  5484. "autoload": {
  5485. "psr-4": {
  5486. "Symfony\\Contracts\\HttpClient\\": ""
  5487. }
  5488. },
  5489. "notification-url": "https://packagist.org/downloads/",
  5490. "license": [
  5491. "MIT"
  5492. ],
  5493. "authors": [
  5494. {
  5495. "name": "Nicolas Grekas",
  5496. "email": "p@tchwork.com"
  5497. },
  5498. {
  5499. "name": "Symfony Community",
  5500. "homepage": "https://symfony.com/contributors"
  5501. }
  5502. ],
  5503. "description": "Generic abstractions related to HTTP clients",
  5504. "homepage": "https://symfony.com",
  5505. "keywords": [
  5506. "abstractions",
  5507. "contracts",
  5508. "decoupling",
  5509. "interfaces",
  5510. "interoperability",
  5511. "standards"
  5512. ],
  5513. "support": {
  5514. "source": "https://github.com/symfony/http-client-contracts/tree/v2.4.0"
  5515. },
  5516. "funding": [
  5517. {
  5518. "url": "https://symfony.com/sponsor",
  5519. "type": "custom"
  5520. },
  5521. {
  5522. "url": "https://github.com/fabpot",
  5523. "type": "github"
  5524. },
  5525. {
  5526. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5527. "type": "tidelift"
  5528. }
  5529. ],
  5530. "time": "2021-04-11T23:07:08+00:00"
  5531. },
  5532. {
  5533. "name": "symfony/http-foundation",
  5534. "version": "v5.3.7",
  5535. "source": {
  5536. "type": "git",
  5537. "url": "https://github.com/symfony/http-foundation.git",
  5538. "reference": "e36c8e5502b4f3f0190c675f1c1f1248a64f04e5"
  5539. },
  5540. "dist": {
  5541. "type": "zip",
  5542. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/e36c8e5502b4f3f0190c675f1c1f1248a64f04e5",
  5543. "reference": "e36c8e5502b4f3f0190c675f1c1f1248a64f04e5",
  5544. "shasum": "",
  5545. "mirrors": [
  5546. {
  5547. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5548. "preferred": true
  5549. }
  5550. ]
  5551. },
  5552. "require": {
  5553. "php": ">=7.2.5",
  5554. "symfony/deprecation-contracts": "^2.1",
  5555. "symfony/polyfill-mbstring": "~1.1",
  5556. "symfony/polyfill-php80": "^1.16"
  5557. },
  5558. "require-dev": {
  5559. "predis/predis": "~1.0",
  5560. "symfony/cache": "^4.4|^5.0",
  5561. "symfony/expression-language": "^4.4|^5.0",
  5562. "symfony/mime": "^4.4|^5.0"
  5563. },
  5564. "suggest": {
  5565. "symfony/mime": "To use the file extension guesser"
  5566. },
  5567. "type": "library",
  5568. "autoload": {
  5569. "psr-4": {
  5570. "Symfony\\Component\\HttpFoundation\\": ""
  5571. },
  5572. "exclude-from-classmap": [
  5573. "/Tests/"
  5574. ]
  5575. },
  5576. "notification-url": "https://packagist.org/downloads/",
  5577. "license": [
  5578. "MIT"
  5579. ],
  5580. "authors": [
  5581. {
  5582. "name": "Fabien Potencier",
  5583. "email": "fabien@symfony.com"
  5584. },
  5585. {
  5586. "name": "Symfony Community",
  5587. "homepage": "https://symfony.com/contributors"
  5588. }
  5589. ],
  5590. "description": "Defines an object-oriented layer for the HTTP specification",
  5591. "homepage": "https://symfony.com",
  5592. "support": {
  5593. "source": "https://github.com/symfony/http-foundation/tree/v5.3.7"
  5594. },
  5595. "funding": [
  5596. {
  5597. "url": "https://symfony.com/sponsor",
  5598. "type": "custom"
  5599. },
  5600. {
  5601. "url": "https://github.com/fabpot",
  5602. "type": "github"
  5603. },
  5604. {
  5605. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5606. "type": "tidelift"
  5607. }
  5608. ],
  5609. "time": "2021-08-27T11:20:35+00:00"
  5610. },
  5611. {
  5612. "name": "symfony/http-kernel",
  5613. "version": "v5.3.9",
  5614. "source": {
  5615. "type": "git",
  5616. "url": "https://github.com/symfony/http-kernel.git",
  5617. "reference": "ceaf46a992f60e90645e7279825a830f733a17c5"
  5618. },
  5619. "dist": {
  5620. "type": "zip",
  5621. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/ceaf46a992f60e90645e7279825a830f733a17c5",
  5622. "reference": "ceaf46a992f60e90645e7279825a830f733a17c5",
  5623. "shasum": "",
  5624. "mirrors": [
  5625. {
  5626. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5627. "preferred": true
  5628. }
  5629. ]
  5630. },
  5631. "require": {
  5632. "php": ">=7.2.5",
  5633. "psr/log": "^1|^2",
  5634. "symfony/deprecation-contracts": "^2.1",
  5635. "symfony/error-handler": "^4.4|^5.0",
  5636. "symfony/event-dispatcher": "^5.0",
  5637. "symfony/http-client-contracts": "^1.1|^2",
  5638. "symfony/http-foundation": "^5.3.7",
  5639. "symfony/polyfill-ctype": "^1.8",
  5640. "symfony/polyfill-php73": "^1.9",
  5641. "symfony/polyfill-php80": "^1.16"
  5642. },
  5643. "conflict": {
  5644. "symfony/browser-kit": "<4.4",
  5645. "symfony/cache": "<5.0",
  5646. "symfony/config": "<5.0",
  5647. "symfony/console": "<4.4",
  5648. "symfony/dependency-injection": "<5.3",
  5649. "symfony/doctrine-bridge": "<5.0",
  5650. "symfony/form": "<5.0",
  5651. "symfony/http-client": "<5.0",
  5652. "symfony/mailer": "<5.0",
  5653. "symfony/messenger": "<5.0",
  5654. "symfony/translation": "<5.0",
  5655. "symfony/twig-bridge": "<5.0",
  5656. "symfony/validator": "<5.0",
  5657. "twig/twig": "<2.13"
  5658. },
  5659. "provide": {
  5660. "psr/log-implementation": "1.0|2.0"
  5661. },
  5662. "require-dev": {
  5663. "psr/cache": "^1.0|^2.0|^3.0",
  5664. "symfony/browser-kit": "^4.4|^5.0",
  5665. "symfony/config": "^5.0",
  5666. "symfony/console": "^4.4|^5.0",
  5667. "symfony/css-selector": "^4.4|^5.0",
  5668. "symfony/dependency-injection": "^5.3",
  5669. "symfony/dom-crawler": "^4.4|^5.0",
  5670. "symfony/expression-language": "^4.4|^5.0",
  5671. "symfony/finder": "^4.4|^5.0",
  5672. "symfony/process": "^4.4|^5.0",
  5673. "symfony/routing": "^4.4|^5.0",
  5674. "symfony/stopwatch": "^4.4|^5.0",
  5675. "symfony/translation": "^4.4|^5.0",
  5676. "symfony/translation-contracts": "^1.1|^2",
  5677. "twig/twig": "^2.13|^3.0.4"
  5678. },
  5679. "suggest": {
  5680. "symfony/browser-kit": "",
  5681. "symfony/config": "",
  5682. "symfony/console": "",
  5683. "symfony/dependency-injection": ""
  5684. },
  5685. "type": "library",
  5686. "autoload": {
  5687. "psr-4": {
  5688. "Symfony\\Component\\HttpKernel\\": ""
  5689. },
  5690. "exclude-from-classmap": [
  5691. "/Tests/"
  5692. ]
  5693. },
  5694. "notification-url": "https://packagist.org/downloads/",
  5695. "license": [
  5696. "MIT"
  5697. ],
  5698. "authors": [
  5699. {
  5700. "name": "Fabien Potencier",
  5701. "email": "fabien@symfony.com"
  5702. },
  5703. {
  5704. "name": "Symfony Community",
  5705. "homepage": "https://symfony.com/contributors"
  5706. }
  5707. ],
  5708. "description": "Provides a structured process for converting a Request into a Response",
  5709. "homepage": "https://symfony.com",
  5710. "support": {
  5711. "source": "https://github.com/symfony/http-kernel/tree/v5.3.9"
  5712. },
  5713. "funding": [
  5714. {
  5715. "url": "https://symfony.com/sponsor",
  5716. "type": "custom"
  5717. },
  5718. {
  5719. "url": "https://github.com/fabpot",
  5720. "type": "github"
  5721. },
  5722. {
  5723. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5724. "type": "tidelift"
  5725. }
  5726. ],
  5727. "time": "2021-09-28T10:25:11+00:00"
  5728. },
  5729. {
  5730. "name": "symfony/mime",
  5731. "version": "v5.3.8",
  5732. "source": {
  5733. "type": "git",
  5734. "url": "https://github.com/symfony/mime.git",
  5735. "reference": "a756033d0a7e53db389618653ae991eba5a19a11"
  5736. },
  5737. "dist": {
  5738. "type": "zip",
  5739. "url": "https://api.github.com/repos/symfony/mime/zipball/a756033d0a7e53db389618653ae991eba5a19a11",
  5740. "reference": "a756033d0a7e53db389618653ae991eba5a19a11",
  5741. "shasum": "",
  5742. "mirrors": [
  5743. {
  5744. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5745. "preferred": true
  5746. }
  5747. ]
  5748. },
  5749. "require": {
  5750. "php": ">=7.2.5",
  5751. "symfony/deprecation-contracts": "^2.1",
  5752. "symfony/polyfill-intl-idn": "^1.10",
  5753. "symfony/polyfill-mbstring": "^1.0",
  5754. "symfony/polyfill-php80": "^1.16"
  5755. },
  5756. "conflict": {
  5757. "egulias/email-validator": "~3.0.0",
  5758. "phpdocumentor/reflection-docblock": "<3.2.2",
  5759. "phpdocumentor/type-resolver": "<1.4.0",
  5760. "symfony/mailer": "<4.4"
  5761. },
  5762. "require-dev": {
  5763. "egulias/email-validator": "^2.1.10|^3.1",
  5764. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5765. "symfony/dependency-injection": "^4.4|^5.0",
  5766. "symfony/property-access": "^4.4|^5.1",
  5767. "symfony/property-info": "^4.4|^5.1",
  5768. "symfony/serializer": "^5.2"
  5769. },
  5770. "type": "library",
  5771. "autoload": {
  5772. "psr-4": {
  5773. "Symfony\\Component\\Mime\\": ""
  5774. },
  5775. "exclude-from-classmap": [
  5776. "/Tests/"
  5777. ]
  5778. },
  5779. "notification-url": "https://packagist.org/downloads/",
  5780. "license": [
  5781. "MIT"
  5782. ],
  5783. "authors": [
  5784. {
  5785. "name": "Fabien Potencier",
  5786. "email": "fabien@symfony.com"
  5787. },
  5788. {
  5789. "name": "Symfony Community",
  5790. "homepage": "https://symfony.com/contributors"
  5791. }
  5792. ],
  5793. "description": "Allows manipulating MIME messages",
  5794. "homepage": "https://symfony.com",
  5795. "keywords": [
  5796. "mime",
  5797. "mime-type"
  5798. ],
  5799. "support": {
  5800. "source": "https://github.com/symfony/mime/tree/v5.3.8"
  5801. },
  5802. "funding": [
  5803. {
  5804. "url": "https://symfony.com/sponsor",
  5805. "type": "custom"
  5806. },
  5807. {
  5808. "url": "https://github.com/fabpot",
  5809. "type": "github"
  5810. },
  5811. {
  5812. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5813. "type": "tidelift"
  5814. }
  5815. ],
  5816. "time": "2021-09-10T12:30:38+00:00"
  5817. },
  5818. {
  5819. "name": "symfony/options-resolver",
  5820. "version": "v5.3.7",
  5821. "source": {
  5822. "type": "git",
  5823. "url": "https://github.com/symfony/options-resolver.git",
  5824. "reference": "4b78e55b179003a42523a362cc0e8327f7a69b5e"
  5825. },
  5826. "dist": {
  5827. "type": "zip",
  5828. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/4b78e55b179003a42523a362cc0e8327f7a69b5e",
  5829. "reference": "4b78e55b179003a42523a362cc0e8327f7a69b5e",
  5830. "shasum": "",
  5831. "mirrors": [
  5832. {
  5833. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5834. "preferred": true
  5835. }
  5836. ]
  5837. },
  5838. "require": {
  5839. "php": ">=7.2.5",
  5840. "symfony/deprecation-contracts": "^2.1",
  5841. "symfony/polyfill-php73": "~1.0",
  5842. "symfony/polyfill-php80": "^1.16"
  5843. },
  5844. "type": "library",
  5845. "autoload": {
  5846. "psr-4": {
  5847. "Symfony\\Component\\OptionsResolver\\": ""
  5848. },
  5849. "exclude-from-classmap": [
  5850. "/Tests/"
  5851. ]
  5852. },
  5853. "notification-url": "https://packagist.org/downloads/",
  5854. "license": [
  5855. "MIT"
  5856. ],
  5857. "authors": [
  5858. {
  5859. "name": "Fabien Potencier",
  5860. "email": "fabien@symfony.com"
  5861. },
  5862. {
  5863. "name": "Symfony Community",
  5864. "homepage": "https://symfony.com/contributors"
  5865. }
  5866. ],
  5867. "description": "Provides an improved replacement for the array_replace PHP function",
  5868. "homepage": "https://symfony.com",
  5869. "keywords": [
  5870. "config",
  5871. "configuration",
  5872. "options"
  5873. ],
  5874. "support": {
  5875. "source": "https://github.com/symfony/options-resolver/tree/v5.3.7"
  5876. },
  5877. "funding": [
  5878. {
  5879. "url": "https://symfony.com/sponsor",
  5880. "type": "custom"
  5881. },
  5882. {
  5883. "url": "https://github.com/fabpot",
  5884. "type": "github"
  5885. },
  5886. {
  5887. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5888. "type": "tidelift"
  5889. }
  5890. ],
  5891. "time": "2021-08-04T21:20:46+00:00"
  5892. },
  5893. {
  5894. "name": "symfony/polyfill-ctype",
  5895. "version": "v1.23.0",
  5896. "source": {
  5897. "type": "git",
  5898. "url": "https://github.com/symfony/polyfill-ctype.git",
  5899. "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce"
  5900. },
  5901. "dist": {
  5902. "type": "zip",
  5903. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/46cd95797e9df938fdd2b03693b5fca5e64b01ce",
  5904. "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce",
  5905. "shasum": "",
  5906. "mirrors": [
  5907. {
  5908. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5909. "preferred": true
  5910. }
  5911. ]
  5912. },
  5913. "require": {
  5914. "php": ">=7.1"
  5915. },
  5916. "suggest": {
  5917. "ext-ctype": "For best performance"
  5918. },
  5919. "type": "library",
  5920. "extra": {
  5921. "branch-alias": {
  5922. "dev-main": "1.23-dev"
  5923. },
  5924. "thanks": {
  5925. "name": "symfony/polyfill",
  5926. "url": "https://github.com/symfony/polyfill"
  5927. }
  5928. },
  5929. "autoload": {
  5930. "psr-4": {
  5931. "Symfony\\Polyfill\\Ctype\\": ""
  5932. },
  5933. "files": [
  5934. "bootstrap.php"
  5935. ]
  5936. },
  5937. "notification-url": "https://packagist.org/downloads/",
  5938. "license": [
  5939. "MIT"
  5940. ],
  5941. "authors": [
  5942. {
  5943. "name": "Gert de Pagter",
  5944. "email": "BackEndTea@gmail.com"
  5945. },
  5946. {
  5947. "name": "Symfony Community",
  5948. "homepage": "https://symfony.com/contributors"
  5949. }
  5950. ],
  5951. "description": "Symfony polyfill for ctype functions",
  5952. "homepage": "https://symfony.com",
  5953. "keywords": [
  5954. "compatibility",
  5955. "ctype",
  5956. "polyfill",
  5957. "portable"
  5958. ],
  5959. "support": {
  5960. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.23.0"
  5961. },
  5962. "funding": [
  5963. {
  5964. "url": "https://symfony.com/sponsor",
  5965. "type": "custom"
  5966. },
  5967. {
  5968. "url": "https://github.com/fabpot",
  5969. "type": "github"
  5970. },
  5971. {
  5972. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5973. "type": "tidelift"
  5974. }
  5975. ],
  5976. "time": "2021-02-19T12:13:01+00:00"
  5977. },
  5978. {
  5979. "name": "symfony/polyfill-iconv",
  5980. "version": "v1.23.0",
  5981. "source": {
  5982. "type": "git",
  5983. "url": "https://github.com/symfony/polyfill-iconv.git",
  5984. "reference": "63b5bb7db83e5673936d6e3b8b3e022ff6474933"
  5985. },
  5986. "dist": {
  5987. "type": "zip",
  5988. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/63b5bb7db83e5673936d6e3b8b3e022ff6474933",
  5989. "reference": "63b5bb7db83e5673936d6e3b8b3e022ff6474933",
  5990. "shasum": "",
  5991. "mirrors": [
  5992. {
  5993. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5994. "preferred": true
  5995. }
  5996. ]
  5997. },
  5998. "require": {
  5999. "php": ">=7.1"
  6000. },
  6001. "suggest": {
  6002. "ext-iconv": "For best performance"
  6003. },
  6004. "type": "library",
  6005. "extra": {
  6006. "branch-alias": {
  6007. "dev-main": "1.23-dev"
  6008. },
  6009. "thanks": {
  6010. "name": "symfony/polyfill",
  6011. "url": "https://github.com/symfony/polyfill"
  6012. }
  6013. },
  6014. "autoload": {
  6015. "psr-4": {
  6016. "Symfony\\Polyfill\\Iconv\\": ""
  6017. },
  6018. "files": [
  6019. "bootstrap.php"
  6020. ]
  6021. },
  6022. "notification-url": "https://packagist.org/downloads/",
  6023. "license": [
  6024. "MIT"
  6025. ],
  6026. "authors": [
  6027. {
  6028. "name": "Nicolas Grekas",
  6029. "email": "p@tchwork.com"
  6030. },
  6031. {
  6032. "name": "Symfony Community",
  6033. "homepage": "https://symfony.com/contributors"
  6034. }
  6035. ],
  6036. "description": "Symfony polyfill for the Iconv extension",
  6037. "homepage": "https://symfony.com",
  6038. "keywords": [
  6039. "compatibility",
  6040. "iconv",
  6041. "polyfill",
  6042. "portable",
  6043. "shim"
  6044. ],
  6045. "support": {
  6046. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.23.0"
  6047. },
  6048. "funding": [
  6049. {
  6050. "url": "https://symfony.com/sponsor",
  6051. "type": "custom"
  6052. },
  6053. {
  6054. "url": "https://github.com/fabpot",
  6055. "type": "github"
  6056. },
  6057. {
  6058. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6059. "type": "tidelift"
  6060. }
  6061. ],
  6062. "time": "2021-05-27T09:27:20+00:00"
  6063. },
  6064. {
  6065. "name": "symfony/polyfill-intl-grapheme",
  6066. "version": "v1.23.1",
  6067. "source": {
  6068. "type": "git",
  6069. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6070. "reference": "16880ba9c5ebe3642d1995ab866db29270b36535"
  6071. },
  6072. "dist": {
  6073. "type": "zip",
  6074. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/16880ba9c5ebe3642d1995ab866db29270b36535",
  6075. "reference": "16880ba9c5ebe3642d1995ab866db29270b36535",
  6076. "shasum": "",
  6077. "mirrors": [
  6078. {
  6079. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6080. "preferred": true
  6081. }
  6082. ]
  6083. },
  6084. "require": {
  6085. "php": ">=7.1"
  6086. },
  6087. "suggest": {
  6088. "ext-intl": "For best performance"
  6089. },
  6090. "type": "library",
  6091. "extra": {
  6092. "branch-alias": {
  6093. "dev-main": "1.23-dev"
  6094. },
  6095. "thanks": {
  6096. "name": "symfony/polyfill",
  6097. "url": "https://github.com/symfony/polyfill"
  6098. }
  6099. },
  6100. "autoload": {
  6101. "psr-4": {
  6102. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6103. },
  6104. "files": [
  6105. "bootstrap.php"
  6106. ]
  6107. },
  6108. "notification-url": "https://packagist.org/downloads/",
  6109. "license": [
  6110. "MIT"
  6111. ],
  6112. "authors": [
  6113. {
  6114. "name": "Nicolas Grekas",
  6115. "email": "p@tchwork.com"
  6116. },
  6117. {
  6118. "name": "Symfony Community",
  6119. "homepage": "https://symfony.com/contributors"
  6120. }
  6121. ],
  6122. "description": "Symfony polyfill for intl's grapheme_* functions",
  6123. "homepage": "https://symfony.com",
  6124. "keywords": [
  6125. "compatibility",
  6126. "grapheme",
  6127. "intl",
  6128. "polyfill",
  6129. "portable",
  6130. "shim"
  6131. ],
  6132. "support": {
  6133. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.23.1"
  6134. },
  6135. "funding": [
  6136. {
  6137. "url": "https://symfony.com/sponsor",
  6138. "type": "custom"
  6139. },
  6140. {
  6141. "url": "https://github.com/fabpot",
  6142. "type": "github"
  6143. },
  6144. {
  6145. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6146. "type": "tidelift"
  6147. }
  6148. ],
  6149. "time": "2021-05-27T12:26:48+00:00"
  6150. },
  6151. {
  6152. "name": "symfony/polyfill-intl-idn",
  6153. "version": "v1.23.0",
  6154. "source": {
  6155. "type": "git",
  6156. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6157. "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65"
  6158. },
  6159. "dist": {
  6160. "type": "zip",
  6161. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/65bd267525e82759e7d8c4e8ceea44f398838e65",
  6162. "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65",
  6163. "shasum": "",
  6164. "mirrors": [
  6165. {
  6166. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6167. "preferred": true
  6168. }
  6169. ]
  6170. },
  6171. "require": {
  6172. "php": ">=7.1",
  6173. "symfony/polyfill-intl-normalizer": "^1.10",
  6174. "symfony/polyfill-php72": "^1.10"
  6175. },
  6176. "suggest": {
  6177. "ext-intl": "For best performance"
  6178. },
  6179. "type": "library",
  6180. "extra": {
  6181. "branch-alias": {
  6182. "dev-main": "1.23-dev"
  6183. },
  6184. "thanks": {
  6185. "name": "symfony/polyfill",
  6186. "url": "https://github.com/symfony/polyfill"
  6187. }
  6188. },
  6189. "autoload": {
  6190. "psr-4": {
  6191. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6192. },
  6193. "files": [
  6194. "bootstrap.php"
  6195. ]
  6196. },
  6197. "notification-url": "https://packagist.org/downloads/",
  6198. "license": [
  6199. "MIT"
  6200. ],
  6201. "authors": [
  6202. {
  6203. "name": "Laurent Bassin",
  6204. "email": "laurent@bassin.info"
  6205. },
  6206. {
  6207. "name": "Trevor Rowbotham",
  6208. "email": "trevor.rowbotham@pm.me"
  6209. },
  6210. {
  6211. "name": "Symfony Community",
  6212. "homepage": "https://symfony.com/contributors"
  6213. }
  6214. ],
  6215. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6216. "homepage": "https://symfony.com",
  6217. "keywords": [
  6218. "compatibility",
  6219. "idn",
  6220. "intl",
  6221. "polyfill",
  6222. "portable",
  6223. "shim"
  6224. ],
  6225. "support": {
  6226. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.23.0"
  6227. },
  6228. "funding": [
  6229. {
  6230. "url": "https://symfony.com/sponsor",
  6231. "type": "custom"
  6232. },
  6233. {
  6234. "url": "https://github.com/fabpot",
  6235. "type": "github"
  6236. },
  6237. {
  6238. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6239. "type": "tidelift"
  6240. }
  6241. ],
  6242. "time": "2021-05-27T09:27:20+00:00"
  6243. },
  6244. {
  6245. "name": "symfony/polyfill-intl-normalizer",
  6246. "version": "v1.23.0",
  6247. "source": {
  6248. "type": "git",
  6249. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6250. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8"
  6251. },
  6252. "dist": {
  6253. "type": "zip",
  6254. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8590a5f561694770bdcd3f9b5c69dde6945028e8",
  6255. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8",
  6256. "shasum": "",
  6257. "mirrors": [
  6258. {
  6259. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6260. "preferred": true
  6261. }
  6262. ]
  6263. },
  6264. "require": {
  6265. "php": ">=7.1"
  6266. },
  6267. "suggest": {
  6268. "ext-intl": "For best performance"
  6269. },
  6270. "type": "library",
  6271. "extra": {
  6272. "branch-alias": {
  6273. "dev-main": "1.23-dev"
  6274. },
  6275. "thanks": {
  6276. "name": "symfony/polyfill",
  6277. "url": "https://github.com/symfony/polyfill"
  6278. }
  6279. },
  6280. "autoload": {
  6281. "psr-4": {
  6282. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6283. },
  6284. "files": [
  6285. "bootstrap.php"
  6286. ],
  6287. "classmap": [
  6288. "Resources/stubs"
  6289. ]
  6290. },
  6291. "notification-url": "https://packagist.org/downloads/",
  6292. "license": [
  6293. "MIT"
  6294. ],
  6295. "authors": [
  6296. {
  6297. "name": "Nicolas Grekas",
  6298. "email": "p@tchwork.com"
  6299. },
  6300. {
  6301. "name": "Symfony Community",
  6302. "homepage": "https://symfony.com/contributors"
  6303. }
  6304. ],
  6305. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6306. "homepage": "https://symfony.com",
  6307. "keywords": [
  6308. "compatibility",
  6309. "intl",
  6310. "normalizer",
  6311. "polyfill",
  6312. "portable",
  6313. "shim"
  6314. ],
  6315. "support": {
  6316. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.23.0"
  6317. },
  6318. "funding": [
  6319. {
  6320. "url": "https://symfony.com/sponsor",
  6321. "type": "custom"
  6322. },
  6323. {
  6324. "url": "https://github.com/fabpot",
  6325. "type": "github"
  6326. },
  6327. {
  6328. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6329. "type": "tidelift"
  6330. }
  6331. ],
  6332. "time": "2021-02-19T12:13:01+00:00"
  6333. },
  6334. {
  6335. "name": "symfony/polyfill-mbstring",
  6336. "version": "v1.23.1",
  6337. "source": {
  6338. "type": "git",
  6339. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6340. "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6"
  6341. },
  6342. "dist": {
  6343. "type": "zip",
  6344. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9174a3d80210dca8daa7f31fec659150bbeabfc6",
  6345. "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6",
  6346. "shasum": "",
  6347. "mirrors": [
  6348. {
  6349. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6350. "preferred": true
  6351. }
  6352. ]
  6353. },
  6354. "require": {
  6355. "php": ">=7.1"
  6356. },
  6357. "suggest": {
  6358. "ext-mbstring": "For best performance"
  6359. },
  6360. "type": "library",
  6361. "extra": {
  6362. "branch-alias": {
  6363. "dev-main": "1.23-dev"
  6364. },
  6365. "thanks": {
  6366. "name": "symfony/polyfill",
  6367. "url": "https://github.com/symfony/polyfill"
  6368. }
  6369. },
  6370. "autoload": {
  6371. "psr-4": {
  6372. "Symfony\\Polyfill\\Mbstring\\": ""
  6373. },
  6374. "files": [
  6375. "bootstrap.php"
  6376. ]
  6377. },
  6378. "notification-url": "https://packagist.org/downloads/",
  6379. "license": [
  6380. "MIT"
  6381. ],
  6382. "authors": [
  6383. {
  6384. "name": "Nicolas Grekas",
  6385. "email": "p@tchwork.com"
  6386. },
  6387. {
  6388. "name": "Symfony Community",
  6389. "homepage": "https://symfony.com/contributors"
  6390. }
  6391. ],
  6392. "description": "Symfony polyfill for the Mbstring extension",
  6393. "homepage": "https://symfony.com",
  6394. "keywords": [
  6395. "compatibility",
  6396. "mbstring",
  6397. "polyfill",
  6398. "portable",
  6399. "shim"
  6400. ],
  6401. "support": {
  6402. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.23.1"
  6403. },
  6404. "funding": [
  6405. {
  6406. "url": "https://symfony.com/sponsor",
  6407. "type": "custom"
  6408. },
  6409. {
  6410. "url": "https://github.com/fabpot",
  6411. "type": "github"
  6412. },
  6413. {
  6414. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6415. "type": "tidelift"
  6416. }
  6417. ],
  6418. "time": "2021-05-27T12:26:48+00:00"
  6419. },
  6420. {
  6421. "name": "symfony/polyfill-php72",
  6422. "version": "v1.23.0",
  6423. "source": {
  6424. "type": "git",
  6425. "url": "https://github.com/symfony/polyfill-php72.git",
  6426. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976"
  6427. },
  6428. "dist": {
  6429. "type": "zip",
  6430. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/9a142215a36a3888e30d0a9eeea9766764e96976",
  6431. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976",
  6432. "shasum": "",
  6433. "mirrors": [
  6434. {
  6435. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6436. "preferred": true
  6437. }
  6438. ]
  6439. },
  6440. "require": {
  6441. "php": ">=7.1"
  6442. },
  6443. "type": "library",
  6444. "extra": {
  6445. "branch-alias": {
  6446. "dev-main": "1.23-dev"
  6447. },
  6448. "thanks": {
  6449. "name": "symfony/polyfill",
  6450. "url": "https://github.com/symfony/polyfill"
  6451. }
  6452. },
  6453. "autoload": {
  6454. "psr-4": {
  6455. "Symfony\\Polyfill\\Php72\\": ""
  6456. },
  6457. "files": [
  6458. "bootstrap.php"
  6459. ]
  6460. },
  6461. "notification-url": "https://packagist.org/downloads/",
  6462. "license": [
  6463. "MIT"
  6464. ],
  6465. "authors": [
  6466. {
  6467. "name": "Nicolas Grekas",
  6468. "email": "p@tchwork.com"
  6469. },
  6470. {
  6471. "name": "Symfony Community",
  6472. "homepage": "https://symfony.com/contributors"
  6473. }
  6474. ],
  6475. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  6476. "homepage": "https://symfony.com",
  6477. "keywords": [
  6478. "compatibility",
  6479. "polyfill",
  6480. "portable",
  6481. "shim"
  6482. ],
  6483. "support": {
  6484. "source": "https://github.com/symfony/polyfill-php72/tree/v1.23.0"
  6485. },
  6486. "funding": [
  6487. {
  6488. "url": "https://symfony.com/sponsor",
  6489. "type": "custom"
  6490. },
  6491. {
  6492. "url": "https://github.com/fabpot",
  6493. "type": "github"
  6494. },
  6495. {
  6496. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6497. "type": "tidelift"
  6498. }
  6499. ],
  6500. "time": "2021-05-27T09:17:38+00:00"
  6501. },
  6502. {
  6503. "name": "symfony/polyfill-php73",
  6504. "version": "v1.23.0",
  6505. "source": {
  6506. "type": "git",
  6507. "url": "https://github.com/symfony/polyfill-php73.git",
  6508. "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010"
  6509. },
  6510. "dist": {
  6511. "type": "zip",
  6512. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fba8933c384d6476ab14fb7b8526e5287ca7e010",
  6513. "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010",
  6514. "shasum": "",
  6515. "mirrors": [
  6516. {
  6517. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6518. "preferred": true
  6519. }
  6520. ]
  6521. },
  6522. "require": {
  6523. "php": ">=7.1"
  6524. },
  6525. "type": "library",
  6526. "extra": {
  6527. "branch-alias": {
  6528. "dev-main": "1.23-dev"
  6529. },
  6530. "thanks": {
  6531. "name": "symfony/polyfill",
  6532. "url": "https://github.com/symfony/polyfill"
  6533. }
  6534. },
  6535. "autoload": {
  6536. "psr-4": {
  6537. "Symfony\\Polyfill\\Php73\\": ""
  6538. },
  6539. "files": [
  6540. "bootstrap.php"
  6541. ],
  6542. "classmap": [
  6543. "Resources/stubs"
  6544. ]
  6545. },
  6546. "notification-url": "https://packagist.org/downloads/",
  6547. "license": [
  6548. "MIT"
  6549. ],
  6550. "authors": [
  6551. {
  6552. "name": "Nicolas Grekas",
  6553. "email": "p@tchwork.com"
  6554. },
  6555. {
  6556. "name": "Symfony Community",
  6557. "homepage": "https://symfony.com/contributors"
  6558. }
  6559. ],
  6560. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  6561. "homepage": "https://symfony.com",
  6562. "keywords": [
  6563. "compatibility",
  6564. "polyfill",
  6565. "portable",
  6566. "shim"
  6567. ],
  6568. "support": {
  6569. "source": "https://github.com/symfony/polyfill-php73/tree/v1.23.0"
  6570. },
  6571. "funding": [
  6572. {
  6573. "url": "https://symfony.com/sponsor",
  6574. "type": "custom"
  6575. },
  6576. {
  6577. "url": "https://github.com/fabpot",
  6578. "type": "github"
  6579. },
  6580. {
  6581. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6582. "type": "tidelift"
  6583. }
  6584. ],
  6585. "time": "2021-02-19T12:13:01+00:00"
  6586. },
  6587. {
  6588. "name": "symfony/polyfill-php80",
  6589. "version": "v1.23.1",
  6590. "source": {
  6591. "type": "git",
  6592. "url": "https://github.com/symfony/polyfill-php80.git",
  6593. "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be"
  6594. },
  6595. "dist": {
  6596. "type": "zip",
  6597. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/1100343ed1a92e3a38f9ae122fc0eb21602547be",
  6598. "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be",
  6599. "shasum": "",
  6600. "mirrors": [
  6601. {
  6602. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6603. "preferred": true
  6604. }
  6605. ]
  6606. },
  6607. "require": {
  6608. "php": ">=7.1"
  6609. },
  6610. "type": "library",
  6611. "extra": {
  6612. "branch-alias": {
  6613. "dev-main": "1.23-dev"
  6614. },
  6615. "thanks": {
  6616. "name": "symfony/polyfill",
  6617. "url": "https://github.com/symfony/polyfill"
  6618. }
  6619. },
  6620. "autoload": {
  6621. "psr-4": {
  6622. "Symfony\\Polyfill\\Php80\\": ""
  6623. },
  6624. "files": [
  6625. "bootstrap.php"
  6626. ],
  6627. "classmap": [
  6628. "Resources/stubs"
  6629. ]
  6630. },
  6631. "notification-url": "https://packagist.org/downloads/",
  6632. "license": [
  6633. "MIT"
  6634. ],
  6635. "authors": [
  6636. {
  6637. "name": "Ion Bazan",
  6638. "email": "ion.bazan@gmail.com"
  6639. },
  6640. {
  6641. "name": "Nicolas Grekas",
  6642. "email": "p@tchwork.com"
  6643. },
  6644. {
  6645. "name": "Symfony Community",
  6646. "homepage": "https://symfony.com/contributors"
  6647. }
  6648. ],
  6649. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6650. "homepage": "https://symfony.com",
  6651. "keywords": [
  6652. "compatibility",
  6653. "polyfill",
  6654. "portable",
  6655. "shim"
  6656. ],
  6657. "support": {
  6658. "source": "https://github.com/symfony/polyfill-php80/tree/v1.23.1"
  6659. },
  6660. "funding": [
  6661. {
  6662. "url": "https://symfony.com/sponsor",
  6663. "type": "custom"
  6664. },
  6665. {
  6666. "url": "https://github.com/fabpot",
  6667. "type": "github"
  6668. },
  6669. {
  6670. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6671. "type": "tidelift"
  6672. }
  6673. ],
  6674. "time": "2021-07-28T13:41:28+00:00"
  6675. },
  6676. {
  6677. "name": "symfony/polyfill-php81",
  6678. "version": "v1.23.0",
  6679. "source": {
  6680. "type": "git",
  6681. "url": "https://github.com/symfony/polyfill-php81.git",
  6682. "reference": "e66119f3de95efc359483f810c4c3e6436279436"
  6683. },
  6684. "dist": {
  6685. "type": "zip",
  6686. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/e66119f3de95efc359483f810c4c3e6436279436",
  6687. "reference": "e66119f3de95efc359483f810c4c3e6436279436",
  6688. "shasum": "",
  6689. "mirrors": [
  6690. {
  6691. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6692. "preferred": true
  6693. }
  6694. ]
  6695. },
  6696. "require": {
  6697. "php": ">=7.1"
  6698. },
  6699. "type": "library",
  6700. "extra": {
  6701. "branch-alias": {
  6702. "dev-main": "1.23-dev"
  6703. },
  6704. "thanks": {
  6705. "name": "symfony/polyfill",
  6706. "url": "https://github.com/symfony/polyfill"
  6707. }
  6708. },
  6709. "autoload": {
  6710. "psr-4": {
  6711. "Symfony\\Polyfill\\Php81\\": ""
  6712. },
  6713. "files": [
  6714. "bootstrap.php"
  6715. ],
  6716. "classmap": [
  6717. "Resources/stubs"
  6718. ]
  6719. },
  6720. "notification-url": "https://packagist.org/downloads/",
  6721. "license": [
  6722. "MIT"
  6723. ],
  6724. "authors": [
  6725. {
  6726. "name": "Nicolas Grekas",
  6727. "email": "p@tchwork.com"
  6728. },
  6729. {
  6730. "name": "Symfony Community",
  6731. "homepage": "https://symfony.com/contributors"
  6732. }
  6733. ],
  6734. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  6735. "homepage": "https://symfony.com",
  6736. "keywords": [
  6737. "compatibility",
  6738. "polyfill",
  6739. "portable",
  6740. "shim"
  6741. ],
  6742. "support": {
  6743. "source": "https://github.com/symfony/polyfill-php81/tree/v1.23.0"
  6744. },
  6745. "funding": [
  6746. {
  6747. "url": "https://symfony.com/sponsor",
  6748. "type": "custom"
  6749. },
  6750. {
  6751. "url": "https://github.com/fabpot",
  6752. "type": "github"
  6753. },
  6754. {
  6755. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6756. "type": "tidelift"
  6757. }
  6758. ],
  6759. "time": "2021-05-21T13:25:03+00:00"
  6760. },
  6761. {
  6762. "name": "symfony/process",
  6763. "version": "v5.3.7",
  6764. "source": {
  6765. "type": "git",
  6766. "url": "https://github.com/symfony/process.git",
  6767. "reference": "38f26c7d6ed535217ea393e05634cb0b244a1967"
  6768. },
  6769. "dist": {
  6770. "type": "zip",
  6771. "url": "https://api.github.com/repos/symfony/process/zipball/38f26c7d6ed535217ea393e05634cb0b244a1967",
  6772. "reference": "38f26c7d6ed535217ea393e05634cb0b244a1967",
  6773. "shasum": "",
  6774. "mirrors": [
  6775. {
  6776. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6777. "preferred": true
  6778. }
  6779. ]
  6780. },
  6781. "require": {
  6782. "php": ">=7.2.5",
  6783. "symfony/polyfill-php80": "^1.16"
  6784. },
  6785. "type": "library",
  6786. "autoload": {
  6787. "psr-4": {
  6788. "Symfony\\Component\\Process\\": ""
  6789. },
  6790. "exclude-from-classmap": [
  6791. "/Tests/"
  6792. ]
  6793. },
  6794. "notification-url": "https://packagist.org/downloads/",
  6795. "license": [
  6796. "MIT"
  6797. ],
  6798. "authors": [
  6799. {
  6800. "name": "Fabien Potencier",
  6801. "email": "fabien@symfony.com"
  6802. },
  6803. {
  6804. "name": "Symfony Community",
  6805. "homepage": "https://symfony.com/contributors"
  6806. }
  6807. ],
  6808. "description": "Executes commands in sub-processes",
  6809. "homepage": "https://symfony.com",
  6810. "support": {
  6811. "source": "https://github.com/symfony/process/tree/v5.3.7"
  6812. },
  6813. "funding": [
  6814. {
  6815. "url": "https://symfony.com/sponsor",
  6816. "type": "custom"
  6817. },
  6818. {
  6819. "url": "https://github.com/fabpot",
  6820. "type": "github"
  6821. },
  6822. {
  6823. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6824. "type": "tidelift"
  6825. }
  6826. ],
  6827. "time": "2021-08-04T21:20:46+00:00"
  6828. },
  6829. {
  6830. "name": "symfony/property-access",
  6831. "version": "v5.3.8",
  6832. "source": {
  6833. "type": "git",
  6834. "url": "https://github.com/symfony/property-access.git",
  6835. "reference": "2fbab5f95ddb6b8e85f38a6a8a04a17c0acc4d66"
  6836. },
  6837. "dist": {
  6838. "type": "zip",
  6839. "url": "https://api.github.com/repos/symfony/property-access/zipball/2fbab5f95ddb6b8e85f38a6a8a04a17c0acc4d66",
  6840. "reference": "2fbab5f95ddb6b8e85f38a6a8a04a17c0acc4d66",
  6841. "shasum": "",
  6842. "mirrors": [
  6843. {
  6844. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6845. "preferred": true
  6846. }
  6847. ]
  6848. },
  6849. "require": {
  6850. "php": ">=7.2.5",
  6851. "symfony/deprecation-contracts": "^2.1",
  6852. "symfony/polyfill-php80": "^1.16",
  6853. "symfony/property-info": "^5.2"
  6854. },
  6855. "require-dev": {
  6856. "symfony/cache": "^4.4|^5.0"
  6857. },
  6858. "suggest": {
  6859. "psr/cache-implementation": "To cache access methods."
  6860. },
  6861. "type": "library",
  6862. "autoload": {
  6863. "psr-4": {
  6864. "Symfony\\Component\\PropertyAccess\\": ""
  6865. },
  6866. "exclude-from-classmap": [
  6867. "/Tests/"
  6868. ]
  6869. },
  6870. "notification-url": "https://packagist.org/downloads/",
  6871. "license": [
  6872. "MIT"
  6873. ],
  6874. "authors": [
  6875. {
  6876. "name": "Fabien Potencier",
  6877. "email": "fabien@symfony.com"
  6878. },
  6879. {
  6880. "name": "Symfony Community",
  6881. "homepage": "https://symfony.com/contributors"
  6882. }
  6883. ],
  6884. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  6885. "homepage": "https://symfony.com",
  6886. "keywords": [
  6887. "access",
  6888. "array",
  6889. "extraction",
  6890. "index",
  6891. "injection",
  6892. "object",
  6893. "property",
  6894. "property path",
  6895. "reflection"
  6896. ],
  6897. "support": {
  6898. "source": "https://github.com/symfony/property-access/tree/v5.3.8"
  6899. },
  6900. "funding": [
  6901. {
  6902. "url": "https://symfony.com/sponsor",
  6903. "type": "custom"
  6904. },
  6905. {
  6906. "url": "https://github.com/fabpot",
  6907. "type": "github"
  6908. },
  6909. {
  6910. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6911. "type": "tidelift"
  6912. }
  6913. ],
  6914. "time": "2021-09-10T11:55:24+00:00"
  6915. },
  6916. {
  6917. "name": "symfony/property-info",
  6918. "version": "v5.3.8",
  6919. "source": {
  6920. "type": "git",
  6921. "url": "https://github.com/symfony/property-info.git",
  6922. "reference": "39de5bed8c036f76ec0457ec52908e45d5497947"
  6923. },
  6924. "dist": {
  6925. "type": "zip",
  6926. "url": "https://api.github.com/repos/symfony/property-info/zipball/39de5bed8c036f76ec0457ec52908e45d5497947",
  6927. "reference": "39de5bed8c036f76ec0457ec52908e45d5497947",
  6928. "shasum": "",
  6929. "mirrors": [
  6930. {
  6931. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6932. "preferred": true
  6933. }
  6934. ]
  6935. },
  6936. "require": {
  6937. "php": ">=7.2.5",
  6938. "symfony/deprecation-contracts": "^2.1",
  6939. "symfony/polyfill-php80": "^1.16",
  6940. "symfony/string": "^5.1"
  6941. },
  6942. "conflict": {
  6943. "phpdocumentor/reflection-docblock": "<3.2.2",
  6944. "phpdocumentor/type-resolver": "<1.4.0",
  6945. "symfony/dependency-injection": "<4.4"
  6946. },
  6947. "require-dev": {
  6948. "doctrine/annotations": "^1.10.4",
  6949. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6950. "symfony/cache": "^4.4|^5.0",
  6951. "symfony/dependency-injection": "^4.4|^5.0",
  6952. "symfony/serializer": "^4.4|^5.0"
  6953. },
  6954. "suggest": {
  6955. "phpdocumentor/reflection-docblock": "To use the PHPDoc",
  6956. "psr/cache-implementation": "To cache results",
  6957. "symfony/doctrine-bridge": "To use Doctrine metadata",
  6958. "symfony/serializer": "To use Serializer metadata"
  6959. },
  6960. "type": "library",
  6961. "autoload": {
  6962. "psr-4": {
  6963. "Symfony\\Component\\PropertyInfo\\": ""
  6964. },
  6965. "exclude-from-classmap": [
  6966. "/Tests/"
  6967. ]
  6968. },
  6969. "notification-url": "https://packagist.org/downloads/",
  6970. "license": [
  6971. "MIT"
  6972. ],
  6973. "authors": [
  6974. {
  6975. "name": "Kévin Dunglas",
  6976. "email": "dunglas@gmail.com"
  6977. },
  6978. {
  6979. "name": "Symfony Community",
  6980. "homepage": "https://symfony.com/contributors"
  6981. }
  6982. ],
  6983. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  6984. "homepage": "https://symfony.com",
  6985. "keywords": [
  6986. "doctrine",
  6987. "phpdoc",
  6988. "property",
  6989. "symfony",
  6990. "type",
  6991. "validator"
  6992. ],
  6993. "support": {
  6994. "source": "https://github.com/symfony/property-info/tree/v5.3.8"
  6995. },
  6996. "funding": [
  6997. {
  6998. "url": "https://symfony.com/sponsor",
  6999. "type": "custom"
  7000. },
  7001. {
  7002. "url": "https://github.com/fabpot",
  7003. "type": "github"
  7004. },
  7005. {
  7006. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7007. "type": "tidelift"
  7008. }
  7009. ],
  7010. "time": "2021-09-07T07:41:40+00:00"
  7011. },
  7012. {
  7013. "name": "symfony/routing",
  7014. "version": "v5.3.7",
  7015. "source": {
  7016. "type": "git",
  7017. "url": "https://github.com/symfony/routing.git",
  7018. "reference": "be865017746fe869007d94220ad3f5297951811b"
  7019. },
  7020. "dist": {
  7021. "type": "zip",
  7022. "url": "https://api.github.com/repos/symfony/routing/zipball/be865017746fe869007d94220ad3f5297951811b",
  7023. "reference": "be865017746fe869007d94220ad3f5297951811b",
  7024. "shasum": "",
  7025. "mirrors": [
  7026. {
  7027. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7028. "preferred": true
  7029. }
  7030. ]
  7031. },
  7032. "require": {
  7033. "php": ">=7.2.5",
  7034. "symfony/deprecation-contracts": "^2.1",
  7035. "symfony/polyfill-php80": "^1.16"
  7036. },
  7037. "conflict": {
  7038. "doctrine/annotations": "<1.12",
  7039. "symfony/config": "<5.3",
  7040. "symfony/dependency-injection": "<4.4",
  7041. "symfony/yaml": "<4.4"
  7042. },
  7043. "require-dev": {
  7044. "doctrine/annotations": "^1.12",
  7045. "psr/log": "^1|^2|^3",
  7046. "symfony/config": "^5.3",
  7047. "symfony/dependency-injection": "^4.4|^5.0",
  7048. "symfony/expression-language": "^4.4|^5.0",
  7049. "symfony/http-foundation": "^4.4|^5.0",
  7050. "symfony/yaml": "^4.4|^5.0"
  7051. },
  7052. "suggest": {
  7053. "symfony/config": "For using the all-in-one router or any loader",
  7054. "symfony/expression-language": "For using expression matching",
  7055. "symfony/http-foundation": "For using a Symfony Request object",
  7056. "symfony/yaml": "For using the YAML loader"
  7057. },
  7058. "type": "library",
  7059. "autoload": {
  7060. "psr-4": {
  7061. "Symfony\\Component\\Routing\\": ""
  7062. },
  7063. "exclude-from-classmap": [
  7064. "/Tests/"
  7065. ]
  7066. },
  7067. "notification-url": "https://packagist.org/downloads/",
  7068. "license": [
  7069. "MIT"
  7070. ],
  7071. "authors": [
  7072. {
  7073. "name": "Fabien Potencier",
  7074. "email": "fabien@symfony.com"
  7075. },
  7076. {
  7077. "name": "Symfony Community",
  7078. "homepage": "https://symfony.com/contributors"
  7079. }
  7080. ],
  7081. "description": "Maps an HTTP request to a set of configuration variables",
  7082. "homepage": "https://symfony.com",
  7083. "keywords": [
  7084. "router",
  7085. "routing",
  7086. "uri",
  7087. "url"
  7088. ],
  7089. "support": {
  7090. "source": "https://github.com/symfony/routing/tree/v5.3.7"
  7091. },
  7092. "funding": [
  7093. {
  7094. "url": "https://symfony.com/sponsor",
  7095. "type": "custom"
  7096. },
  7097. {
  7098. "url": "https://github.com/fabpot",
  7099. "type": "github"
  7100. },
  7101. {
  7102. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7103. "type": "tidelift"
  7104. }
  7105. ],
  7106. "time": "2021-08-04T21:42:42+00:00"
  7107. },
  7108. {
  7109. "name": "symfony/service-contracts",
  7110. "version": "v2.4.0",
  7111. "source": {
  7112. "type": "git",
  7113. "url": "https://github.com/symfony/service-contracts.git",
  7114. "reference": "f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb"
  7115. },
  7116. "dist": {
  7117. "type": "zip",
  7118. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb",
  7119. "reference": "f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb",
  7120. "shasum": "",
  7121. "mirrors": [
  7122. {
  7123. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7124. "preferred": true
  7125. }
  7126. ]
  7127. },
  7128. "require": {
  7129. "php": ">=7.2.5",
  7130. "psr/container": "^1.1"
  7131. },
  7132. "suggest": {
  7133. "symfony/service-implementation": ""
  7134. },
  7135. "type": "library",
  7136. "extra": {
  7137. "branch-alias": {
  7138. "dev-main": "2.4-dev"
  7139. },
  7140. "thanks": {
  7141. "name": "symfony/contracts",
  7142. "url": "https://github.com/symfony/contracts"
  7143. }
  7144. },
  7145. "autoload": {
  7146. "psr-4": {
  7147. "Symfony\\Contracts\\Service\\": ""
  7148. }
  7149. },
  7150. "notification-url": "https://packagist.org/downloads/",
  7151. "license": [
  7152. "MIT"
  7153. ],
  7154. "authors": [
  7155. {
  7156. "name": "Nicolas Grekas",
  7157. "email": "p@tchwork.com"
  7158. },
  7159. {
  7160. "name": "Symfony Community",
  7161. "homepage": "https://symfony.com/contributors"
  7162. }
  7163. ],
  7164. "description": "Generic abstractions related to writing services",
  7165. "homepage": "https://symfony.com",
  7166. "keywords": [
  7167. "abstractions",
  7168. "contracts",
  7169. "decoupling",
  7170. "interfaces",
  7171. "interoperability",
  7172. "standards"
  7173. ],
  7174. "support": {
  7175. "source": "https://github.com/symfony/service-contracts/tree/v2.4.0"
  7176. },
  7177. "funding": [
  7178. {
  7179. "url": "https://symfony.com/sponsor",
  7180. "type": "custom"
  7181. },
  7182. {
  7183. "url": "https://github.com/fabpot",
  7184. "type": "github"
  7185. },
  7186. {
  7187. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7188. "type": "tidelift"
  7189. }
  7190. ],
  7191. "time": "2021-04-01T10:43:52+00:00"
  7192. },
  7193. {
  7194. "name": "symfony/string",
  7195. "version": "v5.3.7",
  7196. "source": {
  7197. "type": "git",
  7198. "url": "https://github.com/symfony/string.git",
  7199. "reference": "8d224396e28d30f81969f083a58763b8b9ceb0a5"
  7200. },
  7201. "dist": {
  7202. "type": "zip",
  7203. "url": "https://api.github.com/repos/symfony/string/zipball/8d224396e28d30f81969f083a58763b8b9ceb0a5",
  7204. "reference": "8d224396e28d30f81969f083a58763b8b9ceb0a5",
  7205. "shasum": "",
  7206. "mirrors": [
  7207. {
  7208. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7209. "preferred": true
  7210. }
  7211. ]
  7212. },
  7213. "require": {
  7214. "php": ">=7.2.5",
  7215. "symfony/polyfill-ctype": "~1.8",
  7216. "symfony/polyfill-intl-grapheme": "~1.0",
  7217. "symfony/polyfill-intl-normalizer": "~1.0",
  7218. "symfony/polyfill-mbstring": "~1.0",
  7219. "symfony/polyfill-php80": "~1.15"
  7220. },
  7221. "require-dev": {
  7222. "symfony/error-handler": "^4.4|^5.0",
  7223. "symfony/http-client": "^4.4|^5.0",
  7224. "symfony/translation-contracts": "^1.1|^2",
  7225. "symfony/var-exporter": "^4.4|^5.0"
  7226. },
  7227. "type": "library",
  7228. "autoload": {
  7229. "psr-4": {
  7230. "Symfony\\Component\\String\\": ""
  7231. },
  7232. "files": [
  7233. "Resources/functions.php"
  7234. ],
  7235. "exclude-from-classmap": [
  7236. "/Tests/"
  7237. ]
  7238. },
  7239. "notification-url": "https://packagist.org/downloads/",
  7240. "license": [
  7241. "MIT"
  7242. ],
  7243. "authors": [
  7244. {
  7245. "name": "Nicolas Grekas",
  7246. "email": "p@tchwork.com"
  7247. },
  7248. {
  7249. "name": "Symfony Community",
  7250. "homepage": "https://symfony.com/contributors"
  7251. }
  7252. ],
  7253. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7254. "homepage": "https://symfony.com",
  7255. "keywords": [
  7256. "grapheme",
  7257. "i18n",
  7258. "string",
  7259. "unicode",
  7260. "utf-8",
  7261. "utf8"
  7262. ],
  7263. "support": {
  7264. "source": "https://github.com/symfony/string/tree/v5.3.7"
  7265. },
  7266. "funding": [
  7267. {
  7268. "url": "https://symfony.com/sponsor",
  7269. "type": "custom"
  7270. },
  7271. {
  7272. "url": "https://github.com/fabpot",
  7273. "type": "github"
  7274. },
  7275. {
  7276. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7277. "type": "tidelift"
  7278. }
  7279. ],
  7280. "time": "2021-08-26T08:00:08+00:00"
  7281. },
  7282. {
  7283. "name": "symfony/translation",
  7284. "version": "v5.3.9",
  7285. "source": {
  7286. "type": "git",
  7287. "url": "https://github.com/symfony/translation.git",
  7288. "reference": "6e69f3551c1a3356cf6ea8d019bf039a0f8b6886"
  7289. },
  7290. "dist": {
  7291. "type": "zip",
  7292. "url": "https://api.github.com/repos/symfony/translation/zipball/6e69f3551c1a3356cf6ea8d019bf039a0f8b6886",
  7293. "reference": "6e69f3551c1a3356cf6ea8d019bf039a0f8b6886",
  7294. "shasum": "",
  7295. "mirrors": [
  7296. {
  7297. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7298. "preferred": true
  7299. }
  7300. ]
  7301. },
  7302. "require": {
  7303. "php": ">=7.2.5",
  7304. "symfony/deprecation-contracts": "^2.1",
  7305. "symfony/polyfill-mbstring": "~1.0",
  7306. "symfony/polyfill-php80": "^1.16",
  7307. "symfony/translation-contracts": "^2.3"
  7308. },
  7309. "conflict": {
  7310. "symfony/config": "<4.4",
  7311. "symfony/dependency-injection": "<5.0",
  7312. "symfony/http-kernel": "<5.0",
  7313. "symfony/twig-bundle": "<5.0",
  7314. "symfony/yaml": "<4.4"
  7315. },
  7316. "provide": {
  7317. "symfony/translation-implementation": "2.3"
  7318. },
  7319. "require-dev": {
  7320. "psr/log": "^1|^2|^3",
  7321. "symfony/config": "^4.4|^5.0",
  7322. "symfony/console": "^4.4|^5.0",
  7323. "symfony/dependency-injection": "^5.0",
  7324. "symfony/finder": "^4.4|^5.0",
  7325. "symfony/http-kernel": "^5.0",
  7326. "symfony/intl": "^4.4|^5.0",
  7327. "symfony/polyfill-intl-icu": "^1.21",
  7328. "symfony/service-contracts": "^1.1.2|^2",
  7329. "symfony/yaml": "^4.4|^5.0"
  7330. },
  7331. "suggest": {
  7332. "psr/log-implementation": "To use logging capability in translator",
  7333. "symfony/config": "",
  7334. "symfony/yaml": ""
  7335. },
  7336. "type": "library",
  7337. "autoload": {
  7338. "files": [
  7339. "Resources/functions.php"
  7340. ],
  7341. "psr-4": {
  7342. "Symfony\\Component\\Translation\\": ""
  7343. },
  7344. "exclude-from-classmap": [
  7345. "/Tests/"
  7346. ]
  7347. },
  7348. "notification-url": "https://packagist.org/downloads/",
  7349. "license": [
  7350. "MIT"
  7351. ],
  7352. "authors": [
  7353. {
  7354. "name": "Fabien Potencier",
  7355. "email": "fabien@symfony.com"
  7356. },
  7357. {
  7358. "name": "Symfony Community",
  7359. "homepage": "https://symfony.com/contributors"
  7360. }
  7361. ],
  7362. "description": "Provides tools to internationalize your application",
  7363. "homepage": "https://symfony.com",
  7364. "support": {
  7365. "source": "https://github.com/symfony/translation/tree/v5.3.9"
  7366. },
  7367. "funding": [
  7368. {
  7369. "url": "https://symfony.com/sponsor",
  7370. "type": "custom"
  7371. },
  7372. {
  7373. "url": "https://github.com/fabpot",
  7374. "type": "github"
  7375. },
  7376. {
  7377. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7378. "type": "tidelift"
  7379. }
  7380. ],
  7381. "time": "2021-08-26T08:22:53+00:00"
  7382. },
  7383. {
  7384. "name": "symfony/translation-contracts",
  7385. "version": "v2.4.0",
  7386. "source": {
  7387. "type": "git",
  7388. "url": "https://github.com/symfony/translation-contracts.git",
  7389. "reference": "95c812666f3e91db75385749fe219c5e494c7f95"
  7390. },
  7391. "dist": {
  7392. "type": "zip",
  7393. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/95c812666f3e91db75385749fe219c5e494c7f95",
  7394. "reference": "95c812666f3e91db75385749fe219c5e494c7f95",
  7395. "shasum": "",
  7396. "mirrors": [
  7397. {
  7398. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7399. "preferred": true
  7400. }
  7401. ]
  7402. },
  7403. "require": {
  7404. "php": ">=7.2.5"
  7405. },
  7406. "suggest": {
  7407. "symfony/translation-implementation": ""
  7408. },
  7409. "type": "library",
  7410. "extra": {
  7411. "branch-alias": {
  7412. "dev-main": "2.4-dev"
  7413. },
  7414. "thanks": {
  7415. "name": "symfony/contracts",
  7416. "url": "https://github.com/symfony/contracts"
  7417. }
  7418. },
  7419. "autoload": {
  7420. "psr-4": {
  7421. "Symfony\\Contracts\\Translation\\": ""
  7422. }
  7423. },
  7424. "notification-url": "https://packagist.org/downloads/",
  7425. "license": [
  7426. "MIT"
  7427. ],
  7428. "authors": [
  7429. {
  7430. "name": "Nicolas Grekas",
  7431. "email": "p@tchwork.com"
  7432. },
  7433. {
  7434. "name": "Symfony Community",
  7435. "homepage": "https://symfony.com/contributors"
  7436. }
  7437. ],
  7438. "description": "Generic abstractions related to translation",
  7439. "homepage": "https://symfony.com",
  7440. "keywords": [
  7441. "abstractions",
  7442. "contracts",
  7443. "decoupling",
  7444. "interfaces",
  7445. "interoperability",
  7446. "standards"
  7447. ],
  7448. "support": {
  7449. "source": "https://github.com/symfony/translation-contracts/tree/v2.4.0"
  7450. },
  7451. "funding": [
  7452. {
  7453. "url": "https://symfony.com/sponsor",
  7454. "type": "custom"
  7455. },
  7456. {
  7457. "url": "https://github.com/fabpot",
  7458. "type": "github"
  7459. },
  7460. {
  7461. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7462. "type": "tidelift"
  7463. }
  7464. ],
  7465. "time": "2021-03-23T23:28:01+00:00"
  7466. },
  7467. {
  7468. "name": "symfony/var-dumper",
  7469. "version": "v5.3.8",
  7470. "source": {
  7471. "type": "git",
  7472. "url": "https://github.com/symfony/var-dumper.git",
  7473. "reference": "eaaea4098be1c90c8285543e1356a09c8aa5c8da"
  7474. },
  7475. "dist": {
  7476. "type": "zip",
  7477. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/eaaea4098be1c90c8285543e1356a09c8aa5c8da",
  7478. "reference": "eaaea4098be1c90c8285543e1356a09c8aa5c8da",
  7479. "shasum": "",
  7480. "mirrors": [
  7481. {
  7482. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7483. "preferred": true
  7484. }
  7485. ]
  7486. },
  7487. "require": {
  7488. "php": ">=7.2.5",
  7489. "symfony/polyfill-mbstring": "~1.0",
  7490. "symfony/polyfill-php80": "^1.16"
  7491. },
  7492. "conflict": {
  7493. "phpunit/phpunit": "<5.4.3",
  7494. "symfony/console": "<4.4"
  7495. },
  7496. "require-dev": {
  7497. "ext-iconv": "*",
  7498. "symfony/console": "^4.4|^5.0",
  7499. "symfony/process": "^4.4|^5.0",
  7500. "twig/twig": "^2.13|^3.0.4"
  7501. },
  7502. "suggest": {
  7503. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  7504. "ext-intl": "To show region name in time zone dump",
  7505. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  7506. },
  7507. "bin": [
  7508. "Resources/bin/var-dump-server"
  7509. ],
  7510. "type": "library",
  7511. "autoload": {
  7512. "files": [
  7513. "Resources/functions/dump.php"
  7514. ],
  7515. "psr-4": {
  7516. "Symfony\\Component\\VarDumper\\": ""
  7517. },
  7518. "exclude-from-classmap": [
  7519. "/Tests/"
  7520. ]
  7521. },
  7522. "notification-url": "https://packagist.org/downloads/",
  7523. "license": [
  7524. "MIT"
  7525. ],
  7526. "authors": [
  7527. {
  7528. "name": "Nicolas Grekas",
  7529. "email": "p@tchwork.com"
  7530. },
  7531. {
  7532. "name": "Symfony Community",
  7533. "homepage": "https://symfony.com/contributors"
  7534. }
  7535. ],
  7536. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7537. "homepage": "https://symfony.com",
  7538. "keywords": [
  7539. "debug",
  7540. "dump"
  7541. ],
  7542. "support": {
  7543. "source": "https://github.com/symfony/var-dumper/tree/v5.3.8"
  7544. },
  7545. "funding": [
  7546. {
  7547. "url": "https://symfony.com/sponsor",
  7548. "type": "custom"
  7549. },
  7550. {
  7551. "url": "https://github.com/fabpot",
  7552. "type": "github"
  7553. },
  7554. {
  7555. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7556. "type": "tidelift"
  7557. }
  7558. ],
  7559. "time": "2021-09-24T15:59:58+00:00"
  7560. },
  7561. {
  7562. "name": "te7a-houdini/laravel-trix",
  7563. "version": "2.0.5",
  7564. "source": {
  7565. "type": "git",
  7566. "url": "https://github.com/amaelftah/laravel-trix.git",
  7567. "reference": "517404ca45115ac393cdad14786e9c599f3efcf8"
  7568. },
  7569. "dist": {
  7570. "type": "zip",
  7571. "url": "https://api.github.com/repos/amaelftah/laravel-trix/zipball/517404ca45115ac393cdad14786e9c599f3efcf8",
  7572. "reference": "517404ca45115ac393cdad14786e9c599f3efcf8",
  7573. "shasum": "",
  7574. "mirrors": [
  7575. {
  7576. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7577. "preferred": true
  7578. }
  7579. ]
  7580. },
  7581. "require": {
  7582. "laravel/framework": "~5.8.0|~6.0|~7.0|~8.0",
  7583. "php": "^7.1|^8.0"
  7584. },
  7585. "require-dev": {
  7586. "orchestra/testbench": "^3.5|~4.0|~5.0|~6.0"
  7587. },
  7588. "type": "library",
  7589. "extra": {
  7590. "laravel": {
  7591. "providers": [
  7592. "Te7aHoudini\\LaravelTrix\\LaravelTrixServiceProvider"
  7593. ]
  7594. }
  7595. },
  7596. "autoload": {
  7597. "psr-4": {
  7598. "Te7aHoudini\\LaravelTrix\\": "src"
  7599. }
  7600. },
  7601. "notification-url": "https://packagist.org/downloads/",
  7602. "license": [
  7603. "MIT"
  7604. ],
  7605. "authors": [
  7606. {
  7607. "name": "Ahmed Abd El Ftah",
  7608. "email": "ahmedabdelftah95165@gmail.com",
  7609. "role": "Developer"
  7610. }
  7611. ],
  7612. "description": "trix editor for laravel inspired by ActionText for rails",
  7613. "homepage": "https://github.com/te7ahoudini/laravel-trix",
  7614. "keywords": [
  7615. "laravel-trix",
  7616. "te7a-houdini"
  7617. ],
  7618. "support": {
  7619. "issues": "https://github.com/amaelftah/laravel-trix/issues",
  7620. "source": "https://github.com/amaelftah/laravel-trix/tree/2.0.5"
  7621. },
  7622. "time": "2021-01-21T01:21:17+00:00"
  7623. },
  7624. {
  7625. "name": "tightenco/collect",
  7626. "version": "v5.6.33",
  7627. "source": {
  7628. "type": "git",
  7629. "url": "https://github.com/tighten/collect.git",
  7630. "reference": "d7381736dca44ac17d0805a25191b094e5a22446"
  7631. },
  7632. "dist": {
  7633. "type": "zip",
  7634. "url": "https://api.github.com/repos/tighten/collect/zipball/d7381736dca44ac17d0805a25191b094e5a22446",
  7635. "reference": "d7381736dca44ac17d0805a25191b094e5a22446",
  7636. "shasum": "",
  7637. "mirrors": [
  7638. {
  7639. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7640. "preferred": true
  7641. }
  7642. ]
  7643. },
  7644. "require": {
  7645. "php": ">=7.1.3",
  7646. "symfony/var-dumper": ">=3.1.10"
  7647. },
  7648. "require-dev": {
  7649. "mockery/mockery": "~1.0",
  7650. "nesbot/carbon": "~1.20",
  7651. "phpunit/phpunit": "~7.0"
  7652. },
  7653. "type": "library",
  7654. "autoload": {
  7655. "files": [
  7656. "src/Collect/Support/helpers.php",
  7657. "src/Collect/Support/alias.php"
  7658. ],
  7659. "psr-4": {
  7660. "Tightenco\\Collect\\": "src/Collect"
  7661. }
  7662. },
  7663. "notification-url": "https://packagist.org/downloads/",
  7664. "license": [
  7665. "MIT"
  7666. ],
  7667. "authors": [
  7668. {
  7669. "name": "Taylor Otwell",
  7670. "email": "taylorotwell@gmail.com"
  7671. }
  7672. ],
  7673. "description": "Collect - Illuminate Collections as a separate package.",
  7674. "keywords": [
  7675. "collection",
  7676. "laravel"
  7677. ],
  7678. "support": {
  7679. "issues": "https://github.com/tighten/collect/issues",
  7680. "source": "https://github.com/tighten/collect/tree/v5.6.33"
  7681. },
  7682. "time": "2018-08-09T16:56:26+00:00"
  7683. },
  7684. {
  7685. "name": "tijsverkoyen/css-to-inline-styles",
  7686. "version": "2.2.3",
  7687. "source": {
  7688. "type": "git",
  7689. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7690. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5"
  7691. },
  7692. "dist": {
  7693. "type": "zip",
  7694. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/b43b05cf43c1b6d849478965062b6ef73e223bb5",
  7695. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5",
  7696. "shasum": "",
  7697. "mirrors": [
  7698. {
  7699. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7700. "preferred": true
  7701. }
  7702. ]
  7703. },
  7704. "require": {
  7705. "ext-dom": "*",
  7706. "ext-libxml": "*",
  7707. "php": "^5.5 || ^7.0 || ^8.0",
  7708. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0"
  7709. },
  7710. "require-dev": {
  7711. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5"
  7712. },
  7713. "type": "library",
  7714. "extra": {
  7715. "branch-alias": {
  7716. "dev-master": "2.2.x-dev"
  7717. }
  7718. },
  7719. "autoload": {
  7720. "psr-4": {
  7721. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  7722. }
  7723. },
  7724. "notification-url": "https://packagist.org/downloads/",
  7725. "license": [
  7726. "BSD-3-Clause"
  7727. ],
  7728. "authors": [
  7729. {
  7730. "name": "Tijs Verkoyen",
  7731. "email": "css_to_inline_styles@verkoyen.eu",
  7732. "role": "Developer"
  7733. }
  7734. ],
  7735. "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.",
  7736. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  7737. "support": {
  7738. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  7739. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.3"
  7740. },
  7741. "time": "2020-07-13T06:12:54+00:00"
  7742. },
  7743. {
  7744. "name": "vlucas/phpdotenv",
  7745. "version": "v4.2.1",
  7746. "source": {
  7747. "type": "git",
  7748. "url": "https://github.com/vlucas/phpdotenv.git",
  7749. "reference": "d38f4d1edcbe32515a0ad593cbd4c858e337263c"
  7750. },
  7751. "dist": {
  7752. "type": "zip",
  7753. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/d38f4d1edcbe32515a0ad593cbd4c858e337263c",
  7754. "reference": "d38f4d1edcbe32515a0ad593cbd4c858e337263c",
  7755. "shasum": "",
  7756. "mirrors": [
  7757. {
  7758. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7759. "preferred": true
  7760. }
  7761. ]
  7762. },
  7763. "require": {
  7764. "php": "^5.5.9 || ^7.0 || ^8.0",
  7765. "phpoption/phpoption": "^1.7.3",
  7766. "symfony/polyfill-ctype": "^1.17"
  7767. },
  7768. "require-dev": {
  7769. "bamarni/composer-bin-plugin": "^1.4.1",
  7770. "ext-filter": "*",
  7771. "ext-pcre": "*",
  7772. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.21"
  7773. },
  7774. "suggest": {
  7775. "ext-filter": "Required to use the boolean validator.",
  7776. "ext-pcre": "Required to use most of the library."
  7777. },
  7778. "type": "library",
  7779. "extra": {
  7780. "branch-alias": {
  7781. "dev-master": "4.2-dev"
  7782. }
  7783. },
  7784. "autoload": {
  7785. "psr-4": {
  7786. "Dotenv\\": "src/"
  7787. }
  7788. },
  7789. "notification-url": "https://packagist.org/downloads/",
  7790. "license": [
  7791. "BSD-3-Clause"
  7792. ],
  7793. "authors": [
  7794. {
  7795. "name": "Graham Campbell",
  7796. "email": "hello@gjcampbell.co.uk"
  7797. },
  7798. {
  7799. "name": "Vance Lucas",
  7800. "email": "vance@vancelucas.com"
  7801. }
  7802. ],
  7803. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7804. "keywords": [
  7805. "dotenv",
  7806. "env",
  7807. "environment"
  7808. ],
  7809. "support": {
  7810. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7811. "source": "https://github.com/vlucas/phpdotenv/tree/v4.2.1"
  7812. },
  7813. "funding": [
  7814. {
  7815. "url": "https://github.com/GrahamCampbell",
  7816. "type": "github"
  7817. },
  7818. {
  7819. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7820. "type": "tidelift"
  7821. }
  7822. ],
  7823. "time": "2021-10-02T19:17:08+00:00"
  7824. },
  7825. {
  7826. "name": "voku/portable-ascii",
  7827. "version": "1.5.6",
  7828. "source": {
  7829. "type": "git",
  7830. "url": "https://github.com/voku/portable-ascii.git",
  7831. "reference": "80953678b19901e5165c56752d087fc11526017c"
  7832. },
  7833. "dist": {
  7834. "type": "zip",
  7835. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/80953678b19901e5165c56752d087fc11526017c",
  7836. "reference": "80953678b19901e5165c56752d087fc11526017c",
  7837. "shasum": "",
  7838. "mirrors": [
  7839. {
  7840. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7841. "preferred": true
  7842. }
  7843. ]
  7844. },
  7845. "require": {
  7846. "php": ">=7.0.0"
  7847. },
  7848. "require-dev": {
  7849. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  7850. },
  7851. "suggest": {
  7852. "ext-intl": "Use Intl for transliterator_transliterate() support"
  7853. },
  7854. "type": "library",
  7855. "autoload": {
  7856. "psr-4": {
  7857. "voku\\": "src/voku/"
  7858. }
  7859. },
  7860. "notification-url": "https://packagist.org/downloads/",
  7861. "license": [
  7862. "MIT"
  7863. ],
  7864. "authors": [
  7865. {
  7866. "name": "Lars Moelleken",
  7867. "homepage": "http://www.moelleken.org/"
  7868. }
  7869. ],
  7870. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  7871. "homepage": "https://github.com/voku/portable-ascii",
  7872. "keywords": [
  7873. "ascii",
  7874. "clean",
  7875. "php"
  7876. ],
  7877. "support": {
  7878. "issues": "https://github.com/voku/portable-ascii/issues",
  7879. "source": "https://github.com/voku/portable-ascii/tree/1.5.6"
  7880. },
  7881. "funding": [
  7882. {
  7883. "url": "https://www.paypal.me/moelleken",
  7884. "type": "custom"
  7885. },
  7886. {
  7887. "url": "https://github.com/voku",
  7888. "type": "github"
  7889. },
  7890. {
  7891. "url": "https://opencollective.com/portable-ascii",
  7892. "type": "open_collective"
  7893. },
  7894. {
  7895. "url": "https://www.patreon.com/voku",
  7896. "type": "patreon"
  7897. },
  7898. {
  7899. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  7900. "type": "tidelift"
  7901. }
  7902. ],
  7903. "time": "2020-11-12T00:07:28+00:00"
  7904. },
  7905. {
  7906. "name": "yajra/laravel-oci8",
  7907. "version": "v7.0.0",
  7908. "source": {
  7909. "type": "git",
  7910. "url": "https://github.com/yajra/laravel-oci8.git",
  7911. "reference": "0d0db3c21a15438ee4bd610f6a0c585cb45fd974"
  7912. },
  7913. "dist": {
  7914. "type": "zip",
  7915. "url": "https://api.github.com/repos/yajra/laravel-oci8/zipball/0d0db3c21a15438ee4bd610f6a0c585cb45fd974",
  7916. "reference": "0d0db3c21a15438ee4bd610f6a0c585cb45fd974",
  7917. "shasum": "",
  7918. "mirrors": [
  7919. {
  7920. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7921. "preferred": true
  7922. }
  7923. ]
  7924. },
  7925. "require": {
  7926. "ext-oci8": ">=2.0.0",
  7927. "ext-pdo": "*",
  7928. "illuminate/database": "^7",
  7929. "illuminate/support": "^7",
  7930. "php": "^7.2.5",
  7931. "yajra/laravel-pdo-via-oci8": "^2"
  7932. },
  7933. "require-dev": {
  7934. "mockery/mockery": "^1.3.1",
  7935. "phpunit/phpunit": "^8.4|^9.0",
  7936. "scrutinizer/ocular": "~1.1"
  7937. },
  7938. "type": "library",
  7939. "extra": {
  7940. "branch-alias": {
  7941. "dev-master": "7.x-dev"
  7942. },
  7943. "laravel": {
  7944. "providers": [
  7945. "Yajra\\Oci8\\Oci8ServiceProvider"
  7946. ]
  7947. }
  7948. },
  7949. "autoload": {
  7950. "files": [
  7951. "src/helper.php"
  7952. ],
  7953. "psr-4": {
  7954. "Yajra\\": "src/"
  7955. }
  7956. },
  7957. "notification-url": "https://packagist.org/downloads/",
  7958. "license": [
  7959. "MIT"
  7960. ],
  7961. "authors": [
  7962. {
  7963. "name": "Arjay Angeles",
  7964. "email": "aqangeles@gmail.com"
  7965. }
  7966. ],
  7967. "description": "Oracle DB driver for Laravel 4|5|6|7 via OCI8",
  7968. "keywords": [
  7969. "laravel",
  7970. "oci8",
  7971. "oracle",
  7972. "pdo_oci"
  7973. ],
  7974. "support": {
  7975. "issues": "https://github.com/yajra/laravel-oci8/issues",
  7976. "source": "https://github.com/yajra/laravel-oci8/tree/v7.0.0"
  7977. },
  7978. "funding": [
  7979. {
  7980. "url": "https://www.paypal.me/yajra",
  7981. "type": "custom"
  7982. },
  7983. {
  7984. "url": "https://www.patreon.com/yajra",
  7985. "type": "patreon"
  7986. }
  7987. ],
  7988. "time": "2020-03-04T02:15:19+00:00"
  7989. },
  7990. {
  7991. "name": "yajra/laravel-pdo-via-oci8",
  7992. "version": "v2.2.0",
  7993. "source": {
  7994. "type": "git",
  7995. "url": "https://github.com/yajra/pdo-via-oci8.git",
  7996. "reference": "93610843b7abe975413288bcc4adb347edefb4b8"
  7997. },
  7998. "dist": {
  7999. "type": "zip",
  8000. "url": "https://api.github.com/repos/yajra/pdo-via-oci8/zipball/93610843b7abe975413288bcc4adb347edefb4b8",
  8001. "reference": "93610843b7abe975413288bcc4adb347edefb4b8",
  8002. "shasum": "",
  8003. "mirrors": [
  8004. {
  8005. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8006. "preferred": true
  8007. }
  8008. ]
  8009. },
  8010. "require-dev": {
  8011. "phpunit/phpunit": "^6.4"
  8012. },
  8013. "type": "library",
  8014. "extra": {
  8015. "branch-alias": {
  8016. "dev-master": "2.0-dev"
  8017. }
  8018. },
  8019. "autoload": {
  8020. "psr-4": {
  8021. "Yajra\\": "src/"
  8022. }
  8023. },
  8024. "notification-url": "https://packagist.org/downloads/",
  8025. "license": [
  8026. "MIT"
  8027. ],
  8028. "authors": [
  8029. {
  8030. "name": "Arjay Angeles",
  8031. "email": "aqangeles@gmail.com"
  8032. }
  8033. ],
  8034. "description": "PDO userspace driver proxying calls to PHP OCI8 driver",
  8035. "support": {
  8036. "issues": "https://github.com/yajra/pdo-via-oci8/issues",
  8037. "source": "https://github.com/yajra/pdo-via-oci8/tree/v2.2.0"
  8038. },
  8039. "time": "2020-12-11T12:29:18+00:00"
  8040. }
  8041. ],
  8042. "packages-dev": [
  8043. {
  8044. "name": "barryvdh/laravel-debugbar",
  8045. "version": "v3.6.2",
  8046. "source": {
  8047. "type": "git",
  8048. "url": "https://github.com/barryvdh/laravel-debugbar.git",
  8049. "reference": "70b89754913fd89fef16d0170a91dbc2a5cd633a"
  8050. },
  8051. "dist": {
  8052. "type": "zip",
  8053. "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/70b89754913fd89fef16d0170a91dbc2a5cd633a",
  8054. "reference": "70b89754913fd89fef16d0170a91dbc2a5cd633a",
  8055. "shasum": "",
  8056. "mirrors": [
  8057. {
  8058. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8059. "preferred": true
  8060. }
  8061. ]
  8062. },
  8063. "require": {
  8064. "illuminate/routing": "^6|^7|^8",
  8065. "illuminate/session": "^6|^7|^8",
  8066. "illuminate/support": "^6|^7|^8",
  8067. "maximebf/debugbar": "^1.16.3",
  8068. "php": ">=7.2",
  8069. "symfony/debug": "^4.3|^5",
  8070. "symfony/finder": "^4.3|^5"
  8071. },
  8072. "require-dev": {
  8073. "mockery/mockery": "^1.3.3",
  8074. "orchestra/testbench-dusk": "^4|^5|^6",
  8075. "phpunit/phpunit": "^8.5|^9.0",
  8076. "squizlabs/php_codesniffer": "^3.5"
  8077. },
  8078. "type": "library",
  8079. "extra": {
  8080. "branch-alias": {
  8081. "dev-master": "3.5-dev"
  8082. },
  8083. "laravel": {
  8084. "providers": [
  8085. "Barryvdh\\Debugbar\\ServiceProvider"
  8086. ],
  8087. "aliases": {
  8088. "Debugbar": "Barryvdh\\Debugbar\\Facade"
  8089. }
  8090. }
  8091. },
  8092. "autoload": {
  8093. "psr-4": {
  8094. "Barryvdh\\Debugbar\\": "src/"
  8095. },
  8096. "files": [
  8097. "src/helpers.php"
  8098. ]
  8099. },
  8100. "notification-url": "https://packagist.org/downloads/",
  8101. "license": [
  8102. "MIT"
  8103. ],
  8104. "authors": [
  8105. {
  8106. "name": "Barry vd. Heuvel",
  8107. "email": "barryvdh@gmail.com"
  8108. }
  8109. ],
  8110. "description": "PHP Debugbar integration for Laravel",
  8111. "keywords": [
  8112. "debug",
  8113. "debugbar",
  8114. "laravel",
  8115. "profiler",
  8116. "webprofiler"
  8117. ],
  8118. "support": {
  8119. "issues": "https://github.com/barryvdh/laravel-debugbar/issues",
  8120. "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.6.2"
  8121. },
  8122. "funding": [
  8123. {
  8124. "url": "https://fruitcake.nl",
  8125. "type": "custom"
  8126. },
  8127. {
  8128. "url": "https://github.com/barryvdh",
  8129. "type": "github"
  8130. }
  8131. ],
  8132. "time": "2021-06-14T14:29:26+00:00"
  8133. },
  8134. {
  8135. "name": "doctrine/instantiator",
  8136. "version": "1.4.0",
  8137. "source": {
  8138. "type": "git",
  8139. "url": "https://github.com/doctrine/instantiator.git",
  8140. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
  8141. },
  8142. "dist": {
  8143. "type": "zip",
  8144. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
  8145. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
  8146. "shasum": "",
  8147. "mirrors": [
  8148. {
  8149. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8150. "preferred": true
  8151. }
  8152. ]
  8153. },
  8154. "require": {
  8155. "php": "^7.1 || ^8.0"
  8156. },
  8157. "require-dev": {
  8158. "doctrine/coding-standard": "^8.0",
  8159. "ext-pdo": "*",
  8160. "ext-phar": "*",
  8161. "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
  8162. "phpstan/phpstan": "^0.12",
  8163. "phpstan/phpstan-phpunit": "^0.12",
  8164. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  8165. },
  8166. "type": "library",
  8167. "autoload": {
  8168. "psr-4": {
  8169. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  8170. }
  8171. },
  8172. "notification-url": "https://packagist.org/downloads/",
  8173. "license": [
  8174. "MIT"
  8175. ],
  8176. "authors": [
  8177. {
  8178. "name": "Marco Pivetta",
  8179. "email": "ocramius@gmail.com",
  8180. "homepage": "https://ocramius.github.io/"
  8181. }
  8182. ],
  8183. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8184. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  8185. "keywords": [
  8186. "constructor",
  8187. "instantiate"
  8188. ],
  8189. "support": {
  8190. "issues": "https://github.com/doctrine/instantiator/issues",
  8191. "source": "https://github.com/doctrine/instantiator/tree/1.4.0"
  8192. },
  8193. "funding": [
  8194. {
  8195. "url": "https://www.doctrine-project.org/sponsorship.html",
  8196. "type": "custom"
  8197. },
  8198. {
  8199. "url": "https://www.patreon.com/phpdoctrine",
  8200. "type": "patreon"
  8201. },
  8202. {
  8203. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  8204. "type": "tidelift"
  8205. }
  8206. ],
  8207. "time": "2020-11-10T18:47:58+00:00"
  8208. },
  8209. {
  8210. "name": "filp/whoops",
  8211. "version": "2.14.4",
  8212. "source": {
  8213. "type": "git",
  8214. "url": "https://github.com/filp/whoops.git",
  8215. "reference": "f056f1fe935d9ed86e698905a957334029899895"
  8216. },
  8217. "dist": {
  8218. "type": "zip",
  8219. "url": "https://api.github.com/repos/filp/whoops/zipball/f056f1fe935d9ed86e698905a957334029899895",
  8220. "reference": "f056f1fe935d9ed86e698905a957334029899895",
  8221. "shasum": "",
  8222. "mirrors": [
  8223. {
  8224. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8225. "preferred": true
  8226. }
  8227. ]
  8228. },
  8229. "require": {
  8230. "php": "^5.5.9 || ^7.0 || ^8.0",
  8231. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  8232. },
  8233. "require-dev": {
  8234. "mockery/mockery": "^0.9 || ^1.0",
  8235. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  8236. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  8237. },
  8238. "suggest": {
  8239. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  8240. "whoops/soap": "Formats errors as SOAP responses"
  8241. },
  8242. "type": "library",
  8243. "extra": {
  8244. "branch-alias": {
  8245. "dev-master": "2.7-dev"
  8246. }
  8247. },
  8248. "autoload": {
  8249. "psr-4": {
  8250. "Whoops\\": "src/Whoops/"
  8251. }
  8252. },
  8253. "notification-url": "https://packagist.org/downloads/",
  8254. "license": [
  8255. "MIT"
  8256. ],
  8257. "authors": [
  8258. {
  8259. "name": "Filipe Dobreira",
  8260. "homepage": "https://github.com/filp",
  8261. "role": "Developer"
  8262. }
  8263. ],
  8264. "description": "php error handling for cool kids",
  8265. "homepage": "https://filp.github.io/whoops/",
  8266. "keywords": [
  8267. "error",
  8268. "exception",
  8269. "handling",
  8270. "library",
  8271. "throwable",
  8272. "whoops"
  8273. ],
  8274. "support": {
  8275. "issues": "https://github.com/filp/whoops/issues",
  8276. "source": "https://github.com/filp/whoops/tree/2.14.4"
  8277. },
  8278. "funding": [
  8279. {
  8280. "url": "https://github.com/denis-sokolov",
  8281. "type": "github"
  8282. }
  8283. ],
  8284. "time": "2021-10-03T12:00:00+00:00"
  8285. },
  8286. {
  8287. "name": "fzaninotto/faker",
  8288. "version": "v1.9.2",
  8289. "source": {
  8290. "type": "git",
  8291. "url": "https://github.com/fzaninotto/Faker.git",
  8292. "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e"
  8293. },
  8294. "dist": {
  8295. "type": "zip",
  8296. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
  8297. "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
  8298. "shasum": "",
  8299. "mirrors": [
  8300. {
  8301. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8302. "preferred": true
  8303. }
  8304. ]
  8305. },
  8306. "require": {
  8307. "php": "^5.3.3 || ^7.0"
  8308. },
  8309. "require-dev": {
  8310. "ext-intl": "*",
  8311. "phpunit/phpunit": "^4.8.35 || ^5.7",
  8312. "squizlabs/php_codesniffer": "^2.9.2"
  8313. },
  8314. "type": "library",
  8315. "extra": {
  8316. "branch-alias": {
  8317. "dev-master": "1.9-dev"
  8318. }
  8319. },
  8320. "autoload": {
  8321. "psr-4": {
  8322. "Faker\\": "src/Faker/"
  8323. }
  8324. },
  8325. "notification-url": "https://packagist.org/downloads/",
  8326. "license": [
  8327. "MIT"
  8328. ],
  8329. "authors": [
  8330. {
  8331. "name": "François Zaninotto"
  8332. }
  8333. ],
  8334. "description": "Faker is a PHP library that generates fake data for you.",
  8335. "keywords": [
  8336. "data",
  8337. "faker",
  8338. "fixtures"
  8339. ],
  8340. "support": {
  8341. "issues": "https://github.com/fzaninotto/Faker/issues",
  8342. "source": "https://github.com/fzaninotto/Faker/tree/v1.9.2"
  8343. },
  8344. "abandoned": true,
  8345. "time": "2020-12-11T09:56:16+00:00"
  8346. },
  8347. {
  8348. "name": "hamcrest/hamcrest-php",
  8349. "version": "v2.0.1",
  8350. "source": {
  8351. "type": "git",
  8352. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8353. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8354. },
  8355. "dist": {
  8356. "type": "zip",
  8357. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8358. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8359. "shasum": "",
  8360. "mirrors": [
  8361. {
  8362. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8363. "preferred": true
  8364. }
  8365. ]
  8366. },
  8367. "require": {
  8368. "php": "^5.3|^7.0|^8.0"
  8369. },
  8370. "replace": {
  8371. "cordoval/hamcrest-php": "*",
  8372. "davedevelopment/hamcrest-php": "*",
  8373. "kodova/hamcrest-php": "*"
  8374. },
  8375. "require-dev": {
  8376. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8377. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8378. },
  8379. "type": "library",
  8380. "extra": {
  8381. "branch-alias": {
  8382. "dev-master": "2.1-dev"
  8383. }
  8384. },
  8385. "autoload": {
  8386. "classmap": [
  8387. "hamcrest"
  8388. ]
  8389. },
  8390. "notification-url": "https://packagist.org/downloads/",
  8391. "license": [
  8392. "BSD-3-Clause"
  8393. ],
  8394. "description": "This is the PHP port of Hamcrest Matchers",
  8395. "keywords": [
  8396. "test"
  8397. ],
  8398. "support": {
  8399. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8400. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8401. },
  8402. "time": "2020-07-09T08:09:16+00:00"
  8403. },
  8404. {
  8405. "name": "maximebf/debugbar",
  8406. "version": "v1.17.1",
  8407. "source": {
  8408. "type": "git",
  8409. "url": "https://github.com/maximebf/php-debugbar.git",
  8410. "reference": "0a3532556be0145603f8a9de23e76dc28eed7054"
  8411. },
  8412. "dist": {
  8413. "type": "zip",
  8414. "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/0a3532556be0145603f8a9de23e76dc28eed7054",
  8415. "reference": "0a3532556be0145603f8a9de23e76dc28eed7054",
  8416. "shasum": "",
  8417. "mirrors": [
  8418. {
  8419. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8420. "preferred": true
  8421. }
  8422. ]
  8423. },
  8424. "require": {
  8425. "php": "^7.1|^8",
  8426. "psr/log": "^1.0",
  8427. "symfony/var-dumper": "^2.6|^3|^4|^5"
  8428. },
  8429. "require-dev": {
  8430. "phpunit/phpunit": "^7.5.20 || ^9.4.2"
  8431. },
  8432. "suggest": {
  8433. "kriswallsmith/assetic": "The best way to manage assets",
  8434. "monolog/monolog": "Log using Monolog",
  8435. "predis/predis": "Redis storage"
  8436. },
  8437. "type": "library",
  8438. "extra": {
  8439. "branch-alias": {
  8440. "dev-master": "1.17-dev"
  8441. }
  8442. },
  8443. "autoload": {
  8444. "psr-4": {
  8445. "DebugBar\\": "src/DebugBar/"
  8446. }
  8447. },
  8448. "notification-url": "https://packagist.org/downloads/",
  8449. "license": [
  8450. "MIT"
  8451. ],
  8452. "authors": [
  8453. {
  8454. "name": "Maxime Bouroumeau-Fuseau",
  8455. "email": "maxime.bouroumeau@gmail.com",
  8456. "homepage": "http://maximebf.com"
  8457. },
  8458. {
  8459. "name": "Barry vd. Heuvel",
  8460. "email": "barryvdh@gmail.com"
  8461. }
  8462. ],
  8463. "description": "Debug bar in the browser for php application",
  8464. "homepage": "https://github.com/maximebf/php-debugbar",
  8465. "keywords": [
  8466. "debug",
  8467. "debugbar"
  8468. ],
  8469. "support": {
  8470. "issues": "https://github.com/maximebf/php-debugbar/issues",
  8471. "source": "https://github.com/maximebf/php-debugbar/tree/v1.17.1"
  8472. },
  8473. "time": "2021-08-01T09:19:02+00:00"
  8474. },
  8475. {
  8476. "name": "mockery/mockery",
  8477. "version": "1.4.4",
  8478. "source": {
  8479. "type": "git",
  8480. "url": "https://github.com/mockery/mockery.git",
  8481. "reference": "e01123a0e847d52d186c5eb4b9bf58b0c6d00346"
  8482. },
  8483. "dist": {
  8484. "type": "zip",
  8485. "url": "https://api.github.com/repos/mockery/mockery/zipball/e01123a0e847d52d186c5eb4b9bf58b0c6d00346",
  8486. "reference": "e01123a0e847d52d186c5eb4b9bf58b0c6d00346",
  8487. "shasum": "",
  8488. "mirrors": [
  8489. {
  8490. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8491. "preferred": true
  8492. }
  8493. ]
  8494. },
  8495. "require": {
  8496. "hamcrest/hamcrest-php": "^2.0.1",
  8497. "lib-pcre": ">=7.0",
  8498. "php": "^7.3 || ^8.0"
  8499. },
  8500. "conflict": {
  8501. "phpunit/phpunit": "<8.0"
  8502. },
  8503. "require-dev": {
  8504. "phpunit/phpunit": "^8.5 || ^9.3"
  8505. },
  8506. "type": "library",
  8507. "extra": {
  8508. "branch-alias": {
  8509. "dev-master": "1.4.x-dev"
  8510. }
  8511. },
  8512. "autoload": {
  8513. "psr-0": {
  8514. "Mockery": "library/"
  8515. }
  8516. },
  8517. "notification-url": "https://packagist.org/downloads/",
  8518. "license": [
  8519. "BSD-3-Clause"
  8520. ],
  8521. "authors": [
  8522. {
  8523. "name": "Pádraic Brady",
  8524. "email": "padraic.brady@gmail.com",
  8525. "homepage": "http://blog.astrumfutura.com"
  8526. },
  8527. {
  8528. "name": "Dave Marshall",
  8529. "email": "dave.marshall@atstsolutions.co.uk",
  8530. "homepage": "http://davedevelopment.co.uk"
  8531. }
  8532. ],
  8533. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8534. "homepage": "https://github.com/mockery/mockery",
  8535. "keywords": [
  8536. "BDD",
  8537. "TDD",
  8538. "library",
  8539. "mock",
  8540. "mock objects",
  8541. "mockery",
  8542. "stub",
  8543. "test",
  8544. "test double",
  8545. "testing"
  8546. ],
  8547. "support": {
  8548. "issues": "https://github.com/mockery/mockery/issues",
  8549. "source": "https://github.com/mockery/mockery/tree/1.4.4"
  8550. },
  8551. "time": "2021-09-13T15:28:59+00:00"
  8552. },
  8553. {
  8554. "name": "myclabs/deep-copy",
  8555. "version": "1.10.2",
  8556. "source": {
  8557. "type": "git",
  8558. "url": "https://github.com/myclabs/DeepCopy.git",
  8559. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
  8560. },
  8561. "dist": {
  8562. "type": "zip",
  8563. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
  8564. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
  8565. "shasum": "",
  8566. "mirrors": [
  8567. {
  8568. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8569. "preferred": true
  8570. }
  8571. ]
  8572. },
  8573. "require": {
  8574. "php": "^7.1 || ^8.0"
  8575. },
  8576. "replace": {
  8577. "myclabs/deep-copy": "self.version"
  8578. },
  8579. "require-dev": {
  8580. "doctrine/collections": "^1.0",
  8581. "doctrine/common": "^2.6",
  8582. "phpunit/phpunit": "^7.1"
  8583. },
  8584. "type": "library",
  8585. "autoload": {
  8586. "psr-4": {
  8587. "DeepCopy\\": "src/DeepCopy/"
  8588. },
  8589. "files": [
  8590. "src/DeepCopy/deep_copy.php"
  8591. ]
  8592. },
  8593. "notification-url": "https://packagist.org/downloads/",
  8594. "license": [
  8595. "MIT"
  8596. ],
  8597. "description": "Create deep copies (clones) of your objects",
  8598. "keywords": [
  8599. "clone",
  8600. "copy",
  8601. "duplicate",
  8602. "object",
  8603. "object graph"
  8604. ],
  8605. "support": {
  8606. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8607. "source": "https://github.com/myclabs/DeepCopy/tree/1.10.2"
  8608. },
  8609. "funding": [
  8610. {
  8611. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8612. "type": "tidelift"
  8613. }
  8614. ],
  8615. "time": "2020-11-13T09:40:50+00:00"
  8616. },
  8617. {
  8618. "name": "nunomaduro/collision",
  8619. "version": "v4.3.0",
  8620. "source": {
  8621. "type": "git",
  8622. "url": "https://github.com/nunomaduro/collision.git",
  8623. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e"
  8624. },
  8625. "dist": {
  8626. "type": "zip",
  8627. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/7c125dc2463f3e144ddc7e05e63077109508c94e",
  8628. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e",
  8629. "shasum": "",
  8630. "mirrors": [
  8631. {
  8632. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8633. "preferred": true
  8634. }
  8635. ]
  8636. },
  8637. "require": {
  8638. "facade/ignition-contracts": "^1.0",
  8639. "filp/whoops": "^2.4",
  8640. "php": "^7.2.5 || ^8.0",
  8641. "symfony/console": "^5.0"
  8642. },
  8643. "require-dev": {
  8644. "facade/ignition": "^2.0",
  8645. "fideloper/proxy": "^4.2",
  8646. "friendsofphp/php-cs-fixer": "^2.16",
  8647. "fruitcake/laravel-cors": "^1.0",
  8648. "laravel/framework": "^7.0",
  8649. "laravel/tinker": "^2.0",
  8650. "nunomaduro/larastan": "^0.6",
  8651. "orchestra/testbench": "^5.0",
  8652. "phpstan/phpstan": "^0.12.3",
  8653. "phpunit/phpunit": "^8.5.1 || ^9.0"
  8654. },
  8655. "type": "library",
  8656. "extra": {
  8657. "laravel": {
  8658. "providers": [
  8659. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  8660. ]
  8661. }
  8662. },
  8663. "autoload": {
  8664. "psr-4": {
  8665. "NunoMaduro\\Collision\\": "src/"
  8666. }
  8667. },
  8668. "notification-url": "https://packagist.org/downloads/",
  8669. "license": [
  8670. "MIT"
  8671. ],
  8672. "authors": [
  8673. {
  8674. "name": "Nuno Maduro",
  8675. "email": "enunomaduro@gmail.com"
  8676. }
  8677. ],
  8678. "description": "Cli error handling for console/command-line PHP applications.",
  8679. "keywords": [
  8680. "artisan",
  8681. "cli",
  8682. "command-line",
  8683. "console",
  8684. "error",
  8685. "handling",
  8686. "laravel",
  8687. "laravel-zero",
  8688. "php",
  8689. "symfony"
  8690. ],
  8691. "support": {
  8692. "issues": "https://github.com/nunomaduro/collision/issues",
  8693. "source": "https://github.com/nunomaduro/collision"
  8694. },
  8695. "funding": [
  8696. {
  8697. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  8698. "type": "custom"
  8699. },
  8700. {
  8701. "url": "https://github.com/nunomaduro",
  8702. "type": "github"
  8703. },
  8704. {
  8705. "url": "https://www.patreon.com/nunomaduro",
  8706. "type": "patreon"
  8707. }
  8708. ],
  8709. "time": "2020-10-29T15:12:23+00:00"
  8710. },
  8711. {
  8712. "name": "phar-io/manifest",
  8713. "version": "2.0.3",
  8714. "source": {
  8715. "type": "git",
  8716. "url": "https://github.com/phar-io/manifest.git",
  8717. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  8718. },
  8719. "dist": {
  8720. "type": "zip",
  8721. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  8722. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  8723. "shasum": "",
  8724. "mirrors": [
  8725. {
  8726. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8727. "preferred": true
  8728. }
  8729. ]
  8730. },
  8731. "require": {
  8732. "ext-dom": "*",
  8733. "ext-phar": "*",
  8734. "ext-xmlwriter": "*",
  8735. "phar-io/version": "^3.0.1",
  8736. "php": "^7.2 || ^8.0"
  8737. },
  8738. "type": "library",
  8739. "extra": {
  8740. "branch-alias": {
  8741. "dev-master": "2.0.x-dev"
  8742. }
  8743. },
  8744. "autoload": {
  8745. "classmap": [
  8746. "src/"
  8747. ]
  8748. },
  8749. "notification-url": "https://packagist.org/downloads/",
  8750. "license": [
  8751. "BSD-3-Clause"
  8752. ],
  8753. "authors": [
  8754. {
  8755. "name": "Arne Blankerts",
  8756. "email": "arne@blankerts.de",
  8757. "role": "Developer"
  8758. },
  8759. {
  8760. "name": "Sebastian Heuer",
  8761. "email": "sebastian@phpeople.de",
  8762. "role": "Developer"
  8763. },
  8764. {
  8765. "name": "Sebastian Bergmann",
  8766. "email": "sebastian@phpunit.de",
  8767. "role": "Developer"
  8768. }
  8769. ],
  8770. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8771. "support": {
  8772. "issues": "https://github.com/phar-io/manifest/issues",
  8773. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  8774. },
  8775. "time": "2021-07-20T11:28:43+00:00"
  8776. },
  8777. {
  8778. "name": "phar-io/version",
  8779. "version": "3.1.0",
  8780. "source": {
  8781. "type": "git",
  8782. "url": "https://github.com/phar-io/version.git",
  8783. "reference": "bae7c545bef187884426f042434e561ab1ddb182"
  8784. },
  8785. "dist": {
  8786. "type": "zip",
  8787. "url": "https://api.github.com/repos/phar-io/version/zipball/bae7c545bef187884426f042434e561ab1ddb182",
  8788. "reference": "bae7c545bef187884426f042434e561ab1ddb182",
  8789. "shasum": "",
  8790. "mirrors": [
  8791. {
  8792. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8793. "preferred": true
  8794. }
  8795. ]
  8796. },
  8797. "require": {
  8798. "php": "^7.2 || ^8.0"
  8799. },
  8800. "type": "library",
  8801. "autoload": {
  8802. "classmap": [
  8803. "src/"
  8804. ]
  8805. },
  8806. "notification-url": "https://packagist.org/downloads/",
  8807. "license": [
  8808. "BSD-3-Clause"
  8809. ],
  8810. "authors": [
  8811. {
  8812. "name": "Arne Blankerts",
  8813. "email": "arne@blankerts.de",
  8814. "role": "Developer"
  8815. },
  8816. {
  8817. "name": "Sebastian Heuer",
  8818. "email": "sebastian@phpeople.de",
  8819. "role": "Developer"
  8820. },
  8821. {
  8822. "name": "Sebastian Bergmann",
  8823. "email": "sebastian@phpunit.de",
  8824. "role": "Developer"
  8825. }
  8826. ],
  8827. "description": "Library for handling version information and constraints",
  8828. "support": {
  8829. "issues": "https://github.com/phar-io/version/issues",
  8830. "source": "https://github.com/phar-io/version/tree/3.1.0"
  8831. },
  8832. "time": "2021-02-23T14:00:09+00:00"
  8833. },
  8834. {
  8835. "name": "phpdocumentor/reflection-common",
  8836. "version": "2.2.0",
  8837. "source": {
  8838. "type": "git",
  8839. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  8840. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  8841. },
  8842. "dist": {
  8843. "type": "zip",
  8844. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  8845. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  8846. "shasum": "",
  8847. "mirrors": [
  8848. {
  8849. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8850. "preferred": true
  8851. }
  8852. ]
  8853. },
  8854. "require": {
  8855. "php": "^7.2 || ^8.0"
  8856. },
  8857. "type": "library",
  8858. "extra": {
  8859. "branch-alias": {
  8860. "dev-2.x": "2.x-dev"
  8861. }
  8862. },
  8863. "autoload": {
  8864. "psr-4": {
  8865. "phpDocumentor\\Reflection\\": "src/"
  8866. }
  8867. },
  8868. "notification-url": "https://packagist.org/downloads/",
  8869. "license": [
  8870. "MIT"
  8871. ],
  8872. "authors": [
  8873. {
  8874. "name": "Jaap van Otterdijk",
  8875. "email": "opensource@ijaap.nl"
  8876. }
  8877. ],
  8878. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  8879. "homepage": "http://www.phpdoc.org",
  8880. "keywords": [
  8881. "FQSEN",
  8882. "phpDocumentor",
  8883. "phpdoc",
  8884. "reflection",
  8885. "static analysis"
  8886. ],
  8887. "support": {
  8888. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  8889. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  8890. },
  8891. "time": "2020-06-27T09:03:43+00:00"
  8892. },
  8893. {
  8894. "name": "phpdocumentor/reflection-docblock",
  8895. "version": "5.2.2",
  8896. "source": {
  8897. "type": "git",
  8898. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  8899. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556"
  8900. },
  8901. "dist": {
  8902. "type": "zip",
  8903. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556",
  8904. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556",
  8905. "shasum": "",
  8906. "mirrors": [
  8907. {
  8908. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8909. "preferred": true
  8910. }
  8911. ]
  8912. },
  8913. "require": {
  8914. "ext-filter": "*",
  8915. "php": "^7.2 || ^8.0",
  8916. "phpdocumentor/reflection-common": "^2.2",
  8917. "phpdocumentor/type-resolver": "^1.3",
  8918. "webmozart/assert": "^1.9.1"
  8919. },
  8920. "require-dev": {
  8921. "mockery/mockery": "~1.3.2"
  8922. },
  8923. "type": "library",
  8924. "extra": {
  8925. "branch-alias": {
  8926. "dev-master": "5.x-dev"
  8927. }
  8928. },
  8929. "autoload": {
  8930. "psr-4": {
  8931. "phpDocumentor\\Reflection\\": "src"
  8932. }
  8933. },
  8934. "notification-url": "https://packagist.org/downloads/",
  8935. "license": [
  8936. "MIT"
  8937. ],
  8938. "authors": [
  8939. {
  8940. "name": "Mike van Riel",
  8941. "email": "me@mikevanriel.com"
  8942. },
  8943. {
  8944. "name": "Jaap van Otterdijk",
  8945. "email": "account@ijaap.nl"
  8946. }
  8947. ],
  8948. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  8949. "support": {
  8950. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  8951. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/master"
  8952. },
  8953. "time": "2020-09-03T19:13:55+00:00"
  8954. },
  8955. {
  8956. "name": "phpdocumentor/type-resolver",
  8957. "version": "1.5.1",
  8958. "source": {
  8959. "type": "git",
  8960. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  8961. "reference": "a12f7e301eb7258bb68acd89d4aefa05c2906cae"
  8962. },
  8963. "dist": {
  8964. "type": "zip",
  8965. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/a12f7e301eb7258bb68acd89d4aefa05c2906cae",
  8966. "reference": "a12f7e301eb7258bb68acd89d4aefa05c2906cae",
  8967. "shasum": "",
  8968. "mirrors": [
  8969. {
  8970. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8971. "preferred": true
  8972. }
  8973. ]
  8974. },
  8975. "require": {
  8976. "php": "^7.2 || ^8.0",
  8977. "phpdocumentor/reflection-common": "^2.0"
  8978. },
  8979. "require-dev": {
  8980. "ext-tokenizer": "*",
  8981. "psalm/phar": "^4.8"
  8982. },
  8983. "type": "library",
  8984. "extra": {
  8985. "branch-alias": {
  8986. "dev-1.x": "1.x-dev"
  8987. }
  8988. },
  8989. "autoload": {
  8990. "psr-4": {
  8991. "phpDocumentor\\Reflection\\": "src"
  8992. }
  8993. },
  8994. "notification-url": "https://packagist.org/downloads/",
  8995. "license": [
  8996. "MIT"
  8997. ],
  8998. "authors": [
  8999. {
  9000. "name": "Mike van Riel",
  9001. "email": "me@mikevanriel.com"
  9002. }
  9003. ],
  9004. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  9005. "support": {
  9006. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  9007. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.5.1"
  9008. },
  9009. "time": "2021-10-02T14:08:47+00:00"
  9010. },
  9011. {
  9012. "name": "phpspec/prophecy",
  9013. "version": "1.14.0",
  9014. "source": {
  9015. "type": "git",
  9016. "url": "https://github.com/phpspec/prophecy.git",
  9017. "reference": "d86dfc2e2a3cd366cee475e52c6bb3bbc371aa0e"
  9018. },
  9019. "dist": {
  9020. "type": "zip",
  9021. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/d86dfc2e2a3cd366cee475e52c6bb3bbc371aa0e",
  9022. "reference": "d86dfc2e2a3cd366cee475e52c6bb3bbc371aa0e",
  9023. "shasum": "",
  9024. "mirrors": [
  9025. {
  9026. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9027. "preferred": true
  9028. }
  9029. ]
  9030. },
  9031. "require": {
  9032. "doctrine/instantiator": "^1.2",
  9033. "php": "^7.2 || ~8.0, <8.2",
  9034. "phpdocumentor/reflection-docblock": "^5.2",
  9035. "sebastian/comparator": "^3.0 || ^4.0",
  9036. "sebastian/recursion-context": "^3.0 || ^4.0"
  9037. },
  9038. "require-dev": {
  9039. "phpspec/phpspec": "^6.0 || ^7.0",
  9040. "phpunit/phpunit": "^8.0 || ^9.0"
  9041. },
  9042. "type": "library",
  9043. "extra": {
  9044. "branch-alias": {
  9045. "dev-master": "1.x-dev"
  9046. }
  9047. },
  9048. "autoload": {
  9049. "psr-4": {
  9050. "Prophecy\\": "src/Prophecy"
  9051. }
  9052. },
  9053. "notification-url": "https://packagist.org/downloads/",
  9054. "license": [
  9055. "MIT"
  9056. ],
  9057. "authors": [
  9058. {
  9059. "name": "Konstantin Kudryashov",
  9060. "email": "ever.zet@gmail.com",
  9061. "homepage": "http://everzet.com"
  9062. },
  9063. {
  9064. "name": "Marcello Duarte",
  9065. "email": "marcello.duarte@gmail.com"
  9066. }
  9067. ],
  9068. "description": "Highly opinionated mocking framework for PHP 5.3+",
  9069. "homepage": "https://github.com/phpspec/prophecy",
  9070. "keywords": [
  9071. "Double",
  9072. "Dummy",
  9073. "fake",
  9074. "mock",
  9075. "spy",
  9076. "stub"
  9077. ],
  9078. "support": {
  9079. "issues": "https://github.com/phpspec/prophecy/issues",
  9080. "source": "https://github.com/phpspec/prophecy/tree/1.14.0"
  9081. },
  9082. "time": "2021-09-10T09:02:12+00:00"
  9083. },
  9084. {
  9085. "name": "phpunit/php-code-coverage",
  9086. "version": "7.0.15",
  9087. "source": {
  9088. "type": "git",
  9089. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9090. "reference": "819f92bba8b001d4363065928088de22f25a3a48"
  9091. },
  9092. "dist": {
  9093. "type": "zip",
  9094. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/819f92bba8b001d4363065928088de22f25a3a48",
  9095. "reference": "819f92bba8b001d4363065928088de22f25a3a48",
  9096. "shasum": "",
  9097. "mirrors": [
  9098. {
  9099. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9100. "preferred": true
  9101. }
  9102. ]
  9103. },
  9104. "require": {
  9105. "ext-dom": "*",
  9106. "ext-xmlwriter": "*",
  9107. "php": ">=7.2",
  9108. "phpunit/php-file-iterator": "^2.0.2",
  9109. "phpunit/php-text-template": "^1.2.1",
  9110. "phpunit/php-token-stream": "^3.1.3 || ^4.0",
  9111. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  9112. "sebastian/environment": "^4.2.2",
  9113. "sebastian/version": "^2.0.1",
  9114. "theseer/tokenizer": "^1.1.3"
  9115. },
  9116. "require-dev": {
  9117. "phpunit/phpunit": "^8.2.2"
  9118. },
  9119. "suggest": {
  9120. "ext-xdebug": "^2.7.2"
  9121. },
  9122. "type": "library",
  9123. "extra": {
  9124. "branch-alias": {
  9125. "dev-master": "7.0-dev"
  9126. }
  9127. },
  9128. "autoload": {
  9129. "classmap": [
  9130. "src/"
  9131. ]
  9132. },
  9133. "notification-url": "https://packagist.org/downloads/",
  9134. "license": [
  9135. "BSD-3-Clause"
  9136. ],
  9137. "authors": [
  9138. {
  9139. "name": "Sebastian Bergmann",
  9140. "email": "sebastian@phpunit.de",
  9141. "role": "lead"
  9142. }
  9143. ],
  9144. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9145. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9146. "keywords": [
  9147. "coverage",
  9148. "testing",
  9149. "xunit"
  9150. ],
  9151. "support": {
  9152. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9153. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/7.0.15"
  9154. },
  9155. "funding": [
  9156. {
  9157. "url": "https://github.com/sebastianbergmann",
  9158. "type": "github"
  9159. }
  9160. ],
  9161. "time": "2021-07-26T12:20:09+00:00"
  9162. },
  9163. {
  9164. "name": "phpunit/php-file-iterator",
  9165. "version": "2.0.4",
  9166. "source": {
  9167. "type": "git",
  9168. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9169. "reference": "28af674ff175d0768a5a978e6de83f697d4a7f05"
  9170. },
  9171. "dist": {
  9172. "type": "zip",
  9173. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/28af674ff175d0768a5a978e6de83f697d4a7f05",
  9174. "reference": "28af674ff175d0768a5a978e6de83f697d4a7f05",
  9175. "shasum": "",
  9176. "mirrors": [
  9177. {
  9178. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9179. "preferred": true
  9180. }
  9181. ]
  9182. },
  9183. "require": {
  9184. "php": ">=7.1"
  9185. },
  9186. "require-dev": {
  9187. "phpunit/phpunit": "^8.5"
  9188. },
  9189. "type": "library",
  9190. "extra": {
  9191. "branch-alias": {
  9192. "dev-master": "2.0.x-dev"
  9193. }
  9194. },
  9195. "autoload": {
  9196. "classmap": [
  9197. "src/"
  9198. ]
  9199. },
  9200. "notification-url": "https://packagist.org/downloads/",
  9201. "license": [
  9202. "BSD-3-Clause"
  9203. ],
  9204. "authors": [
  9205. {
  9206. "name": "Sebastian Bergmann",
  9207. "email": "sebastian@phpunit.de",
  9208. "role": "lead"
  9209. }
  9210. ],
  9211. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9212. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9213. "keywords": [
  9214. "filesystem",
  9215. "iterator"
  9216. ],
  9217. "support": {
  9218. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9219. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/2.0.4"
  9220. },
  9221. "funding": [
  9222. {
  9223. "url": "https://github.com/sebastianbergmann",
  9224. "type": "github"
  9225. }
  9226. ],
  9227. "time": "2021-07-19T06:46:01+00:00"
  9228. },
  9229. {
  9230. "name": "phpunit/php-text-template",
  9231. "version": "1.2.1",
  9232. "source": {
  9233. "type": "git",
  9234. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9235. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  9236. },
  9237. "dist": {
  9238. "type": "zip",
  9239. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  9240. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  9241. "shasum": "",
  9242. "mirrors": [
  9243. {
  9244. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9245. "preferred": true
  9246. }
  9247. ]
  9248. },
  9249. "require": {
  9250. "php": ">=5.3.3"
  9251. },
  9252. "type": "library",
  9253. "autoload": {
  9254. "classmap": [
  9255. "src/"
  9256. ]
  9257. },
  9258. "notification-url": "https://packagist.org/downloads/",
  9259. "license": [
  9260. "BSD-3-Clause"
  9261. ],
  9262. "authors": [
  9263. {
  9264. "name": "Sebastian Bergmann",
  9265. "email": "sebastian@phpunit.de",
  9266. "role": "lead"
  9267. }
  9268. ],
  9269. "description": "Simple template engine.",
  9270. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9271. "keywords": [
  9272. "template"
  9273. ],
  9274. "support": {
  9275. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9276. "source": "https://github.com/sebastianbergmann/php-text-template/tree/1.2.1"
  9277. },
  9278. "time": "2015-06-21T13:50:34+00:00"
  9279. },
  9280. {
  9281. "name": "phpunit/php-timer",
  9282. "version": "2.1.3",
  9283. "source": {
  9284. "type": "git",
  9285. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9286. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662"
  9287. },
  9288. "dist": {
  9289. "type": "zip",
  9290. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  9291. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  9292. "shasum": "",
  9293. "mirrors": [
  9294. {
  9295. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9296. "preferred": true
  9297. }
  9298. ]
  9299. },
  9300. "require": {
  9301. "php": ">=7.1"
  9302. },
  9303. "require-dev": {
  9304. "phpunit/phpunit": "^8.5"
  9305. },
  9306. "type": "library",
  9307. "extra": {
  9308. "branch-alias": {
  9309. "dev-master": "2.1-dev"
  9310. }
  9311. },
  9312. "autoload": {
  9313. "classmap": [
  9314. "src/"
  9315. ]
  9316. },
  9317. "notification-url": "https://packagist.org/downloads/",
  9318. "license": [
  9319. "BSD-3-Clause"
  9320. ],
  9321. "authors": [
  9322. {
  9323. "name": "Sebastian Bergmann",
  9324. "email": "sebastian@phpunit.de",
  9325. "role": "lead"
  9326. }
  9327. ],
  9328. "description": "Utility class for timing",
  9329. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9330. "keywords": [
  9331. "timer"
  9332. ],
  9333. "support": {
  9334. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9335. "source": "https://github.com/sebastianbergmann/php-timer/tree/2.1.3"
  9336. },
  9337. "funding": [
  9338. {
  9339. "url": "https://github.com/sebastianbergmann",
  9340. "type": "github"
  9341. }
  9342. ],
  9343. "time": "2020-11-30T08:20:02+00:00"
  9344. },
  9345. {
  9346. "name": "phpunit/php-token-stream",
  9347. "version": "4.0.4",
  9348. "source": {
  9349. "type": "git",
  9350. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  9351. "reference": "a853a0e183b9db7eed023d7933a858fa1c8d25a3"
  9352. },
  9353. "dist": {
  9354. "type": "zip",
  9355. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/a853a0e183b9db7eed023d7933a858fa1c8d25a3",
  9356. "reference": "a853a0e183b9db7eed023d7933a858fa1c8d25a3",
  9357. "shasum": "",
  9358. "mirrors": [
  9359. {
  9360. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9361. "preferred": true
  9362. }
  9363. ]
  9364. },
  9365. "require": {
  9366. "ext-tokenizer": "*",
  9367. "php": "^7.3 || ^8.0"
  9368. },
  9369. "require-dev": {
  9370. "phpunit/phpunit": "^9.0"
  9371. },
  9372. "type": "library",
  9373. "extra": {
  9374. "branch-alias": {
  9375. "dev-master": "4.0-dev"
  9376. }
  9377. },
  9378. "autoload": {
  9379. "classmap": [
  9380. "src/"
  9381. ]
  9382. },
  9383. "notification-url": "https://packagist.org/downloads/",
  9384. "license": [
  9385. "BSD-3-Clause"
  9386. ],
  9387. "authors": [
  9388. {
  9389. "name": "Sebastian Bergmann",
  9390. "email": "sebastian@phpunit.de"
  9391. }
  9392. ],
  9393. "description": "Wrapper around PHP's tokenizer extension.",
  9394. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  9395. "keywords": [
  9396. "tokenizer"
  9397. ],
  9398. "support": {
  9399. "issues": "https://github.com/sebastianbergmann/php-token-stream/issues",
  9400. "source": "https://github.com/sebastianbergmann/php-token-stream/tree/master"
  9401. },
  9402. "funding": [
  9403. {
  9404. "url": "https://github.com/sebastianbergmann",
  9405. "type": "github"
  9406. }
  9407. ],
  9408. "abandoned": true,
  9409. "time": "2020-08-04T08:28:15+00:00"
  9410. },
  9411. {
  9412. "name": "phpunit/phpunit",
  9413. "version": "8.5.21",
  9414. "source": {
  9415. "type": "git",
  9416. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9417. "reference": "50a58a60b85947b0bee4c8ecfe0f4bbdcf20e984"
  9418. },
  9419. "dist": {
  9420. "type": "zip",
  9421. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/50a58a60b85947b0bee4c8ecfe0f4bbdcf20e984",
  9422. "reference": "50a58a60b85947b0bee4c8ecfe0f4bbdcf20e984",
  9423. "shasum": "",
  9424. "mirrors": [
  9425. {
  9426. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9427. "preferred": true
  9428. }
  9429. ]
  9430. },
  9431. "require": {
  9432. "doctrine/instantiator": "^1.3.1",
  9433. "ext-dom": "*",
  9434. "ext-json": "*",
  9435. "ext-libxml": "*",
  9436. "ext-mbstring": "*",
  9437. "ext-xml": "*",
  9438. "ext-xmlwriter": "*",
  9439. "myclabs/deep-copy": "^1.10.0",
  9440. "phar-io/manifest": "^2.0.3",
  9441. "phar-io/version": "^3.0.2",
  9442. "php": ">=7.2",
  9443. "phpspec/prophecy": "^1.10.3",
  9444. "phpunit/php-code-coverage": "^7.0.12",
  9445. "phpunit/php-file-iterator": "^2.0.4",
  9446. "phpunit/php-text-template": "^1.2.1",
  9447. "phpunit/php-timer": "^2.1.2",
  9448. "sebastian/comparator": "^3.0.2",
  9449. "sebastian/diff": "^3.0.2",
  9450. "sebastian/environment": "^4.2.3",
  9451. "sebastian/exporter": "^3.1.2",
  9452. "sebastian/global-state": "^3.0.0",
  9453. "sebastian/object-enumerator": "^3.0.3",
  9454. "sebastian/resource-operations": "^2.0.1",
  9455. "sebastian/type": "^1.1.3",
  9456. "sebastian/version": "^2.0.1"
  9457. },
  9458. "require-dev": {
  9459. "ext-pdo": "*"
  9460. },
  9461. "suggest": {
  9462. "ext-soap": "*",
  9463. "ext-xdebug": "*",
  9464. "phpunit/php-invoker": "^2.0.0"
  9465. },
  9466. "bin": [
  9467. "phpunit"
  9468. ],
  9469. "type": "library",
  9470. "extra": {
  9471. "branch-alias": {
  9472. "dev-master": "8.5-dev"
  9473. }
  9474. },
  9475. "autoload": {
  9476. "classmap": [
  9477. "src/"
  9478. ]
  9479. },
  9480. "notification-url": "https://packagist.org/downloads/",
  9481. "license": [
  9482. "BSD-3-Clause"
  9483. ],
  9484. "authors": [
  9485. {
  9486. "name": "Sebastian Bergmann",
  9487. "email": "sebastian@phpunit.de",
  9488. "role": "lead"
  9489. }
  9490. ],
  9491. "description": "The PHP Unit Testing framework.",
  9492. "homepage": "https://phpunit.de/",
  9493. "keywords": [
  9494. "phpunit",
  9495. "testing",
  9496. "xunit"
  9497. ],
  9498. "support": {
  9499. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9500. "source": "https://github.com/sebastianbergmann/phpunit/tree/8.5.21"
  9501. },
  9502. "funding": [
  9503. {
  9504. "url": "https://phpunit.de/donate.html",
  9505. "type": "custom"
  9506. },
  9507. {
  9508. "url": "https://github.com/sebastianbergmann",
  9509. "type": "github"
  9510. }
  9511. ],
  9512. "time": "2021-09-25T07:37:20+00:00"
  9513. },
  9514. {
  9515. "name": "sebastian/code-unit-reverse-lookup",
  9516. "version": "1.0.2",
  9517. "source": {
  9518. "type": "git",
  9519. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9520. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619"
  9521. },
  9522. "dist": {
  9523. "type": "zip",
  9524. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  9525. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  9526. "shasum": "",
  9527. "mirrors": [
  9528. {
  9529. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9530. "preferred": true
  9531. }
  9532. ]
  9533. },
  9534. "require": {
  9535. "php": ">=5.6"
  9536. },
  9537. "require-dev": {
  9538. "phpunit/phpunit": "^8.5"
  9539. },
  9540. "type": "library",
  9541. "extra": {
  9542. "branch-alias": {
  9543. "dev-master": "1.0.x-dev"
  9544. }
  9545. },
  9546. "autoload": {
  9547. "classmap": [
  9548. "src/"
  9549. ]
  9550. },
  9551. "notification-url": "https://packagist.org/downloads/",
  9552. "license": [
  9553. "BSD-3-Clause"
  9554. ],
  9555. "authors": [
  9556. {
  9557. "name": "Sebastian Bergmann",
  9558. "email": "sebastian@phpunit.de"
  9559. }
  9560. ],
  9561. "description": "Looks up which function or method a line of code belongs to",
  9562. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9563. "support": {
  9564. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9565. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/1.0.2"
  9566. },
  9567. "funding": [
  9568. {
  9569. "url": "https://github.com/sebastianbergmann",
  9570. "type": "github"
  9571. }
  9572. ],
  9573. "time": "2020-11-30T08:15:22+00:00"
  9574. },
  9575. {
  9576. "name": "sebastian/comparator",
  9577. "version": "3.0.3",
  9578. "source": {
  9579. "type": "git",
  9580. "url": "https://github.com/sebastianbergmann/comparator.git",
  9581. "reference": "1071dfcef776a57013124ff35e1fc41ccd294758"
  9582. },
  9583. "dist": {
  9584. "type": "zip",
  9585. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/1071dfcef776a57013124ff35e1fc41ccd294758",
  9586. "reference": "1071dfcef776a57013124ff35e1fc41ccd294758",
  9587. "shasum": "",
  9588. "mirrors": [
  9589. {
  9590. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9591. "preferred": true
  9592. }
  9593. ]
  9594. },
  9595. "require": {
  9596. "php": ">=7.1",
  9597. "sebastian/diff": "^3.0",
  9598. "sebastian/exporter": "^3.1"
  9599. },
  9600. "require-dev": {
  9601. "phpunit/phpunit": "^8.5"
  9602. },
  9603. "type": "library",
  9604. "extra": {
  9605. "branch-alias": {
  9606. "dev-master": "3.0-dev"
  9607. }
  9608. },
  9609. "autoload": {
  9610. "classmap": [
  9611. "src/"
  9612. ]
  9613. },
  9614. "notification-url": "https://packagist.org/downloads/",
  9615. "license": [
  9616. "BSD-3-Clause"
  9617. ],
  9618. "authors": [
  9619. {
  9620. "name": "Sebastian Bergmann",
  9621. "email": "sebastian@phpunit.de"
  9622. },
  9623. {
  9624. "name": "Jeff Welch",
  9625. "email": "whatthejeff@gmail.com"
  9626. },
  9627. {
  9628. "name": "Volker Dusch",
  9629. "email": "github@wallbash.com"
  9630. },
  9631. {
  9632. "name": "Bernhard Schussek",
  9633. "email": "bschussek@2bepublished.at"
  9634. }
  9635. ],
  9636. "description": "Provides the functionality to compare PHP values for equality",
  9637. "homepage": "https://github.com/sebastianbergmann/comparator",
  9638. "keywords": [
  9639. "comparator",
  9640. "compare",
  9641. "equality"
  9642. ],
  9643. "support": {
  9644. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9645. "source": "https://github.com/sebastianbergmann/comparator/tree/3.0.3"
  9646. },
  9647. "funding": [
  9648. {
  9649. "url": "https://github.com/sebastianbergmann",
  9650. "type": "github"
  9651. }
  9652. ],
  9653. "time": "2020-11-30T08:04:30+00:00"
  9654. },
  9655. {
  9656. "name": "sebastian/diff",
  9657. "version": "3.0.3",
  9658. "source": {
  9659. "type": "git",
  9660. "url": "https://github.com/sebastianbergmann/diff.git",
  9661. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211"
  9662. },
  9663. "dist": {
  9664. "type": "zip",
  9665. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  9666. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  9667. "shasum": "",
  9668. "mirrors": [
  9669. {
  9670. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9671. "preferred": true
  9672. }
  9673. ]
  9674. },
  9675. "require": {
  9676. "php": ">=7.1"
  9677. },
  9678. "require-dev": {
  9679. "phpunit/phpunit": "^7.5 || ^8.0",
  9680. "symfony/process": "^2 || ^3.3 || ^4"
  9681. },
  9682. "type": "library",
  9683. "extra": {
  9684. "branch-alias": {
  9685. "dev-master": "3.0-dev"
  9686. }
  9687. },
  9688. "autoload": {
  9689. "classmap": [
  9690. "src/"
  9691. ]
  9692. },
  9693. "notification-url": "https://packagist.org/downloads/",
  9694. "license": [
  9695. "BSD-3-Clause"
  9696. ],
  9697. "authors": [
  9698. {
  9699. "name": "Sebastian Bergmann",
  9700. "email": "sebastian@phpunit.de"
  9701. },
  9702. {
  9703. "name": "Kore Nordmann",
  9704. "email": "mail@kore-nordmann.de"
  9705. }
  9706. ],
  9707. "description": "Diff implementation",
  9708. "homepage": "https://github.com/sebastianbergmann/diff",
  9709. "keywords": [
  9710. "diff",
  9711. "udiff",
  9712. "unidiff",
  9713. "unified diff"
  9714. ],
  9715. "support": {
  9716. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9717. "source": "https://github.com/sebastianbergmann/diff/tree/3.0.3"
  9718. },
  9719. "funding": [
  9720. {
  9721. "url": "https://github.com/sebastianbergmann",
  9722. "type": "github"
  9723. }
  9724. ],
  9725. "time": "2020-11-30T07:59:04+00:00"
  9726. },
  9727. {
  9728. "name": "sebastian/environment",
  9729. "version": "4.2.4",
  9730. "source": {
  9731. "type": "git",
  9732. "url": "https://github.com/sebastianbergmann/environment.git",
  9733. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0"
  9734. },
  9735. "dist": {
  9736. "type": "zip",
  9737. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  9738. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  9739. "shasum": "",
  9740. "mirrors": [
  9741. {
  9742. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9743. "preferred": true
  9744. }
  9745. ]
  9746. },
  9747. "require": {
  9748. "php": ">=7.1"
  9749. },
  9750. "require-dev": {
  9751. "phpunit/phpunit": "^7.5"
  9752. },
  9753. "suggest": {
  9754. "ext-posix": "*"
  9755. },
  9756. "type": "library",
  9757. "extra": {
  9758. "branch-alias": {
  9759. "dev-master": "4.2-dev"
  9760. }
  9761. },
  9762. "autoload": {
  9763. "classmap": [
  9764. "src/"
  9765. ]
  9766. },
  9767. "notification-url": "https://packagist.org/downloads/",
  9768. "license": [
  9769. "BSD-3-Clause"
  9770. ],
  9771. "authors": [
  9772. {
  9773. "name": "Sebastian Bergmann",
  9774. "email": "sebastian@phpunit.de"
  9775. }
  9776. ],
  9777. "description": "Provides functionality to handle HHVM/PHP environments",
  9778. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9779. "keywords": [
  9780. "Xdebug",
  9781. "environment",
  9782. "hhvm"
  9783. ],
  9784. "support": {
  9785. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9786. "source": "https://github.com/sebastianbergmann/environment/tree/4.2.4"
  9787. },
  9788. "funding": [
  9789. {
  9790. "url": "https://github.com/sebastianbergmann",
  9791. "type": "github"
  9792. }
  9793. ],
  9794. "time": "2020-11-30T07:53:42+00:00"
  9795. },
  9796. {
  9797. "name": "sebastian/exporter",
  9798. "version": "3.1.3",
  9799. "source": {
  9800. "type": "git",
  9801. "url": "https://github.com/sebastianbergmann/exporter.git",
  9802. "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e"
  9803. },
  9804. "dist": {
  9805. "type": "zip",
  9806. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/6b853149eab67d4da22291d36f5b0631c0fd856e",
  9807. "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e",
  9808. "shasum": "",
  9809. "mirrors": [
  9810. {
  9811. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9812. "preferred": true
  9813. }
  9814. ]
  9815. },
  9816. "require": {
  9817. "php": ">=7.0",
  9818. "sebastian/recursion-context": "^3.0"
  9819. },
  9820. "require-dev": {
  9821. "ext-mbstring": "*",
  9822. "phpunit/phpunit": "^6.0"
  9823. },
  9824. "type": "library",
  9825. "extra": {
  9826. "branch-alias": {
  9827. "dev-master": "3.1.x-dev"
  9828. }
  9829. },
  9830. "autoload": {
  9831. "classmap": [
  9832. "src/"
  9833. ]
  9834. },
  9835. "notification-url": "https://packagist.org/downloads/",
  9836. "license": [
  9837. "BSD-3-Clause"
  9838. ],
  9839. "authors": [
  9840. {
  9841. "name": "Sebastian Bergmann",
  9842. "email": "sebastian@phpunit.de"
  9843. },
  9844. {
  9845. "name": "Jeff Welch",
  9846. "email": "whatthejeff@gmail.com"
  9847. },
  9848. {
  9849. "name": "Volker Dusch",
  9850. "email": "github@wallbash.com"
  9851. },
  9852. {
  9853. "name": "Adam Harvey",
  9854. "email": "aharvey@php.net"
  9855. },
  9856. {
  9857. "name": "Bernhard Schussek",
  9858. "email": "bschussek@gmail.com"
  9859. }
  9860. ],
  9861. "description": "Provides the functionality to export PHP variables for visualization",
  9862. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  9863. "keywords": [
  9864. "export",
  9865. "exporter"
  9866. ],
  9867. "support": {
  9868. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9869. "source": "https://github.com/sebastianbergmann/exporter/tree/3.1.3"
  9870. },
  9871. "funding": [
  9872. {
  9873. "url": "https://github.com/sebastianbergmann",
  9874. "type": "github"
  9875. }
  9876. ],
  9877. "time": "2020-11-30T07:47:53+00:00"
  9878. },
  9879. {
  9880. "name": "sebastian/global-state",
  9881. "version": "3.0.1",
  9882. "source": {
  9883. "type": "git",
  9884. "url": "https://github.com/sebastianbergmann/global-state.git",
  9885. "reference": "474fb9edb7ab891665d3bfc6317f42a0a150454b"
  9886. },
  9887. "dist": {
  9888. "type": "zip",
  9889. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/474fb9edb7ab891665d3bfc6317f42a0a150454b",
  9890. "reference": "474fb9edb7ab891665d3bfc6317f42a0a150454b",
  9891. "shasum": "",
  9892. "mirrors": [
  9893. {
  9894. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9895. "preferred": true
  9896. }
  9897. ]
  9898. },
  9899. "require": {
  9900. "php": ">=7.2",
  9901. "sebastian/object-reflector": "^1.1.1",
  9902. "sebastian/recursion-context": "^3.0"
  9903. },
  9904. "require-dev": {
  9905. "ext-dom": "*",
  9906. "phpunit/phpunit": "^8.0"
  9907. },
  9908. "suggest": {
  9909. "ext-uopz": "*"
  9910. },
  9911. "type": "library",
  9912. "extra": {
  9913. "branch-alias": {
  9914. "dev-master": "3.0-dev"
  9915. }
  9916. },
  9917. "autoload": {
  9918. "classmap": [
  9919. "src/"
  9920. ]
  9921. },
  9922. "notification-url": "https://packagist.org/downloads/",
  9923. "license": [
  9924. "BSD-3-Clause"
  9925. ],
  9926. "authors": [
  9927. {
  9928. "name": "Sebastian Bergmann",
  9929. "email": "sebastian@phpunit.de"
  9930. }
  9931. ],
  9932. "description": "Snapshotting of global state",
  9933. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  9934. "keywords": [
  9935. "global state"
  9936. ],
  9937. "support": {
  9938. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9939. "source": "https://github.com/sebastianbergmann/global-state/tree/3.0.1"
  9940. },
  9941. "funding": [
  9942. {
  9943. "url": "https://github.com/sebastianbergmann",
  9944. "type": "github"
  9945. }
  9946. ],
  9947. "time": "2020-11-30T07:43:24+00:00"
  9948. },
  9949. {
  9950. "name": "sebastian/object-enumerator",
  9951. "version": "3.0.4",
  9952. "source": {
  9953. "type": "git",
  9954. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9955. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2"
  9956. },
  9957. "dist": {
  9958. "type": "zip",
  9959. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  9960. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  9961. "shasum": "",
  9962. "mirrors": [
  9963. {
  9964. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9965. "preferred": true
  9966. }
  9967. ]
  9968. },
  9969. "require": {
  9970. "php": ">=7.0",
  9971. "sebastian/object-reflector": "^1.1.1",
  9972. "sebastian/recursion-context": "^3.0"
  9973. },
  9974. "require-dev": {
  9975. "phpunit/phpunit": "^6.0"
  9976. },
  9977. "type": "library",
  9978. "extra": {
  9979. "branch-alias": {
  9980. "dev-master": "3.0.x-dev"
  9981. }
  9982. },
  9983. "autoload": {
  9984. "classmap": [
  9985. "src/"
  9986. ]
  9987. },
  9988. "notification-url": "https://packagist.org/downloads/",
  9989. "license": [
  9990. "BSD-3-Clause"
  9991. ],
  9992. "authors": [
  9993. {
  9994. "name": "Sebastian Bergmann",
  9995. "email": "sebastian@phpunit.de"
  9996. }
  9997. ],
  9998. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9999. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10000. "support": {
  10001. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10002. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/3.0.4"
  10003. },
  10004. "funding": [
  10005. {
  10006. "url": "https://github.com/sebastianbergmann",
  10007. "type": "github"
  10008. }
  10009. ],
  10010. "time": "2020-11-30T07:40:27+00:00"
  10011. },
  10012. {
  10013. "name": "sebastian/object-reflector",
  10014. "version": "1.1.2",
  10015. "source": {
  10016. "type": "git",
  10017. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10018. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d"
  10019. },
  10020. "dist": {
  10021. "type": "zip",
  10022. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  10023. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  10024. "shasum": "",
  10025. "mirrors": [
  10026. {
  10027. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10028. "preferred": true
  10029. }
  10030. ]
  10031. },
  10032. "require": {
  10033. "php": ">=7.0"
  10034. },
  10035. "require-dev": {
  10036. "phpunit/phpunit": "^6.0"
  10037. },
  10038. "type": "library",
  10039. "extra": {
  10040. "branch-alias": {
  10041. "dev-master": "1.1-dev"
  10042. }
  10043. },
  10044. "autoload": {
  10045. "classmap": [
  10046. "src/"
  10047. ]
  10048. },
  10049. "notification-url": "https://packagist.org/downloads/",
  10050. "license": [
  10051. "BSD-3-Clause"
  10052. ],
  10053. "authors": [
  10054. {
  10055. "name": "Sebastian Bergmann",
  10056. "email": "sebastian@phpunit.de"
  10057. }
  10058. ],
  10059. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10060. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10061. "support": {
  10062. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10063. "source": "https://github.com/sebastianbergmann/object-reflector/tree/1.1.2"
  10064. },
  10065. "funding": [
  10066. {
  10067. "url": "https://github.com/sebastianbergmann",
  10068. "type": "github"
  10069. }
  10070. ],
  10071. "time": "2020-11-30T07:37:18+00:00"
  10072. },
  10073. {
  10074. "name": "sebastian/recursion-context",
  10075. "version": "3.0.1",
  10076. "source": {
  10077. "type": "git",
  10078. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10079. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb"
  10080. },
  10081. "dist": {
  10082. "type": "zip",
  10083. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/367dcba38d6e1977be014dc4b22f47a484dac7fb",
  10084. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb",
  10085. "shasum": "",
  10086. "mirrors": [
  10087. {
  10088. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10089. "preferred": true
  10090. }
  10091. ]
  10092. },
  10093. "require": {
  10094. "php": ">=7.0"
  10095. },
  10096. "require-dev": {
  10097. "phpunit/phpunit": "^6.0"
  10098. },
  10099. "type": "library",
  10100. "extra": {
  10101. "branch-alias": {
  10102. "dev-master": "3.0.x-dev"
  10103. }
  10104. },
  10105. "autoload": {
  10106. "classmap": [
  10107. "src/"
  10108. ]
  10109. },
  10110. "notification-url": "https://packagist.org/downloads/",
  10111. "license": [
  10112. "BSD-3-Clause"
  10113. ],
  10114. "authors": [
  10115. {
  10116. "name": "Sebastian Bergmann",
  10117. "email": "sebastian@phpunit.de"
  10118. },
  10119. {
  10120. "name": "Jeff Welch",
  10121. "email": "whatthejeff@gmail.com"
  10122. },
  10123. {
  10124. "name": "Adam Harvey",
  10125. "email": "aharvey@php.net"
  10126. }
  10127. ],
  10128. "description": "Provides functionality to recursively process PHP variables",
  10129. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  10130. "support": {
  10131. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10132. "source": "https://github.com/sebastianbergmann/recursion-context/tree/3.0.1"
  10133. },
  10134. "funding": [
  10135. {
  10136. "url": "https://github.com/sebastianbergmann",
  10137. "type": "github"
  10138. }
  10139. ],
  10140. "time": "2020-11-30T07:34:24+00:00"
  10141. },
  10142. {
  10143. "name": "sebastian/resource-operations",
  10144. "version": "2.0.2",
  10145. "source": {
  10146. "type": "git",
  10147. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  10148. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3"
  10149. },
  10150. "dist": {
  10151. "type": "zip",
  10152. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  10153. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  10154. "shasum": "",
  10155. "mirrors": [
  10156. {
  10157. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10158. "preferred": true
  10159. }
  10160. ]
  10161. },
  10162. "require": {
  10163. "php": ">=7.1"
  10164. },
  10165. "type": "library",
  10166. "extra": {
  10167. "branch-alias": {
  10168. "dev-master": "2.0-dev"
  10169. }
  10170. },
  10171. "autoload": {
  10172. "classmap": [
  10173. "src/"
  10174. ]
  10175. },
  10176. "notification-url": "https://packagist.org/downloads/",
  10177. "license": [
  10178. "BSD-3-Clause"
  10179. ],
  10180. "authors": [
  10181. {
  10182. "name": "Sebastian Bergmann",
  10183. "email": "sebastian@phpunit.de"
  10184. }
  10185. ],
  10186. "description": "Provides a list of PHP built-in functions that operate on resources",
  10187. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  10188. "support": {
  10189. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  10190. "source": "https://github.com/sebastianbergmann/resource-operations/tree/2.0.2"
  10191. },
  10192. "funding": [
  10193. {
  10194. "url": "https://github.com/sebastianbergmann",
  10195. "type": "github"
  10196. }
  10197. ],
  10198. "time": "2020-11-30T07:30:19+00:00"
  10199. },
  10200. {
  10201. "name": "sebastian/type",
  10202. "version": "1.1.4",
  10203. "source": {
  10204. "type": "git",
  10205. "url": "https://github.com/sebastianbergmann/type.git",
  10206. "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4"
  10207. },
  10208. "dist": {
  10209. "type": "zip",
  10210. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/0150cfbc4495ed2df3872fb31b26781e4e077eb4",
  10211. "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4",
  10212. "shasum": "",
  10213. "mirrors": [
  10214. {
  10215. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10216. "preferred": true
  10217. }
  10218. ]
  10219. },
  10220. "require": {
  10221. "php": ">=7.2"
  10222. },
  10223. "require-dev": {
  10224. "phpunit/phpunit": "^8.2"
  10225. },
  10226. "type": "library",
  10227. "extra": {
  10228. "branch-alias": {
  10229. "dev-master": "1.1-dev"
  10230. }
  10231. },
  10232. "autoload": {
  10233. "classmap": [
  10234. "src/"
  10235. ]
  10236. },
  10237. "notification-url": "https://packagist.org/downloads/",
  10238. "license": [
  10239. "BSD-3-Clause"
  10240. ],
  10241. "authors": [
  10242. {
  10243. "name": "Sebastian Bergmann",
  10244. "email": "sebastian@phpunit.de",
  10245. "role": "lead"
  10246. }
  10247. ],
  10248. "description": "Collection of value objects that represent the types of the PHP type system",
  10249. "homepage": "https://github.com/sebastianbergmann/type",
  10250. "support": {
  10251. "issues": "https://github.com/sebastianbergmann/type/issues",
  10252. "source": "https://github.com/sebastianbergmann/type/tree/1.1.4"
  10253. },
  10254. "funding": [
  10255. {
  10256. "url": "https://github.com/sebastianbergmann",
  10257. "type": "github"
  10258. }
  10259. ],
  10260. "time": "2020-11-30T07:25:11+00:00"
  10261. },
  10262. {
  10263. "name": "sebastian/version",
  10264. "version": "2.0.1",
  10265. "source": {
  10266. "type": "git",
  10267. "url": "https://github.com/sebastianbergmann/version.git",
  10268. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  10269. },
  10270. "dist": {
  10271. "type": "zip",
  10272. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  10273. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  10274. "shasum": "",
  10275. "mirrors": [
  10276. {
  10277. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10278. "preferred": true
  10279. }
  10280. ]
  10281. },
  10282. "require": {
  10283. "php": ">=5.6"
  10284. },
  10285. "type": "library",
  10286. "extra": {
  10287. "branch-alias": {
  10288. "dev-master": "2.0.x-dev"
  10289. }
  10290. },
  10291. "autoload": {
  10292. "classmap": [
  10293. "src/"
  10294. ]
  10295. },
  10296. "notification-url": "https://packagist.org/downloads/",
  10297. "license": [
  10298. "BSD-3-Clause"
  10299. ],
  10300. "authors": [
  10301. {
  10302. "name": "Sebastian Bergmann",
  10303. "email": "sebastian@phpunit.de",
  10304. "role": "lead"
  10305. }
  10306. ],
  10307. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10308. "homepage": "https://github.com/sebastianbergmann/version",
  10309. "support": {
  10310. "issues": "https://github.com/sebastianbergmann/version/issues",
  10311. "source": "https://github.com/sebastianbergmann/version/tree/master"
  10312. },
  10313. "time": "2016-10-03T07:35:21+00:00"
  10314. },
  10315. {
  10316. "name": "symfony/debug",
  10317. "version": "v4.4.31",
  10318. "source": {
  10319. "type": "git",
  10320. "url": "https://github.com/symfony/debug.git",
  10321. "reference": "43ede438d4cb52cd589ae5dc070e9323866ba8e0"
  10322. },
  10323. "dist": {
  10324. "type": "zip",
  10325. "url": "https://api.github.com/repos/symfony/debug/zipball/43ede438d4cb52cd589ae5dc070e9323866ba8e0",
  10326. "reference": "43ede438d4cb52cd589ae5dc070e9323866ba8e0",
  10327. "shasum": "",
  10328. "mirrors": [
  10329. {
  10330. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10331. "preferred": true
  10332. }
  10333. ]
  10334. },
  10335. "require": {
  10336. "php": ">=7.1.3",
  10337. "psr/log": "^1|^2|^3"
  10338. },
  10339. "conflict": {
  10340. "symfony/http-kernel": "<3.4"
  10341. },
  10342. "require-dev": {
  10343. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  10344. },
  10345. "type": "library",
  10346. "autoload": {
  10347. "psr-4": {
  10348. "Symfony\\Component\\Debug\\": ""
  10349. },
  10350. "exclude-from-classmap": [
  10351. "/Tests/"
  10352. ]
  10353. },
  10354. "notification-url": "https://packagist.org/downloads/",
  10355. "license": [
  10356. "MIT"
  10357. ],
  10358. "authors": [
  10359. {
  10360. "name": "Fabien Potencier",
  10361. "email": "fabien@symfony.com"
  10362. },
  10363. {
  10364. "name": "Symfony Community",
  10365. "homepage": "https://symfony.com/contributors"
  10366. }
  10367. ],
  10368. "description": "Provides tools to ease debugging PHP code",
  10369. "homepage": "https://symfony.com",
  10370. "support": {
  10371. "source": "https://github.com/symfony/debug/tree/v4.4.31"
  10372. },
  10373. "funding": [
  10374. {
  10375. "url": "https://symfony.com/sponsor",
  10376. "type": "custom"
  10377. },
  10378. {
  10379. "url": "https://github.com/fabpot",
  10380. "type": "github"
  10381. },
  10382. {
  10383. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10384. "type": "tidelift"
  10385. }
  10386. ],
  10387. "time": "2021-09-24T13:30:14+00:00"
  10388. },
  10389. {
  10390. "name": "theseer/tokenizer",
  10391. "version": "1.2.1",
  10392. "source": {
  10393. "type": "git",
  10394. "url": "https://github.com/theseer/tokenizer.git",
  10395. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  10396. },
  10397. "dist": {
  10398. "type": "zip",
  10399. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  10400. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  10401. "shasum": "",
  10402. "mirrors": [
  10403. {
  10404. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10405. "preferred": true
  10406. }
  10407. ]
  10408. },
  10409. "require": {
  10410. "ext-dom": "*",
  10411. "ext-tokenizer": "*",
  10412. "ext-xmlwriter": "*",
  10413. "php": "^7.2 || ^8.0"
  10414. },
  10415. "type": "library",
  10416. "autoload": {
  10417. "classmap": [
  10418. "src/"
  10419. ]
  10420. },
  10421. "notification-url": "https://packagist.org/downloads/",
  10422. "license": [
  10423. "BSD-3-Clause"
  10424. ],
  10425. "authors": [
  10426. {
  10427. "name": "Arne Blankerts",
  10428. "email": "arne@blankerts.de",
  10429. "role": "Developer"
  10430. }
  10431. ],
  10432. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10433. "support": {
  10434. "issues": "https://github.com/theseer/tokenizer/issues",
  10435. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  10436. },
  10437. "funding": [
  10438. {
  10439. "url": "https://github.com/theseer",
  10440. "type": "github"
  10441. }
  10442. ],
  10443. "time": "2021-07-28T10:34:58+00:00"
  10444. },
  10445. {
  10446. "name": "webmozart/assert",
  10447. "version": "1.10.0",
  10448. "source": {
  10449. "type": "git",
  10450. "url": "https://github.com/webmozarts/assert.git",
  10451. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
  10452. },
  10453. "dist": {
  10454. "type": "zip",
  10455. "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
  10456. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
  10457. "shasum": "",
  10458. "mirrors": [
  10459. {
  10460. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10461. "preferred": true
  10462. }
  10463. ]
  10464. },
  10465. "require": {
  10466. "php": "^7.2 || ^8.0",
  10467. "symfony/polyfill-ctype": "^1.8"
  10468. },
  10469. "conflict": {
  10470. "phpstan/phpstan": "<0.12.20",
  10471. "vimeo/psalm": "<4.6.1 || 4.6.2"
  10472. },
  10473. "require-dev": {
  10474. "phpunit/phpunit": "^8.5.13"
  10475. },
  10476. "type": "library",
  10477. "extra": {
  10478. "branch-alias": {
  10479. "dev-master": "1.10-dev"
  10480. }
  10481. },
  10482. "autoload": {
  10483. "psr-4": {
  10484. "Webmozart\\Assert\\": "src/"
  10485. }
  10486. },
  10487. "notification-url": "https://packagist.org/downloads/",
  10488. "license": [
  10489. "MIT"
  10490. ],
  10491. "authors": [
  10492. {
  10493. "name": "Bernhard Schussek",
  10494. "email": "bschussek@gmail.com"
  10495. }
  10496. ],
  10497. "description": "Assertions to validate method input/output with nice error messages.",
  10498. "keywords": [
  10499. "assert",
  10500. "check",
  10501. "validate"
  10502. ],
  10503. "support": {
  10504. "issues": "https://github.com/webmozarts/assert/issues",
  10505. "source": "https://github.com/webmozarts/assert/tree/1.10.0"
  10506. },
  10507. "time": "2021-03-09T10:59:23+00:00"
  10508. }
  10509. ],
  10510. "aliases": [],
  10511. "minimum-stability": "dev",
  10512. "stability-flags": [],
  10513. "prefer-stable": true,
  10514. "prefer-lowest": false,
  10515. "platform": {
  10516. "php": "^7.2.14",
  10517. "ext-bcmath": "*",
  10518. "ext-json": "*",
  10519. "ext-mbstring": "*",
  10520. "ext-openssl": "*",
  10521. "ext-pdo": "*",
  10522. "ext-oci8": "*"
  10523. },
  10524. "platform-dev": [],
  10525. "platform-overrides": {
  10526. "ext-pcntl": "7.2",
  10527. "ext-posix": "7.2"
  10528. },
  10529. "plugin-api-version": "2.1.0"
  10530. }