composer.lock 378 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533
  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": "a8a45b0f4001cb3c8e61821f0cc50383",
  8. "packages": [
  9. {
  10. "name": "awobaz/compoships",
  11. "version": "2.1.2",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/topclaudy/compoships.git",
  15. "reference": "df6a9eb558d03c2c8be2ebb07e277568eb3302c0"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/topclaudy/compoships/zipball/df6a9eb558d03c2c8be2ebb07e277568eb3302c0",
  20. "reference": "df6a9eb558d03c2c8be2ebb07e277568eb3302c0",
  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. "illuminate/database": ">=5.6 <9.0"
  31. },
  32. "require-dev": {
  33. "ext-sqlite3": "*"
  34. },
  35. "suggest": {
  36. "awobaz/blade-active": "Blade directives for the Laravel 'Active' package",
  37. "awobaz/eloquent-auto-append": "Automatically append accessors to model serialization",
  38. "awobaz/eloquent-mutators": "Reusable mutators (getters/setters) for Laravel 5's Eloquent",
  39. "awobaz/syntactic": "Syntactic sugar for named and indexed parameters call."
  40. },
  41. "type": "library",
  42. "autoload": {
  43. "psr-4": {
  44. "Awobaz\\Compoships\\": "src"
  45. }
  46. },
  47. "notification-url": "https://packagist.org/downloads/",
  48. "license": [
  49. "MIT"
  50. ],
  51. "authors": [
  52. {
  53. "name": "Claudin J. Daniel",
  54. "email": "cdaniel@awobaz.com"
  55. }
  56. ],
  57. "description": "Laravel relationships with support for composite/multiple keys",
  58. "keywords": [
  59. "laravel",
  60. "laravel composite keys",
  61. "laravel relationships"
  62. ],
  63. "support": {
  64. "issues": "https://github.com/topclaudy/compoships/issues",
  65. "source": "https://github.com/topclaudy/compoships/tree/2.1.2"
  66. },
  67. "funding": [
  68. {
  69. "url": "https://paypal.me/awobaz",
  70. "type": "custom"
  71. }
  72. ],
  73. "time": "2021-09-04T16:00:10+00:00"
  74. },
  75. {
  76. "name": "bacon/bacon-qr-code",
  77. "version": "2.0.4",
  78. "source": {
  79. "type": "git",
  80. "url": "https://github.com/Bacon/BaconQrCode.git",
  81. "reference": "f73543ac4e1def05f1a70bcd1525c8a157a1ad09"
  82. },
  83. "dist": {
  84. "type": "zip",
  85. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/f73543ac4e1def05f1a70bcd1525c8a157a1ad09",
  86. "reference": "f73543ac4e1def05f1a70bcd1525c8a157a1ad09",
  87. "shasum": "",
  88. "mirrors": [
  89. {
  90. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  91. "preferred": true
  92. }
  93. ]
  94. },
  95. "require": {
  96. "dasprid/enum": "^1.0.3",
  97. "ext-iconv": "*",
  98. "php": "^7.1 || ^8.0"
  99. },
  100. "require-dev": {
  101. "phly/keep-a-changelog": "^1.4",
  102. "phpunit/phpunit": "^7 | ^8 | ^9",
  103. "squizlabs/php_codesniffer": "^3.4"
  104. },
  105. "suggest": {
  106. "ext-imagick": "to generate QR code images"
  107. },
  108. "type": "library",
  109. "autoload": {
  110. "psr-4": {
  111. "BaconQrCode\\": "src/"
  112. }
  113. },
  114. "notification-url": "https://packagist.org/downloads/",
  115. "license": [
  116. "BSD-2-Clause"
  117. ],
  118. "authors": [
  119. {
  120. "name": "Ben Scholzen 'DASPRiD'",
  121. "email": "mail@dasprids.de",
  122. "homepage": "https://dasprids.de/",
  123. "role": "Developer"
  124. }
  125. ],
  126. "description": "BaconQrCode is a QR code generator for PHP.",
  127. "homepage": "https://github.com/Bacon/BaconQrCode",
  128. "support": {
  129. "issues": "https://github.com/Bacon/BaconQrCode/issues",
  130. "source": "https://github.com/Bacon/BaconQrCode/tree/2.0.4"
  131. },
  132. "time": "2021-06-18T13:26:35+00:00"
  133. },
  134. {
  135. "name": "brick/math",
  136. "version": "0.9.3",
  137. "source": {
  138. "type": "git",
  139. "url": "https://github.com/brick/math.git",
  140. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae"
  141. },
  142. "dist": {
  143. "type": "zip",
  144. "url": "https://api.github.com/repos/brick/math/zipball/ca57d18f028f84f777b2168cd1911b0dee2343ae",
  145. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae",
  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. "ext-json": "*",
  156. "php": "^7.1 || ^8.0"
  157. },
  158. "require-dev": {
  159. "php-coveralls/php-coveralls": "^2.2",
  160. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.0",
  161. "vimeo/psalm": "4.9.2"
  162. },
  163. "type": "library",
  164. "autoload": {
  165. "psr-4": {
  166. "Brick\\Math\\": "src/"
  167. }
  168. },
  169. "notification-url": "https://packagist.org/downloads/",
  170. "license": [
  171. "MIT"
  172. ],
  173. "description": "Arbitrary-precision arithmetic library",
  174. "keywords": [
  175. "Arbitrary-precision",
  176. "BigInteger",
  177. "BigRational",
  178. "arithmetic",
  179. "bigdecimal",
  180. "bignum",
  181. "brick",
  182. "math"
  183. ],
  184. "support": {
  185. "issues": "https://github.com/brick/math/issues",
  186. "source": "https://github.com/brick/math/tree/0.9.3"
  187. },
  188. "funding": [
  189. {
  190. "url": "https://github.com/BenMorel",
  191. "type": "github"
  192. },
  193. {
  194. "url": "https://tidelift.com/funding/github/packagist/brick/math",
  195. "type": "tidelift"
  196. }
  197. ],
  198. "time": "2021-08-15T20:50:18+00:00"
  199. },
  200. {
  201. "name": "cakephp/chronos",
  202. "version": "2.3.0",
  203. "source": {
  204. "type": "git",
  205. "url": "https://github.com/cakephp/chronos.git",
  206. "reference": "3ecd6e7ae191c676570cd1bed51fd561de4606dd"
  207. },
  208. "dist": {
  209. "type": "zip",
  210. "url": "https://api.github.com/repos/cakephp/chronos/zipball/3ecd6e7ae191c676570cd1bed51fd561de4606dd",
  211. "reference": "3ecd6e7ae191c676570cd1bed51fd561de4606dd",
  212. "shasum": "",
  213. "mirrors": [
  214. {
  215. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  216. "preferred": true
  217. }
  218. ]
  219. },
  220. "require": {
  221. "php": ">=7.2"
  222. },
  223. "require-dev": {
  224. "cakephp/cakephp-codesniffer": "^4.5",
  225. "phpunit/phpunit": "^8.0 || ^9.0"
  226. },
  227. "type": "library",
  228. "autoload": {
  229. "psr-4": {
  230. "Cake\\Chronos\\": "src/"
  231. },
  232. "files": [
  233. "src/carbon_compat.php"
  234. ]
  235. },
  236. "notification-url": "https://packagist.org/downloads/",
  237. "license": [
  238. "MIT"
  239. ],
  240. "authors": [
  241. {
  242. "name": "Brian Nesbitt",
  243. "email": "brian@nesbot.com",
  244. "homepage": "http://nesbot.com"
  245. },
  246. {
  247. "name": "The CakePHP Team",
  248. "homepage": "http://cakephp.org"
  249. }
  250. ],
  251. "description": "A simple API extension for DateTime.",
  252. "homepage": "http://cakephp.org",
  253. "keywords": [
  254. "date",
  255. "datetime",
  256. "time"
  257. ],
  258. "support": {
  259. "irc": "irc://irc.freenode.org/cakephp",
  260. "issues": "https://github.com/cakephp/chronos/issues",
  261. "source": "https://github.com/cakephp/chronos"
  262. },
  263. "time": "2021-10-17T02:44:05+00:00"
  264. },
  265. {
  266. "name": "dasprid/enum",
  267. "version": "1.0.3",
  268. "source": {
  269. "type": "git",
  270. "url": "https://github.com/DASPRiD/Enum.git",
  271. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2"
  272. },
  273. "dist": {
  274. "type": "zip",
  275. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/5abf82f213618696dda8e3bf6f64dd042d8542b2",
  276. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2",
  277. "shasum": "",
  278. "mirrors": [
  279. {
  280. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  281. "preferred": true
  282. }
  283. ]
  284. },
  285. "require-dev": {
  286. "phpunit/phpunit": "^7 | ^8 | ^9",
  287. "squizlabs/php_codesniffer": "^3.4"
  288. },
  289. "type": "library",
  290. "autoload": {
  291. "psr-4": {
  292. "DASPRiD\\Enum\\": "src/"
  293. }
  294. },
  295. "notification-url": "https://packagist.org/downloads/",
  296. "license": [
  297. "BSD-2-Clause"
  298. ],
  299. "authors": [
  300. {
  301. "name": "Ben Scholzen 'DASPRiD'",
  302. "email": "mail@dasprids.de",
  303. "homepage": "https://dasprids.de/",
  304. "role": "Developer"
  305. }
  306. ],
  307. "description": "PHP 7.1 enum implementation",
  308. "keywords": [
  309. "enum",
  310. "map"
  311. ],
  312. "support": {
  313. "issues": "https://github.com/DASPRiD/Enum/issues",
  314. "source": "https://github.com/DASPRiD/Enum/tree/1.0.3"
  315. },
  316. "time": "2020-10-02T16:03:48+00:00"
  317. },
  318. {
  319. "name": "doctrine/cache",
  320. "version": "2.1.1",
  321. "source": {
  322. "type": "git",
  323. "url": "https://github.com/doctrine/cache.git",
  324. "reference": "331b4d5dbaeab3827976273e9356b3b453c300ce"
  325. },
  326. "dist": {
  327. "type": "zip",
  328. "url": "https://api.github.com/repos/doctrine/cache/zipball/331b4d5dbaeab3827976273e9356b3b453c300ce",
  329. "reference": "331b4d5dbaeab3827976273e9356b3b453c300ce",
  330. "shasum": "",
  331. "mirrors": [
  332. {
  333. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  334. "preferred": true
  335. }
  336. ]
  337. },
  338. "require": {
  339. "php": "~7.1 || ^8.0"
  340. },
  341. "conflict": {
  342. "doctrine/common": ">2.2,<2.4"
  343. },
  344. "require-dev": {
  345. "alcaeus/mongo-php-adapter": "^1.1",
  346. "cache/integration-tests": "dev-master",
  347. "doctrine/coding-standard": "^8.0",
  348. "mongodb/mongodb": "^1.1",
  349. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  350. "predis/predis": "~1.0",
  351. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  352. "symfony/cache": "^4.4 || ^5.2 || ^6.0@dev",
  353. "symfony/var-exporter": "^4.4 || ^5.2 || ^6.0@dev"
  354. },
  355. "suggest": {
  356. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  357. },
  358. "type": "library",
  359. "autoload": {
  360. "psr-4": {
  361. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  362. }
  363. },
  364. "notification-url": "https://packagist.org/downloads/",
  365. "license": [
  366. "MIT"
  367. ],
  368. "authors": [
  369. {
  370. "name": "Guilherme Blanco",
  371. "email": "guilhermeblanco@gmail.com"
  372. },
  373. {
  374. "name": "Roman Borschel",
  375. "email": "roman@code-factory.org"
  376. },
  377. {
  378. "name": "Benjamin Eberlei",
  379. "email": "kontakt@beberlei.de"
  380. },
  381. {
  382. "name": "Jonathan Wage",
  383. "email": "jonwage@gmail.com"
  384. },
  385. {
  386. "name": "Johannes Schmitt",
  387. "email": "schmittjoh@gmail.com"
  388. }
  389. ],
  390. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  391. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  392. "keywords": [
  393. "abstraction",
  394. "apcu",
  395. "cache",
  396. "caching",
  397. "couchdb",
  398. "memcached",
  399. "php",
  400. "redis",
  401. "xcache"
  402. ],
  403. "support": {
  404. "issues": "https://github.com/doctrine/cache/issues",
  405. "source": "https://github.com/doctrine/cache/tree/2.1.1"
  406. },
  407. "funding": [
  408. {
  409. "url": "https://www.doctrine-project.org/sponsorship.html",
  410. "type": "custom"
  411. },
  412. {
  413. "url": "https://www.patreon.com/phpdoctrine",
  414. "type": "patreon"
  415. },
  416. {
  417. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  418. "type": "tidelift"
  419. }
  420. ],
  421. "time": "2021-07-17T14:49:29+00:00"
  422. },
  423. {
  424. "name": "doctrine/dbal",
  425. "version": "2.13.5",
  426. "source": {
  427. "type": "git",
  428. "url": "https://github.com/doctrine/dbal.git",
  429. "reference": "d92ddb260547c2a7b650ff140f744eb6f395d8fc"
  430. },
  431. "dist": {
  432. "type": "zip",
  433. "url": "https://api.github.com/repos/doctrine/dbal/zipball/d92ddb260547c2a7b650ff140f744eb6f395d8fc",
  434. "reference": "d92ddb260547c2a7b650ff140f744eb6f395d8fc",
  435. "shasum": "",
  436. "mirrors": [
  437. {
  438. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  439. "preferred": true
  440. }
  441. ]
  442. },
  443. "require": {
  444. "doctrine/cache": "^1.0|^2.0",
  445. "doctrine/deprecations": "^0.5.3",
  446. "doctrine/event-manager": "^1.0",
  447. "ext-pdo": "*",
  448. "php": "^7.1 || ^8"
  449. },
  450. "require-dev": {
  451. "doctrine/coding-standard": "9.0.0",
  452. "jetbrains/phpstorm-stubs": "2021.1",
  453. "phpstan/phpstan": "1.1.1",
  454. "phpunit/phpunit": "^7.5.20|^8.5|9.5.10",
  455. "psalm/plugin-phpunit": "0.16.1",
  456. "squizlabs/php_codesniffer": "3.6.1",
  457. "symfony/cache": "^4.4",
  458. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
  459. "vimeo/psalm": "4.12.0"
  460. },
  461. "suggest": {
  462. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  463. },
  464. "bin": [
  465. "bin/doctrine-dbal"
  466. ],
  467. "type": "library",
  468. "autoload": {
  469. "psr-4": {
  470. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  471. }
  472. },
  473. "notification-url": "https://packagist.org/downloads/",
  474. "license": [
  475. "MIT"
  476. ],
  477. "authors": [
  478. {
  479. "name": "Guilherme Blanco",
  480. "email": "guilhermeblanco@gmail.com"
  481. },
  482. {
  483. "name": "Roman Borschel",
  484. "email": "roman@code-factory.org"
  485. },
  486. {
  487. "name": "Benjamin Eberlei",
  488. "email": "kontakt@beberlei.de"
  489. },
  490. {
  491. "name": "Jonathan Wage",
  492. "email": "jonwage@gmail.com"
  493. }
  494. ],
  495. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  496. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  497. "keywords": [
  498. "abstraction",
  499. "database",
  500. "db2",
  501. "dbal",
  502. "mariadb",
  503. "mssql",
  504. "mysql",
  505. "oci8",
  506. "oracle",
  507. "pdo",
  508. "pgsql",
  509. "postgresql",
  510. "queryobject",
  511. "sasql",
  512. "sql",
  513. "sqlanywhere",
  514. "sqlite",
  515. "sqlserver",
  516. "sqlsrv"
  517. ],
  518. "support": {
  519. "issues": "https://github.com/doctrine/dbal/issues",
  520. "source": "https://github.com/doctrine/dbal/tree/2.13.5"
  521. },
  522. "funding": [
  523. {
  524. "url": "https://www.doctrine-project.org/sponsorship.html",
  525. "type": "custom"
  526. },
  527. {
  528. "url": "https://www.patreon.com/phpdoctrine",
  529. "type": "patreon"
  530. },
  531. {
  532. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  533. "type": "tidelift"
  534. }
  535. ],
  536. "time": "2021-11-11T16:27:36+00:00"
  537. },
  538. {
  539. "name": "doctrine/deprecations",
  540. "version": "v0.5.3",
  541. "source": {
  542. "type": "git",
  543. "url": "https://github.com/doctrine/deprecations.git",
  544. "reference": "9504165960a1f83cc1480e2be1dd0a0478561314"
  545. },
  546. "dist": {
  547. "type": "zip",
  548. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/9504165960a1f83cc1480e2be1dd0a0478561314",
  549. "reference": "9504165960a1f83cc1480e2be1dd0a0478561314",
  550. "shasum": "",
  551. "mirrors": [
  552. {
  553. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  554. "preferred": true
  555. }
  556. ]
  557. },
  558. "require": {
  559. "php": "^7.1|^8.0"
  560. },
  561. "require-dev": {
  562. "doctrine/coding-standard": "^6.0|^7.0|^8.0",
  563. "phpunit/phpunit": "^7.0|^8.0|^9.0",
  564. "psr/log": "^1.0"
  565. },
  566. "suggest": {
  567. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  568. },
  569. "type": "library",
  570. "autoload": {
  571. "psr-4": {
  572. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  573. }
  574. },
  575. "notification-url": "https://packagist.org/downloads/",
  576. "license": [
  577. "MIT"
  578. ],
  579. "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.",
  580. "homepage": "https://www.doctrine-project.org/",
  581. "support": {
  582. "issues": "https://github.com/doctrine/deprecations/issues",
  583. "source": "https://github.com/doctrine/deprecations/tree/v0.5.3"
  584. },
  585. "time": "2021-03-21T12:59:47+00:00"
  586. },
  587. {
  588. "name": "doctrine/event-manager",
  589. "version": "1.1.1",
  590. "source": {
  591. "type": "git",
  592. "url": "https://github.com/doctrine/event-manager.git",
  593. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  594. },
  595. "dist": {
  596. "type": "zip",
  597. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  598. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  599. "shasum": "",
  600. "mirrors": [
  601. {
  602. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  603. "preferred": true
  604. }
  605. ]
  606. },
  607. "require": {
  608. "php": "^7.1 || ^8.0"
  609. },
  610. "conflict": {
  611. "doctrine/common": "<2.9@dev"
  612. },
  613. "require-dev": {
  614. "doctrine/coding-standard": "^6.0",
  615. "phpunit/phpunit": "^7.0"
  616. },
  617. "type": "library",
  618. "extra": {
  619. "branch-alias": {
  620. "dev-master": "1.0.x-dev"
  621. }
  622. },
  623. "autoload": {
  624. "psr-4": {
  625. "Doctrine\\Common\\": "lib/Doctrine/Common"
  626. }
  627. },
  628. "notification-url": "https://packagist.org/downloads/",
  629. "license": [
  630. "MIT"
  631. ],
  632. "authors": [
  633. {
  634. "name": "Guilherme Blanco",
  635. "email": "guilhermeblanco@gmail.com"
  636. },
  637. {
  638. "name": "Roman Borschel",
  639. "email": "roman@code-factory.org"
  640. },
  641. {
  642. "name": "Benjamin Eberlei",
  643. "email": "kontakt@beberlei.de"
  644. },
  645. {
  646. "name": "Jonathan Wage",
  647. "email": "jonwage@gmail.com"
  648. },
  649. {
  650. "name": "Johannes Schmitt",
  651. "email": "schmittjoh@gmail.com"
  652. },
  653. {
  654. "name": "Marco Pivetta",
  655. "email": "ocramius@gmail.com"
  656. }
  657. ],
  658. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  659. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  660. "keywords": [
  661. "event",
  662. "event dispatcher",
  663. "event manager",
  664. "event system",
  665. "events"
  666. ],
  667. "support": {
  668. "issues": "https://github.com/doctrine/event-manager/issues",
  669. "source": "https://github.com/doctrine/event-manager/tree/1.1.x"
  670. },
  671. "funding": [
  672. {
  673. "url": "https://www.doctrine-project.org/sponsorship.html",
  674. "type": "custom"
  675. },
  676. {
  677. "url": "https://www.patreon.com/phpdoctrine",
  678. "type": "patreon"
  679. },
  680. {
  681. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  682. "type": "tidelift"
  683. }
  684. ],
  685. "time": "2020-05-29T18:28:51+00:00"
  686. },
  687. {
  688. "name": "doctrine/inflector",
  689. "version": "2.0.4",
  690. "source": {
  691. "type": "git",
  692. "url": "https://github.com/doctrine/inflector.git",
  693. "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89"
  694. },
  695. "dist": {
  696. "type": "zip",
  697. "url": "https://api.github.com/repos/doctrine/inflector/zipball/8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
  698. "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
  699. "shasum": "",
  700. "mirrors": [
  701. {
  702. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  703. "preferred": true
  704. }
  705. ]
  706. },
  707. "require": {
  708. "php": "^7.2 || ^8.0"
  709. },
  710. "require-dev": {
  711. "doctrine/coding-standard": "^8.2",
  712. "phpstan/phpstan": "^0.12",
  713. "phpstan/phpstan-phpunit": "^0.12",
  714. "phpstan/phpstan-strict-rules": "^0.12",
  715. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  716. "vimeo/psalm": "^4.10"
  717. },
  718. "type": "library",
  719. "autoload": {
  720. "psr-4": {
  721. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  722. }
  723. },
  724. "notification-url": "https://packagist.org/downloads/",
  725. "license": [
  726. "MIT"
  727. ],
  728. "authors": [
  729. {
  730. "name": "Guilherme Blanco",
  731. "email": "guilhermeblanco@gmail.com"
  732. },
  733. {
  734. "name": "Roman Borschel",
  735. "email": "roman@code-factory.org"
  736. },
  737. {
  738. "name": "Benjamin Eberlei",
  739. "email": "kontakt@beberlei.de"
  740. },
  741. {
  742. "name": "Jonathan Wage",
  743. "email": "jonwage@gmail.com"
  744. },
  745. {
  746. "name": "Johannes Schmitt",
  747. "email": "schmittjoh@gmail.com"
  748. }
  749. ],
  750. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  751. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  752. "keywords": [
  753. "inflection",
  754. "inflector",
  755. "lowercase",
  756. "manipulation",
  757. "php",
  758. "plural",
  759. "singular",
  760. "strings",
  761. "uppercase",
  762. "words"
  763. ],
  764. "support": {
  765. "issues": "https://github.com/doctrine/inflector/issues",
  766. "source": "https://github.com/doctrine/inflector/tree/2.0.4"
  767. },
  768. "funding": [
  769. {
  770. "url": "https://www.doctrine-project.org/sponsorship.html",
  771. "type": "custom"
  772. },
  773. {
  774. "url": "https://www.patreon.com/phpdoctrine",
  775. "type": "patreon"
  776. },
  777. {
  778. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  779. "type": "tidelift"
  780. }
  781. ],
  782. "time": "2021-10-22T20:16:43+00:00"
  783. },
  784. {
  785. "name": "doctrine/lexer",
  786. "version": "1.2.1",
  787. "source": {
  788. "type": "git",
  789. "url": "https://github.com/doctrine/lexer.git",
  790. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  791. },
  792. "dist": {
  793. "type": "zip",
  794. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  795. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  796. "shasum": "",
  797. "mirrors": [
  798. {
  799. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  800. "preferred": true
  801. }
  802. ]
  803. },
  804. "require": {
  805. "php": "^7.2 || ^8.0"
  806. },
  807. "require-dev": {
  808. "doctrine/coding-standard": "^6.0",
  809. "phpstan/phpstan": "^0.11.8",
  810. "phpunit/phpunit": "^8.2"
  811. },
  812. "type": "library",
  813. "extra": {
  814. "branch-alias": {
  815. "dev-master": "1.2.x-dev"
  816. }
  817. },
  818. "autoload": {
  819. "psr-4": {
  820. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  821. }
  822. },
  823. "notification-url": "https://packagist.org/downloads/",
  824. "license": [
  825. "MIT"
  826. ],
  827. "authors": [
  828. {
  829. "name": "Guilherme Blanco",
  830. "email": "guilhermeblanco@gmail.com"
  831. },
  832. {
  833. "name": "Roman Borschel",
  834. "email": "roman@code-factory.org"
  835. },
  836. {
  837. "name": "Johannes Schmitt",
  838. "email": "schmittjoh@gmail.com"
  839. }
  840. ],
  841. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  842. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  843. "keywords": [
  844. "annotations",
  845. "docblock",
  846. "lexer",
  847. "parser",
  848. "php"
  849. ],
  850. "support": {
  851. "issues": "https://github.com/doctrine/lexer/issues",
  852. "source": "https://github.com/doctrine/lexer/tree/1.2.1"
  853. },
  854. "funding": [
  855. {
  856. "url": "https://www.doctrine-project.org/sponsorship.html",
  857. "type": "custom"
  858. },
  859. {
  860. "url": "https://www.patreon.com/phpdoctrine",
  861. "type": "patreon"
  862. },
  863. {
  864. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  865. "type": "tidelift"
  866. }
  867. ],
  868. "time": "2020-05-25T17:44:05+00:00"
  869. },
  870. {
  871. "name": "dragonmantank/cron-expression",
  872. "version": "v2.3.1",
  873. "source": {
  874. "type": "git",
  875. "url": "https://github.com/dragonmantank/cron-expression.git",
  876. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2"
  877. },
  878. "dist": {
  879. "type": "zip",
  880. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/65b2d8ee1f10915efb3b55597da3404f096acba2",
  881. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2",
  882. "shasum": "",
  883. "mirrors": [
  884. {
  885. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  886. "preferred": true
  887. }
  888. ]
  889. },
  890. "require": {
  891. "php": "^7.0|^8.0"
  892. },
  893. "require-dev": {
  894. "phpunit/phpunit": "^6.4|^7.0|^8.0|^9.0"
  895. },
  896. "type": "library",
  897. "extra": {
  898. "branch-alias": {
  899. "dev-master": "2.3-dev"
  900. }
  901. },
  902. "autoload": {
  903. "psr-4": {
  904. "Cron\\": "src/Cron/"
  905. }
  906. },
  907. "notification-url": "https://packagist.org/downloads/",
  908. "license": [
  909. "MIT"
  910. ],
  911. "authors": [
  912. {
  913. "name": "Michael Dowling",
  914. "email": "mtdowling@gmail.com",
  915. "homepage": "https://github.com/mtdowling"
  916. },
  917. {
  918. "name": "Chris Tankersley",
  919. "email": "chris@ctankersley.com",
  920. "homepage": "https://github.com/dragonmantank"
  921. }
  922. ],
  923. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  924. "keywords": [
  925. "cron",
  926. "schedule"
  927. ],
  928. "support": {
  929. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  930. "source": "https://github.com/dragonmantank/cron-expression/tree/v2.3.1"
  931. },
  932. "funding": [
  933. {
  934. "url": "https://github.com/dragonmantank",
  935. "type": "github"
  936. }
  937. ],
  938. "time": "2020-10-13T00:52:37+00:00"
  939. },
  940. {
  941. "name": "egulias/email-validator",
  942. "version": "2.1.25",
  943. "source": {
  944. "type": "git",
  945. "url": "https://github.com/egulias/EmailValidator.git",
  946. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  947. },
  948. "dist": {
  949. "type": "zip",
  950. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  951. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  952. "shasum": "",
  953. "mirrors": [
  954. {
  955. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  956. "preferred": true
  957. }
  958. ]
  959. },
  960. "require": {
  961. "doctrine/lexer": "^1.0.1",
  962. "php": ">=5.5",
  963. "symfony/polyfill-intl-idn": "^1.10"
  964. },
  965. "require-dev": {
  966. "dominicsayers/isemail": "^3.0.7",
  967. "phpunit/phpunit": "^4.8.36|^7.5.15",
  968. "satooshi/php-coveralls": "^1.0.1"
  969. },
  970. "suggest": {
  971. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  972. },
  973. "type": "library",
  974. "extra": {
  975. "branch-alias": {
  976. "dev-master": "2.1.x-dev"
  977. }
  978. },
  979. "autoload": {
  980. "psr-4": {
  981. "Egulias\\EmailValidator\\": "src"
  982. }
  983. },
  984. "notification-url": "https://packagist.org/downloads/",
  985. "license": [
  986. "MIT"
  987. ],
  988. "authors": [
  989. {
  990. "name": "Eduardo Gulias Davis"
  991. }
  992. ],
  993. "description": "A library for validating emails against several RFCs",
  994. "homepage": "https://github.com/egulias/EmailValidator",
  995. "keywords": [
  996. "email",
  997. "emailvalidation",
  998. "emailvalidator",
  999. "validation",
  1000. "validator"
  1001. ],
  1002. "support": {
  1003. "issues": "https://github.com/egulias/EmailValidator/issues",
  1004. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  1005. },
  1006. "funding": [
  1007. {
  1008. "url": "https://github.com/egulias",
  1009. "type": "github"
  1010. }
  1011. ],
  1012. "time": "2020-12-29T14:50:06+00:00"
  1013. },
  1014. {
  1015. "name": "endroid/qr-code",
  1016. "version": "3.9.7",
  1017. "source": {
  1018. "type": "git",
  1019. "url": "https://github.com/endroid/qr-code.git",
  1020. "reference": "94563d7b3105288e6ac53a67ae720e3669fac1f6"
  1021. },
  1022. "dist": {
  1023. "type": "zip",
  1024. "url": "https://api.github.com/repos/endroid/qr-code/zipball/94563d7b3105288e6ac53a67ae720e3669fac1f6",
  1025. "reference": "94563d7b3105288e6ac53a67ae720e3669fac1f6",
  1026. "shasum": "",
  1027. "mirrors": [
  1028. {
  1029. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1030. "preferred": true
  1031. }
  1032. ]
  1033. },
  1034. "require": {
  1035. "bacon/bacon-qr-code": "^2.0",
  1036. "khanamiryan/qrcode-detector-decoder": "^1.0.5",
  1037. "myclabs/php-enum": "^1.5",
  1038. "php": "^7.3||^8.0",
  1039. "symfony/options-resolver": "^3.4||^4.4||^5.0",
  1040. "symfony/property-access": "^3.4||^4.4||^5.0"
  1041. },
  1042. "require-dev": {
  1043. "endroid/quality": "^1.5.2",
  1044. "setasign/fpdf": "^1.8"
  1045. },
  1046. "suggest": {
  1047. "ext-gd": "Required for generating PNG images",
  1048. "roave/security-advisories": "Avoids installation of package versions with vulnerabilities",
  1049. "setasign/fpdf": "Required to use the FPDF writer.",
  1050. "symfony/security-checker": "Checks your composer.lock for vulnerabilities"
  1051. },
  1052. "type": "library",
  1053. "extra": {
  1054. "branch-alias": {
  1055. "dev-master": "3.x-dev"
  1056. }
  1057. },
  1058. "autoload": {
  1059. "psr-4": {
  1060. "Endroid\\QrCode\\": "src/"
  1061. }
  1062. },
  1063. "notification-url": "https://packagist.org/downloads/",
  1064. "license": [
  1065. "MIT"
  1066. ],
  1067. "authors": [
  1068. {
  1069. "name": "Jeroen van den Enden",
  1070. "email": "info@endroid.nl"
  1071. }
  1072. ],
  1073. "description": "Endroid QR Code",
  1074. "homepage": "https://github.com/endroid/qr-code",
  1075. "keywords": [
  1076. "bundle",
  1077. "code",
  1078. "endroid",
  1079. "php",
  1080. "qr",
  1081. "qrcode"
  1082. ],
  1083. "support": {
  1084. "issues": "https://github.com/endroid/qr-code/issues",
  1085. "source": "https://github.com/endroid/qr-code/tree/3.9.7"
  1086. },
  1087. "funding": [
  1088. {
  1089. "url": "https://github.com/endroid",
  1090. "type": "github"
  1091. }
  1092. ],
  1093. "time": "2021-04-20T19:10:54+00:00"
  1094. },
  1095. {
  1096. "name": "ezyang/htmlpurifier",
  1097. "version": "v4.13.0",
  1098. "source": {
  1099. "type": "git",
  1100. "url": "https://github.com/ezyang/htmlpurifier.git",
  1101. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75"
  1102. },
  1103. "dist": {
  1104. "type": "zip",
  1105. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  1106. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  1107. "shasum": "",
  1108. "mirrors": [
  1109. {
  1110. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1111. "preferred": true
  1112. }
  1113. ]
  1114. },
  1115. "require": {
  1116. "php": ">=5.2"
  1117. },
  1118. "require-dev": {
  1119. "simpletest/simpletest": "dev-master#72de02a7b80c6bb8864ef9bf66d41d2f58f826bd"
  1120. },
  1121. "type": "library",
  1122. "autoload": {
  1123. "psr-0": {
  1124. "HTMLPurifier": "library/"
  1125. },
  1126. "files": [
  1127. "library/HTMLPurifier.composer.php"
  1128. ],
  1129. "exclude-from-classmap": [
  1130. "/library/HTMLPurifier/Language/"
  1131. ]
  1132. },
  1133. "notification-url": "https://packagist.org/downloads/",
  1134. "license": [
  1135. "LGPL-2.1-or-later"
  1136. ],
  1137. "authors": [
  1138. {
  1139. "name": "Edward Z. Yang",
  1140. "email": "admin@htmlpurifier.org",
  1141. "homepage": "http://ezyang.com"
  1142. }
  1143. ],
  1144. "description": "Standards compliant HTML filter written in PHP",
  1145. "homepage": "http://htmlpurifier.org/",
  1146. "keywords": [
  1147. "html"
  1148. ],
  1149. "support": {
  1150. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  1151. "source": "https://github.com/ezyang/htmlpurifier/tree/master"
  1152. },
  1153. "time": "2020-06-29T00:56:53+00:00"
  1154. },
  1155. {
  1156. "name": "facade/flare-client-php",
  1157. "version": "1.9.1",
  1158. "source": {
  1159. "type": "git",
  1160. "url": "https://github.com/facade/flare-client-php.git",
  1161. "reference": "b2adf1512755637d0cef4f7d1b54301325ac78ed"
  1162. },
  1163. "dist": {
  1164. "type": "zip",
  1165. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/b2adf1512755637d0cef4f7d1b54301325ac78ed",
  1166. "reference": "b2adf1512755637d0cef4f7d1b54301325ac78ed",
  1167. "shasum": "",
  1168. "mirrors": [
  1169. {
  1170. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1171. "preferred": true
  1172. }
  1173. ]
  1174. },
  1175. "require": {
  1176. "facade/ignition-contracts": "~1.0",
  1177. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  1178. "php": "^7.1|^8.0",
  1179. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  1180. "symfony/mime": "^3.4|^4.0|^5.1",
  1181. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  1182. },
  1183. "require-dev": {
  1184. "friendsofphp/php-cs-fixer": "^2.14",
  1185. "phpunit/phpunit": "^7.5.16",
  1186. "spatie/phpunit-snapshot-assertions": "^2.0"
  1187. },
  1188. "type": "library",
  1189. "extra": {
  1190. "branch-alias": {
  1191. "dev-master": "1.0-dev"
  1192. }
  1193. },
  1194. "autoload": {
  1195. "psr-4": {
  1196. "Facade\\FlareClient\\": "src"
  1197. },
  1198. "files": [
  1199. "src/helpers.php"
  1200. ]
  1201. },
  1202. "notification-url": "https://packagist.org/downloads/",
  1203. "license": [
  1204. "MIT"
  1205. ],
  1206. "description": "Send PHP errors to Flare",
  1207. "homepage": "https://github.com/facade/flare-client-php",
  1208. "keywords": [
  1209. "exception",
  1210. "facade",
  1211. "flare",
  1212. "reporting"
  1213. ],
  1214. "support": {
  1215. "issues": "https://github.com/facade/flare-client-php/issues",
  1216. "source": "https://github.com/facade/flare-client-php/tree/1.9.1"
  1217. },
  1218. "funding": [
  1219. {
  1220. "url": "https://github.com/spatie",
  1221. "type": "github"
  1222. }
  1223. ],
  1224. "time": "2021-09-13T12:16:46+00:00"
  1225. },
  1226. {
  1227. "name": "facade/ignition",
  1228. "version": "2.16.0",
  1229. "source": {
  1230. "type": "git",
  1231. "url": "https://github.com/facade/ignition.git",
  1232. "reference": "23400e6cc565c9dcae2c53704b4de1c4870c0697"
  1233. },
  1234. "dist": {
  1235. "type": "zip",
  1236. "url": "https://api.github.com/repos/facade/ignition/zipball/23400e6cc565c9dcae2c53704b4de1c4870c0697",
  1237. "reference": "23400e6cc565c9dcae2c53704b4de1c4870c0697",
  1238. "shasum": "",
  1239. "mirrors": [
  1240. {
  1241. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1242. "preferred": true
  1243. }
  1244. ]
  1245. },
  1246. "require": {
  1247. "ext-curl": "*",
  1248. "ext-json": "*",
  1249. "ext-mbstring": "*",
  1250. "facade/flare-client-php": "^1.9.1",
  1251. "facade/ignition-contracts": "^1.0.2",
  1252. "illuminate/support": "^7.0|^8.0",
  1253. "monolog/monolog": "^2.0",
  1254. "php": "^7.2.5|^8.0",
  1255. "symfony/console": "^5.0",
  1256. "symfony/var-dumper": "^5.0"
  1257. },
  1258. "require-dev": {
  1259. "friendsofphp/php-cs-fixer": "^2.14",
  1260. "mockery/mockery": "^1.3",
  1261. "orchestra/testbench": "^5.0|^6.0",
  1262. "psalm/plugin-laravel": "^1.2"
  1263. },
  1264. "suggest": {
  1265. "laravel/telescope": "^3.1"
  1266. },
  1267. "type": "library",
  1268. "extra": {
  1269. "branch-alias": {
  1270. "dev-master": "2.x-dev"
  1271. },
  1272. "laravel": {
  1273. "providers": [
  1274. "Facade\\Ignition\\IgnitionServiceProvider"
  1275. ],
  1276. "aliases": {
  1277. "Flare": "Facade\\Ignition\\Facades\\Flare"
  1278. }
  1279. }
  1280. },
  1281. "autoload": {
  1282. "psr-4": {
  1283. "Facade\\Ignition\\": "src"
  1284. },
  1285. "files": [
  1286. "src/helpers.php"
  1287. ]
  1288. },
  1289. "notification-url": "https://packagist.org/downloads/",
  1290. "license": [
  1291. "MIT"
  1292. ],
  1293. "description": "A beautiful error page for Laravel applications.",
  1294. "homepage": "https://github.com/facade/ignition",
  1295. "keywords": [
  1296. "error",
  1297. "flare",
  1298. "laravel",
  1299. "page"
  1300. ],
  1301. "support": {
  1302. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  1303. "forum": "https://twitter.com/flareappio",
  1304. "issues": "https://github.com/facade/ignition/issues",
  1305. "source": "https://github.com/facade/ignition"
  1306. },
  1307. "time": "2021-10-28T11:47:23+00:00"
  1308. },
  1309. {
  1310. "name": "facade/ignition-contracts",
  1311. "version": "1.0.2",
  1312. "source": {
  1313. "type": "git",
  1314. "url": "https://github.com/facade/ignition-contracts.git",
  1315. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  1316. },
  1317. "dist": {
  1318. "type": "zip",
  1319. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  1320. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  1321. "shasum": "",
  1322. "mirrors": [
  1323. {
  1324. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1325. "preferred": true
  1326. }
  1327. ]
  1328. },
  1329. "require": {
  1330. "php": "^7.3|^8.0"
  1331. },
  1332. "require-dev": {
  1333. "friendsofphp/php-cs-fixer": "^v2.15.8",
  1334. "phpunit/phpunit": "^9.3.11",
  1335. "vimeo/psalm": "^3.17.1"
  1336. },
  1337. "type": "library",
  1338. "autoload": {
  1339. "psr-4": {
  1340. "Facade\\IgnitionContracts\\": "src"
  1341. }
  1342. },
  1343. "notification-url": "https://packagist.org/downloads/",
  1344. "license": [
  1345. "MIT"
  1346. ],
  1347. "authors": [
  1348. {
  1349. "name": "Freek Van der Herten",
  1350. "email": "freek@spatie.be",
  1351. "homepage": "https://flareapp.io",
  1352. "role": "Developer"
  1353. }
  1354. ],
  1355. "description": "Solution contracts for Ignition",
  1356. "homepage": "https://github.com/facade/ignition-contracts",
  1357. "keywords": [
  1358. "contracts",
  1359. "flare",
  1360. "ignition"
  1361. ],
  1362. "support": {
  1363. "issues": "https://github.com/facade/ignition-contracts/issues",
  1364. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  1365. },
  1366. "time": "2020-10-16T08:27:54+00:00"
  1367. },
  1368. {
  1369. "name": "fideloper/proxy",
  1370. "version": "4.4.1",
  1371. "source": {
  1372. "type": "git",
  1373. "url": "https://github.com/fideloper/TrustedProxy.git",
  1374. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0"
  1375. },
  1376. "dist": {
  1377. "type": "zip",
  1378. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  1379. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  1380. "shasum": "",
  1381. "mirrors": [
  1382. {
  1383. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1384. "preferred": true
  1385. }
  1386. ]
  1387. },
  1388. "require": {
  1389. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1390. "php": ">=5.4.0"
  1391. },
  1392. "require-dev": {
  1393. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1394. "mockery/mockery": "^1.0",
  1395. "phpunit/phpunit": "^6.0"
  1396. },
  1397. "type": "library",
  1398. "extra": {
  1399. "laravel": {
  1400. "providers": [
  1401. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  1402. ]
  1403. }
  1404. },
  1405. "autoload": {
  1406. "psr-4": {
  1407. "Fideloper\\Proxy\\": "src/"
  1408. }
  1409. },
  1410. "notification-url": "https://packagist.org/downloads/",
  1411. "license": [
  1412. "MIT"
  1413. ],
  1414. "authors": [
  1415. {
  1416. "name": "Chris Fidao",
  1417. "email": "fideloper@gmail.com"
  1418. }
  1419. ],
  1420. "description": "Set trusted proxies for Laravel",
  1421. "keywords": [
  1422. "load balancing",
  1423. "proxy",
  1424. "trusted proxy"
  1425. ],
  1426. "support": {
  1427. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  1428. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.1"
  1429. },
  1430. "time": "2020-10-22T13:48:01+00:00"
  1431. },
  1432. {
  1433. "name": "firebase/php-jwt",
  1434. "version": "v5.5.1",
  1435. "source": {
  1436. "type": "git",
  1437. "url": "https://github.com/firebase/php-jwt.git",
  1438. "reference": "83b609028194aa042ea33b5af2d41a7427de80e6"
  1439. },
  1440. "dist": {
  1441. "type": "zip",
  1442. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/83b609028194aa042ea33b5af2d41a7427de80e6",
  1443. "reference": "83b609028194aa042ea33b5af2d41a7427de80e6",
  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. "php": ">=5.3.0"
  1454. },
  1455. "require-dev": {
  1456. "phpunit/phpunit": ">=4.8 <=9"
  1457. },
  1458. "suggest": {
  1459. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  1460. },
  1461. "type": "library",
  1462. "autoload": {
  1463. "psr-4": {
  1464. "Firebase\\JWT\\": "src"
  1465. }
  1466. },
  1467. "notification-url": "https://packagist.org/downloads/",
  1468. "license": [
  1469. "BSD-3-Clause"
  1470. ],
  1471. "authors": [
  1472. {
  1473. "name": "Neuman Vong",
  1474. "email": "neuman+pear@twilio.com",
  1475. "role": "Developer"
  1476. },
  1477. {
  1478. "name": "Anant Narayanan",
  1479. "email": "anant@php.net",
  1480. "role": "Developer"
  1481. }
  1482. ],
  1483. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  1484. "homepage": "https://github.com/firebase/php-jwt",
  1485. "keywords": [
  1486. "jwt",
  1487. "php"
  1488. ],
  1489. "support": {
  1490. "issues": "https://github.com/firebase/php-jwt/issues",
  1491. "source": "https://github.com/firebase/php-jwt/tree/v5.5.1"
  1492. },
  1493. "time": "2021-11-08T20:18:51+00:00"
  1494. },
  1495. {
  1496. "name": "guzzlehttp/guzzle",
  1497. "version": "6.5.5",
  1498. "source": {
  1499. "type": "git",
  1500. "url": "https://github.com/guzzle/guzzle.git",
  1501. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
  1502. },
  1503. "dist": {
  1504. "type": "zip",
  1505. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1506. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1507. "shasum": "",
  1508. "mirrors": [
  1509. {
  1510. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1511. "preferred": true
  1512. }
  1513. ]
  1514. },
  1515. "require": {
  1516. "ext-json": "*",
  1517. "guzzlehttp/promises": "^1.0",
  1518. "guzzlehttp/psr7": "^1.6.1",
  1519. "php": ">=5.5",
  1520. "symfony/polyfill-intl-idn": "^1.17.0"
  1521. },
  1522. "require-dev": {
  1523. "ext-curl": "*",
  1524. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  1525. "psr/log": "^1.1"
  1526. },
  1527. "suggest": {
  1528. "psr/log": "Required for using the Log middleware"
  1529. },
  1530. "type": "library",
  1531. "extra": {
  1532. "branch-alias": {
  1533. "dev-master": "6.5-dev"
  1534. }
  1535. },
  1536. "autoload": {
  1537. "psr-4": {
  1538. "GuzzleHttp\\": "src/"
  1539. },
  1540. "files": [
  1541. "src/functions_include.php"
  1542. ]
  1543. },
  1544. "notification-url": "https://packagist.org/downloads/",
  1545. "license": [
  1546. "MIT"
  1547. ],
  1548. "authors": [
  1549. {
  1550. "name": "Michael Dowling",
  1551. "email": "mtdowling@gmail.com",
  1552. "homepage": "https://github.com/mtdowling"
  1553. }
  1554. ],
  1555. "description": "Guzzle is a PHP HTTP client library",
  1556. "homepage": "http://guzzlephp.org/",
  1557. "keywords": [
  1558. "client",
  1559. "curl",
  1560. "framework",
  1561. "http",
  1562. "http client",
  1563. "rest",
  1564. "web service"
  1565. ],
  1566. "support": {
  1567. "issues": "https://github.com/guzzle/guzzle/issues",
  1568. "source": "https://github.com/guzzle/guzzle/tree/6.5"
  1569. },
  1570. "time": "2020-06-16T21:01:06+00:00"
  1571. },
  1572. {
  1573. "name": "guzzlehttp/promises",
  1574. "version": "1.5.1",
  1575. "source": {
  1576. "type": "git",
  1577. "url": "https://github.com/guzzle/promises.git",
  1578. "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da"
  1579. },
  1580. "dist": {
  1581. "type": "zip",
  1582. "url": "https://api.github.com/repos/guzzle/promises/zipball/fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
  1583. "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
  1584. "shasum": "",
  1585. "mirrors": [
  1586. {
  1587. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1588. "preferred": true
  1589. }
  1590. ]
  1591. },
  1592. "require": {
  1593. "php": ">=5.5"
  1594. },
  1595. "require-dev": {
  1596. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  1597. },
  1598. "type": "library",
  1599. "extra": {
  1600. "branch-alias": {
  1601. "dev-master": "1.5-dev"
  1602. }
  1603. },
  1604. "autoload": {
  1605. "psr-4": {
  1606. "GuzzleHttp\\Promise\\": "src/"
  1607. },
  1608. "files": [
  1609. "src/functions_include.php"
  1610. ]
  1611. },
  1612. "notification-url": "https://packagist.org/downloads/",
  1613. "license": [
  1614. "MIT"
  1615. ],
  1616. "authors": [
  1617. {
  1618. "name": "Graham Campbell",
  1619. "email": "hello@gjcampbell.co.uk",
  1620. "homepage": "https://github.com/GrahamCampbell"
  1621. },
  1622. {
  1623. "name": "Michael Dowling",
  1624. "email": "mtdowling@gmail.com",
  1625. "homepage": "https://github.com/mtdowling"
  1626. },
  1627. {
  1628. "name": "Tobias Nyholm",
  1629. "email": "tobias.nyholm@gmail.com",
  1630. "homepage": "https://github.com/Nyholm"
  1631. },
  1632. {
  1633. "name": "Tobias Schultze",
  1634. "email": "webmaster@tubo-world.de",
  1635. "homepage": "https://github.com/Tobion"
  1636. }
  1637. ],
  1638. "description": "Guzzle promises library",
  1639. "keywords": [
  1640. "promise"
  1641. ],
  1642. "support": {
  1643. "issues": "https://github.com/guzzle/promises/issues",
  1644. "source": "https://github.com/guzzle/promises/tree/1.5.1"
  1645. },
  1646. "funding": [
  1647. {
  1648. "url": "https://github.com/GrahamCampbell",
  1649. "type": "github"
  1650. },
  1651. {
  1652. "url": "https://github.com/Nyholm",
  1653. "type": "github"
  1654. },
  1655. {
  1656. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1657. "type": "tidelift"
  1658. }
  1659. ],
  1660. "time": "2021-10-22T20:56:57+00:00"
  1661. },
  1662. {
  1663. "name": "guzzlehttp/psr7",
  1664. "version": "1.8.3",
  1665. "source": {
  1666. "type": "git",
  1667. "url": "https://github.com/guzzle/psr7.git",
  1668. "reference": "1afdd860a2566ed3c2b0b4a3de6e23434a79ec85"
  1669. },
  1670. "dist": {
  1671. "type": "zip",
  1672. "url": "https://api.github.com/repos/guzzle/psr7/zipball/1afdd860a2566ed3c2b0b4a3de6e23434a79ec85",
  1673. "reference": "1afdd860a2566ed3c2b0b4a3de6e23434a79ec85",
  1674. "shasum": "",
  1675. "mirrors": [
  1676. {
  1677. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1678. "preferred": true
  1679. }
  1680. ]
  1681. },
  1682. "require": {
  1683. "php": ">=5.4.0",
  1684. "psr/http-message": "~1.0",
  1685. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  1686. },
  1687. "provide": {
  1688. "psr/http-message-implementation": "1.0"
  1689. },
  1690. "require-dev": {
  1691. "ext-zlib": "*",
  1692. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  1693. },
  1694. "suggest": {
  1695. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1696. },
  1697. "type": "library",
  1698. "extra": {
  1699. "branch-alias": {
  1700. "dev-master": "1.7-dev"
  1701. }
  1702. },
  1703. "autoload": {
  1704. "psr-4": {
  1705. "GuzzleHttp\\Psr7\\": "src/"
  1706. },
  1707. "files": [
  1708. "src/functions_include.php"
  1709. ]
  1710. },
  1711. "notification-url": "https://packagist.org/downloads/",
  1712. "license": [
  1713. "MIT"
  1714. ],
  1715. "authors": [
  1716. {
  1717. "name": "Graham Campbell",
  1718. "email": "hello@gjcampbell.co.uk",
  1719. "homepage": "https://github.com/GrahamCampbell"
  1720. },
  1721. {
  1722. "name": "Michael Dowling",
  1723. "email": "mtdowling@gmail.com",
  1724. "homepage": "https://github.com/mtdowling"
  1725. },
  1726. {
  1727. "name": "George Mponos",
  1728. "email": "gmponos@gmail.com",
  1729. "homepage": "https://github.com/gmponos"
  1730. },
  1731. {
  1732. "name": "Tobias Nyholm",
  1733. "email": "tobias.nyholm@gmail.com",
  1734. "homepage": "https://github.com/Nyholm"
  1735. },
  1736. {
  1737. "name": "Márk Sági-Kazár",
  1738. "email": "mark.sagikazar@gmail.com",
  1739. "homepage": "https://github.com/sagikazarmark"
  1740. },
  1741. {
  1742. "name": "Tobias Schultze",
  1743. "email": "webmaster@tubo-world.de",
  1744. "homepage": "https://github.com/Tobion"
  1745. }
  1746. ],
  1747. "description": "PSR-7 message implementation that also provides common utility methods",
  1748. "keywords": [
  1749. "http",
  1750. "message",
  1751. "psr-7",
  1752. "request",
  1753. "response",
  1754. "stream",
  1755. "uri",
  1756. "url"
  1757. ],
  1758. "support": {
  1759. "issues": "https://github.com/guzzle/psr7/issues",
  1760. "source": "https://github.com/guzzle/psr7/tree/1.8.3"
  1761. },
  1762. "funding": [
  1763. {
  1764. "url": "https://github.com/GrahamCampbell",
  1765. "type": "github"
  1766. },
  1767. {
  1768. "url": "https://github.com/Nyholm",
  1769. "type": "github"
  1770. },
  1771. {
  1772. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1773. "type": "tidelift"
  1774. }
  1775. ],
  1776. "time": "2021-10-05T13:56:00+00:00"
  1777. },
  1778. {
  1779. "name": "intervention/image",
  1780. "version": "2.7.0",
  1781. "source": {
  1782. "type": "git",
  1783. "url": "https://github.com/Intervention/image.git",
  1784. "reference": "9a8cc99d30415ec0b3f7649e1647d03a55698545"
  1785. },
  1786. "dist": {
  1787. "type": "zip",
  1788. "url": "https://api.github.com/repos/Intervention/image/zipball/9a8cc99d30415ec0b3f7649e1647d03a55698545",
  1789. "reference": "9a8cc99d30415ec0b3f7649e1647d03a55698545",
  1790. "shasum": "",
  1791. "mirrors": [
  1792. {
  1793. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1794. "preferred": true
  1795. }
  1796. ]
  1797. },
  1798. "require": {
  1799. "ext-fileinfo": "*",
  1800. "guzzlehttp/psr7": "~1.1 || ^2.0",
  1801. "php": ">=5.4.0"
  1802. },
  1803. "require-dev": {
  1804. "mockery/mockery": "~0.9.2",
  1805. "phpunit/phpunit": "^4.8 || ^5.7 || ^7.5.15"
  1806. },
  1807. "suggest": {
  1808. "ext-gd": "to use GD library based image processing.",
  1809. "ext-imagick": "to use Imagick based image processing.",
  1810. "intervention/imagecache": "Caching extension for the Intervention Image library"
  1811. },
  1812. "type": "library",
  1813. "extra": {
  1814. "branch-alias": {
  1815. "dev-master": "2.4-dev"
  1816. },
  1817. "laravel": {
  1818. "providers": [
  1819. "Intervention\\Image\\ImageServiceProvider"
  1820. ],
  1821. "aliases": {
  1822. "Image": "Intervention\\Image\\Facades\\Image"
  1823. }
  1824. }
  1825. },
  1826. "autoload": {
  1827. "psr-4": {
  1828. "Intervention\\Image\\": "src/Intervention/Image"
  1829. }
  1830. },
  1831. "notification-url": "https://packagist.org/downloads/",
  1832. "license": [
  1833. "MIT"
  1834. ],
  1835. "authors": [
  1836. {
  1837. "name": "Oliver Vogel",
  1838. "email": "oliver@olivervogel.com",
  1839. "homepage": "http://olivervogel.com/"
  1840. }
  1841. ],
  1842. "description": "Image handling and manipulation library with support for Laravel integration",
  1843. "homepage": "http://image.intervention.io/",
  1844. "keywords": [
  1845. "gd",
  1846. "image",
  1847. "imagick",
  1848. "laravel",
  1849. "thumbnail",
  1850. "watermark"
  1851. ],
  1852. "support": {
  1853. "issues": "https://github.com/Intervention/image/issues",
  1854. "source": "https://github.com/Intervention/image/tree/2.7.0"
  1855. },
  1856. "funding": [
  1857. {
  1858. "url": "https://www.paypal.me/interventionphp",
  1859. "type": "custom"
  1860. },
  1861. {
  1862. "url": "https://github.com/Intervention",
  1863. "type": "github"
  1864. }
  1865. ],
  1866. "time": "2021-10-03T14:17:12+00:00"
  1867. },
  1868. {
  1869. "name": "khanamiryan/qrcode-detector-decoder",
  1870. "version": "1.0.5.2",
  1871. "source": {
  1872. "type": "git",
  1873. "url": "https://github.com/khanamiryan/php-qrcode-detector-decoder.git",
  1874. "reference": "04fdd58d86a387065f707dc6d3cc304c719910c1"
  1875. },
  1876. "dist": {
  1877. "type": "zip",
  1878. "url": "https://api.github.com/repos/khanamiryan/php-qrcode-detector-decoder/zipball/04fdd58d86a387065f707dc6d3cc304c719910c1",
  1879. "reference": "04fdd58d86a387065f707dc6d3cc304c719910c1",
  1880. "shasum": "",
  1881. "mirrors": [
  1882. {
  1883. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1884. "preferred": true
  1885. }
  1886. ]
  1887. },
  1888. "require": {
  1889. "php": ">=5.6"
  1890. },
  1891. "require-dev": {
  1892. "phpunit/phpunit": "^5.7 | ^7.5 | ^8.0 | ^9.0"
  1893. },
  1894. "type": "library",
  1895. "autoload": {
  1896. "psr-4": {
  1897. "Zxing\\": "lib/"
  1898. },
  1899. "files": [
  1900. "lib/Common/customFunctions.php"
  1901. ]
  1902. },
  1903. "notification-url": "https://packagist.org/downloads/",
  1904. "license": [
  1905. "MIT",
  1906. "Apache-2.0"
  1907. ],
  1908. "authors": [
  1909. {
  1910. "name": "Ashot Khanamiryan",
  1911. "email": "a.khanamiryan@gmail.com",
  1912. "homepage": "https://github.com/khanamiryan",
  1913. "role": "Developer"
  1914. }
  1915. ],
  1916. "description": "QR code decoder / reader",
  1917. "homepage": "https://github.com/khanamiryan/php-qrcode-detector-decoder/",
  1918. "keywords": [
  1919. "barcode",
  1920. "qr",
  1921. "zxing"
  1922. ],
  1923. "support": {
  1924. "issues": "https://github.com/khanamiryan/php-qrcode-detector-decoder/issues",
  1925. "source": "https://github.com/khanamiryan/php-qrcode-detector-decoder/tree/1.0.5.2"
  1926. },
  1927. "time": "2021-07-13T18:46:38+00:00"
  1928. },
  1929. {
  1930. "name": "kitetail/zttp",
  1931. "version": "v0.6.0",
  1932. "source": {
  1933. "type": "git",
  1934. "url": "https://github.com/kitetail/zttp.git",
  1935. "reference": "92662d7f9025b4c9a0b8a585e31810461fcca435"
  1936. },
  1937. "dist": {
  1938. "type": "zip",
  1939. "url": "https://api.github.com/repos/kitetail/zttp/zipball/92662d7f9025b4c9a0b8a585e31810461fcca435",
  1940. "reference": "92662d7f9025b4c9a0b8a585e31810461fcca435",
  1941. "shasum": "",
  1942. "mirrors": [
  1943. {
  1944. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1945. "preferred": true
  1946. }
  1947. ]
  1948. },
  1949. "require": {
  1950. "guzzlehttp/guzzle": "^6.0",
  1951. "php": ">=7.0",
  1952. "tightenco/collect": "^5.4"
  1953. },
  1954. "require-dev": {
  1955. "laravel/lumen-framework": "5.5.*",
  1956. "phpunit/phpunit": "^6.0"
  1957. },
  1958. "type": "library",
  1959. "autoload": {
  1960. "files": [
  1961. "src/Zttp.php"
  1962. ]
  1963. },
  1964. "notification-url": "https://packagist.org/downloads/",
  1965. "license": [
  1966. "MIT"
  1967. ],
  1968. "authors": [
  1969. {
  1970. "name": "Adam Wathan",
  1971. "email": "adam.wathan@gmail.com"
  1972. }
  1973. ],
  1974. "description": "A developer-experience focused HTTP client, optimized for most common use cases.",
  1975. "keywords": [
  1976. "Guzzle",
  1977. "http"
  1978. ],
  1979. "support": {
  1980. "issues": "https://github.com/kitetail/zttp/issues",
  1981. "source": "https://github.com/kitetail/zttp/tree/master"
  1982. },
  1983. "time": "2019-06-10T12:18:52+00:00"
  1984. },
  1985. {
  1986. "name": "laravel/framework",
  1987. "version": "v7.30.4",
  1988. "source": {
  1989. "type": "git",
  1990. "url": "https://github.com/laravel/framework.git",
  1991. "reference": "9dd38140dc2924daa1a020a3d7a45f9ceff03df3"
  1992. },
  1993. "dist": {
  1994. "type": "zip",
  1995. "url": "https://api.github.com/repos/laravel/framework/zipball/9dd38140dc2924daa1a020a3d7a45f9ceff03df3",
  1996. "reference": "9dd38140dc2924daa1a020a3d7a45f9ceff03df3",
  1997. "shasum": "",
  1998. "mirrors": [
  1999. {
  2000. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2001. "preferred": true
  2002. }
  2003. ]
  2004. },
  2005. "require": {
  2006. "doctrine/inflector": "^1.4|^2.0",
  2007. "dragonmantank/cron-expression": "^2.3.1",
  2008. "egulias/email-validator": "^2.1.10",
  2009. "ext-json": "*",
  2010. "ext-mbstring": "*",
  2011. "ext-openssl": "*",
  2012. "league/commonmark": "^1.3",
  2013. "league/flysystem": "^1.1",
  2014. "monolog/monolog": "^2.0",
  2015. "nesbot/carbon": "^2.31",
  2016. "opis/closure": "^3.6",
  2017. "php": "^7.2.5|^8.0",
  2018. "psr/container": "^1.0",
  2019. "psr/simple-cache": "^1.0",
  2020. "ramsey/uuid": "^3.7|^4.0",
  2021. "swiftmailer/swiftmailer": "^6.0",
  2022. "symfony/console": "^5.0",
  2023. "symfony/error-handler": "^5.0",
  2024. "symfony/finder": "^5.0",
  2025. "symfony/http-foundation": "^5.0",
  2026. "symfony/http-kernel": "^5.0",
  2027. "symfony/mime": "^5.0",
  2028. "symfony/polyfill-php73": "^1.17",
  2029. "symfony/process": "^5.0",
  2030. "symfony/routing": "^5.0",
  2031. "symfony/var-dumper": "^5.0",
  2032. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  2033. "vlucas/phpdotenv": "^4.0",
  2034. "voku/portable-ascii": "^1.4.8"
  2035. },
  2036. "conflict": {
  2037. "tightenco/collect": "<5.5.33"
  2038. },
  2039. "provide": {
  2040. "psr/container-implementation": "1.0"
  2041. },
  2042. "replace": {
  2043. "illuminate/auth": "self.version",
  2044. "illuminate/broadcasting": "self.version",
  2045. "illuminate/bus": "self.version",
  2046. "illuminate/cache": "self.version",
  2047. "illuminate/config": "self.version",
  2048. "illuminate/console": "self.version",
  2049. "illuminate/container": "self.version",
  2050. "illuminate/contracts": "self.version",
  2051. "illuminate/cookie": "self.version",
  2052. "illuminate/database": "self.version",
  2053. "illuminate/encryption": "self.version",
  2054. "illuminate/events": "self.version",
  2055. "illuminate/filesystem": "self.version",
  2056. "illuminate/hashing": "self.version",
  2057. "illuminate/http": "self.version",
  2058. "illuminate/log": "self.version",
  2059. "illuminate/mail": "self.version",
  2060. "illuminate/notifications": "self.version",
  2061. "illuminate/pagination": "self.version",
  2062. "illuminate/pipeline": "self.version",
  2063. "illuminate/queue": "self.version",
  2064. "illuminate/redis": "self.version",
  2065. "illuminate/routing": "self.version",
  2066. "illuminate/session": "self.version",
  2067. "illuminate/support": "self.version",
  2068. "illuminate/testing": "self.version",
  2069. "illuminate/translation": "self.version",
  2070. "illuminate/validation": "self.version",
  2071. "illuminate/view": "self.version"
  2072. },
  2073. "require-dev": {
  2074. "aws/aws-sdk-php": "^3.155",
  2075. "doctrine/dbal": "^2.6",
  2076. "filp/whoops": "^2.8",
  2077. "guzzlehttp/guzzle": "^6.3.1|^7.0.1",
  2078. "league/flysystem-cached-adapter": "^1.0",
  2079. "mockery/mockery": "~1.3.3|^1.4.2",
  2080. "moontoast/math": "^1.1",
  2081. "orchestra/testbench-core": "^5.8",
  2082. "pda/pheanstalk": "^4.0",
  2083. "phpunit/phpunit": "^8.4|^9.3.3",
  2084. "predis/predis": "^1.1.1",
  2085. "symfony/cache": "^5.0"
  2086. },
  2087. "suggest": {
  2088. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.155).",
  2089. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
  2090. "ext-ftp": "Required to use the Flysystem FTP driver.",
  2091. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  2092. "ext-memcached": "Required to use the memcache cache driver.",
  2093. "ext-pcntl": "Required to use all features of the queue worker.",
  2094. "ext-posix": "Required to use all features of the queue worker.",
  2095. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  2096. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  2097. "filp/whoops": "Required for friendly error pages in development (^2.8).",
  2098. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.3.1|^7.0.1).",
  2099. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  2100. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  2101. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  2102. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  2103. "mockery/mockery": "Required to use mocking (~1.3.3|^1.4.2).",
  2104. "moontoast/math": "Required to use ordered UUIDs (^1.1).",
  2105. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  2106. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  2107. "phpunit/phpunit": "Required to use assertions and run tests (^8.4|^9.3.3).",
  2108. "predis/predis": "Required to use the predis connector (^1.1.2).",
  2109. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  2110. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0).",
  2111. "symfony/cache": "Required to PSR-6 cache bridge (^5.0).",
  2112. "symfony/filesystem": "Required to create relative storage directory symbolic links (^5.0).",
  2113. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  2114. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  2115. },
  2116. "type": "library",
  2117. "extra": {
  2118. "branch-alias": {
  2119. "dev-master": "7.x-dev"
  2120. }
  2121. },
  2122. "autoload": {
  2123. "files": [
  2124. "src/Illuminate/Foundation/helpers.php",
  2125. "src/Illuminate/Support/helpers.php"
  2126. ],
  2127. "psr-4": {
  2128. "Illuminate\\": "src/Illuminate/"
  2129. }
  2130. },
  2131. "notification-url": "https://packagist.org/downloads/",
  2132. "license": [
  2133. "MIT"
  2134. ],
  2135. "authors": [
  2136. {
  2137. "name": "Taylor Otwell",
  2138. "email": "taylor@laravel.com"
  2139. }
  2140. ],
  2141. "description": "The Laravel Framework.",
  2142. "homepage": "https://laravel.com",
  2143. "keywords": [
  2144. "framework",
  2145. "laravel"
  2146. ],
  2147. "support": {
  2148. "issues": "https://github.com/laravel/framework/issues",
  2149. "source": "https://github.com/laravel/framework"
  2150. },
  2151. "time": "2021-01-21T14:10:48+00:00"
  2152. },
  2153. {
  2154. "name": "laravel/horizon",
  2155. "version": "v4.3.5",
  2156. "source": {
  2157. "type": "git",
  2158. "url": "https://github.com/laravel/horizon.git",
  2159. "reference": "b3fba0daaaaf5e84197b06dd25f3b27bb7301171"
  2160. },
  2161. "dist": {
  2162. "type": "zip",
  2163. "url": "https://api.github.com/repos/laravel/horizon/zipball/b3fba0daaaaf5e84197b06dd25f3b27bb7301171",
  2164. "reference": "b3fba0daaaaf5e84197b06dd25f3b27bb7301171",
  2165. "shasum": "",
  2166. "mirrors": [
  2167. {
  2168. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2169. "preferred": true
  2170. }
  2171. ]
  2172. },
  2173. "require": {
  2174. "cakephp/chronos": "^2.0",
  2175. "ext-json": "*",
  2176. "ext-pcntl": "*",
  2177. "ext-posix": "*",
  2178. "illuminate/contracts": "^7.0",
  2179. "illuminate/queue": "^7.0",
  2180. "illuminate/support": "^7.0",
  2181. "php": "^7.2",
  2182. "ramsey/uuid": "^3.5|^4.0",
  2183. "symfony/error-handler": "^5.0",
  2184. "symfony/process": "^5.0"
  2185. },
  2186. "require-dev": {
  2187. "mockery/mockery": "^1.0",
  2188. "orchestra/testbench": "^5.0",
  2189. "phpunit/phpunit": "^8.0",
  2190. "predis/predis": "^1.1"
  2191. },
  2192. "suggest": {
  2193. "ext-redis": "Required to use the Redis PHP driver.",
  2194. "predis/predis": "Required when not using the Redis PHP driver (^1.1)."
  2195. },
  2196. "type": "library",
  2197. "extra": {
  2198. "branch-alias": {
  2199. "dev-master": "4.x-dev"
  2200. },
  2201. "laravel": {
  2202. "providers": [
  2203. "Laravel\\Horizon\\HorizonServiceProvider"
  2204. ],
  2205. "aliases": {
  2206. "Horizon": "Laravel\\Horizon\\Horizon"
  2207. }
  2208. }
  2209. },
  2210. "autoload": {
  2211. "psr-4": {
  2212. "Laravel\\Horizon\\": "src/"
  2213. }
  2214. },
  2215. "notification-url": "https://packagist.org/downloads/",
  2216. "license": [
  2217. "MIT"
  2218. ],
  2219. "authors": [
  2220. {
  2221. "name": "Taylor Otwell",
  2222. "email": "taylor@laravel.com"
  2223. }
  2224. ],
  2225. "description": "Dashboard and code-driven configuration for Laravel queues.",
  2226. "keywords": [
  2227. "laravel",
  2228. "queue"
  2229. ],
  2230. "support": {
  2231. "issues": "https://github.com/laravel/horizon/issues",
  2232. "source": "https://github.com/laravel/horizon/tree/4.x"
  2233. },
  2234. "time": "2020-09-08T13:19:23+00:00"
  2235. },
  2236. {
  2237. "name": "laravel/tinker",
  2238. "version": "v2.6.2",
  2239. "source": {
  2240. "type": "git",
  2241. "url": "https://github.com/laravel/tinker.git",
  2242. "reference": "c808a7227f97ecfd9219fbf913bad842ea854ddc"
  2243. },
  2244. "dist": {
  2245. "type": "zip",
  2246. "url": "https://api.github.com/repos/laravel/tinker/zipball/c808a7227f97ecfd9219fbf913bad842ea854ddc",
  2247. "reference": "c808a7227f97ecfd9219fbf913bad842ea854ddc",
  2248. "shasum": "",
  2249. "mirrors": [
  2250. {
  2251. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2252. "preferred": true
  2253. }
  2254. ]
  2255. },
  2256. "require": {
  2257. "illuminate/console": "^6.0|^7.0|^8.0",
  2258. "illuminate/contracts": "^6.0|^7.0|^8.0",
  2259. "illuminate/support": "^6.0|^7.0|^8.0",
  2260. "php": "^7.2.5|^8.0",
  2261. "psy/psysh": "^0.10.4",
  2262. "symfony/var-dumper": "^4.3.4|^5.0"
  2263. },
  2264. "require-dev": {
  2265. "mockery/mockery": "~1.3.3|^1.4.2",
  2266. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2267. },
  2268. "suggest": {
  2269. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0)."
  2270. },
  2271. "type": "library",
  2272. "extra": {
  2273. "branch-alias": {
  2274. "dev-master": "2.x-dev"
  2275. },
  2276. "laravel": {
  2277. "providers": [
  2278. "Laravel\\Tinker\\TinkerServiceProvider"
  2279. ]
  2280. }
  2281. },
  2282. "autoload": {
  2283. "psr-4": {
  2284. "Laravel\\Tinker\\": "src/"
  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": "Powerful REPL for the Laravel framework.",
  2298. "keywords": [
  2299. "REPL",
  2300. "Tinker",
  2301. "laravel",
  2302. "psysh"
  2303. ],
  2304. "support": {
  2305. "issues": "https://github.com/laravel/tinker/issues",
  2306. "source": "https://github.com/laravel/tinker/tree/v2.6.2"
  2307. },
  2308. "time": "2021-09-28T15:47:34+00:00"
  2309. },
  2310. {
  2311. "name": "laravel/ui",
  2312. "version": "v2.5.0",
  2313. "source": {
  2314. "type": "git",
  2315. "url": "https://github.com/laravel/ui.git",
  2316. "reference": "d01a705763c243b07be795e9d1bb47f89260f73d"
  2317. },
  2318. "dist": {
  2319. "type": "zip",
  2320. "url": "https://api.github.com/repos/laravel/ui/zipball/d01a705763c243b07be795e9d1bb47f89260f73d",
  2321. "reference": "d01a705763c243b07be795e9d1bb47f89260f73d",
  2322. "shasum": "",
  2323. "mirrors": [
  2324. {
  2325. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2326. "preferred": true
  2327. }
  2328. ]
  2329. },
  2330. "require": {
  2331. "illuminate/console": "^7.0",
  2332. "illuminate/filesystem": "^7.0",
  2333. "illuminate/support": "^7.0",
  2334. "php": "^7.2.5|^8.0"
  2335. },
  2336. "type": "library",
  2337. "extra": {
  2338. "laravel": {
  2339. "providers": [
  2340. "Laravel\\Ui\\UiServiceProvider"
  2341. ]
  2342. }
  2343. },
  2344. "autoload": {
  2345. "psr-4": {
  2346. "Laravel\\Ui\\": "src/",
  2347. "Illuminate\\Foundation\\Auth\\": "auth-backend/"
  2348. }
  2349. },
  2350. "notification-url": "https://packagist.org/downloads/",
  2351. "license": [
  2352. "MIT"
  2353. ],
  2354. "authors": [
  2355. {
  2356. "name": "Taylor Otwell",
  2357. "email": "taylor@laravel.com"
  2358. }
  2359. ],
  2360. "description": "Laravel UI utilities and presets.",
  2361. "keywords": [
  2362. "laravel",
  2363. "ui"
  2364. ],
  2365. "support": {
  2366. "issues": "https://github.com/laravel/ui/issues",
  2367. "source": "https://github.com/laravel/ui/tree/v2.5.0"
  2368. },
  2369. "time": "2020-11-03T19:45:19+00:00"
  2370. },
  2371. {
  2372. "name": "league/commonmark",
  2373. "version": "1.6.6",
  2374. "source": {
  2375. "type": "git",
  2376. "url": "https://github.com/thephpleague/commonmark.git",
  2377. "reference": "c4228d11e30d7493c6836d20872f9582d8ba6dcf"
  2378. },
  2379. "dist": {
  2380. "type": "zip",
  2381. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/c4228d11e30d7493c6836d20872f9582d8ba6dcf",
  2382. "reference": "c4228d11e30d7493c6836d20872f9582d8ba6dcf",
  2383. "shasum": "",
  2384. "mirrors": [
  2385. {
  2386. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2387. "preferred": true
  2388. }
  2389. ]
  2390. },
  2391. "require": {
  2392. "ext-mbstring": "*",
  2393. "php": "^7.1 || ^8.0"
  2394. },
  2395. "conflict": {
  2396. "scrutinizer/ocular": "1.7.*"
  2397. },
  2398. "require-dev": {
  2399. "cebe/markdown": "~1.0",
  2400. "commonmark/commonmark.js": "0.29.2",
  2401. "erusev/parsedown": "~1.0",
  2402. "ext-json": "*",
  2403. "github/gfm": "0.29.0",
  2404. "michelf/php-markdown": "~1.4",
  2405. "mikehaertl/php-shellcommand": "^1.4",
  2406. "phpstan/phpstan": "^0.12.90",
  2407. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.2",
  2408. "scrutinizer/ocular": "^1.5",
  2409. "symfony/finder": "^4.2"
  2410. },
  2411. "bin": [
  2412. "bin/commonmark"
  2413. ],
  2414. "type": "library",
  2415. "autoload": {
  2416. "psr-4": {
  2417. "League\\CommonMark\\": "src"
  2418. }
  2419. },
  2420. "notification-url": "https://packagist.org/downloads/",
  2421. "license": [
  2422. "BSD-3-Clause"
  2423. ],
  2424. "authors": [
  2425. {
  2426. "name": "Colin O'Dell",
  2427. "email": "colinodell@gmail.com",
  2428. "homepage": "https://www.colinodell.com",
  2429. "role": "Lead Developer"
  2430. }
  2431. ],
  2432. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and Github-Flavored Markdown (GFM)",
  2433. "homepage": "https://commonmark.thephpleague.com",
  2434. "keywords": [
  2435. "commonmark",
  2436. "flavored",
  2437. "gfm",
  2438. "github",
  2439. "github-flavored",
  2440. "markdown",
  2441. "md",
  2442. "parser"
  2443. ],
  2444. "support": {
  2445. "docs": "https://commonmark.thephpleague.com/",
  2446. "issues": "https://github.com/thephpleague/commonmark/issues",
  2447. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2448. "source": "https://github.com/thephpleague/commonmark"
  2449. },
  2450. "funding": [
  2451. {
  2452. "url": "https://enjoy.gitstore.app/repositories/thephpleague/commonmark",
  2453. "type": "custom"
  2454. },
  2455. {
  2456. "url": "https://www.colinodell.com/sponsor",
  2457. "type": "custom"
  2458. },
  2459. {
  2460. "url": "https://www.paypal.me/colinpodell/10.00",
  2461. "type": "custom"
  2462. },
  2463. {
  2464. "url": "https://github.com/colinodell",
  2465. "type": "github"
  2466. },
  2467. {
  2468. "url": "https://www.patreon.com/colinodell",
  2469. "type": "patreon"
  2470. },
  2471. {
  2472. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2473. "type": "tidelift"
  2474. }
  2475. ],
  2476. "time": "2021-07-17T17:13:23+00:00"
  2477. },
  2478. {
  2479. "name": "league/flysystem",
  2480. "version": "1.1.5",
  2481. "source": {
  2482. "type": "git",
  2483. "url": "https://github.com/thephpleague/flysystem.git",
  2484. "reference": "18634df356bfd4119fe3d6156bdb990c414c14ea"
  2485. },
  2486. "dist": {
  2487. "type": "zip",
  2488. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/18634df356bfd4119fe3d6156bdb990c414c14ea",
  2489. "reference": "18634df356bfd4119fe3d6156bdb990c414c14ea",
  2490. "shasum": "",
  2491. "mirrors": [
  2492. {
  2493. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2494. "preferred": true
  2495. }
  2496. ]
  2497. },
  2498. "require": {
  2499. "ext-fileinfo": "*",
  2500. "league/mime-type-detection": "^1.3",
  2501. "php": "^7.2.5 || ^8.0"
  2502. },
  2503. "conflict": {
  2504. "league/flysystem-sftp": "<1.0.6"
  2505. },
  2506. "require-dev": {
  2507. "phpspec/prophecy": "^1.11.1",
  2508. "phpunit/phpunit": "^8.5.8"
  2509. },
  2510. "suggest": {
  2511. "ext-ftp": "Allows you to use FTP server storage",
  2512. "ext-openssl": "Allows you to use FTPS server storage",
  2513. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  2514. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  2515. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  2516. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2517. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  2518. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2519. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  2520. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2521. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2522. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2523. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2524. },
  2525. "type": "library",
  2526. "extra": {
  2527. "branch-alias": {
  2528. "dev-master": "1.1-dev"
  2529. }
  2530. },
  2531. "autoload": {
  2532. "psr-4": {
  2533. "League\\Flysystem\\": "src/"
  2534. }
  2535. },
  2536. "notification-url": "https://packagist.org/downloads/",
  2537. "license": [
  2538. "MIT"
  2539. ],
  2540. "authors": [
  2541. {
  2542. "name": "Frank de Jonge",
  2543. "email": "info@frenky.net"
  2544. }
  2545. ],
  2546. "description": "Filesystem abstraction: Many filesystems, one API.",
  2547. "keywords": [
  2548. "Cloud Files",
  2549. "WebDAV",
  2550. "abstraction",
  2551. "aws",
  2552. "cloud",
  2553. "copy.com",
  2554. "dropbox",
  2555. "file systems",
  2556. "files",
  2557. "filesystem",
  2558. "filesystems",
  2559. "ftp",
  2560. "rackspace",
  2561. "remote",
  2562. "s3",
  2563. "sftp",
  2564. "storage"
  2565. ],
  2566. "support": {
  2567. "issues": "https://github.com/thephpleague/flysystem/issues",
  2568. "source": "https://github.com/thephpleague/flysystem/tree/1.1.5"
  2569. },
  2570. "funding": [
  2571. {
  2572. "url": "https://offset.earth/frankdejonge",
  2573. "type": "other"
  2574. }
  2575. ],
  2576. "time": "2021-08-17T13:49:42+00:00"
  2577. },
  2578. {
  2579. "name": "league/mime-type-detection",
  2580. "version": "1.8.0",
  2581. "source": {
  2582. "type": "git",
  2583. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2584. "reference": "b38b25d7b372e9fddb00335400467b223349fd7e"
  2585. },
  2586. "dist": {
  2587. "type": "zip",
  2588. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/b38b25d7b372e9fddb00335400467b223349fd7e",
  2589. "reference": "b38b25d7b372e9fddb00335400467b223349fd7e",
  2590. "shasum": "",
  2591. "mirrors": [
  2592. {
  2593. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2594. "preferred": true
  2595. }
  2596. ]
  2597. },
  2598. "require": {
  2599. "ext-fileinfo": "*",
  2600. "php": "^7.2 || ^8.0"
  2601. },
  2602. "require-dev": {
  2603. "friendsofphp/php-cs-fixer": "^2.18",
  2604. "phpstan/phpstan": "^0.12.68",
  2605. "phpunit/phpunit": "^8.5.8 || ^9.3"
  2606. },
  2607. "type": "library",
  2608. "autoload": {
  2609. "psr-4": {
  2610. "League\\MimeTypeDetection\\": "src"
  2611. }
  2612. },
  2613. "notification-url": "https://packagist.org/downloads/",
  2614. "license": [
  2615. "MIT"
  2616. ],
  2617. "authors": [
  2618. {
  2619. "name": "Frank de Jonge",
  2620. "email": "info@frankdejonge.nl"
  2621. }
  2622. ],
  2623. "description": "Mime-type detection for Flysystem",
  2624. "support": {
  2625. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2626. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.8.0"
  2627. },
  2628. "funding": [
  2629. {
  2630. "url": "https://github.com/frankdejonge",
  2631. "type": "github"
  2632. },
  2633. {
  2634. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2635. "type": "tidelift"
  2636. }
  2637. ],
  2638. "time": "2021-09-25T08:23:19+00:00"
  2639. },
  2640. {
  2641. "name": "maatwebsite/excel",
  2642. "version": "3.1.32",
  2643. "source": {
  2644. "type": "git",
  2645. "url": "https://github.com/Maatwebsite/Laravel-Excel.git",
  2646. "reference": "9dc29b63a77fb7f2f514ef754af3a1b57e83cadf"
  2647. },
  2648. "dist": {
  2649. "type": "zip",
  2650. "url": "https://api.github.com/repos/Maatwebsite/Laravel-Excel/zipball/9dc29b63a77fb7f2f514ef754af3a1b57e83cadf",
  2651. "reference": "9dc29b63a77fb7f2f514ef754af3a1b57e83cadf",
  2652. "shasum": "",
  2653. "mirrors": [
  2654. {
  2655. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2656. "preferred": true
  2657. }
  2658. ]
  2659. },
  2660. "require": {
  2661. "ext-json": "*",
  2662. "illuminate/support": "5.8.*|^6.0|^7.0|^8.0",
  2663. "php": "^7.0|^8.0",
  2664. "phpoffice/phpspreadsheet": "^1.18"
  2665. },
  2666. "require-dev": {
  2667. "orchestra/testbench": "^6.0",
  2668. "predis/predis": "^1.1"
  2669. },
  2670. "type": "library",
  2671. "extra": {
  2672. "laravel": {
  2673. "providers": [
  2674. "Maatwebsite\\Excel\\ExcelServiceProvider"
  2675. ],
  2676. "aliases": {
  2677. "Excel": "Maatwebsite\\Excel\\Facades\\Excel"
  2678. }
  2679. }
  2680. },
  2681. "autoload": {
  2682. "psr-4": {
  2683. "Maatwebsite\\Excel\\": "src/"
  2684. }
  2685. },
  2686. "notification-url": "https://packagist.org/downloads/",
  2687. "license": [
  2688. "MIT"
  2689. ],
  2690. "authors": [
  2691. {
  2692. "name": "Patrick Brouwers",
  2693. "email": "patrick@maatwebsite.nl"
  2694. }
  2695. ],
  2696. "description": "Supercharged Excel exports and imports in Laravel",
  2697. "keywords": [
  2698. "PHPExcel",
  2699. "batch",
  2700. "csv",
  2701. "excel",
  2702. "export",
  2703. "import",
  2704. "laravel",
  2705. "php",
  2706. "phpspreadsheet"
  2707. ],
  2708. "support": {
  2709. "issues": "https://github.com/Maatwebsite/Laravel-Excel/issues",
  2710. "source": "https://github.com/Maatwebsite/Laravel-Excel/tree/3.1.32"
  2711. },
  2712. "funding": [
  2713. {
  2714. "url": "https://laravel-excel.com/commercial-support",
  2715. "type": "custom"
  2716. },
  2717. {
  2718. "url": "https://github.com/patrickbrouwers",
  2719. "type": "github"
  2720. }
  2721. ],
  2722. "time": "2021-07-08T10:11:21+00:00"
  2723. },
  2724. {
  2725. "name": "maennchen/zipstream-php",
  2726. "version": "2.1.0",
  2727. "source": {
  2728. "type": "git",
  2729. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  2730. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58"
  2731. },
  2732. "dist": {
  2733. "type": "zip",
  2734. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2735. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2736. "shasum": "",
  2737. "mirrors": [
  2738. {
  2739. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2740. "preferred": true
  2741. }
  2742. ]
  2743. },
  2744. "require": {
  2745. "myclabs/php-enum": "^1.5",
  2746. "php": ">= 7.1",
  2747. "psr/http-message": "^1.0",
  2748. "symfony/polyfill-mbstring": "^1.0"
  2749. },
  2750. "require-dev": {
  2751. "ext-zip": "*",
  2752. "guzzlehttp/guzzle": ">= 6.3",
  2753. "mikey179/vfsstream": "^1.6",
  2754. "phpunit/phpunit": ">= 7.5"
  2755. },
  2756. "type": "library",
  2757. "autoload": {
  2758. "psr-4": {
  2759. "ZipStream\\": "src/"
  2760. }
  2761. },
  2762. "notification-url": "https://packagist.org/downloads/",
  2763. "license": [
  2764. "MIT"
  2765. ],
  2766. "authors": [
  2767. {
  2768. "name": "Paul Duncan",
  2769. "email": "pabs@pablotron.org"
  2770. },
  2771. {
  2772. "name": "Jonatan Männchen",
  2773. "email": "jonatan@maennchen.ch"
  2774. },
  2775. {
  2776. "name": "Jesse Donat",
  2777. "email": "donatj@gmail.com"
  2778. },
  2779. {
  2780. "name": "András Kolesár",
  2781. "email": "kolesar@kolesar.hu"
  2782. }
  2783. ],
  2784. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  2785. "keywords": [
  2786. "stream",
  2787. "zip"
  2788. ],
  2789. "support": {
  2790. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  2791. "source": "https://github.com/maennchen/ZipStream-PHP/tree/master"
  2792. },
  2793. "funding": [
  2794. {
  2795. "url": "https://opencollective.com/zipstream",
  2796. "type": "open_collective"
  2797. }
  2798. ],
  2799. "time": "2020-05-30T13:11:16+00:00"
  2800. },
  2801. {
  2802. "name": "markbaker/complex",
  2803. "version": "3.0.1",
  2804. "source": {
  2805. "type": "git",
  2806. "url": "https://github.com/MarkBaker/PHPComplex.git",
  2807. "reference": "ab8bc271e404909db09ff2d5ffa1e538085c0f22"
  2808. },
  2809. "dist": {
  2810. "type": "zip",
  2811. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/ab8bc271e404909db09ff2d5ffa1e538085c0f22",
  2812. "reference": "ab8bc271e404909db09ff2d5ffa1e538085c0f22",
  2813. "shasum": "",
  2814. "mirrors": [
  2815. {
  2816. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2817. "preferred": true
  2818. }
  2819. ]
  2820. },
  2821. "require": {
  2822. "php": "^7.2 || ^8.0"
  2823. },
  2824. "require-dev": {
  2825. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2826. "phpcompatibility/php-compatibility": "^9.0",
  2827. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  2828. "squizlabs/php_codesniffer": "^3.4"
  2829. },
  2830. "type": "library",
  2831. "autoload": {
  2832. "psr-4": {
  2833. "Complex\\": "classes/src/"
  2834. }
  2835. },
  2836. "notification-url": "https://packagist.org/downloads/",
  2837. "license": [
  2838. "MIT"
  2839. ],
  2840. "authors": [
  2841. {
  2842. "name": "Mark Baker",
  2843. "email": "mark@lange.demon.co.uk"
  2844. }
  2845. ],
  2846. "description": "PHP Class for working with complex numbers",
  2847. "homepage": "https://github.com/MarkBaker/PHPComplex",
  2848. "keywords": [
  2849. "complex",
  2850. "mathematics"
  2851. ],
  2852. "support": {
  2853. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  2854. "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.1"
  2855. },
  2856. "time": "2021-06-29T15:32:53+00:00"
  2857. },
  2858. {
  2859. "name": "markbaker/matrix",
  2860. "version": "3.0.0",
  2861. "source": {
  2862. "type": "git",
  2863. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  2864. "reference": "c66aefcafb4f6c269510e9ac46b82619a904c576"
  2865. },
  2866. "dist": {
  2867. "type": "zip",
  2868. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/c66aefcafb4f6c269510e9ac46b82619a904c576",
  2869. "reference": "c66aefcafb4f6c269510e9ac46b82619a904c576",
  2870. "shasum": "",
  2871. "mirrors": [
  2872. {
  2873. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2874. "preferred": true
  2875. }
  2876. ]
  2877. },
  2878. "require": {
  2879. "php": "^7.1 || ^8.0"
  2880. },
  2881. "require-dev": {
  2882. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2883. "phpcompatibility/php-compatibility": "^9.0",
  2884. "phpdocumentor/phpdocumentor": "2.*",
  2885. "phploc/phploc": "^4.0",
  2886. "phpmd/phpmd": "2.*",
  2887. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  2888. "sebastian/phpcpd": "^4.0",
  2889. "squizlabs/php_codesniffer": "^3.4"
  2890. },
  2891. "type": "library",
  2892. "autoload": {
  2893. "psr-4": {
  2894. "Matrix\\": "classes/src/"
  2895. }
  2896. },
  2897. "notification-url": "https://packagist.org/downloads/",
  2898. "license": [
  2899. "MIT"
  2900. ],
  2901. "authors": [
  2902. {
  2903. "name": "Mark Baker",
  2904. "email": "mark@demon-angel.eu"
  2905. }
  2906. ],
  2907. "description": "PHP Class for working with matrices",
  2908. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  2909. "keywords": [
  2910. "mathematics",
  2911. "matrix",
  2912. "vector"
  2913. ],
  2914. "support": {
  2915. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  2916. "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.0"
  2917. },
  2918. "time": "2021-07-01T19:01:15+00:00"
  2919. },
  2920. {
  2921. "name": "monolog/monolog",
  2922. "version": "2.3.5",
  2923. "source": {
  2924. "type": "git",
  2925. "url": "https://github.com/Seldaek/monolog.git",
  2926. "reference": "fd4380d6fc37626e2f799f29d91195040137eba9"
  2927. },
  2928. "dist": {
  2929. "type": "zip",
  2930. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/fd4380d6fc37626e2f799f29d91195040137eba9",
  2931. "reference": "fd4380d6fc37626e2f799f29d91195040137eba9",
  2932. "shasum": "",
  2933. "mirrors": [
  2934. {
  2935. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2936. "preferred": true
  2937. }
  2938. ]
  2939. },
  2940. "require": {
  2941. "php": ">=7.2",
  2942. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  2943. },
  2944. "provide": {
  2945. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  2946. },
  2947. "require-dev": {
  2948. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2949. "doctrine/couchdb": "~1.0@dev",
  2950. "elasticsearch/elasticsearch": "^7",
  2951. "graylog2/gelf-php": "^1.4.2",
  2952. "mongodb/mongodb": "^1.8",
  2953. "php-amqplib/php-amqplib": "~2.4 || ^3",
  2954. "php-console/php-console": "^3.1.3",
  2955. "phpspec/prophecy": "^1.6.1",
  2956. "phpstan/phpstan": "^0.12.91",
  2957. "phpunit/phpunit": "^8.5",
  2958. "predis/predis": "^1.1",
  2959. "rollbar/rollbar": "^1.3",
  2960. "ruflin/elastica": ">=0.90@dev",
  2961. "swiftmailer/swiftmailer": "^5.3|^6.0"
  2962. },
  2963. "suggest": {
  2964. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2965. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2966. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2967. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2968. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  2969. "ext-mbstring": "Allow to work properly with unicode symbols",
  2970. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2971. "ext-openssl": "Required to send log messages using SSL",
  2972. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  2973. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2974. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2975. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2976. "php-console/php-console": "Allow sending log messages to Google Chrome",
  2977. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2978. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2979. },
  2980. "type": "library",
  2981. "extra": {
  2982. "branch-alias": {
  2983. "dev-main": "2.x-dev"
  2984. }
  2985. },
  2986. "autoload": {
  2987. "psr-4": {
  2988. "Monolog\\": "src/Monolog"
  2989. }
  2990. },
  2991. "notification-url": "https://packagist.org/downloads/",
  2992. "license": [
  2993. "MIT"
  2994. ],
  2995. "authors": [
  2996. {
  2997. "name": "Jordi Boggiano",
  2998. "email": "j.boggiano@seld.be",
  2999. "homepage": "https://seld.be"
  3000. }
  3001. ],
  3002. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  3003. "homepage": "https://github.com/Seldaek/monolog",
  3004. "keywords": [
  3005. "log",
  3006. "logging",
  3007. "psr-3"
  3008. ],
  3009. "support": {
  3010. "issues": "https://github.com/Seldaek/monolog/issues",
  3011. "source": "https://github.com/Seldaek/monolog/tree/2.3.5"
  3012. },
  3013. "funding": [
  3014. {
  3015. "url": "https://github.com/Seldaek",
  3016. "type": "github"
  3017. },
  3018. {
  3019. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  3020. "type": "tidelift"
  3021. }
  3022. ],
  3023. "time": "2021-10-01T21:08:31+00:00"
  3024. },
  3025. {
  3026. "name": "myclabs/php-enum",
  3027. "version": "1.8.3",
  3028. "source": {
  3029. "type": "git",
  3030. "url": "https://github.com/myclabs/php-enum.git",
  3031. "reference": "b942d263c641ddb5190929ff840c68f78713e937"
  3032. },
  3033. "dist": {
  3034. "type": "zip",
  3035. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/b942d263c641ddb5190929ff840c68f78713e937",
  3036. "reference": "b942d263c641ddb5190929ff840c68f78713e937",
  3037. "shasum": "",
  3038. "mirrors": [
  3039. {
  3040. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3041. "preferred": true
  3042. }
  3043. ]
  3044. },
  3045. "require": {
  3046. "ext-json": "*",
  3047. "php": "^7.3 || ^8.0"
  3048. },
  3049. "require-dev": {
  3050. "phpunit/phpunit": "^9.5",
  3051. "squizlabs/php_codesniffer": "1.*",
  3052. "vimeo/psalm": "^4.6.2"
  3053. },
  3054. "type": "library",
  3055. "autoload": {
  3056. "psr-4": {
  3057. "MyCLabs\\Enum\\": "src/"
  3058. }
  3059. },
  3060. "notification-url": "https://packagist.org/downloads/",
  3061. "license": [
  3062. "MIT"
  3063. ],
  3064. "authors": [
  3065. {
  3066. "name": "PHP Enum contributors",
  3067. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  3068. }
  3069. ],
  3070. "description": "PHP Enum implementation",
  3071. "homepage": "http://github.com/myclabs/php-enum",
  3072. "keywords": [
  3073. "enum"
  3074. ],
  3075. "support": {
  3076. "issues": "https://github.com/myclabs/php-enum/issues",
  3077. "source": "https://github.com/myclabs/php-enum/tree/1.8.3"
  3078. },
  3079. "funding": [
  3080. {
  3081. "url": "https://github.com/mnapoli",
  3082. "type": "github"
  3083. },
  3084. {
  3085. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  3086. "type": "tidelift"
  3087. }
  3088. ],
  3089. "time": "2021-07-05T08:18:36+00:00"
  3090. },
  3091. {
  3092. "name": "nesbot/carbon",
  3093. "version": "2.54.0",
  3094. "source": {
  3095. "type": "git",
  3096. "url": "https://github.com/briannesbitt/Carbon.git",
  3097. "reference": "eed83939f1aed3eee517d03a33f5ec587ac529b5"
  3098. },
  3099. "dist": {
  3100. "type": "zip",
  3101. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/eed83939f1aed3eee517d03a33f5ec587ac529b5",
  3102. "reference": "eed83939f1aed3eee517d03a33f5ec587ac529b5",
  3103. "shasum": "",
  3104. "mirrors": [
  3105. {
  3106. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3107. "preferred": true
  3108. }
  3109. ]
  3110. },
  3111. "require": {
  3112. "ext-json": "*",
  3113. "php": "^7.1.8 || ^8.0",
  3114. "symfony/polyfill-mbstring": "^1.0",
  3115. "symfony/polyfill-php80": "^1.16",
  3116. "symfony/translation": "^3.4 || ^4.0 || ^5.0"
  3117. },
  3118. "require-dev": {
  3119. "doctrine/dbal": "^2.0 || ^3.0",
  3120. "doctrine/orm": "^2.7",
  3121. "friendsofphp/php-cs-fixer": "^3.0",
  3122. "kylekatarnls/multi-tester": "^2.0",
  3123. "phpmd/phpmd": "^2.9",
  3124. "phpstan/extension-installer": "^1.0",
  3125. "phpstan/phpstan": "^0.12.54",
  3126. "phpunit/phpunit": "^7.5.20 || ^8.5.14",
  3127. "squizlabs/php_codesniffer": "^3.4"
  3128. },
  3129. "bin": [
  3130. "bin/carbon"
  3131. ],
  3132. "type": "library",
  3133. "extra": {
  3134. "branch-alias": {
  3135. "dev-3.x": "3.x-dev",
  3136. "dev-master": "2.x-dev"
  3137. },
  3138. "laravel": {
  3139. "providers": [
  3140. "Carbon\\Laravel\\ServiceProvider"
  3141. ]
  3142. },
  3143. "phpstan": {
  3144. "includes": [
  3145. "extension.neon"
  3146. ]
  3147. }
  3148. },
  3149. "autoload": {
  3150. "psr-4": {
  3151. "Carbon\\": "src/Carbon/"
  3152. }
  3153. },
  3154. "notification-url": "https://packagist.org/downloads/",
  3155. "license": [
  3156. "MIT"
  3157. ],
  3158. "authors": [
  3159. {
  3160. "name": "Brian Nesbitt",
  3161. "email": "brian@nesbot.com",
  3162. "homepage": "https://markido.com"
  3163. },
  3164. {
  3165. "name": "kylekatarnls",
  3166. "homepage": "https://github.com/kylekatarnls"
  3167. }
  3168. ],
  3169. "description": "An API extension for DateTime that supports 281 different languages.",
  3170. "homepage": "https://carbon.nesbot.com",
  3171. "keywords": [
  3172. "date",
  3173. "datetime",
  3174. "time"
  3175. ],
  3176. "support": {
  3177. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3178. "source": "https://github.com/briannesbitt/Carbon"
  3179. },
  3180. "funding": [
  3181. {
  3182. "url": "https://opencollective.com/Carbon",
  3183. "type": "open_collective"
  3184. },
  3185. {
  3186. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  3187. "type": "tidelift"
  3188. }
  3189. ],
  3190. "time": "2021-11-01T21:22:20+00:00"
  3191. },
  3192. {
  3193. "name": "nikic/php-parser",
  3194. "version": "v4.13.1",
  3195. "source": {
  3196. "type": "git",
  3197. "url": "https://github.com/nikic/PHP-Parser.git",
  3198. "reference": "63a79e8daa781cac14e5195e63ed8ae231dd10fd"
  3199. },
  3200. "dist": {
  3201. "type": "zip",
  3202. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/63a79e8daa781cac14e5195e63ed8ae231dd10fd",
  3203. "reference": "63a79e8daa781cac14e5195e63ed8ae231dd10fd",
  3204. "shasum": "",
  3205. "mirrors": [
  3206. {
  3207. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3208. "preferred": true
  3209. }
  3210. ]
  3211. },
  3212. "require": {
  3213. "ext-tokenizer": "*",
  3214. "php": ">=7.0"
  3215. },
  3216. "require-dev": {
  3217. "ircmaxell/php-yacc": "^0.0.7",
  3218. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  3219. },
  3220. "bin": [
  3221. "bin/php-parse"
  3222. ],
  3223. "type": "library",
  3224. "extra": {
  3225. "branch-alias": {
  3226. "dev-master": "4.9-dev"
  3227. }
  3228. },
  3229. "autoload": {
  3230. "psr-4": {
  3231. "PhpParser\\": "lib/PhpParser"
  3232. }
  3233. },
  3234. "notification-url": "https://packagist.org/downloads/",
  3235. "license": [
  3236. "BSD-3-Clause"
  3237. ],
  3238. "authors": [
  3239. {
  3240. "name": "Nikita Popov"
  3241. }
  3242. ],
  3243. "description": "A PHP parser written in PHP",
  3244. "keywords": [
  3245. "parser",
  3246. "php"
  3247. ],
  3248. "support": {
  3249. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3250. "source": "https://github.com/nikic/PHP-Parser/tree/v4.13.1"
  3251. },
  3252. "time": "2021-11-03T20:52:16+00:00"
  3253. },
  3254. {
  3255. "name": "opis/closure",
  3256. "version": "3.6.2",
  3257. "source": {
  3258. "type": "git",
  3259. "url": "https://github.com/opis/closure.git",
  3260. "reference": "06e2ebd25f2869e54a306dda991f7db58066f7f6"
  3261. },
  3262. "dist": {
  3263. "type": "zip",
  3264. "url": "https://api.github.com/repos/opis/closure/zipball/06e2ebd25f2869e54a306dda991f7db58066f7f6",
  3265. "reference": "06e2ebd25f2869e54a306dda991f7db58066f7f6",
  3266. "shasum": "",
  3267. "mirrors": [
  3268. {
  3269. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3270. "preferred": true
  3271. }
  3272. ]
  3273. },
  3274. "require": {
  3275. "php": "^5.4 || ^7.0 || ^8.0"
  3276. },
  3277. "require-dev": {
  3278. "jeremeamia/superclosure": "^2.0",
  3279. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  3280. },
  3281. "type": "library",
  3282. "extra": {
  3283. "branch-alias": {
  3284. "dev-master": "3.6.x-dev"
  3285. }
  3286. },
  3287. "autoload": {
  3288. "psr-4": {
  3289. "Opis\\Closure\\": "src/"
  3290. },
  3291. "files": [
  3292. "functions.php"
  3293. ]
  3294. },
  3295. "notification-url": "https://packagist.org/downloads/",
  3296. "license": [
  3297. "MIT"
  3298. ],
  3299. "authors": [
  3300. {
  3301. "name": "Marius Sarca",
  3302. "email": "marius.sarca@gmail.com"
  3303. },
  3304. {
  3305. "name": "Sorin Sarca",
  3306. "email": "sarca_sorin@hotmail.com"
  3307. }
  3308. ],
  3309. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  3310. "homepage": "https://opis.io/closure",
  3311. "keywords": [
  3312. "anonymous functions",
  3313. "closure",
  3314. "function",
  3315. "serializable",
  3316. "serialization",
  3317. "serialize"
  3318. ],
  3319. "support": {
  3320. "issues": "https://github.com/opis/closure/issues",
  3321. "source": "https://github.com/opis/closure/tree/3.6.2"
  3322. },
  3323. "time": "2021-04-09T13:42:10+00:00"
  3324. },
  3325. {
  3326. "name": "oursdreams/export",
  3327. "version": "0.0.7",
  3328. "source": {
  3329. "type": "git",
  3330. "url": "https://github.com/oursdreams/export.git",
  3331. "reference": "ef7694ac342ff18742c17ddbce3a85076cac17e3"
  3332. },
  3333. "dist": {
  3334. "type": "zip",
  3335. "url": "https://api.github.com/repos/oursdreams/export/zipball/ef7694ac342ff18742c17ddbce3a85076cac17e3",
  3336. "reference": "ef7694ac342ff18742c17ddbce3a85076cac17e3",
  3337. "shasum": "",
  3338. "mirrors": [
  3339. {
  3340. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3341. "preferred": true
  3342. }
  3343. ]
  3344. },
  3345. "type": "library",
  3346. "extra": {
  3347. "laravel": {
  3348. "providers": [
  3349. "Oursdreams\\Export\\ExportServiceProvider"
  3350. ]
  3351. }
  3352. },
  3353. "autoload": {
  3354. "psr-4": {
  3355. "Oursdreams\\Export\\": "./src"
  3356. }
  3357. },
  3358. "notification-url": "https://packagist.org/downloads/",
  3359. "license": [
  3360. "MIT"
  3361. ],
  3362. "authors": [
  3363. {
  3364. "name": "oursdreams",
  3365. "email": "z1792524653@163.com"
  3366. }
  3367. ],
  3368. "description": "A simple export plug-in",
  3369. "support": {
  3370. "issues": "https://github.com/oursdreams/export/issues",
  3371. "source": "https://github.com/oursdreams/export/tree/0.0.7"
  3372. },
  3373. "time": "2021-06-01T03:01:13+00:00"
  3374. },
  3375. {
  3376. "name": "overtrue/laravel-pinyin",
  3377. "version": "4.0.0",
  3378. "source": {
  3379. "type": "git",
  3380. "url": "https://github.com/overtrue/laravel-pinyin.git",
  3381. "reference": "c0b15aa49eac08bff80122010b91a0b3fe0f1e21"
  3382. },
  3383. "dist": {
  3384. "type": "zip",
  3385. "url": "https://api.github.com/repos/overtrue/laravel-pinyin/zipball/c0b15aa49eac08bff80122010b91a0b3fe0f1e21",
  3386. "reference": "c0b15aa49eac08bff80122010b91a0b3fe0f1e21",
  3387. "shasum": "",
  3388. "mirrors": [
  3389. {
  3390. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3391. "preferred": true
  3392. }
  3393. ]
  3394. },
  3395. "require": {
  3396. "overtrue/pinyin": "~4.0"
  3397. },
  3398. "type": "library",
  3399. "extra": {
  3400. "laravel": {
  3401. "providers": [
  3402. "Overtrue\\LaravelPinyin\\ServiceProvider"
  3403. ],
  3404. "aliases": {
  3405. "Pinyin": "Overtrue\\LaravelPinyin\\Facades\\Pinyin"
  3406. }
  3407. }
  3408. },
  3409. "autoload": {
  3410. "psr-4": {
  3411. "Overtrue\\LaravelPinyin\\": "src/"
  3412. },
  3413. "files": [
  3414. "src/helpers.php"
  3415. ]
  3416. },
  3417. "notification-url": "https://packagist.org/downloads/",
  3418. "license": [
  3419. "MIT"
  3420. ],
  3421. "authors": [
  3422. {
  3423. "name": "overtrue",
  3424. "email": "anzhengchao@gmail.com"
  3425. }
  3426. ],
  3427. "description": "Chinese to Pinyin translator.",
  3428. "keywords": [
  3429. "Chinese",
  3430. "Pinyin",
  3431. "laravel",
  3432. "overtrue"
  3433. ],
  3434. "support": {
  3435. "issues": "https://github.com/overtrue/laravel-pinyin/issues",
  3436. "source": "https://github.com/overtrue/laravel-pinyin/tree/master"
  3437. },
  3438. "time": "2018-10-10T09:02:46+00:00"
  3439. },
  3440. {
  3441. "name": "overtrue/pinyin",
  3442. "version": "4.0.8",
  3443. "source": {
  3444. "type": "git",
  3445. "url": "https://github.com/overtrue/pinyin.git",
  3446. "reference": "04bdb4d33d50e8fb1aa5a824064c5151c4b15dc2"
  3447. },
  3448. "dist": {
  3449. "type": "zip",
  3450. "url": "https://api.github.com/repos/overtrue/pinyin/zipball/04bdb4d33d50e8fb1aa5a824064c5151c4b15dc2",
  3451. "reference": "04bdb4d33d50e8fb1aa5a824064c5151c4b15dc2",
  3452. "shasum": "",
  3453. "mirrors": [
  3454. {
  3455. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3456. "preferred": true
  3457. }
  3458. ]
  3459. },
  3460. "require": {
  3461. "php": ">=7.1"
  3462. },
  3463. "require-dev": {
  3464. "brainmaestro/composer-git-hooks": "^2.7",
  3465. "friendsofphp/php-cs-fixer": "^2.16",
  3466. "phpunit/phpunit": "~8.0"
  3467. },
  3468. "type": "library",
  3469. "extra": {
  3470. "hooks": {
  3471. "pre-commit": [
  3472. "composer test",
  3473. "composer fix-style"
  3474. ],
  3475. "pre-push": [
  3476. "composer test",
  3477. "composer check-style"
  3478. ]
  3479. }
  3480. },
  3481. "autoload": {
  3482. "psr-4": {
  3483. "Overtrue\\Pinyin\\": "src/"
  3484. },
  3485. "files": [
  3486. "src/const.php"
  3487. ]
  3488. },
  3489. "notification-url": "https://packagist.org/downloads/",
  3490. "license": [
  3491. "MIT"
  3492. ],
  3493. "authors": [
  3494. {
  3495. "name": "overtrue",
  3496. "email": "anzhengchao@gmail.com",
  3497. "homepage": "http://github.com/overtrue"
  3498. }
  3499. ],
  3500. "description": "Chinese to pinyin translator.",
  3501. "homepage": "https://github.com/overtrue/pinyin",
  3502. "keywords": [
  3503. "Chinese",
  3504. "Pinyin",
  3505. "cn2pinyin"
  3506. ],
  3507. "support": {
  3508. "issues": "https://github.com/overtrue/pinyin/issues",
  3509. "source": "https://github.com/overtrue/pinyin/tree/4.0.8"
  3510. },
  3511. "funding": [
  3512. {
  3513. "url": "https://www.patreon.com/overtrue",
  3514. "type": "patreon"
  3515. }
  3516. ],
  3517. "time": "2021-07-19T03:43:32+00:00"
  3518. },
  3519. {
  3520. "name": "paragonie/random_compat",
  3521. "version": "v9.99.100",
  3522. "source": {
  3523. "type": "git",
  3524. "url": "https://github.com/paragonie/random_compat.git",
  3525. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  3526. },
  3527. "dist": {
  3528. "type": "zip",
  3529. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  3530. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  3531. "shasum": "",
  3532. "mirrors": [
  3533. {
  3534. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3535. "preferred": true
  3536. }
  3537. ]
  3538. },
  3539. "require": {
  3540. "php": ">= 7"
  3541. },
  3542. "require-dev": {
  3543. "phpunit/phpunit": "4.*|5.*",
  3544. "vimeo/psalm": "^1"
  3545. },
  3546. "suggest": {
  3547. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  3548. },
  3549. "type": "library",
  3550. "notification-url": "https://packagist.org/downloads/",
  3551. "license": [
  3552. "MIT"
  3553. ],
  3554. "authors": [
  3555. {
  3556. "name": "Paragon Initiative Enterprises",
  3557. "email": "security@paragonie.com",
  3558. "homepage": "https://paragonie.com"
  3559. }
  3560. ],
  3561. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  3562. "keywords": [
  3563. "csprng",
  3564. "polyfill",
  3565. "pseudorandom",
  3566. "random"
  3567. ],
  3568. "support": {
  3569. "email": "info@paragonie.com",
  3570. "issues": "https://github.com/paragonie/random_compat/issues",
  3571. "source": "https://github.com/paragonie/random_compat"
  3572. },
  3573. "time": "2020-10-15T08:29:30+00:00"
  3574. },
  3575. {
  3576. "name": "paragonie/sodium_compat",
  3577. "version": "v1.17.0",
  3578. "source": {
  3579. "type": "git",
  3580. "url": "https://github.com/paragonie/sodium_compat.git",
  3581. "reference": "c59cac21abbcc0df06a3dd18076450ea4797b321"
  3582. },
  3583. "dist": {
  3584. "type": "zip",
  3585. "url": "https://api.github.com/repos/paragonie/sodium_compat/zipball/c59cac21abbcc0df06a3dd18076450ea4797b321",
  3586. "reference": "c59cac21abbcc0df06a3dd18076450ea4797b321",
  3587. "shasum": "",
  3588. "mirrors": [
  3589. {
  3590. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3591. "preferred": true
  3592. }
  3593. ]
  3594. },
  3595. "require": {
  3596. "paragonie/random_compat": ">=1",
  3597. "php": "^5.2.4|^5.3|^5.4|^5.5|^5.6|^7|^8"
  3598. },
  3599. "require-dev": {
  3600. "phpunit/phpunit": "^3|^4|^5|^6|^7|^8|^9"
  3601. },
  3602. "suggest": {
  3603. "ext-libsodium": "PHP < 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security.",
  3604. "ext-sodium": "PHP >= 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security."
  3605. },
  3606. "type": "library",
  3607. "autoload": {
  3608. "files": [
  3609. "autoload.php"
  3610. ]
  3611. },
  3612. "notification-url": "https://packagist.org/downloads/",
  3613. "license": [
  3614. "ISC"
  3615. ],
  3616. "authors": [
  3617. {
  3618. "name": "Paragon Initiative Enterprises",
  3619. "email": "security@paragonie.com"
  3620. },
  3621. {
  3622. "name": "Frank Denis",
  3623. "email": "jedisct1@pureftpd.org"
  3624. }
  3625. ],
  3626. "description": "Pure PHP implementation of libsodium; uses the PHP extension if it exists",
  3627. "keywords": [
  3628. "Authentication",
  3629. "BLAKE2b",
  3630. "ChaCha20",
  3631. "ChaCha20-Poly1305",
  3632. "Chapoly",
  3633. "Curve25519",
  3634. "Ed25519",
  3635. "EdDSA",
  3636. "Edwards-curve Digital Signature Algorithm",
  3637. "Elliptic Curve Diffie-Hellman",
  3638. "Poly1305",
  3639. "Pure-PHP cryptography",
  3640. "RFC 7748",
  3641. "RFC 8032",
  3642. "Salpoly",
  3643. "Salsa20",
  3644. "X25519",
  3645. "XChaCha20-Poly1305",
  3646. "XSalsa20-Poly1305",
  3647. "Xchacha20",
  3648. "Xsalsa20",
  3649. "aead",
  3650. "cryptography",
  3651. "ecdh",
  3652. "elliptic curve",
  3653. "elliptic curve cryptography",
  3654. "encryption",
  3655. "libsodium",
  3656. "php",
  3657. "public-key cryptography",
  3658. "secret-key cryptography",
  3659. "side-channel resistant"
  3660. ],
  3661. "support": {
  3662. "issues": "https://github.com/paragonie/sodium_compat/issues",
  3663. "source": "https://github.com/paragonie/sodium_compat/tree/v1.17.0"
  3664. },
  3665. "time": "2021-08-10T02:43:50+00:00"
  3666. },
  3667. {
  3668. "name": "phpoffice/phpspreadsheet",
  3669. "version": "1.19.0",
  3670. "source": {
  3671. "type": "git",
  3672. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  3673. "reference": "a9ab55bfae02eecffb3df669a2e19ba0e2f04bbf"
  3674. },
  3675. "dist": {
  3676. "type": "zip",
  3677. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/a9ab55bfae02eecffb3df669a2e19ba0e2f04bbf",
  3678. "reference": "a9ab55bfae02eecffb3df669a2e19ba0e2f04bbf",
  3679. "shasum": "",
  3680. "mirrors": [
  3681. {
  3682. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3683. "preferred": true
  3684. }
  3685. ]
  3686. },
  3687. "require": {
  3688. "ext-ctype": "*",
  3689. "ext-dom": "*",
  3690. "ext-fileinfo": "*",
  3691. "ext-gd": "*",
  3692. "ext-iconv": "*",
  3693. "ext-libxml": "*",
  3694. "ext-mbstring": "*",
  3695. "ext-simplexml": "*",
  3696. "ext-xml": "*",
  3697. "ext-xmlreader": "*",
  3698. "ext-xmlwriter": "*",
  3699. "ext-zip": "*",
  3700. "ext-zlib": "*",
  3701. "ezyang/htmlpurifier": "^4.13",
  3702. "maennchen/zipstream-php": "^2.1",
  3703. "markbaker/complex": "^3.0",
  3704. "markbaker/matrix": "^3.0",
  3705. "php": "^7.2 || ^8.0",
  3706. "psr/http-client": "^1.0",
  3707. "psr/http-factory": "^1.0",
  3708. "psr/simple-cache": "^1.0"
  3709. },
  3710. "require-dev": {
  3711. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  3712. "dompdf/dompdf": "^1.0",
  3713. "friendsofphp/php-cs-fixer": "^2.18",
  3714. "jpgraph/jpgraph": "^4.0",
  3715. "mpdf/mpdf": "^8.0",
  3716. "phpcompatibility/php-compatibility": "^9.3",
  3717. "phpstan/phpstan": "^0.12.82",
  3718. "phpstan/phpstan-phpunit": "^0.12.18",
  3719. "phpunit/phpunit": "^8.5",
  3720. "squizlabs/php_codesniffer": "^3.5",
  3721. "tecnickcom/tcpdf": "^6.3"
  3722. },
  3723. "suggest": {
  3724. "dompdf/dompdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)",
  3725. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  3726. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  3727. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)"
  3728. },
  3729. "type": "library",
  3730. "autoload": {
  3731. "psr-4": {
  3732. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  3733. }
  3734. },
  3735. "notification-url": "https://packagist.org/downloads/",
  3736. "license": [
  3737. "MIT"
  3738. ],
  3739. "authors": [
  3740. {
  3741. "name": "Maarten Balliauw",
  3742. "homepage": "https://blog.maartenballiauw.be"
  3743. },
  3744. {
  3745. "name": "Mark Baker",
  3746. "homepage": "https://markbakeruk.net"
  3747. },
  3748. {
  3749. "name": "Franck Lefevre",
  3750. "homepage": "https://rootslabs.net"
  3751. },
  3752. {
  3753. "name": "Erik Tilt"
  3754. },
  3755. {
  3756. "name": "Adrien Crivelli"
  3757. }
  3758. ],
  3759. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  3760. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  3761. "keywords": [
  3762. "OpenXML",
  3763. "excel",
  3764. "gnumeric",
  3765. "ods",
  3766. "php",
  3767. "spreadsheet",
  3768. "xls",
  3769. "xlsx"
  3770. ],
  3771. "support": {
  3772. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  3773. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.19.0"
  3774. },
  3775. "time": "2021-10-31T15:09:20+00:00"
  3776. },
  3777. {
  3778. "name": "phpoption/phpoption",
  3779. "version": "1.8.0",
  3780. "source": {
  3781. "type": "git",
  3782. "url": "https://github.com/schmittjoh/php-option.git",
  3783. "reference": "5455cb38aed4523f99977c4a12ef19da4bfe2a28"
  3784. },
  3785. "dist": {
  3786. "type": "zip",
  3787. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/5455cb38aed4523f99977c4a12ef19da4bfe2a28",
  3788. "reference": "5455cb38aed4523f99977c4a12ef19da4bfe2a28",
  3789. "shasum": "",
  3790. "mirrors": [
  3791. {
  3792. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3793. "preferred": true
  3794. }
  3795. ]
  3796. },
  3797. "require": {
  3798. "php": "^7.0 || ^8.0"
  3799. },
  3800. "require-dev": {
  3801. "bamarni/composer-bin-plugin": "^1.4.1",
  3802. "phpunit/phpunit": "^6.5.14 || ^7.0.20 || ^8.5.19 || ^9.5.8"
  3803. },
  3804. "type": "library",
  3805. "extra": {
  3806. "branch-alias": {
  3807. "dev-master": "1.8-dev"
  3808. }
  3809. },
  3810. "autoload": {
  3811. "psr-4": {
  3812. "PhpOption\\": "src/PhpOption/"
  3813. }
  3814. },
  3815. "notification-url": "https://packagist.org/downloads/",
  3816. "license": [
  3817. "Apache-2.0"
  3818. ],
  3819. "authors": [
  3820. {
  3821. "name": "Johannes M. Schmitt",
  3822. "email": "schmittjoh@gmail.com"
  3823. },
  3824. {
  3825. "name": "Graham Campbell",
  3826. "email": "hello@gjcampbell.co.uk"
  3827. }
  3828. ],
  3829. "description": "Option Type for PHP",
  3830. "keywords": [
  3831. "language",
  3832. "option",
  3833. "php",
  3834. "type"
  3835. ],
  3836. "support": {
  3837. "issues": "https://github.com/schmittjoh/php-option/issues",
  3838. "source": "https://github.com/schmittjoh/php-option/tree/1.8.0"
  3839. },
  3840. "funding": [
  3841. {
  3842. "url": "https://github.com/GrahamCampbell",
  3843. "type": "github"
  3844. },
  3845. {
  3846. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  3847. "type": "tidelift"
  3848. }
  3849. ],
  3850. "time": "2021-08-28T21:27:29+00:00"
  3851. },
  3852. {
  3853. "name": "picqer/php-barcode-generator",
  3854. "version": "v2.2.0",
  3855. "source": {
  3856. "type": "git",
  3857. "url": "https://github.com/picqer/php-barcode-generator.git",
  3858. "reference": "7df93b40099e5fefad055543320a36b80dccda05"
  3859. },
  3860. "dist": {
  3861. "type": "zip",
  3862. "url": "https://api.github.com/repos/picqer/php-barcode-generator/zipball/7df93b40099e5fefad055543320a36b80dccda05",
  3863. "reference": "7df93b40099e5fefad055543320a36b80dccda05",
  3864. "shasum": "",
  3865. "mirrors": [
  3866. {
  3867. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3868. "preferred": true
  3869. }
  3870. ]
  3871. },
  3872. "require": {
  3873. "ext-mbstring": "*",
  3874. "php": "^7.3|^8.0"
  3875. },
  3876. "require-dev": {
  3877. "phpunit/phpunit": "^9.5"
  3878. },
  3879. "suggest": {
  3880. "ext-bcmath": "Barcode IMB (Intelligent Mail Barcode) needs bcmath extension",
  3881. "ext-gd": "For JPG and PNG generators, GD or Imagick is required",
  3882. "ext-imagick": "For JPG and PNG generators, GD or Imagick is required"
  3883. },
  3884. "type": "library",
  3885. "autoload": {
  3886. "psr-4": {
  3887. "Picqer\\Barcode\\": "src"
  3888. }
  3889. },
  3890. "notification-url": "https://packagist.org/downloads/",
  3891. "license": [
  3892. "LGPL-3.0-or-later"
  3893. ],
  3894. "authors": [
  3895. {
  3896. "name": "Nicola Asuni",
  3897. "email": "info@tecnick.com",
  3898. "homepage": "http://nicolaasuni.tecnick.com"
  3899. },
  3900. {
  3901. "name": "Casper Bakker",
  3902. "email": "info@picqer.com",
  3903. "homepage": "https://picqer.com"
  3904. }
  3905. ],
  3906. "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.",
  3907. "homepage": "https://github.com/picqer/php-barcode-generator",
  3908. "keywords": [
  3909. "CODABAR",
  3910. "Code11",
  3911. "Code93",
  3912. "EAN13",
  3913. "KIX",
  3914. "KIXCODE",
  3915. "MSI",
  3916. "POSTNET",
  3917. "Pharma",
  3918. "Standard 2 of 5",
  3919. "barcode",
  3920. "barcode generator",
  3921. "code128",
  3922. "code39",
  3923. "ean",
  3924. "html",
  3925. "jpeg",
  3926. "jpg",
  3927. "php",
  3928. "png",
  3929. "svg",
  3930. "upc"
  3931. ],
  3932. "support": {
  3933. "issues": "https://github.com/picqer/php-barcode-generator/issues",
  3934. "source": "https://github.com/picqer/php-barcode-generator/tree/v2.2.0"
  3935. },
  3936. "funding": [
  3937. {
  3938. "url": "https://github.com/casperbakker",
  3939. "type": "github"
  3940. }
  3941. ],
  3942. "time": "2021-03-27T09:06:22+00:00"
  3943. },
  3944. {
  3945. "name": "predis/predis",
  3946. "version": "v1.1.9",
  3947. "source": {
  3948. "type": "git",
  3949. "url": "https://github.com/predis/predis.git",
  3950. "reference": "c50c3393bb9f47fa012d0cdfb727a266b0818259"
  3951. },
  3952. "dist": {
  3953. "type": "zip",
  3954. "url": "https://api.github.com/repos/predis/predis/zipball/c50c3393bb9f47fa012d0cdfb727a266b0818259",
  3955. "reference": "c50c3393bb9f47fa012d0cdfb727a266b0818259",
  3956. "shasum": "",
  3957. "mirrors": [
  3958. {
  3959. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3960. "preferred": true
  3961. }
  3962. ]
  3963. },
  3964. "require": {
  3965. "php": ">=5.3.9"
  3966. },
  3967. "require-dev": {
  3968. "phpunit/phpunit": "~4.8"
  3969. },
  3970. "suggest": {
  3971. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  3972. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  3973. },
  3974. "type": "library",
  3975. "autoload": {
  3976. "psr-4": {
  3977. "Predis\\": "src/"
  3978. }
  3979. },
  3980. "notification-url": "https://packagist.org/downloads/",
  3981. "license": [
  3982. "MIT"
  3983. ],
  3984. "authors": [
  3985. {
  3986. "name": "Daniele Alessandri",
  3987. "email": "suppakilla@gmail.com",
  3988. "homepage": "http://clorophilla.net",
  3989. "role": "Creator & Maintainer"
  3990. },
  3991. {
  3992. "name": "Till Krüss",
  3993. "homepage": "https://till.im",
  3994. "role": "Maintainer"
  3995. }
  3996. ],
  3997. "description": "Flexible and feature-complete Redis client for PHP and HHVM",
  3998. "homepage": "http://github.com/predis/predis",
  3999. "keywords": [
  4000. "nosql",
  4001. "predis",
  4002. "redis"
  4003. ],
  4004. "support": {
  4005. "issues": "https://github.com/predis/predis/issues",
  4006. "source": "https://github.com/predis/predis/tree/v1.1.9"
  4007. },
  4008. "funding": [
  4009. {
  4010. "url": "https://github.com/sponsors/tillkruss",
  4011. "type": "github"
  4012. }
  4013. ],
  4014. "time": "2021-10-05T19:02:38+00:00"
  4015. },
  4016. {
  4017. "name": "psr/container",
  4018. "version": "1.1.2",
  4019. "source": {
  4020. "type": "git",
  4021. "url": "https://github.com/php-fig/container.git",
  4022. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  4023. },
  4024. "dist": {
  4025. "type": "zip",
  4026. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  4027. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  4028. "shasum": "",
  4029. "mirrors": [
  4030. {
  4031. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4032. "preferred": true
  4033. }
  4034. ]
  4035. },
  4036. "require": {
  4037. "php": ">=7.4.0"
  4038. },
  4039. "type": "library",
  4040. "autoload": {
  4041. "psr-4": {
  4042. "Psr\\Container\\": "src/"
  4043. }
  4044. },
  4045. "notification-url": "https://packagist.org/downloads/",
  4046. "license": [
  4047. "MIT"
  4048. ],
  4049. "authors": [
  4050. {
  4051. "name": "PHP-FIG",
  4052. "homepage": "https://www.php-fig.org/"
  4053. }
  4054. ],
  4055. "description": "Common Container Interface (PHP FIG PSR-11)",
  4056. "homepage": "https://github.com/php-fig/container",
  4057. "keywords": [
  4058. "PSR-11",
  4059. "container",
  4060. "container-interface",
  4061. "container-interop",
  4062. "psr"
  4063. ],
  4064. "support": {
  4065. "issues": "https://github.com/php-fig/container/issues",
  4066. "source": "https://github.com/php-fig/container/tree/1.1.2"
  4067. },
  4068. "time": "2021-11-05T16:50:12+00:00"
  4069. },
  4070. {
  4071. "name": "psr/event-dispatcher",
  4072. "version": "1.0.0",
  4073. "source": {
  4074. "type": "git",
  4075. "url": "https://github.com/php-fig/event-dispatcher.git",
  4076. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  4077. },
  4078. "dist": {
  4079. "type": "zip",
  4080. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4081. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4082. "shasum": "",
  4083. "mirrors": [
  4084. {
  4085. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4086. "preferred": true
  4087. }
  4088. ]
  4089. },
  4090. "require": {
  4091. "php": ">=7.2.0"
  4092. },
  4093. "type": "library",
  4094. "extra": {
  4095. "branch-alias": {
  4096. "dev-master": "1.0.x-dev"
  4097. }
  4098. },
  4099. "autoload": {
  4100. "psr-4": {
  4101. "Psr\\EventDispatcher\\": "src/"
  4102. }
  4103. },
  4104. "notification-url": "https://packagist.org/downloads/",
  4105. "license": [
  4106. "MIT"
  4107. ],
  4108. "authors": [
  4109. {
  4110. "name": "PHP-FIG",
  4111. "homepage": "http://www.php-fig.org/"
  4112. }
  4113. ],
  4114. "description": "Standard interfaces for event handling.",
  4115. "keywords": [
  4116. "events",
  4117. "psr",
  4118. "psr-14"
  4119. ],
  4120. "support": {
  4121. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  4122. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  4123. },
  4124. "time": "2019-01-08T18:20:26+00:00"
  4125. },
  4126. {
  4127. "name": "psr/http-client",
  4128. "version": "1.0.1",
  4129. "source": {
  4130. "type": "git",
  4131. "url": "https://github.com/php-fig/http-client.git",
  4132. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  4133. },
  4134. "dist": {
  4135. "type": "zip",
  4136. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  4137. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  4138. "shasum": "",
  4139. "mirrors": [
  4140. {
  4141. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4142. "preferred": true
  4143. }
  4144. ]
  4145. },
  4146. "require": {
  4147. "php": "^7.0 || ^8.0",
  4148. "psr/http-message": "^1.0"
  4149. },
  4150. "type": "library",
  4151. "extra": {
  4152. "branch-alias": {
  4153. "dev-master": "1.0.x-dev"
  4154. }
  4155. },
  4156. "autoload": {
  4157. "psr-4": {
  4158. "Psr\\Http\\Client\\": "src/"
  4159. }
  4160. },
  4161. "notification-url": "https://packagist.org/downloads/",
  4162. "license": [
  4163. "MIT"
  4164. ],
  4165. "authors": [
  4166. {
  4167. "name": "PHP-FIG",
  4168. "homepage": "http://www.php-fig.org/"
  4169. }
  4170. ],
  4171. "description": "Common interface for HTTP clients",
  4172. "homepage": "https://github.com/php-fig/http-client",
  4173. "keywords": [
  4174. "http",
  4175. "http-client",
  4176. "psr",
  4177. "psr-18"
  4178. ],
  4179. "support": {
  4180. "source": "https://github.com/php-fig/http-client/tree/master"
  4181. },
  4182. "time": "2020-06-29T06:28:15+00:00"
  4183. },
  4184. {
  4185. "name": "psr/http-factory",
  4186. "version": "1.0.1",
  4187. "source": {
  4188. "type": "git",
  4189. "url": "https://github.com/php-fig/http-factory.git",
  4190. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  4191. },
  4192. "dist": {
  4193. "type": "zip",
  4194. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  4195. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  4196. "shasum": "",
  4197. "mirrors": [
  4198. {
  4199. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4200. "preferred": true
  4201. }
  4202. ]
  4203. },
  4204. "require": {
  4205. "php": ">=7.0.0",
  4206. "psr/http-message": "^1.0"
  4207. },
  4208. "type": "library",
  4209. "extra": {
  4210. "branch-alias": {
  4211. "dev-master": "1.0.x-dev"
  4212. }
  4213. },
  4214. "autoload": {
  4215. "psr-4": {
  4216. "Psr\\Http\\Message\\": "src/"
  4217. }
  4218. },
  4219. "notification-url": "https://packagist.org/downloads/",
  4220. "license": [
  4221. "MIT"
  4222. ],
  4223. "authors": [
  4224. {
  4225. "name": "PHP-FIG",
  4226. "homepage": "http://www.php-fig.org/"
  4227. }
  4228. ],
  4229. "description": "Common interfaces for PSR-7 HTTP message factories",
  4230. "keywords": [
  4231. "factory",
  4232. "http",
  4233. "message",
  4234. "psr",
  4235. "psr-17",
  4236. "psr-7",
  4237. "request",
  4238. "response"
  4239. ],
  4240. "support": {
  4241. "source": "https://github.com/php-fig/http-factory/tree/master"
  4242. },
  4243. "time": "2019-04-30T12:38:16+00:00"
  4244. },
  4245. {
  4246. "name": "psr/http-message",
  4247. "version": "1.0.1",
  4248. "source": {
  4249. "type": "git",
  4250. "url": "https://github.com/php-fig/http-message.git",
  4251. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  4252. },
  4253. "dist": {
  4254. "type": "zip",
  4255. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  4256. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  4257. "shasum": "",
  4258. "mirrors": [
  4259. {
  4260. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4261. "preferred": true
  4262. }
  4263. ]
  4264. },
  4265. "require": {
  4266. "php": ">=5.3.0"
  4267. },
  4268. "type": "library",
  4269. "extra": {
  4270. "branch-alias": {
  4271. "dev-master": "1.0.x-dev"
  4272. }
  4273. },
  4274. "autoload": {
  4275. "psr-4": {
  4276. "Psr\\Http\\Message\\": "src/"
  4277. }
  4278. },
  4279. "notification-url": "https://packagist.org/downloads/",
  4280. "license": [
  4281. "MIT"
  4282. ],
  4283. "authors": [
  4284. {
  4285. "name": "PHP-FIG",
  4286. "homepage": "http://www.php-fig.org/"
  4287. }
  4288. ],
  4289. "description": "Common interface for HTTP messages",
  4290. "homepage": "https://github.com/php-fig/http-message",
  4291. "keywords": [
  4292. "http",
  4293. "http-message",
  4294. "psr",
  4295. "psr-7",
  4296. "request",
  4297. "response"
  4298. ],
  4299. "support": {
  4300. "source": "https://github.com/php-fig/http-message/tree/master"
  4301. },
  4302. "time": "2016-08-06T14:39:51+00:00"
  4303. },
  4304. {
  4305. "name": "psr/log",
  4306. "version": "1.1.4",
  4307. "source": {
  4308. "type": "git",
  4309. "url": "https://github.com/php-fig/log.git",
  4310. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  4311. },
  4312. "dist": {
  4313. "type": "zip",
  4314. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  4315. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  4316. "shasum": "",
  4317. "mirrors": [
  4318. {
  4319. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4320. "preferred": true
  4321. }
  4322. ]
  4323. },
  4324. "require": {
  4325. "php": ">=5.3.0"
  4326. },
  4327. "type": "library",
  4328. "extra": {
  4329. "branch-alias": {
  4330. "dev-master": "1.1.x-dev"
  4331. }
  4332. },
  4333. "autoload": {
  4334. "psr-4": {
  4335. "Psr\\Log\\": "Psr/Log/"
  4336. }
  4337. },
  4338. "notification-url": "https://packagist.org/downloads/",
  4339. "license": [
  4340. "MIT"
  4341. ],
  4342. "authors": [
  4343. {
  4344. "name": "PHP-FIG",
  4345. "homepage": "https://www.php-fig.org/"
  4346. }
  4347. ],
  4348. "description": "Common interface for logging libraries",
  4349. "homepage": "https://github.com/php-fig/log",
  4350. "keywords": [
  4351. "log",
  4352. "psr",
  4353. "psr-3"
  4354. ],
  4355. "support": {
  4356. "source": "https://github.com/php-fig/log/tree/1.1.4"
  4357. },
  4358. "time": "2021-05-03T11:20:27+00:00"
  4359. },
  4360. {
  4361. "name": "psr/simple-cache",
  4362. "version": "1.0.1",
  4363. "source": {
  4364. "type": "git",
  4365. "url": "https://github.com/php-fig/simple-cache.git",
  4366. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  4367. },
  4368. "dist": {
  4369. "type": "zip",
  4370. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4371. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4372. "shasum": "",
  4373. "mirrors": [
  4374. {
  4375. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4376. "preferred": true
  4377. }
  4378. ]
  4379. },
  4380. "require": {
  4381. "php": ">=5.3.0"
  4382. },
  4383. "type": "library",
  4384. "extra": {
  4385. "branch-alias": {
  4386. "dev-master": "1.0.x-dev"
  4387. }
  4388. },
  4389. "autoload": {
  4390. "psr-4": {
  4391. "Psr\\SimpleCache\\": "src/"
  4392. }
  4393. },
  4394. "notification-url": "https://packagist.org/downloads/",
  4395. "license": [
  4396. "MIT"
  4397. ],
  4398. "authors": [
  4399. {
  4400. "name": "PHP-FIG",
  4401. "homepage": "http://www.php-fig.org/"
  4402. }
  4403. ],
  4404. "description": "Common interfaces for simple caching",
  4405. "keywords": [
  4406. "cache",
  4407. "caching",
  4408. "psr",
  4409. "psr-16",
  4410. "simple-cache"
  4411. ],
  4412. "support": {
  4413. "source": "https://github.com/php-fig/simple-cache/tree/master"
  4414. },
  4415. "time": "2017-10-23T01:57:42+00:00"
  4416. },
  4417. {
  4418. "name": "psy/psysh",
  4419. "version": "v0.10.9",
  4420. "source": {
  4421. "type": "git",
  4422. "url": "https://github.com/bobthecow/psysh.git",
  4423. "reference": "01281336c4ae557fe4a994544f30d3a1bc204375"
  4424. },
  4425. "dist": {
  4426. "type": "zip",
  4427. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/01281336c4ae557fe4a994544f30d3a1bc204375",
  4428. "reference": "01281336c4ae557fe4a994544f30d3a1bc204375",
  4429. "shasum": "",
  4430. "mirrors": [
  4431. {
  4432. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4433. "preferred": true
  4434. }
  4435. ]
  4436. },
  4437. "require": {
  4438. "ext-json": "*",
  4439. "ext-tokenizer": "*",
  4440. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  4441. "php": "^8.0 || ^7.0 || ^5.5.9",
  4442. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  4443. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  4444. },
  4445. "require-dev": {
  4446. "bamarni/composer-bin-plugin": "^1.2",
  4447. "hoa/console": "3.17.*"
  4448. },
  4449. "suggest": {
  4450. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4451. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4452. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  4453. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  4454. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  4455. },
  4456. "bin": [
  4457. "bin/psysh"
  4458. ],
  4459. "type": "library",
  4460. "extra": {
  4461. "branch-alias": {
  4462. "dev-main": "0.10.x-dev"
  4463. }
  4464. },
  4465. "autoload": {
  4466. "files": [
  4467. "src/functions.php"
  4468. ],
  4469. "psr-4": {
  4470. "Psy\\": "src/"
  4471. }
  4472. },
  4473. "notification-url": "https://packagist.org/downloads/",
  4474. "license": [
  4475. "MIT"
  4476. ],
  4477. "authors": [
  4478. {
  4479. "name": "Justin Hileman",
  4480. "email": "justin@justinhileman.info",
  4481. "homepage": "http://justinhileman.com"
  4482. }
  4483. ],
  4484. "description": "An interactive shell for modern PHP.",
  4485. "homepage": "http://psysh.org",
  4486. "keywords": [
  4487. "REPL",
  4488. "console",
  4489. "interactive",
  4490. "shell"
  4491. ],
  4492. "support": {
  4493. "issues": "https://github.com/bobthecow/psysh/issues",
  4494. "source": "https://github.com/bobthecow/psysh/tree/v0.10.9"
  4495. },
  4496. "time": "2021-10-10T13:37:39+00:00"
  4497. },
  4498. {
  4499. "name": "pusher/pusher-php-server",
  4500. "version": "v4.1.5",
  4501. "source": {
  4502. "type": "git",
  4503. "url": "https://github.com/pusher/pusher-http-php.git",
  4504. "reference": "251f22602320c1b1aff84798fe74f3f7ee0504a9"
  4505. },
  4506. "dist": {
  4507. "type": "zip",
  4508. "url": "https://api.github.com/repos/pusher/pusher-http-php/zipball/251f22602320c1b1aff84798fe74f3f7ee0504a9",
  4509. "reference": "251f22602320c1b1aff84798fe74f3f7ee0504a9",
  4510. "shasum": "",
  4511. "mirrors": [
  4512. {
  4513. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4514. "preferred": true
  4515. }
  4516. ]
  4517. },
  4518. "require": {
  4519. "ext-curl": "*",
  4520. "paragonie/sodium_compat": "^1.6",
  4521. "php": "^7.1|^8.0",
  4522. "psr/log": "^1.0"
  4523. },
  4524. "require-dev": {
  4525. "phpunit/phpunit": "^7.2|^8.5|^9.3"
  4526. },
  4527. "type": "library",
  4528. "extra": {
  4529. "branch-alias": {
  4530. "dev-master": "3.4-dev"
  4531. }
  4532. },
  4533. "autoload": {
  4534. "psr-4": {
  4535. "Pusher\\": "src/"
  4536. }
  4537. },
  4538. "notification-url": "https://packagist.org/downloads/",
  4539. "license": [
  4540. "MIT"
  4541. ],
  4542. "description": "Library for interacting with the Pusher REST API",
  4543. "keywords": [
  4544. "events",
  4545. "messaging",
  4546. "php-pusher-server",
  4547. "publish",
  4548. "push",
  4549. "pusher",
  4550. "real time",
  4551. "real-time",
  4552. "realtime",
  4553. "rest",
  4554. "trigger"
  4555. ],
  4556. "support": {
  4557. "issues": "https://github.com/pusher/pusher-http-php/issues",
  4558. "source": "https://github.com/pusher/pusher-http-php/tree/v4.1.5"
  4559. },
  4560. "time": "2020-12-09T09:38:19+00:00"
  4561. },
  4562. {
  4563. "name": "ralouphie/getallheaders",
  4564. "version": "3.0.3",
  4565. "source": {
  4566. "type": "git",
  4567. "url": "https://github.com/ralouphie/getallheaders.git",
  4568. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4569. },
  4570. "dist": {
  4571. "type": "zip",
  4572. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4573. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4574. "shasum": "",
  4575. "mirrors": [
  4576. {
  4577. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4578. "preferred": true
  4579. }
  4580. ]
  4581. },
  4582. "require": {
  4583. "php": ">=5.6"
  4584. },
  4585. "require-dev": {
  4586. "php-coveralls/php-coveralls": "^2.1",
  4587. "phpunit/phpunit": "^5 || ^6.5"
  4588. },
  4589. "type": "library",
  4590. "autoload": {
  4591. "files": [
  4592. "src/getallheaders.php"
  4593. ]
  4594. },
  4595. "notification-url": "https://packagist.org/downloads/",
  4596. "license": [
  4597. "MIT"
  4598. ],
  4599. "authors": [
  4600. {
  4601. "name": "Ralph Khattar",
  4602. "email": "ralph.khattar@gmail.com"
  4603. }
  4604. ],
  4605. "description": "A polyfill for getallheaders.",
  4606. "support": {
  4607. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4608. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4609. },
  4610. "time": "2019-03-08T08:55:37+00:00"
  4611. },
  4612. {
  4613. "name": "ramsey/collection",
  4614. "version": "1.2.2",
  4615. "source": {
  4616. "type": "git",
  4617. "url": "https://github.com/ramsey/collection.git",
  4618. "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a"
  4619. },
  4620. "dist": {
  4621. "type": "zip",
  4622. "url": "https://api.github.com/repos/ramsey/collection/zipball/cccc74ee5e328031b15640b51056ee8d3bb66c0a",
  4623. "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a",
  4624. "shasum": "",
  4625. "mirrors": [
  4626. {
  4627. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4628. "preferred": true
  4629. }
  4630. ]
  4631. },
  4632. "require": {
  4633. "php": "^7.3 || ^8",
  4634. "symfony/polyfill-php81": "^1.23"
  4635. },
  4636. "require-dev": {
  4637. "captainhook/captainhook": "^5.3",
  4638. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4639. "ergebnis/composer-normalize": "^2.6",
  4640. "fakerphp/faker": "^1.5",
  4641. "hamcrest/hamcrest-php": "^2",
  4642. "jangregor/phpstan-prophecy": "^0.8",
  4643. "mockery/mockery": "^1.3",
  4644. "phpspec/prophecy-phpunit": "^2.0",
  4645. "phpstan/extension-installer": "^1",
  4646. "phpstan/phpstan": "^0.12.32",
  4647. "phpstan/phpstan-mockery": "^0.12.5",
  4648. "phpstan/phpstan-phpunit": "^0.12.11",
  4649. "phpunit/phpunit": "^8.5 || ^9",
  4650. "psy/psysh": "^0.10.4",
  4651. "slevomat/coding-standard": "^6.3",
  4652. "squizlabs/php_codesniffer": "^3.5",
  4653. "vimeo/psalm": "^4.4"
  4654. },
  4655. "type": "library",
  4656. "autoload": {
  4657. "psr-4": {
  4658. "Ramsey\\Collection\\": "src/"
  4659. }
  4660. },
  4661. "notification-url": "https://packagist.org/downloads/",
  4662. "license": [
  4663. "MIT"
  4664. ],
  4665. "authors": [
  4666. {
  4667. "name": "Ben Ramsey",
  4668. "email": "ben@benramsey.com",
  4669. "homepage": "https://benramsey.com"
  4670. }
  4671. ],
  4672. "description": "A PHP library for representing and manipulating collections.",
  4673. "keywords": [
  4674. "array",
  4675. "collection",
  4676. "hash",
  4677. "map",
  4678. "queue",
  4679. "set"
  4680. ],
  4681. "support": {
  4682. "issues": "https://github.com/ramsey/collection/issues",
  4683. "source": "https://github.com/ramsey/collection/tree/1.2.2"
  4684. },
  4685. "funding": [
  4686. {
  4687. "url": "https://github.com/ramsey",
  4688. "type": "github"
  4689. },
  4690. {
  4691. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4692. "type": "tidelift"
  4693. }
  4694. ],
  4695. "time": "2021-10-10T03:01:02+00:00"
  4696. },
  4697. {
  4698. "name": "ramsey/uuid",
  4699. "version": "4.2.3",
  4700. "source": {
  4701. "type": "git",
  4702. "url": "https://github.com/ramsey/uuid.git",
  4703. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df"
  4704. },
  4705. "dist": {
  4706. "type": "zip",
  4707. "url": "https://api.github.com/repos/ramsey/uuid/zipball/fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  4708. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  4709. "shasum": "",
  4710. "mirrors": [
  4711. {
  4712. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4713. "preferred": true
  4714. }
  4715. ]
  4716. },
  4717. "require": {
  4718. "brick/math": "^0.8 || ^0.9",
  4719. "ext-json": "*",
  4720. "php": "^7.2 || ^8.0",
  4721. "ramsey/collection": "^1.0",
  4722. "symfony/polyfill-ctype": "^1.8",
  4723. "symfony/polyfill-php80": "^1.14"
  4724. },
  4725. "replace": {
  4726. "rhumsaa/uuid": "self.version"
  4727. },
  4728. "require-dev": {
  4729. "captainhook/captainhook": "^5.10",
  4730. "captainhook/plugin-composer": "^5.3",
  4731. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4732. "doctrine/annotations": "^1.8",
  4733. "ergebnis/composer-normalize": "^2.15",
  4734. "mockery/mockery": "^1.3",
  4735. "moontoast/math": "^1.1",
  4736. "paragonie/random-lib": "^2",
  4737. "php-mock/php-mock": "^2.2",
  4738. "php-mock/php-mock-mockery": "^1.3",
  4739. "php-parallel-lint/php-parallel-lint": "^1.1",
  4740. "phpbench/phpbench": "^1.0",
  4741. "phpstan/extension-installer": "^1.0",
  4742. "phpstan/phpstan": "^0.12",
  4743. "phpstan/phpstan-mockery": "^0.12",
  4744. "phpstan/phpstan-phpunit": "^0.12",
  4745. "phpunit/phpunit": "^8.5 || ^9",
  4746. "slevomat/coding-standard": "^7.0",
  4747. "squizlabs/php_codesniffer": "^3.5",
  4748. "vimeo/psalm": "^4.9"
  4749. },
  4750. "suggest": {
  4751. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4752. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  4753. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4754. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4755. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4756. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4757. },
  4758. "type": "library",
  4759. "extra": {
  4760. "branch-alias": {
  4761. "dev-main": "4.x-dev"
  4762. },
  4763. "captainhook": {
  4764. "force-install": true
  4765. }
  4766. },
  4767. "autoload": {
  4768. "psr-4": {
  4769. "Ramsey\\Uuid\\": "src/"
  4770. },
  4771. "files": [
  4772. "src/functions.php"
  4773. ]
  4774. },
  4775. "notification-url": "https://packagist.org/downloads/",
  4776. "license": [
  4777. "MIT"
  4778. ],
  4779. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4780. "keywords": [
  4781. "guid",
  4782. "identifier",
  4783. "uuid"
  4784. ],
  4785. "support": {
  4786. "issues": "https://github.com/ramsey/uuid/issues",
  4787. "source": "https://github.com/ramsey/uuid/tree/4.2.3"
  4788. },
  4789. "funding": [
  4790. {
  4791. "url": "https://github.com/ramsey",
  4792. "type": "github"
  4793. },
  4794. {
  4795. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  4796. "type": "tidelift"
  4797. }
  4798. ],
  4799. "time": "2021-09-25T23:10:38+00:00"
  4800. },
  4801. {
  4802. "name": "swiftmailer/swiftmailer",
  4803. "version": "v6.3.0",
  4804. "source": {
  4805. "type": "git",
  4806. "url": "https://github.com/swiftmailer/swiftmailer.git",
  4807. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c"
  4808. },
  4809. "dist": {
  4810. "type": "zip",
  4811. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c",
  4812. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  4813. "shasum": "",
  4814. "mirrors": [
  4815. {
  4816. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4817. "preferred": true
  4818. }
  4819. ]
  4820. },
  4821. "require": {
  4822. "egulias/email-validator": "^2.0|^3.1",
  4823. "php": ">=7.0.0",
  4824. "symfony/polyfill-iconv": "^1.0",
  4825. "symfony/polyfill-intl-idn": "^1.10",
  4826. "symfony/polyfill-mbstring": "^1.0"
  4827. },
  4828. "require-dev": {
  4829. "mockery/mockery": "^1.0",
  4830. "symfony/phpunit-bridge": "^4.4|^5.4"
  4831. },
  4832. "suggest": {
  4833. "ext-intl": "Needed to support internationalized email addresses"
  4834. },
  4835. "type": "library",
  4836. "extra": {
  4837. "branch-alias": {
  4838. "dev-master": "6.2-dev"
  4839. }
  4840. },
  4841. "autoload": {
  4842. "files": [
  4843. "lib/swift_required.php"
  4844. ]
  4845. },
  4846. "notification-url": "https://packagist.org/downloads/",
  4847. "license": [
  4848. "MIT"
  4849. ],
  4850. "authors": [
  4851. {
  4852. "name": "Chris Corbyn"
  4853. },
  4854. {
  4855. "name": "Fabien Potencier",
  4856. "email": "fabien@symfony.com"
  4857. }
  4858. ],
  4859. "description": "Swiftmailer, free feature-rich PHP mailer",
  4860. "homepage": "https://swiftmailer.symfony.com",
  4861. "keywords": [
  4862. "email",
  4863. "mail",
  4864. "mailer"
  4865. ],
  4866. "support": {
  4867. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  4868. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0"
  4869. },
  4870. "funding": [
  4871. {
  4872. "url": "https://github.com/fabpot",
  4873. "type": "github"
  4874. },
  4875. {
  4876. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  4877. "type": "tidelift"
  4878. }
  4879. ],
  4880. "time": "2021-10-18T15:26:12+00:00"
  4881. },
  4882. {
  4883. "name": "symfony/console",
  4884. "version": "v5.3.10",
  4885. "source": {
  4886. "type": "git",
  4887. "url": "https://github.com/symfony/console.git",
  4888. "reference": "d4e409d9fbcfbf71af0e5a940abb7b0b4bad0bd3"
  4889. },
  4890. "dist": {
  4891. "type": "zip",
  4892. "url": "https://api.github.com/repos/symfony/console/zipball/d4e409d9fbcfbf71af0e5a940abb7b0b4bad0bd3",
  4893. "reference": "d4e409d9fbcfbf71af0e5a940abb7b0b4bad0bd3",
  4894. "shasum": "",
  4895. "mirrors": [
  4896. {
  4897. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4898. "preferred": true
  4899. }
  4900. ]
  4901. },
  4902. "require": {
  4903. "php": ">=7.2.5",
  4904. "symfony/deprecation-contracts": "^2.1",
  4905. "symfony/polyfill-mbstring": "~1.0",
  4906. "symfony/polyfill-php73": "^1.8",
  4907. "symfony/polyfill-php80": "^1.16",
  4908. "symfony/service-contracts": "^1.1|^2",
  4909. "symfony/string": "^5.1"
  4910. },
  4911. "conflict": {
  4912. "psr/log": ">=3",
  4913. "symfony/dependency-injection": "<4.4",
  4914. "symfony/dotenv": "<5.1",
  4915. "symfony/event-dispatcher": "<4.4",
  4916. "symfony/lock": "<4.4",
  4917. "symfony/process": "<4.4"
  4918. },
  4919. "provide": {
  4920. "psr/log-implementation": "1.0|2.0"
  4921. },
  4922. "require-dev": {
  4923. "psr/log": "^1|^2",
  4924. "symfony/config": "^4.4|^5.0",
  4925. "symfony/dependency-injection": "^4.4|^5.0",
  4926. "symfony/event-dispatcher": "^4.4|^5.0",
  4927. "symfony/lock": "^4.4|^5.0",
  4928. "symfony/process": "^4.4|^5.0",
  4929. "symfony/var-dumper": "^4.4|^5.0"
  4930. },
  4931. "suggest": {
  4932. "psr/log": "For using the console logger",
  4933. "symfony/event-dispatcher": "",
  4934. "symfony/lock": "",
  4935. "symfony/process": ""
  4936. },
  4937. "type": "library",
  4938. "autoload": {
  4939. "psr-4": {
  4940. "Symfony\\Component\\Console\\": ""
  4941. },
  4942. "exclude-from-classmap": [
  4943. "/Tests/"
  4944. ]
  4945. },
  4946. "notification-url": "https://packagist.org/downloads/",
  4947. "license": [
  4948. "MIT"
  4949. ],
  4950. "authors": [
  4951. {
  4952. "name": "Fabien Potencier",
  4953. "email": "fabien@symfony.com"
  4954. },
  4955. {
  4956. "name": "Symfony Community",
  4957. "homepage": "https://symfony.com/contributors"
  4958. }
  4959. ],
  4960. "description": "Eases the creation of beautiful and testable command line interfaces",
  4961. "homepage": "https://symfony.com",
  4962. "keywords": [
  4963. "cli",
  4964. "command line",
  4965. "console",
  4966. "terminal"
  4967. ],
  4968. "support": {
  4969. "source": "https://github.com/symfony/console/tree/v5.3.10"
  4970. },
  4971. "funding": [
  4972. {
  4973. "url": "https://symfony.com/sponsor",
  4974. "type": "custom"
  4975. },
  4976. {
  4977. "url": "https://github.com/fabpot",
  4978. "type": "github"
  4979. },
  4980. {
  4981. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4982. "type": "tidelift"
  4983. }
  4984. ],
  4985. "time": "2021-10-26T09:30:15+00:00"
  4986. },
  4987. {
  4988. "name": "symfony/css-selector",
  4989. "version": "v5.3.4",
  4990. "source": {
  4991. "type": "git",
  4992. "url": "https://github.com/symfony/css-selector.git",
  4993. "reference": "7fb120adc7f600a59027775b224c13a33530dd90"
  4994. },
  4995. "dist": {
  4996. "type": "zip",
  4997. "url": "https://api.github.com/repos/symfony/css-selector/zipball/7fb120adc7f600a59027775b224c13a33530dd90",
  4998. "reference": "7fb120adc7f600a59027775b224c13a33530dd90",
  4999. "shasum": "",
  5000. "mirrors": [
  5001. {
  5002. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5003. "preferred": true
  5004. }
  5005. ]
  5006. },
  5007. "require": {
  5008. "php": ">=7.2.5",
  5009. "symfony/polyfill-php80": "^1.16"
  5010. },
  5011. "type": "library",
  5012. "autoload": {
  5013. "psr-4": {
  5014. "Symfony\\Component\\CssSelector\\": ""
  5015. },
  5016. "exclude-from-classmap": [
  5017. "/Tests/"
  5018. ]
  5019. },
  5020. "notification-url": "https://packagist.org/downloads/",
  5021. "license": [
  5022. "MIT"
  5023. ],
  5024. "authors": [
  5025. {
  5026. "name": "Fabien Potencier",
  5027. "email": "fabien@symfony.com"
  5028. },
  5029. {
  5030. "name": "Jean-François Simon",
  5031. "email": "jeanfrancois.simon@sensiolabs.com"
  5032. },
  5033. {
  5034. "name": "Symfony Community",
  5035. "homepage": "https://symfony.com/contributors"
  5036. }
  5037. ],
  5038. "description": "Converts CSS selectors to XPath expressions",
  5039. "homepage": "https://symfony.com",
  5040. "support": {
  5041. "source": "https://github.com/symfony/css-selector/tree/v5.3.4"
  5042. },
  5043. "funding": [
  5044. {
  5045. "url": "https://symfony.com/sponsor",
  5046. "type": "custom"
  5047. },
  5048. {
  5049. "url": "https://github.com/fabpot",
  5050. "type": "github"
  5051. },
  5052. {
  5053. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5054. "type": "tidelift"
  5055. }
  5056. ],
  5057. "time": "2021-07-21T12:38:00+00:00"
  5058. },
  5059. {
  5060. "name": "symfony/deprecation-contracts",
  5061. "version": "v2.4.0",
  5062. "source": {
  5063. "type": "git",
  5064. "url": "https://github.com/symfony/deprecation-contracts.git",
  5065. "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627"
  5066. },
  5067. "dist": {
  5068. "type": "zip",
  5069. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5f38c8804a9e97d23e0c8d63341088cd8a22d627",
  5070. "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627",
  5071. "shasum": "",
  5072. "mirrors": [
  5073. {
  5074. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5075. "preferred": true
  5076. }
  5077. ]
  5078. },
  5079. "require": {
  5080. "php": ">=7.1"
  5081. },
  5082. "type": "library",
  5083. "extra": {
  5084. "branch-alias": {
  5085. "dev-main": "2.4-dev"
  5086. },
  5087. "thanks": {
  5088. "name": "symfony/contracts",
  5089. "url": "https://github.com/symfony/contracts"
  5090. }
  5091. },
  5092. "autoload": {
  5093. "files": [
  5094. "function.php"
  5095. ]
  5096. },
  5097. "notification-url": "https://packagist.org/downloads/",
  5098. "license": [
  5099. "MIT"
  5100. ],
  5101. "authors": [
  5102. {
  5103. "name": "Nicolas Grekas",
  5104. "email": "p@tchwork.com"
  5105. },
  5106. {
  5107. "name": "Symfony Community",
  5108. "homepage": "https://symfony.com/contributors"
  5109. }
  5110. ],
  5111. "description": "A generic function and convention to trigger deprecation notices",
  5112. "homepage": "https://symfony.com",
  5113. "support": {
  5114. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.4.0"
  5115. },
  5116. "funding": [
  5117. {
  5118. "url": "https://symfony.com/sponsor",
  5119. "type": "custom"
  5120. },
  5121. {
  5122. "url": "https://github.com/fabpot",
  5123. "type": "github"
  5124. },
  5125. {
  5126. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5127. "type": "tidelift"
  5128. }
  5129. ],
  5130. "time": "2021-03-23T23:28:01+00:00"
  5131. },
  5132. {
  5133. "name": "symfony/error-handler",
  5134. "version": "v5.3.7",
  5135. "source": {
  5136. "type": "git",
  5137. "url": "https://github.com/symfony/error-handler.git",
  5138. "reference": "3bc60d0fba00ae8d1eaa9eb5ab11a2bbdd1fc321"
  5139. },
  5140. "dist": {
  5141. "type": "zip",
  5142. "url": "https://api.github.com/repos/symfony/error-handler/zipball/3bc60d0fba00ae8d1eaa9eb5ab11a2bbdd1fc321",
  5143. "reference": "3bc60d0fba00ae8d1eaa9eb5ab11a2bbdd1fc321",
  5144. "shasum": "",
  5145. "mirrors": [
  5146. {
  5147. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5148. "preferred": true
  5149. }
  5150. ]
  5151. },
  5152. "require": {
  5153. "php": ">=7.2.5",
  5154. "psr/log": "^1|^2|^3",
  5155. "symfony/var-dumper": "^4.4|^5.0"
  5156. },
  5157. "require-dev": {
  5158. "symfony/deprecation-contracts": "^2.1",
  5159. "symfony/http-kernel": "^4.4|^5.0",
  5160. "symfony/serializer": "^4.4|^5.0"
  5161. },
  5162. "type": "library",
  5163. "autoload": {
  5164. "psr-4": {
  5165. "Symfony\\Component\\ErrorHandler\\": ""
  5166. },
  5167. "exclude-from-classmap": [
  5168. "/Tests/"
  5169. ]
  5170. },
  5171. "notification-url": "https://packagist.org/downloads/",
  5172. "license": [
  5173. "MIT"
  5174. ],
  5175. "authors": [
  5176. {
  5177. "name": "Fabien Potencier",
  5178. "email": "fabien@symfony.com"
  5179. },
  5180. {
  5181. "name": "Symfony Community",
  5182. "homepage": "https://symfony.com/contributors"
  5183. }
  5184. ],
  5185. "description": "Provides tools to manage errors and ease debugging PHP code",
  5186. "homepage": "https://symfony.com",
  5187. "support": {
  5188. "source": "https://github.com/symfony/error-handler/tree/v5.3.7"
  5189. },
  5190. "funding": [
  5191. {
  5192. "url": "https://symfony.com/sponsor",
  5193. "type": "custom"
  5194. },
  5195. {
  5196. "url": "https://github.com/fabpot",
  5197. "type": "github"
  5198. },
  5199. {
  5200. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5201. "type": "tidelift"
  5202. }
  5203. ],
  5204. "time": "2021-08-28T15:07:08+00:00"
  5205. },
  5206. {
  5207. "name": "symfony/event-dispatcher",
  5208. "version": "v5.3.7",
  5209. "source": {
  5210. "type": "git",
  5211. "url": "https://github.com/symfony/event-dispatcher.git",
  5212. "reference": "ce7b20d69c66a20939d8952b617506a44d102130"
  5213. },
  5214. "dist": {
  5215. "type": "zip",
  5216. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/ce7b20d69c66a20939d8952b617506a44d102130",
  5217. "reference": "ce7b20d69c66a20939d8952b617506a44d102130",
  5218. "shasum": "",
  5219. "mirrors": [
  5220. {
  5221. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5222. "preferred": true
  5223. }
  5224. ]
  5225. },
  5226. "require": {
  5227. "php": ">=7.2.5",
  5228. "symfony/deprecation-contracts": "^2.1",
  5229. "symfony/event-dispatcher-contracts": "^2",
  5230. "symfony/polyfill-php80": "^1.16"
  5231. },
  5232. "conflict": {
  5233. "symfony/dependency-injection": "<4.4"
  5234. },
  5235. "provide": {
  5236. "psr/event-dispatcher-implementation": "1.0",
  5237. "symfony/event-dispatcher-implementation": "2.0"
  5238. },
  5239. "require-dev": {
  5240. "psr/log": "^1|^2|^3",
  5241. "symfony/config": "^4.4|^5.0",
  5242. "symfony/dependency-injection": "^4.4|^5.0",
  5243. "symfony/error-handler": "^4.4|^5.0",
  5244. "symfony/expression-language": "^4.4|^5.0",
  5245. "symfony/http-foundation": "^4.4|^5.0",
  5246. "symfony/service-contracts": "^1.1|^2",
  5247. "symfony/stopwatch": "^4.4|^5.0"
  5248. },
  5249. "suggest": {
  5250. "symfony/dependency-injection": "",
  5251. "symfony/http-kernel": ""
  5252. },
  5253. "type": "library",
  5254. "autoload": {
  5255. "psr-4": {
  5256. "Symfony\\Component\\EventDispatcher\\": ""
  5257. },
  5258. "exclude-from-classmap": [
  5259. "/Tests/"
  5260. ]
  5261. },
  5262. "notification-url": "https://packagist.org/downloads/",
  5263. "license": [
  5264. "MIT"
  5265. ],
  5266. "authors": [
  5267. {
  5268. "name": "Fabien Potencier",
  5269. "email": "fabien@symfony.com"
  5270. },
  5271. {
  5272. "name": "Symfony Community",
  5273. "homepage": "https://symfony.com/contributors"
  5274. }
  5275. ],
  5276. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5277. "homepage": "https://symfony.com",
  5278. "support": {
  5279. "source": "https://github.com/symfony/event-dispatcher/tree/v5.3.7"
  5280. },
  5281. "funding": [
  5282. {
  5283. "url": "https://symfony.com/sponsor",
  5284. "type": "custom"
  5285. },
  5286. {
  5287. "url": "https://github.com/fabpot",
  5288. "type": "github"
  5289. },
  5290. {
  5291. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5292. "type": "tidelift"
  5293. }
  5294. ],
  5295. "time": "2021-08-04T21:20:46+00:00"
  5296. },
  5297. {
  5298. "name": "symfony/event-dispatcher-contracts",
  5299. "version": "v2.4.0",
  5300. "source": {
  5301. "type": "git",
  5302. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5303. "reference": "69fee1ad2332a7cbab3aca13591953da9cdb7a11"
  5304. },
  5305. "dist": {
  5306. "type": "zip",
  5307. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/69fee1ad2332a7cbab3aca13591953da9cdb7a11",
  5308. "reference": "69fee1ad2332a7cbab3aca13591953da9cdb7a11",
  5309. "shasum": "",
  5310. "mirrors": [
  5311. {
  5312. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5313. "preferred": true
  5314. }
  5315. ]
  5316. },
  5317. "require": {
  5318. "php": ">=7.2.5",
  5319. "psr/event-dispatcher": "^1"
  5320. },
  5321. "suggest": {
  5322. "symfony/event-dispatcher-implementation": ""
  5323. },
  5324. "type": "library",
  5325. "extra": {
  5326. "branch-alias": {
  5327. "dev-main": "2.4-dev"
  5328. },
  5329. "thanks": {
  5330. "name": "symfony/contracts",
  5331. "url": "https://github.com/symfony/contracts"
  5332. }
  5333. },
  5334. "autoload": {
  5335. "psr-4": {
  5336. "Symfony\\Contracts\\EventDispatcher\\": ""
  5337. }
  5338. },
  5339. "notification-url": "https://packagist.org/downloads/",
  5340. "license": [
  5341. "MIT"
  5342. ],
  5343. "authors": [
  5344. {
  5345. "name": "Nicolas Grekas",
  5346. "email": "p@tchwork.com"
  5347. },
  5348. {
  5349. "name": "Symfony Community",
  5350. "homepage": "https://symfony.com/contributors"
  5351. }
  5352. ],
  5353. "description": "Generic abstractions related to dispatching event",
  5354. "homepage": "https://symfony.com",
  5355. "keywords": [
  5356. "abstractions",
  5357. "contracts",
  5358. "decoupling",
  5359. "interfaces",
  5360. "interoperability",
  5361. "standards"
  5362. ],
  5363. "support": {
  5364. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.4.0"
  5365. },
  5366. "funding": [
  5367. {
  5368. "url": "https://symfony.com/sponsor",
  5369. "type": "custom"
  5370. },
  5371. {
  5372. "url": "https://github.com/fabpot",
  5373. "type": "github"
  5374. },
  5375. {
  5376. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5377. "type": "tidelift"
  5378. }
  5379. ],
  5380. "time": "2021-03-23T23:28:01+00:00"
  5381. },
  5382. {
  5383. "name": "symfony/finder",
  5384. "version": "v5.3.7",
  5385. "source": {
  5386. "type": "git",
  5387. "url": "https://github.com/symfony/finder.git",
  5388. "reference": "a10000ada1e600d109a6c7632e9ac42e8bf2fb93"
  5389. },
  5390. "dist": {
  5391. "type": "zip",
  5392. "url": "https://api.github.com/repos/symfony/finder/zipball/a10000ada1e600d109a6c7632e9ac42e8bf2fb93",
  5393. "reference": "a10000ada1e600d109a6c7632e9ac42e8bf2fb93",
  5394. "shasum": "",
  5395. "mirrors": [
  5396. {
  5397. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5398. "preferred": true
  5399. }
  5400. ]
  5401. },
  5402. "require": {
  5403. "php": ">=7.2.5",
  5404. "symfony/polyfill-php80": "^1.16"
  5405. },
  5406. "type": "library",
  5407. "autoload": {
  5408. "psr-4": {
  5409. "Symfony\\Component\\Finder\\": ""
  5410. },
  5411. "exclude-from-classmap": [
  5412. "/Tests/"
  5413. ]
  5414. },
  5415. "notification-url": "https://packagist.org/downloads/",
  5416. "license": [
  5417. "MIT"
  5418. ],
  5419. "authors": [
  5420. {
  5421. "name": "Fabien Potencier",
  5422. "email": "fabien@symfony.com"
  5423. },
  5424. {
  5425. "name": "Symfony Community",
  5426. "homepage": "https://symfony.com/contributors"
  5427. }
  5428. ],
  5429. "description": "Finds files and directories via an intuitive fluent interface",
  5430. "homepage": "https://symfony.com",
  5431. "support": {
  5432. "source": "https://github.com/symfony/finder/tree/v5.3.7"
  5433. },
  5434. "funding": [
  5435. {
  5436. "url": "https://symfony.com/sponsor",
  5437. "type": "custom"
  5438. },
  5439. {
  5440. "url": "https://github.com/fabpot",
  5441. "type": "github"
  5442. },
  5443. {
  5444. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5445. "type": "tidelift"
  5446. }
  5447. ],
  5448. "time": "2021-08-04T21:20:46+00:00"
  5449. },
  5450. {
  5451. "name": "symfony/http-client-contracts",
  5452. "version": "v2.4.0",
  5453. "source": {
  5454. "type": "git",
  5455. "url": "https://github.com/symfony/http-client-contracts.git",
  5456. "reference": "7e82f6084d7cae521a75ef2cb5c9457bbda785f4"
  5457. },
  5458. "dist": {
  5459. "type": "zip",
  5460. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/7e82f6084d7cae521a75ef2cb5c9457bbda785f4",
  5461. "reference": "7e82f6084d7cae521a75ef2cb5c9457bbda785f4",
  5462. "shasum": "",
  5463. "mirrors": [
  5464. {
  5465. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5466. "preferred": true
  5467. }
  5468. ]
  5469. },
  5470. "require": {
  5471. "php": ">=7.2.5"
  5472. },
  5473. "suggest": {
  5474. "symfony/http-client-implementation": ""
  5475. },
  5476. "type": "library",
  5477. "extra": {
  5478. "branch-alias": {
  5479. "dev-main": "2.4-dev"
  5480. },
  5481. "thanks": {
  5482. "name": "symfony/contracts",
  5483. "url": "https://github.com/symfony/contracts"
  5484. }
  5485. },
  5486. "autoload": {
  5487. "psr-4": {
  5488. "Symfony\\Contracts\\HttpClient\\": ""
  5489. }
  5490. },
  5491. "notification-url": "https://packagist.org/downloads/",
  5492. "license": [
  5493. "MIT"
  5494. ],
  5495. "authors": [
  5496. {
  5497. "name": "Nicolas Grekas",
  5498. "email": "p@tchwork.com"
  5499. },
  5500. {
  5501. "name": "Symfony Community",
  5502. "homepage": "https://symfony.com/contributors"
  5503. }
  5504. ],
  5505. "description": "Generic abstractions related to HTTP clients",
  5506. "homepage": "https://symfony.com",
  5507. "keywords": [
  5508. "abstractions",
  5509. "contracts",
  5510. "decoupling",
  5511. "interfaces",
  5512. "interoperability",
  5513. "standards"
  5514. ],
  5515. "support": {
  5516. "source": "https://github.com/symfony/http-client-contracts/tree/v2.4.0"
  5517. },
  5518. "funding": [
  5519. {
  5520. "url": "https://symfony.com/sponsor",
  5521. "type": "custom"
  5522. },
  5523. {
  5524. "url": "https://github.com/fabpot",
  5525. "type": "github"
  5526. },
  5527. {
  5528. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5529. "type": "tidelift"
  5530. }
  5531. ],
  5532. "time": "2021-04-11T23:07:08+00:00"
  5533. },
  5534. {
  5535. "name": "symfony/http-foundation",
  5536. "version": "v5.3.10",
  5537. "source": {
  5538. "type": "git",
  5539. "url": "https://github.com/symfony/http-foundation.git",
  5540. "reference": "9f34f02e8a5fdc7a56bafe011cea1ce97300e54c"
  5541. },
  5542. "dist": {
  5543. "type": "zip",
  5544. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/9f34f02e8a5fdc7a56bafe011cea1ce97300e54c",
  5545. "reference": "9f34f02e8a5fdc7a56bafe011cea1ce97300e54c",
  5546. "shasum": "",
  5547. "mirrors": [
  5548. {
  5549. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5550. "preferred": true
  5551. }
  5552. ]
  5553. },
  5554. "require": {
  5555. "php": ">=7.2.5",
  5556. "symfony/deprecation-contracts": "^2.1",
  5557. "symfony/polyfill-mbstring": "~1.1",
  5558. "symfony/polyfill-php80": "^1.16"
  5559. },
  5560. "require-dev": {
  5561. "predis/predis": "~1.0",
  5562. "symfony/cache": "^4.4|^5.0",
  5563. "symfony/expression-language": "^4.4|^5.0",
  5564. "symfony/mime": "^4.4|^5.0"
  5565. },
  5566. "suggest": {
  5567. "symfony/mime": "To use the file extension guesser"
  5568. },
  5569. "type": "library",
  5570. "autoload": {
  5571. "psr-4": {
  5572. "Symfony\\Component\\HttpFoundation\\": ""
  5573. },
  5574. "exclude-from-classmap": [
  5575. "/Tests/"
  5576. ]
  5577. },
  5578. "notification-url": "https://packagist.org/downloads/",
  5579. "license": [
  5580. "MIT"
  5581. ],
  5582. "authors": [
  5583. {
  5584. "name": "Fabien Potencier",
  5585. "email": "fabien@symfony.com"
  5586. },
  5587. {
  5588. "name": "Symfony Community",
  5589. "homepage": "https://symfony.com/contributors"
  5590. }
  5591. ],
  5592. "description": "Defines an object-oriented layer for the HTTP specification",
  5593. "homepage": "https://symfony.com",
  5594. "support": {
  5595. "source": "https://github.com/symfony/http-foundation/tree/v5.3.10"
  5596. },
  5597. "funding": [
  5598. {
  5599. "url": "https://symfony.com/sponsor",
  5600. "type": "custom"
  5601. },
  5602. {
  5603. "url": "https://github.com/fabpot",
  5604. "type": "github"
  5605. },
  5606. {
  5607. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5608. "type": "tidelift"
  5609. }
  5610. ],
  5611. "time": "2021-10-11T15:41:55+00:00"
  5612. },
  5613. {
  5614. "name": "symfony/http-kernel",
  5615. "version": "v5.3.10",
  5616. "source": {
  5617. "type": "git",
  5618. "url": "https://github.com/symfony/http-kernel.git",
  5619. "reference": "703e4079920468e9522b72cf47fd76ce8d795e86"
  5620. },
  5621. "dist": {
  5622. "type": "zip",
  5623. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/703e4079920468e9522b72cf47fd76ce8d795e86",
  5624. "reference": "703e4079920468e9522b72cf47fd76ce8d795e86",
  5625. "shasum": "",
  5626. "mirrors": [
  5627. {
  5628. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5629. "preferred": true
  5630. }
  5631. ]
  5632. },
  5633. "require": {
  5634. "php": ">=7.2.5",
  5635. "psr/log": "^1|^2",
  5636. "symfony/deprecation-contracts": "^2.1",
  5637. "symfony/error-handler": "^4.4|^5.0",
  5638. "symfony/event-dispatcher": "^5.0",
  5639. "symfony/http-client-contracts": "^1.1|^2",
  5640. "symfony/http-foundation": "^5.3.7",
  5641. "symfony/polyfill-ctype": "^1.8",
  5642. "symfony/polyfill-php73": "^1.9",
  5643. "symfony/polyfill-php80": "^1.16"
  5644. },
  5645. "conflict": {
  5646. "symfony/browser-kit": "<4.4",
  5647. "symfony/cache": "<5.0",
  5648. "symfony/config": "<5.0",
  5649. "symfony/console": "<4.4",
  5650. "symfony/dependency-injection": "<5.3",
  5651. "symfony/doctrine-bridge": "<5.0",
  5652. "symfony/form": "<5.0",
  5653. "symfony/http-client": "<5.0",
  5654. "symfony/mailer": "<5.0",
  5655. "symfony/messenger": "<5.0",
  5656. "symfony/translation": "<5.0",
  5657. "symfony/twig-bridge": "<5.0",
  5658. "symfony/validator": "<5.0",
  5659. "twig/twig": "<2.13"
  5660. },
  5661. "provide": {
  5662. "psr/log-implementation": "1.0|2.0"
  5663. },
  5664. "require-dev": {
  5665. "psr/cache": "^1.0|^2.0|^3.0",
  5666. "symfony/browser-kit": "^4.4|^5.0",
  5667. "symfony/config": "^5.0",
  5668. "symfony/console": "^4.4|^5.0",
  5669. "symfony/css-selector": "^4.4|^5.0",
  5670. "symfony/dependency-injection": "^5.3",
  5671. "symfony/dom-crawler": "^4.4|^5.0",
  5672. "symfony/expression-language": "^4.4|^5.0",
  5673. "symfony/finder": "^4.4|^5.0",
  5674. "symfony/process": "^4.4|^5.0",
  5675. "symfony/routing": "^4.4|^5.0",
  5676. "symfony/stopwatch": "^4.4|^5.0",
  5677. "symfony/translation": "^4.4|^5.0",
  5678. "symfony/translation-contracts": "^1.1|^2",
  5679. "twig/twig": "^2.13|^3.0.4"
  5680. },
  5681. "suggest": {
  5682. "symfony/browser-kit": "",
  5683. "symfony/config": "",
  5684. "symfony/console": "",
  5685. "symfony/dependency-injection": ""
  5686. },
  5687. "type": "library",
  5688. "autoload": {
  5689. "psr-4": {
  5690. "Symfony\\Component\\HttpKernel\\": ""
  5691. },
  5692. "exclude-from-classmap": [
  5693. "/Tests/"
  5694. ]
  5695. },
  5696. "notification-url": "https://packagist.org/downloads/",
  5697. "license": [
  5698. "MIT"
  5699. ],
  5700. "authors": [
  5701. {
  5702. "name": "Fabien Potencier",
  5703. "email": "fabien@symfony.com"
  5704. },
  5705. {
  5706. "name": "Symfony Community",
  5707. "homepage": "https://symfony.com/contributors"
  5708. }
  5709. ],
  5710. "description": "Provides a structured process for converting a Request into a Response",
  5711. "homepage": "https://symfony.com",
  5712. "support": {
  5713. "source": "https://github.com/symfony/http-kernel/tree/v5.3.10"
  5714. },
  5715. "funding": [
  5716. {
  5717. "url": "https://symfony.com/sponsor",
  5718. "type": "custom"
  5719. },
  5720. {
  5721. "url": "https://github.com/fabpot",
  5722. "type": "github"
  5723. },
  5724. {
  5725. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5726. "type": "tidelift"
  5727. }
  5728. ],
  5729. "time": "2021-10-29T08:36:48+00:00"
  5730. },
  5731. {
  5732. "name": "symfony/mime",
  5733. "version": "v5.3.8",
  5734. "source": {
  5735. "type": "git",
  5736. "url": "https://github.com/symfony/mime.git",
  5737. "reference": "a756033d0a7e53db389618653ae991eba5a19a11"
  5738. },
  5739. "dist": {
  5740. "type": "zip",
  5741. "url": "https://api.github.com/repos/symfony/mime/zipball/a756033d0a7e53db389618653ae991eba5a19a11",
  5742. "reference": "a756033d0a7e53db389618653ae991eba5a19a11",
  5743. "shasum": "",
  5744. "mirrors": [
  5745. {
  5746. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5747. "preferred": true
  5748. }
  5749. ]
  5750. },
  5751. "require": {
  5752. "php": ">=7.2.5",
  5753. "symfony/deprecation-contracts": "^2.1",
  5754. "symfony/polyfill-intl-idn": "^1.10",
  5755. "symfony/polyfill-mbstring": "^1.0",
  5756. "symfony/polyfill-php80": "^1.16"
  5757. },
  5758. "conflict": {
  5759. "egulias/email-validator": "~3.0.0",
  5760. "phpdocumentor/reflection-docblock": "<3.2.2",
  5761. "phpdocumentor/type-resolver": "<1.4.0",
  5762. "symfony/mailer": "<4.4"
  5763. },
  5764. "require-dev": {
  5765. "egulias/email-validator": "^2.1.10|^3.1",
  5766. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5767. "symfony/dependency-injection": "^4.4|^5.0",
  5768. "symfony/property-access": "^4.4|^5.1",
  5769. "symfony/property-info": "^4.4|^5.1",
  5770. "symfony/serializer": "^5.2"
  5771. },
  5772. "type": "library",
  5773. "autoload": {
  5774. "psr-4": {
  5775. "Symfony\\Component\\Mime\\": ""
  5776. },
  5777. "exclude-from-classmap": [
  5778. "/Tests/"
  5779. ]
  5780. },
  5781. "notification-url": "https://packagist.org/downloads/",
  5782. "license": [
  5783. "MIT"
  5784. ],
  5785. "authors": [
  5786. {
  5787. "name": "Fabien Potencier",
  5788. "email": "fabien@symfony.com"
  5789. },
  5790. {
  5791. "name": "Symfony Community",
  5792. "homepage": "https://symfony.com/contributors"
  5793. }
  5794. ],
  5795. "description": "Allows manipulating MIME messages",
  5796. "homepage": "https://symfony.com",
  5797. "keywords": [
  5798. "mime",
  5799. "mime-type"
  5800. ],
  5801. "support": {
  5802. "source": "https://github.com/symfony/mime/tree/v5.3.8"
  5803. },
  5804. "funding": [
  5805. {
  5806. "url": "https://symfony.com/sponsor",
  5807. "type": "custom"
  5808. },
  5809. {
  5810. "url": "https://github.com/fabpot",
  5811. "type": "github"
  5812. },
  5813. {
  5814. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5815. "type": "tidelift"
  5816. }
  5817. ],
  5818. "time": "2021-09-10T12:30:38+00:00"
  5819. },
  5820. {
  5821. "name": "symfony/options-resolver",
  5822. "version": "v5.3.7",
  5823. "source": {
  5824. "type": "git",
  5825. "url": "https://github.com/symfony/options-resolver.git",
  5826. "reference": "4b78e55b179003a42523a362cc0e8327f7a69b5e"
  5827. },
  5828. "dist": {
  5829. "type": "zip",
  5830. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/4b78e55b179003a42523a362cc0e8327f7a69b5e",
  5831. "reference": "4b78e55b179003a42523a362cc0e8327f7a69b5e",
  5832. "shasum": "",
  5833. "mirrors": [
  5834. {
  5835. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5836. "preferred": true
  5837. }
  5838. ]
  5839. },
  5840. "require": {
  5841. "php": ">=7.2.5",
  5842. "symfony/deprecation-contracts": "^2.1",
  5843. "symfony/polyfill-php73": "~1.0",
  5844. "symfony/polyfill-php80": "^1.16"
  5845. },
  5846. "type": "library",
  5847. "autoload": {
  5848. "psr-4": {
  5849. "Symfony\\Component\\OptionsResolver\\": ""
  5850. },
  5851. "exclude-from-classmap": [
  5852. "/Tests/"
  5853. ]
  5854. },
  5855. "notification-url": "https://packagist.org/downloads/",
  5856. "license": [
  5857. "MIT"
  5858. ],
  5859. "authors": [
  5860. {
  5861. "name": "Fabien Potencier",
  5862. "email": "fabien@symfony.com"
  5863. },
  5864. {
  5865. "name": "Symfony Community",
  5866. "homepage": "https://symfony.com/contributors"
  5867. }
  5868. ],
  5869. "description": "Provides an improved replacement for the array_replace PHP function",
  5870. "homepage": "https://symfony.com",
  5871. "keywords": [
  5872. "config",
  5873. "configuration",
  5874. "options"
  5875. ],
  5876. "support": {
  5877. "source": "https://github.com/symfony/options-resolver/tree/v5.3.7"
  5878. },
  5879. "funding": [
  5880. {
  5881. "url": "https://symfony.com/sponsor",
  5882. "type": "custom"
  5883. },
  5884. {
  5885. "url": "https://github.com/fabpot",
  5886. "type": "github"
  5887. },
  5888. {
  5889. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5890. "type": "tidelift"
  5891. }
  5892. ],
  5893. "time": "2021-08-04T21:20:46+00:00"
  5894. },
  5895. {
  5896. "name": "symfony/polyfill-ctype",
  5897. "version": "v1.23.0",
  5898. "source": {
  5899. "type": "git",
  5900. "url": "https://github.com/symfony/polyfill-ctype.git",
  5901. "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce"
  5902. },
  5903. "dist": {
  5904. "type": "zip",
  5905. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/46cd95797e9df938fdd2b03693b5fca5e64b01ce",
  5906. "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce",
  5907. "shasum": "",
  5908. "mirrors": [
  5909. {
  5910. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5911. "preferred": true
  5912. }
  5913. ]
  5914. },
  5915. "require": {
  5916. "php": ">=7.1"
  5917. },
  5918. "suggest": {
  5919. "ext-ctype": "For best performance"
  5920. },
  5921. "type": "library",
  5922. "extra": {
  5923. "branch-alias": {
  5924. "dev-main": "1.23-dev"
  5925. },
  5926. "thanks": {
  5927. "name": "symfony/polyfill",
  5928. "url": "https://github.com/symfony/polyfill"
  5929. }
  5930. },
  5931. "autoload": {
  5932. "psr-4": {
  5933. "Symfony\\Polyfill\\Ctype\\": ""
  5934. },
  5935. "files": [
  5936. "bootstrap.php"
  5937. ]
  5938. },
  5939. "notification-url": "https://packagist.org/downloads/",
  5940. "license": [
  5941. "MIT"
  5942. ],
  5943. "authors": [
  5944. {
  5945. "name": "Gert de Pagter",
  5946. "email": "BackEndTea@gmail.com"
  5947. },
  5948. {
  5949. "name": "Symfony Community",
  5950. "homepage": "https://symfony.com/contributors"
  5951. }
  5952. ],
  5953. "description": "Symfony polyfill for ctype functions",
  5954. "homepage": "https://symfony.com",
  5955. "keywords": [
  5956. "compatibility",
  5957. "ctype",
  5958. "polyfill",
  5959. "portable"
  5960. ],
  5961. "support": {
  5962. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.23.0"
  5963. },
  5964. "funding": [
  5965. {
  5966. "url": "https://symfony.com/sponsor",
  5967. "type": "custom"
  5968. },
  5969. {
  5970. "url": "https://github.com/fabpot",
  5971. "type": "github"
  5972. },
  5973. {
  5974. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5975. "type": "tidelift"
  5976. }
  5977. ],
  5978. "time": "2021-02-19T12:13:01+00:00"
  5979. },
  5980. {
  5981. "name": "symfony/polyfill-iconv",
  5982. "version": "v1.23.0",
  5983. "source": {
  5984. "type": "git",
  5985. "url": "https://github.com/symfony/polyfill-iconv.git",
  5986. "reference": "63b5bb7db83e5673936d6e3b8b3e022ff6474933"
  5987. },
  5988. "dist": {
  5989. "type": "zip",
  5990. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/63b5bb7db83e5673936d6e3b8b3e022ff6474933",
  5991. "reference": "63b5bb7db83e5673936d6e3b8b3e022ff6474933",
  5992. "shasum": "",
  5993. "mirrors": [
  5994. {
  5995. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5996. "preferred": true
  5997. }
  5998. ]
  5999. },
  6000. "require": {
  6001. "php": ">=7.1"
  6002. },
  6003. "suggest": {
  6004. "ext-iconv": "For best performance"
  6005. },
  6006. "type": "library",
  6007. "extra": {
  6008. "branch-alias": {
  6009. "dev-main": "1.23-dev"
  6010. },
  6011. "thanks": {
  6012. "name": "symfony/polyfill",
  6013. "url": "https://github.com/symfony/polyfill"
  6014. }
  6015. },
  6016. "autoload": {
  6017. "psr-4": {
  6018. "Symfony\\Polyfill\\Iconv\\": ""
  6019. },
  6020. "files": [
  6021. "bootstrap.php"
  6022. ]
  6023. },
  6024. "notification-url": "https://packagist.org/downloads/",
  6025. "license": [
  6026. "MIT"
  6027. ],
  6028. "authors": [
  6029. {
  6030. "name": "Nicolas Grekas",
  6031. "email": "p@tchwork.com"
  6032. },
  6033. {
  6034. "name": "Symfony Community",
  6035. "homepage": "https://symfony.com/contributors"
  6036. }
  6037. ],
  6038. "description": "Symfony polyfill for the Iconv extension",
  6039. "homepage": "https://symfony.com",
  6040. "keywords": [
  6041. "compatibility",
  6042. "iconv",
  6043. "polyfill",
  6044. "portable",
  6045. "shim"
  6046. ],
  6047. "support": {
  6048. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.23.0"
  6049. },
  6050. "funding": [
  6051. {
  6052. "url": "https://symfony.com/sponsor",
  6053. "type": "custom"
  6054. },
  6055. {
  6056. "url": "https://github.com/fabpot",
  6057. "type": "github"
  6058. },
  6059. {
  6060. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6061. "type": "tidelift"
  6062. }
  6063. ],
  6064. "time": "2021-05-27T09:27:20+00:00"
  6065. },
  6066. {
  6067. "name": "symfony/polyfill-intl-grapheme",
  6068. "version": "v1.23.1",
  6069. "source": {
  6070. "type": "git",
  6071. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6072. "reference": "16880ba9c5ebe3642d1995ab866db29270b36535"
  6073. },
  6074. "dist": {
  6075. "type": "zip",
  6076. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/16880ba9c5ebe3642d1995ab866db29270b36535",
  6077. "reference": "16880ba9c5ebe3642d1995ab866db29270b36535",
  6078. "shasum": "",
  6079. "mirrors": [
  6080. {
  6081. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6082. "preferred": true
  6083. }
  6084. ]
  6085. },
  6086. "require": {
  6087. "php": ">=7.1"
  6088. },
  6089. "suggest": {
  6090. "ext-intl": "For best performance"
  6091. },
  6092. "type": "library",
  6093. "extra": {
  6094. "branch-alias": {
  6095. "dev-main": "1.23-dev"
  6096. },
  6097. "thanks": {
  6098. "name": "symfony/polyfill",
  6099. "url": "https://github.com/symfony/polyfill"
  6100. }
  6101. },
  6102. "autoload": {
  6103. "psr-4": {
  6104. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6105. },
  6106. "files": [
  6107. "bootstrap.php"
  6108. ]
  6109. },
  6110. "notification-url": "https://packagist.org/downloads/",
  6111. "license": [
  6112. "MIT"
  6113. ],
  6114. "authors": [
  6115. {
  6116. "name": "Nicolas Grekas",
  6117. "email": "p@tchwork.com"
  6118. },
  6119. {
  6120. "name": "Symfony Community",
  6121. "homepage": "https://symfony.com/contributors"
  6122. }
  6123. ],
  6124. "description": "Symfony polyfill for intl's grapheme_* functions",
  6125. "homepage": "https://symfony.com",
  6126. "keywords": [
  6127. "compatibility",
  6128. "grapheme",
  6129. "intl",
  6130. "polyfill",
  6131. "portable",
  6132. "shim"
  6133. ],
  6134. "support": {
  6135. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.23.1"
  6136. },
  6137. "funding": [
  6138. {
  6139. "url": "https://symfony.com/sponsor",
  6140. "type": "custom"
  6141. },
  6142. {
  6143. "url": "https://github.com/fabpot",
  6144. "type": "github"
  6145. },
  6146. {
  6147. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6148. "type": "tidelift"
  6149. }
  6150. ],
  6151. "time": "2021-05-27T12:26:48+00:00"
  6152. },
  6153. {
  6154. "name": "symfony/polyfill-intl-idn",
  6155. "version": "v1.23.0",
  6156. "source": {
  6157. "type": "git",
  6158. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6159. "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65"
  6160. },
  6161. "dist": {
  6162. "type": "zip",
  6163. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/65bd267525e82759e7d8c4e8ceea44f398838e65",
  6164. "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65",
  6165. "shasum": "",
  6166. "mirrors": [
  6167. {
  6168. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6169. "preferred": true
  6170. }
  6171. ]
  6172. },
  6173. "require": {
  6174. "php": ">=7.1",
  6175. "symfony/polyfill-intl-normalizer": "^1.10",
  6176. "symfony/polyfill-php72": "^1.10"
  6177. },
  6178. "suggest": {
  6179. "ext-intl": "For best performance"
  6180. },
  6181. "type": "library",
  6182. "extra": {
  6183. "branch-alias": {
  6184. "dev-main": "1.23-dev"
  6185. },
  6186. "thanks": {
  6187. "name": "symfony/polyfill",
  6188. "url": "https://github.com/symfony/polyfill"
  6189. }
  6190. },
  6191. "autoload": {
  6192. "psr-4": {
  6193. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6194. },
  6195. "files": [
  6196. "bootstrap.php"
  6197. ]
  6198. },
  6199. "notification-url": "https://packagist.org/downloads/",
  6200. "license": [
  6201. "MIT"
  6202. ],
  6203. "authors": [
  6204. {
  6205. "name": "Laurent Bassin",
  6206. "email": "laurent@bassin.info"
  6207. },
  6208. {
  6209. "name": "Trevor Rowbotham",
  6210. "email": "trevor.rowbotham@pm.me"
  6211. },
  6212. {
  6213. "name": "Symfony Community",
  6214. "homepage": "https://symfony.com/contributors"
  6215. }
  6216. ],
  6217. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6218. "homepage": "https://symfony.com",
  6219. "keywords": [
  6220. "compatibility",
  6221. "idn",
  6222. "intl",
  6223. "polyfill",
  6224. "portable",
  6225. "shim"
  6226. ],
  6227. "support": {
  6228. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.23.0"
  6229. },
  6230. "funding": [
  6231. {
  6232. "url": "https://symfony.com/sponsor",
  6233. "type": "custom"
  6234. },
  6235. {
  6236. "url": "https://github.com/fabpot",
  6237. "type": "github"
  6238. },
  6239. {
  6240. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6241. "type": "tidelift"
  6242. }
  6243. ],
  6244. "time": "2021-05-27T09:27:20+00:00"
  6245. },
  6246. {
  6247. "name": "symfony/polyfill-intl-normalizer",
  6248. "version": "v1.23.0",
  6249. "source": {
  6250. "type": "git",
  6251. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6252. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8"
  6253. },
  6254. "dist": {
  6255. "type": "zip",
  6256. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8590a5f561694770bdcd3f9b5c69dde6945028e8",
  6257. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8",
  6258. "shasum": "",
  6259. "mirrors": [
  6260. {
  6261. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6262. "preferred": true
  6263. }
  6264. ]
  6265. },
  6266. "require": {
  6267. "php": ">=7.1"
  6268. },
  6269. "suggest": {
  6270. "ext-intl": "For best performance"
  6271. },
  6272. "type": "library",
  6273. "extra": {
  6274. "branch-alias": {
  6275. "dev-main": "1.23-dev"
  6276. },
  6277. "thanks": {
  6278. "name": "symfony/polyfill",
  6279. "url": "https://github.com/symfony/polyfill"
  6280. }
  6281. },
  6282. "autoload": {
  6283. "psr-4": {
  6284. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6285. },
  6286. "files": [
  6287. "bootstrap.php"
  6288. ],
  6289. "classmap": [
  6290. "Resources/stubs"
  6291. ]
  6292. },
  6293. "notification-url": "https://packagist.org/downloads/",
  6294. "license": [
  6295. "MIT"
  6296. ],
  6297. "authors": [
  6298. {
  6299. "name": "Nicolas Grekas",
  6300. "email": "p@tchwork.com"
  6301. },
  6302. {
  6303. "name": "Symfony Community",
  6304. "homepage": "https://symfony.com/contributors"
  6305. }
  6306. ],
  6307. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6308. "homepage": "https://symfony.com",
  6309. "keywords": [
  6310. "compatibility",
  6311. "intl",
  6312. "normalizer",
  6313. "polyfill",
  6314. "portable",
  6315. "shim"
  6316. ],
  6317. "support": {
  6318. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.23.0"
  6319. },
  6320. "funding": [
  6321. {
  6322. "url": "https://symfony.com/sponsor",
  6323. "type": "custom"
  6324. },
  6325. {
  6326. "url": "https://github.com/fabpot",
  6327. "type": "github"
  6328. },
  6329. {
  6330. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6331. "type": "tidelift"
  6332. }
  6333. ],
  6334. "time": "2021-02-19T12:13:01+00:00"
  6335. },
  6336. {
  6337. "name": "symfony/polyfill-mbstring",
  6338. "version": "v1.23.1",
  6339. "source": {
  6340. "type": "git",
  6341. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6342. "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6"
  6343. },
  6344. "dist": {
  6345. "type": "zip",
  6346. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9174a3d80210dca8daa7f31fec659150bbeabfc6",
  6347. "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6",
  6348. "shasum": "",
  6349. "mirrors": [
  6350. {
  6351. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6352. "preferred": true
  6353. }
  6354. ]
  6355. },
  6356. "require": {
  6357. "php": ">=7.1"
  6358. },
  6359. "suggest": {
  6360. "ext-mbstring": "For best performance"
  6361. },
  6362. "type": "library",
  6363. "extra": {
  6364. "branch-alias": {
  6365. "dev-main": "1.23-dev"
  6366. },
  6367. "thanks": {
  6368. "name": "symfony/polyfill",
  6369. "url": "https://github.com/symfony/polyfill"
  6370. }
  6371. },
  6372. "autoload": {
  6373. "psr-4": {
  6374. "Symfony\\Polyfill\\Mbstring\\": ""
  6375. },
  6376. "files": [
  6377. "bootstrap.php"
  6378. ]
  6379. },
  6380. "notification-url": "https://packagist.org/downloads/",
  6381. "license": [
  6382. "MIT"
  6383. ],
  6384. "authors": [
  6385. {
  6386. "name": "Nicolas Grekas",
  6387. "email": "p@tchwork.com"
  6388. },
  6389. {
  6390. "name": "Symfony Community",
  6391. "homepage": "https://symfony.com/contributors"
  6392. }
  6393. ],
  6394. "description": "Symfony polyfill for the Mbstring extension",
  6395. "homepage": "https://symfony.com",
  6396. "keywords": [
  6397. "compatibility",
  6398. "mbstring",
  6399. "polyfill",
  6400. "portable",
  6401. "shim"
  6402. ],
  6403. "support": {
  6404. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.23.1"
  6405. },
  6406. "funding": [
  6407. {
  6408. "url": "https://symfony.com/sponsor",
  6409. "type": "custom"
  6410. },
  6411. {
  6412. "url": "https://github.com/fabpot",
  6413. "type": "github"
  6414. },
  6415. {
  6416. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6417. "type": "tidelift"
  6418. }
  6419. ],
  6420. "time": "2021-05-27T12:26:48+00:00"
  6421. },
  6422. {
  6423. "name": "symfony/polyfill-php72",
  6424. "version": "v1.23.0",
  6425. "source": {
  6426. "type": "git",
  6427. "url": "https://github.com/symfony/polyfill-php72.git",
  6428. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976"
  6429. },
  6430. "dist": {
  6431. "type": "zip",
  6432. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/9a142215a36a3888e30d0a9eeea9766764e96976",
  6433. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976",
  6434. "shasum": "",
  6435. "mirrors": [
  6436. {
  6437. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6438. "preferred": true
  6439. }
  6440. ]
  6441. },
  6442. "require": {
  6443. "php": ">=7.1"
  6444. },
  6445. "type": "library",
  6446. "extra": {
  6447. "branch-alias": {
  6448. "dev-main": "1.23-dev"
  6449. },
  6450. "thanks": {
  6451. "name": "symfony/polyfill",
  6452. "url": "https://github.com/symfony/polyfill"
  6453. }
  6454. },
  6455. "autoload": {
  6456. "psr-4": {
  6457. "Symfony\\Polyfill\\Php72\\": ""
  6458. },
  6459. "files": [
  6460. "bootstrap.php"
  6461. ]
  6462. },
  6463. "notification-url": "https://packagist.org/downloads/",
  6464. "license": [
  6465. "MIT"
  6466. ],
  6467. "authors": [
  6468. {
  6469. "name": "Nicolas Grekas",
  6470. "email": "p@tchwork.com"
  6471. },
  6472. {
  6473. "name": "Symfony Community",
  6474. "homepage": "https://symfony.com/contributors"
  6475. }
  6476. ],
  6477. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  6478. "homepage": "https://symfony.com",
  6479. "keywords": [
  6480. "compatibility",
  6481. "polyfill",
  6482. "portable",
  6483. "shim"
  6484. ],
  6485. "support": {
  6486. "source": "https://github.com/symfony/polyfill-php72/tree/v1.23.0"
  6487. },
  6488. "funding": [
  6489. {
  6490. "url": "https://symfony.com/sponsor",
  6491. "type": "custom"
  6492. },
  6493. {
  6494. "url": "https://github.com/fabpot",
  6495. "type": "github"
  6496. },
  6497. {
  6498. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6499. "type": "tidelift"
  6500. }
  6501. ],
  6502. "time": "2021-05-27T09:17:38+00:00"
  6503. },
  6504. {
  6505. "name": "symfony/polyfill-php73",
  6506. "version": "v1.23.0",
  6507. "source": {
  6508. "type": "git",
  6509. "url": "https://github.com/symfony/polyfill-php73.git",
  6510. "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010"
  6511. },
  6512. "dist": {
  6513. "type": "zip",
  6514. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fba8933c384d6476ab14fb7b8526e5287ca7e010",
  6515. "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010",
  6516. "shasum": "",
  6517. "mirrors": [
  6518. {
  6519. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6520. "preferred": true
  6521. }
  6522. ]
  6523. },
  6524. "require": {
  6525. "php": ">=7.1"
  6526. },
  6527. "type": "library",
  6528. "extra": {
  6529. "branch-alias": {
  6530. "dev-main": "1.23-dev"
  6531. },
  6532. "thanks": {
  6533. "name": "symfony/polyfill",
  6534. "url": "https://github.com/symfony/polyfill"
  6535. }
  6536. },
  6537. "autoload": {
  6538. "psr-4": {
  6539. "Symfony\\Polyfill\\Php73\\": ""
  6540. },
  6541. "files": [
  6542. "bootstrap.php"
  6543. ],
  6544. "classmap": [
  6545. "Resources/stubs"
  6546. ]
  6547. },
  6548. "notification-url": "https://packagist.org/downloads/",
  6549. "license": [
  6550. "MIT"
  6551. ],
  6552. "authors": [
  6553. {
  6554. "name": "Nicolas Grekas",
  6555. "email": "p@tchwork.com"
  6556. },
  6557. {
  6558. "name": "Symfony Community",
  6559. "homepage": "https://symfony.com/contributors"
  6560. }
  6561. ],
  6562. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  6563. "homepage": "https://symfony.com",
  6564. "keywords": [
  6565. "compatibility",
  6566. "polyfill",
  6567. "portable",
  6568. "shim"
  6569. ],
  6570. "support": {
  6571. "source": "https://github.com/symfony/polyfill-php73/tree/v1.23.0"
  6572. },
  6573. "funding": [
  6574. {
  6575. "url": "https://symfony.com/sponsor",
  6576. "type": "custom"
  6577. },
  6578. {
  6579. "url": "https://github.com/fabpot",
  6580. "type": "github"
  6581. },
  6582. {
  6583. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6584. "type": "tidelift"
  6585. }
  6586. ],
  6587. "time": "2021-02-19T12:13:01+00:00"
  6588. },
  6589. {
  6590. "name": "symfony/polyfill-php80",
  6591. "version": "v1.23.1",
  6592. "source": {
  6593. "type": "git",
  6594. "url": "https://github.com/symfony/polyfill-php80.git",
  6595. "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be"
  6596. },
  6597. "dist": {
  6598. "type": "zip",
  6599. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/1100343ed1a92e3a38f9ae122fc0eb21602547be",
  6600. "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be",
  6601. "shasum": "",
  6602. "mirrors": [
  6603. {
  6604. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6605. "preferred": true
  6606. }
  6607. ]
  6608. },
  6609. "require": {
  6610. "php": ">=7.1"
  6611. },
  6612. "type": "library",
  6613. "extra": {
  6614. "branch-alias": {
  6615. "dev-main": "1.23-dev"
  6616. },
  6617. "thanks": {
  6618. "name": "symfony/polyfill",
  6619. "url": "https://github.com/symfony/polyfill"
  6620. }
  6621. },
  6622. "autoload": {
  6623. "psr-4": {
  6624. "Symfony\\Polyfill\\Php80\\": ""
  6625. },
  6626. "files": [
  6627. "bootstrap.php"
  6628. ],
  6629. "classmap": [
  6630. "Resources/stubs"
  6631. ]
  6632. },
  6633. "notification-url": "https://packagist.org/downloads/",
  6634. "license": [
  6635. "MIT"
  6636. ],
  6637. "authors": [
  6638. {
  6639. "name": "Ion Bazan",
  6640. "email": "ion.bazan@gmail.com"
  6641. },
  6642. {
  6643. "name": "Nicolas Grekas",
  6644. "email": "p@tchwork.com"
  6645. },
  6646. {
  6647. "name": "Symfony Community",
  6648. "homepage": "https://symfony.com/contributors"
  6649. }
  6650. ],
  6651. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6652. "homepage": "https://symfony.com",
  6653. "keywords": [
  6654. "compatibility",
  6655. "polyfill",
  6656. "portable",
  6657. "shim"
  6658. ],
  6659. "support": {
  6660. "source": "https://github.com/symfony/polyfill-php80/tree/v1.23.1"
  6661. },
  6662. "funding": [
  6663. {
  6664. "url": "https://symfony.com/sponsor",
  6665. "type": "custom"
  6666. },
  6667. {
  6668. "url": "https://github.com/fabpot",
  6669. "type": "github"
  6670. },
  6671. {
  6672. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6673. "type": "tidelift"
  6674. }
  6675. ],
  6676. "time": "2021-07-28T13:41:28+00:00"
  6677. },
  6678. {
  6679. "name": "symfony/polyfill-php81",
  6680. "version": "v1.23.0",
  6681. "source": {
  6682. "type": "git",
  6683. "url": "https://github.com/symfony/polyfill-php81.git",
  6684. "reference": "e66119f3de95efc359483f810c4c3e6436279436"
  6685. },
  6686. "dist": {
  6687. "type": "zip",
  6688. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/e66119f3de95efc359483f810c4c3e6436279436",
  6689. "reference": "e66119f3de95efc359483f810c4c3e6436279436",
  6690. "shasum": "",
  6691. "mirrors": [
  6692. {
  6693. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6694. "preferred": true
  6695. }
  6696. ]
  6697. },
  6698. "require": {
  6699. "php": ">=7.1"
  6700. },
  6701. "type": "library",
  6702. "extra": {
  6703. "branch-alias": {
  6704. "dev-main": "1.23-dev"
  6705. },
  6706. "thanks": {
  6707. "name": "symfony/polyfill",
  6708. "url": "https://github.com/symfony/polyfill"
  6709. }
  6710. },
  6711. "autoload": {
  6712. "psr-4": {
  6713. "Symfony\\Polyfill\\Php81\\": ""
  6714. },
  6715. "files": [
  6716. "bootstrap.php"
  6717. ],
  6718. "classmap": [
  6719. "Resources/stubs"
  6720. ]
  6721. },
  6722. "notification-url": "https://packagist.org/downloads/",
  6723. "license": [
  6724. "MIT"
  6725. ],
  6726. "authors": [
  6727. {
  6728. "name": "Nicolas Grekas",
  6729. "email": "p@tchwork.com"
  6730. },
  6731. {
  6732. "name": "Symfony Community",
  6733. "homepage": "https://symfony.com/contributors"
  6734. }
  6735. ],
  6736. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  6737. "homepage": "https://symfony.com",
  6738. "keywords": [
  6739. "compatibility",
  6740. "polyfill",
  6741. "portable",
  6742. "shim"
  6743. ],
  6744. "support": {
  6745. "source": "https://github.com/symfony/polyfill-php81/tree/v1.23.0"
  6746. },
  6747. "funding": [
  6748. {
  6749. "url": "https://symfony.com/sponsor",
  6750. "type": "custom"
  6751. },
  6752. {
  6753. "url": "https://github.com/fabpot",
  6754. "type": "github"
  6755. },
  6756. {
  6757. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6758. "type": "tidelift"
  6759. }
  6760. ],
  6761. "time": "2021-05-21T13:25:03+00:00"
  6762. },
  6763. {
  6764. "name": "symfony/process",
  6765. "version": "v5.3.7",
  6766. "source": {
  6767. "type": "git",
  6768. "url": "https://github.com/symfony/process.git",
  6769. "reference": "38f26c7d6ed535217ea393e05634cb0b244a1967"
  6770. },
  6771. "dist": {
  6772. "type": "zip",
  6773. "url": "https://api.github.com/repos/symfony/process/zipball/38f26c7d6ed535217ea393e05634cb0b244a1967",
  6774. "reference": "38f26c7d6ed535217ea393e05634cb0b244a1967",
  6775. "shasum": "",
  6776. "mirrors": [
  6777. {
  6778. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6779. "preferred": true
  6780. }
  6781. ]
  6782. },
  6783. "require": {
  6784. "php": ">=7.2.5",
  6785. "symfony/polyfill-php80": "^1.16"
  6786. },
  6787. "type": "library",
  6788. "autoload": {
  6789. "psr-4": {
  6790. "Symfony\\Component\\Process\\": ""
  6791. },
  6792. "exclude-from-classmap": [
  6793. "/Tests/"
  6794. ]
  6795. },
  6796. "notification-url": "https://packagist.org/downloads/",
  6797. "license": [
  6798. "MIT"
  6799. ],
  6800. "authors": [
  6801. {
  6802. "name": "Fabien Potencier",
  6803. "email": "fabien@symfony.com"
  6804. },
  6805. {
  6806. "name": "Symfony Community",
  6807. "homepage": "https://symfony.com/contributors"
  6808. }
  6809. ],
  6810. "description": "Executes commands in sub-processes",
  6811. "homepage": "https://symfony.com",
  6812. "support": {
  6813. "source": "https://github.com/symfony/process/tree/v5.3.7"
  6814. },
  6815. "funding": [
  6816. {
  6817. "url": "https://symfony.com/sponsor",
  6818. "type": "custom"
  6819. },
  6820. {
  6821. "url": "https://github.com/fabpot",
  6822. "type": "github"
  6823. },
  6824. {
  6825. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6826. "type": "tidelift"
  6827. }
  6828. ],
  6829. "time": "2021-08-04T21:20:46+00:00"
  6830. },
  6831. {
  6832. "name": "symfony/property-access",
  6833. "version": "v5.3.8",
  6834. "source": {
  6835. "type": "git",
  6836. "url": "https://github.com/symfony/property-access.git",
  6837. "reference": "2fbab5f95ddb6b8e85f38a6a8a04a17c0acc4d66"
  6838. },
  6839. "dist": {
  6840. "type": "zip",
  6841. "url": "https://api.github.com/repos/symfony/property-access/zipball/2fbab5f95ddb6b8e85f38a6a8a04a17c0acc4d66",
  6842. "reference": "2fbab5f95ddb6b8e85f38a6a8a04a17c0acc4d66",
  6843. "shasum": "",
  6844. "mirrors": [
  6845. {
  6846. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6847. "preferred": true
  6848. }
  6849. ]
  6850. },
  6851. "require": {
  6852. "php": ">=7.2.5",
  6853. "symfony/deprecation-contracts": "^2.1",
  6854. "symfony/polyfill-php80": "^1.16",
  6855. "symfony/property-info": "^5.2"
  6856. },
  6857. "require-dev": {
  6858. "symfony/cache": "^4.4|^5.0"
  6859. },
  6860. "suggest": {
  6861. "psr/cache-implementation": "To cache access methods."
  6862. },
  6863. "type": "library",
  6864. "autoload": {
  6865. "psr-4": {
  6866. "Symfony\\Component\\PropertyAccess\\": ""
  6867. },
  6868. "exclude-from-classmap": [
  6869. "/Tests/"
  6870. ]
  6871. },
  6872. "notification-url": "https://packagist.org/downloads/",
  6873. "license": [
  6874. "MIT"
  6875. ],
  6876. "authors": [
  6877. {
  6878. "name": "Fabien Potencier",
  6879. "email": "fabien@symfony.com"
  6880. },
  6881. {
  6882. "name": "Symfony Community",
  6883. "homepage": "https://symfony.com/contributors"
  6884. }
  6885. ],
  6886. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  6887. "homepage": "https://symfony.com",
  6888. "keywords": [
  6889. "access",
  6890. "array",
  6891. "extraction",
  6892. "index",
  6893. "injection",
  6894. "object",
  6895. "property",
  6896. "property path",
  6897. "reflection"
  6898. ],
  6899. "support": {
  6900. "source": "https://github.com/symfony/property-access/tree/v5.3.8"
  6901. },
  6902. "funding": [
  6903. {
  6904. "url": "https://symfony.com/sponsor",
  6905. "type": "custom"
  6906. },
  6907. {
  6908. "url": "https://github.com/fabpot",
  6909. "type": "github"
  6910. },
  6911. {
  6912. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6913. "type": "tidelift"
  6914. }
  6915. ],
  6916. "time": "2021-09-10T11:55:24+00:00"
  6917. },
  6918. {
  6919. "name": "symfony/property-info",
  6920. "version": "v5.3.8",
  6921. "source": {
  6922. "type": "git",
  6923. "url": "https://github.com/symfony/property-info.git",
  6924. "reference": "39de5bed8c036f76ec0457ec52908e45d5497947"
  6925. },
  6926. "dist": {
  6927. "type": "zip",
  6928. "url": "https://api.github.com/repos/symfony/property-info/zipball/39de5bed8c036f76ec0457ec52908e45d5497947",
  6929. "reference": "39de5bed8c036f76ec0457ec52908e45d5497947",
  6930. "shasum": "",
  6931. "mirrors": [
  6932. {
  6933. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6934. "preferred": true
  6935. }
  6936. ]
  6937. },
  6938. "require": {
  6939. "php": ">=7.2.5",
  6940. "symfony/deprecation-contracts": "^2.1",
  6941. "symfony/polyfill-php80": "^1.16",
  6942. "symfony/string": "^5.1"
  6943. },
  6944. "conflict": {
  6945. "phpdocumentor/reflection-docblock": "<3.2.2",
  6946. "phpdocumentor/type-resolver": "<1.4.0",
  6947. "symfony/dependency-injection": "<4.4"
  6948. },
  6949. "require-dev": {
  6950. "doctrine/annotations": "^1.10.4",
  6951. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6952. "symfony/cache": "^4.4|^5.0",
  6953. "symfony/dependency-injection": "^4.4|^5.0",
  6954. "symfony/serializer": "^4.4|^5.0"
  6955. },
  6956. "suggest": {
  6957. "phpdocumentor/reflection-docblock": "To use the PHPDoc",
  6958. "psr/cache-implementation": "To cache results",
  6959. "symfony/doctrine-bridge": "To use Doctrine metadata",
  6960. "symfony/serializer": "To use Serializer metadata"
  6961. },
  6962. "type": "library",
  6963. "autoload": {
  6964. "psr-4": {
  6965. "Symfony\\Component\\PropertyInfo\\": ""
  6966. },
  6967. "exclude-from-classmap": [
  6968. "/Tests/"
  6969. ]
  6970. },
  6971. "notification-url": "https://packagist.org/downloads/",
  6972. "license": [
  6973. "MIT"
  6974. ],
  6975. "authors": [
  6976. {
  6977. "name": "Kévin Dunglas",
  6978. "email": "dunglas@gmail.com"
  6979. },
  6980. {
  6981. "name": "Symfony Community",
  6982. "homepage": "https://symfony.com/contributors"
  6983. }
  6984. ],
  6985. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  6986. "homepage": "https://symfony.com",
  6987. "keywords": [
  6988. "doctrine",
  6989. "phpdoc",
  6990. "property",
  6991. "symfony",
  6992. "type",
  6993. "validator"
  6994. ],
  6995. "support": {
  6996. "source": "https://github.com/symfony/property-info/tree/v5.3.8"
  6997. },
  6998. "funding": [
  6999. {
  7000. "url": "https://symfony.com/sponsor",
  7001. "type": "custom"
  7002. },
  7003. {
  7004. "url": "https://github.com/fabpot",
  7005. "type": "github"
  7006. },
  7007. {
  7008. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7009. "type": "tidelift"
  7010. }
  7011. ],
  7012. "time": "2021-09-07T07:41:40+00:00"
  7013. },
  7014. {
  7015. "name": "symfony/routing",
  7016. "version": "v5.3.7",
  7017. "source": {
  7018. "type": "git",
  7019. "url": "https://github.com/symfony/routing.git",
  7020. "reference": "be865017746fe869007d94220ad3f5297951811b"
  7021. },
  7022. "dist": {
  7023. "type": "zip",
  7024. "url": "https://api.github.com/repos/symfony/routing/zipball/be865017746fe869007d94220ad3f5297951811b",
  7025. "reference": "be865017746fe869007d94220ad3f5297951811b",
  7026. "shasum": "",
  7027. "mirrors": [
  7028. {
  7029. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7030. "preferred": true
  7031. }
  7032. ]
  7033. },
  7034. "require": {
  7035. "php": ">=7.2.5",
  7036. "symfony/deprecation-contracts": "^2.1",
  7037. "symfony/polyfill-php80": "^1.16"
  7038. },
  7039. "conflict": {
  7040. "doctrine/annotations": "<1.12",
  7041. "symfony/config": "<5.3",
  7042. "symfony/dependency-injection": "<4.4",
  7043. "symfony/yaml": "<4.4"
  7044. },
  7045. "require-dev": {
  7046. "doctrine/annotations": "^1.12",
  7047. "psr/log": "^1|^2|^3",
  7048. "symfony/config": "^5.3",
  7049. "symfony/dependency-injection": "^4.4|^5.0",
  7050. "symfony/expression-language": "^4.4|^5.0",
  7051. "symfony/http-foundation": "^4.4|^5.0",
  7052. "symfony/yaml": "^4.4|^5.0"
  7053. },
  7054. "suggest": {
  7055. "symfony/config": "For using the all-in-one router or any loader",
  7056. "symfony/expression-language": "For using expression matching",
  7057. "symfony/http-foundation": "For using a Symfony Request object",
  7058. "symfony/yaml": "For using the YAML loader"
  7059. },
  7060. "type": "library",
  7061. "autoload": {
  7062. "psr-4": {
  7063. "Symfony\\Component\\Routing\\": ""
  7064. },
  7065. "exclude-from-classmap": [
  7066. "/Tests/"
  7067. ]
  7068. },
  7069. "notification-url": "https://packagist.org/downloads/",
  7070. "license": [
  7071. "MIT"
  7072. ],
  7073. "authors": [
  7074. {
  7075. "name": "Fabien Potencier",
  7076. "email": "fabien@symfony.com"
  7077. },
  7078. {
  7079. "name": "Symfony Community",
  7080. "homepage": "https://symfony.com/contributors"
  7081. }
  7082. ],
  7083. "description": "Maps an HTTP request to a set of configuration variables",
  7084. "homepage": "https://symfony.com",
  7085. "keywords": [
  7086. "router",
  7087. "routing",
  7088. "uri",
  7089. "url"
  7090. ],
  7091. "support": {
  7092. "source": "https://github.com/symfony/routing/tree/v5.3.7"
  7093. },
  7094. "funding": [
  7095. {
  7096. "url": "https://symfony.com/sponsor",
  7097. "type": "custom"
  7098. },
  7099. {
  7100. "url": "https://github.com/fabpot",
  7101. "type": "github"
  7102. },
  7103. {
  7104. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7105. "type": "tidelift"
  7106. }
  7107. ],
  7108. "time": "2021-08-04T21:42:42+00:00"
  7109. },
  7110. {
  7111. "name": "symfony/service-contracts",
  7112. "version": "v2.4.0",
  7113. "source": {
  7114. "type": "git",
  7115. "url": "https://github.com/symfony/service-contracts.git",
  7116. "reference": "f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb"
  7117. },
  7118. "dist": {
  7119. "type": "zip",
  7120. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb",
  7121. "reference": "f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb",
  7122. "shasum": "",
  7123. "mirrors": [
  7124. {
  7125. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7126. "preferred": true
  7127. }
  7128. ]
  7129. },
  7130. "require": {
  7131. "php": ">=7.2.5",
  7132. "psr/container": "^1.1"
  7133. },
  7134. "suggest": {
  7135. "symfony/service-implementation": ""
  7136. },
  7137. "type": "library",
  7138. "extra": {
  7139. "branch-alias": {
  7140. "dev-main": "2.4-dev"
  7141. },
  7142. "thanks": {
  7143. "name": "symfony/contracts",
  7144. "url": "https://github.com/symfony/contracts"
  7145. }
  7146. },
  7147. "autoload": {
  7148. "psr-4": {
  7149. "Symfony\\Contracts\\Service\\": ""
  7150. }
  7151. },
  7152. "notification-url": "https://packagist.org/downloads/",
  7153. "license": [
  7154. "MIT"
  7155. ],
  7156. "authors": [
  7157. {
  7158. "name": "Nicolas Grekas",
  7159. "email": "p@tchwork.com"
  7160. },
  7161. {
  7162. "name": "Symfony Community",
  7163. "homepage": "https://symfony.com/contributors"
  7164. }
  7165. ],
  7166. "description": "Generic abstractions related to writing services",
  7167. "homepage": "https://symfony.com",
  7168. "keywords": [
  7169. "abstractions",
  7170. "contracts",
  7171. "decoupling",
  7172. "interfaces",
  7173. "interoperability",
  7174. "standards"
  7175. ],
  7176. "support": {
  7177. "source": "https://github.com/symfony/service-contracts/tree/v2.4.0"
  7178. },
  7179. "funding": [
  7180. {
  7181. "url": "https://symfony.com/sponsor",
  7182. "type": "custom"
  7183. },
  7184. {
  7185. "url": "https://github.com/fabpot",
  7186. "type": "github"
  7187. },
  7188. {
  7189. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7190. "type": "tidelift"
  7191. }
  7192. ],
  7193. "time": "2021-04-01T10:43:52+00:00"
  7194. },
  7195. {
  7196. "name": "symfony/string",
  7197. "version": "v5.3.10",
  7198. "source": {
  7199. "type": "git",
  7200. "url": "https://github.com/symfony/string.git",
  7201. "reference": "d70c35bb20bbca71fc4ab7921e3c6bda1a82a60c"
  7202. },
  7203. "dist": {
  7204. "type": "zip",
  7205. "url": "https://api.github.com/repos/symfony/string/zipball/d70c35bb20bbca71fc4ab7921e3c6bda1a82a60c",
  7206. "reference": "d70c35bb20bbca71fc4ab7921e3c6bda1a82a60c",
  7207. "shasum": "",
  7208. "mirrors": [
  7209. {
  7210. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7211. "preferred": true
  7212. }
  7213. ]
  7214. },
  7215. "require": {
  7216. "php": ">=7.2.5",
  7217. "symfony/polyfill-ctype": "~1.8",
  7218. "symfony/polyfill-intl-grapheme": "~1.0",
  7219. "symfony/polyfill-intl-normalizer": "~1.0",
  7220. "symfony/polyfill-mbstring": "~1.0",
  7221. "symfony/polyfill-php80": "~1.15"
  7222. },
  7223. "require-dev": {
  7224. "symfony/error-handler": "^4.4|^5.0",
  7225. "symfony/http-client": "^4.4|^5.0",
  7226. "symfony/translation-contracts": "^1.1|^2",
  7227. "symfony/var-exporter": "^4.4|^5.0"
  7228. },
  7229. "type": "library",
  7230. "autoload": {
  7231. "psr-4": {
  7232. "Symfony\\Component\\String\\": ""
  7233. },
  7234. "files": [
  7235. "Resources/functions.php"
  7236. ],
  7237. "exclude-from-classmap": [
  7238. "/Tests/"
  7239. ]
  7240. },
  7241. "notification-url": "https://packagist.org/downloads/",
  7242. "license": [
  7243. "MIT"
  7244. ],
  7245. "authors": [
  7246. {
  7247. "name": "Nicolas Grekas",
  7248. "email": "p@tchwork.com"
  7249. },
  7250. {
  7251. "name": "Symfony Community",
  7252. "homepage": "https://symfony.com/contributors"
  7253. }
  7254. ],
  7255. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7256. "homepage": "https://symfony.com",
  7257. "keywords": [
  7258. "grapheme",
  7259. "i18n",
  7260. "string",
  7261. "unicode",
  7262. "utf-8",
  7263. "utf8"
  7264. ],
  7265. "support": {
  7266. "source": "https://github.com/symfony/string/tree/v5.3.10"
  7267. },
  7268. "funding": [
  7269. {
  7270. "url": "https://symfony.com/sponsor",
  7271. "type": "custom"
  7272. },
  7273. {
  7274. "url": "https://github.com/fabpot",
  7275. "type": "github"
  7276. },
  7277. {
  7278. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7279. "type": "tidelift"
  7280. }
  7281. ],
  7282. "time": "2021-10-27T18:21:46+00:00"
  7283. },
  7284. {
  7285. "name": "symfony/translation",
  7286. "version": "v5.3.10",
  7287. "source": {
  7288. "type": "git",
  7289. "url": "https://github.com/symfony/translation.git",
  7290. "reference": "6ef197aea2ac8b9cd63e0da7522b3771714035aa"
  7291. },
  7292. "dist": {
  7293. "type": "zip",
  7294. "url": "https://api.github.com/repos/symfony/translation/zipball/6ef197aea2ac8b9cd63e0da7522b3771714035aa",
  7295. "reference": "6ef197aea2ac8b9cd63e0da7522b3771714035aa",
  7296. "shasum": "",
  7297. "mirrors": [
  7298. {
  7299. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7300. "preferred": true
  7301. }
  7302. ]
  7303. },
  7304. "require": {
  7305. "php": ">=7.2.5",
  7306. "symfony/deprecation-contracts": "^2.1",
  7307. "symfony/polyfill-mbstring": "~1.0",
  7308. "symfony/polyfill-php80": "^1.16",
  7309. "symfony/translation-contracts": "^2.3"
  7310. },
  7311. "conflict": {
  7312. "symfony/config": "<4.4",
  7313. "symfony/dependency-injection": "<5.0",
  7314. "symfony/http-kernel": "<5.0",
  7315. "symfony/twig-bundle": "<5.0",
  7316. "symfony/yaml": "<4.4"
  7317. },
  7318. "provide": {
  7319. "symfony/translation-implementation": "2.3"
  7320. },
  7321. "require-dev": {
  7322. "psr/log": "^1|^2|^3",
  7323. "symfony/config": "^4.4|^5.0",
  7324. "symfony/console": "^4.4|^5.0",
  7325. "symfony/dependency-injection": "^5.0",
  7326. "symfony/finder": "^4.4|^5.0",
  7327. "symfony/http-kernel": "^5.0",
  7328. "symfony/intl": "^4.4|^5.0",
  7329. "symfony/polyfill-intl-icu": "^1.21",
  7330. "symfony/service-contracts": "^1.1.2|^2",
  7331. "symfony/yaml": "^4.4|^5.0"
  7332. },
  7333. "suggest": {
  7334. "psr/log-implementation": "To use logging capability in translator",
  7335. "symfony/config": "",
  7336. "symfony/yaml": ""
  7337. },
  7338. "type": "library",
  7339. "autoload": {
  7340. "files": [
  7341. "Resources/functions.php"
  7342. ],
  7343. "psr-4": {
  7344. "Symfony\\Component\\Translation\\": ""
  7345. },
  7346. "exclude-from-classmap": [
  7347. "/Tests/"
  7348. ]
  7349. },
  7350. "notification-url": "https://packagist.org/downloads/",
  7351. "license": [
  7352. "MIT"
  7353. ],
  7354. "authors": [
  7355. {
  7356. "name": "Fabien Potencier",
  7357. "email": "fabien@symfony.com"
  7358. },
  7359. {
  7360. "name": "Symfony Community",
  7361. "homepage": "https://symfony.com/contributors"
  7362. }
  7363. ],
  7364. "description": "Provides tools to internationalize your application",
  7365. "homepage": "https://symfony.com",
  7366. "support": {
  7367. "source": "https://github.com/symfony/translation/tree/v5.3.10"
  7368. },
  7369. "funding": [
  7370. {
  7371. "url": "https://symfony.com/sponsor",
  7372. "type": "custom"
  7373. },
  7374. {
  7375. "url": "https://github.com/fabpot",
  7376. "type": "github"
  7377. },
  7378. {
  7379. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7380. "type": "tidelift"
  7381. }
  7382. ],
  7383. "time": "2021-10-10T06:43:24+00:00"
  7384. },
  7385. {
  7386. "name": "symfony/translation-contracts",
  7387. "version": "v2.4.0",
  7388. "source": {
  7389. "type": "git",
  7390. "url": "https://github.com/symfony/translation-contracts.git",
  7391. "reference": "95c812666f3e91db75385749fe219c5e494c7f95"
  7392. },
  7393. "dist": {
  7394. "type": "zip",
  7395. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/95c812666f3e91db75385749fe219c5e494c7f95",
  7396. "reference": "95c812666f3e91db75385749fe219c5e494c7f95",
  7397. "shasum": "",
  7398. "mirrors": [
  7399. {
  7400. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7401. "preferred": true
  7402. }
  7403. ]
  7404. },
  7405. "require": {
  7406. "php": ">=7.2.5"
  7407. },
  7408. "suggest": {
  7409. "symfony/translation-implementation": ""
  7410. },
  7411. "type": "library",
  7412. "extra": {
  7413. "branch-alias": {
  7414. "dev-main": "2.4-dev"
  7415. },
  7416. "thanks": {
  7417. "name": "symfony/contracts",
  7418. "url": "https://github.com/symfony/contracts"
  7419. }
  7420. },
  7421. "autoload": {
  7422. "psr-4": {
  7423. "Symfony\\Contracts\\Translation\\": ""
  7424. }
  7425. },
  7426. "notification-url": "https://packagist.org/downloads/",
  7427. "license": [
  7428. "MIT"
  7429. ],
  7430. "authors": [
  7431. {
  7432. "name": "Nicolas Grekas",
  7433. "email": "p@tchwork.com"
  7434. },
  7435. {
  7436. "name": "Symfony Community",
  7437. "homepage": "https://symfony.com/contributors"
  7438. }
  7439. ],
  7440. "description": "Generic abstractions related to translation",
  7441. "homepage": "https://symfony.com",
  7442. "keywords": [
  7443. "abstractions",
  7444. "contracts",
  7445. "decoupling",
  7446. "interfaces",
  7447. "interoperability",
  7448. "standards"
  7449. ],
  7450. "support": {
  7451. "source": "https://github.com/symfony/translation-contracts/tree/v2.4.0"
  7452. },
  7453. "funding": [
  7454. {
  7455. "url": "https://symfony.com/sponsor",
  7456. "type": "custom"
  7457. },
  7458. {
  7459. "url": "https://github.com/fabpot",
  7460. "type": "github"
  7461. },
  7462. {
  7463. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7464. "type": "tidelift"
  7465. }
  7466. ],
  7467. "time": "2021-03-23T23:28:01+00:00"
  7468. },
  7469. {
  7470. "name": "symfony/var-dumper",
  7471. "version": "v5.3.10",
  7472. "source": {
  7473. "type": "git",
  7474. "url": "https://github.com/symfony/var-dumper.git",
  7475. "reference": "875432adb5f5570fff21036fd22aee244636b7d1"
  7476. },
  7477. "dist": {
  7478. "type": "zip",
  7479. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/875432adb5f5570fff21036fd22aee244636b7d1",
  7480. "reference": "875432adb5f5570fff21036fd22aee244636b7d1",
  7481. "shasum": "",
  7482. "mirrors": [
  7483. {
  7484. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7485. "preferred": true
  7486. }
  7487. ]
  7488. },
  7489. "require": {
  7490. "php": ">=7.2.5",
  7491. "symfony/polyfill-mbstring": "~1.0",
  7492. "symfony/polyfill-php80": "^1.16"
  7493. },
  7494. "conflict": {
  7495. "phpunit/phpunit": "<5.4.3",
  7496. "symfony/console": "<4.4"
  7497. },
  7498. "require-dev": {
  7499. "ext-iconv": "*",
  7500. "symfony/console": "^4.4|^5.0",
  7501. "symfony/process": "^4.4|^5.0",
  7502. "twig/twig": "^2.13|^3.0.4"
  7503. },
  7504. "suggest": {
  7505. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  7506. "ext-intl": "To show region name in time zone dump",
  7507. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  7508. },
  7509. "bin": [
  7510. "Resources/bin/var-dump-server"
  7511. ],
  7512. "type": "library",
  7513. "autoload": {
  7514. "files": [
  7515. "Resources/functions/dump.php"
  7516. ],
  7517. "psr-4": {
  7518. "Symfony\\Component\\VarDumper\\": ""
  7519. },
  7520. "exclude-from-classmap": [
  7521. "/Tests/"
  7522. ]
  7523. },
  7524. "notification-url": "https://packagist.org/downloads/",
  7525. "license": [
  7526. "MIT"
  7527. ],
  7528. "authors": [
  7529. {
  7530. "name": "Nicolas Grekas",
  7531. "email": "p@tchwork.com"
  7532. },
  7533. {
  7534. "name": "Symfony Community",
  7535. "homepage": "https://symfony.com/contributors"
  7536. }
  7537. ],
  7538. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7539. "homepage": "https://symfony.com",
  7540. "keywords": [
  7541. "debug",
  7542. "dump"
  7543. ],
  7544. "support": {
  7545. "source": "https://github.com/symfony/var-dumper/tree/v5.3.10"
  7546. },
  7547. "funding": [
  7548. {
  7549. "url": "https://symfony.com/sponsor",
  7550. "type": "custom"
  7551. },
  7552. {
  7553. "url": "https://github.com/fabpot",
  7554. "type": "github"
  7555. },
  7556. {
  7557. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7558. "type": "tidelift"
  7559. }
  7560. ],
  7561. "time": "2021-10-26T09:30:15+00:00"
  7562. },
  7563. {
  7564. "name": "te7a-houdini/laravel-trix",
  7565. "version": "2.0.5",
  7566. "source": {
  7567. "type": "git",
  7568. "url": "https://github.com/amaelftah/laravel-trix.git",
  7569. "reference": "517404ca45115ac393cdad14786e9c599f3efcf8"
  7570. },
  7571. "dist": {
  7572. "type": "zip",
  7573. "url": "https://api.github.com/repos/amaelftah/laravel-trix/zipball/517404ca45115ac393cdad14786e9c599f3efcf8",
  7574. "reference": "517404ca45115ac393cdad14786e9c599f3efcf8",
  7575. "shasum": "",
  7576. "mirrors": [
  7577. {
  7578. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7579. "preferred": true
  7580. }
  7581. ]
  7582. },
  7583. "require": {
  7584. "laravel/framework": "~5.8.0|~6.0|~7.0|~8.0",
  7585. "php": "^7.1|^8.0"
  7586. },
  7587. "require-dev": {
  7588. "orchestra/testbench": "^3.5|~4.0|~5.0|~6.0"
  7589. },
  7590. "type": "library",
  7591. "extra": {
  7592. "laravel": {
  7593. "providers": [
  7594. "Te7aHoudini\\LaravelTrix\\LaravelTrixServiceProvider"
  7595. ]
  7596. }
  7597. },
  7598. "autoload": {
  7599. "psr-4": {
  7600. "Te7aHoudini\\LaravelTrix\\": "src"
  7601. }
  7602. },
  7603. "notification-url": "https://packagist.org/downloads/",
  7604. "license": [
  7605. "MIT"
  7606. ],
  7607. "authors": [
  7608. {
  7609. "name": "Ahmed Abd El Ftah",
  7610. "email": "ahmedabdelftah95165@gmail.com",
  7611. "role": "Developer"
  7612. }
  7613. ],
  7614. "description": "trix editor for laravel inspired by ActionText for rails",
  7615. "homepage": "https://github.com/te7ahoudini/laravel-trix",
  7616. "keywords": [
  7617. "laravel-trix",
  7618. "te7a-houdini"
  7619. ],
  7620. "support": {
  7621. "issues": "https://github.com/amaelftah/laravel-trix/issues",
  7622. "source": "https://github.com/amaelftah/laravel-trix/tree/2.0.5"
  7623. },
  7624. "time": "2021-01-21T01:21:17+00:00"
  7625. },
  7626. {
  7627. "name": "tightenco/collect",
  7628. "version": "v5.6.33",
  7629. "source": {
  7630. "type": "git",
  7631. "url": "https://github.com/tighten/collect.git",
  7632. "reference": "d7381736dca44ac17d0805a25191b094e5a22446"
  7633. },
  7634. "dist": {
  7635. "type": "zip",
  7636. "url": "https://api.github.com/repos/tighten/collect/zipball/d7381736dca44ac17d0805a25191b094e5a22446",
  7637. "reference": "d7381736dca44ac17d0805a25191b094e5a22446",
  7638. "shasum": "",
  7639. "mirrors": [
  7640. {
  7641. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7642. "preferred": true
  7643. }
  7644. ]
  7645. },
  7646. "require": {
  7647. "php": ">=7.1.3",
  7648. "symfony/var-dumper": ">=3.1.10"
  7649. },
  7650. "require-dev": {
  7651. "mockery/mockery": "~1.0",
  7652. "nesbot/carbon": "~1.20",
  7653. "phpunit/phpunit": "~7.0"
  7654. },
  7655. "type": "library",
  7656. "autoload": {
  7657. "files": [
  7658. "src/Collect/Support/helpers.php",
  7659. "src/Collect/Support/alias.php"
  7660. ],
  7661. "psr-4": {
  7662. "Tightenco\\Collect\\": "src/Collect"
  7663. }
  7664. },
  7665. "notification-url": "https://packagist.org/downloads/",
  7666. "license": [
  7667. "MIT"
  7668. ],
  7669. "authors": [
  7670. {
  7671. "name": "Taylor Otwell",
  7672. "email": "taylorotwell@gmail.com"
  7673. }
  7674. ],
  7675. "description": "Collect - Illuminate Collections as a separate package.",
  7676. "keywords": [
  7677. "collection",
  7678. "laravel"
  7679. ],
  7680. "support": {
  7681. "issues": "https://github.com/tighten/collect/issues",
  7682. "source": "https://github.com/tighten/collect/tree/v5.6.33"
  7683. },
  7684. "time": "2018-08-09T16:56:26+00:00"
  7685. },
  7686. {
  7687. "name": "tijsverkoyen/css-to-inline-styles",
  7688. "version": "2.2.3",
  7689. "source": {
  7690. "type": "git",
  7691. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7692. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5"
  7693. },
  7694. "dist": {
  7695. "type": "zip",
  7696. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/b43b05cf43c1b6d849478965062b6ef73e223bb5",
  7697. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5",
  7698. "shasum": "",
  7699. "mirrors": [
  7700. {
  7701. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7702. "preferred": true
  7703. }
  7704. ]
  7705. },
  7706. "require": {
  7707. "ext-dom": "*",
  7708. "ext-libxml": "*",
  7709. "php": "^5.5 || ^7.0 || ^8.0",
  7710. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0"
  7711. },
  7712. "require-dev": {
  7713. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5"
  7714. },
  7715. "type": "library",
  7716. "extra": {
  7717. "branch-alias": {
  7718. "dev-master": "2.2.x-dev"
  7719. }
  7720. },
  7721. "autoload": {
  7722. "psr-4": {
  7723. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  7724. }
  7725. },
  7726. "notification-url": "https://packagist.org/downloads/",
  7727. "license": [
  7728. "BSD-3-Clause"
  7729. ],
  7730. "authors": [
  7731. {
  7732. "name": "Tijs Verkoyen",
  7733. "email": "css_to_inline_styles@verkoyen.eu",
  7734. "role": "Developer"
  7735. }
  7736. ],
  7737. "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.",
  7738. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  7739. "support": {
  7740. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  7741. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.3"
  7742. },
  7743. "time": "2020-07-13T06:12:54+00:00"
  7744. },
  7745. {
  7746. "name": "vlucas/phpdotenv",
  7747. "version": "v4.2.1",
  7748. "source": {
  7749. "type": "git",
  7750. "url": "https://github.com/vlucas/phpdotenv.git",
  7751. "reference": "d38f4d1edcbe32515a0ad593cbd4c858e337263c"
  7752. },
  7753. "dist": {
  7754. "type": "zip",
  7755. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/d38f4d1edcbe32515a0ad593cbd4c858e337263c",
  7756. "reference": "d38f4d1edcbe32515a0ad593cbd4c858e337263c",
  7757. "shasum": "",
  7758. "mirrors": [
  7759. {
  7760. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7761. "preferred": true
  7762. }
  7763. ]
  7764. },
  7765. "require": {
  7766. "php": "^5.5.9 || ^7.0 || ^8.0",
  7767. "phpoption/phpoption": "^1.7.3",
  7768. "symfony/polyfill-ctype": "^1.17"
  7769. },
  7770. "require-dev": {
  7771. "bamarni/composer-bin-plugin": "^1.4.1",
  7772. "ext-filter": "*",
  7773. "ext-pcre": "*",
  7774. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.21"
  7775. },
  7776. "suggest": {
  7777. "ext-filter": "Required to use the boolean validator.",
  7778. "ext-pcre": "Required to use most of the library."
  7779. },
  7780. "type": "library",
  7781. "extra": {
  7782. "branch-alias": {
  7783. "dev-master": "4.2-dev"
  7784. }
  7785. },
  7786. "autoload": {
  7787. "psr-4": {
  7788. "Dotenv\\": "src/"
  7789. }
  7790. },
  7791. "notification-url": "https://packagist.org/downloads/",
  7792. "license": [
  7793. "BSD-3-Clause"
  7794. ],
  7795. "authors": [
  7796. {
  7797. "name": "Graham Campbell",
  7798. "email": "hello@gjcampbell.co.uk"
  7799. },
  7800. {
  7801. "name": "Vance Lucas",
  7802. "email": "vance@vancelucas.com"
  7803. }
  7804. ],
  7805. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7806. "keywords": [
  7807. "dotenv",
  7808. "env",
  7809. "environment"
  7810. ],
  7811. "support": {
  7812. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7813. "source": "https://github.com/vlucas/phpdotenv/tree/v4.2.1"
  7814. },
  7815. "funding": [
  7816. {
  7817. "url": "https://github.com/GrahamCampbell",
  7818. "type": "github"
  7819. },
  7820. {
  7821. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7822. "type": "tidelift"
  7823. }
  7824. ],
  7825. "time": "2021-10-02T19:17:08+00:00"
  7826. },
  7827. {
  7828. "name": "voku/portable-ascii",
  7829. "version": "1.5.6",
  7830. "source": {
  7831. "type": "git",
  7832. "url": "https://github.com/voku/portable-ascii.git",
  7833. "reference": "80953678b19901e5165c56752d087fc11526017c"
  7834. },
  7835. "dist": {
  7836. "type": "zip",
  7837. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/80953678b19901e5165c56752d087fc11526017c",
  7838. "reference": "80953678b19901e5165c56752d087fc11526017c",
  7839. "shasum": "",
  7840. "mirrors": [
  7841. {
  7842. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7843. "preferred": true
  7844. }
  7845. ]
  7846. },
  7847. "require": {
  7848. "php": ">=7.0.0"
  7849. },
  7850. "require-dev": {
  7851. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  7852. },
  7853. "suggest": {
  7854. "ext-intl": "Use Intl for transliterator_transliterate() support"
  7855. },
  7856. "type": "library",
  7857. "autoload": {
  7858. "psr-4": {
  7859. "voku\\": "src/voku/"
  7860. }
  7861. },
  7862. "notification-url": "https://packagist.org/downloads/",
  7863. "license": [
  7864. "MIT"
  7865. ],
  7866. "authors": [
  7867. {
  7868. "name": "Lars Moelleken",
  7869. "homepage": "http://www.moelleken.org/"
  7870. }
  7871. ],
  7872. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  7873. "homepage": "https://github.com/voku/portable-ascii",
  7874. "keywords": [
  7875. "ascii",
  7876. "clean",
  7877. "php"
  7878. ],
  7879. "support": {
  7880. "issues": "https://github.com/voku/portable-ascii/issues",
  7881. "source": "https://github.com/voku/portable-ascii/tree/1.5.6"
  7882. },
  7883. "funding": [
  7884. {
  7885. "url": "https://www.paypal.me/moelleken",
  7886. "type": "custom"
  7887. },
  7888. {
  7889. "url": "https://github.com/voku",
  7890. "type": "github"
  7891. },
  7892. {
  7893. "url": "https://opencollective.com/portable-ascii",
  7894. "type": "open_collective"
  7895. },
  7896. {
  7897. "url": "https://www.patreon.com/voku",
  7898. "type": "patreon"
  7899. },
  7900. {
  7901. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  7902. "type": "tidelift"
  7903. }
  7904. ],
  7905. "time": "2020-11-12T00:07:28+00:00"
  7906. },
  7907. {
  7908. "name": "yajra/laravel-oci8",
  7909. "version": "v7.0.0",
  7910. "source": {
  7911. "type": "git",
  7912. "url": "https://github.com/yajra/laravel-oci8.git",
  7913. "reference": "0d0db3c21a15438ee4bd610f6a0c585cb45fd974"
  7914. },
  7915. "dist": {
  7916. "type": "zip",
  7917. "url": "https://api.github.com/repos/yajra/laravel-oci8/zipball/0d0db3c21a15438ee4bd610f6a0c585cb45fd974",
  7918. "reference": "0d0db3c21a15438ee4bd610f6a0c585cb45fd974",
  7919. "shasum": "",
  7920. "mirrors": [
  7921. {
  7922. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7923. "preferred": true
  7924. }
  7925. ]
  7926. },
  7927. "require": {
  7928. "ext-oci8": ">=2.0.0",
  7929. "ext-pdo": "*",
  7930. "illuminate/database": "^7",
  7931. "illuminate/support": "^7",
  7932. "php": "^7.2.5",
  7933. "yajra/laravel-pdo-via-oci8": "^2"
  7934. },
  7935. "require-dev": {
  7936. "mockery/mockery": "^1.3.1",
  7937. "phpunit/phpunit": "^8.4|^9.0",
  7938. "scrutinizer/ocular": "~1.1"
  7939. },
  7940. "type": "library",
  7941. "extra": {
  7942. "branch-alias": {
  7943. "dev-master": "7.x-dev"
  7944. },
  7945. "laravel": {
  7946. "providers": [
  7947. "Yajra\\Oci8\\Oci8ServiceProvider"
  7948. ]
  7949. }
  7950. },
  7951. "autoload": {
  7952. "files": [
  7953. "src/helper.php"
  7954. ],
  7955. "psr-4": {
  7956. "Yajra\\": "src/"
  7957. }
  7958. },
  7959. "notification-url": "https://packagist.org/downloads/",
  7960. "license": [
  7961. "MIT"
  7962. ],
  7963. "authors": [
  7964. {
  7965. "name": "Arjay Angeles",
  7966. "email": "aqangeles@gmail.com"
  7967. }
  7968. ],
  7969. "description": "Oracle DB driver for Laravel 4|5|6|7 via OCI8",
  7970. "keywords": [
  7971. "laravel",
  7972. "oci8",
  7973. "oracle",
  7974. "pdo_oci"
  7975. ],
  7976. "support": {
  7977. "issues": "https://github.com/yajra/laravel-oci8/issues",
  7978. "source": "https://github.com/yajra/laravel-oci8/tree/v7.0.0"
  7979. },
  7980. "funding": [
  7981. {
  7982. "url": "https://www.paypal.me/yajra",
  7983. "type": "custom"
  7984. },
  7985. {
  7986. "url": "https://www.patreon.com/yajra",
  7987. "type": "patreon"
  7988. }
  7989. ],
  7990. "time": "2020-03-04T02:15:19+00:00"
  7991. },
  7992. {
  7993. "name": "yajra/laravel-pdo-via-oci8",
  7994. "version": "v2.2.0",
  7995. "source": {
  7996. "type": "git",
  7997. "url": "https://github.com/yajra/pdo-via-oci8.git",
  7998. "reference": "93610843b7abe975413288bcc4adb347edefb4b8"
  7999. },
  8000. "dist": {
  8001. "type": "zip",
  8002. "url": "https://api.github.com/repos/yajra/pdo-via-oci8/zipball/93610843b7abe975413288bcc4adb347edefb4b8",
  8003. "reference": "93610843b7abe975413288bcc4adb347edefb4b8",
  8004. "shasum": "",
  8005. "mirrors": [
  8006. {
  8007. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8008. "preferred": true
  8009. }
  8010. ]
  8011. },
  8012. "require-dev": {
  8013. "phpunit/phpunit": "^6.4"
  8014. },
  8015. "type": "library",
  8016. "extra": {
  8017. "branch-alias": {
  8018. "dev-master": "2.0-dev"
  8019. }
  8020. },
  8021. "autoload": {
  8022. "psr-4": {
  8023. "Yajra\\": "src/"
  8024. }
  8025. },
  8026. "notification-url": "https://packagist.org/downloads/",
  8027. "license": [
  8028. "MIT"
  8029. ],
  8030. "authors": [
  8031. {
  8032. "name": "Arjay Angeles",
  8033. "email": "aqangeles@gmail.com"
  8034. }
  8035. ],
  8036. "description": "PDO userspace driver proxying calls to PHP OCI8 driver",
  8037. "support": {
  8038. "issues": "https://github.com/yajra/pdo-via-oci8/issues",
  8039. "source": "https://github.com/yajra/pdo-via-oci8/tree/v2.2.0"
  8040. },
  8041. "time": "2020-12-11T12:29:18+00:00"
  8042. }
  8043. ],
  8044. "packages-dev": [
  8045. {
  8046. "name": "barryvdh/laravel-debugbar",
  8047. "version": "v3.6.4",
  8048. "source": {
  8049. "type": "git",
  8050. "url": "https://github.com/barryvdh/laravel-debugbar.git",
  8051. "reference": "3c2d678269ba60e178bcd93e36f6a91c36b727f1"
  8052. },
  8053. "dist": {
  8054. "type": "zip",
  8055. "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/3c2d678269ba60e178bcd93e36f6a91c36b727f1",
  8056. "reference": "3c2d678269ba60e178bcd93e36f6a91c36b727f1",
  8057. "shasum": "",
  8058. "mirrors": [
  8059. {
  8060. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8061. "preferred": true
  8062. }
  8063. ]
  8064. },
  8065. "require": {
  8066. "illuminate/routing": "^6|^7|^8",
  8067. "illuminate/session": "^6|^7|^8",
  8068. "illuminate/support": "^6|^7|^8",
  8069. "maximebf/debugbar": "^1.17.2",
  8070. "php": ">=7.2",
  8071. "symfony/debug": "^4.3|^5",
  8072. "symfony/finder": "^4.3|^5"
  8073. },
  8074. "require-dev": {
  8075. "mockery/mockery": "^1.3.3",
  8076. "orchestra/testbench-dusk": "^4|^5|^6",
  8077. "phpunit/phpunit": "^8.5|^9.0",
  8078. "squizlabs/php_codesniffer": "^3.5"
  8079. },
  8080. "type": "library",
  8081. "extra": {
  8082. "branch-alias": {
  8083. "dev-master": "3.6-dev"
  8084. },
  8085. "laravel": {
  8086. "providers": [
  8087. "Barryvdh\\Debugbar\\ServiceProvider"
  8088. ],
  8089. "aliases": {
  8090. "Debugbar": "Barryvdh\\Debugbar\\Facade"
  8091. }
  8092. }
  8093. },
  8094. "autoload": {
  8095. "psr-4": {
  8096. "Barryvdh\\Debugbar\\": "src/"
  8097. },
  8098. "files": [
  8099. "src/helpers.php"
  8100. ]
  8101. },
  8102. "notification-url": "https://packagist.org/downloads/",
  8103. "license": [
  8104. "MIT"
  8105. ],
  8106. "authors": [
  8107. {
  8108. "name": "Barry vd. Heuvel",
  8109. "email": "barryvdh@gmail.com"
  8110. }
  8111. ],
  8112. "description": "PHP Debugbar integration for Laravel",
  8113. "keywords": [
  8114. "debug",
  8115. "debugbar",
  8116. "laravel",
  8117. "profiler",
  8118. "webprofiler"
  8119. ],
  8120. "support": {
  8121. "issues": "https://github.com/barryvdh/laravel-debugbar/issues",
  8122. "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.6.4"
  8123. },
  8124. "funding": [
  8125. {
  8126. "url": "https://fruitcake.nl",
  8127. "type": "custom"
  8128. },
  8129. {
  8130. "url": "https://github.com/barryvdh",
  8131. "type": "github"
  8132. }
  8133. ],
  8134. "time": "2021-10-21T10:57:31+00:00"
  8135. },
  8136. {
  8137. "name": "doctrine/instantiator",
  8138. "version": "1.4.0",
  8139. "source": {
  8140. "type": "git",
  8141. "url": "https://github.com/doctrine/instantiator.git",
  8142. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
  8143. },
  8144. "dist": {
  8145. "type": "zip",
  8146. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
  8147. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
  8148. "shasum": "",
  8149. "mirrors": [
  8150. {
  8151. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8152. "preferred": true
  8153. }
  8154. ]
  8155. },
  8156. "require": {
  8157. "php": "^7.1 || ^8.0"
  8158. },
  8159. "require-dev": {
  8160. "doctrine/coding-standard": "^8.0",
  8161. "ext-pdo": "*",
  8162. "ext-phar": "*",
  8163. "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
  8164. "phpstan/phpstan": "^0.12",
  8165. "phpstan/phpstan-phpunit": "^0.12",
  8166. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  8167. },
  8168. "type": "library",
  8169. "autoload": {
  8170. "psr-4": {
  8171. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  8172. }
  8173. },
  8174. "notification-url": "https://packagist.org/downloads/",
  8175. "license": [
  8176. "MIT"
  8177. ],
  8178. "authors": [
  8179. {
  8180. "name": "Marco Pivetta",
  8181. "email": "ocramius@gmail.com",
  8182. "homepage": "https://ocramius.github.io/"
  8183. }
  8184. ],
  8185. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8186. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  8187. "keywords": [
  8188. "constructor",
  8189. "instantiate"
  8190. ],
  8191. "support": {
  8192. "issues": "https://github.com/doctrine/instantiator/issues",
  8193. "source": "https://github.com/doctrine/instantiator/tree/1.4.0"
  8194. },
  8195. "funding": [
  8196. {
  8197. "url": "https://www.doctrine-project.org/sponsorship.html",
  8198. "type": "custom"
  8199. },
  8200. {
  8201. "url": "https://www.patreon.com/phpdoctrine",
  8202. "type": "patreon"
  8203. },
  8204. {
  8205. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  8206. "type": "tidelift"
  8207. }
  8208. ],
  8209. "time": "2020-11-10T18:47:58+00:00"
  8210. },
  8211. {
  8212. "name": "filp/whoops",
  8213. "version": "2.14.4",
  8214. "source": {
  8215. "type": "git",
  8216. "url": "https://github.com/filp/whoops.git",
  8217. "reference": "f056f1fe935d9ed86e698905a957334029899895"
  8218. },
  8219. "dist": {
  8220. "type": "zip",
  8221. "url": "https://api.github.com/repos/filp/whoops/zipball/f056f1fe935d9ed86e698905a957334029899895",
  8222. "reference": "f056f1fe935d9ed86e698905a957334029899895",
  8223. "shasum": "",
  8224. "mirrors": [
  8225. {
  8226. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8227. "preferred": true
  8228. }
  8229. ]
  8230. },
  8231. "require": {
  8232. "php": "^5.5.9 || ^7.0 || ^8.0",
  8233. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  8234. },
  8235. "require-dev": {
  8236. "mockery/mockery": "^0.9 || ^1.0",
  8237. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  8238. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  8239. },
  8240. "suggest": {
  8241. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  8242. "whoops/soap": "Formats errors as SOAP responses"
  8243. },
  8244. "type": "library",
  8245. "extra": {
  8246. "branch-alias": {
  8247. "dev-master": "2.7-dev"
  8248. }
  8249. },
  8250. "autoload": {
  8251. "psr-4": {
  8252. "Whoops\\": "src/Whoops/"
  8253. }
  8254. },
  8255. "notification-url": "https://packagist.org/downloads/",
  8256. "license": [
  8257. "MIT"
  8258. ],
  8259. "authors": [
  8260. {
  8261. "name": "Filipe Dobreira",
  8262. "homepage": "https://github.com/filp",
  8263. "role": "Developer"
  8264. }
  8265. ],
  8266. "description": "php error handling for cool kids",
  8267. "homepage": "https://filp.github.io/whoops/",
  8268. "keywords": [
  8269. "error",
  8270. "exception",
  8271. "handling",
  8272. "library",
  8273. "throwable",
  8274. "whoops"
  8275. ],
  8276. "support": {
  8277. "issues": "https://github.com/filp/whoops/issues",
  8278. "source": "https://github.com/filp/whoops/tree/2.14.4"
  8279. },
  8280. "funding": [
  8281. {
  8282. "url": "https://github.com/denis-sokolov",
  8283. "type": "github"
  8284. }
  8285. ],
  8286. "time": "2021-10-03T12:00:00+00:00"
  8287. },
  8288. {
  8289. "name": "fzaninotto/faker",
  8290. "version": "v1.9.2",
  8291. "source": {
  8292. "type": "git",
  8293. "url": "https://github.com/fzaninotto/Faker.git",
  8294. "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e"
  8295. },
  8296. "dist": {
  8297. "type": "zip",
  8298. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
  8299. "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
  8300. "shasum": "",
  8301. "mirrors": [
  8302. {
  8303. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8304. "preferred": true
  8305. }
  8306. ]
  8307. },
  8308. "require": {
  8309. "php": "^5.3.3 || ^7.0"
  8310. },
  8311. "require-dev": {
  8312. "ext-intl": "*",
  8313. "phpunit/phpunit": "^4.8.35 || ^5.7",
  8314. "squizlabs/php_codesniffer": "^2.9.2"
  8315. },
  8316. "type": "library",
  8317. "extra": {
  8318. "branch-alias": {
  8319. "dev-master": "1.9-dev"
  8320. }
  8321. },
  8322. "autoload": {
  8323. "psr-4": {
  8324. "Faker\\": "src/Faker/"
  8325. }
  8326. },
  8327. "notification-url": "https://packagist.org/downloads/",
  8328. "license": [
  8329. "MIT"
  8330. ],
  8331. "authors": [
  8332. {
  8333. "name": "François Zaninotto"
  8334. }
  8335. ],
  8336. "description": "Faker is a PHP library that generates fake data for you.",
  8337. "keywords": [
  8338. "data",
  8339. "faker",
  8340. "fixtures"
  8341. ],
  8342. "support": {
  8343. "issues": "https://github.com/fzaninotto/Faker/issues",
  8344. "source": "https://github.com/fzaninotto/Faker/tree/v1.9.2"
  8345. },
  8346. "abandoned": true,
  8347. "time": "2020-12-11T09:56:16+00:00"
  8348. },
  8349. {
  8350. "name": "hamcrest/hamcrest-php",
  8351. "version": "v2.0.1",
  8352. "source": {
  8353. "type": "git",
  8354. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8355. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8356. },
  8357. "dist": {
  8358. "type": "zip",
  8359. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8360. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8361. "shasum": "",
  8362. "mirrors": [
  8363. {
  8364. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8365. "preferred": true
  8366. }
  8367. ]
  8368. },
  8369. "require": {
  8370. "php": "^5.3|^7.0|^8.0"
  8371. },
  8372. "replace": {
  8373. "cordoval/hamcrest-php": "*",
  8374. "davedevelopment/hamcrest-php": "*",
  8375. "kodova/hamcrest-php": "*"
  8376. },
  8377. "require-dev": {
  8378. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8379. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8380. },
  8381. "type": "library",
  8382. "extra": {
  8383. "branch-alias": {
  8384. "dev-master": "2.1-dev"
  8385. }
  8386. },
  8387. "autoload": {
  8388. "classmap": [
  8389. "hamcrest"
  8390. ]
  8391. },
  8392. "notification-url": "https://packagist.org/downloads/",
  8393. "license": [
  8394. "BSD-3-Clause"
  8395. ],
  8396. "description": "This is the PHP port of Hamcrest Matchers",
  8397. "keywords": [
  8398. "test"
  8399. ],
  8400. "support": {
  8401. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8402. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8403. },
  8404. "time": "2020-07-09T08:09:16+00:00"
  8405. },
  8406. {
  8407. "name": "maximebf/debugbar",
  8408. "version": "v1.17.3",
  8409. "source": {
  8410. "type": "git",
  8411. "url": "https://github.com/maximebf/php-debugbar.git",
  8412. "reference": "e8ac3499af0ea5b440908e06cc0abe5898008b3c"
  8413. },
  8414. "dist": {
  8415. "type": "zip",
  8416. "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/e8ac3499af0ea5b440908e06cc0abe5898008b3c",
  8417. "reference": "e8ac3499af0ea5b440908e06cc0abe5898008b3c",
  8418. "shasum": "",
  8419. "mirrors": [
  8420. {
  8421. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8422. "preferred": true
  8423. }
  8424. ]
  8425. },
  8426. "require": {
  8427. "php": "^7.1|^8",
  8428. "psr/log": "^1|^2|^3",
  8429. "symfony/var-dumper": "^2.6|^3|^4|^5"
  8430. },
  8431. "require-dev": {
  8432. "phpunit/phpunit": "^7.5.20 || ^9.4.2"
  8433. },
  8434. "suggest": {
  8435. "kriswallsmith/assetic": "The best way to manage assets",
  8436. "monolog/monolog": "Log using Monolog",
  8437. "predis/predis": "Redis storage"
  8438. },
  8439. "type": "library",
  8440. "extra": {
  8441. "branch-alias": {
  8442. "dev-master": "1.17-dev"
  8443. }
  8444. },
  8445. "autoload": {
  8446. "psr-4": {
  8447. "DebugBar\\": "src/DebugBar/"
  8448. }
  8449. },
  8450. "notification-url": "https://packagist.org/downloads/",
  8451. "license": [
  8452. "MIT"
  8453. ],
  8454. "authors": [
  8455. {
  8456. "name": "Maxime Bouroumeau-Fuseau",
  8457. "email": "maxime.bouroumeau@gmail.com",
  8458. "homepage": "http://maximebf.com"
  8459. },
  8460. {
  8461. "name": "Barry vd. Heuvel",
  8462. "email": "barryvdh@gmail.com"
  8463. }
  8464. ],
  8465. "description": "Debug bar in the browser for php application",
  8466. "homepage": "https://github.com/maximebf/php-debugbar",
  8467. "keywords": [
  8468. "debug",
  8469. "debugbar"
  8470. ],
  8471. "support": {
  8472. "issues": "https://github.com/maximebf/php-debugbar/issues",
  8473. "source": "https://github.com/maximebf/php-debugbar/tree/v1.17.3"
  8474. },
  8475. "time": "2021-10-19T12:33:27+00:00"
  8476. },
  8477. {
  8478. "name": "mockery/mockery",
  8479. "version": "1.4.4",
  8480. "source": {
  8481. "type": "git",
  8482. "url": "https://github.com/mockery/mockery.git",
  8483. "reference": "e01123a0e847d52d186c5eb4b9bf58b0c6d00346"
  8484. },
  8485. "dist": {
  8486. "type": "zip",
  8487. "url": "https://api.github.com/repos/mockery/mockery/zipball/e01123a0e847d52d186c5eb4b9bf58b0c6d00346",
  8488. "reference": "e01123a0e847d52d186c5eb4b9bf58b0c6d00346",
  8489. "shasum": "",
  8490. "mirrors": [
  8491. {
  8492. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8493. "preferred": true
  8494. }
  8495. ]
  8496. },
  8497. "require": {
  8498. "hamcrest/hamcrest-php": "^2.0.1",
  8499. "lib-pcre": ">=7.0",
  8500. "php": "^7.3 || ^8.0"
  8501. },
  8502. "conflict": {
  8503. "phpunit/phpunit": "<8.0"
  8504. },
  8505. "require-dev": {
  8506. "phpunit/phpunit": "^8.5 || ^9.3"
  8507. },
  8508. "type": "library",
  8509. "extra": {
  8510. "branch-alias": {
  8511. "dev-master": "1.4.x-dev"
  8512. }
  8513. },
  8514. "autoload": {
  8515. "psr-0": {
  8516. "Mockery": "library/"
  8517. }
  8518. },
  8519. "notification-url": "https://packagist.org/downloads/",
  8520. "license": [
  8521. "BSD-3-Clause"
  8522. ],
  8523. "authors": [
  8524. {
  8525. "name": "Pádraic Brady",
  8526. "email": "padraic.brady@gmail.com",
  8527. "homepage": "http://blog.astrumfutura.com"
  8528. },
  8529. {
  8530. "name": "Dave Marshall",
  8531. "email": "dave.marshall@atstsolutions.co.uk",
  8532. "homepage": "http://davedevelopment.co.uk"
  8533. }
  8534. ],
  8535. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8536. "homepage": "https://github.com/mockery/mockery",
  8537. "keywords": [
  8538. "BDD",
  8539. "TDD",
  8540. "library",
  8541. "mock",
  8542. "mock objects",
  8543. "mockery",
  8544. "stub",
  8545. "test",
  8546. "test double",
  8547. "testing"
  8548. ],
  8549. "support": {
  8550. "issues": "https://github.com/mockery/mockery/issues",
  8551. "source": "https://github.com/mockery/mockery/tree/1.4.4"
  8552. },
  8553. "time": "2021-09-13T15:28:59+00:00"
  8554. },
  8555. {
  8556. "name": "myclabs/deep-copy",
  8557. "version": "1.10.2",
  8558. "source": {
  8559. "type": "git",
  8560. "url": "https://github.com/myclabs/DeepCopy.git",
  8561. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
  8562. },
  8563. "dist": {
  8564. "type": "zip",
  8565. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
  8566. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
  8567. "shasum": "",
  8568. "mirrors": [
  8569. {
  8570. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8571. "preferred": true
  8572. }
  8573. ]
  8574. },
  8575. "require": {
  8576. "php": "^7.1 || ^8.0"
  8577. },
  8578. "replace": {
  8579. "myclabs/deep-copy": "self.version"
  8580. },
  8581. "require-dev": {
  8582. "doctrine/collections": "^1.0",
  8583. "doctrine/common": "^2.6",
  8584. "phpunit/phpunit": "^7.1"
  8585. },
  8586. "type": "library",
  8587. "autoload": {
  8588. "psr-4": {
  8589. "DeepCopy\\": "src/DeepCopy/"
  8590. },
  8591. "files": [
  8592. "src/DeepCopy/deep_copy.php"
  8593. ]
  8594. },
  8595. "notification-url": "https://packagist.org/downloads/",
  8596. "license": [
  8597. "MIT"
  8598. ],
  8599. "description": "Create deep copies (clones) of your objects",
  8600. "keywords": [
  8601. "clone",
  8602. "copy",
  8603. "duplicate",
  8604. "object",
  8605. "object graph"
  8606. ],
  8607. "support": {
  8608. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8609. "source": "https://github.com/myclabs/DeepCopy/tree/1.10.2"
  8610. },
  8611. "funding": [
  8612. {
  8613. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8614. "type": "tidelift"
  8615. }
  8616. ],
  8617. "time": "2020-11-13T09:40:50+00:00"
  8618. },
  8619. {
  8620. "name": "nunomaduro/collision",
  8621. "version": "v4.3.0",
  8622. "source": {
  8623. "type": "git",
  8624. "url": "https://github.com/nunomaduro/collision.git",
  8625. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e"
  8626. },
  8627. "dist": {
  8628. "type": "zip",
  8629. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/7c125dc2463f3e144ddc7e05e63077109508c94e",
  8630. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e",
  8631. "shasum": "",
  8632. "mirrors": [
  8633. {
  8634. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8635. "preferred": true
  8636. }
  8637. ]
  8638. },
  8639. "require": {
  8640. "facade/ignition-contracts": "^1.0",
  8641. "filp/whoops": "^2.4",
  8642. "php": "^7.2.5 || ^8.0",
  8643. "symfony/console": "^5.0"
  8644. },
  8645. "require-dev": {
  8646. "facade/ignition": "^2.0",
  8647. "fideloper/proxy": "^4.2",
  8648. "friendsofphp/php-cs-fixer": "^2.16",
  8649. "fruitcake/laravel-cors": "^1.0",
  8650. "laravel/framework": "^7.0",
  8651. "laravel/tinker": "^2.0",
  8652. "nunomaduro/larastan": "^0.6",
  8653. "orchestra/testbench": "^5.0",
  8654. "phpstan/phpstan": "^0.12.3",
  8655. "phpunit/phpunit": "^8.5.1 || ^9.0"
  8656. },
  8657. "type": "library",
  8658. "extra": {
  8659. "laravel": {
  8660. "providers": [
  8661. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  8662. ]
  8663. }
  8664. },
  8665. "autoload": {
  8666. "psr-4": {
  8667. "NunoMaduro\\Collision\\": "src/"
  8668. }
  8669. },
  8670. "notification-url": "https://packagist.org/downloads/",
  8671. "license": [
  8672. "MIT"
  8673. ],
  8674. "authors": [
  8675. {
  8676. "name": "Nuno Maduro",
  8677. "email": "enunomaduro@gmail.com"
  8678. }
  8679. ],
  8680. "description": "Cli error handling for console/command-line PHP applications.",
  8681. "keywords": [
  8682. "artisan",
  8683. "cli",
  8684. "command-line",
  8685. "console",
  8686. "error",
  8687. "handling",
  8688. "laravel",
  8689. "laravel-zero",
  8690. "php",
  8691. "symfony"
  8692. ],
  8693. "support": {
  8694. "issues": "https://github.com/nunomaduro/collision/issues",
  8695. "source": "https://github.com/nunomaduro/collision"
  8696. },
  8697. "funding": [
  8698. {
  8699. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  8700. "type": "custom"
  8701. },
  8702. {
  8703. "url": "https://github.com/nunomaduro",
  8704. "type": "github"
  8705. },
  8706. {
  8707. "url": "https://www.patreon.com/nunomaduro",
  8708. "type": "patreon"
  8709. }
  8710. ],
  8711. "time": "2020-10-29T15:12:23+00:00"
  8712. },
  8713. {
  8714. "name": "phar-io/manifest",
  8715. "version": "2.0.3",
  8716. "source": {
  8717. "type": "git",
  8718. "url": "https://github.com/phar-io/manifest.git",
  8719. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  8720. },
  8721. "dist": {
  8722. "type": "zip",
  8723. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  8724. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  8725. "shasum": "",
  8726. "mirrors": [
  8727. {
  8728. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8729. "preferred": true
  8730. }
  8731. ]
  8732. },
  8733. "require": {
  8734. "ext-dom": "*",
  8735. "ext-phar": "*",
  8736. "ext-xmlwriter": "*",
  8737. "phar-io/version": "^3.0.1",
  8738. "php": "^7.2 || ^8.0"
  8739. },
  8740. "type": "library",
  8741. "extra": {
  8742. "branch-alias": {
  8743. "dev-master": "2.0.x-dev"
  8744. }
  8745. },
  8746. "autoload": {
  8747. "classmap": [
  8748. "src/"
  8749. ]
  8750. },
  8751. "notification-url": "https://packagist.org/downloads/",
  8752. "license": [
  8753. "BSD-3-Clause"
  8754. ],
  8755. "authors": [
  8756. {
  8757. "name": "Arne Blankerts",
  8758. "email": "arne@blankerts.de",
  8759. "role": "Developer"
  8760. },
  8761. {
  8762. "name": "Sebastian Heuer",
  8763. "email": "sebastian@phpeople.de",
  8764. "role": "Developer"
  8765. },
  8766. {
  8767. "name": "Sebastian Bergmann",
  8768. "email": "sebastian@phpunit.de",
  8769. "role": "Developer"
  8770. }
  8771. ],
  8772. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8773. "support": {
  8774. "issues": "https://github.com/phar-io/manifest/issues",
  8775. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  8776. },
  8777. "time": "2021-07-20T11:28:43+00:00"
  8778. },
  8779. {
  8780. "name": "phar-io/version",
  8781. "version": "3.1.0",
  8782. "source": {
  8783. "type": "git",
  8784. "url": "https://github.com/phar-io/version.git",
  8785. "reference": "bae7c545bef187884426f042434e561ab1ddb182"
  8786. },
  8787. "dist": {
  8788. "type": "zip",
  8789. "url": "https://api.github.com/repos/phar-io/version/zipball/bae7c545bef187884426f042434e561ab1ddb182",
  8790. "reference": "bae7c545bef187884426f042434e561ab1ddb182",
  8791. "shasum": "",
  8792. "mirrors": [
  8793. {
  8794. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8795. "preferred": true
  8796. }
  8797. ]
  8798. },
  8799. "require": {
  8800. "php": "^7.2 || ^8.0"
  8801. },
  8802. "type": "library",
  8803. "autoload": {
  8804. "classmap": [
  8805. "src/"
  8806. ]
  8807. },
  8808. "notification-url": "https://packagist.org/downloads/",
  8809. "license": [
  8810. "BSD-3-Clause"
  8811. ],
  8812. "authors": [
  8813. {
  8814. "name": "Arne Blankerts",
  8815. "email": "arne@blankerts.de",
  8816. "role": "Developer"
  8817. },
  8818. {
  8819. "name": "Sebastian Heuer",
  8820. "email": "sebastian@phpeople.de",
  8821. "role": "Developer"
  8822. },
  8823. {
  8824. "name": "Sebastian Bergmann",
  8825. "email": "sebastian@phpunit.de",
  8826. "role": "Developer"
  8827. }
  8828. ],
  8829. "description": "Library for handling version information and constraints",
  8830. "support": {
  8831. "issues": "https://github.com/phar-io/version/issues",
  8832. "source": "https://github.com/phar-io/version/tree/3.1.0"
  8833. },
  8834. "time": "2021-02-23T14:00:09+00:00"
  8835. },
  8836. {
  8837. "name": "phpdocumentor/reflection-common",
  8838. "version": "2.2.0",
  8839. "source": {
  8840. "type": "git",
  8841. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  8842. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  8843. },
  8844. "dist": {
  8845. "type": "zip",
  8846. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  8847. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  8848. "shasum": "",
  8849. "mirrors": [
  8850. {
  8851. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8852. "preferred": true
  8853. }
  8854. ]
  8855. },
  8856. "require": {
  8857. "php": "^7.2 || ^8.0"
  8858. },
  8859. "type": "library",
  8860. "extra": {
  8861. "branch-alias": {
  8862. "dev-2.x": "2.x-dev"
  8863. }
  8864. },
  8865. "autoload": {
  8866. "psr-4": {
  8867. "phpDocumentor\\Reflection\\": "src/"
  8868. }
  8869. },
  8870. "notification-url": "https://packagist.org/downloads/",
  8871. "license": [
  8872. "MIT"
  8873. ],
  8874. "authors": [
  8875. {
  8876. "name": "Jaap van Otterdijk",
  8877. "email": "opensource@ijaap.nl"
  8878. }
  8879. ],
  8880. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  8881. "homepage": "http://www.phpdoc.org",
  8882. "keywords": [
  8883. "FQSEN",
  8884. "phpDocumentor",
  8885. "phpdoc",
  8886. "reflection",
  8887. "static analysis"
  8888. ],
  8889. "support": {
  8890. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  8891. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  8892. },
  8893. "time": "2020-06-27T09:03:43+00:00"
  8894. },
  8895. {
  8896. "name": "phpdocumentor/reflection-docblock",
  8897. "version": "5.3.0",
  8898. "source": {
  8899. "type": "git",
  8900. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  8901. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170"
  8902. },
  8903. "dist": {
  8904. "type": "zip",
  8905. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170",
  8906. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170",
  8907. "shasum": "",
  8908. "mirrors": [
  8909. {
  8910. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8911. "preferred": true
  8912. }
  8913. ]
  8914. },
  8915. "require": {
  8916. "ext-filter": "*",
  8917. "php": "^7.2 || ^8.0",
  8918. "phpdocumentor/reflection-common": "^2.2",
  8919. "phpdocumentor/type-resolver": "^1.3",
  8920. "webmozart/assert": "^1.9.1"
  8921. },
  8922. "require-dev": {
  8923. "mockery/mockery": "~1.3.2",
  8924. "psalm/phar": "^4.8"
  8925. },
  8926. "type": "library",
  8927. "extra": {
  8928. "branch-alias": {
  8929. "dev-master": "5.x-dev"
  8930. }
  8931. },
  8932. "autoload": {
  8933. "psr-4": {
  8934. "phpDocumentor\\Reflection\\": "src"
  8935. }
  8936. },
  8937. "notification-url": "https://packagist.org/downloads/",
  8938. "license": [
  8939. "MIT"
  8940. ],
  8941. "authors": [
  8942. {
  8943. "name": "Mike van Riel",
  8944. "email": "me@mikevanriel.com"
  8945. },
  8946. {
  8947. "name": "Jaap van Otterdijk",
  8948. "email": "account@ijaap.nl"
  8949. }
  8950. ],
  8951. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  8952. "support": {
  8953. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  8954. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0"
  8955. },
  8956. "time": "2021-10-19T17:43:47+00:00"
  8957. },
  8958. {
  8959. "name": "phpdocumentor/type-resolver",
  8960. "version": "1.5.1",
  8961. "source": {
  8962. "type": "git",
  8963. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  8964. "reference": "a12f7e301eb7258bb68acd89d4aefa05c2906cae"
  8965. },
  8966. "dist": {
  8967. "type": "zip",
  8968. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/a12f7e301eb7258bb68acd89d4aefa05c2906cae",
  8969. "reference": "a12f7e301eb7258bb68acd89d4aefa05c2906cae",
  8970. "shasum": "",
  8971. "mirrors": [
  8972. {
  8973. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8974. "preferred": true
  8975. }
  8976. ]
  8977. },
  8978. "require": {
  8979. "php": "^7.2 || ^8.0",
  8980. "phpdocumentor/reflection-common": "^2.0"
  8981. },
  8982. "require-dev": {
  8983. "ext-tokenizer": "*",
  8984. "psalm/phar": "^4.8"
  8985. },
  8986. "type": "library",
  8987. "extra": {
  8988. "branch-alias": {
  8989. "dev-1.x": "1.x-dev"
  8990. }
  8991. },
  8992. "autoload": {
  8993. "psr-4": {
  8994. "phpDocumentor\\Reflection\\": "src"
  8995. }
  8996. },
  8997. "notification-url": "https://packagist.org/downloads/",
  8998. "license": [
  8999. "MIT"
  9000. ],
  9001. "authors": [
  9002. {
  9003. "name": "Mike van Riel",
  9004. "email": "me@mikevanriel.com"
  9005. }
  9006. ],
  9007. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  9008. "support": {
  9009. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  9010. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.5.1"
  9011. },
  9012. "time": "2021-10-02T14:08:47+00:00"
  9013. },
  9014. {
  9015. "name": "phpspec/prophecy",
  9016. "version": "1.14.0",
  9017. "source": {
  9018. "type": "git",
  9019. "url": "https://github.com/phpspec/prophecy.git",
  9020. "reference": "d86dfc2e2a3cd366cee475e52c6bb3bbc371aa0e"
  9021. },
  9022. "dist": {
  9023. "type": "zip",
  9024. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/d86dfc2e2a3cd366cee475e52c6bb3bbc371aa0e",
  9025. "reference": "d86dfc2e2a3cd366cee475e52c6bb3bbc371aa0e",
  9026. "shasum": "",
  9027. "mirrors": [
  9028. {
  9029. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9030. "preferred": true
  9031. }
  9032. ]
  9033. },
  9034. "require": {
  9035. "doctrine/instantiator": "^1.2",
  9036. "php": "^7.2 || ~8.0, <8.2",
  9037. "phpdocumentor/reflection-docblock": "^5.2",
  9038. "sebastian/comparator": "^3.0 || ^4.0",
  9039. "sebastian/recursion-context": "^3.0 || ^4.0"
  9040. },
  9041. "require-dev": {
  9042. "phpspec/phpspec": "^6.0 || ^7.0",
  9043. "phpunit/phpunit": "^8.0 || ^9.0"
  9044. },
  9045. "type": "library",
  9046. "extra": {
  9047. "branch-alias": {
  9048. "dev-master": "1.x-dev"
  9049. }
  9050. },
  9051. "autoload": {
  9052. "psr-4": {
  9053. "Prophecy\\": "src/Prophecy"
  9054. }
  9055. },
  9056. "notification-url": "https://packagist.org/downloads/",
  9057. "license": [
  9058. "MIT"
  9059. ],
  9060. "authors": [
  9061. {
  9062. "name": "Konstantin Kudryashov",
  9063. "email": "ever.zet@gmail.com",
  9064. "homepage": "http://everzet.com"
  9065. },
  9066. {
  9067. "name": "Marcello Duarte",
  9068. "email": "marcello.duarte@gmail.com"
  9069. }
  9070. ],
  9071. "description": "Highly opinionated mocking framework for PHP 5.3+",
  9072. "homepage": "https://github.com/phpspec/prophecy",
  9073. "keywords": [
  9074. "Double",
  9075. "Dummy",
  9076. "fake",
  9077. "mock",
  9078. "spy",
  9079. "stub"
  9080. ],
  9081. "support": {
  9082. "issues": "https://github.com/phpspec/prophecy/issues",
  9083. "source": "https://github.com/phpspec/prophecy/tree/1.14.0"
  9084. },
  9085. "time": "2021-09-10T09:02:12+00:00"
  9086. },
  9087. {
  9088. "name": "phpunit/php-code-coverage",
  9089. "version": "7.0.15",
  9090. "source": {
  9091. "type": "git",
  9092. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9093. "reference": "819f92bba8b001d4363065928088de22f25a3a48"
  9094. },
  9095. "dist": {
  9096. "type": "zip",
  9097. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/819f92bba8b001d4363065928088de22f25a3a48",
  9098. "reference": "819f92bba8b001d4363065928088de22f25a3a48",
  9099. "shasum": "",
  9100. "mirrors": [
  9101. {
  9102. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9103. "preferred": true
  9104. }
  9105. ]
  9106. },
  9107. "require": {
  9108. "ext-dom": "*",
  9109. "ext-xmlwriter": "*",
  9110. "php": ">=7.2",
  9111. "phpunit/php-file-iterator": "^2.0.2",
  9112. "phpunit/php-text-template": "^1.2.1",
  9113. "phpunit/php-token-stream": "^3.1.3 || ^4.0",
  9114. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  9115. "sebastian/environment": "^4.2.2",
  9116. "sebastian/version": "^2.0.1",
  9117. "theseer/tokenizer": "^1.1.3"
  9118. },
  9119. "require-dev": {
  9120. "phpunit/phpunit": "^8.2.2"
  9121. },
  9122. "suggest": {
  9123. "ext-xdebug": "^2.7.2"
  9124. },
  9125. "type": "library",
  9126. "extra": {
  9127. "branch-alias": {
  9128. "dev-master": "7.0-dev"
  9129. }
  9130. },
  9131. "autoload": {
  9132. "classmap": [
  9133. "src/"
  9134. ]
  9135. },
  9136. "notification-url": "https://packagist.org/downloads/",
  9137. "license": [
  9138. "BSD-3-Clause"
  9139. ],
  9140. "authors": [
  9141. {
  9142. "name": "Sebastian Bergmann",
  9143. "email": "sebastian@phpunit.de",
  9144. "role": "lead"
  9145. }
  9146. ],
  9147. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9148. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9149. "keywords": [
  9150. "coverage",
  9151. "testing",
  9152. "xunit"
  9153. ],
  9154. "support": {
  9155. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9156. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/7.0.15"
  9157. },
  9158. "funding": [
  9159. {
  9160. "url": "https://github.com/sebastianbergmann",
  9161. "type": "github"
  9162. }
  9163. ],
  9164. "time": "2021-07-26T12:20:09+00:00"
  9165. },
  9166. {
  9167. "name": "phpunit/php-file-iterator",
  9168. "version": "2.0.4",
  9169. "source": {
  9170. "type": "git",
  9171. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9172. "reference": "28af674ff175d0768a5a978e6de83f697d4a7f05"
  9173. },
  9174. "dist": {
  9175. "type": "zip",
  9176. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/28af674ff175d0768a5a978e6de83f697d4a7f05",
  9177. "reference": "28af674ff175d0768a5a978e6de83f697d4a7f05",
  9178. "shasum": "",
  9179. "mirrors": [
  9180. {
  9181. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9182. "preferred": true
  9183. }
  9184. ]
  9185. },
  9186. "require": {
  9187. "php": ">=7.1"
  9188. },
  9189. "require-dev": {
  9190. "phpunit/phpunit": "^8.5"
  9191. },
  9192. "type": "library",
  9193. "extra": {
  9194. "branch-alias": {
  9195. "dev-master": "2.0.x-dev"
  9196. }
  9197. },
  9198. "autoload": {
  9199. "classmap": [
  9200. "src/"
  9201. ]
  9202. },
  9203. "notification-url": "https://packagist.org/downloads/",
  9204. "license": [
  9205. "BSD-3-Clause"
  9206. ],
  9207. "authors": [
  9208. {
  9209. "name": "Sebastian Bergmann",
  9210. "email": "sebastian@phpunit.de",
  9211. "role": "lead"
  9212. }
  9213. ],
  9214. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9215. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9216. "keywords": [
  9217. "filesystem",
  9218. "iterator"
  9219. ],
  9220. "support": {
  9221. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9222. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/2.0.4"
  9223. },
  9224. "funding": [
  9225. {
  9226. "url": "https://github.com/sebastianbergmann",
  9227. "type": "github"
  9228. }
  9229. ],
  9230. "time": "2021-07-19T06:46:01+00:00"
  9231. },
  9232. {
  9233. "name": "phpunit/php-text-template",
  9234. "version": "1.2.1",
  9235. "source": {
  9236. "type": "git",
  9237. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9238. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  9239. },
  9240. "dist": {
  9241. "type": "zip",
  9242. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  9243. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  9244. "shasum": "",
  9245. "mirrors": [
  9246. {
  9247. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9248. "preferred": true
  9249. }
  9250. ]
  9251. },
  9252. "require": {
  9253. "php": ">=5.3.3"
  9254. },
  9255. "type": "library",
  9256. "autoload": {
  9257. "classmap": [
  9258. "src/"
  9259. ]
  9260. },
  9261. "notification-url": "https://packagist.org/downloads/",
  9262. "license": [
  9263. "BSD-3-Clause"
  9264. ],
  9265. "authors": [
  9266. {
  9267. "name": "Sebastian Bergmann",
  9268. "email": "sebastian@phpunit.de",
  9269. "role": "lead"
  9270. }
  9271. ],
  9272. "description": "Simple template engine.",
  9273. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9274. "keywords": [
  9275. "template"
  9276. ],
  9277. "support": {
  9278. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9279. "source": "https://github.com/sebastianbergmann/php-text-template/tree/1.2.1"
  9280. },
  9281. "time": "2015-06-21T13:50:34+00:00"
  9282. },
  9283. {
  9284. "name": "phpunit/php-timer",
  9285. "version": "2.1.3",
  9286. "source": {
  9287. "type": "git",
  9288. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9289. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662"
  9290. },
  9291. "dist": {
  9292. "type": "zip",
  9293. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  9294. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  9295. "shasum": "",
  9296. "mirrors": [
  9297. {
  9298. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9299. "preferred": true
  9300. }
  9301. ]
  9302. },
  9303. "require": {
  9304. "php": ">=7.1"
  9305. },
  9306. "require-dev": {
  9307. "phpunit/phpunit": "^8.5"
  9308. },
  9309. "type": "library",
  9310. "extra": {
  9311. "branch-alias": {
  9312. "dev-master": "2.1-dev"
  9313. }
  9314. },
  9315. "autoload": {
  9316. "classmap": [
  9317. "src/"
  9318. ]
  9319. },
  9320. "notification-url": "https://packagist.org/downloads/",
  9321. "license": [
  9322. "BSD-3-Clause"
  9323. ],
  9324. "authors": [
  9325. {
  9326. "name": "Sebastian Bergmann",
  9327. "email": "sebastian@phpunit.de",
  9328. "role": "lead"
  9329. }
  9330. ],
  9331. "description": "Utility class for timing",
  9332. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9333. "keywords": [
  9334. "timer"
  9335. ],
  9336. "support": {
  9337. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9338. "source": "https://github.com/sebastianbergmann/php-timer/tree/2.1.3"
  9339. },
  9340. "funding": [
  9341. {
  9342. "url": "https://github.com/sebastianbergmann",
  9343. "type": "github"
  9344. }
  9345. ],
  9346. "time": "2020-11-30T08:20:02+00:00"
  9347. },
  9348. {
  9349. "name": "phpunit/php-token-stream",
  9350. "version": "4.0.4",
  9351. "source": {
  9352. "type": "git",
  9353. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  9354. "reference": "a853a0e183b9db7eed023d7933a858fa1c8d25a3"
  9355. },
  9356. "dist": {
  9357. "type": "zip",
  9358. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/a853a0e183b9db7eed023d7933a858fa1c8d25a3",
  9359. "reference": "a853a0e183b9db7eed023d7933a858fa1c8d25a3",
  9360. "shasum": "",
  9361. "mirrors": [
  9362. {
  9363. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9364. "preferred": true
  9365. }
  9366. ]
  9367. },
  9368. "require": {
  9369. "ext-tokenizer": "*",
  9370. "php": "^7.3 || ^8.0"
  9371. },
  9372. "require-dev": {
  9373. "phpunit/phpunit": "^9.0"
  9374. },
  9375. "type": "library",
  9376. "extra": {
  9377. "branch-alias": {
  9378. "dev-master": "4.0-dev"
  9379. }
  9380. },
  9381. "autoload": {
  9382. "classmap": [
  9383. "src/"
  9384. ]
  9385. },
  9386. "notification-url": "https://packagist.org/downloads/",
  9387. "license": [
  9388. "BSD-3-Clause"
  9389. ],
  9390. "authors": [
  9391. {
  9392. "name": "Sebastian Bergmann",
  9393. "email": "sebastian@phpunit.de"
  9394. }
  9395. ],
  9396. "description": "Wrapper around PHP's tokenizer extension.",
  9397. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  9398. "keywords": [
  9399. "tokenizer"
  9400. ],
  9401. "support": {
  9402. "issues": "https://github.com/sebastianbergmann/php-token-stream/issues",
  9403. "source": "https://github.com/sebastianbergmann/php-token-stream/tree/master"
  9404. },
  9405. "funding": [
  9406. {
  9407. "url": "https://github.com/sebastianbergmann",
  9408. "type": "github"
  9409. }
  9410. ],
  9411. "abandoned": true,
  9412. "time": "2020-08-04T08:28:15+00:00"
  9413. },
  9414. {
  9415. "name": "phpunit/phpunit",
  9416. "version": "8.5.21",
  9417. "source": {
  9418. "type": "git",
  9419. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9420. "reference": "50a58a60b85947b0bee4c8ecfe0f4bbdcf20e984"
  9421. },
  9422. "dist": {
  9423. "type": "zip",
  9424. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/50a58a60b85947b0bee4c8ecfe0f4bbdcf20e984",
  9425. "reference": "50a58a60b85947b0bee4c8ecfe0f4bbdcf20e984",
  9426. "shasum": "",
  9427. "mirrors": [
  9428. {
  9429. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9430. "preferred": true
  9431. }
  9432. ]
  9433. },
  9434. "require": {
  9435. "doctrine/instantiator": "^1.3.1",
  9436. "ext-dom": "*",
  9437. "ext-json": "*",
  9438. "ext-libxml": "*",
  9439. "ext-mbstring": "*",
  9440. "ext-xml": "*",
  9441. "ext-xmlwriter": "*",
  9442. "myclabs/deep-copy": "^1.10.0",
  9443. "phar-io/manifest": "^2.0.3",
  9444. "phar-io/version": "^3.0.2",
  9445. "php": ">=7.2",
  9446. "phpspec/prophecy": "^1.10.3",
  9447. "phpunit/php-code-coverage": "^7.0.12",
  9448. "phpunit/php-file-iterator": "^2.0.4",
  9449. "phpunit/php-text-template": "^1.2.1",
  9450. "phpunit/php-timer": "^2.1.2",
  9451. "sebastian/comparator": "^3.0.2",
  9452. "sebastian/diff": "^3.0.2",
  9453. "sebastian/environment": "^4.2.3",
  9454. "sebastian/exporter": "^3.1.2",
  9455. "sebastian/global-state": "^3.0.0",
  9456. "sebastian/object-enumerator": "^3.0.3",
  9457. "sebastian/resource-operations": "^2.0.1",
  9458. "sebastian/type": "^1.1.3",
  9459. "sebastian/version": "^2.0.1"
  9460. },
  9461. "require-dev": {
  9462. "ext-pdo": "*"
  9463. },
  9464. "suggest": {
  9465. "ext-soap": "*",
  9466. "ext-xdebug": "*",
  9467. "phpunit/php-invoker": "^2.0.0"
  9468. },
  9469. "bin": [
  9470. "phpunit"
  9471. ],
  9472. "type": "library",
  9473. "extra": {
  9474. "branch-alias": {
  9475. "dev-master": "8.5-dev"
  9476. }
  9477. },
  9478. "autoload": {
  9479. "classmap": [
  9480. "src/"
  9481. ]
  9482. },
  9483. "notification-url": "https://packagist.org/downloads/",
  9484. "license": [
  9485. "BSD-3-Clause"
  9486. ],
  9487. "authors": [
  9488. {
  9489. "name": "Sebastian Bergmann",
  9490. "email": "sebastian@phpunit.de",
  9491. "role": "lead"
  9492. }
  9493. ],
  9494. "description": "The PHP Unit Testing framework.",
  9495. "homepage": "https://phpunit.de/",
  9496. "keywords": [
  9497. "phpunit",
  9498. "testing",
  9499. "xunit"
  9500. ],
  9501. "support": {
  9502. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9503. "source": "https://github.com/sebastianbergmann/phpunit/tree/8.5.21"
  9504. },
  9505. "funding": [
  9506. {
  9507. "url": "https://phpunit.de/donate.html",
  9508. "type": "custom"
  9509. },
  9510. {
  9511. "url": "https://github.com/sebastianbergmann",
  9512. "type": "github"
  9513. }
  9514. ],
  9515. "time": "2021-09-25T07:37:20+00:00"
  9516. },
  9517. {
  9518. "name": "sebastian/code-unit-reverse-lookup",
  9519. "version": "1.0.2",
  9520. "source": {
  9521. "type": "git",
  9522. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9523. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619"
  9524. },
  9525. "dist": {
  9526. "type": "zip",
  9527. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  9528. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  9529. "shasum": "",
  9530. "mirrors": [
  9531. {
  9532. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9533. "preferred": true
  9534. }
  9535. ]
  9536. },
  9537. "require": {
  9538. "php": ">=5.6"
  9539. },
  9540. "require-dev": {
  9541. "phpunit/phpunit": "^8.5"
  9542. },
  9543. "type": "library",
  9544. "extra": {
  9545. "branch-alias": {
  9546. "dev-master": "1.0.x-dev"
  9547. }
  9548. },
  9549. "autoload": {
  9550. "classmap": [
  9551. "src/"
  9552. ]
  9553. },
  9554. "notification-url": "https://packagist.org/downloads/",
  9555. "license": [
  9556. "BSD-3-Clause"
  9557. ],
  9558. "authors": [
  9559. {
  9560. "name": "Sebastian Bergmann",
  9561. "email": "sebastian@phpunit.de"
  9562. }
  9563. ],
  9564. "description": "Looks up which function or method a line of code belongs to",
  9565. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9566. "support": {
  9567. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9568. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/1.0.2"
  9569. },
  9570. "funding": [
  9571. {
  9572. "url": "https://github.com/sebastianbergmann",
  9573. "type": "github"
  9574. }
  9575. ],
  9576. "time": "2020-11-30T08:15:22+00:00"
  9577. },
  9578. {
  9579. "name": "sebastian/comparator",
  9580. "version": "3.0.3",
  9581. "source": {
  9582. "type": "git",
  9583. "url": "https://github.com/sebastianbergmann/comparator.git",
  9584. "reference": "1071dfcef776a57013124ff35e1fc41ccd294758"
  9585. },
  9586. "dist": {
  9587. "type": "zip",
  9588. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/1071dfcef776a57013124ff35e1fc41ccd294758",
  9589. "reference": "1071dfcef776a57013124ff35e1fc41ccd294758",
  9590. "shasum": "",
  9591. "mirrors": [
  9592. {
  9593. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9594. "preferred": true
  9595. }
  9596. ]
  9597. },
  9598. "require": {
  9599. "php": ">=7.1",
  9600. "sebastian/diff": "^3.0",
  9601. "sebastian/exporter": "^3.1"
  9602. },
  9603. "require-dev": {
  9604. "phpunit/phpunit": "^8.5"
  9605. },
  9606. "type": "library",
  9607. "extra": {
  9608. "branch-alias": {
  9609. "dev-master": "3.0-dev"
  9610. }
  9611. },
  9612. "autoload": {
  9613. "classmap": [
  9614. "src/"
  9615. ]
  9616. },
  9617. "notification-url": "https://packagist.org/downloads/",
  9618. "license": [
  9619. "BSD-3-Clause"
  9620. ],
  9621. "authors": [
  9622. {
  9623. "name": "Sebastian Bergmann",
  9624. "email": "sebastian@phpunit.de"
  9625. },
  9626. {
  9627. "name": "Jeff Welch",
  9628. "email": "whatthejeff@gmail.com"
  9629. },
  9630. {
  9631. "name": "Volker Dusch",
  9632. "email": "github@wallbash.com"
  9633. },
  9634. {
  9635. "name": "Bernhard Schussek",
  9636. "email": "bschussek@2bepublished.at"
  9637. }
  9638. ],
  9639. "description": "Provides the functionality to compare PHP values for equality",
  9640. "homepage": "https://github.com/sebastianbergmann/comparator",
  9641. "keywords": [
  9642. "comparator",
  9643. "compare",
  9644. "equality"
  9645. ],
  9646. "support": {
  9647. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9648. "source": "https://github.com/sebastianbergmann/comparator/tree/3.0.3"
  9649. },
  9650. "funding": [
  9651. {
  9652. "url": "https://github.com/sebastianbergmann",
  9653. "type": "github"
  9654. }
  9655. ],
  9656. "time": "2020-11-30T08:04:30+00:00"
  9657. },
  9658. {
  9659. "name": "sebastian/diff",
  9660. "version": "3.0.3",
  9661. "source": {
  9662. "type": "git",
  9663. "url": "https://github.com/sebastianbergmann/diff.git",
  9664. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211"
  9665. },
  9666. "dist": {
  9667. "type": "zip",
  9668. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  9669. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  9670. "shasum": "",
  9671. "mirrors": [
  9672. {
  9673. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9674. "preferred": true
  9675. }
  9676. ]
  9677. },
  9678. "require": {
  9679. "php": ">=7.1"
  9680. },
  9681. "require-dev": {
  9682. "phpunit/phpunit": "^7.5 || ^8.0",
  9683. "symfony/process": "^2 || ^3.3 || ^4"
  9684. },
  9685. "type": "library",
  9686. "extra": {
  9687. "branch-alias": {
  9688. "dev-master": "3.0-dev"
  9689. }
  9690. },
  9691. "autoload": {
  9692. "classmap": [
  9693. "src/"
  9694. ]
  9695. },
  9696. "notification-url": "https://packagist.org/downloads/",
  9697. "license": [
  9698. "BSD-3-Clause"
  9699. ],
  9700. "authors": [
  9701. {
  9702. "name": "Sebastian Bergmann",
  9703. "email": "sebastian@phpunit.de"
  9704. },
  9705. {
  9706. "name": "Kore Nordmann",
  9707. "email": "mail@kore-nordmann.de"
  9708. }
  9709. ],
  9710. "description": "Diff implementation",
  9711. "homepage": "https://github.com/sebastianbergmann/diff",
  9712. "keywords": [
  9713. "diff",
  9714. "udiff",
  9715. "unidiff",
  9716. "unified diff"
  9717. ],
  9718. "support": {
  9719. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9720. "source": "https://github.com/sebastianbergmann/diff/tree/3.0.3"
  9721. },
  9722. "funding": [
  9723. {
  9724. "url": "https://github.com/sebastianbergmann",
  9725. "type": "github"
  9726. }
  9727. ],
  9728. "time": "2020-11-30T07:59:04+00:00"
  9729. },
  9730. {
  9731. "name": "sebastian/environment",
  9732. "version": "4.2.4",
  9733. "source": {
  9734. "type": "git",
  9735. "url": "https://github.com/sebastianbergmann/environment.git",
  9736. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0"
  9737. },
  9738. "dist": {
  9739. "type": "zip",
  9740. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  9741. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  9742. "shasum": "",
  9743. "mirrors": [
  9744. {
  9745. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9746. "preferred": true
  9747. }
  9748. ]
  9749. },
  9750. "require": {
  9751. "php": ">=7.1"
  9752. },
  9753. "require-dev": {
  9754. "phpunit/phpunit": "^7.5"
  9755. },
  9756. "suggest": {
  9757. "ext-posix": "*"
  9758. },
  9759. "type": "library",
  9760. "extra": {
  9761. "branch-alias": {
  9762. "dev-master": "4.2-dev"
  9763. }
  9764. },
  9765. "autoload": {
  9766. "classmap": [
  9767. "src/"
  9768. ]
  9769. },
  9770. "notification-url": "https://packagist.org/downloads/",
  9771. "license": [
  9772. "BSD-3-Clause"
  9773. ],
  9774. "authors": [
  9775. {
  9776. "name": "Sebastian Bergmann",
  9777. "email": "sebastian@phpunit.de"
  9778. }
  9779. ],
  9780. "description": "Provides functionality to handle HHVM/PHP environments",
  9781. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9782. "keywords": [
  9783. "Xdebug",
  9784. "environment",
  9785. "hhvm"
  9786. ],
  9787. "support": {
  9788. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9789. "source": "https://github.com/sebastianbergmann/environment/tree/4.2.4"
  9790. },
  9791. "funding": [
  9792. {
  9793. "url": "https://github.com/sebastianbergmann",
  9794. "type": "github"
  9795. }
  9796. ],
  9797. "time": "2020-11-30T07:53:42+00:00"
  9798. },
  9799. {
  9800. "name": "sebastian/exporter",
  9801. "version": "3.1.4",
  9802. "source": {
  9803. "type": "git",
  9804. "url": "https://github.com/sebastianbergmann/exporter.git",
  9805. "reference": "0c32ea2e40dbf59de29f3b49bf375176ce7dd8db"
  9806. },
  9807. "dist": {
  9808. "type": "zip",
  9809. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/0c32ea2e40dbf59de29f3b49bf375176ce7dd8db",
  9810. "reference": "0c32ea2e40dbf59de29f3b49bf375176ce7dd8db",
  9811. "shasum": "",
  9812. "mirrors": [
  9813. {
  9814. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9815. "preferred": true
  9816. }
  9817. ]
  9818. },
  9819. "require": {
  9820. "php": ">=7.0",
  9821. "sebastian/recursion-context": "^3.0"
  9822. },
  9823. "require-dev": {
  9824. "ext-mbstring": "*",
  9825. "phpunit/phpunit": "^8.5"
  9826. },
  9827. "type": "library",
  9828. "extra": {
  9829. "branch-alias": {
  9830. "dev-master": "3.1.x-dev"
  9831. }
  9832. },
  9833. "autoload": {
  9834. "classmap": [
  9835. "src/"
  9836. ]
  9837. },
  9838. "notification-url": "https://packagist.org/downloads/",
  9839. "license": [
  9840. "BSD-3-Clause"
  9841. ],
  9842. "authors": [
  9843. {
  9844. "name": "Sebastian Bergmann",
  9845. "email": "sebastian@phpunit.de"
  9846. },
  9847. {
  9848. "name": "Jeff Welch",
  9849. "email": "whatthejeff@gmail.com"
  9850. },
  9851. {
  9852. "name": "Volker Dusch",
  9853. "email": "github@wallbash.com"
  9854. },
  9855. {
  9856. "name": "Adam Harvey",
  9857. "email": "aharvey@php.net"
  9858. },
  9859. {
  9860. "name": "Bernhard Schussek",
  9861. "email": "bschussek@gmail.com"
  9862. }
  9863. ],
  9864. "description": "Provides the functionality to export PHP variables for visualization",
  9865. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  9866. "keywords": [
  9867. "export",
  9868. "exporter"
  9869. ],
  9870. "support": {
  9871. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9872. "source": "https://github.com/sebastianbergmann/exporter/tree/3.1.4"
  9873. },
  9874. "funding": [
  9875. {
  9876. "url": "https://github.com/sebastianbergmann",
  9877. "type": "github"
  9878. }
  9879. ],
  9880. "time": "2021-11-11T13:51:24+00:00"
  9881. },
  9882. {
  9883. "name": "sebastian/global-state",
  9884. "version": "3.0.1",
  9885. "source": {
  9886. "type": "git",
  9887. "url": "https://github.com/sebastianbergmann/global-state.git",
  9888. "reference": "474fb9edb7ab891665d3bfc6317f42a0a150454b"
  9889. },
  9890. "dist": {
  9891. "type": "zip",
  9892. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/474fb9edb7ab891665d3bfc6317f42a0a150454b",
  9893. "reference": "474fb9edb7ab891665d3bfc6317f42a0a150454b",
  9894. "shasum": "",
  9895. "mirrors": [
  9896. {
  9897. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9898. "preferred": true
  9899. }
  9900. ]
  9901. },
  9902. "require": {
  9903. "php": ">=7.2",
  9904. "sebastian/object-reflector": "^1.1.1",
  9905. "sebastian/recursion-context": "^3.0"
  9906. },
  9907. "require-dev": {
  9908. "ext-dom": "*",
  9909. "phpunit/phpunit": "^8.0"
  9910. },
  9911. "suggest": {
  9912. "ext-uopz": "*"
  9913. },
  9914. "type": "library",
  9915. "extra": {
  9916. "branch-alias": {
  9917. "dev-master": "3.0-dev"
  9918. }
  9919. },
  9920. "autoload": {
  9921. "classmap": [
  9922. "src/"
  9923. ]
  9924. },
  9925. "notification-url": "https://packagist.org/downloads/",
  9926. "license": [
  9927. "BSD-3-Clause"
  9928. ],
  9929. "authors": [
  9930. {
  9931. "name": "Sebastian Bergmann",
  9932. "email": "sebastian@phpunit.de"
  9933. }
  9934. ],
  9935. "description": "Snapshotting of global state",
  9936. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  9937. "keywords": [
  9938. "global state"
  9939. ],
  9940. "support": {
  9941. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9942. "source": "https://github.com/sebastianbergmann/global-state/tree/3.0.1"
  9943. },
  9944. "funding": [
  9945. {
  9946. "url": "https://github.com/sebastianbergmann",
  9947. "type": "github"
  9948. }
  9949. ],
  9950. "time": "2020-11-30T07:43:24+00:00"
  9951. },
  9952. {
  9953. "name": "sebastian/object-enumerator",
  9954. "version": "3.0.4",
  9955. "source": {
  9956. "type": "git",
  9957. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9958. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2"
  9959. },
  9960. "dist": {
  9961. "type": "zip",
  9962. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  9963. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  9964. "shasum": "",
  9965. "mirrors": [
  9966. {
  9967. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9968. "preferred": true
  9969. }
  9970. ]
  9971. },
  9972. "require": {
  9973. "php": ">=7.0",
  9974. "sebastian/object-reflector": "^1.1.1",
  9975. "sebastian/recursion-context": "^3.0"
  9976. },
  9977. "require-dev": {
  9978. "phpunit/phpunit": "^6.0"
  9979. },
  9980. "type": "library",
  9981. "extra": {
  9982. "branch-alias": {
  9983. "dev-master": "3.0.x-dev"
  9984. }
  9985. },
  9986. "autoload": {
  9987. "classmap": [
  9988. "src/"
  9989. ]
  9990. },
  9991. "notification-url": "https://packagist.org/downloads/",
  9992. "license": [
  9993. "BSD-3-Clause"
  9994. ],
  9995. "authors": [
  9996. {
  9997. "name": "Sebastian Bergmann",
  9998. "email": "sebastian@phpunit.de"
  9999. }
  10000. ],
  10001. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10002. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10003. "support": {
  10004. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10005. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/3.0.4"
  10006. },
  10007. "funding": [
  10008. {
  10009. "url": "https://github.com/sebastianbergmann",
  10010. "type": "github"
  10011. }
  10012. ],
  10013. "time": "2020-11-30T07:40:27+00:00"
  10014. },
  10015. {
  10016. "name": "sebastian/object-reflector",
  10017. "version": "1.1.2",
  10018. "source": {
  10019. "type": "git",
  10020. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10021. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d"
  10022. },
  10023. "dist": {
  10024. "type": "zip",
  10025. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  10026. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  10027. "shasum": "",
  10028. "mirrors": [
  10029. {
  10030. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10031. "preferred": true
  10032. }
  10033. ]
  10034. },
  10035. "require": {
  10036. "php": ">=7.0"
  10037. },
  10038. "require-dev": {
  10039. "phpunit/phpunit": "^6.0"
  10040. },
  10041. "type": "library",
  10042. "extra": {
  10043. "branch-alias": {
  10044. "dev-master": "1.1-dev"
  10045. }
  10046. },
  10047. "autoload": {
  10048. "classmap": [
  10049. "src/"
  10050. ]
  10051. },
  10052. "notification-url": "https://packagist.org/downloads/",
  10053. "license": [
  10054. "BSD-3-Clause"
  10055. ],
  10056. "authors": [
  10057. {
  10058. "name": "Sebastian Bergmann",
  10059. "email": "sebastian@phpunit.de"
  10060. }
  10061. ],
  10062. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10063. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10064. "support": {
  10065. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10066. "source": "https://github.com/sebastianbergmann/object-reflector/tree/1.1.2"
  10067. },
  10068. "funding": [
  10069. {
  10070. "url": "https://github.com/sebastianbergmann",
  10071. "type": "github"
  10072. }
  10073. ],
  10074. "time": "2020-11-30T07:37:18+00:00"
  10075. },
  10076. {
  10077. "name": "sebastian/recursion-context",
  10078. "version": "3.0.1",
  10079. "source": {
  10080. "type": "git",
  10081. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10082. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb"
  10083. },
  10084. "dist": {
  10085. "type": "zip",
  10086. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/367dcba38d6e1977be014dc4b22f47a484dac7fb",
  10087. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb",
  10088. "shasum": "",
  10089. "mirrors": [
  10090. {
  10091. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10092. "preferred": true
  10093. }
  10094. ]
  10095. },
  10096. "require": {
  10097. "php": ">=7.0"
  10098. },
  10099. "require-dev": {
  10100. "phpunit/phpunit": "^6.0"
  10101. },
  10102. "type": "library",
  10103. "extra": {
  10104. "branch-alias": {
  10105. "dev-master": "3.0.x-dev"
  10106. }
  10107. },
  10108. "autoload": {
  10109. "classmap": [
  10110. "src/"
  10111. ]
  10112. },
  10113. "notification-url": "https://packagist.org/downloads/",
  10114. "license": [
  10115. "BSD-3-Clause"
  10116. ],
  10117. "authors": [
  10118. {
  10119. "name": "Sebastian Bergmann",
  10120. "email": "sebastian@phpunit.de"
  10121. },
  10122. {
  10123. "name": "Jeff Welch",
  10124. "email": "whatthejeff@gmail.com"
  10125. },
  10126. {
  10127. "name": "Adam Harvey",
  10128. "email": "aharvey@php.net"
  10129. }
  10130. ],
  10131. "description": "Provides functionality to recursively process PHP variables",
  10132. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  10133. "support": {
  10134. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10135. "source": "https://github.com/sebastianbergmann/recursion-context/tree/3.0.1"
  10136. },
  10137. "funding": [
  10138. {
  10139. "url": "https://github.com/sebastianbergmann",
  10140. "type": "github"
  10141. }
  10142. ],
  10143. "time": "2020-11-30T07:34:24+00:00"
  10144. },
  10145. {
  10146. "name": "sebastian/resource-operations",
  10147. "version": "2.0.2",
  10148. "source": {
  10149. "type": "git",
  10150. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  10151. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3"
  10152. },
  10153. "dist": {
  10154. "type": "zip",
  10155. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  10156. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  10157. "shasum": "",
  10158. "mirrors": [
  10159. {
  10160. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10161. "preferred": true
  10162. }
  10163. ]
  10164. },
  10165. "require": {
  10166. "php": ">=7.1"
  10167. },
  10168. "type": "library",
  10169. "extra": {
  10170. "branch-alias": {
  10171. "dev-master": "2.0-dev"
  10172. }
  10173. },
  10174. "autoload": {
  10175. "classmap": [
  10176. "src/"
  10177. ]
  10178. },
  10179. "notification-url": "https://packagist.org/downloads/",
  10180. "license": [
  10181. "BSD-3-Clause"
  10182. ],
  10183. "authors": [
  10184. {
  10185. "name": "Sebastian Bergmann",
  10186. "email": "sebastian@phpunit.de"
  10187. }
  10188. ],
  10189. "description": "Provides a list of PHP built-in functions that operate on resources",
  10190. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  10191. "support": {
  10192. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  10193. "source": "https://github.com/sebastianbergmann/resource-operations/tree/2.0.2"
  10194. },
  10195. "funding": [
  10196. {
  10197. "url": "https://github.com/sebastianbergmann",
  10198. "type": "github"
  10199. }
  10200. ],
  10201. "time": "2020-11-30T07:30:19+00:00"
  10202. },
  10203. {
  10204. "name": "sebastian/type",
  10205. "version": "1.1.4",
  10206. "source": {
  10207. "type": "git",
  10208. "url": "https://github.com/sebastianbergmann/type.git",
  10209. "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4"
  10210. },
  10211. "dist": {
  10212. "type": "zip",
  10213. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/0150cfbc4495ed2df3872fb31b26781e4e077eb4",
  10214. "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4",
  10215. "shasum": "",
  10216. "mirrors": [
  10217. {
  10218. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10219. "preferred": true
  10220. }
  10221. ]
  10222. },
  10223. "require": {
  10224. "php": ">=7.2"
  10225. },
  10226. "require-dev": {
  10227. "phpunit/phpunit": "^8.2"
  10228. },
  10229. "type": "library",
  10230. "extra": {
  10231. "branch-alias": {
  10232. "dev-master": "1.1-dev"
  10233. }
  10234. },
  10235. "autoload": {
  10236. "classmap": [
  10237. "src/"
  10238. ]
  10239. },
  10240. "notification-url": "https://packagist.org/downloads/",
  10241. "license": [
  10242. "BSD-3-Clause"
  10243. ],
  10244. "authors": [
  10245. {
  10246. "name": "Sebastian Bergmann",
  10247. "email": "sebastian@phpunit.de",
  10248. "role": "lead"
  10249. }
  10250. ],
  10251. "description": "Collection of value objects that represent the types of the PHP type system",
  10252. "homepage": "https://github.com/sebastianbergmann/type",
  10253. "support": {
  10254. "issues": "https://github.com/sebastianbergmann/type/issues",
  10255. "source": "https://github.com/sebastianbergmann/type/tree/1.1.4"
  10256. },
  10257. "funding": [
  10258. {
  10259. "url": "https://github.com/sebastianbergmann",
  10260. "type": "github"
  10261. }
  10262. ],
  10263. "time": "2020-11-30T07:25:11+00:00"
  10264. },
  10265. {
  10266. "name": "sebastian/version",
  10267. "version": "2.0.1",
  10268. "source": {
  10269. "type": "git",
  10270. "url": "https://github.com/sebastianbergmann/version.git",
  10271. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  10272. },
  10273. "dist": {
  10274. "type": "zip",
  10275. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  10276. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  10277. "shasum": "",
  10278. "mirrors": [
  10279. {
  10280. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10281. "preferred": true
  10282. }
  10283. ]
  10284. },
  10285. "require": {
  10286. "php": ">=5.6"
  10287. },
  10288. "type": "library",
  10289. "extra": {
  10290. "branch-alias": {
  10291. "dev-master": "2.0.x-dev"
  10292. }
  10293. },
  10294. "autoload": {
  10295. "classmap": [
  10296. "src/"
  10297. ]
  10298. },
  10299. "notification-url": "https://packagist.org/downloads/",
  10300. "license": [
  10301. "BSD-3-Clause"
  10302. ],
  10303. "authors": [
  10304. {
  10305. "name": "Sebastian Bergmann",
  10306. "email": "sebastian@phpunit.de",
  10307. "role": "lead"
  10308. }
  10309. ],
  10310. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10311. "homepage": "https://github.com/sebastianbergmann/version",
  10312. "support": {
  10313. "issues": "https://github.com/sebastianbergmann/version/issues",
  10314. "source": "https://github.com/sebastianbergmann/version/tree/master"
  10315. },
  10316. "time": "2016-10-03T07:35:21+00:00"
  10317. },
  10318. {
  10319. "name": "symfony/debug",
  10320. "version": "v4.4.31",
  10321. "source": {
  10322. "type": "git",
  10323. "url": "https://github.com/symfony/debug.git",
  10324. "reference": "43ede438d4cb52cd589ae5dc070e9323866ba8e0"
  10325. },
  10326. "dist": {
  10327. "type": "zip",
  10328. "url": "https://api.github.com/repos/symfony/debug/zipball/43ede438d4cb52cd589ae5dc070e9323866ba8e0",
  10329. "reference": "43ede438d4cb52cd589ae5dc070e9323866ba8e0",
  10330. "shasum": "",
  10331. "mirrors": [
  10332. {
  10333. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10334. "preferred": true
  10335. }
  10336. ]
  10337. },
  10338. "require": {
  10339. "php": ">=7.1.3",
  10340. "psr/log": "^1|^2|^3"
  10341. },
  10342. "conflict": {
  10343. "symfony/http-kernel": "<3.4"
  10344. },
  10345. "require-dev": {
  10346. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  10347. },
  10348. "type": "library",
  10349. "autoload": {
  10350. "psr-4": {
  10351. "Symfony\\Component\\Debug\\": ""
  10352. },
  10353. "exclude-from-classmap": [
  10354. "/Tests/"
  10355. ]
  10356. },
  10357. "notification-url": "https://packagist.org/downloads/",
  10358. "license": [
  10359. "MIT"
  10360. ],
  10361. "authors": [
  10362. {
  10363. "name": "Fabien Potencier",
  10364. "email": "fabien@symfony.com"
  10365. },
  10366. {
  10367. "name": "Symfony Community",
  10368. "homepage": "https://symfony.com/contributors"
  10369. }
  10370. ],
  10371. "description": "Provides tools to ease debugging PHP code",
  10372. "homepage": "https://symfony.com",
  10373. "support": {
  10374. "source": "https://github.com/symfony/debug/tree/v4.4.31"
  10375. },
  10376. "funding": [
  10377. {
  10378. "url": "https://symfony.com/sponsor",
  10379. "type": "custom"
  10380. },
  10381. {
  10382. "url": "https://github.com/fabpot",
  10383. "type": "github"
  10384. },
  10385. {
  10386. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10387. "type": "tidelift"
  10388. }
  10389. ],
  10390. "time": "2021-09-24T13:30:14+00:00"
  10391. },
  10392. {
  10393. "name": "theseer/tokenizer",
  10394. "version": "1.2.1",
  10395. "source": {
  10396. "type": "git",
  10397. "url": "https://github.com/theseer/tokenizer.git",
  10398. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  10399. },
  10400. "dist": {
  10401. "type": "zip",
  10402. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  10403. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  10404. "shasum": "",
  10405. "mirrors": [
  10406. {
  10407. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10408. "preferred": true
  10409. }
  10410. ]
  10411. },
  10412. "require": {
  10413. "ext-dom": "*",
  10414. "ext-tokenizer": "*",
  10415. "ext-xmlwriter": "*",
  10416. "php": "^7.2 || ^8.0"
  10417. },
  10418. "type": "library",
  10419. "autoload": {
  10420. "classmap": [
  10421. "src/"
  10422. ]
  10423. },
  10424. "notification-url": "https://packagist.org/downloads/",
  10425. "license": [
  10426. "BSD-3-Clause"
  10427. ],
  10428. "authors": [
  10429. {
  10430. "name": "Arne Blankerts",
  10431. "email": "arne@blankerts.de",
  10432. "role": "Developer"
  10433. }
  10434. ],
  10435. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10436. "support": {
  10437. "issues": "https://github.com/theseer/tokenizer/issues",
  10438. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  10439. },
  10440. "funding": [
  10441. {
  10442. "url": "https://github.com/theseer",
  10443. "type": "github"
  10444. }
  10445. ],
  10446. "time": "2021-07-28T10:34:58+00:00"
  10447. },
  10448. {
  10449. "name": "webmozart/assert",
  10450. "version": "1.10.0",
  10451. "source": {
  10452. "type": "git",
  10453. "url": "https://github.com/webmozarts/assert.git",
  10454. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
  10455. },
  10456. "dist": {
  10457. "type": "zip",
  10458. "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
  10459. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
  10460. "shasum": "",
  10461. "mirrors": [
  10462. {
  10463. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10464. "preferred": true
  10465. }
  10466. ]
  10467. },
  10468. "require": {
  10469. "php": "^7.2 || ^8.0",
  10470. "symfony/polyfill-ctype": "^1.8"
  10471. },
  10472. "conflict": {
  10473. "phpstan/phpstan": "<0.12.20",
  10474. "vimeo/psalm": "<4.6.1 || 4.6.2"
  10475. },
  10476. "require-dev": {
  10477. "phpunit/phpunit": "^8.5.13"
  10478. },
  10479. "type": "library",
  10480. "extra": {
  10481. "branch-alias": {
  10482. "dev-master": "1.10-dev"
  10483. }
  10484. },
  10485. "autoload": {
  10486. "psr-4": {
  10487. "Webmozart\\Assert\\": "src/"
  10488. }
  10489. },
  10490. "notification-url": "https://packagist.org/downloads/",
  10491. "license": [
  10492. "MIT"
  10493. ],
  10494. "authors": [
  10495. {
  10496. "name": "Bernhard Schussek",
  10497. "email": "bschussek@gmail.com"
  10498. }
  10499. ],
  10500. "description": "Assertions to validate method input/output with nice error messages.",
  10501. "keywords": [
  10502. "assert",
  10503. "check",
  10504. "validate"
  10505. ],
  10506. "support": {
  10507. "issues": "https://github.com/webmozarts/assert/issues",
  10508. "source": "https://github.com/webmozarts/assert/tree/1.10.0"
  10509. },
  10510. "time": "2021-03-09T10:59:23+00:00"
  10511. }
  10512. ],
  10513. "aliases": [],
  10514. "minimum-stability": "dev",
  10515. "stability-flags": [],
  10516. "prefer-stable": true,
  10517. "prefer-lowest": false,
  10518. "platform": {
  10519. "php": "^7.2.14",
  10520. "ext-bcmath": "*",
  10521. "ext-json": "*",
  10522. "ext-mbstring": "*",
  10523. "ext-oci8": "*",
  10524. "ext-openssl": "*",
  10525. "ext-pdo": "*"
  10526. },
  10527. "platform-dev": [],
  10528. "platform-overrides": {
  10529. "ext-pcntl": "7.2",
  10530. "ext-posix": "7.2"
  10531. },
  10532. "plugin-api-version": "2.1.0"
  10533. }