composer.lock 471 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038
  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": "6a39422b30b586439fccd0cf27271985",
  8. "packages": [
  9. {
  10. "name": "adbario/php-dot-notation",
  11. "version": "2.3.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/adbario/php-dot-notation.git",
  15. "reference": "39ece8d385ce2f5e03718c693932d83ab0cb5972"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/adbario/php-dot-notation/zipball/39ece8d385ce2f5e03718c693932d83ab0cb5972",
  20. "reference": "39ece8d385ce2f5e03718c693932d83ab0cb5972",
  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. "ext-json": "*",
  31. "php": "^5.5 || ^7.0 || ^8.0"
  32. },
  33. "require-dev": {
  34. "phpunit/phpunit": "^4.8|^5.7|^6.6|^7.5|^8.5|^9.5",
  35. "squizlabs/php_codesniffer": "^3.6"
  36. },
  37. "type": "library",
  38. "autoload": {
  39. "files": [
  40. "src/helpers.php"
  41. ],
  42. "psr-4": {
  43. "Adbar\\": "src"
  44. }
  45. },
  46. "notification-url": "https://packagist.org/downloads/",
  47. "license": [
  48. "MIT"
  49. ],
  50. "authors": [
  51. {
  52. "name": "Riku Särkinen",
  53. "email": "riku@adbar.io"
  54. }
  55. ],
  56. "description": "PHP dot notation access to arrays",
  57. "homepage": "https://github.com/adbario/php-dot-notation",
  58. "keywords": [
  59. "ArrayAccess",
  60. "dotnotation"
  61. ],
  62. "support": {
  63. "issues": "https://github.com/adbario/php-dot-notation/issues",
  64. "source": "https://github.com/adbario/php-dot-notation/tree/2.3.0"
  65. },
  66. "time": "2022-07-12T02:52:50+00:00"
  67. },
  68. {
  69. "name": "alibabacloud/client",
  70. "version": "1.5.31",
  71. "source": {
  72. "type": "git",
  73. "url": "https://github.com/aliyun/openapi-sdk-php-client.git",
  74. "reference": "19224d92fe27ab8ef501d77d4891e7660bc023c1"
  75. },
  76. "dist": {
  77. "type": "zip",
  78. "url": "https://api.github.com/repos/aliyun/openapi-sdk-php-client/zipball/19224d92fe27ab8ef501d77d4891e7660bc023c1",
  79. "reference": "19224d92fe27ab8ef501d77d4891e7660bc023c1",
  80. "shasum": "",
  81. "mirrors": [
  82. {
  83. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  84. "preferred": true
  85. }
  86. ]
  87. },
  88. "require": {
  89. "adbario/php-dot-notation": "^2.2",
  90. "clagiordano/weblibs-configmanager": "^1.0",
  91. "danielstjules/stringy": "^3.1",
  92. "ext-curl": "*",
  93. "ext-json": "*",
  94. "ext-libxml": "*",
  95. "ext-mbstring": "*",
  96. "ext-openssl": "*",
  97. "ext-simplexml": "*",
  98. "ext-xmlwriter": "*",
  99. "guzzlehttp/guzzle": "^6.3|^7.0",
  100. "mtdowling/jmespath.php": "^2.5",
  101. "php": ">=5.5"
  102. },
  103. "require-dev": {
  104. "composer/composer": "^1.8",
  105. "drupal/coder": "^8.3",
  106. "ext-dom": "*",
  107. "ext-pcre": "*",
  108. "ext-sockets": "*",
  109. "ext-spl": "*",
  110. "league/climate": "^3.2.4",
  111. "mikey179/vfsstream": "^1.6",
  112. "monolog/monolog": "^1.24",
  113. "phpunit/phpunit": "^5.7.27|^6.1",
  114. "psr/cache": "^1.0",
  115. "symfony/dotenv": "^3.4",
  116. "symfony/var-dumper": "^3.4"
  117. },
  118. "suggest": {
  119. "ext-sockets": "To use client-side monitoring"
  120. },
  121. "type": "library",
  122. "autoload": {
  123. "files": [
  124. "src/Functions.php"
  125. ],
  126. "psr-4": {
  127. "AlibabaCloud\\Client\\": "src"
  128. }
  129. },
  130. "notification-url": "https://packagist.org/downloads/",
  131. "license": [
  132. "Apache-2.0"
  133. ],
  134. "authors": [
  135. {
  136. "name": "Alibaba Cloud SDK",
  137. "email": "sdk-team@alibabacloud.com",
  138. "homepage": "http://www.alibabacloud.com"
  139. }
  140. ],
  141. "description": "Alibaba Cloud Client for PHP - Use Alibaba Cloud in your PHP project",
  142. "homepage": "https://www.alibabacloud.com/",
  143. "keywords": [
  144. "alibaba",
  145. "alibabacloud",
  146. "aliyun",
  147. "client",
  148. "cloud",
  149. "library",
  150. "sdk",
  151. "tool"
  152. ],
  153. "support": {
  154. "issues": "https://github.com/aliyun/openapi-sdk-php-client/issues",
  155. "source": "https://github.com/aliyun/openapi-sdk-php-client"
  156. },
  157. "time": "2021-05-13T06:26:38+00:00"
  158. },
  159. {
  160. "name": "alibabacloud/iot",
  161. "version": "1.8.958",
  162. "source": {
  163. "type": "git",
  164. "url": "https://github.com/alibabacloud-sdk-php/iot.git",
  165. "reference": "1be6b0444e6eeba93ad8bf1eef0f1afe2b477bea"
  166. },
  167. "dist": {
  168. "type": "zip",
  169. "url": "https://api.github.com/repos/alibabacloud-sdk-php/iot/zipball/1be6b0444e6eeba93ad8bf1eef0f1afe2b477bea",
  170. "reference": "1be6b0444e6eeba93ad8bf1eef0f1afe2b477bea",
  171. "shasum": "",
  172. "mirrors": [
  173. {
  174. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  175. "preferred": true
  176. }
  177. ]
  178. },
  179. "require": {
  180. "alibabacloud/client": "^1.5",
  181. "php": ">=5.5"
  182. },
  183. "type": "library",
  184. "autoload": {
  185. "psr-4": {
  186. "AlibabaCloud\\Iot\\": ""
  187. }
  188. },
  189. "notification-url": "https://packagist.org/downloads/",
  190. "license": [
  191. "Apache-2.0"
  192. ],
  193. "authors": [
  194. {
  195. "name": "Alibaba Cloud SDK",
  196. "email": "sdk-team@alibabacloud.com",
  197. "homepage": "http://www.alibabacloud.com"
  198. }
  199. ],
  200. "description": "Alibaba Cloud Iot SDK for PHP",
  201. "homepage": "https://www.alibabacloud.com/",
  202. "keywords": [
  203. "alibaba",
  204. "alibabacloud",
  205. "aliyun",
  206. "cloud",
  207. "iot",
  208. "library",
  209. "sdk"
  210. ],
  211. "support": {
  212. "issues": "https://github.com/alibabacloud-sdk-php/iot/issues",
  213. "source": "https://github.com/alibabacloud-sdk-php/iot"
  214. },
  215. "time": "2021-04-29T09:15:22+00:00"
  216. },
  217. {
  218. "name": "aliyuncs/oss-sdk-php",
  219. "version": "v2.5.0",
  220. "source": {
  221. "type": "git",
  222. "url": "https://github.com/aliyun/aliyun-oss-php-sdk.git",
  223. "reference": "f0413667d765855eb0aaa728b596801464ffdb06"
  224. },
  225. "dist": {
  226. "type": "zip",
  227. "url": "https://api.github.com/repos/aliyun/aliyun-oss-php-sdk/zipball/f0413667d765855eb0aaa728b596801464ffdb06",
  228. "reference": "f0413667d765855eb0aaa728b596801464ffdb06",
  229. "shasum": "",
  230. "mirrors": [
  231. {
  232. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  233. "preferred": true
  234. }
  235. ]
  236. },
  237. "require": {
  238. "php": ">=5.3"
  239. },
  240. "require-dev": {
  241. "phpunit/phpunit": "*",
  242. "satooshi/php-coveralls": "*"
  243. },
  244. "type": "library",
  245. "autoload": {
  246. "psr-4": {
  247. "OSS\\": "src/OSS"
  248. }
  249. },
  250. "notification-url": "https://packagist.org/downloads/",
  251. "license": [
  252. "MIT"
  253. ],
  254. "authors": [
  255. {
  256. "name": "Aliyuncs",
  257. "homepage": "http://www.aliyun.com"
  258. }
  259. ],
  260. "description": "Aliyun OSS SDK for PHP",
  261. "homepage": "http://www.aliyun.com/product/oss/",
  262. "support": {
  263. "issues": "https://github.com/aliyun/aliyun-oss-php-sdk/issues",
  264. "source": "https://github.com/aliyun/aliyun-oss-php-sdk/tree/v2.5.0"
  265. },
  266. "time": "2022-05-13T07:41:28+00:00"
  267. },
  268. {
  269. "name": "api-ecosystem-for-laravel/dingo-api",
  270. "version": "v3.1.1",
  271. "source": {
  272. "type": "git",
  273. "url": "https://github.com/api-ecosystem-for-laravel/dingo-api.git",
  274. "reference": "ac4de98c1a7b1f533d31623a3df1a17abf0af23e"
  275. },
  276. "dist": {
  277. "type": "zip",
  278. "url": "https://api.github.com/repos/api-ecosystem-for-laravel/dingo-api/zipball/ac4de98c1a7b1f533d31623a3df1a17abf0af23e",
  279. "reference": "ac4de98c1a7b1f533d31623a3df1a17abf0af23e",
  280. "shasum": "",
  281. "mirrors": [
  282. {
  283. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  284. "preferred": true
  285. }
  286. ]
  287. },
  288. "require": {
  289. "dingo/blueprint": "^0.4",
  290. "illuminate/routing": "^7.0|^8.0",
  291. "illuminate/support": "^7.0|^8.0",
  292. "league/fractal": "^0.19",
  293. "php": "^7.2.5|^8.0"
  294. },
  295. "require-dev": {
  296. "friendsofphp/php-cs-fixer": "~2",
  297. "illuminate/auth": "^7.0|^8.0",
  298. "illuminate/cache": "^7.0|^8.0",
  299. "illuminate/console": "^7.0|^8.0",
  300. "illuminate/database": "^7.0|^8.0",
  301. "illuminate/events": "^7.0|^8.0",
  302. "illuminate/filesystem": "^7.0|^8.0",
  303. "illuminate/log": "^7.0|^8.0",
  304. "illuminate/pagination": "^7.0|^8.0",
  305. "laravel/lumen-framework": "^7.0|^8.0",
  306. "mockery/mockery": "~1.0",
  307. "php-open-source-saver/jwt-auth": "^1.4",
  308. "phpunit/phpunit": "^8.5|^9.0",
  309. "squizlabs/php_codesniffer": "~2.0"
  310. },
  311. "suggest": {
  312. "php-open-source-saver/jwt-auth": "Protect your API with JSON Web Tokens."
  313. },
  314. "type": "library",
  315. "extra": {
  316. "branch-alias": {
  317. "dev-master": "2.0-dev"
  318. },
  319. "laravel": {
  320. "providers": [
  321. "Dingo\\Api\\Provider\\LaravelServiceProvider"
  322. ],
  323. "aliases": {
  324. "API": "Dingo\\Api\\Facade\\API"
  325. }
  326. }
  327. },
  328. "autoload": {
  329. "files": [
  330. "src/helpers.php"
  331. ],
  332. "psr-4": {
  333. "Dingo\\Api\\": "src/"
  334. }
  335. },
  336. "notification-url": "https://packagist.org/downloads/",
  337. "license": [
  338. "BSD-3-Clause"
  339. ],
  340. "authors": [
  341. {
  342. "name": "Jason Lewis",
  343. "email": "jason.lewis1991@gmail.com"
  344. }
  345. ],
  346. "description": "A RESTful API package for the Laravel and Lumen frameworks.",
  347. "keywords": [
  348. "api",
  349. "dingo",
  350. "laravel",
  351. "restful"
  352. ],
  353. "support": {
  354. "issues": "https://github.com/api-ecosystem-for-laravel/dingo-api/issues",
  355. "source": "https://github.com/api-ecosystem-for-laravel/dingo-api/tree/v3.1.1"
  356. },
  357. "time": "2022-01-30T13:37:55+00:00"
  358. },
  359. {
  360. "name": "asm89/stack-cors",
  361. "version": "v2.1.1",
  362. "source": {
  363. "type": "git",
  364. "url": "https://github.com/asm89/stack-cors.git",
  365. "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a"
  366. },
  367. "dist": {
  368. "type": "zip",
  369. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/73e5b88775c64ccc0b84fb60836b30dc9d92ac4a",
  370. "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a",
  371. "shasum": "",
  372. "mirrors": [
  373. {
  374. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  375. "preferred": true
  376. }
  377. ]
  378. },
  379. "require": {
  380. "php": "^7.2|^8.0",
  381. "symfony/http-foundation": "^4|^5|^6",
  382. "symfony/http-kernel": "^4|^5|^6"
  383. },
  384. "require-dev": {
  385. "phpunit/phpunit": "^7|^9",
  386. "squizlabs/php_codesniffer": "^3.5"
  387. },
  388. "type": "library",
  389. "extra": {
  390. "branch-alias": {
  391. "dev-master": "2.1-dev"
  392. }
  393. },
  394. "autoload": {
  395. "psr-4": {
  396. "Asm89\\Stack\\": "src/"
  397. }
  398. },
  399. "notification-url": "https://packagist.org/downloads/",
  400. "license": [
  401. "MIT"
  402. ],
  403. "authors": [
  404. {
  405. "name": "Alexander",
  406. "email": "iam.asm89@gmail.com"
  407. }
  408. ],
  409. "description": "Cross-origin resource sharing library and stack middleware",
  410. "homepage": "https://github.com/asm89/stack-cors",
  411. "keywords": [
  412. "cors",
  413. "stack"
  414. ],
  415. "support": {
  416. "issues": "https://github.com/asm89/stack-cors/issues",
  417. "source": "https://github.com/asm89/stack-cors/tree/v2.1.1"
  418. },
  419. "time": "2022-01-18T09:12:03+00:00"
  420. },
  421. {
  422. "name": "barryvdh/laravel-snappy",
  423. "version": "v0.4.8",
  424. "source": {
  425. "type": "git",
  426. "url": "https://github.com/barryvdh/laravel-snappy.git",
  427. "reference": "1903ab84171072b6bff8d98eb58d38b2c9aaf645"
  428. },
  429. "dist": {
  430. "type": "zip",
  431. "url": "https://api.github.com/repos/barryvdh/laravel-snappy/zipball/1903ab84171072b6bff8d98eb58d38b2c9aaf645",
  432. "reference": "1903ab84171072b6bff8d98eb58d38b2c9aaf645",
  433. "shasum": "",
  434. "mirrors": [
  435. {
  436. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  437. "preferred": true
  438. }
  439. ]
  440. },
  441. "require": {
  442. "illuminate/filesystem": "^5.5|^6|^7|^8",
  443. "illuminate/support": "^5.5|^6|^7|^8",
  444. "knplabs/knp-snappy": "^1",
  445. "php": ">=7"
  446. },
  447. "type": "library",
  448. "extra": {
  449. "branch-alias": {
  450. "dev-master": "0.4-dev"
  451. },
  452. "laravel": {
  453. "providers": [
  454. "Barryvdh\\Snappy\\ServiceProvider"
  455. ],
  456. "aliases": {
  457. "PDF": "Barryvdh\\Snappy\\Facades\\SnappyPdf",
  458. "SnappyImage": "Barryvdh\\Snappy\\Facades\\SnappyImage"
  459. }
  460. }
  461. },
  462. "autoload": {
  463. "psr-4": {
  464. "Barryvdh\\Snappy\\": "src/"
  465. }
  466. },
  467. "notification-url": "https://packagist.org/downloads/",
  468. "license": [
  469. "MIT"
  470. ],
  471. "authors": [
  472. {
  473. "name": "Barry vd. Heuvel",
  474. "email": "barryvdh@gmail.com"
  475. }
  476. ],
  477. "description": "Snappy PDF/Image for Laravel",
  478. "keywords": [
  479. "image",
  480. "laravel",
  481. "pdf",
  482. "snappy",
  483. "wkhtmltoimage",
  484. "wkhtmltopdf"
  485. ],
  486. "support": {
  487. "issues": "https://github.com/barryvdh/laravel-snappy/issues",
  488. "source": "https://github.com/barryvdh/laravel-snappy/tree/master"
  489. },
  490. "time": "2020-09-07T12:33:10+00:00"
  491. },
  492. {
  493. "name": "box/spout",
  494. "version": "v3.3.0",
  495. "source": {
  496. "type": "git",
  497. "url": "https://github.com/box/spout.git",
  498. "reference": "9bdb027d312b732515b884a341c0ad70372c6295"
  499. },
  500. "dist": {
  501. "type": "zip",
  502. "url": "https://api.github.com/repos/box/spout/zipball/9bdb027d312b732515b884a341c0ad70372c6295",
  503. "reference": "9bdb027d312b732515b884a341c0ad70372c6295",
  504. "shasum": "",
  505. "mirrors": [
  506. {
  507. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  508. "preferred": true
  509. }
  510. ]
  511. },
  512. "require": {
  513. "ext-dom": "*",
  514. "ext-xmlreader": "*",
  515. "ext-zip": "*",
  516. "php": ">=7.2.0"
  517. },
  518. "require-dev": {
  519. "friendsofphp/php-cs-fixer": "^2",
  520. "phpunit/phpunit": "^8"
  521. },
  522. "suggest": {
  523. "ext-iconv": "To handle non UTF-8 CSV files (if \"php-intl\" is not already installed or is too limited)",
  524. "ext-intl": "To handle non UTF-8 CSV files (if \"iconv\" is not already installed)"
  525. },
  526. "type": "library",
  527. "extra": {
  528. "branch-alias": {
  529. "dev-master": "3.1.x-dev"
  530. }
  531. },
  532. "autoload": {
  533. "psr-4": {
  534. "Box\\Spout\\": "src/Spout"
  535. }
  536. },
  537. "notification-url": "https://packagist.org/downloads/",
  538. "license": [
  539. "Apache-2.0"
  540. ],
  541. "authors": [
  542. {
  543. "name": "Adrien Loison",
  544. "email": "adrien@box.com"
  545. }
  546. ],
  547. "description": "PHP Library to read and write spreadsheet files (CSV, XLSX and ODS), in a fast and scalable way",
  548. "homepage": "https://www.github.com/box/spout",
  549. "keywords": [
  550. "OOXML",
  551. "csv",
  552. "excel",
  553. "memory",
  554. "odf",
  555. "ods",
  556. "office",
  557. "open",
  558. "php",
  559. "read",
  560. "scale",
  561. "spreadsheet",
  562. "stream",
  563. "write",
  564. "xlsx"
  565. ],
  566. "support": {
  567. "issues": "https://github.com/box/spout/issues",
  568. "source": "https://github.com/box/spout/tree/v3.3.0"
  569. },
  570. "abandoned": true,
  571. "time": "2021-05-14T21:18:09+00:00"
  572. },
  573. {
  574. "name": "brick/math",
  575. "version": "0.9.3",
  576. "source": {
  577. "type": "git",
  578. "url": "https://github.com/brick/math.git",
  579. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae"
  580. },
  581. "dist": {
  582. "type": "zip",
  583. "url": "https://api.github.com/repos/brick/math/zipball/ca57d18f028f84f777b2168cd1911b0dee2343ae",
  584. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae",
  585. "shasum": "",
  586. "mirrors": [
  587. {
  588. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  589. "preferred": true
  590. }
  591. ]
  592. },
  593. "require": {
  594. "ext-json": "*",
  595. "php": "^7.1 || ^8.0"
  596. },
  597. "require-dev": {
  598. "php-coveralls/php-coveralls": "^2.2",
  599. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.0",
  600. "vimeo/psalm": "4.9.2"
  601. },
  602. "type": "library",
  603. "autoload": {
  604. "psr-4": {
  605. "Brick\\Math\\": "src/"
  606. }
  607. },
  608. "notification-url": "https://packagist.org/downloads/",
  609. "license": [
  610. "MIT"
  611. ],
  612. "description": "Arbitrary-precision arithmetic library",
  613. "keywords": [
  614. "Arbitrary-precision",
  615. "BigInteger",
  616. "BigRational",
  617. "arithmetic",
  618. "bigdecimal",
  619. "bignum",
  620. "brick",
  621. "math"
  622. ],
  623. "support": {
  624. "issues": "https://github.com/brick/math/issues",
  625. "source": "https://github.com/brick/math/tree/0.9.3"
  626. },
  627. "funding": [
  628. {
  629. "url": "https://github.com/BenMorel",
  630. "type": "github"
  631. },
  632. {
  633. "url": "https://tidelift.com/funding/github/packagist/brick/math",
  634. "type": "tidelift"
  635. }
  636. ],
  637. "time": "2021-08-15T20:50:18+00:00"
  638. },
  639. {
  640. "name": "clagiordano/weblibs-configmanager",
  641. "version": "v1.2.0",
  642. "source": {
  643. "type": "git",
  644. "url": "https://github.com/clagiordano/weblibs-configmanager.git",
  645. "reference": "5c8ebcc62782313b1278afe802b120d18c07a059"
  646. },
  647. "dist": {
  648. "type": "zip",
  649. "url": "https://api.github.com/repos/clagiordano/weblibs-configmanager/zipball/5c8ebcc62782313b1278afe802b120d18c07a059",
  650. "reference": "5c8ebcc62782313b1278afe802b120d18c07a059",
  651. "shasum": "",
  652. "mirrors": [
  653. {
  654. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  655. "preferred": true
  656. }
  657. ]
  658. },
  659. "require": {
  660. "php": ">=5.4"
  661. },
  662. "require-dev": {
  663. "clagiordano/phpunit-result-printer": "^1",
  664. "phpunit/phpunit": "^4.8"
  665. },
  666. "type": "library",
  667. "autoload": {
  668. "psr-4": {
  669. "clagiordano\\weblibs\\configmanager\\": "src/"
  670. }
  671. },
  672. "notification-url": "https://packagist.org/downloads/",
  673. "license": [
  674. "LGPL-3.0-or-later"
  675. ],
  676. "authors": [
  677. {
  678. "name": "Claudio Giordano",
  679. "email": "claudio.giordano@autistici.org",
  680. "role": "Developer"
  681. }
  682. ],
  683. "description": "weblibs-configmanager is a tool library for easily read and access to php config array file and direct read/write configuration file / object",
  684. "keywords": [
  685. "clagiordano",
  686. "configuration",
  687. "manager",
  688. "tool",
  689. "weblibs"
  690. ],
  691. "support": {
  692. "issues": "https://github.com/clagiordano/weblibs-configmanager/issues",
  693. "source": "https://github.com/clagiordano/weblibs-configmanager/tree/v1.2.0"
  694. },
  695. "time": "2021-05-18T17:55:57+00:00"
  696. },
  697. {
  698. "name": "danielstjules/stringy",
  699. "version": "3.1.0",
  700. "source": {
  701. "type": "git",
  702. "url": "https://github.com/danielstjules/Stringy.git",
  703. "reference": "df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e"
  704. },
  705. "dist": {
  706. "type": "zip",
  707. "url": "https://api.github.com/repos/danielstjules/Stringy/zipball/df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e",
  708. "reference": "df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e",
  709. "shasum": "",
  710. "mirrors": [
  711. {
  712. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  713. "preferred": true
  714. }
  715. ]
  716. },
  717. "require": {
  718. "php": ">=5.4.0",
  719. "symfony/polyfill-mbstring": "~1.1"
  720. },
  721. "require-dev": {
  722. "phpunit/phpunit": "~4.0"
  723. },
  724. "type": "library",
  725. "autoload": {
  726. "files": [
  727. "src/Create.php"
  728. ],
  729. "psr-4": {
  730. "Stringy\\": "src/"
  731. }
  732. },
  733. "notification-url": "https://packagist.org/downloads/",
  734. "license": [
  735. "MIT"
  736. ],
  737. "authors": [
  738. {
  739. "name": "Daniel St. Jules",
  740. "email": "danielst.jules@gmail.com",
  741. "homepage": "http://www.danielstjules.com"
  742. }
  743. ],
  744. "description": "A string manipulation library with multibyte support",
  745. "homepage": "https://github.com/danielstjules/Stringy",
  746. "keywords": [
  747. "UTF",
  748. "helpers",
  749. "manipulation",
  750. "methods",
  751. "multibyte",
  752. "string",
  753. "utf-8",
  754. "utility",
  755. "utils"
  756. ],
  757. "support": {
  758. "issues": "https://github.com/danielstjules/Stringy/issues",
  759. "source": "https://github.com/danielstjules/Stringy"
  760. },
  761. "time": "2017-06-12T01:10:27+00:00"
  762. },
  763. {
  764. "name": "dcat/easy-excel",
  765. "version": "1.1.0",
  766. "source": {
  767. "type": "git",
  768. "url": "https://github.com/jqhph/easy-excel.git",
  769. "reference": "20ee838b07f1f5d9c075b84e6f4807cbb21c44b0"
  770. },
  771. "dist": {
  772. "type": "zip",
  773. "url": "https://api.github.com/repos/jqhph/easy-excel/zipball/20ee838b07f1f5d9c075b84e6f4807cbb21c44b0",
  774. "reference": "20ee838b07f1f5d9c075b84e6f4807cbb21c44b0",
  775. "shasum": "",
  776. "mirrors": [
  777. {
  778. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  779. "preferred": true
  780. }
  781. ]
  782. },
  783. "require": {
  784. "box/spout": "~3",
  785. "league/flysystem": "~1|~2|~3",
  786. "php": ">=7.1.0"
  787. },
  788. "require-dev": {
  789. "friendsofphp/php-cs-fixer": "^2",
  790. "phpunit/phpunit": "~7|~8.0"
  791. },
  792. "type": "library",
  793. "autoload": {
  794. "psr-4": {
  795. "Dcat\\EasyExcel\\": "src/"
  796. }
  797. },
  798. "notification-url": "https://packagist.org/downloads/",
  799. "license": [
  800. "MIT"
  801. ],
  802. "authors": [
  803. {
  804. "name": "jqh",
  805. "email": "841324345@qq.com"
  806. }
  807. ],
  808. "description": "使用简单实用的语义化接口快速读写Excel文件",
  809. "homepage": "https://github.com/jqhph/easy-excel",
  810. "keywords": [
  811. "box spout",
  812. "csv",
  813. "easy excel",
  814. "excel",
  815. "ods",
  816. "office",
  817. "read",
  818. "spreadsheet",
  819. "stream",
  820. "xlsx"
  821. ],
  822. "support": {
  823. "issues": "https://github.com/jqhph/easy-excel/issues",
  824. "source": "https://github.com/jqhph/easy-excel/tree/1.1.0"
  825. },
  826. "time": "2022-03-03T03:04:13+00:00"
  827. },
  828. {
  829. "name": "dcat/laravel-admin",
  830. "version": "2.2.2-beta",
  831. "source": {
  832. "type": "git",
  833. "url": "https://github.com/jqhph/dcat-admin.git",
  834. "reference": "150f46486871b5ca57992f7eed3787e0c1c49bef"
  835. },
  836. "dist": {
  837. "type": "zip",
  838. "url": "https://api.github.com/repos/jqhph/dcat-admin/zipball/150f46486871b5ca57992f7eed3787e0c1c49bef",
  839. "reference": "150f46486871b5ca57992f7eed3787e0c1c49bef",
  840. "shasum": "",
  841. "mirrors": [
  842. {
  843. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  844. "preferred": true
  845. }
  846. ]
  847. },
  848. "require": {
  849. "doctrine/dbal": "^2.6|^3.0",
  850. "laravel/framework": "~5.5|~6.0|~7.0|~8.0|~9.0",
  851. "php": ">=7.1.0",
  852. "spatie/eloquent-sortable": "3.*|4.*"
  853. },
  854. "require-dev": {
  855. "fzaninotto/faker": "^1.4",
  856. "laravel/dusk": "~5.9|~6",
  857. "mockery/mockery": "^1.0",
  858. "phpstan/phpstan": "^0.12.0",
  859. "phpunit/phpunit": "^7.5|~9"
  860. },
  861. "type": "library",
  862. "extra": {
  863. "laravel": {
  864. "providers": [
  865. "Dcat\\Admin\\AdminServiceProvider"
  866. ]
  867. }
  868. },
  869. "autoload": {
  870. "files": [
  871. "src/Support/helpers.php"
  872. ],
  873. "psr-4": {
  874. "Dcat\\Admin\\": "src/"
  875. }
  876. },
  877. "notification-url": "https://packagist.org/downloads/",
  878. "license": [
  879. "MIT"
  880. ],
  881. "authors": [
  882. {
  883. "name": "jqh",
  884. "email": "841324345@qq.com"
  885. }
  886. ],
  887. "description": "dcat admin",
  888. "homepage": "https://github.com/jqhph/dcat-admin",
  889. "keywords": [
  890. "admin",
  891. "dcat",
  892. "form",
  893. "grid",
  894. "laravel",
  895. "laravel admin"
  896. ],
  897. "support": {
  898. "issues": "https://github.com/jqhph/dcat-admin/issues",
  899. "source": "https://github.com/jqhph/dcat-admin/tree/2.2.2-beta"
  900. },
  901. "time": "2022-06-27T14:42:39+00:00"
  902. },
  903. {
  904. "name": "dflydev/dot-access-data",
  905. "version": "v3.0.1",
  906. "source": {
  907. "type": "git",
  908. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  909. "reference": "0992cc19268b259a39e86f296da5f0677841f42c"
  910. },
  911. "dist": {
  912. "type": "zip",
  913. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/0992cc19268b259a39e86f296da5f0677841f42c",
  914. "reference": "0992cc19268b259a39e86f296da5f0677841f42c",
  915. "shasum": "",
  916. "mirrors": [
  917. {
  918. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  919. "preferred": true
  920. }
  921. ]
  922. },
  923. "require": {
  924. "php": "^7.1 || ^8.0"
  925. },
  926. "require-dev": {
  927. "phpstan/phpstan": "^0.12.42",
  928. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  929. "scrutinizer/ocular": "1.6.0",
  930. "squizlabs/php_codesniffer": "^3.5",
  931. "vimeo/psalm": "^3.14"
  932. },
  933. "type": "library",
  934. "extra": {
  935. "branch-alias": {
  936. "dev-main": "3.x-dev"
  937. }
  938. },
  939. "autoload": {
  940. "psr-4": {
  941. "Dflydev\\DotAccessData\\": "src/"
  942. }
  943. },
  944. "notification-url": "https://packagist.org/downloads/",
  945. "license": [
  946. "MIT"
  947. ],
  948. "authors": [
  949. {
  950. "name": "Dragonfly Development Inc.",
  951. "email": "info@dflydev.com",
  952. "homepage": "http://dflydev.com"
  953. },
  954. {
  955. "name": "Beau Simensen",
  956. "email": "beau@dflydev.com",
  957. "homepage": "http://beausimensen.com"
  958. },
  959. {
  960. "name": "Carlos Frutos",
  961. "email": "carlos@kiwing.it",
  962. "homepage": "https://github.com/cfrutos"
  963. },
  964. {
  965. "name": "Colin O'Dell",
  966. "email": "colinodell@gmail.com",
  967. "homepage": "https://www.colinodell.com"
  968. }
  969. ],
  970. "description": "Given a deep data structure, access data by dot notation.",
  971. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  972. "keywords": [
  973. "access",
  974. "data",
  975. "dot",
  976. "notation"
  977. ],
  978. "support": {
  979. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  980. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.1"
  981. },
  982. "time": "2021-08-13T13:06:58+00:00"
  983. },
  984. {
  985. "name": "dingo/blueprint",
  986. "version": "v0.4.3",
  987. "source": {
  988. "type": "git",
  989. "url": "https://github.com/dingo/blueprint.git",
  990. "reference": "e3a8f19ae10716670079c3c162540756dbd20a88"
  991. },
  992. "dist": {
  993. "type": "zip",
  994. "url": "https://api.github.com/repos/dingo/blueprint/zipball/e3a8f19ae10716670079c3c162540756dbd20a88",
  995. "reference": "e3a8f19ae10716670079c3c162540756dbd20a88",
  996. "shasum": "",
  997. "mirrors": [
  998. {
  999. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1000. "preferred": true
  1001. }
  1002. ]
  1003. },
  1004. "require": {
  1005. "doctrine/annotations": "~1.2",
  1006. "illuminate/filesystem": "^7.0|^8.0",
  1007. "illuminate/support": "^7.0|^8.0",
  1008. "php": "^7.2.5|^8.0",
  1009. "phpdocumentor/reflection-docblock": "^3.1 || ^4.1 || ^5"
  1010. },
  1011. "require-dev": {
  1012. "phpunit/phpunit": "^6.5|^8.3|^9.0",
  1013. "squizlabs/php_codesniffer": "~2.0"
  1014. },
  1015. "type": "library",
  1016. "extra": {
  1017. "branch-alias": {
  1018. "dev-master": "0.2-dev"
  1019. }
  1020. },
  1021. "autoload": {
  1022. "psr-4": {
  1023. "Dingo\\Blueprint\\": "src"
  1024. }
  1025. },
  1026. "notification-url": "https://packagist.org/downloads/",
  1027. "license": [
  1028. "BSD-3-Clause"
  1029. ],
  1030. "authors": [
  1031. {
  1032. "name": "Jason Lewis",
  1033. "email": "jason.lewis1991@gmail.com"
  1034. }
  1035. ],
  1036. "description": "API Blueprint documentation generator.",
  1037. "keywords": [
  1038. "api",
  1039. "blueprint",
  1040. "dingo",
  1041. "docs",
  1042. "laravel"
  1043. ],
  1044. "support": {
  1045. "issues": "https://github.com/dingo/blueprint/issues",
  1046. "source": "https://github.com/dingo/blueprint/tree/v0.4.3"
  1047. },
  1048. "time": "2021-04-30T11:20:38+00:00"
  1049. },
  1050. {
  1051. "name": "doctrine/annotations",
  1052. "version": "1.13.3",
  1053. "source": {
  1054. "type": "git",
  1055. "url": "https://github.com/doctrine/annotations.git",
  1056. "reference": "648b0343343565c4a056bfc8392201385e8d89f0"
  1057. },
  1058. "dist": {
  1059. "type": "zip",
  1060. "url": "https://api.github.com/repos/doctrine/annotations/zipball/648b0343343565c4a056bfc8392201385e8d89f0",
  1061. "reference": "648b0343343565c4a056bfc8392201385e8d89f0",
  1062. "shasum": "",
  1063. "mirrors": [
  1064. {
  1065. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1066. "preferred": true
  1067. }
  1068. ]
  1069. },
  1070. "require": {
  1071. "doctrine/lexer": "1.*",
  1072. "ext-tokenizer": "*",
  1073. "php": "^7.1 || ^8.0",
  1074. "psr/cache": "^1 || ^2 || ^3"
  1075. },
  1076. "require-dev": {
  1077. "doctrine/cache": "^1.11 || ^2.0",
  1078. "doctrine/coding-standard": "^6.0 || ^8.1",
  1079. "phpstan/phpstan": "^1.4.10 || ^1.8.0",
  1080. "phpunit/phpunit": "^7.5 || ^8.0 || ^9.1.5",
  1081. "symfony/cache": "^4.4 || ^5.2",
  1082. "vimeo/psalm": "^4.10"
  1083. },
  1084. "type": "library",
  1085. "autoload": {
  1086. "psr-4": {
  1087. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1088. }
  1089. },
  1090. "notification-url": "https://packagist.org/downloads/",
  1091. "license": [
  1092. "MIT"
  1093. ],
  1094. "authors": [
  1095. {
  1096. "name": "Guilherme Blanco",
  1097. "email": "guilhermeblanco@gmail.com"
  1098. },
  1099. {
  1100. "name": "Roman Borschel",
  1101. "email": "roman@code-factory.org"
  1102. },
  1103. {
  1104. "name": "Benjamin Eberlei",
  1105. "email": "kontakt@beberlei.de"
  1106. },
  1107. {
  1108. "name": "Jonathan Wage",
  1109. "email": "jonwage@gmail.com"
  1110. },
  1111. {
  1112. "name": "Johannes Schmitt",
  1113. "email": "schmittjoh@gmail.com"
  1114. }
  1115. ],
  1116. "description": "Docblock Annotations Parser",
  1117. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  1118. "keywords": [
  1119. "annotations",
  1120. "docblock",
  1121. "parser"
  1122. ],
  1123. "support": {
  1124. "issues": "https://github.com/doctrine/annotations/issues",
  1125. "source": "https://github.com/doctrine/annotations/tree/1.13.3"
  1126. },
  1127. "time": "2022-07-02T10:48:51+00:00"
  1128. },
  1129. {
  1130. "name": "doctrine/cache",
  1131. "version": "2.2.0",
  1132. "source": {
  1133. "type": "git",
  1134. "url": "https://github.com/doctrine/cache.git",
  1135. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb"
  1136. },
  1137. "dist": {
  1138. "type": "zip",
  1139. "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb",
  1140. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb",
  1141. "shasum": "",
  1142. "mirrors": [
  1143. {
  1144. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1145. "preferred": true
  1146. }
  1147. ]
  1148. },
  1149. "require": {
  1150. "php": "~7.1 || ^8.0"
  1151. },
  1152. "conflict": {
  1153. "doctrine/common": ">2.2,<2.4"
  1154. },
  1155. "require-dev": {
  1156. "cache/integration-tests": "dev-master",
  1157. "doctrine/coding-standard": "^9",
  1158. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1159. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  1160. "symfony/cache": "^4.4 || ^5.4 || ^6",
  1161. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  1162. },
  1163. "type": "library",
  1164. "autoload": {
  1165. "psr-4": {
  1166. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  1167. }
  1168. },
  1169. "notification-url": "https://packagist.org/downloads/",
  1170. "license": [
  1171. "MIT"
  1172. ],
  1173. "authors": [
  1174. {
  1175. "name": "Guilherme Blanco",
  1176. "email": "guilhermeblanco@gmail.com"
  1177. },
  1178. {
  1179. "name": "Roman Borschel",
  1180. "email": "roman@code-factory.org"
  1181. },
  1182. {
  1183. "name": "Benjamin Eberlei",
  1184. "email": "kontakt@beberlei.de"
  1185. },
  1186. {
  1187. "name": "Jonathan Wage",
  1188. "email": "jonwage@gmail.com"
  1189. },
  1190. {
  1191. "name": "Johannes Schmitt",
  1192. "email": "schmittjoh@gmail.com"
  1193. }
  1194. ],
  1195. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  1196. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  1197. "keywords": [
  1198. "abstraction",
  1199. "apcu",
  1200. "cache",
  1201. "caching",
  1202. "couchdb",
  1203. "memcached",
  1204. "php",
  1205. "redis",
  1206. "xcache"
  1207. ],
  1208. "support": {
  1209. "issues": "https://github.com/doctrine/cache/issues",
  1210. "source": "https://github.com/doctrine/cache/tree/2.2.0"
  1211. },
  1212. "funding": [
  1213. {
  1214. "url": "https://www.doctrine-project.org/sponsorship.html",
  1215. "type": "custom"
  1216. },
  1217. {
  1218. "url": "https://www.patreon.com/phpdoctrine",
  1219. "type": "patreon"
  1220. },
  1221. {
  1222. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  1223. "type": "tidelift"
  1224. }
  1225. ],
  1226. "time": "2022-05-20T20:07:39+00:00"
  1227. },
  1228. {
  1229. "name": "doctrine/dbal",
  1230. "version": "3.3.7",
  1231. "source": {
  1232. "type": "git",
  1233. "url": "https://github.com/doctrine/dbal.git",
  1234. "reference": "9f79d4650430b582f4598fe0954ef4d52fbc0a8a"
  1235. },
  1236. "dist": {
  1237. "type": "zip",
  1238. "url": "https://api.github.com/repos/doctrine/dbal/zipball/9f79d4650430b582f4598fe0954ef4d52fbc0a8a",
  1239. "reference": "9f79d4650430b582f4598fe0954ef4d52fbc0a8a",
  1240. "shasum": "",
  1241. "mirrors": [
  1242. {
  1243. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1244. "preferred": true
  1245. }
  1246. ]
  1247. },
  1248. "require": {
  1249. "composer-runtime-api": "^2",
  1250. "doctrine/cache": "^1.11|^2.0",
  1251. "doctrine/deprecations": "^0.5.3|^1",
  1252. "doctrine/event-manager": "^1.0",
  1253. "php": "^7.3 || ^8.0",
  1254. "psr/cache": "^1|^2|^3",
  1255. "psr/log": "^1|^2|^3"
  1256. },
  1257. "require-dev": {
  1258. "doctrine/coding-standard": "9.0.0",
  1259. "jetbrains/phpstorm-stubs": "2022.1",
  1260. "phpstan/phpstan": "1.7.13",
  1261. "phpstan/phpstan-strict-rules": "^1.2",
  1262. "phpunit/phpunit": "9.5.20",
  1263. "psalm/plugin-phpunit": "0.16.1",
  1264. "squizlabs/php_codesniffer": "3.7.0",
  1265. "symfony/cache": "^5.2|^6.0",
  1266. "symfony/console": "^2.7|^3.0|^4.0|^5.0|^6.0",
  1267. "vimeo/psalm": "4.23.0"
  1268. },
  1269. "suggest": {
  1270. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  1271. },
  1272. "bin": [
  1273. "bin/doctrine-dbal"
  1274. ],
  1275. "type": "library",
  1276. "autoload": {
  1277. "psr-4": {
  1278. "Doctrine\\DBAL\\": "src"
  1279. }
  1280. },
  1281. "notification-url": "https://packagist.org/downloads/",
  1282. "license": [
  1283. "MIT"
  1284. ],
  1285. "authors": [
  1286. {
  1287. "name": "Guilherme Blanco",
  1288. "email": "guilhermeblanco@gmail.com"
  1289. },
  1290. {
  1291. "name": "Roman Borschel",
  1292. "email": "roman@code-factory.org"
  1293. },
  1294. {
  1295. "name": "Benjamin Eberlei",
  1296. "email": "kontakt@beberlei.de"
  1297. },
  1298. {
  1299. "name": "Jonathan Wage",
  1300. "email": "jonwage@gmail.com"
  1301. }
  1302. ],
  1303. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  1304. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  1305. "keywords": [
  1306. "abstraction",
  1307. "database",
  1308. "db2",
  1309. "dbal",
  1310. "mariadb",
  1311. "mssql",
  1312. "mysql",
  1313. "oci8",
  1314. "oracle",
  1315. "pdo",
  1316. "pgsql",
  1317. "postgresql",
  1318. "queryobject",
  1319. "sasql",
  1320. "sql",
  1321. "sqlite",
  1322. "sqlserver",
  1323. "sqlsrv"
  1324. ],
  1325. "support": {
  1326. "issues": "https://github.com/doctrine/dbal/issues",
  1327. "source": "https://github.com/doctrine/dbal/tree/3.3.7"
  1328. },
  1329. "funding": [
  1330. {
  1331. "url": "https://www.doctrine-project.org/sponsorship.html",
  1332. "type": "custom"
  1333. },
  1334. {
  1335. "url": "https://www.patreon.com/phpdoctrine",
  1336. "type": "patreon"
  1337. },
  1338. {
  1339. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  1340. "type": "tidelift"
  1341. }
  1342. ],
  1343. "time": "2022-06-13T21:43:03+00:00"
  1344. },
  1345. {
  1346. "name": "doctrine/deprecations",
  1347. "version": "v1.0.0",
  1348. "source": {
  1349. "type": "git",
  1350. "url": "https://github.com/doctrine/deprecations.git",
  1351. "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de"
  1352. },
  1353. "dist": {
  1354. "type": "zip",
  1355. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de",
  1356. "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de",
  1357. "shasum": "",
  1358. "mirrors": [
  1359. {
  1360. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1361. "preferred": true
  1362. }
  1363. ]
  1364. },
  1365. "require": {
  1366. "php": "^7.1|^8.0"
  1367. },
  1368. "require-dev": {
  1369. "doctrine/coding-standard": "^9",
  1370. "phpunit/phpunit": "^7.5|^8.5|^9.5",
  1371. "psr/log": "^1|^2|^3"
  1372. },
  1373. "suggest": {
  1374. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  1375. },
  1376. "type": "library",
  1377. "autoload": {
  1378. "psr-4": {
  1379. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  1380. }
  1381. },
  1382. "notification-url": "https://packagist.org/downloads/",
  1383. "license": [
  1384. "MIT"
  1385. ],
  1386. "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.",
  1387. "homepage": "https://www.doctrine-project.org/",
  1388. "support": {
  1389. "issues": "https://github.com/doctrine/deprecations/issues",
  1390. "source": "https://github.com/doctrine/deprecations/tree/v1.0.0"
  1391. },
  1392. "time": "2022-05-02T15:47:09+00:00"
  1393. },
  1394. {
  1395. "name": "doctrine/event-manager",
  1396. "version": "1.1.1",
  1397. "source": {
  1398. "type": "git",
  1399. "url": "https://github.com/doctrine/event-manager.git",
  1400. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  1401. },
  1402. "dist": {
  1403. "type": "zip",
  1404. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  1405. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  1406. "shasum": "",
  1407. "mirrors": [
  1408. {
  1409. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1410. "preferred": true
  1411. }
  1412. ]
  1413. },
  1414. "require": {
  1415. "php": "^7.1 || ^8.0"
  1416. },
  1417. "conflict": {
  1418. "doctrine/common": "<2.9@dev"
  1419. },
  1420. "require-dev": {
  1421. "doctrine/coding-standard": "^6.0",
  1422. "phpunit/phpunit": "^7.0"
  1423. },
  1424. "type": "library",
  1425. "extra": {
  1426. "branch-alias": {
  1427. "dev-master": "1.0.x-dev"
  1428. }
  1429. },
  1430. "autoload": {
  1431. "psr-4": {
  1432. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1433. }
  1434. },
  1435. "notification-url": "https://packagist.org/downloads/",
  1436. "license": [
  1437. "MIT"
  1438. ],
  1439. "authors": [
  1440. {
  1441. "name": "Guilherme Blanco",
  1442. "email": "guilhermeblanco@gmail.com"
  1443. },
  1444. {
  1445. "name": "Roman Borschel",
  1446. "email": "roman@code-factory.org"
  1447. },
  1448. {
  1449. "name": "Benjamin Eberlei",
  1450. "email": "kontakt@beberlei.de"
  1451. },
  1452. {
  1453. "name": "Jonathan Wage",
  1454. "email": "jonwage@gmail.com"
  1455. },
  1456. {
  1457. "name": "Johannes Schmitt",
  1458. "email": "schmittjoh@gmail.com"
  1459. },
  1460. {
  1461. "name": "Marco Pivetta",
  1462. "email": "ocramius@gmail.com"
  1463. }
  1464. ],
  1465. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  1466. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  1467. "keywords": [
  1468. "event",
  1469. "event dispatcher",
  1470. "event manager",
  1471. "event system",
  1472. "events"
  1473. ],
  1474. "support": {
  1475. "issues": "https://github.com/doctrine/event-manager/issues",
  1476. "source": "https://github.com/doctrine/event-manager/tree/1.1.x"
  1477. },
  1478. "funding": [
  1479. {
  1480. "url": "https://www.doctrine-project.org/sponsorship.html",
  1481. "type": "custom"
  1482. },
  1483. {
  1484. "url": "https://www.patreon.com/phpdoctrine",
  1485. "type": "patreon"
  1486. },
  1487. {
  1488. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  1489. "type": "tidelift"
  1490. }
  1491. ],
  1492. "time": "2020-05-29T18:28:51+00:00"
  1493. },
  1494. {
  1495. "name": "doctrine/inflector",
  1496. "version": "2.0.4",
  1497. "source": {
  1498. "type": "git",
  1499. "url": "https://github.com/doctrine/inflector.git",
  1500. "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89"
  1501. },
  1502. "dist": {
  1503. "type": "zip",
  1504. "url": "https://api.github.com/repos/doctrine/inflector/zipball/8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
  1505. "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
  1506. "shasum": "",
  1507. "mirrors": [
  1508. {
  1509. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1510. "preferred": true
  1511. }
  1512. ]
  1513. },
  1514. "require": {
  1515. "php": "^7.2 || ^8.0"
  1516. },
  1517. "require-dev": {
  1518. "doctrine/coding-standard": "^8.2",
  1519. "phpstan/phpstan": "^0.12",
  1520. "phpstan/phpstan-phpunit": "^0.12",
  1521. "phpstan/phpstan-strict-rules": "^0.12",
  1522. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  1523. "vimeo/psalm": "^4.10"
  1524. },
  1525. "type": "library",
  1526. "autoload": {
  1527. "psr-4": {
  1528. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  1529. }
  1530. },
  1531. "notification-url": "https://packagist.org/downloads/",
  1532. "license": [
  1533. "MIT"
  1534. ],
  1535. "authors": [
  1536. {
  1537. "name": "Guilherme Blanco",
  1538. "email": "guilhermeblanco@gmail.com"
  1539. },
  1540. {
  1541. "name": "Roman Borschel",
  1542. "email": "roman@code-factory.org"
  1543. },
  1544. {
  1545. "name": "Benjamin Eberlei",
  1546. "email": "kontakt@beberlei.de"
  1547. },
  1548. {
  1549. "name": "Jonathan Wage",
  1550. "email": "jonwage@gmail.com"
  1551. },
  1552. {
  1553. "name": "Johannes Schmitt",
  1554. "email": "schmittjoh@gmail.com"
  1555. }
  1556. ],
  1557. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1558. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1559. "keywords": [
  1560. "inflection",
  1561. "inflector",
  1562. "lowercase",
  1563. "manipulation",
  1564. "php",
  1565. "plural",
  1566. "singular",
  1567. "strings",
  1568. "uppercase",
  1569. "words"
  1570. ],
  1571. "support": {
  1572. "issues": "https://github.com/doctrine/inflector/issues",
  1573. "source": "https://github.com/doctrine/inflector/tree/2.0.4"
  1574. },
  1575. "funding": [
  1576. {
  1577. "url": "https://www.doctrine-project.org/sponsorship.html",
  1578. "type": "custom"
  1579. },
  1580. {
  1581. "url": "https://www.patreon.com/phpdoctrine",
  1582. "type": "patreon"
  1583. },
  1584. {
  1585. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1586. "type": "tidelift"
  1587. }
  1588. ],
  1589. "time": "2021-10-22T20:16:43+00:00"
  1590. },
  1591. {
  1592. "name": "doctrine/lexer",
  1593. "version": "1.2.3",
  1594. "source": {
  1595. "type": "git",
  1596. "url": "https://github.com/doctrine/lexer.git",
  1597. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  1598. },
  1599. "dist": {
  1600. "type": "zip",
  1601. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1602. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1603. "shasum": "",
  1604. "mirrors": [
  1605. {
  1606. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1607. "preferred": true
  1608. }
  1609. ]
  1610. },
  1611. "require": {
  1612. "php": "^7.1 || ^8.0"
  1613. },
  1614. "require-dev": {
  1615. "doctrine/coding-standard": "^9.0",
  1616. "phpstan/phpstan": "^1.3",
  1617. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1618. "vimeo/psalm": "^4.11"
  1619. },
  1620. "type": "library",
  1621. "autoload": {
  1622. "psr-4": {
  1623. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1624. }
  1625. },
  1626. "notification-url": "https://packagist.org/downloads/",
  1627. "license": [
  1628. "MIT"
  1629. ],
  1630. "authors": [
  1631. {
  1632. "name": "Guilherme Blanco",
  1633. "email": "guilhermeblanco@gmail.com"
  1634. },
  1635. {
  1636. "name": "Roman Borschel",
  1637. "email": "roman@code-factory.org"
  1638. },
  1639. {
  1640. "name": "Johannes Schmitt",
  1641. "email": "schmittjoh@gmail.com"
  1642. }
  1643. ],
  1644. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1645. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1646. "keywords": [
  1647. "annotations",
  1648. "docblock",
  1649. "lexer",
  1650. "parser",
  1651. "php"
  1652. ],
  1653. "support": {
  1654. "issues": "https://github.com/doctrine/lexer/issues",
  1655. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  1656. },
  1657. "funding": [
  1658. {
  1659. "url": "https://www.doctrine-project.org/sponsorship.html",
  1660. "type": "custom"
  1661. },
  1662. {
  1663. "url": "https://www.patreon.com/phpdoctrine",
  1664. "type": "patreon"
  1665. },
  1666. {
  1667. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1668. "type": "tidelift"
  1669. }
  1670. ],
  1671. "time": "2022-02-28T11:07:21+00:00"
  1672. },
  1673. {
  1674. "name": "dragonmantank/cron-expression",
  1675. "version": "v3.3.1",
  1676. "source": {
  1677. "type": "git",
  1678. "url": "https://github.com/dragonmantank/cron-expression.git",
  1679. "reference": "be85b3f05b46c39bbc0d95f6c071ddff669510fa"
  1680. },
  1681. "dist": {
  1682. "type": "zip",
  1683. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/be85b3f05b46c39bbc0d95f6c071ddff669510fa",
  1684. "reference": "be85b3f05b46c39bbc0d95f6c071ddff669510fa",
  1685. "shasum": "",
  1686. "mirrors": [
  1687. {
  1688. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1689. "preferred": true
  1690. }
  1691. ]
  1692. },
  1693. "require": {
  1694. "php": "^7.2|^8.0",
  1695. "webmozart/assert": "^1.0"
  1696. },
  1697. "replace": {
  1698. "mtdowling/cron-expression": "^1.0"
  1699. },
  1700. "require-dev": {
  1701. "phpstan/extension-installer": "^1.0",
  1702. "phpstan/phpstan": "^1.0",
  1703. "phpstan/phpstan-webmozart-assert": "^1.0",
  1704. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  1705. },
  1706. "type": "library",
  1707. "autoload": {
  1708. "psr-4": {
  1709. "Cron\\": "src/Cron/"
  1710. }
  1711. },
  1712. "notification-url": "https://packagist.org/downloads/",
  1713. "license": [
  1714. "MIT"
  1715. ],
  1716. "authors": [
  1717. {
  1718. "name": "Chris Tankersley",
  1719. "email": "chris@ctankersley.com",
  1720. "homepage": "https://github.com/dragonmantank"
  1721. }
  1722. ],
  1723. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1724. "keywords": [
  1725. "cron",
  1726. "schedule"
  1727. ],
  1728. "support": {
  1729. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  1730. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.1"
  1731. },
  1732. "funding": [
  1733. {
  1734. "url": "https://github.com/dragonmantank",
  1735. "type": "github"
  1736. }
  1737. ],
  1738. "time": "2022-01-18T15:43:28+00:00"
  1739. },
  1740. {
  1741. "name": "easywechat-composer/easywechat-composer",
  1742. "version": "1.4.1",
  1743. "source": {
  1744. "type": "git",
  1745. "url": "https://github.com/mingyoung/easywechat-composer.git",
  1746. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd"
  1747. },
  1748. "dist": {
  1749. "type": "zip",
  1750. "url": "https://api.github.com/repos/mingyoung/easywechat-composer/zipball/3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  1751. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  1752. "shasum": "",
  1753. "mirrors": [
  1754. {
  1755. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1756. "preferred": true
  1757. }
  1758. ]
  1759. },
  1760. "require": {
  1761. "composer-plugin-api": "^1.0 || ^2.0",
  1762. "php": ">=7.0"
  1763. },
  1764. "require-dev": {
  1765. "composer/composer": "^1.0 || ^2.0",
  1766. "phpunit/phpunit": "^6.5 || ^7.0"
  1767. },
  1768. "type": "composer-plugin",
  1769. "extra": {
  1770. "class": "EasyWeChatComposer\\Plugin"
  1771. },
  1772. "autoload": {
  1773. "psr-4": {
  1774. "EasyWeChatComposer\\": "src/"
  1775. }
  1776. },
  1777. "notification-url": "https://packagist.org/downloads/",
  1778. "license": [
  1779. "MIT"
  1780. ],
  1781. "authors": [
  1782. {
  1783. "name": "张铭阳",
  1784. "email": "mingyoungcheung@gmail.com"
  1785. }
  1786. ],
  1787. "description": "The composer plugin for EasyWeChat",
  1788. "support": {
  1789. "issues": "https://github.com/mingyoung/easywechat-composer/issues",
  1790. "source": "https://github.com/mingyoung/easywechat-composer/tree/1.4.1"
  1791. },
  1792. "time": "2021-07-05T04:03:22+00:00"
  1793. },
  1794. {
  1795. "name": "egulias/email-validator",
  1796. "version": "2.1.25",
  1797. "source": {
  1798. "type": "git",
  1799. "url": "https://github.com/egulias/EmailValidator.git",
  1800. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  1801. },
  1802. "dist": {
  1803. "type": "zip",
  1804. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1805. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1806. "shasum": "",
  1807. "mirrors": [
  1808. {
  1809. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1810. "preferred": true
  1811. }
  1812. ]
  1813. },
  1814. "require": {
  1815. "doctrine/lexer": "^1.0.1",
  1816. "php": ">=5.5",
  1817. "symfony/polyfill-intl-idn": "^1.10"
  1818. },
  1819. "require-dev": {
  1820. "dominicsayers/isemail": "^3.0.7",
  1821. "phpunit/phpunit": "^4.8.36|^7.5.15",
  1822. "satooshi/php-coveralls": "^1.0.1"
  1823. },
  1824. "suggest": {
  1825. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1826. },
  1827. "type": "library",
  1828. "extra": {
  1829. "branch-alias": {
  1830. "dev-master": "2.1.x-dev"
  1831. }
  1832. },
  1833. "autoload": {
  1834. "psr-4": {
  1835. "Egulias\\EmailValidator\\": "src"
  1836. }
  1837. },
  1838. "notification-url": "https://packagist.org/downloads/",
  1839. "license": [
  1840. "MIT"
  1841. ],
  1842. "authors": [
  1843. {
  1844. "name": "Eduardo Gulias Davis"
  1845. }
  1846. ],
  1847. "description": "A library for validating emails against several RFCs",
  1848. "homepage": "https://github.com/egulias/EmailValidator",
  1849. "keywords": [
  1850. "email",
  1851. "emailvalidation",
  1852. "emailvalidator",
  1853. "validation",
  1854. "validator"
  1855. ],
  1856. "support": {
  1857. "issues": "https://github.com/egulias/EmailValidator/issues",
  1858. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  1859. },
  1860. "funding": [
  1861. {
  1862. "url": "https://github.com/egulias",
  1863. "type": "github"
  1864. }
  1865. ],
  1866. "time": "2020-12-29T14:50:06+00:00"
  1867. },
  1868. {
  1869. "name": "fruitcake/laravel-cors",
  1870. "version": "v2.2.0",
  1871. "source": {
  1872. "type": "git",
  1873. "url": "https://github.com/fruitcake/laravel-cors.git",
  1874. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534"
  1875. },
  1876. "dist": {
  1877. "type": "zip",
  1878. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/783a74f5e3431d7b9805be8afb60fd0a8f743534",
  1879. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534",
  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. "asm89/stack-cors": "^2.0.1",
  1890. "illuminate/contracts": "^6|^7|^8|^9",
  1891. "illuminate/support": "^6|^7|^8|^9",
  1892. "php": ">=7.2"
  1893. },
  1894. "require-dev": {
  1895. "laravel/framework": "^6|^7.24|^8",
  1896. "orchestra/testbench-dusk": "^4|^5|^6|^7",
  1897. "phpunit/phpunit": "^6|^7|^8|^9",
  1898. "squizlabs/php_codesniffer": "^3.5"
  1899. },
  1900. "type": "library",
  1901. "extra": {
  1902. "branch-alias": {
  1903. "dev-master": "2.1-dev"
  1904. },
  1905. "laravel": {
  1906. "providers": [
  1907. "Fruitcake\\Cors\\CorsServiceProvider"
  1908. ]
  1909. }
  1910. },
  1911. "autoload": {
  1912. "psr-4": {
  1913. "Fruitcake\\Cors\\": "src/"
  1914. }
  1915. },
  1916. "notification-url": "https://packagist.org/downloads/",
  1917. "license": [
  1918. "MIT"
  1919. ],
  1920. "authors": [
  1921. {
  1922. "name": "Fruitcake",
  1923. "homepage": "https://fruitcake.nl"
  1924. },
  1925. {
  1926. "name": "Barry vd. Heuvel",
  1927. "email": "barryvdh@gmail.com"
  1928. }
  1929. ],
  1930. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  1931. "keywords": [
  1932. "api",
  1933. "cors",
  1934. "crossdomain",
  1935. "laravel"
  1936. ],
  1937. "support": {
  1938. "issues": "https://github.com/fruitcake/laravel-cors/issues",
  1939. "source": "https://github.com/fruitcake/laravel-cors/tree/v2.2.0"
  1940. },
  1941. "funding": [
  1942. {
  1943. "url": "https://fruitcake.nl",
  1944. "type": "custom"
  1945. },
  1946. {
  1947. "url": "https://github.com/barryvdh",
  1948. "type": "github"
  1949. }
  1950. ],
  1951. "time": "2022-02-23T14:25:13+00:00"
  1952. },
  1953. {
  1954. "name": "giggsey/libphonenumber-for-php",
  1955. "version": "8.12.50",
  1956. "source": {
  1957. "type": "git",
  1958. "url": "https://github.com/giggsey/libphonenumber-for-php.git",
  1959. "reference": "526c4b7f6d5e173770d8645e76340d7eb25dc348"
  1960. },
  1961. "dist": {
  1962. "type": "zip",
  1963. "url": "https://api.github.com/repos/giggsey/libphonenumber-for-php/zipball/526c4b7f6d5e173770d8645e76340d7eb25dc348",
  1964. "reference": "526c4b7f6d5e173770d8645e76340d7eb25dc348",
  1965. "shasum": "",
  1966. "mirrors": [
  1967. {
  1968. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1969. "preferred": true
  1970. }
  1971. ]
  1972. },
  1973. "require": {
  1974. "giggsey/locale": "^1.7|^2.0",
  1975. "php": ">=5.3.2",
  1976. "symfony/polyfill-mbstring": "^1.17"
  1977. },
  1978. "require-dev": {
  1979. "pear/pear-core-minimal": "^1.9",
  1980. "pear/pear_exception": "^1.0",
  1981. "pear/versioncontrol_git": "^0.5",
  1982. "phing/phing": "^2.7",
  1983. "php-coveralls/php-coveralls": "^1.0|^2.0",
  1984. "symfony/console": "^2.8|^3.0|^v4.4|^v5.2",
  1985. "symfony/phpunit-bridge": "^4.2 || ^5"
  1986. },
  1987. "type": "library",
  1988. "extra": {
  1989. "branch-alias": {
  1990. "dev-master": "8.x-dev"
  1991. }
  1992. },
  1993. "autoload": {
  1994. "psr-4": {
  1995. "libphonenumber\\": "src/"
  1996. },
  1997. "exclude-from-classmap": [
  1998. "/src/data/",
  1999. "/src/carrier/data/",
  2000. "/src/geocoding/data/",
  2001. "/src/timezone/data/"
  2002. ]
  2003. },
  2004. "notification-url": "https://packagist.org/downloads/",
  2005. "license": [
  2006. "Apache-2.0"
  2007. ],
  2008. "authors": [
  2009. {
  2010. "name": "Joshua Gigg",
  2011. "email": "giggsey@gmail.com",
  2012. "homepage": "https://giggsey.com/"
  2013. }
  2014. ],
  2015. "description": "PHP Port of Google's libphonenumber",
  2016. "homepage": "https://github.com/giggsey/libphonenumber-for-php",
  2017. "keywords": [
  2018. "geocoding",
  2019. "geolocation",
  2020. "libphonenumber",
  2021. "mobile",
  2022. "phonenumber",
  2023. "validation"
  2024. ],
  2025. "support": {
  2026. "irc": "irc://irc.appliedirc.com/lobby",
  2027. "issues": "https://github.com/giggsey/libphonenumber-for-php/issues",
  2028. "source": "https://github.com/giggsey/libphonenumber-for-php"
  2029. },
  2030. "time": "2022-06-09T14:55:00+00:00"
  2031. },
  2032. {
  2033. "name": "giggsey/locale",
  2034. "version": "2.2",
  2035. "source": {
  2036. "type": "git",
  2037. "url": "https://github.com/giggsey/Locale.git",
  2038. "reference": "9c1dca769253f6a3e81f9a5c167f53b6a54ab635"
  2039. },
  2040. "dist": {
  2041. "type": "zip",
  2042. "url": "https://api.github.com/repos/giggsey/Locale/zipball/9c1dca769253f6a3e81f9a5c167f53b6a54ab635",
  2043. "reference": "9c1dca769253f6a3e81f9a5c167f53b6a54ab635",
  2044. "shasum": "",
  2045. "mirrors": [
  2046. {
  2047. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2048. "preferred": true
  2049. }
  2050. ]
  2051. },
  2052. "require": {
  2053. "php": ">=7.2"
  2054. },
  2055. "require-dev": {
  2056. "ext-json": "*",
  2057. "pear/pear-core-minimal": "^1.9",
  2058. "pear/pear_exception": "^1.0",
  2059. "pear/versioncontrol_git": "^0.5",
  2060. "phing/phing": "^2.7",
  2061. "php-coveralls/php-coveralls": "^2.0",
  2062. "phpunit/phpunit": "^8.5|^9.5",
  2063. "symfony/console": "^5.0",
  2064. "symfony/filesystem": "^5.0",
  2065. "symfony/finder": "^5.0",
  2066. "symfony/process": "^5.0"
  2067. },
  2068. "type": "library",
  2069. "autoload": {
  2070. "psr-4": {
  2071. "Giggsey\\Locale\\": "src/"
  2072. }
  2073. },
  2074. "notification-url": "https://packagist.org/downloads/",
  2075. "license": [
  2076. "MIT"
  2077. ],
  2078. "authors": [
  2079. {
  2080. "name": "Joshua Gigg",
  2081. "email": "giggsey@gmail.com",
  2082. "homepage": "https://giggsey.com/"
  2083. }
  2084. ],
  2085. "description": "Locale functions required by libphonenumber-for-php",
  2086. "support": {
  2087. "issues": "https://github.com/giggsey/Locale/issues",
  2088. "source": "https://github.com/giggsey/Locale/tree/2.2"
  2089. },
  2090. "time": "2022-04-06T07:33:59+00:00"
  2091. },
  2092. {
  2093. "name": "graham-campbell/result-type",
  2094. "version": "v1.0.4",
  2095. "source": {
  2096. "type": "git",
  2097. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  2098. "reference": "0690bde05318336c7221785f2a932467f98b64ca"
  2099. },
  2100. "dist": {
  2101. "type": "zip",
  2102. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/0690bde05318336c7221785f2a932467f98b64ca",
  2103. "reference": "0690bde05318336c7221785f2a932467f98b64ca",
  2104. "shasum": "",
  2105. "mirrors": [
  2106. {
  2107. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2108. "preferred": true
  2109. }
  2110. ]
  2111. },
  2112. "require": {
  2113. "php": "^7.0 || ^8.0",
  2114. "phpoption/phpoption": "^1.8"
  2115. },
  2116. "require-dev": {
  2117. "phpunit/phpunit": "^6.5.14 || ^7.5.20 || ^8.5.19 || ^9.5.8"
  2118. },
  2119. "type": "library",
  2120. "autoload": {
  2121. "psr-4": {
  2122. "GrahamCampbell\\ResultType\\": "src/"
  2123. }
  2124. },
  2125. "notification-url": "https://packagist.org/downloads/",
  2126. "license": [
  2127. "MIT"
  2128. ],
  2129. "authors": [
  2130. {
  2131. "name": "Graham Campbell",
  2132. "email": "hello@gjcampbell.co.uk",
  2133. "homepage": "https://github.com/GrahamCampbell"
  2134. }
  2135. ],
  2136. "description": "An Implementation Of The Result Type",
  2137. "keywords": [
  2138. "Graham Campbell",
  2139. "GrahamCampbell",
  2140. "Result Type",
  2141. "Result-Type",
  2142. "result"
  2143. ],
  2144. "support": {
  2145. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  2146. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.0.4"
  2147. },
  2148. "funding": [
  2149. {
  2150. "url": "https://github.com/GrahamCampbell",
  2151. "type": "github"
  2152. },
  2153. {
  2154. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  2155. "type": "tidelift"
  2156. }
  2157. ],
  2158. "time": "2021-11-21T21:41:47+00:00"
  2159. },
  2160. {
  2161. "name": "guzzlehttp/guzzle",
  2162. "version": "7.4.5",
  2163. "source": {
  2164. "type": "git",
  2165. "url": "https://github.com/guzzle/guzzle.git",
  2166. "reference": "1dd98b0564cb3f6bd16ce683cb755f94c10fbd82"
  2167. },
  2168. "dist": {
  2169. "type": "zip",
  2170. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/1dd98b0564cb3f6bd16ce683cb755f94c10fbd82",
  2171. "reference": "1dd98b0564cb3f6bd16ce683cb755f94c10fbd82",
  2172. "shasum": "",
  2173. "mirrors": [
  2174. {
  2175. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2176. "preferred": true
  2177. }
  2178. ]
  2179. },
  2180. "require": {
  2181. "ext-json": "*",
  2182. "guzzlehttp/promises": "^1.5",
  2183. "guzzlehttp/psr7": "^1.9 || ^2.4",
  2184. "php": "^7.2.5 || ^8.0",
  2185. "psr/http-client": "^1.0",
  2186. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  2187. },
  2188. "provide": {
  2189. "psr/http-client-implementation": "1.0"
  2190. },
  2191. "require-dev": {
  2192. "bamarni/composer-bin-plugin": "^1.4.1",
  2193. "ext-curl": "*",
  2194. "php-http/client-integration-tests": "^3.0",
  2195. "phpunit/phpunit": "^8.5.5 || ^9.3.5",
  2196. "psr/log": "^1.1 || ^2.0 || ^3.0"
  2197. },
  2198. "suggest": {
  2199. "ext-curl": "Required for CURL handler support",
  2200. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  2201. "psr/log": "Required for using the Log middleware"
  2202. },
  2203. "type": "library",
  2204. "extra": {
  2205. "branch-alias": {
  2206. "dev-master": "7.4-dev"
  2207. }
  2208. },
  2209. "autoload": {
  2210. "files": [
  2211. "src/functions_include.php"
  2212. ],
  2213. "psr-4": {
  2214. "GuzzleHttp\\": "src/"
  2215. }
  2216. },
  2217. "notification-url": "https://packagist.org/downloads/",
  2218. "license": [
  2219. "MIT"
  2220. ],
  2221. "authors": [
  2222. {
  2223. "name": "Graham Campbell",
  2224. "email": "hello@gjcampbell.co.uk",
  2225. "homepage": "https://github.com/GrahamCampbell"
  2226. },
  2227. {
  2228. "name": "Michael Dowling",
  2229. "email": "mtdowling@gmail.com",
  2230. "homepage": "https://github.com/mtdowling"
  2231. },
  2232. {
  2233. "name": "Jeremy Lindblom",
  2234. "email": "jeremeamia@gmail.com",
  2235. "homepage": "https://github.com/jeremeamia"
  2236. },
  2237. {
  2238. "name": "George Mponos",
  2239. "email": "gmponos@gmail.com",
  2240. "homepage": "https://github.com/gmponos"
  2241. },
  2242. {
  2243. "name": "Tobias Nyholm",
  2244. "email": "tobias.nyholm@gmail.com",
  2245. "homepage": "https://github.com/Nyholm"
  2246. },
  2247. {
  2248. "name": "Márk Sági-Kazár",
  2249. "email": "mark.sagikazar@gmail.com",
  2250. "homepage": "https://github.com/sagikazarmark"
  2251. },
  2252. {
  2253. "name": "Tobias Schultze",
  2254. "email": "webmaster@tubo-world.de",
  2255. "homepage": "https://github.com/Tobion"
  2256. }
  2257. ],
  2258. "description": "Guzzle is a PHP HTTP client library",
  2259. "keywords": [
  2260. "client",
  2261. "curl",
  2262. "framework",
  2263. "http",
  2264. "http client",
  2265. "psr-18",
  2266. "psr-7",
  2267. "rest",
  2268. "web service"
  2269. ],
  2270. "support": {
  2271. "issues": "https://github.com/guzzle/guzzle/issues",
  2272. "source": "https://github.com/guzzle/guzzle/tree/7.4.5"
  2273. },
  2274. "funding": [
  2275. {
  2276. "url": "https://github.com/GrahamCampbell",
  2277. "type": "github"
  2278. },
  2279. {
  2280. "url": "https://github.com/Nyholm",
  2281. "type": "github"
  2282. },
  2283. {
  2284. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  2285. "type": "tidelift"
  2286. }
  2287. ],
  2288. "time": "2022-06-20T22:16:13+00:00"
  2289. },
  2290. {
  2291. "name": "guzzlehttp/promises",
  2292. "version": "1.5.1",
  2293. "source": {
  2294. "type": "git",
  2295. "url": "https://github.com/guzzle/promises.git",
  2296. "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da"
  2297. },
  2298. "dist": {
  2299. "type": "zip",
  2300. "url": "https://api.github.com/repos/guzzle/promises/zipball/fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
  2301. "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
  2302. "shasum": "",
  2303. "mirrors": [
  2304. {
  2305. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2306. "preferred": true
  2307. }
  2308. ]
  2309. },
  2310. "require": {
  2311. "php": ">=5.5"
  2312. },
  2313. "require-dev": {
  2314. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  2315. },
  2316. "type": "library",
  2317. "extra": {
  2318. "branch-alias": {
  2319. "dev-master": "1.5-dev"
  2320. }
  2321. },
  2322. "autoload": {
  2323. "files": [
  2324. "src/functions_include.php"
  2325. ],
  2326. "psr-4": {
  2327. "GuzzleHttp\\Promise\\": "src/"
  2328. }
  2329. },
  2330. "notification-url": "https://packagist.org/downloads/",
  2331. "license": [
  2332. "MIT"
  2333. ],
  2334. "authors": [
  2335. {
  2336. "name": "Graham Campbell",
  2337. "email": "hello@gjcampbell.co.uk",
  2338. "homepage": "https://github.com/GrahamCampbell"
  2339. },
  2340. {
  2341. "name": "Michael Dowling",
  2342. "email": "mtdowling@gmail.com",
  2343. "homepage": "https://github.com/mtdowling"
  2344. },
  2345. {
  2346. "name": "Tobias Nyholm",
  2347. "email": "tobias.nyholm@gmail.com",
  2348. "homepage": "https://github.com/Nyholm"
  2349. },
  2350. {
  2351. "name": "Tobias Schultze",
  2352. "email": "webmaster@tubo-world.de",
  2353. "homepage": "https://github.com/Tobion"
  2354. }
  2355. ],
  2356. "description": "Guzzle promises library",
  2357. "keywords": [
  2358. "promise"
  2359. ],
  2360. "support": {
  2361. "issues": "https://github.com/guzzle/promises/issues",
  2362. "source": "https://github.com/guzzle/promises/tree/1.5.1"
  2363. },
  2364. "funding": [
  2365. {
  2366. "url": "https://github.com/GrahamCampbell",
  2367. "type": "github"
  2368. },
  2369. {
  2370. "url": "https://github.com/Nyholm",
  2371. "type": "github"
  2372. },
  2373. {
  2374. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  2375. "type": "tidelift"
  2376. }
  2377. ],
  2378. "time": "2021-10-22T20:56:57+00:00"
  2379. },
  2380. {
  2381. "name": "guzzlehttp/psr7",
  2382. "version": "2.4.0",
  2383. "source": {
  2384. "type": "git",
  2385. "url": "https://github.com/guzzle/psr7.git",
  2386. "reference": "13388f00956b1503577598873fffb5ae994b5737"
  2387. },
  2388. "dist": {
  2389. "type": "zip",
  2390. "url": "https://api.github.com/repos/guzzle/psr7/zipball/13388f00956b1503577598873fffb5ae994b5737",
  2391. "reference": "13388f00956b1503577598873fffb5ae994b5737",
  2392. "shasum": "",
  2393. "mirrors": [
  2394. {
  2395. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2396. "preferred": true
  2397. }
  2398. ]
  2399. },
  2400. "require": {
  2401. "php": "^7.2.5 || ^8.0",
  2402. "psr/http-factory": "^1.0",
  2403. "psr/http-message": "^1.0",
  2404. "ralouphie/getallheaders": "^3.0"
  2405. },
  2406. "provide": {
  2407. "psr/http-factory-implementation": "1.0",
  2408. "psr/http-message-implementation": "1.0"
  2409. },
  2410. "require-dev": {
  2411. "bamarni/composer-bin-plugin": "^1.4.1",
  2412. "http-interop/http-factory-tests": "^0.9",
  2413. "phpunit/phpunit": "^8.5.8 || ^9.3.10"
  2414. },
  2415. "suggest": {
  2416. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  2417. },
  2418. "type": "library",
  2419. "extra": {
  2420. "branch-alias": {
  2421. "dev-master": "2.4-dev"
  2422. }
  2423. },
  2424. "autoload": {
  2425. "psr-4": {
  2426. "GuzzleHttp\\Psr7\\": "src/"
  2427. }
  2428. },
  2429. "notification-url": "https://packagist.org/downloads/",
  2430. "license": [
  2431. "MIT"
  2432. ],
  2433. "authors": [
  2434. {
  2435. "name": "Graham Campbell",
  2436. "email": "hello@gjcampbell.co.uk",
  2437. "homepage": "https://github.com/GrahamCampbell"
  2438. },
  2439. {
  2440. "name": "Michael Dowling",
  2441. "email": "mtdowling@gmail.com",
  2442. "homepage": "https://github.com/mtdowling"
  2443. },
  2444. {
  2445. "name": "George Mponos",
  2446. "email": "gmponos@gmail.com",
  2447. "homepage": "https://github.com/gmponos"
  2448. },
  2449. {
  2450. "name": "Tobias Nyholm",
  2451. "email": "tobias.nyholm@gmail.com",
  2452. "homepage": "https://github.com/Nyholm"
  2453. },
  2454. {
  2455. "name": "Márk Sági-Kazár",
  2456. "email": "mark.sagikazar@gmail.com",
  2457. "homepage": "https://github.com/sagikazarmark"
  2458. },
  2459. {
  2460. "name": "Tobias Schultze",
  2461. "email": "webmaster@tubo-world.de",
  2462. "homepage": "https://github.com/Tobion"
  2463. },
  2464. {
  2465. "name": "Márk Sági-Kazár",
  2466. "email": "mark.sagikazar@gmail.com",
  2467. "homepage": "https://sagikazarmark.hu"
  2468. }
  2469. ],
  2470. "description": "PSR-7 message implementation that also provides common utility methods",
  2471. "keywords": [
  2472. "http",
  2473. "message",
  2474. "psr-7",
  2475. "request",
  2476. "response",
  2477. "stream",
  2478. "uri",
  2479. "url"
  2480. ],
  2481. "support": {
  2482. "issues": "https://github.com/guzzle/psr7/issues",
  2483. "source": "https://github.com/guzzle/psr7/tree/2.4.0"
  2484. },
  2485. "funding": [
  2486. {
  2487. "url": "https://github.com/GrahamCampbell",
  2488. "type": "github"
  2489. },
  2490. {
  2491. "url": "https://github.com/Nyholm",
  2492. "type": "github"
  2493. },
  2494. {
  2495. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  2496. "type": "tidelift"
  2497. }
  2498. ],
  2499. "time": "2022-06-20T21:43:11+00:00"
  2500. },
  2501. {
  2502. "name": "h4cc/wkhtmltopdf-amd64",
  2503. "version": "0.12.4",
  2504. "source": {
  2505. "type": "git",
  2506. "url": "https://github.com/h4cc/wkhtmltopdf-amd64.git",
  2507. "reference": "4e2ab2d032a5d7fbe2a741de8b10b8989523c95b"
  2508. },
  2509. "dist": {
  2510. "type": "zip",
  2511. "url": "https://api.github.com/repos/h4cc/wkhtmltopdf-amd64/zipball/4e2ab2d032a5d7fbe2a741de8b10b8989523c95b",
  2512. "reference": "4e2ab2d032a5d7fbe2a741de8b10b8989523c95b",
  2513. "shasum": "",
  2514. "mirrors": [
  2515. {
  2516. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2517. "preferred": true
  2518. }
  2519. ]
  2520. },
  2521. "bin": [
  2522. "bin/wkhtmltopdf-amd64"
  2523. ],
  2524. "type": "library",
  2525. "autoload": {
  2526. "psr-4": {
  2527. "h4cc\\WKHTMLToPDF\\": ""
  2528. }
  2529. },
  2530. "notification-url": "https://packagist.org/downloads/",
  2531. "license": [
  2532. "LGPL Version 3"
  2533. ],
  2534. "authors": [
  2535. {
  2536. "name": "Julius Beckmann",
  2537. "email": "github@h4cc.de"
  2538. }
  2539. ],
  2540. "description": "Convert html to pdf using webkit (qtwebkit). Static linked linux binary for amd64 systems.",
  2541. "homepage": "http://wkhtmltopdf.org/",
  2542. "keywords": [
  2543. "binary",
  2544. "convert",
  2545. "pdf",
  2546. "snapshot",
  2547. "thumbnail",
  2548. "wkhtmltopdf"
  2549. ],
  2550. "support": {
  2551. "issues": "https://github.com/h4cc/wkhtmltopdf-amd64/issues",
  2552. "source": "https://github.com/h4cc/wkhtmltopdf-amd64/tree/master"
  2553. },
  2554. "time": "2018-01-15T06:57:33+00:00"
  2555. },
  2556. {
  2557. "name": "h4cc/wkhtmltopdf-i386",
  2558. "version": "0.12.4",
  2559. "source": {
  2560. "type": "git",
  2561. "url": "https://github.com/h4cc/wkhtmltopdf-i386.git",
  2562. "reference": "da14486ec8eba1873b026b56126ed02d2f2ae5e3"
  2563. },
  2564. "dist": {
  2565. "type": "zip",
  2566. "url": "https://api.github.com/repos/h4cc/wkhtmltopdf-i386/zipball/da14486ec8eba1873b026b56126ed02d2f2ae5e3",
  2567. "reference": "da14486ec8eba1873b026b56126ed02d2f2ae5e3",
  2568. "shasum": "",
  2569. "mirrors": [
  2570. {
  2571. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2572. "preferred": true
  2573. }
  2574. ]
  2575. },
  2576. "bin": [
  2577. "bin/wkhtmltopdf-i386"
  2578. ],
  2579. "type": "library",
  2580. "notification-url": "https://packagist.org/downloads/",
  2581. "license": [
  2582. "LGPL Version 3"
  2583. ],
  2584. "authors": [
  2585. {
  2586. "name": "Julius Beckmann",
  2587. "email": "github@h4cc.de"
  2588. }
  2589. ],
  2590. "description": "Convert html to pdf using webkit (qtwebkit). Static linked linux binary for i386 systems.",
  2591. "homepage": "http://wkhtmltopdf.org/",
  2592. "keywords": [
  2593. "binary",
  2594. "convert",
  2595. "pdf",
  2596. "snapshot",
  2597. "thumbnail",
  2598. "wkhtmltopdf"
  2599. ],
  2600. "support": {
  2601. "issues": "https://github.com/h4cc/wkhtmltopdf-i386/issues",
  2602. "source": "https://github.com/h4cc/wkhtmltopdf-i386/tree/master"
  2603. },
  2604. "time": "2018-01-15T07:18:15+00:00"
  2605. },
  2606. {
  2607. "name": "iidestiny/flysystem-oss",
  2608. "version": "2.7",
  2609. "source": {
  2610. "type": "git",
  2611. "url": "https://github.com/iiDestiny/flysystem-oss.git",
  2612. "reference": "c943ce550e973129955275bb17e8182fe8a74020"
  2613. },
  2614. "dist": {
  2615. "type": "zip",
  2616. "url": "https://api.github.com/repos/iiDestiny/flysystem-oss/zipball/c943ce550e973129955275bb17e8182fe8a74020",
  2617. "reference": "c943ce550e973129955275bb17e8182fe8a74020",
  2618. "shasum": "",
  2619. "mirrors": [
  2620. {
  2621. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2622. "preferred": true
  2623. }
  2624. ]
  2625. },
  2626. "require": {
  2627. "aliyuncs/oss-sdk-php": "^2.4",
  2628. "ext-curl": "*",
  2629. "ext-json": "*",
  2630. "ext-openssl": "*",
  2631. "league/flysystem": "^1.0",
  2632. "nesbot/carbon": "^1.24.1 || ^2.0",
  2633. "php": "^7.0 || ^8.0"
  2634. },
  2635. "require-dev": {
  2636. "mockery/mockery": "^1.2",
  2637. "phpunit/phpunit": "^6.5",
  2638. "symfony/var-dumper": "^3.4"
  2639. },
  2640. "type": "library",
  2641. "autoload": {
  2642. "psr-4": {
  2643. "Iidestiny\\Flysystem\\Oss\\": "src"
  2644. }
  2645. },
  2646. "notification-url": "https://packagist.org/downloads/",
  2647. "license": [
  2648. "MIT"
  2649. ],
  2650. "authors": [
  2651. {
  2652. "name": "iidestiny",
  2653. "email": "iidestiny@vip.qq.com"
  2654. }
  2655. ],
  2656. "description": "Flysystem adapter for the Oss storage.",
  2657. "keywords": [
  2658. "alioss",
  2659. "laravel",
  2660. "oss",
  2661. "阿里oss"
  2662. ],
  2663. "support": {
  2664. "issues": "https://github.com/iiDestiny/flysystem-oss/issues",
  2665. "source": "https://github.com/iiDestiny/flysystem-oss/tree/2.7"
  2666. },
  2667. "time": "2021-06-14T10:18:58+00:00"
  2668. },
  2669. {
  2670. "name": "iidestiny/laravel-filesystem-oss",
  2671. "version": "2.1",
  2672. "source": {
  2673. "type": "git",
  2674. "url": "https://github.com/iiDestiny/laravel-filesystem-oss.git",
  2675. "reference": "ae3cd6fd3cd727eedda0e2bcd0403a6d79fe4223"
  2676. },
  2677. "dist": {
  2678. "type": "zip",
  2679. "url": "https://api.github.com/repos/iiDestiny/laravel-filesystem-oss/zipball/ae3cd6fd3cd727eedda0e2bcd0403a6d79fe4223",
  2680. "reference": "ae3cd6fd3cd727eedda0e2bcd0403a6d79fe4223",
  2681. "shasum": "",
  2682. "mirrors": [
  2683. {
  2684. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2685. "preferred": true
  2686. }
  2687. ]
  2688. },
  2689. "require": {
  2690. "iidestiny/flysystem-oss": "~2.0",
  2691. "php": "^7.0|^8.0"
  2692. },
  2693. "type": "library",
  2694. "extra": {
  2695. "laravel": {
  2696. "providers": [
  2697. "Iidestiny\\LaravelFilesystemOss\\OssStorageServiceProvider"
  2698. ]
  2699. }
  2700. },
  2701. "autoload": {
  2702. "psr-4": {
  2703. "Iidestiny\\LaravelFilesystemOss\\": "src"
  2704. }
  2705. },
  2706. "notification-url": "https://packagist.org/downloads/",
  2707. "license": [
  2708. "MIT"
  2709. ],
  2710. "authors": [
  2711. {
  2712. "name": "iidestiny",
  2713. "email": "iidestiny@vip.qq.com"
  2714. }
  2715. ],
  2716. "description": "Oss storage filesystem for Laravel.",
  2717. "support": {
  2718. "issues": "https://github.com/iiDestiny/laravel-filesystem-oss/issues",
  2719. "source": "https://github.com/iiDestiny/laravel-filesystem-oss/tree/2.1"
  2720. },
  2721. "time": "2020-11-30T06:17:22+00:00"
  2722. },
  2723. {
  2724. "name": "jormin/laravel-ddoc",
  2725. "version": "v1.1.5",
  2726. "source": {
  2727. "type": "git",
  2728. "url": "https://github.com/jormin/laravel-ddoc.git",
  2729. "reference": "d7608d3395f7fd1085a3ce7b82441d2360769c77"
  2730. },
  2731. "dist": {
  2732. "type": "zip",
  2733. "url": "https://api.github.com/repos/jormin/laravel-ddoc/zipball/d7608d3395f7fd1085a3ce7b82441d2360769c77",
  2734. "reference": "d7608d3395f7fd1085a3ce7b82441d2360769c77",
  2735. "shasum": "",
  2736. "mirrors": [
  2737. {
  2738. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2739. "preferred": true
  2740. }
  2741. ]
  2742. },
  2743. "require": {
  2744. "barryvdh/laravel-snappy": "^0.4.0",
  2745. "h4cc/wkhtmltopdf-amd64": "0.12.x",
  2746. "h4cc/wkhtmltopdf-i386": "0.12.x",
  2747. "php": ">=5.6",
  2748. "wemersonjanuario/wkhtmltopdf-windows": "0.12.x"
  2749. },
  2750. "require-dev": {
  2751. "phpunit/phpunit": "~4.0||~5.0",
  2752. "squizlabs/php_codesniffer": "^2.3"
  2753. },
  2754. "type": "library",
  2755. "extra": {
  2756. "branch-alias": {
  2757. "dev-master": "1.1.x-dev"
  2758. },
  2759. "laravel": {
  2760. "providers": [
  2761. "Jormin\\DDoc\\DDocServiceProvider"
  2762. ]
  2763. }
  2764. },
  2765. "autoload": {
  2766. "psr-4": {
  2767. "Jormin\\DDoc\\": "src"
  2768. }
  2769. },
  2770. "notification-url": "https://packagist.org/downloads/",
  2771. "license": [
  2772. "MIT"
  2773. ],
  2774. "authors": [
  2775. {
  2776. "name": "Jormin",
  2777. "email": "jorminxee@gmail.com",
  2778. "homepage": "https://blog.lerzen.com",
  2779. "role": "Developer"
  2780. }
  2781. ],
  2782. "description": "每次开发项目时,总是会被要求提供数据字典,每次手动写文档太累了,所以写了这个扩展,自动读取数据库信息并显示在网页上,支持导出Html和PDF文件。",
  2783. "homepage": "https://github.com/jormin/laravel-ddoc",
  2784. "keywords": [
  2785. "DDoc",
  2786. "Jormin",
  2787. "laravel"
  2788. ],
  2789. "support": {
  2790. "issues": "https://github.com/jormin/laravel-ddoc/issues",
  2791. "source": "https://github.com/jormin/laravel-ddoc/tree/v1.1.5"
  2792. },
  2793. "time": "2021-09-07T04:26:43+00:00"
  2794. },
  2795. {
  2796. "name": "jpush/jpush",
  2797. "version": "v3.6.8",
  2798. "source": {
  2799. "type": "git",
  2800. "url": "https://github.com/jpush/jpush-api-php-client.git",
  2801. "reference": "ebb191e8854a35c3fb7a6626028b3a23132cbe2c"
  2802. },
  2803. "dist": {
  2804. "type": "zip",
  2805. "url": "https://api.github.com/repos/jpush/jpush-api-php-client/zipball/ebb191e8854a35c3fb7a6626028b3a23132cbe2c",
  2806. "reference": "ebb191e8854a35c3fb7a6626028b3a23132cbe2c",
  2807. "shasum": "",
  2808. "mirrors": [
  2809. {
  2810. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2811. "preferred": true
  2812. }
  2813. ]
  2814. },
  2815. "require": {
  2816. "ext-curl": "*",
  2817. "php": ">=5.3.3"
  2818. },
  2819. "require-dev": {
  2820. "phpunit/phpunit": "*"
  2821. },
  2822. "type": "library",
  2823. "autoload": {
  2824. "psr-4": {
  2825. "JPush\\": "src/JPush/"
  2826. }
  2827. },
  2828. "notification-url": "https://packagist.org/downloads/",
  2829. "license": [
  2830. "MIT"
  2831. ],
  2832. "authors": [
  2833. {
  2834. "name": "JPush",
  2835. "email": "support@jpush.cn",
  2836. "homepage": "https://www.jpush.cn/",
  2837. "role": "Developer"
  2838. }
  2839. ],
  2840. "description": "JPush API PHP Client",
  2841. "homepage": "https://github.com/jpush/jpush-api-php-client",
  2842. "support": {
  2843. "issues": "https://github.com/jpush/jpush-api-php-client/issues",
  2844. "source": "https://github.com/jpush/jpush-api-php-client/tree/v3.6.8"
  2845. },
  2846. "time": "2021-08-12T07:43:39+00:00"
  2847. },
  2848. {
  2849. "name": "knplabs/knp-snappy",
  2850. "version": "v1.4.1",
  2851. "source": {
  2852. "type": "git",
  2853. "url": "https://github.com/KnpLabs/snappy.git",
  2854. "reference": "5126fb5b335ec929a226314d40cd8dad497c3d67"
  2855. },
  2856. "dist": {
  2857. "type": "zip",
  2858. "url": "https://api.github.com/repos/KnpLabs/snappy/zipball/5126fb5b335ec929a226314d40cd8dad497c3d67",
  2859. "reference": "5126fb5b335ec929a226314d40cd8dad497c3d67",
  2860. "shasum": "",
  2861. "mirrors": [
  2862. {
  2863. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2864. "preferred": true
  2865. }
  2866. ]
  2867. },
  2868. "require": {
  2869. "php": ">=7.1",
  2870. "psr/log": "^1.0||^2.0||^3.0",
  2871. "symfony/process": "~3.4||~4.3||~5.0||~6.0"
  2872. },
  2873. "require-dev": {
  2874. "friendsofphp/php-cs-fixer": "^2.16||^3.0",
  2875. "pedrotroller/php-cs-custom-fixer": "^2.19",
  2876. "phpstan/phpstan": "^0.12.7",
  2877. "phpstan/phpstan-phpunit": "^0.12.6",
  2878. "phpunit/phpunit": "~7.4||~8.5"
  2879. },
  2880. "suggest": {
  2881. "h4cc/wkhtmltoimage-amd64": "Provides wkhtmltoimage-amd64 binary for Linux-compatible machines, use version `~0.12` as dependency",
  2882. "h4cc/wkhtmltoimage-i386": "Provides wkhtmltoimage-i386 binary for Linux-compatible machines, use version `~0.12` as dependency",
  2883. "h4cc/wkhtmltopdf-amd64": "Provides wkhtmltopdf-amd64 binary for Linux-compatible machines, use version `~0.12` as dependency",
  2884. "h4cc/wkhtmltopdf-i386": "Provides wkhtmltopdf-i386 binary for Linux-compatible machines, use version `~0.12` as dependency",
  2885. "wemersonjanuario/wkhtmltopdf-windows": "Provides wkhtmltopdf executable for Windows, use version `~0.12` as dependency"
  2886. },
  2887. "type": "library",
  2888. "extra": {
  2889. "branch-alias": {
  2890. "dev-master": "1.x-dev"
  2891. }
  2892. },
  2893. "autoload": {
  2894. "psr-4": {
  2895. "Knp\\Snappy\\": "src/Knp/Snappy"
  2896. }
  2897. },
  2898. "notification-url": "https://packagist.org/downloads/",
  2899. "license": [
  2900. "MIT"
  2901. ],
  2902. "authors": [
  2903. {
  2904. "name": "KNP Labs Team",
  2905. "homepage": "http://knplabs.com"
  2906. },
  2907. {
  2908. "name": "Symfony Community",
  2909. "homepage": "http://github.com/KnpLabs/snappy/contributors"
  2910. }
  2911. ],
  2912. "description": "PHP library allowing thumbnail, snapshot or PDF generation from a url or a html page. Wrapper for wkhtmltopdf/wkhtmltoimage.",
  2913. "homepage": "http://github.com/KnpLabs/snappy",
  2914. "keywords": [
  2915. "knp",
  2916. "knplabs",
  2917. "pdf",
  2918. "snapshot",
  2919. "thumbnail",
  2920. "wkhtmltopdf"
  2921. ],
  2922. "support": {
  2923. "issues": "https://github.com/KnpLabs/snappy/issues",
  2924. "source": "https://github.com/KnpLabs/snappy/tree/v1.4.1"
  2925. },
  2926. "time": "2022-01-07T13:03:38+00:00"
  2927. },
  2928. {
  2929. "name": "laravel-lang/lang",
  2930. "version": "3.0.62",
  2931. "source": {
  2932. "type": "git",
  2933. "url": "https://github.com/Laravel-Lang/lang.git",
  2934. "reference": "fcb8cec051b175278e0a9efa440f0b1033d12dd7"
  2935. },
  2936. "dist": {
  2937. "type": "zip",
  2938. "url": "https://api.github.com/repos/Laravel-Lang/lang/zipball/fcb8cec051b175278e0a9efa440f0b1033d12dd7",
  2939. "reference": "fcb8cec051b175278e0a9efa440f0b1033d12dd7",
  2940. "shasum": "",
  2941. "mirrors": [
  2942. {
  2943. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2944. "preferred": true
  2945. }
  2946. ]
  2947. },
  2948. "require-dev": {
  2949. "friendsofphp/php-cs-fixer": "^2.10"
  2950. },
  2951. "suggest": {
  2952. "ablunier/laravel-lang-installer": "Command for easily add languages to a Laravel project",
  2953. "andrey-helldar/laravel-lang-publisher": "Easy installation and update of translation files for your project",
  2954. "arcanedev/laravel-lang": "Translations manager and checker for Laravel 5",
  2955. "overtrue/laravel-lang": "Command to add languages in your project"
  2956. },
  2957. "type": "library",
  2958. "notification-url": "https://packagist.org/downloads/",
  2959. "license": [
  2960. "MIT"
  2961. ],
  2962. "authors": [
  2963. {
  2964. "name": "caouecs",
  2965. "email": "caouecs@caouecs.net"
  2966. }
  2967. ],
  2968. "description": "Languages for Laravel",
  2969. "keywords": [
  2970. "lang",
  2971. "languages",
  2972. "laravel",
  2973. "lpm"
  2974. ],
  2975. "support": {
  2976. "issues": "https://github.com/Laravel-Lang/lang/issues",
  2977. "source": "https://github.com/Laravel-Lang/lang/tree/3.0.62"
  2978. },
  2979. "time": "2019-03-17T10:36:46+00:00"
  2980. },
  2981. {
  2982. "name": "laravel/framework",
  2983. "version": "v8.83.19",
  2984. "source": {
  2985. "type": "git",
  2986. "url": "https://github.com/laravel/framework.git",
  2987. "reference": "4264f2ee12330bdb1be050998f58ba7271236395"
  2988. },
  2989. "dist": {
  2990. "type": "zip",
  2991. "url": "https://api.github.com/repos/laravel/framework/zipball/4264f2ee12330bdb1be050998f58ba7271236395",
  2992. "reference": "4264f2ee12330bdb1be050998f58ba7271236395",
  2993. "shasum": "",
  2994. "mirrors": [
  2995. {
  2996. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2997. "preferred": true
  2998. }
  2999. ]
  3000. },
  3001. "require": {
  3002. "doctrine/inflector": "^1.4|^2.0",
  3003. "dragonmantank/cron-expression": "^3.0.2",
  3004. "egulias/email-validator": "^2.1.10",
  3005. "ext-json": "*",
  3006. "ext-mbstring": "*",
  3007. "ext-openssl": "*",
  3008. "laravel/serializable-closure": "^1.0",
  3009. "league/commonmark": "^1.3|^2.0.2",
  3010. "league/flysystem": "^1.1",
  3011. "monolog/monolog": "^2.0",
  3012. "nesbot/carbon": "^2.53.1",
  3013. "opis/closure": "^3.6",
  3014. "php": "^7.3|^8.0",
  3015. "psr/container": "^1.0",
  3016. "psr/log": "^1.0|^2.0",
  3017. "psr/simple-cache": "^1.0",
  3018. "ramsey/uuid": "^4.2.2",
  3019. "swiftmailer/swiftmailer": "^6.3",
  3020. "symfony/console": "^5.4",
  3021. "symfony/error-handler": "^5.4",
  3022. "symfony/finder": "^5.4",
  3023. "symfony/http-foundation": "^5.4",
  3024. "symfony/http-kernel": "^5.4",
  3025. "symfony/mime": "^5.4",
  3026. "symfony/process": "^5.4",
  3027. "symfony/routing": "^5.4",
  3028. "symfony/var-dumper": "^5.4",
  3029. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  3030. "vlucas/phpdotenv": "^5.4.1",
  3031. "voku/portable-ascii": "^1.6.1"
  3032. },
  3033. "conflict": {
  3034. "tightenco/collect": "<5.5.33"
  3035. },
  3036. "provide": {
  3037. "psr/container-implementation": "1.0",
  3038. "psr/simple-cache-implementation": "1.0"
  3039. },
  3040. "replace": {
  3041. "illuminate/auth": "self.version",
  3042. "illuminate/broadcasting": "self.version",
  3043. "illuminate/bus": "self.version",
  3044. "illuminate/cache": "self.version",
  3045. "illuminate/collections": "self.version",
  3046. "illuminate/config": "self.version",
  3047. "illuminate/console": "self.version",
  3048. "illuminate/container": "self.version",
  3049. "illuminate/contracts": "self.version",
  3050. "illuminate/cookie": "self.version",
  3051. "illuminate/database": "self.version",
  3052. "illuminate/encryption": "self.version",
  3053. "illuminate/events": "self.version",
  3054. "illuminate/filesystem": "self.version",
  3055. "illuminate/hashing": "self.version",
  3056. "illuminate/http": "self.version",
  3057. "illuminate/log": "self.version",
  3058. "illuminate/macroable": "self.version",
  3059. "illuminate/mail": "self.version",
  3060. "illuminate/notifications": "self.version",
  3061. "illuminate/pagination": "self.version",
  3062. "illuminate/pipeline": "self.version",
  3063. "illuminate/queue": "self.version",
  3064. "illuminate/redis": "self.version",
  3065. "illuminate/routing": "self.version",
  3066. "illuminate/session": "self.version",
  3067. "illuminate/support": "self.version",
  3068. "illuminate/testing": "self.version",
  3069. "illuminate/translation": "self.version",
  3070. "illuminate/validation": "self.version",
  3071. "illuminate/view": "self.version"
  3072. },
  3073. "require-dev": {
  3074. "aws/aws-sdk-php": "^3.198.1",
  3075. "doctrine/dbal": "^2.13.3|^3.1.4",
  3076. "filp/whoops": "^2.14.3",
  3077. "guzzlehttp/guzzle": "^6.5.5|^7.0.1",
  3078. "league/flysystem-cached-adapter": "^1.0",
  3079. "mockery/mockery": "^1.4.4",
  3080. "orchestra/testbench-core": "^6.27",
  3081. "pda/pheanstalk": "^4.0",
  3082. "phpunit/phpunit": "^8.5.19|^9.5.8",
  3083. "predis/predis": "^1.1.9",
  3084. "symfony/cache": "^5.4"
  3085. },
  3086. "suggest": {
  3087. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  3088. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.198.1).",
  3089. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  3090. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).",
  3091. "ext-bcmath": "Required to use the multiple_of validation rule.",
  3092. "ext-ftp": "Required to use the Flysystem FTP driver.",
  3093. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  3094. "ext-memcached": "Required to use the memcache cache driver.",
  3095. "ext-pcntl": "Required to use all features of the queue worker.",
  3096. "ext-posix": "Required to use all features of the queue worker.",
  3097. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  3098. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  3099. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  3100. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.5.5|^7.0.1).",
  3101. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  3102. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  3103. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  3104. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  3105. "mockery/mockery": "Required to use mocking (^1.4.4).",
  3106. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  3107. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  3108. "phpunit/phpunit": "Required to use assertions and run tests (^8.5.19|^9.5.8).",
  3109. "predis/predis": "Required to use the predis connector (^1.1.9).",
  3110. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  3111. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0|^5.0|^6.0|^7.0).",
  3112. "symfony/cache": "Required to PSR-6 cache bridge (^5.4).",
  3113. "symfony/filesystem": "Required to enable support for relative symbolic links (^5.4).",
  3114. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  3115. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  3116. },
  3117. "type": "library",
  3118. "extra": {
  3119. "branch-alias": {
  3120. "dev-master": "8.x-dev"
  3121. }
  3122. },
  3123. "autoload": {
  3124. "files": [
  3125. "src/Illuminate/Collections/helpers.php",
  3126. "src/Illuminate/Events/functions.php",
  3127. "src/Illuminate/Foundation/helpers.php",
  3128. "src/Illuminate/Support/helpers.php"
  3129. ],
  3130. "psr-4": {
  3131. "Illuminate\\": "src/Illuminate/",
  3132. "Illuminate\\Support\\": [
  3133. "src/Illuminate/Macroable/",
  3134. "src/Illuminate/Collections/"
  3135. ]
  3136. }
  3137. },
  3138. "notification-url": "https://packagist.org/downloads/",
  3139. "license": [
  3140. "MIT"
  3141. ],
  3142. "authors": [
  3143. {
  3144. "name": "Taylor Otwell",
  3145. "email": "taylor@laravel.com"
  3146. }
  3147. ],
  3148. "description": "The Laravel Framework.",
  3149. "homepage": "https://laravel.com",
  3150. "keywords": [
  3151. "framework",
  3152. "laravel"
  3153. ],
  3154. "support": {
  3155. "issues": "https://github.com/laravel/framework/issues",
  3156. "source": "https://github.com/laravel/framework"
  3157. },
  3158. "time": "2022-07-13T13:23:09+00:00"
  3159. },
  3160. {
  3161. "name": "laravel/sanctum",
  3162. "version": "v2.15.1",
  3163. "source": {
  3164. "type": "git",
  3165. "url": "https://github.com/laravel/sanctum.git",
  3166. "reference": "31fbe6f85aee080c4dc2f9b03dc6dd5d0ee72473"
  3167. },
  3168. "dist": {
  3169. "type": "zip",
  3170. "url": "https://api.github.com/repos/laravel/sanctum/zipball/31fbe6f85aee080c4dc2f9b03dc6dd5d0ee72473",
  3171. "reference": "31fbe6f85aee080c4dc2f9b03dc6dd5d0ee72473",
  3172. "shasum": "",
  3173. "mirrors": [
  3174. {
  3175. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3176. "preferred": true
  3177. }
  3178. ]
  3179. },
  3180. "require": {
  3181. "ext-json": "*",
  3182. "illuminate/console": "^6.9|^7.0|^8.0|^9.0",
  3183. "illuminate/contracts": "^6.9|^7.0|^8.0|^9.0",
  3184. "illuminate/database": "^6.9|^7.0|^8.0|^9.0",
  3185. "illuminate/support": "^6.9|^7.0|^8.0|^9.0",
  3186. "php": "^7.2|^8.0"
  3187. },
  3188. "require-dev": {
  3189. "mockery/mockery": "^1.0",
  3190. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0",
  3191. "phpunit/phpunit": "^8.0|^9.3"
  3192. },
  3193. "type": "library",
  3194. "extra": {
  3195. "branch-alias": {
  3196. "dev-master": "2.x-dev"
  3197. },
  3198. "laravel": {
  3199. "providers": [
  3200. "Laravel\\Sanctum\\SanctumServiceProvider"
  3201. ]
  3202. }
  3203. },
  3204. "autoload": {
  3205. "psr-4": {
  3206. "Laravel\\Sanctum\\": "src/"
  3207. }
  3208. },
  3209. "notification-url": "https://packagist.org/downloads/",
  3210. "license": [
  3211. "MIT"
  3212. ],
  3213. "authors": [
  3214. {
  3215. "name": "Taylor Otwell",
  3216. "email": "taylor@laravel.com"
  3217. }
  3218. ],
  3219. "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.",
  3220. "keywords": [
  3221. "auth",
  3222. "laravel",
  3223. "sanctum"
  3224. ],
  3225. "support": {
  3226. "issues": "https://github.com/laravel/sanctum/issues",
  3227. "source": "https://github.com/laravel/sanctum"
  3228. },
  3229. "time": "2022-04-08T13:39:49+00:00"
  3230. },
  3231. {
  3232. "name": "laravel/serializable-closure",
  3233. "version": "v1.2.0",
  3234. "source": {
  3235. "type": "git",
  3236. "url": "https://github.com/laravel/serializable-closure.git",
  3237. "reference": "09f0e9fb61829f628205b7c94906c28740ff9540"
  3238. },
  3239. "dist": {
  3240. "type": "zip",
  3241. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/09f0e9fb61829f628205b7c94906c28740ff9540",
  3242. "reference": "09f0e9fb61829f628205b7c94906c28740ff9540",
  3243. "shasum": "",
  3244. "mirrors": [
  3245. {
  3246. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3247. "preferred": true
  3248. }
  3249. ]
  3250. },
  3251. "require": {
  3252. "php": "^7.3|^8.0"
  3253. },
  3254. "require-dev": {
  3255. "pestphp/pest": "^1.18",
  3256. "phpstan/phpstan": "^0.12.98",
  3257. "symfony/var-dumper": "^5.3"
  3258. },
  3259. "type": "library",
  3260. "extra": {
  3261. "branch-alias": {
  3262. "dev-master": "1.x-dev"
  3263. }
  3264. },
  3265. "autoload": {
  3266. "psr-4": {
  3267. "Laravel\\SerializableClosure\\": "src/"
  3268. }
  3269. },
  3270. "notification-url": "https://packagist.org/downloads/",
  3271. "license": [
  3272. "MIT"
  3273. ],
  3274. "authors": [
  3275. {
  3276. "name": "Taylor Otwell",
  3277. "email": "taylor@laravel.com"
  3278. },
  3279. {
  3280. "name": "Nuno Maduro",
  3281. "email": "nuno@laravel.com"
  3282. }
  3283. ],
  3284. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  3285. "keywords": [
  3286. "closure",
  3287. "laravel",
  3288. "serializable"
  3289. ],
  3290. "support": {
  3291. "issues": "https://github.com/laravel/serializable-closure/issues",
  3292. "source": "https://github.com/laravel/serializable-closure"
  3293. },
  3294. "time": "2022-05-16T17:09:47+00:00"
  3295. },
  3296. {
  3297. "name": "laravel/socialite",
  3298. "version": "v5.5.2",
  3299. "source": {
  3300. "type": "git",
  3301. "url": "https://github.com/laravel/socialite.git",
  3302. "reference": "68afb03259b82d898c68196cbcacd48596a9dd72"
  3303. },
  3304. "dist": {
  3305. "type": "zip",
  3306. "url": "https://api.github.com/repos/laravel/socialite/zipball/68afb03259b82d898c68196cbcacd48596a9dd72",
  3307. "reference": "68afb03259b82d898c68196cbcacd48596a9dd72",
  3308. "shasum": "",
  3309. "mirrors": [
  3310. {
  3311. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3312. "preferred": true
  3313. }
  3314. ]
  3315. },
  3316. "require": {
  3317. "ext-json": "*",
  3318. "guzzlehttp/guzzle": "^6.0|^7.0",
  3319. "illuminate/http": "^6.0|^7.0|^8.0|^9.0",
  3320. "illuminate/support": "^6.0|^7.0|^8.0|^9.0",
  3321. "league/oauth1-client": "^1.0",
  3322. "php": "^7.2|^8.0"
  3323. },
  3324. "require-dev": {
  3325. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0",
  3326. "mockery/mockery": "^1.0",
  3327. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0",
  3328. "phpunit/phpunit": "^8.0|^9.3"
  3329. },
  3330. "type": "library",
  3331. "extra": {
  3332. "branch-alias": {
  3333. "dev-master": "5.x-dev"
  3334. },
  3335. "laravel": {
  3336. "providers": [
  3337. "Laravel\\Socialite\\SocialiteServiceProvider"
  3338. ],
  3339. "aliases": {
  3340. "Socialite": "Laravel\\Socialite\\Facades\\Socialite"
  3341. }
  3342. }
  3343. },
  3344. "autoload": {
  3345. "psr-4": {
  3346. "Laravel\\Socialite\\": "src/"
  3347. }
  3348. },
  3349. "notification-url": "https://packagist.org/downloads/",
  3350. "license": [
  3351. "MIT"
  3352. ],
  3353. "authors": [
  3354. {
  3355. "name": "Taylor Otwell",
  3356. "email": "taylor@laravel.com"
  3357. }
  3358. ],
  3359. "description": "Laravel wrapper around OAuth 1 & OAuth 2 libraries.",
  3360. "homepage": "https://laravel.com",
  3361. "keywords": [
  3362. "laravel",
  3363. "oauth"
  3364. ],
  3365. "support": {
  3366. "issues": "https://github.com/laravel/socialite/issues",
  3367. "source": "https://github.com/laravel/socialite"
  3368. },
  3369. "time": "2022-03-10T15:26:19+00:00"
  3370. },
  3371. {
  3372. "name": "laravel/tinker",
  3373. "version": "v2.7.2",
  3374. "source": {
  3375. "type": "git",
  3376. "url": "https://github.com/laravel/tinker.git",
  3377. "reference": "dff39b661e827dae6e092412f976658df82dbac5"
  3378. },
  3379. "dist": {
  3380. "type": "zip",
  3381. "url": "https://api.github.com/repos/laravel/tinker/zipball/dff39b661e827dae6e092412f976658df82dbac5",
  3382. "reference": "dff39b661e827dae6e092412f976658df82dbac5",
  3383. "shasum": "",
  3384. "mirrors": [
  3385. {
  3386. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3387. "preferred": true
  3388. }
  3389. ]
  3390. },
  3391. "require": {
  3392. "illuminate/console": "^6.0|^7.0|^8.0|^9.0",
  3393. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0",
  3394. "illuminate/support": "^6.0|^7.0|^8.0|^9.0",
  3395. "php": "^7.2.5|^8.0",
  3396. "psy/psysh": "^0.10.4|^0.11.1",
  3397. "symfony/var-dumper": "^4.3.4|^5.0|^6.0"
  3398. },
  3399. "require-dev": {
  3400. "mockery/mockery": "~1.3.3|^1.4.2",
  3401. "phpunit/phpunit": "^8.5.8|^9.3.3"
  3402. },
  3403. "suggest": {
  3404. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0)."
  3405. },
  3406. "type": "library",
  3407. "extra": {
  3408. "branch-alias": {
  3409. "dev-master": "2.x-dev"
  3410. },
  3411. "laravel": {
  3412. "providers": [
  3413. "Laravel\\Tinker\\TinkerServiceProvider"
  3414. ]
  3415. }
  3416. },
  3417. "autoload": {
  3418. "psr-4": {
  3419. "Laravel\\Tinker\\": "src/"
  3420. }
  3421. },
  3422. "notification-url": "https://packagist.org/downloads/",
  3423. "license": [
  3424. "MIT"
  3425. ],
  3426. "authors": [
  3427. {
  3428. "name": "Taylor Otwell",
  3429. "email": "taylor@laravel.com"
  3430. }
  3431. ],
  3432. "description": "Powerful REPL for the Laravel framework.",
  3433. "keywords": [
  3434. "REPL",
  3435. "Tinker",
  3436. "laravel",
  3437. "psysh"
  3438. ],
  3439. "support": {
  3440. "issues": "https://github.com/laravel/tinker/issues",
  3441. "source": "https://github.com/laravel/tinker/tree/v2.7.2"
  3442. },
  3443. "time": "2022-03-23T12:38:24+00:00"
  3444. },
  3445. {
  3446. "name": "lcobucci/clock",
  3447. "version": "2.2.0",
  3448. "source": {
  3449. "type": "git",
  3450. "url": "https://github.com/lcobucci/clock.git",
  3451. "reference": "fb533e093fd61321bfcbac08b131ce805fe183d3"
  3452. },
  3453. "dist": {
  3454. "type": "zip",
  3455. "url": "https://api.github.com/repos/lcobucci/clock/zipball/fb533e093fd61321bfcbac08b131ce805fe183d3",
  3456. "reference": "fb533e093fd61321bfcbac08b131ce805fe183d3",
  3457. "shasum": "",
  3458. "mirrors": [
  3459. {
  3460. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3461. "preferred": true
  3462. }
  3463. ]
  3464. },
  3465. "require": {
  3466. "php": "^8.0",
  3467. "stella-maris/clock": "^0.1.4"
  3468. },
  3469. "require-dev": {
  3470. "infection/infection": "^0.26",
  3471. "lcobucci/coding-standard": "^8.0",
  3472. "phpstan/extension-installer": "^1.1",
  3473. "phpstan/phpstan": "^0.12",
  3474. "phpstan/phpstan-deprecation-rules": "^0.12",
  3475. "phpstan/phpstan-phpunit": "^0.12",
  3476. "phpstan/phpstan-strict-rules": "^0.12",
  3477. "phpunit/phpunit": "^9.5"
  3478. },
  3479. "type": "library",
  3480. "autoload": {
  3481. "psr-4": {
  3482. "Lcobucci\\Clock\\": "src"
  3483. }
  3484. },
  3485. "notification-url": "https://packagist.org/downloads/",
  3486. "license": [
  3487. "MIT"
  3488. ],
  3489. "authors": [
  3490. {
  3491. "name": "Luís Cobucci",
  3492. "email": "lcobucci@gmail.com"
  3493. }
  3494. ],
  3495. "description": "Yet another clock abstraction",
  3496. "support": {
  3497. "issues": "https://github.com/lcobucci/clock/issues",
  3498. "source": "https://github.com/lcobucci/clock/tree/2.2.0"
  3499. },
  3500. "funding": [
  3501. {
  3502. "url": "https://github.com/lcobucci",
  3503. "type": "github"
  3504. },
  3505. {
  3506. "url": "https://www.patreon.com/lcobucci",
  3507. "type": "patreon"
  3508. }
  3509. ],
  3510. "time": "2022-04-19T19:34:17+00:00"
  3511. },
  3512. {
  3513. "name": "lcobucci/jwt",
  3514. "version": "4.0.4",
  3515. "source": {
  3516. "type": "git",
  3517. "url": "https://github.com/lcobucci/jwt.git",
  3518. "reference": "55564265fddf810504110bd68ca311932324b0e9"
  3519. },
  3520. "dist": {
  3521. "type": "zip",
  3522. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/55564265fddf810504110bd68ca311932324b0e9",
  3523. "reference": "55564265fddf810504110bd68ca311932324b0e9",
  3524. "shasum": "",
  3525. "mirrors": [
  3526. {
  3527. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3528. "preferred": true
  3529. }
  3530. ]
  3531. },
  3532. "require": {
  3533. "ext-mbstring": "*",
  3534. "ext-openssl": "*",
  3535. "lcobucci/clock": "^2.0",
  3536. "php": "^7.4 || ^8.0"
  3537. },
  3538. "require-dev": {
  3539. "infection/infection": "^0.20",
  3540. "lcobucci/coding-standard": "^6.0",
  3541. "mikey179/vfsstream": "^1.6",
  3542. "phpbench/phpbench": "^0.17",
  3543. "phpstan/extension-installer": "^1.0",
  3544. "phpstan/phpstan": "^0.12",
  3545. "phpstan/phpstan-deprecation-rules": "^0.12",
  3546. "phpstan/phpstan-phpunit": "^0.12",
  3547. "phpstan/phpstan-strict-rules": "^0.12",
  3548. "phpunit/php-invoker": "^3.1",
  3549. "phpunit/phpunit": "^9.4"
  3550. },
  3551. "type": "library",
  3552. "extra": {
  3553. "branch-alias": {
  3554. "dev-master": "4.0-dev"
  3555. }
  3556. },
  3557. "autoload": {
  3558. "psr-4": {
  3559. "Lcobucci\\JWT\\": "src"
  3560. }
  3561. },
  3562. "notification-url": "https://packagist.org/downloads/",
  3563. "license": [
  3564. "BSD-3-Clause"
  3565. ],
  3566. "authors": [
  3567. {
  3568. "name": "Luís Cobucci",
  3569. "email": "lcobucci@gmail.com",
  3570. "role": "Developer"
  3571. }
  3572. ],
  3573. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  3574. "keywords": [
  3575. "JWS",
  3576. "jwt"
  3577. ],
  3578. "support": {
  3579. "issues": "https://github.com/lcobucci/jwt/issues",
  3580. "source": "https://github.com/lcobucci/jwt/tree/4.0.4"
  3581. },
  3582. "funding": [
  3583. {
  3584. "url": "https://github.com/lcobucci",
  3585. "type": "github"
  3586. },
  3587. {
  3588. "url": "https://www.patreon.com/lcobucci",
  3589. "type": "patreon"
  3590. }
  3591. ],
  3592. "time": "2021-09-28T19:18:28+00:00"
  3593. },
  3594. {
  3595. "name": "league/commonmark",
  3596. "version": "2.3.3",
  3597. "source": {
  3598. "type": "git",
  3599. "url": "https://github.com/thephpleague/commonmark.git",
  3600. "reference": "0da1dca5781dd3cfddbe328224d9a7a62571addc"
  3601. },
  3602. "dist": {
  3603. "type": "zip",
  3604. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/0da1dca5781dd3cfddbe328224d9a7a62571addc",
  3605. "reference": "0da1dca5781dd3cfddbe328224d9a7a62571addc",
  3606. "shasum": "",
  3607. "mirrors": [
  3608. {
  3609. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3610. "preferred": true
  3611. }
  3612. ]
  3613. },
  3614. "require": {
  3615. "ext-mbstring": "*",
  3616. "league/config": "^1.1.1",
  3617. "php": "^7.4 || ^8.0",
  3618. "psr/event-dispatcher": "^1.0",
  3619. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  3620. "symfony/polyfill-php80": "^1.16"
  3621. },
  3622. "require-dev": {
  3623. "cebe/markdown": "^1.0",
  3624. "commonmark/cmark": "0.30.0",
  3625. "commonmark/commonmark.js": "0.30.0",
  3626. "composer/package-versions-deprecated": "^1.8",
  3627. "embed/embed": "^4.4",
  3628. "erusev/parsedown": "^1.0",
  3629. "ext-json": "*",
  3630. "github/gfm": "0.29.0",
  3631. "michelf/php-markdown": "^1.4",
  3632. "nyholm/psr7": "^1.5",
  3633. "phpstan/phpstan": "^0.12.88 || ^1.0.0",
  3634. "phpunit/phpunit": "^9.5.5",
  3635. "scrutinizer/ocular": "^1.8.1",
  3636. "symfony/finder": "^5.3",
  3637. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0",
  3638. "unleashedtech/php-coding-standard": "^3.1",
  3639. "vimeo/psalm": "^4.7.3"
  3640. },
  3641. "suggest": {
  3642. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  3643. },
  3644. "type": "library",
  3645. "extra": {
  3646. "branch-alias": {
  3647. "dev-main": "2.4-dev"
  3648. }
  3649. },
  3650. "autoload": {
  3651. "psr-4": {
  3652. "League\\CommonMark\\": "src"
  3653. }
  3654. },
  3655. "notification-url": "https://packagist.org/downloads/",
  3656. "license": [
  3657. "BSD-3-Clause"
  3658. ],
  3659. "authors": [
  3660. {
  3661. "name": "Colin O'Dell",
  3662. "email": "colinodell@gmail.com",
  3663. "homepage": "https://www.colinodell.com",
  3664. "role": "Lead Developer"
  3665. }
  3666. ],
  3667. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  3668. "homepage": "https://commonmark.thephpleague.com",
  3669. "keywords": [
  3670. "commonmark",
  3671. "flavored",
  3672. "gfm",
  3673. "github",
  3674. "github-flavored",
  3675. "markdown",
  3676. "md",
  3677. "parser"
  3678. ],
  3679. "support": {
  3680. "docs": "https://commonmark.thephpleague.com/",
  3681. "forum": "https://github.com/thephpleague/commonmark/discussions",
  3682. "issues": "https://github.com/thephpleague/commonmark/issues",
  3683. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  3684. "source": "https://github.com/thephpleague/commonmark"
  3685. },
  3686. "funding": [
  3687. {
  3688. "url": "https://www.colinodell.com/sponsor",
  3689. "type": "custom"
  3690. },
  3691. {
  3692. "url": "https://www.paypal.me/colinpodell/10.00",
  3693. "type": "custom"
  3694. },
  3695. {
  3696. "url": "https://github.com/colinodell",
  3697. "type": "github"
  3698. },
  3699. {
  3700. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  3701. "type": "tidelift"
  3702. }
  3703. ],
  3704. "time": "2022-06-07T21:28:26+00:00"
  3705. },
  3706. {
  3707. "name": "league/config",
  3708. "version": "v1.1.1",
  3709. "source": {
  3710. "type": "git",
  3711. "url": "https://github.com/thephpleague/config.git",
  3712. "reference": "a9d39eeeb6cc49d10a6e6c36f22c4c1f4a767f3e"
  3713. },
  3714. "dist": {
  3715. "type": "zip",
  3716. "url": "https://api.github.com/repos/thephpleague/config/zipball/a9d39eeeb6cc49d10a6e6c36f22c4c1f4a767f3e",
  3717. "reference": "a9d39eeeb6cc49d10a6e6c36f22c4c1f4a767f3e",
  3718. "shasum": "",
  3719. "mirrors": [
  3720. {
  3721. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3722. "preferred": true
  3723. }
  3724. ]
  3725. },
  3726. "require": {
  3727. "dflydev/dot-access-data": "^3.0.1",
  3728. "nette/schema": "^1.2",
  3729. "php": "^7.4 || ^8.0"
  3730. },
  3731. "require-dev": {
  3732. "phpstan/phpstan": "^0.12.90",
  3733. "phpunit/phpunit": "^9.5.5",
  3734. "scrutinizer/ocular": "^1.8.1",
  3735. "unleashedtech/php-coding-standard": "^3.1",
  3736. "vimeo/psalm": "^4.7.3"
  3737. },
  3738. "type": "library",
  3739. "extra": {
  3740. "branch-alias": {
  3741. "dev-main": "1.2-dev"
  3742. }
  3743. },
  3744. "autoload": {
  3745. "psr-4": {
  3746. "League\\Config\\": "src"
  3747. }
  3748. },
  3749. "notification-url": "https://packagist.org/downloads/",
  3750. "license": [
  3751. "BSD-3-Clause"
  3752. ],
  3753. "authors": [
  3754. {
  3755. "name": "Colin O'Dell",
  3756. "email": "colinodell@gmail.com",
  3757. "homepage": "https://www.colinodell.com",
  3758. "role": "Lead Developer"
  3759. }
  3760. ],
  3761. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  3762. "homepage": "https://config.thephpleague.com",
  3763. "keywords": [
  3764. "array",
  3765. "config",
  3766. "configuration",
  3767. "dot",
  3768. "dot-access",
  3769. "nested",
  3770. "schema"
  3771. ],
  3772. "support": {
  3773. "docs": "https://config.thephpleague.com/",
  3774. "issues": "https://github.com/thephpleague/config/issues",
  3775. "rss": "https://github.com/thephpleague/config/releases.atom",
  3776. "source": "https://github.com/thephpleague/config"
  3777. },
  3778. "funding": [
  3779. {
  3780. "url": "https://www.colinodell.com/sponsor",
  3781. "type": "custom"
  3782. },
  3783. {
  3784. "url": "https://www.paypal.me/colinpodell/10.00",
  3785. "type": "custom"
  3786. },
  3787. {
  3788. "url": "https://github.com/colinodell",
  3789. "type": "github"
  3790. }
  3791. ],
  3792. "time": "2021-08-14T12:15:32+00:00"
  3793. },
  3794. {
  3795. "name": "league/flysystem",
  3796. "version": "1.1.9",
  3797. "source": {
  3798. "type": "git",
  3799. "url": "https://github.com/thephpleague/flysystem.git",
  3800. "reference": "094defdb4a7001845300334e7c1ee2335925ef99"
  3801. },
  3802. "dist": {
  3803. "type": "zip",
  3804. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/094defdb4a7001845300334e7c1ee2335925ef99",
  3805. "reference": "094defdb4a7001845300334e7c1ee2335925ef99",
  3806. "shasum": "",
  3807. "mirrors": [
  3808. {
  3809. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3810. "preferred": true
  3811. }
  3812. ]
  3813. },
  3814. "require": {
  3815. "ext-fileinfo": "*",
  3816. "league/mime-type-detection": "^1.3",
  3817. "php": "^7.2.5 || ^8.0"
  3818. },
  3819. "conflict": {
  3820. "league/flysystem-sftp": "<1.0.6"
  3821. },
  3822. "require-dev": {
  3823. "phpspec/prophecy": "^1.11.1",
  3824. "phpunit/phpunit": "^8.5.8"
  3825. },
  3826. "suggest": {
  3827. "ext-ftp": "Allows you to use FTP server storage",
  3828. "ext-openssl": "Allows you to use FTPS server storage",
  3829. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  3830. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  3831. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  3832. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  3833. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  3834. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  3835. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  3836. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  3837. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  3838. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  3839. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  3840. },
  3841. "type": "library",
  3842. "extra": {
  3843. "branch-alias": {
  3844. "dev-master": "1.1-dev"
  3845. }
  3846. },
  3847. "autoload": {
  3848. "psr-4": {
  3849. "League\\Flysystem\\": "src/"
  3850. }
  3851. },
  3852. "notification-url": "https://packagist.org/downloads/",
  3853. "license": [
  3854. "MIT"
  3855. ],
  3856. "authors": [
  3857. {
  3858. "name": "Frank de Jonge",
  3859. "email": "info@frenky.net"
  3860. }
  3861. ],
  3862. "description": "Filesystem abstraction: Many filesystems, one API.",
  3863. "keywords": [
  3864. "Cloud Files",
  3865. "WebDAV",
  3866. "abstraction",
  3867. "aws",
  3868. "cloud",
  3869. "copy.com",
  3870. "dropbox",
  3871. "file systems",
  3872. "files",
  3873. "filesystem",
  3874. "filesystems",
  3875. "ftp",
  3876. "rackspace",
  3877. "remote",
  3878. "s3",
  3879. "sftp",
  3880. "storage"
  3881. ],
  3882. "support": {
  3883. "issues": "https://github.com/thephpleague/flysystem/issues",
  3884. "source": "https://github.com/thephpleague/flysystem/tree/1.1.9"
  3885. },
  3886. "funding": [
  3887. {
  3888. "url": "https://offset.earth/frankdejonge",
  3889. "type": "other"
  3890. }
  3891. ],
  3892. "time": "2021-12-09T09:40:50+00:00"
  3893. },
  3894. {
  3895. "name": "league/fractal",
  3896. "version": "0.19.2",
  3897. "source": {
  3898. "type": "git",
  3899. "url": "https://github.com/thephpleague/fractal.git",
  3900. "reference": "06dc15f6ba38f2dde2f919d3095d13b571190a7c"
  3901. },
  3902. "dist": {
  3903. "type": "zip",
  3904. "url": "https://api.github.com/repos/thephpleague/fractal/zipball/06dc15f6ba38f2dde2f919d3095d13b571190a7c",
  3905. "reference": "06dc15f6ba38f2dde2f919d3095d13b571190a7c",
  3906. "shasum": "",
  3907. "mirrors": [
  3908. {
  3909. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3910. "preferred": true
  3911. }
  3912. ]
  3913. },
  3914. "require": {
  3915. "php": ">=5.4"
  3916. },
  3917. "require-dev": {
  3918. "doctrine/orm": "^2.5",
  3919. "illuminate/contracts": "~5.0",
  3920. "mockery/mockery": "~0.9",
  3921. "pagerfanta/pagerfanta": "~1.0.0",
  3922. "phpunit/phpunit": "^4.8.35 || ^7.5",
  3923. "squizlabs/php_codesniffer": "~1.5|~2.0|~3.4",
  3924. "zendframework/zend-paginator": "~2.3"
  3925. },
  3926. "suggest": {
  3927. "illuminate/pagination": "The Illuminate Pagination component.",
  3928. "pagerfanta/pagerfanta": "Pagerfanta Paginator",
  3929. "zendframework/zend-paginator": "Zend Framework Paginator"
  3930. },
  3931. "type": "library",
  3932. "extra": {
  3933. "branch-alias": {
  3934. "dev-master": "0.13-dev"
  3935. }
  3936. },
  3937. "autoload": {
  3938. "psr-4": {
  3939. "League\\Fractal\\": "src"
  3940. }
  3941. },
  3942. "notification-url": "https://packagist.org/downloads/",
  3943. "license": [
  3944. "MIT"
  3945. ],
  3946. "authors": [
  3947. {
  3948. "name": "Phil Sturgeon",
  3949. "email": "me@philsturgeon.uk",
  3950. "homepage": "http://philsturgeon.uk/",
  3951. "role": "Developer"
  3952. }
  3953. ],
  3954. "description": "Handle the output of complex data structures ready for API output.",
  3955. "homepage": "http://fractal.thephpleague.com/",
  3956. "keywords": [
  3957. "api",
  3958. "json",
  3959. "league",
  3960. "rest"
  3961. ],
  3962. "support": {
  3963. "issues": "https://github.com/thephpleague/fractal/issues",
  3964. "source": "https://github.com/thephpleague/fractal/tree/0.19.2"
  3965. },
  3966. "time": "2020-01-24T23:17:29+00:00"
  3967. },
  3968. {
  3969. "name": "league/mime-type-detection",
  3970. "version": "1.11.0",
  3971. "source": {
  3972. "type": "git",
  3973. "url": "https://github.com/thephpleague/mime-type-detection.git",
  3974. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd"
  3975. },
  3976. "dist": {
  3977. "type": "zip",
  3978. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  3979. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  3980. "shasum": "",
  3981. "mirrors": [
  3982. {
  3983. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3984. "preferred": true
  3985. }
  3986. ]
  3987. },
  3988. "require": {
  3989. "ext-fileinfo": "*",
  3990. "php": "^7.2 || ^8.0"
  3991. },
  3992. "require-dev": {
  3993. "friendsofphp/php-cs-fixer": "^3.2",
  3994. "phpstan/phpstan": "^0.12.68",
  3995. "phpunit/phpunit": "^8.5.8 || ^9.3"
  3996. },
  3997. "type": "library",
  3998. "autoload": {
  3999. "psr-4": {
  4000. "League\\MimeTypeDetection\\": "src"
  4001. }
  4002. },
  4003. "notification-url": "https://packagist.org/downloads/",
  4004. "license": [
  4005. "MIT"
  4006. ],
  4007. "authors": [
  4008. {
  4009. "name": "Frank de Jonge",
  4010. "email": "info@frankdejonge.nl"
  4011. }
  4012. ],
  4013. "description": "Mime-type detection for Flysystem",
  4014. "support": {
  4015. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  4016. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.11.0"
  4017. },
  4018. "funding": [
  4019. {
  4020. "url": "https://github.com/frankdejonge",
  4021. "type": "github"
  4022. },
  4023. {
  4024. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  4025. "type": "tidelift"
  4026. }
  4027. ],
  4028. "time": "2022-04-17T13:12:02+00:00"
  4029. },
  4030. {
  4031. "name": "league/oauth1-client",
  4032. "version": "v1.10.1",
  4033. "source": {
  4034. "type": "git",
  4035. "url": "https://github.com/thephpleague/oauth1-client.git",
  4036. "reference": "d6365b901b5c287dd41f143033315e2f777e1167"
  4037. },
  4038. "dist": {
  4039. "type": "zip",
  4040. "url": "https://api.github.com/repos/thephpleague/oauth1-client/zipball/d6365b901b5c287dd41f143033315e2f777e1167",
  4041. "reference": "d6365b901b5c287dd41f143033315e2f777e1167",
  4042. "shasum": "",
  4043. "mirrors": [
  4044. {
  4045. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4046. "preferred": true
  4047. }
  4048. ]
  4049. },
  4050. "require": {
  4051. "ext-json": "*",
  4052. "ext-openssl": "*",
  4053. "guzzlehttp/guzzle": "^6.0|^7.0",
  4054. "guzzlehttp/psr7": "^1.7|^2.0",
  4055. "php": ">=7.1||>=8.0"
  4056. },
  4057. "require-dev": {
  4058. "ext-simplexml": "*",
  4059. "friendsofphp/php-cs-fixer": "^2.17",
  4060. "mockery/mockery": "^1.3.3",
  4061. "phpstan/phpstan": "^0.12.42",
  4062. "phpunit/phpunit": "^7.5||9.5"
  4063. },
  4064. "suggest": {
  4065. "ext-simplexml": "For decoding XML-based responses."
  4066. },
  4067. "type": "library",
  4068. "extra": {
  4069. "branch-alias": {
  4070. "dev-master": "1.0-dev",
  4071. "dev-develop": "2.0-dev"
  4072. }
  4073. },
  4074. "autoload": {
  4075. "psr-4": {
  4076. "League\\OAuth1\\Client\\": "src/"
  4077. }
  4078. },
  4079. "notification-url": "https://packagist.org/downloads/",
  4080. "license": [
  4081. "MIT"
  4082. ],
  4083. "authors": [
  4084. {
  4085. "name": "Ben Corlett",
  4086. "email": "bencorlett@me.com",
  4087. "homepage": "http://www.webcomm.com.au",
  4088. "role": "Developer"
  4089. }
  4090. ],
  4091. "description": "OAuth 1.0 Client Library",
  4092. "keywords": [
  4093. "Authentication",
  4094. "SSO",
  4095. "authorization",
  4096. "bitbucket",
  4097. "identity",
  4098. "idp",
  4099. "oauth",
  4100. "oauth1",
  4101. "single sign on",
  4102. "trello",
  4103. "tumblr",
  4104. "twitter"
  4105. ],
  4106. "support": {
  4107. "issues": "https://github.com/thephpleague/oauth1-client/issues",
  4108. "source": "https://github.com/thephpleague/oauth1-client/tree/v1.10.1"
  4109. },
  4110. "time": "2022-04-15T14:02:14+00:00"
  4111. },
  4112. {
  4113. "name": "monolog/monolog",
  4114. "version": "2.7.0",
  4115. "source": {
  4116. "type": "git",
  4117. "url": "https://github.com/Seldaek/monolog.git",
  4118. "reference": "5579edf28aee1190a798bfa5be8bc16c563bd524"
  4119. },
  4120. "dist": {
  4121. "type": "zip",
  4122. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/5579edf28aee1190a798bfa5be8bc16c563bd524",
  4123. "reference": "5579edf28aee1190a798bfa5be8bc16c563bd524",
  4124. "shasum": "",
  4125. "mirrors": [
  4126. {
  4127. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4128. "preferred": true
  4129. }
  4130. ]
  4131. },
  4132. "require": {
  4133. "php": ">=7.2",
  4134. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  4135. },
  4136. "provide": {
  4137. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  4138. },
  4139. "require-dev": {
  4140. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  4141. "doctrine/couchdb": "~1.0@dev",
  4142. "elasticsearch/elasticsearch": "^7 || ^8",
  4143. "ext-json": "*",
  4144. "graylog2/gelf-php": "^1.4.2",
  4145. "guzzlehttp/guzzle": "^7.4",
  4146. "guzzlehttp/psr7": "^2.2",
  4147. "mongodb/mongodb": "^1.8",
  4148. "php-amqplib/php-amqplib": "~2.4 || ^3",
  4149. "php-console/php-console": "^3.1.3",
  4150. "phpspec/prophecy": "^1.15",
  4151. "phpstan/phpstan": "^0.12.91",
  4152. "phpunit/phpunit": "^8.5.14",
  4153. "predis/predis": "^1.1",
  4154. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  4155. "ruflin/elastica": "^7",
  4156. "swiftmailer/swiftmailer": "^5.3|^6.0",
  4157. "symfony/mailer": "^5.4 || ^6",
  4158. "symfony/mime": "^5.4 || ^6"
  4159. },
  4160. "suggest": {
  4161. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  4162. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  4163. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  4164. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  4165. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  4166. "ext-mbstring": "Allow to work properly with unicode symbols",
  4167. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  4168. "ext-openssl": "Required to send log messages using SSL",
  4169. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  4170. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  4171. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  4172. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  4173. "php-console/php-console": "Allow sending log messages to Google Chrome",
  4174. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  4175. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  4176. },
  4177. "type": "library",
  4178. "extra": {
  4179. "branch-alias": {
  4180. "dev-main": "2.x-dev"
  4181. }
  4182. },
  4183. "autoload": {
  4184. "psr-4": {
  4185. "Monolog\\": "src/Monolog"
  4186. }
  4187. },
  4188. "notification-url": "https://packagist.org/downloads/",
  4189. "license": [
  4190. "MIT"
  4191. ],
  4192. "authors": [
  4193. {
  4194. "name": "Jordi Boggiano",
  4195. "email": "j.boggiano@seld.be",
  4196. "homepage": "https://seld.be"
  4197. }
  4198. ],
  4199. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  4200. "homepage": "https://github.com/Seldaek/monolog",
  4201. "keywords": [
  4202. "log",
  4203. "logging",
  4204. "psr-3"
  4205. ],
  4206. "support": {
  4207. "issues": "https://github.com/Seldaek/monolog/issues",
  4208. "source": "https://github.com/Seldaek/monolog/tree/2.7.0"
  4209. },
  4210. "funding": [
  4211. {
  4212. "url": "https://github.com/Seldaek",
  4213. "type": "github"
  4214. },
  4215. {
  4216. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  4217. "type": "tidelift"
  4218. }
  4219. ],
  4220. "time": "2022-06-09T08:59:12+00:00"
  4221. },
  4222. {
  4223. "name": "mtdowling/jmespath.php",
  4224. "version": "2.6.1",
  4225. "source": {
  4226. "type": "git",
  4227. "url": "https://github.com/jmespath/jmespath.php.git",
  4228. "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb"
  4229. },
  4230. "dist": {
  4231. "type": "zip",
  4232. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
  4233. "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
  4234. "shasum": "",
  4235. "mirrors": [
  4236. {
  4237. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4238. "preferred": true
  4239. }
  4240. ]
  4241. },
  4242. "require": {
  4243. "php": "^5.4 || ^7.0 || ^8.0",
  4244. "symfony/polyfill-mbstring": "^1.17"
  4245. },
  4246. "require-dev": {
  4247. "composer/xdebug-handler": "^1.4 || ^2.0",
  4248. "phpunit/phpunit": "^4.8.36 || ^7.5.15"
  4249. },
  4250. "bin": [
  4251. "bin/jp.php"
  4252. ],
  4253. "type": "library",
  4254. "extra": {
  4255. "branch-alias": {
  4256. "dev-master": "2.6-dev"
  4257. }
  4258. },
  4259. "autoload": {
  4260. "files": [
  4261. "src/JmesPath.php"
  4262. ],
  4263. "psr-4": {
  4264. "JmesPath\\": "src/"
  4265. }
  4266. },
  4267. "notification-url": "https://packagist.org/downloads/",
  4268. "license": [
  4269. "MIT"
  4270. ],
  4271. "authors": [
  4272. {
  4273. "name": "Michael Dowling",
  4274. "email": "mtdowling@gmail.com",
  4275. "homepage": "https://github.com/mtdowling"
  4276. }
  4277. ],
  4278. "description": "Declaratively specify how to extract elements from a JSON document",
  4279. "keywords": [
  4280. "json",
  4281. "jsonpath"
  4282. ],
  4283. "support": {
  4284. "issues": "https://github.com/jmespath/jmespath.php/issues",
  4285. "source": "https://github.com/jmespath/jmespath.php/tree/2.6.1"
  4286. },
  4287. "time": "2021-06-14T00:11:39+00:00"
  4288. },
  4289. {
  4290. "name": "namshi/jose",
  4291. "version": "7.2.3",
  4292. "source": {
  4293. "type": "git",
  4294. "url": "https://github.com/namshi/jose.git",
  4295. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff"
  4296. },
  4297. "dist": {
  4298. "type": "zip",
  4299. "url": "https://api.github.com/repos/namshi/jose/zipball/89a24d7eb3040e285dd5925fcad992378b82bcff",
  4300. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff",
  4301. "shasum": "",
  4302. "mirrors": [
  4303. {
  4304. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4305. "preferred": true
  4306. }
  4307. ]
  4308. },
  4309. "require": {
  4310. "ext-date": "*",
  4311. "ext-hash": "*",
  4312. "ext-json": "*",
  4313. "ext-pcre": "*",
  4314. "ext-spl": "*",
  4315. "php": ">=5.5",
  4316. "symfony/polyfill-php56": "^1.0"
  4317. },
  4318. "require-dev": {
  4319. "phpseclib/phpseclib": "^2.0",
  4320. "phpunit/phpunit": "^4.5|^5.0",
  4321. "satooshi/php-coveralls": "^1.0"
  4322. },
  4323. "suggest": {
  4324. "ext-openssl": "Allows to use OpenSSL as crypto engine.",
  4325. "phpseclib/phpseclib": "Allows to use Phpseclib as crypto engine, use version ^2.0."
  4326. },
  4327. "type": "library",
  4328. "autoload": {
  4329. "psr-4": {
  4330. "Namshi\\JOSE\\": "src/Namshi/JOSE/"
  4331. }
  4332. },
  4333. "notification-url": "https://packagist.org/downloads/",
  4334. "license": [
  4335. "MIT"
  4336. ],
  4337. "authors": [
  4338. {
  4339. "name": "Alessandro Nadalin",
  4340. "email": "alessandro.nadalin@gmail.com"
  4341. },
  4342. {
  4343. "name": "Alessandro Cinelli (cirpo)",
  4344. "email": "alessandro.cinelli@gmail.com"
  4345. }
  4346. ],
  4347. "description": "JSON Object Signing and Encryption library for PHP.",
  4348. "keywords": [
  4349. "JSON Web Signature",
  4350. "JSON Web Token",
  4351. "JWS",
  4352. "json",
  4353. "jwt",
  4354. "token"
  4355. ],
  4356. "support": {
  4357. "issues": "https://github.com/namshi/jose/issues",
  4358. "source": "https://github.com/namshi/jose/tree/master"
  4359. },
  4360. "time": "2016-12-05T07:27:31+00:00"
  4361. },
  4362. {
  4363. "name": "nesbot/carbon",
  4364. "version": "2.59.1",
  4365. "source": {
  4366. "type": "git",
  4367. "url": "https://github.com/briannesbitt/Carbon.git",
  4368. "reference": "a9000603ea337c8df16cc41f8b6be95a65f4d0f5"
  4369. },
  4370. "dist": {
  4371. "type": "zip",
  4372. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/a9000603ea337c8df16cc41f8b6be95a65f4d0f5",
  4373. "reference": "a9000603ea337c8df16cc41f8b6be95a65f4d0f5",
  4374. "shasum": "",
  4375. "mirrors": [
  4376. {
  4377. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4378. "preferred": true
  4379. }
  4380. ]
  4381. },
  4382. "require": {
  4383. "ext-json": "*",
  4384. "php": "^7.1.8 || ^8.0",
  4385. "symfony/polyfill-mbstring": "^1.0",
  4386. "symfony/polyfill-php80": "^1.16",
  4387. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  4388. },
  4389. "require-dev": {
  4390. "doctrine/dbal": "^2.0 || ^3.0",
  4391. "doctrine/orm": "^2.7",
  4392. "friendsofphp/php-cs-fixer": "^3.0",
  4393. "kylekatarnls/multi-tester": "^2.0",
  4394. "ondrejmirtes/better-reflection": "*",
  4395. "phpmd/phpmd": "^2.9",
  4396. "phpstan/extension-installer": "^1.0",
  4397. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  4398. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  4399. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  4400. "squizlabs/php_codesniffer": "^3.4"
  4401. },
  4402. "bin": [
  4403. "bin/carbon"
  4404. ],
  4405. "type": "library",
  4406. "extra": {
  4407. "branch-alias": {
  4408. "dev-3.x": "3.x-dev",
  4409. "dev-master": "2.x-dev"
  4410. },
  4411. "laravel": {
  4412. "providers": [
  4413. "Carbon\\Laravel\\ServiceProvider"
  4414. ]
  4415. },
  4416. "phpstan": {
  4417. "includes": [
  4418. "extension.neon"
  4419. ]
  4420. }
  4421. },
  4422. "autoload": {
  4423. "psr-4": {
  4424. "Carbon\\": "src/Carbon/"
  4425. }
  4426. },
  4427. "notification-url": "https://packagist.org/downloads/",
  4428. "license": [
  4429. "MIT"
  4430. ],
  4431. "authors": [
  4432. {
  4433. "name": "Brian Nesbitt",
  4434. "email": "brian@nesbot.com",
  4435. "homepage": "https://markido.com"
  4436. },
  4437. {
  4438. "name": "kylekatarnls",
  4439. "homepage": "https://github.com/kylekatarnls"
  4440. }
  4441. ],
  4442. "description": "An API extension for DateTime that supports 281 different languages.",
  4443. "homepage": "https://carbon.nesbot.com",
  4444. "keywords": [
  4445. "date",
  4446. "datetime",
  4447. "time"
  4448. ],
  4449. "support": {
  4450. "docs": "https://carbon.nesbot.com/docs",
  4451. "issues": "https://github.com/briannesbitt/Carbon/issues",
  4452. "source": "https://github.com/briannesbitt/Carbon"
  4453. },
  4454. "funding": [
  4455. {
  4456. "url": "https://github.com/sponsors/kylekatarnls",
  4457. "type": "github"
  4458. },
  4459. {
  4460. "url": "https://opencollective.com/Carbon#sponsor",
  4461. "type": "opencollective"
  4462. },
  4463. {
  4464. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  4465. "type": "tidelift"
  4466. }
  4467. ],
  4468. "time": "2022-06-29T21:43:55+00:00"
  4469. },
  4470. {
  4471. "name": "nette/schema",
  4472. "version": "v1.2.2",
  4473. "source": {
  4474. "type": "git",
  4475. "url": "https://github.com/nette/schema.git",
  4476. "reference": "9a39cef03a5b34c7de64f551538cbba05c2be5df"
  4477. },
  4478. "dist": {
  4479. "type": "zip",
  4480. "url": "https://api.github.com/repos/nette/schema/zipball/9a39cef03a5b34c7de64f551538cbba05c2be5df",
  4481. "reference": "9a39cef03a5b34c7de64f551538cbba05c2be5df",
  4482. "shasum": "",
  4483. "mirrors": [
  4484. {
  4485. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4486. "preferred": true
  4487. }
  4488. ]
  4489. },
  4490. "require": {
  4491. "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
  4492. "php": ">=7.1 <8.2"
  4493. },
  4494. "require-dev": {
  4495. "nette/tester": "^2.3 || ^2.4",
  4496. "phpstan/phpstan-nette": "^0.12",
  4497. "tracy/tracy": "^2.7"
  4498. },
  4499. "type": "library",
  4500. "extra": {
  4501. "branch-alias": {
  4502. "dev-master": "1.2-dev"
  4503. }
  4504. },
  4505. "autoload": {
  4506. "classmap": [
  4507. "src/"
  4508. ]
  4509. },
  4510. "notification-url": "https://packagist.org/downloads/",
  4511. "license": [
  4512. "BSD-3-Clause",
  4513. "GPL-2.0-only",
  4514. "GPL-3.0-only"
  4515. ],
  4516. "authors": [
  4517. {
  4518. "name": "David Grudl",
  4519. "homepage": "https://davidgrudl.com"
  4520. },
  4521. {
  4522. "name": "Nette Community",
  4523. "homepage": "https://nette.org/contributors"
  4524. }
  4525. ],
  4526. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  4527. "homepage": "https://nette.org",
  4528. "keywords": [
  4529. "config",
  4530. "nette"
  4531. ],
  4532. "support": {
  4533. "issues": "https://github.com/nette/schema/issues",
  4534. "source": "https://github.com/nette/schema/tree/v1.2.2"
  4535. },
  4536. "time": "2021-10-15T11:40:02+00:00"
  4537. },
  4538. {
  4539. "name": "nette/utils",
  4540. "version": "v3.2.7",
  4541. "source": {
  4542. "type": "git",
  4543. "url": "https://github.com/nette/utils.git",
  4544. "reference": "0af4e3de4df9f1543534beab255ccf459e7a2c99"
  4545. },
  4546. "dist": {
  4547. "type": "zip",
  4548. "url": "https://api.github.com/repos/nette/utils/zipball/0af4e3de4df9f1543534beab255ccf459e7a2c99",
  4549. "reference": "0af4e3de4df9f1543534beab255ccf459e7a2c99",
  4550. "shasum": "",
  4551. "mirrors": [
  4552. {
  4553. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4554. "preferred": true
  4555. }
  4556. ]
  4557. },
  4558. "require": {
  4559. "php": ">=7.2 <8.2"
  4560. },
  4561. "conflict": {
  4562. "nette/di": "<3.0.6"
  4563. },
  4564. "require-dev": {
  4565. "nette/tester": "~2.0",
  4566. "phpstan/phpstan": "^1.0",
  4567. "tracy/tracy": "^2.3"
  4568. },
  4569. "suggest": {
  4570. "ext-gd": "to use Image",
  4571. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  4572. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  4573. "ext-json": "to use Nette\\Utils\\Json",
  4574. "ext-mbstring": "to use Strings::lower() etc...",
  4575. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()",
  4576. "ext-xml": "to use Strings::length() etc. when mbstring is not available"
  4577. },
  4578. "type": "library",
  4579. "extra": {
  4580. "branch-alias": {
  4581. "dev-master": "3.2-dev"
  4582. }
  4583. },
  4584. "autoload": {
  4585. "classmap": [
  4586. "src/"
  4587. ]
  4588. },
  4589. "notification-url": "https://packagist.org/downloads/",
  4590. "license": [
  4591. "BSD-3-Clause",
  4592. "GPL-2.0-only",
  4593. "GPL-3.0-only"
  4594. ],
  4595. "authors": [
  4596. {
  4597. "name": "David Grudl",
  4598. "homepage": "https://davidgrudl.com"
  4599. },
  4600. {
  4601. "name": "Nette Community",
  4602. "homepage": "https://nette.org/contributors"
  4603. }
  4604. ],
  4605. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  4606. "homepage": "https://nette.org",
  4607. "keywords": [
  4608. "array",
  4609. "core",
  4610. "datetime",
  4611. "images",
  4612. "json",
  4613. "nette",
  4614. "paginator",
  4615. "password",
  4616. "slugify",
  4617. "string",
  4618. "unicode",
  4619. "utf-8",
  4620. "utility",
  4621. "validation"
  4622. ],
  4623. "support": {
  4624. "issues": "https://github.com/nette/utils/issues",
  4625. "source": "https://github.com/nette/utils/tree/v3.2.7"
  4626. },
  4627. "time": "2022-01-24T11:29:14+00:00"
  4628. },
  4629. {
  4630. "name": "nikic/php-parser",
  4631. "version": "v4.14.0",
  4632. "source": {
  4633. "type": "git",
  4634. "url": "https://github.com/nikic/PHP-Parser.git",
  4635. "reference": "34bea19b6e03d8153165d8f30bba4c3be86184c1"
  4636. },
  4637. "dist": {
  4638. "type": "zip",
  4639. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/34bea19b6e03d8153165d8f30bba4c3be86184c1",
  4640. "reference": "34bea19b6e03d8153165d8f30bba4c3be86184c1",
  4641. "shasum": "",
  4642. "mirrors": [
  4643. {
  4644. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4645. "preferred": true
  4646. }
  4647. ]
  4648. },
  4649. "require": {
  4650. "ext-tokenizer": "*",
  4651. "php": ">=7.0"
  4652. },
  4653. "require-dev": {
  4654. "ircmaxell/php-yacc": "^0.0.7",
  4655. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  4656. },
  4657. "bin": [
  4658. "bin/php-parse"
  4659. ],
  4660. "type": "library",
  4661. "extra": {
  4662. "branch-alias": {
  4663. "dev-master": "4.9-dev"
  4664. }
  4665. },
  4666. "autoload": {
  4667. "psr-4": {
  4668. "PhpParser\\": "lib/PhpParser"
  4669. }
  4670. },
  4671. "notification-url": "https://packagist.org/downloads/",
  4672. "license": [
  4673. "BSD-3-Clause"
  4674. ],
  4675. "authors": [
  4676. {
  4677. "name": "Nikita Popov"
  4678. }
  4679. ],
  4680. "description": "A PHP parser written in PHP",
  4681. "keywords": [
  4682. "parser",
  4683. "php"
  4684. ],
  4685. "support": {
  4686. "issues": "https://github.com/nikic/PHP-Parser/issues",
  4687. "source": "https://github.com/nikic/PHP-Parser/tree/v4.14.0"
  4688. },
  4689. "time": "2022-05-31T20:59:12+00:00"
  4690. },
  4691. {
  4692. "name": "opis/closure",
  4693. "version": "3.6.3",
  4694. "source": {
  4695. "type": "git",
  4696. "url": "https://github.com/opis/closure.git",
  4697. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad"
  4698. },
  4699. "dist": {
  4700. "type": "zip",
  4701. "url": "https://api.github.com/repos/opis/closure/zipball/3d81e4309d2a927abbe66df935f4bb60082805ad",
  4702. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad",
  4703. "shasum": "",
  4704. "mirrors": [
  4705. {
  4706. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4707. "preferred": true
  4708. }
  4709. ]
  4710. },
  4711. "require": {
  4712. "php": "^5.4 || ^7.0 || ^8.0"
  4713. },
  4714. "require-dev": {
  4715. "jeremeamia/superclosure": "^2.0",
  4716. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  4717. },
  4718. "type": "library",
  4719. "extra": {
  4720. "branch-alias": {
  4721. "dev-master": "3.6.x-dev"
  4722. }
  4723. },
  4724. "autoload": {
  4725. "files": [
  4726. "functions.php"
  4727. ],
  4728. "psr-4": {
  4729. "Opis\\Closure\\": "src/"
  4730. }
  4731. },
  4732. "notification-url": "https://packagist.org/downloads/",
  4733. "license": [
  4734. "MIT"
  4735. ],
  4736. "authors": [
  4737. {
  4738. "name": "Marius Sarca",
  4739. "email": "marius.sarca@gmail.com"
  4740. },
  4741. {
  4742. "name": "Sorin Sarca",
  4743. "email": "sarca_sorin@hotmail.com"
  4744. }
  4745. ],
  4746. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  4747. "homepage": "https://opis.io/closure",
  4748. "keywords": [
  4749. "anonymous functions",
  4750. "closure",
  4751. "function",
  4752. "serializable",
  4753. "serialization",
  4754. "serialize"
  4755. ],
  4756. "support": {
  4757. "issues": "https://github.com/opis/closure/issues",
  4758. "source": "https://github.com/opis/closure/tree/3.6.3"
  4759. },
  4760. "time": "2022-01-27T09:35:39+00:00"
  4761. },
  4762. {
  4763. "name": "overtrue/easy-sms",
  4764. "version": "2.1.1",
  4765. "source": {
  4766. "type": "git",
  4767. "url": "https://github.com/overtrue/easy-sms.git",
  4768. "reference": "4bbbbef4fa192ed23a60bbafc3217bccb6af824f"
  4769. },
  4770. "dist": {
  4771. "type": "zip",
  4772. "url": "https://api.github.com/repos/overtrue/easy-sms/zipball/4bbbbef4fa192ed23a60bbafc3217bccb6af824f",
  4773. "reference": "4bbbbef4fa192ed23a60bbafc3217bccb6af824f",
  4774. "shasum": "",
  4775. "mirrors": [
  4776. {
  4777. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4778. "preferred": true
  4779. }
  4780. ]
  4781. },
  4782. "require": {
  4783. "ext-json": "*",
  4784. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  4785. "php": ">=5.6"
  4786. },
  4787. "require-dev": {
  4788. "brainmaestro/composer-git-hooks": "^2.8",
  4789. "jetbrains/phpstorm-attributes": "^1.0",
  4790. "mockery/mockery": "~1.3.3 || ^1.4.2",
  4791. "phpunit/phpunit": "^5.7 || ^7.5 || ^8.5.19 || ^9.5.8"
  4792. },
  4793. "type": "library",
  4794. "extra": {
  4795. "hooks": {
  4796. "pre-commit": [
  4797. "composer check-style",
  4798. "composer psalm",
  4799. "composer test"
  4800. ],
  4801. "pre-push": [
  4802. "composer check-style"
  4803. ]
  4804. }
  4805. },
  4806. "autoload": {
  4807. "psr-4": {
  4808. "Overtrue\\EasySms\\": "src"
  4809. }
  4810. },
  4811. "notification-url": "https://packagist.org/downloads/",
  4812. "license": [
  4813. "MIT"
  4814. ],
  4815. "authors": [
  4816. {
  4817. "name": "overtrue",
  4818. "email": "i@overtrue.me"
  4819. }
  4820. ],
  4821. "description": "The easiest way to send short message.",
  4822. "support": {
  4823. "issues": "https://github.com/overtrue/easy-sms/issues",
  4824. "source": "https://github.com/overtrue/easy-sms/tree/2.1.1"
  4825. },
  4826. "funding": [
  4827. {
  4828. "url": "https://github.com/overtrue",
  4829. "type": "github"
  4830. }
  4831. ],
  4832. "time": "2022-03-03T01:00:29+00:00"
  4833. },
  4834. {
  4835. "name": "overtrue/laravel-lang",
  4836. "version": "3.0.19",
  4837. "source": {
  4838. "type": "git",
  4839. "url": "https://github.com/overtrue/laravel-lang.git",
  4840. "reference": "fb6de57a454792833c96ffdcd4999c90468deb89"
  4841. },
  4842. "dist": {
  4843. "type": "zip",
  4844. "url": "https://api.github.com/repos/overtrue/laravel-lang/zipball/fb6de57a454792833c96ffdcd4999c90468deb89",
  4845. "reference": "fb6de57a454792833c96ffdcd4999c90468deb89",
  4846. "shasum": "",
  4847. "mirrors": [
  4848. {
  4849. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4850. "preferred": true
  4851. }
  4852. ]
  4853. },
  4854. "require": {
  4855. "laravel-lang/lang": "~3.0"
  4856. },
  4857. "type": "library",
  4858. "extra": {
  4859. "laravel": {
  4860. "providers": [
  4861. "Overtrue\\LaravelLang\\TranslationServiceProvider"
  4862. ]
  4863. }
  4864. },
  4865. "autoload": {
  4866. "files": [
  4867. "src/helpers.php"
  4868. ],
  4869. "psr-4": {
  4870. "Overtrue\\LaravelLang\\": "src/"
  4871. }
  4872. },
  4873. "notification-url": "https://packagist.org/downloads/",
  4874. "license": [
  4875. "MIT"
  4876. ],
  4877. "authors": [
  4878. {
  4879. "name": "overtrue",
  4880. "email": "anzhengchao@gmail.com"
  4881. }
  4882. ],
  4883. "description": "List of 52 languages for Laravel 5",
  4884. "keywords": [
  4885. "languages",
  4886. "laravel",
  4887. "overtrue"
  4888. ],
  4889. "support": {
  4890. "issues": "https://github.com/overtrue/laravel-lang/issues",
  4891. "source": "https://github.com/overtrue/laravel-lang/tree/3.0.19"
  4892. },
  4893. "funding": [
  4894. {
  4895. "url": "https://www.patreon.com/overtrue",
  4896. "type": "patreon"
  4897. }
  4898. ],
  4899. "time": "2021-04-28T03:36:48+00:00"
  4900. },
  4901. {
  4902. "name": "overtrue/laravel-wechat",
  4903. "version": "5.1.0",
  4904. "source": {
  4905. "type": "git",
  4906. "url": "https://github.com/overtrue/laravel-wechat.git",
  4907. "reference": "1bc59aa52cf6bae2f4f388e9f20f7893305f2fe8"
  4908. },
  4909. "dist": {
  4910. "type": "zip",
  4911. "url": "https://api.github.com/repos/overtrue/laravel-wechat/zipball/1bc59aa52cf6bae2f4f388e9f20f7893305f2fe8",
  4912. "reference": "1bc59aa52cf6bae2f4f388e9f20f7893305f2fe8",
  4913. "shasum": "",
  4914. "mirrors": [
  4915. {
  4916. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4917. "preferred": true
  4918. }
  4919. ]
  4920. },
  4921. "require": {
  4922. "illuminate/container": "^5.1 || ^6.0 || ^7.0 || ^8.0",
  4923. "overtrue/wechat": "^4.0"
  4924. },
  4925. "require-dev": {
  4926. "friendsofphp/php-cs-fixer": "^2.16",
  4927. "laravel/framework": "^8.5"
  4928. },
  4929. "type": "library",
  4930. "extra": {
  4931. "laravel": {
  4932. "providers": [
  4933. "Overtrue\\LaravelWeChat\\ServiceProvider"
  4934. ],
  4935. "aliases": {
  4936. "EasyWeChat": "Overtrue\\LaravelWeChat\\Facade"
  4937. }
  4938. }
  4939. },
  4940. "autoload": {
  4941. "psr-4": {
  4942. "Overtrue\\LaravelWeChat\\": "src/"
  4943. }
  4944. },
  4945. "notification-url": "https://packagist.org/downloads/",
  4946. "license": [
  4947. "MIT"
  4948. ],
  4949. "authors": [
  4950. {
  4951. "name": "overtrue",
  4952. "email": "anzhengchao@gmail.com"
  4953. }
  4954. ],
  4955. "description": "微信 SDK for Laravel",
  4956. "keywords": [
  4957. "laravel",
  4958. "sdk",
  4959. "wechat",
  4960. "weixin"
  4961. ],
  4962. "support": {
  4963. "issues": "https://github.com/overtrue/laravel-wechat/issues",
  4964. "source": "https://github.com/overtrue/laravel-wechat/tree/5.1.0"
  4965. },
  4966. "time": "2020-09-27T08:32:30+00:00"
  4967. },
  4968. {
  4969. "name": "overtrue/socialite",
  4970. "version": "2.0.24",
  4971. "source": {
  4972. "type": "git",
  4973. "url": "https://github.com/overtrue/socialite.git",
  4974. "reference": "ee7e7b000ec7d64f2b8aba1f6a2eec5cdf3f8bec"
  4975. },
  4976. "dist": {
  4977. "type": "zip",
  4978. "url": "https://api.github.com/repos/overtrue/socialite/zipball/ee7e7b000ec7d64f2b8aba1f6a2eec5cdf3f8bec",
  4979. "reference": "ee7e7b000ec7d64f2b8aba1f6a2eec5cdf3f8bec",
  4980. "shasum": "",
  4981. "mirrors": [
  4982. {
  4983. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4984. "preferred": true
  4985. }
  4986. ]
  4987. },
  4988. "require": {
  4989. "ext-json": "*",
  4990. "guzzlehttp/guzzle": "^5.0|^6.0|^7.0",
  4991. "php": ">=5.6",
  4992. "symfony/http-foundation": "^2.7|^3.0|^4.0|^5.0"
  4993. },
  4994. "require-dev": {
  4995. "mockery/mockery": "~1.2",
  4996. "phpunit/phpunit": "^6.0|^7.0|^8.0|^9.0"
  4997. },
  4998. "type": "library",
  4999. "autoload": {
  5000. "psr-4": {
  5001. "Overtrue\\Socialite\\": "src/"
  5002. }
  5003. },
  5004. "notification-url": "https://packagist.org/downloads/",
  5005. "license": [
  5006. "MIT"
  5007. ],
  5008. "authors": [
  5009. {
  5010. "name": "overtrue",
  5011. "email": "anzhengchao@gmail.com"
  5012. }
  5013. ],
  5014. "description": "A collection of OAuth 2 packages that extracts from laravel/socialite.",
  5015. "keywords": [
  5016. "login",
  5017. "oauth",
  5018. "qq",
  5019. "social",
  5020. "wechat",
  5021. "weibo"
  5022. ],
  5023. "support": {
  5024. "issues": "https://github.com/overtrue/socialite/issues",
  5025. "source": "https://github.com/overtrue/socialite/tree/2.0.24"
  5026. },
  5027. "funding": [
  5028. {
  5029. "url": "https://www.patreon.com/overtrue",
  5030. "type": "patreon"
  5031. }
  5032. ],
  5033. "time": "2021-05-13T16:04:48+00:00"
  5034. },
  5035. {
  5036. "name": "overtrue/wechat",
  5037. "version": "4.5.0",
  5038. "source": {
  5039. "type": "git",
  5040. "url": "https://github.com/w7corp/easywechat.git",
  5041. "reference": "04a940f97d6812a67bb8d5f2dbaebf9ad78ae776"
  5042. },
  5043. "dist": {
  5044. "type": "zip",
  5045. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/04a940f97d6812a67bb8d5f2dbaebf9ad78ae776",
  5046. "reference": "04a940f97d6812a67bb8d5f2dbaebf9ad78ae776",
  5047. "shasum": "",
  5048. "mirrors": [
  5049. {
  5050. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5051. "preferred": true
  5052. }
  5053. ]
  5054. },
  5055. "require": {
  5056. "easywechat-composer/easywechat-composer": "^1.1",
  5057. "ext-fileinfo": "*",
  5058. "ext-openssl": "*",
  5059. "ext-simplexml": "*",
  5060. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  5061. "monolog/monolog": "^1.22 || ^2.0",
  5062. "overtrue/socialite": "~2.0",
  5063. "php": ">=7.2",
  5064. "pimple/pimple": "^3.0",
  5065. "psr/simple-cache": "^1.0",
  5066. "symfony/cache": "^3.3 || ^4.3 || ^5.0",
  5067. "symfony/event-dispatcher": "^4.3 || ^5.0",
  5068. "symfony/http-foundation": "^2.7 || ^3.0 || ^4.0 || ^5.0",
  5069. "symfony/psr-http-message-bridge": "^0.3 || ^1.0 || ^2.0"
  5070. },
  5071. "require-dev": {
  5072. "friendsofphp/php-cs-fixer": "^2.15",
  5073. "mikey179/vfsstream": "^1.6",
  5074. "mockery/mockery": "^1.2.3",
  5075. "phpstan/phpstan": "^0.12.0",
  5076. "phpunit/phpunit": "^7.5"
  5077. },
  5078. "type": "library",
  5079. "autoload": {
  5080. "files": [
  5081. "src/Kernel/Support/Helpers.php",
  5082. "src/Kernel/Helpers.php"
  5083. ],
  5084. "psr-4": {
  5085. "EasyWeChat\\": "src/"
  5086. }
  5087. },
  5088. "notification-url": "https://packagist.org/downloads/",
  5089. "license": [
  5090. "MIT"
  5091. ],
  5092. "authors": [
  5093. {
  5094. "name": "overtrue",
  5095. "email": "anzhengchao@gmail.com"
  5096. }
  5097. ],
  5098. "description": "微信SDK",
  5099. "keywords": [
  5100. "easywechat",
  5101. "sdk",
  5102. "wechat",
  5103. "weixin",
  5104. "weixin-sdk"
  5105. ],
  5106. "support": {
  5107. "issues": "https://github.com/w7corp/easywechat/issues",
  5108. "source": "https://github.com/w7corp/easywechat/tree/4.5.0"
  5109. },
  5110. "funding": [
  5111. {
  5112. "url": "https://github.com/overtrue",
  5113. "type": "github"
  5114. }
  5115. ],
  5116. "time": "2021-12-27T13:56:47+00:00"
  5117. },
  5118. {
  5119. "name": "php-open-source-saver/jwt-auth",
  5120. "version": "1.4.2",
  5121. "source": {
  5122. "type": "git",
  5123. "url": "https://github.com/PHP-Open-Source-Saver/jwt-auth.git",
  5124. "reference": "5fd8c185453d875835c24d4ce50be7396af6ae14"
  5125. },
  5126. "dist": {
  5127. "type": "zip",
  5128. "url": "https://api.github.com/repos/PHP-Open-Source-Saver/jwt-auth/zipball/5fd8c185453d875835c24d4ce50be7396af6ae14",
  5129. "reference": "5fd8c185453d875835c24d4ce50be7396af6ae14",
  5130. "shasum": "",
  5131. "mirrors": [
  5132. {
  5133. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5134. "preferred": true
  5135. }
  5136. ]
  5137. },
  5138. "require": {
  5139. "ext-json": "*",
  5140. "illuminate/auth": "^6|^7|^8.67|^9",
  5141. "illuminate/contracts": "^6|^7|^8.67|^9",
  5142. "illuminate/http": "^6|^7|^8.67|^9",
  5143. "illuminate/support": "^6|^7|^8.67|^9",
  5144. "lcobucci/jwt": "^4.0",
  5145. "namshi/jose": "^7.0",
  5146. "nesbot/carbon": "^1.0|^2.0",
  5147. "php": "^7.4|^8.0"
  5148. },
  5149. "require-dev": {
  5150. "friendsofphp/php-cs-fixer": "^3",
  5151. "illuminate/console": "^6|^7|^8.67|^9",
  5152. "illuminate/routing": "^6|^7|^8.67|^9",
  5153. "mockery/mockery": "^1.4.4",
  5154. "orchestra/testbench": "^4.18|^5.8|^6.3|^7",
  5155. "phpstan/phpstan": "^1",
  5156. "phpunit/phpunit": "^8.5|^9.4",
  5157. "rector/rector": "^0.12.4",
  5158. "vlucas/phpdotenv": "^5.2.0",
  5159. "yoast/phpunit-polyfills": "^1.0.2"
  5160. },
  5161. "type": "library",
  5162. "extra": {
  5163. "branch-alias": {
  5164. "dev-develop": "1.0-dev"
  5165. },
  5166. "laravel": {
  5167. "aliases": {
  5168. "JWTAuth": "PHPOpenSourceSaver\\JWTAuth\\Facades\\JWTAuth",
  5169. "JWTFactory": "PHPOpenSourceSaver\\JWTAuth\\Facades\\JWTFactory"
  5170. },
  5171. "providers": [
  5172. "PHPOpenSourceSaver\\JWTAuth\\Providers\\LaravelServiceProvider"
  5173. ]
  5174. }
  5175. },
  5176. "autoload": {
  5177. "psr-4": {
  5178. "PHPOpenSourceSaver\\JWTAuth\\": "src/"
  5179. }
  5180. },
  5181. "notification-url": "https://packagist.org/downloads/",
  5182. "license": [
  5183. "MIT"
  5184. ],
  5185. "authors": [
  5186. {
  5187. "name": "Sean Tymon",
  5188. "email": "tymon148@gmail.com",
  5189. "homepage": "https://tymon.xyz",
  5190. "role": "Forked package creator | Developer"
  5191. },
  5192. {
  5193. "name": "Eric Schricker",
  5194. "email": "eric.schricker@adiutabyte.de",
  5195. "role": "Developer"
  5196. },
  5197. {
  5198. "name": "Fabio William Conceição",
  5199. "email": "messhias@gmail.com",
  5200. "role": "Developer"
  5201. }
  5202. ],
  5203. "description": "JSON Web Token Authentication for Laravel and Lumen",
  5204. "homepage": "https://github.com/PHP-Open-Source-Saver/jwt-auth",
  5205. "keywords": [
  5206. "Authentication",
  5207. "JSON Web Token",
  5208. "auth",
  5209. "jwt",
  5210. "laravel"
  5211. ],
  5212. "support": {
  5213. "issues": "https://github.com/PHP-Open-Source-Saver/jwt-auth/issues",
  5214. "source": "https://github.com/PHP-Open-Source-Saver/jwt-auth"
  5215. },
  5216. "time": "2022-04-22T06:31:30+00:00"
  5217. },
  5218. {
  5219. "name": "phpdocumentor/reflection-common",
  5220. "version": "2.2.0",
  5221. "source": {
  5222. "type": "git",
  5223. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  5224. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  5225. },
  5226. "dist": {
  5227. "type": "zip",
  5228. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  5229. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  5230. "shasum": "",
  5231. "mirrors": [
  5232. {
  5233. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5234. "preferred": true
  5235. }
  5236. ]
  5237. },
  5238. "require": {
  5239. "php": "^7.2 || ^8.0"
  5240. },
  5241. "type": "library",
  5242. "extra": {
  5243. "branch-alias": {
  5244. "dev-2.x": "2.x-dev"
  5245. }
  5246. },
  5247. "autoload": {
  5248. "psr-4": {
  5249. "phpDocumentor\\Reflection\\": "src/"
  5250. }
  5251. },
  5252. "notification-url": "https://packagist.org/downloads/",
  5253. "license": [
  5254. "MIT"
  5255. ],
  5256. "authors": [
  5257. {
  5258. "name": "Jaap van Otterdijk",
  5259. "email": "opensource@ijaap.nl"
  5260. }
  5261. ],
  5262. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  5263. "homepage": "http://www.phpdoc.org",
  5264. "keywords": [
  5265. "FQSEN",
  5266. "phpDocumentor",
  5267. "phpdoc",
  5268. "reflection",
  5269. "static analysis"
  5270. ],
  5271. "support": {
  5272. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  5273. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  5274. },
  5275. "time": "2020-06-27T09:03:43+00:00"
  5276. },
  5277. {
  5278. "name": "phpdocumentor/reflection-docblock",
  5279. "version": "5.3.0",
  5280. "source": {
  5281. "type": "git",
  5282. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  5283. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170"
  5284. },
  5285. "dist": {
  5286. "type": "zip",
  5287. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170",
  5288. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170",
  5289. "shasum": "",
  5290. "mirrors": [
  5291. {
  5292. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5293. "preferred": true
  5294. }
  5295. ]
  5296. },
  5297. "require": {
  5298. "ext-filter": "*",
  5299. "php": "^7.2 || ^8.0",
  5300. "phpdocumentor/reflection-common": "^2.2",
  5301. "phpdocumentor/type-resolver": "^1.3",
  5302. "webmozart/assert": "^1.9.1"
  5303. },
  5304. "require-dev": {
  5305. "mockery/mockery": "~1.3.2",
  5306. "psalm/phar": "^4.8"
  5307. },
  5308. "type": "library",
  5309. "extra": {
  5310. "branch-alias": {
  5311. "dev-master": "5.x-dev"
  5312. }
  5313. },
  5314. "autoload": {
  5315. "psr-4": {
  5316. "phpDocumentor\\Reflection\\": "src"
  5317. }
  5318. },
  5319. "notification-url": "https://packagist.org/downloads/",
  5320. "license": [
  5321. "MIT"
  5322. ],
  5323. "authors": [
  5324. {
  5325. "name": "Mike van Riel",
  5326. "email": "me@mikevanriel.com"
  5327. },
  5328. {
  5329. "name": "Jaap van Otterdijk",
  5330. "email": "account@ijaap.nl"
  5331. }
  5332. ],
  5333. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  5334. "support": {
  5335. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  5336. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0"
  5337. },
  5338. "time": "2021-10-19T17:43:47+00:00"
  5339. },
  5340. {
  5341. "name": "phpdocumentor/type-resolver",
  5342. "version": "1.6.1",
  5343. "source": {
  5344. "type": "git",
  5345. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  5346. "reference": "77a32518733312af16a44300404e945338981de3"
  5347. },
  5348. "dist": {
  5349. "type": "zip",
  5350. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/77a32518733312af16a44300404e945338981de3",
  5351. "reference": "77a32518733312af16a44300404e945338981de3",
  5352. "shasum": "",
  5353. "mirrors": [
  5354. {
  5355. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5356. "preferred": true
  5357. }
  5358. ]
  5359. },
  5360. "require": {
  5361. "php": "^7.2 || ^8.0",
  5362. "phpdocumentor/reflection-common": "^2.0"
  5363. },
  5364. "require-dev": {
  5365. "ext-tokenizer": "*",
  5366. "psalm/phar": "^4.8"
  5367. },
  5368. "type": "library",
  5369. "extra": {
  5370. "branch-alias": {
  5371. "dev-1.x": "1.x-dev"
  5372. }
  5373. },
  5374. "autoload": {
  5375. "psr-4": {
  5376. "phpDocumentor\\Reflection\\": "src"
  5377. }
  5378. },
  5379. "notification-url": "https://packagist.org/downloads/",
  5380. "license": [
  5381. "MIT"
  5382. ],
  5383. "authors": [
  5384. {
  5385. "name": "Mike van Riel",
  5386. "email": "me@mikevanriel.com"
  5387. }
  5388. ],
  5389. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  5390. "support": {
  5391. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  5392. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.6.1"
  5393. },
  5394. "time": "2022-03-15T21:29:03+00:00"
  5395. },
  5396. {
  5397. "name": "phpoption/phpoption",
  5398. "version": "1.8.1",
  5399. "source": {
  5400. "type": "git",
  5401. "url": "https://github.com/schmittjoh/php-option.git",
  5402. "reference": "eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15"
  5403. },
  5404. "dist": {
  5405. "type": "zip",
  5406. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15",
  5407. "reference": "eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15",
  5408. "shasum": "",
  5409. "mirrors": [
  5410. {
  5411. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5412. "preferred": true
  5413. }
  5414. ]
  5415. },
  5416. "require": {
  5417. "php": "^7.0 || ^8.0"
  5418. },
  5419. "require-dev": {
  5420. "bamarni/composer-bin-plugin": "^1.4.1",
  5421. "phpunit/phpunit": "^6.5.14 || ^7.5.20 || ^8.5.19 || ^9.5.8"
  5422. },
  5423. "type": "library",
  5424. "extra": {
  5425. "branch-alias": {
  5426. "dev-master": "1.8-dev"
  5427. }
  5428. },
  5429. "autoload": {
  5430. "psr-4": {
  5431. "PhpOption\\": "src/PhpOption/"
  5432. }
  5433. },
  5434. "notification-url": "https://packagist.org/downloads/",
  5435. "license": [
  5436. "Apache-2.0"
  5437. ],
  5438. "authors": [
  5439. {
  5440. "name": "Johannes M. Schmitt",
  5441. "email": "schmittjoh@gmail.com",
  5442. "homepage": "https://github.com/schmittjoh"
  5443. },
  5444. {
  5445. "name": "Graham Campbell",
  5446. "email": "hello@gjcampbell.co.uk",
  5447. "homepage": "https://github.com/GrahamCampbell"
  5448. }
  5449. ],
  5450. "description": "Option Type for PHP",
  5451. "keywords": [
  5452. "language",
  5453. "option",
  5454. "php",
  5455. "type"
  5456. ],
  5457. "support": {
  5458. "issues": "https://github.com/schmittjoh/php-option/issues",
  5459. "source": "https://github.com/schmittjoh/php-option/tree/1.8.1"
  5460. },
  5461. "funding": [
  5462. {
  5463. "url": "https://github.com/GrahamCampbell",
  5464. "type": "github"
  5465. },
  5466. {
  5467. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  5468. "type": "tidelift"
  5469. }
  5470. ],
  5471. "time": "2021-12-04T23:24:31+00:00"
  5472. },
  5473. {
  5474. "name": "pimple/pimple",
  5475. "version": "v3.5.0",
  5476. "source": {
  5477. "type": "git",
  5478. "url": "https://github.com/silexphp/Pimple.git",
  5479. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed"
  5480. },
  5481. "dist": {
  5482. "type": "zip",
  5483. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  5484. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  5485. "shasum": "",
  5486. "mirrors": [
  5487. {
  5488. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5489. "preferred": true
  5490. }
  5491. ]
  5492. },
  5493. "require": {
  5494. "php": ">=7.2.5",
  5495. "psr/container": "^1.1 || ^2.0"
  5496. },
  5497. "require-dev": {
  5498. "symfony/phpunit-bridge": "^5.4@dev"
  5499. },
  5500. "type": "library",
  5501. "extra": {
  5502. "branch-alias": {
  5503. "dev-master": "3.4.x-dev"
  5504. }
  5505. },
  5506. "autoload": {
  5507. "psr-0": {
  5508. "Pimple": "src/"
  5509. }
  5510. },
  5511. "notification-url": "https://packagist.org/downloads/",
  5512. "license": [
  5513. "MIT"
  5514. ],
  5515. "authors": [
  5516. {
  5517. "name": "Fabien Potencier",
  5518. "email": "fabien@symfony.com"
  5519. }
  5520. ],
  5521. "description": "Pimple, a simple Dependency Injection Container",
  5522. "homepage": "https://pimple.symfony.com",
  5523. "keywords": [
  5524. "container",
  5525. "dependency injection"
  5526. ],
  5527. "support": {
  5528. "source": "https://github.com/silexphp/Pimple/tree/v3.5.0"
  5529. },
  5530. "time": "2021-10-28T11:13:42+00:00"
  5531. },
  5532. {
  5533. "name": "prettus/l5-repository",
  5534. "version": "2.8.0",
  5535. "source": {
  5536. "type": "git",
  5537. "url": "https://github.com/andersao/l5-repository.git",
  5538. "reference": "bdaf12dcf1fcc2637ccbe06999f789a9ff522fea"
  5539. },
  5540. "dist": {
  5541. "type": "zip",
  5542. "url": "https://api.github.com/repos/andersao/l5-repository/zipball/bdaf12dcf1fcc2637ccbe06999f789a9ff522fea",
  5543. "reference": "bdaf12dcf1fcc2637ccbe06999f789a9ff522fea",
  5544. "shasum": "",
  5545. "mirrors": [
  5546. {
  5547. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5548. "preferred": true
  5549. }
  5550. ]
  5551. },
  5552. "require": {
  5553. "illuminate/config": "~5.0|~6.0|~7.0|^8.0|^9.0",
  5554. "illuminate/console": "~5.0|~6.0|~7.0|^8.0|^9.0",
  5555. "illuminate/database": "~5.0|~6.0|~7.0|^8.0|^9.0",
  5556. "illuminate/filesystem": "~5.0|~6.0|~7.0|^8.0|^9.0",
  5557. "illuminate/http": "~5.0|~6.0|~7.0|^8.0|^9.0",
  5558. "illuminate/pagination": "~5.0|~6.0|~7.0|^8.0|^9.0",
  5559. "illuminate/support": "~5.0|~6.0|~7.0|^8.0|^9.0",
  5560. "illuminate/validation": "~5.0|~6.0|~7.0|^8.0|^9.0",
  5561. "prettus/laravel-validation": "~1.1|~1.2|~1.3|~1.4"
  5562. },
  5563. "suggest": {
  5564. "league/fractal": "Required to use the Fractal Presenter (0.12.*).",
  5565. "prettus/laravel-validation": "Required to provide easy validation with the repository (1.1.*)",
  5566. "robclancy/presenter": "Required to use the Presenter Model (1.3.*)"
  5567. },
  5568. "type": "library",
  5569. "extra": {
  5570. "laravel": {
  5571. "providers": [
  5572. "Prettus\\Repository\\Providers\\RepositoryServiceProvider"
  5573. ]
  5574. }
  5575. },
  5576. "autoload": {
  5577. "psr-4": {
  5578. "Prettus\\Repository\\": "src/Prettus/Repository/"
  5579. }
  5580. },
  5581. "notification-url": "https://packagist.org/downloads/",
  5582. "license": [
  5583. "MIT"
  5584. ],
  5585. "authors": [
  5586. {
  5587. "name": "Anderson Andrade",
  5588. "email": "contato@andersonandra.de",
  5589. "homepage": "http://andersonandra.de",
  5590. "role": "Developer"
  5591. }
  5592. ],
  5593. "description": "Laravel 5|6|7|8|9 - Repositories to the database layer",
  5594. "homepage": "http://andersao.github.io/l5-repository",
  5595. "keywords": [
  5596. "cache",
  5597. "eloquent",
  5598. "laravel",
  5599. "model",
  5600. "repository"
  5601. ],
  5602. "support": {
  5603. "docs": "http://andersao.github.io/l5-repository",
  5604. "email": "contato@andersonandra.de",
  5605. "issues": "https://github.com/andersao/l5-repository/issues",
  5606. "source": "https://github.com/andersao/l5-repository",
  5607. "wiki": "https://github.com/andersao/l5-repository"
  5608. },
  5609. "time": "2022-02-21T11:19:35+00:00"
  5610. },
  5611. {
  5612. "name": "prettus/laravel-validation",
  5613. "version": "1.4.0",
  5614. "source": {
  5615. "type": "git",
  5616. "url": "https://github.com/andersao/laravel-validator.git",
  5617. "reference": "45d6b64e35d966aa0866d6f5fd22ecbb33ea41d9"
  5618. },
  5619. "dist": {
  5620. "type": "zip",
  5621. "url": "https://api.github.com/repos/andersao/laravel-validator/zipball/45d6b64e35d966aa0866d6f5fd22ecbb33ea41d9",
  5622. "reference": "45d6b64e35d966aa0866d6f5fd22ecbb33ea41d9",
  5623. "shasum": "",
  5624. "mirrors": [
  5625. {
  5626. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5627. "preferred": true
  5628. }
  5629. ]
  5630. },
  5631. "require": {
  5632. "illuminate/support": "~5.4|^6.0|^7.0|^8.0|^9.0",
  5633. "illuminate/validation": "~5.4|^6.0|^7.0|^8.0|^9.0",
  5634. "php": ">=5.4.0"
  5635. },
  5636. "type": "library",
  5637. "autoload": {
  5638. "psr-4": {
  5639. "Prettus\\Validator\\": "src/Prettus/Validator/"
  5640. }
  5641. },
  5642. "notification-url": "https://packagist.org/downloads/",
  5643. "authors": [
  5644. {
  5645. "name": "Anderson Andrade",
  5646. "email": "contato@andersonandra.de",
  5647. "homepage": "http://andersonandra.de",
  5648. "role": "Developer"
  5649. }
  5650. ],
  5651. "description": "Laravel Validation Service",
  5652. "homepage": "http://andersao.github.io/laravel-validation",
  5653. "keywords": [
  5654. "laravel",
  5655. "service",
  5656. "validation"
  5657. ],
  5658. "support": {
  5659. "docs": "http://andersao.github.io/laravel-validation",
  5660. "email": "contato@andersonandra.de",
  5661. "issues": "https://github.com/andersao/laravel-validation/issues",
  5662. "source": "https://github.com/andersao/laravel-validation",
  5663. "wiki": "https://github.com/andersao/laravel-validation"
  5664. },
  5665. "time": "2022-02-21T11:18:30+00:00"
  5666. },
  5667. {
  5668. "name": "psr/cache",
  5669. "version": "2.0.0",
  5670. "source": {
  5671. "type": "git",
  5672. "url": "https://github.com/php-fig/cache.git",
  5673. "reference": "213f9dbc5b9bfbc4f8db86d2838dc968752ce13b"
  5674. },
  5675. "dist": {
  5676. "type": "zip",
  5677. "url": "https://api.github.com/repos/php-fig/cache/zipball/213f9dbc5b9bfbc4f8db86d2838dc968752ce13b",
  5678. "reference": "213f9dbc5b9bfbc4f8db86d2838dc968752ce13b",
  5679. "shasum": "",
  5680. "mirrors": [
  5681. {
  5682. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5683. "preferred": true
  5684. }
  5685. ]
  5686. },
  5687. "require": {
  5688. "php": ">=8.0.0"
  5689. },
  5690. "type": "library",
  5691. "extra": {
  5692. "branch-alias": {
  5693. "dev-master": "1.0.x-dev"
  5694. }
  5695. },
  5696. "autoload": {
  5697. "psr-4": {
  5698. "Psr\\Cache\\": "src/"
  5699. }
  5700. },
  5701. "notification-url": "https://packagist.org/downloads/",
  5702. "license": [
  5703. "MIT"
  5704. ],
  5705. "authors": [
  5706. {
  5707. "name": "PHP-FIG",
  5708. "homepage": "https://www.php-fig.org/"
  5709. }
  5710. ],
  5711. "description": "Common interface for caching libraries",
  5712. "keywords": [
  5713. "cache",
  5714. "psr",
  5715. "psr-6"
  5716. ],
  5717. "support": {
  5718. "source": "https://github.com/php-fig/cache/tree/2.0.0"
  5719. },
  5720. "time": "2021-02-03T23:23:37+00:00"
  5721. },
  5722. {
  5723. "name": "psr/container",
  5724. "version": "1.1.2",
  5725. "source": {
  5726. "type": "git",
  5727. "url": "https://github.com/php-fig/container.git",
  5728. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  5729. },
  5730. "dist": {
  5731. "type": "zip",
  5732. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  5733. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  5734. "shasum": "",
  5735. "mirrors": [
  5736. {
  5737. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5738. "preferred": true
  5739. }
  5740. ]
  5741. },
  5742. "require": {
  5743. "php": ">=7.4.0"
  5744. },
  5745. "type": "library",
  5746. "autoload": {
  5747. "psr-4": {
  5748. "Psr\\Container\\": "src/"
  5749. }
  5750. },
  5751. "notification-url": "https://packagist.org/downloads/",
  5752. "license": [
  5753. "MIT"
  5754. ],
  5755. "authors": [
  5756. {
  5757. "name": "PHP-FIG",
  5758. "homepage": "https://www.php-fig.org/"
  5759. }
  5760. ],
  5761. "description": "Common Container Interface (PHP FIG PSR-11)",
  5762. "homepage": "https://github.com/php-fig/container",
  5763. "keywords": [
  5764. "PSR-11",
  5765. "container",
  5766. "container-interface",
  5767. "container-interop",
  5768. "psr"
  5769. ],
  5770. "support": {
  5771. "issues": "https://github.com/php-fig/container/issues",
  5772. "source": "https://github.com/php-fig/container/tree/1.1.2"
  5773. },
  5774. "time": "2021-11-05T16:50:12+00:00"
  5775. },
  5776. {
  5777. "name": "psr/event-dispatcher",
  5778. "version": "1.0.0",
  5779. "source": {
  5780. "type": "git",
  5781. "url": "https://github.com/php-fig/event-dispatcher.git",
  5782. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  5783. },
  5784. "dist": {
  5785. "type": "zip",
  5786. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5787. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5788. "shasum": "",
  5789. "mirrors": [
  5790. {
  5791. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5792. "preferred": true
  5793. }
  5794. ]
  5795. },
  5796. "require": {
  5797. "php": ">=7.2.0"
  5798. },
  5799. "type": "library",
  5800. "extra": {
  5801. "branch-alias": {
  5802. "dev-master": "1.0.x-dev"
  5803. }
  5804. },
  5805. "autoload": {
  5806. "psr-4": {
  5807. "Psr\\EventDispatcher\\": "src/"
  5808. }
  5809. },
  5810. "notification-url": "https://packagist.org/downloads/",
  5811. "license": [
  5812. "MIT"
  5813. ],
  5814. "authors": [
  5815. {
  5816. "name": "PHP-FIG",
  5817. "homepage": "http://www.php-fig.org/"
  5818. }
  5819. ],
  5820. "description": "Standard interfaces for event handling.",
  5821. "keywords": [
  5822. "events",
  5823. "psr",
  5824. "psr-14"
  5825. ],
  5826. "support": {
  5827. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  5828. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  5829. },
  5830. "time": "2019-01-08T18:20:26+00:00"
  5831. },
  5832. {
  5833. "name": "psr/http-client",
  5834. "version": "1.0.1",
  5835. "source": {
  5836. "type": "git",
  5837. "url": "https://github.com/php-fig/http-client.git",
  5838. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  5839. },
  5840. "dist": {
  5841. "type": "zip",
  5842. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  5843. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  5844. "shasum": "",
  5845. "mirrors": [
  5846. {
  5847. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5848. "preferred": true
  5849. }
  5850. ]
  5851. },
  5852. "require": {
  5853. "php": "^7.0 || ^8.0",
  5854. "psr/http-message": "^1.0"
  5855. },
  5856. "type": "library",
  5857. "extra": {
  5858. "branch-alias": {
  5859. "dev-master": "1.0.x-dev"
  5860. }
  5861. },
  5862. "autoload": {
  5863. "psr-4": {
  5864. "Psr\\Http\\Client\\": "src/"
  5865. }
  5866. },
  5867. "notification-url": "https://packagist.org/downloads/",
  5868. "license": [
  5869. "MIT"
  5870. ],
  5871. "authors": [
  5872. {
  5873. "name": "PHP-FIG",
  5874. "homepage": "http://www.php-fig.org/"
  5875. }
  5876. ],
  5877. "description": "Common interface for HTTP clients",
  5878. "homepage": "https://github.com/php-fig/http-client",
  5879. "keywords": [
  5880. "http",
  5881. "http-client",
  5882. "psr",
  5883. "psr-18"
  5884. ],
  5885. "support": {
  5886. "source": "https://github.com/php-fig/http-client/tree/master"
  5887. },
  5888. "time": "2020-06-29T06:28:15+00:00"
  5889. },
  5890. {
  5891. "name": "psr/http-factory",
  5892. "version": "1.0.1",
  5893. "source": {
  5894. "type": "git",
  5895. "url": "https://github.com/php-fig/http-factory.git",
  5896. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  5897. },
  5898. "dist": {
  5899. "type": "zip",
  5900. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  5901. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  5902. "shasum": "",
  5903. "mirrors": [
  5904. {
  5905. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5906. "preferred": true
  5907. }
  5908. ]
  5909. },
  5910. "require": {
  5911. "php": ">=7.0.0",
  5912. "psr/http-message": "^1.0"
  5913. },
  5914. "type": "library",
  5915. "extra": {
  5916. "branch-alias": {
  5917. "dev-master": "1.0.x-dev"
  5918. }
  5919. },
  5920. "autoload": {
  5921. "psr-4": {
  5922. "Psr\\Http\\Message\\": "src/"
  5923. }
  5924. },
  5925. "notification-url": "https://packagist.org/downloads/",
  5926. "license": [
  5927. "MIT"
  5928. ],
  5929. "authors": [
  5930. {
  5931. "name": "PHP-FIG",
  5932. "homepage": "http://www.php-fig.org/"
  5933. }
  5934. ],
  5935. "description": "Common interfaces for PSR-7 HTTP message factories",
  5936. "keywords": [
  5937. "factory",
  5938. "http",
  5939. "message",
  5940. "psr",
  5941. "psr-17",
  5942. "psr-7",
  5943. "request",
  5944. "response"
  5945. ],
  5946. "support": {
  5947. "source": "https://github.com/php-fig/http-factory/tree/master"
  5948. },
  5949. "time": "2019-04-30T12:38:16+00:00"
  5950. },
  5951. {
  5952. "name": "psr/http-message",
  5953. "version": "1.0.1",
  5954. "source": {
  5955. "type": "git",
  5956. "url": "https://github.com/php-fig/http-message.git",
  5957. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  5958. },
  5959. "dist": {
  5960. "type": "zip",
  5961. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  5962. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  5963. "shasum": "",
  5964. "mirrors": [
  5965. {
  5966. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5967. "preferred": true
  5968. }
  5969. ]
  5970. },
  5971. "require": {
  5972. "php": ">=5.3.0"
  5973. },
  5974. "type": "library",
  5975. "extra": {
  5976. "branch-alias": {
  5977. "dev-master": "1.0.x-dev"
  5978. }
  5979. },
  5980. "autoload": {
  5981. "psr-4": {
  5982. "Psr\\Http\\Message\\": "src/"
  5983. }
  5984. },
  5985. "notification-url": "https://packagist.org/downloads/",
  5986. "license": [
  5987. "MIT"
  5988. ],
  5989. "authors": [
  5990. {
  5991. "name": "PHP-FIG",
  5992. "homepage": "http://www.php-fig.org/"
  5993. }
  5994. ],
  5995. "description": "Common interface for HTTP messages",
  5996. "homepage": "https://github.com/php-fig/http-message",
  5997. "keywords": [
  5998. "http",
  5999. "http-message",
  6000. "psr",
  6001. "psr-7",
  6002. "request",
  6003. "response"
  6004. ],
  6005. "support": {
  6006. "source": "https://github.com/php-fig/http-message/tree/master"
  6007. },
  6008. "time": "2016-08-06T14:39:51+00:00"
  6009. },
  6010. {
  6011. "name": "psr/log",
  6012. "version": "2.0.0",
  6013. "source": {
  6014. "type": "git",
  6015. "url": "https://github.com/php-fig/log.git",
  6016. "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376"
  6017. },
  6018. "dist": {
  6019. "type": "zip",
  6020. "url": "https://api.github.com/repos/php-fig/log/zipball/ef29f6d262798707a9edd554e2b82517ef3a9376",
  6021. "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376",
  6022. "shasum": "",
  6023. "mirrors": [
  6024. {
  6025. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6026. "preferred": true
  6027. }
  6028. ]
  6029. },
  6030. "require": {
  6031. "php": ">=8.0.0"
  6032. },
  6033. "type": "library",
  6034. "extra": {
  6035. "branch-alias": {
  6036. "dev-master": "2.0.x-dev"
  6037. }
  6038. },
  6039. "autoload": {
  6040. "psr-4": {
  6041. "Psr\\Log\\": "src"
  6042. }
  6043. },
  6044. "notification-url": "https://packagist.org/downloads/",
  6045. "license": [
  6046. "MIT"
  6047. ],
  6048. "authors": [
  6049. {
  6050. "name": "PHP-FIG",
  6051. "homepage": "https://www.php-fig.org/"
  6052. }
  6053. ],
  6054. "description": "Common interface for logging libraries",
  6055. "homepage": "https://github.com/php-fig/log",
  6056. "keywords": [
  6057. "log",
  6058. "psr",
  6059. "psr-3"
  6060. ],
  6061. "support": {
  6062. "source": "https://github.com/php-fig/log/tree/2.0.0"
  6063. },
  6064. "time": "2021-07-14T16:41:46+00:00"
  6065. },
  6066. {
  6067. "name": "psr/simple-cache",
  6068. "version": "1.0.1",
  6069. "source": {
  6070. "type": "git",
  6071. "url": "https://github.com/php-fig/simple-cache.git",
  6072. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  6073. },
  6074. "dist": {
  6075. "type": "zip",
  6076. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  6077. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  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": ">=5.3.0"
  6088. },
  6089. "type": "library",
  6090. "extra": {
  6091. "branch-alias": {
  6092. "dev-master": "1.0.x-dev"
  6093. }
  6094. },
  6095. "autoload": {
  6096. "psr-4": {
  6097. "Psr\\SimpleCache\\": "src/"
  6098. }
  6099. },
  6100. "notification-url": "https://packagist.org/downloads/",
  6101. "license": [
  6102. "MIT"
  6103. ],
  6104. "authors": [
  6105. {
  6106. "name": "PHP-FIG",
  6107. "homepage": "http://www.php-fig.org/"
  6108. }
  6109. ],
  6110. "description": "Common interfaces for simple caching",
  6111. "keywords": [
  6112. "cache",
  6113. "caching",
  6114. "psr",
  6115. "psr-16",
  6116. "simple-cache"
  6117. ],
  6118. "support": {
  6119. "source": "https://github.com/php-fig/simple-cache/tree/master"
  6120. },
  6121. "time": "2017-10-23T01:57:42+00:00"
  6122. },
  6123. {
  6124. "name": "psy/psysh",
  6125. "version": "v0.11.6",
  6126. "source": {
  6127. "type": "git",
  6128. "url": "https://github.com/bobthecow/psysh.git",
  6129. "reference": "3f5b5f8aaa979fbd0d1783173f4c82ad529fe621"
  6130. },
  6131. "dist": {
  6132. "type": "zip",
  6133. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/3f5b5f8aaa979fbd0d1783173f4c82ad529fe621",
  6134. "reference": "3f5b5f8aaa979fbd0d1783173f4c82ad529fe621",
  6135. "shasum": "",
  6136. "mirrors": [
  6137. {
  6138. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6139. "preferred": true
  6140. }
  6141. ]
  6142. },
  6143. "require": {
  6144. "ext-json": "*",
  6145. "ext-tokenizer": "*",
  6146. "nikic/php-parser": "^4.0 || ^3.1",
  6147. "php": "^8.0 || ^7.0.8",
  6148. "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
  6149. "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
  6150. },
  6151. "conflict": {
  6152. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  6153. },
  6154. "require-dev": {
  6155. "bamarni/composer-bin-plugin": "^1.2"
  6156. },
  6157. "suggest": {
  6158. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  6159. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  6160. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  6161. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history."
  6162. },
  6163. "bin": [
  6164. "bin/psysh"
  6165. ],
  6166. "type": "library",
  6167. "extra": {
  6168. "branch-alias": {
  6169. "dev-main": "0.11.x-dev"
  6170. }
  6171. },
  6172. "autoload": {
  6173. "files": [
  6174. "src/functions.php"
  6175. ],
  6176. "psr-4": {
  6177. "Psy\\": "src/"
  6178. }
  6179. },
  6180. "notification-url": "https://packagist.org/downloads/",
  6181. "license": [
  6182. "MIT"
  6183. ],
  6184. "authors": [
  6185. {
  6186. "name": "Justin Hileman",
  6187. "email": "justin@justinhileman.info",
  6188. "homepage": "http://justinhileman.com"
  6189. }
  6190. ],
  6191. "description": "An interactive shell for modern PHP.",
  6192. "homepage": "http://psysh.org",
  6193. "keywords": [
  6194. "REPL",
  6195. "console",
  6196. "interactive",
  6197. "shell"
  6198. ],
  6199. "support": {
  6200. "issues": "https://github.com/bobthecow/psysh/issues",
  6201. "source": "https://github.com/bobthecow/psysh/tree/v0.11.6"
  6202. },
  6203. "time": "2022-07-03T16:40:23+00:00"
  6204. },
  6205. {
  6206. "name": "ralouphie/getallheaders",
  6207. "version": "3.0.3",
  6208. "source": {
  6209. "type": "git",
  6210. "url": "https://github.com/ralouphie/getallheaders.git",
  6211. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  6212. },
  6213. "dist": {
  6214. "type": "zip",
  6215. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  6216. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  6217. "shasum": "",
  6218. "mirrors": [
  6219. {
  6220. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6221. "preferred": true
  6222. }
  6223. ]
  6224. },
  6225. "require": {
  6226. "php": ">=5.6"
  6227. },
  6228. "require-dev": {
  6229. "php-coveralls/php-coveralls": "^2.1",
  6230. "phpunit/phpunit": "^5 || ^6.5"
  6231. },
  6232. "type": "library",
  6233. "autoload": {
  6234. "files": [
  6235. "src/getallheaders.php"
  6236. ]
  6237. },
  6238. "notification-url": "https://packagist.org/downloads/",
  6239. "license": [
  6240. "MIT"
  6241. ],
  6242. "authors": [
  6243. {
  6244. "name": "Ralph Khattar",
  6245. "email": "ralph.khattar@gmail.com"
  6246. }
  6247. ],
  6248. "description": "A polyfill for getallheaders.",
  6249. "support": {
  6250. "issues": "https://github.com/ralouphie/getallheaders/issues",
  6251. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  6252. },
  6253. "time": "2019-03-08T08:55:37+00:00"
  6254. },
  6255. {
  6256. "name": "ramsey/collection",
  6257. "version": "1.2.2",
  6258. "source": {
  6259. "type": "git",
  6260. "url": "https://github.com/ramsey/collection.git",
  6261. "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a"
  6262. },
  6263. "dist": {
  6264. "type": "zip",
  6265. "url": "https://api.github.com/repos/ramsey/collection/zipball/cccc74ee5e328031b15640b51056ee8d3bb66c0a",
  6266. "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a",
  6267. "shasum": "",
  6268. "mirrors": [
  6269. {
  6270. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6271. "preferred": true
  6272. }
  6273. ]
  6274. },
  6275. "require": {
  6276. "php": "^7.3 || ^8",
  6277. "symfony/polyfill-php81": "^1.23"
  6278. },
  6279. "require-dev": {
  6280. "captainhook/captainhook": "^5.3",
  6281. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  6282. "ergebnis/composer-normalize": "^2.6",
  6283. "fakerphp/faker": "^1.5",
  6284. "hamcrest/hamcrest-php": "^2",
  6285. "jangregor/phpstan-prophecy": "^0.8",
  6286. "mockery/mockery": "^1.3",
  6287. "phpspec/prophecy-phpunit": "^2.0",
  6288. "phpstan/extension-installer": "^1",
  6289. "phpstan/phpstan": "^0.12.32",
  6290. "phpstan/phpstan-mockery": "^0.12.5",
  6291. "phpstan/phpstan-phpunit": "^0.12.11",
  6292. "phpunit/phpunit": "^8.5 || ^9",
  6293. "psy/psysh": "^0.10.4",
  6294. "slevomat/coding-standard": "^6.3",
  6295. "squizlabs/php_codesniffer": "^3.5",
  6296. "vimeo/psalm": "^4.4"
  6297. },
  6298. "type": "library",
  6299. "autoload": {
  6300. "psr-4": {
  6301. "Ramsey\\Collection\\": "src/"
  6302. }
  6303. },
  6304. "notification-url": "https://packagist.org/downloads/",
  6305. "license": [
  6306. "MIT"
  6307. ],
  6308. "authors": [
  6309. {
  6310. "name": "Ben Ramsey",
  6311. "email": "ben@benramsey.com",
  6312. "homepage": "https://benramsey.com"
  6313. }
  6314. ],
  6315. "description": "A PHP library for representing and manipulating collections.",
  6316. "keywords": [
  6317. "array",
  6318. "collection",
  6319. "hash",
  6320. "map",
  6321. "queue",
  6322. "set"
  6323. ],
  6324. "support": {
  6325. "issues": "https://github.com/ramsey/collection/issues",
  6326. "source": "https://github.com/ramsey/collection/tree/1.2.2"
  6327. },
  6328. "funding": [
  6329. {
  6330. "url": "https://github.com/ramsey",
  6331. "type": "github"
  6332. },
  6333. {
  6334. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  6335. "type": "tidelift"
  6336. }
  6337. ],
  6338. "time": "2021-10-10T03:01:02+00:00"
  6339. },
  6340. {
  6341. "name": "ramsey/uuid",
  6342. "version": "4.3.1",
  6343. "source": {
  6344. "type": "git",
  6345. "url": "https://github.com/ramsey/uuid.git",
  6346. "reference": "8505afd4fea63b81a85d3b7b53ac3cb8dc347c28"
  6347. },
  6348. "dist": {
  6349. "type": "zip",
  6350. "url": "https://api.github.com/repos/ramsey/uuid/zipball/8505afd4fea63b81a85d3b7b53ac3cb8dc347c28",
  6351. "reference": "8505afd4fea63b81a85d3b7b53ac3cb8dc347c28",
  6352. "shasum": "",
  6353. "mirrors": [
  6354. {
  6355. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6356. "preferred": true
  6357. }
  6358. ]
  6359. },
  6360. "require": {
  6361. "brick/math": "^0.8 || ^0.9",
  6362. "ext-ctype": "*",
  6363. "ext-json": "*",
  6364. "php": "^8.0",
  6365. "ramsey/collection": "^1.0"
  6366. },
  6367. "replace": {
  6368. "rhumsaa/uuid": "self.version"
  6369. },
  6370. "require-dev": {
  6371. "captainhook/captainhook": "^5.10",
  6372. "captainhook/plugin-composer": "^5.3",
  6373. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  6374. "doctrine/annotations": "^1.8",
  6375. "ergebnis/composer-normalize": "^2.15",
  6376. "mockery/mockery": "^1.3",
  6377. "moontoast/math": "^1.1",
  6378. "paragonie/random-lib": "^2",
  6379. "php-mock/php-mock": "^2.2",
  6380. "php-mock/php-mock-mockery": "^1.3",
  6381. "php-parallel-lint/php-parallel-lint": "^1.1",
  6382. "phpbench/phpbench": "^1.0",
  6383. "phpstan/extension-installer": "^1.0",
  6384. "phpstan/phpstan": "^0.12",
  6385. "phpstan/phpstan-mockery": "^0.12",
  6386. "phpstan/phpstan-phpunit": "^0.12",
  6387. "phpunit/phpunit": "^8.5 || ^9",
  6388. "slevomat/coding-standard": "^7.0",
  6389. "squizlabs/php_codesniffer": "^3.5",
  6390. "vimeo/psalm": "^4.9"
  6391. },
  6392. "suggest": {
  6393. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  6394. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  6395. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  6396. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  6397. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  6398. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  6399. },
  6400. "type": "library",
  6401. "extra": {
  6402. "captainhook": {
  6403. "force-install": true
  6404. }
  6405. },
  6406. "autoload": {
  6407. "files": [
  6408. "src/functions.php"
  6409. ],
  6410. "psr-4": {
  6411. "Ramsey\\Uuid\\": "src/"
  6412. }
  6413. },
  6414. "notification-url": "https://packagist.org/downloads/",
  6415. "license": [
  6416. "MIT"
  6417. ],
  6418. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  6419. "keywords": [
  6420. "guid",
  6421. "identifier",
  6422. "uuid"
  6423. ],
  6424. "support": {
  6425. "issues": "https://github.com/ramsey/uuid/issues",
  6426. "source": "https://github.com/ramsey/uuid/tree/4.3.1"
  6427. },
  6428. "funding": [
  6429. {
  6430. "url": "https://github.com/ramsey",
  6431. "type": "github"
  6432. },
  6433. {
  6434. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  6435. "type": "tidelift"
  6436. }
  6437. ],
  6438. "time": "2022-03-27T21:42:02+00:00"
  6439. },
  6440. {
  6441. "name": "socialiteproviders/facebook",
  6442. "version": "4.1.0",
  6443. "source": {
  6444. "type": "git",
  6445. "url": "https://github.com/SocialiteProviders/Facebook.git",
  6446. "reference": "9b94a9334b5d0f61de8f5a20928d63d4d8f4e00d"
  6447. },
  6448. "dist": {
  6449. "type": "zip",
  6450. "url": "https://api.github.com/repos/SocialiteProviders/Facebook/zipball/9b94a9334b5d0f61de8f5a20928d63d4d8f4e00d",
  6451. "reference": "9b94a9334b5d0f61de8f5a20928d63d4d8f4e00d",
  6452. "shasum": "",
  6453. "mirrors": [
  6454. {
  6455. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6456. "preferred": true
  6457. }
  6458. ]
  6459. },
  6460. "require": {
  6461. "ext-json": "*",
  6462. "php": "^7.2 || ^8.0",
  6463. "socialiteproviders/manager": "~4.0"
  6464. },
  6465. "type": "library",
  6466. "autoload": {
  6467. "psr-4": {
  6468. "SocialiteProviders\\Facebook\\": ""
  6469. }
  6470. },
  6471. "notification-url": "https://packagist.org/downloads/",
  6472. "license": [
  6473. "MIT"
  6474. ],
  6475. "authors": [
  6476. {
  6477. "name": "Oleksandr Prypkhan (Alex Wells)",
  6478. "email": "autaut03@googlemail.com"
  6479. }
  6480. ],
  6481. "description": "Facebook (facebook.com) OAuth2 Provider for Laravel Socialite",
  6482. "support": {
  6483. "source": "https://github.com/SocialiteProviders/Facebook/tree/4.1.0"
  6484. },
  6485. "time": "2020-12-01T23:10:59+00:00"
  6486. },
  6487. {
  6488. "name": "socialiteproviders/manager",
  6489. "version": "v4.1.0",
  6490. "source": {
  6491. "type": "git",
  6492. "url": "https://github.com/SocialiteProviders/Manager.git",
  6493. "reference": "4e63afbd26dc45ff263591de2a0970436a6a0bf9"
  6494. },
  6495. "dist": {
  6496. "type": "zip",
  6497. "url": "https://api.github.com/repos/SocialiteProviders/Manager/zipball/4e63afbd26dc45ff263591de2a0970436a6a0bf9",
  6498. "reference": "4e63afbd26dc45ff263591de2a0970436a6a0bf9",
  6499. "shasum": "",
  6500. "mirrors": [
  6501. {
  6502. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6503. "preferred": true
  6504. }
  6505. ]
  6506. },
  6507. "require": {
  6508. "illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.0",
  6509. "laravel/socialite": "~4.0 || ~5.0",
  6510. "php": "^7.2 || ^8.0"
  6511. },
  6512. "require-dev": {
  6513. "mockery/mockery": "^1.2",
  6514. "phpunit/phpunit": "^6.0 || ^9.0"
  6515. },
  6516. "type": "library",
  6517. "extra": {
  6518. "laravel": {
  6519. "providers": [
  6520. "SocialiteProviders\\Manager\\ServiceProvider"
  6521. ]
  6522. }
  6523. },
  6524. "autoload": {
  6525. "psr-4": {
  6526. "SocialiteProviders\\Manager\\": "src/"
  6527. }
  6528. },
  6529. "notification-url": "https://packagist.org/downloads/",
  6530. "license": [
  6531. "MIT"
  6532. ],
  6533. "authors": [
  6534. {
  6535. "name": "Andy Wendt",
  6536. "email": "andy@awendt.com"
  6537. },
  6538. {
  6539. "name": "Anton Komarev",
  6540. "email": "a.komarev@cybercog.su"
  6541. },
  6542. {
  6543. "name": "Miguel Piedrafita",
  6544. "email": "soy@miguelpiedrafita.com"
  6545. },
  6546. {
  6547. "name": "atymic",
  6548. "email": "atymicq@gmail.com",
  6549. "homepage": "https://atymic.dev"
  6550. }
  6551. ],
  6552. "description": "Easily add new or override built-in providers in Laravel Socialite.",
  6553. "homepage": "https://socialiteproviders.com",
  6554. "keywords": [
  6555. "laravel",
  6556. "manager",
  6557. "oauth",
  6558. "providers",
  6559. "socialite"
  6560. ],
  6561. "support": {
  6562. "issues": "https://github.com/socialiteproviders/manager/issues",
  6563. "source": "https://github.com/socialiteproviders/manager"
  6564. },
  6565. "time": "2022-01-23T22:40:23+00:00"
  6566. },
  6567. {
  6568. "name": "socialiteproviders/weixin",
  6569. "version": "4.1.0",
  6570. "source": {
  6571. "type": "git",
  6572. "url": "https://github.com/SocialiteProviders/Weixin.git",
  6573. "reference": "4f5ca3ee25e1a46e0dc6bb00bd6ba77f344e340f"
  6574. },
  6575. "dist": {
  6576. "type": "zip",
  6577. "url": "https://api.github.com/repos/SocialiteProviders/Weixin/zipball/4f5ca3ee25e1a46e0dc6bb00bd6ba77f344e340f",
  6578. "reference": "4f5ca3ee25e1a46e0dc6bb00bd6ba77f344e340f",
  6579. "shasum": "",
  6580. "mirrors": [
  6581. {
  6582. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6583. "preferred": true
  6584. }
  6585. ]
  6586. },
  6587. "require": {
  6588. "ext-json": "*",
  6589. "php": "^7.2 || ^8.0",
  6590. "socialiteproviders/manager": "~4.0"
  6591. },
  6592. "type": "library",
  6593. "autoload": {
  6594. "psr-4": {
  6595. "SocialiteProviders\\Weixin\\": ""
  6596. }
  6597. },
  6598. "notification-url": "https://packagist.org/downloads/",
  6599. "license": [
  6600. "MIT"
  6601. ],
  6602. "authors": [
  6603. {
  6604. "name": "xyxu",
  6605. "email": "techxu@gmail.com"
  6606. },
  6607. {
  6608. "name": "xiami",
  6609. "email": "jhdxr@php.net"
  6610. }
  6611. ],
  6612. "description": "Weixin OAuth2 Provider for Laravel Socialite",
  6613. "support": {
  6614. "source": "https://github.com/SocialiteProviders/Weixin/tree/4.1.0"
  6615. },
  6616. "time": "2020-12-01T23:10:59+00:00"
  6617. },
  6618. {
  6619. "name": "spatie/eloquent-sortable",
  6620. "version": "4.0.1",
  6621. "source": {
  6622. "type": "git",
  6623. "url": "https://github.com/spatie/eloquent-sortable.git",
  6624. "reference": "64a3365c0d5a7b4a1837b2f29d01ee4c578c416a"
  6625. },
  6626. "dist": {
  6627. "type": "zip",
  6628. "url": "https://api.github.com/repos/spatie/eloquent-sortable/zipball/64a3365c0d5a7b4a1837b2f29d01ee4c578c416a",
  6629. "reference": "64a3365c0d5a7b4a1837b2f29d01ee4c578c416a",
  6630. "shasum": "",
  6631. "mirrors": [
  6632. {
  6633. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6634. "preferred": true
  6635. }
  6636. ]
  6637. },
  6638. "require": {
  6639. "illuminate/database": "^8.0|^9.0",
  6640. "illuminate/support": "^8.0|^9.0",
  6641. "php": "^8.0",
  6642. "spatie/laravel-package-tools": "^1.9"
  6643. },
  6644. "require-dev": {
  6645. "orchestra/testbench": "^6.0|^7.0",
  6646. "phpunit/phpunit": "^9.5"
  6647. },
  6648. "type": "library",
  6649. "extra": {
  6650. "laravel": {
  6651. "providers": [
  6652. "Spatie\\EloquentSortable\\EloquentSortableServiceProvider"
  6653. ]
  6654. }
  6655. },
  6656. "autoload": {
  6657. "psr-4": {
  6658. "Spatie\\EloquentSortable\\": "src/"
  6659. }
  6660. },
  6661. "notification-url": "https://packagist.org/downloads/",
  6662. "license": [
  6663. "MIT"
  6664. ],
  6665. "authors": [
  6666. {
  6667. "name": "Freek Van der Herten",
  6668. "email": "freek@spatie.be"
  6669. }
  6670. ],
  6671. "description": "Sortable behaviour for eloquent models",
  6672. "homepage": "https://github.com/spatie/eloquent-sortable",
  6673. "keywords": [
  6674. "behaviour",
  6675. "eloquent",
  6676. "laravel",
  6677. "model",
  6678. "sort",
  6679. "sortable"
  6680. ],
  6681. "support": {
  6682. "issues": "https://github.com/spatie/eloquent-sortable/issues",
  6683. "source": "https://github.com/spatie/eloquent-sortable/tree/4.0.1"
  6684. },
  6685. "funding": [
  6686. {
  6687. "url": "https://spatie.be/open-source/support-us",
  6688. "type": "custom"
  6689. },
  6690. {
  6691. "url": "https://github.com/spatie",
  6692. "type": "github"
  6693. }
  6694. ],
  6695. "time": "2022-01-21T08:32:41+00:00"
  6696. },
  6697. {
  6698. "name": "spatie/laravel-package-tools",
  6699. "version": "1.12.1",
  6700. "source": {
  6701. "type": "git",
  6702. "url": "https://github.com/spatie/laravel-package-tools.git",
  6703. "reference": "09f80fa240d44fafb1c70657c74ee44ffa929357"
  6704. },
  6705. "dist": {
  6706. "type": "zip",
  6707. "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/09f80fa240d44fafb1c70657c74ee44ffa929357",
  6708. "reference": "09f80fa240d44fafb1c70657c74ee44ffa929357",
  6709. "shasum": "",
  6710. "mirrors": [
  6711. {
  6712. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6713. "preferred": true
  6714. }
  6715. ]
  6716. },
  6717. "require": {
  6718. "illuminate/contracts": "^7.0|^8.0|^9.0",
  6719. "php": "^7.4|^8.0"
  6720. },
  6721. "require-dev": {
  6722. "mockery/mockery": "^1.4",
  6723. "orchestra/testbench": "^5.0|^6.23|^7.0",
  6724. "phpunit/phpunit": "^9.4",
  6725. "spatie/test-time": "^1.2"
  6726. },
  6727. "type": "library",
  6728. "autoload": {
  6729. "psr-4": {
  6730. "Spatie\\LaravelPackageTools\\": "src"
  6731. }
  6732. },
  6733. "notification-url": "https://packagist.org/downloads/",
  6734. "license": [
  6735. "MIT"
  6736. ],
  6737. "authors": [
  6738. {
  6739. "name": "Freek Van der Herten",
  6740. "email": "freek@spatie.be",
  6741. "role": "Developer"
  6742. }
  6743. ],
  6744. "description": "Tools for creating Laravel packages",
  6745. "homepage": "https://github.com/spatie/laravel-package-tools",
  6746. "keywords": [
  6747. "laravel-package-tools",
  6748. "spatie"
  6749. ],
  6750. "support": {
  6751. "issues": "https://github.com/spatie/laravel-package-tools/issues",
  6752. "source": "https://github.com/spatie/laravel-package-tools/tree/1.12.1"
  6753. },
  6754. "funding": [
  6755. {
  6756. "url": "https://github.com/spatie",
  6757. "type": "github"
  6758. }
  6759. ],
  6760. "time": "2022-06-28T14:29:26+00:00"
  6761. },
  6762. {
  6763. "name": "stella-maris/clock",
  6764. "version": "0.1.4",
  6765. "source": {
  6766. "type": "git",
  6767. "url": "https://gitlab.com/stella-maris/clock.git",
  6768. "reference": "8a0a967896df4c63417385dc69328a0aec84d9cf"
  6769. },
  6770. "dist": {
  6771. "type": "zip",
  6772. "url": "https://gitlab.com/api/v4/projects/stella-maris%2Fclock/repository/archive.zip?sha=8a0a967896df4c63417385dc69328a0aec84d9cf",
  6773. "reference": "8a0a967896df4c63417385dc69328a0aec84d9cf",
  6774. "shasum": "",
  6775. "mirrors": [
  6776. {
  6777. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6778. "preferred": true
  6779. }
  6780. ]
  6781. },
  6782. "require": {
  6783. "php": "^7.0|^8.0"
  6784. },
  6785. "type": "library",
  6786. "autoload": {
  6787. "psr-4": {
  6788. "StellaMaris\\Clock\\": "src"
  6789. }
  6790. },
  6791. "notification-url": "https://packagist.org/downloads/",
  6792. "license": [
  6793. "MIT"
  6794. ],
  6795. "authors": [
  6796. {
  6797. "name": "Andreas Heigl",
  6798. "role": "Maintainer"
  6799. }
  6800. ],
  6801. "description": "A pre-release of the proposed PSR-20 Clock-Interface",
  6802. "homepage": "https://gitlab.com/stella-maris/clock",
  6803. "keywords": [
  6804. "clock",
  6805. "datetime",
  6806. "point in time",
  6807. "psr20"
  6808. ],
  6809. "support": {
  6810. "issues": "https://gitlab.com/stella-maris/clock/-/issues",
  6811. "source": "https://gitlab.com/stella-maris/clock/-/tree/0.1.4"
  6812. },
  6813. "time": "2022-04-17T14:12:26+00:00"
  6814. },
  6815. {
  6816. "name": "stomp-php/stomp-php",
  6817. "version": "5.0.0",
  6818. "source": {
  6819. "type": "git",
  6820. "url": "https://github.com/stomp-php/stomp-php.git",
  6821. "reference": "50f6e6e9aa1ba4696faa40cd1cbe180a96679f98"
  6822. },
  6823. "dist": {
  6824. "type": "zip",
  6825. "url": "https://api.github.com/repos/stomp-php/stomp-php/zipball/50f6e6e9aa1ba4696faa40cd1cbe180a96679f98",
  6826. "reference": "50f6e6e9aa1ba4696faa40cd1cbe180a96679f98",
  6827. "shasum": "",
  6828. "mirrors": [
  6829. {
  6830. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6831. "preferred": true
  6832. }
  6833. ]
  6834. },
  6835. "require": {
  6836. "php": "^7.3|^8.0"
  6837. },
  6838. "require-dev": {
  6839. "phpunit/phpunit": "^9.5"
  6840. },
  6841. "type": "library",
  6842. "autoload": {
  6843. "psr-4": {
  6844. "Stomp\\": "src/"
  6845. }
  6846. },
  6847. "notification-url": "https://packagist.org/downloads/",
  6848. "license": [
  6849. "Apache-2.0"
  6850. ],
  6851. "authors": [
  6852. {
  6853. "name": "Dejan Bosnanac",
  6854. "email": "dejan@nighttale.net",
  6855. "homepage": "http://www.nighttale.net"
  6856. },
  6857. {
  6858. "name": "Sören Rohweder",
  6859. "email": "s.rohweder@blage.net",
  6860. "homepage": "http://www.monofone.de"
  6861. },
  6862. {
  6863. "name": "Jens Radtke",
  6864. "email": "swefl@fin-sn.de",
  6865. "homepage": "http://www.fin-sn.de"
  6866. }
  6867. ],
  6868. "description": "stomp support for PHP",
  6869. "homepage": "http://github.com/stomp-php/stomp-php",
  6870. "keywords": [
  6871. "activeMQ",
  6872. "apollomq",
  6873. "jms",
  6874. "messaging",
  6875. "rabbitmq",
  6876. "stomp"
  6877. ],
  6878. "support": {
  6879. "issues": "https://github.com/stomp-php/stomp-php/issues",
  6880. "source": "https://github.com/stomp-php/stomp-php/tree/5.0.0"
  6881. },
  6882. "funding": [
  6883. {
  6884. "url": "https://github.com/jmglsn",
  6885. "type": "github"
  6886. },
  6887. {
  6888. "url": "https://github.com/staabm",
  6889. "type": "github"
  6890. }
  6891. ],
  6892. "time": "2021-02-02T19:25:59+00:00"
  6893. },
  6894. {
  6895. "name": "swiftmailer/swiftmailer",
  6896. "version": "v6.3.0",
  6897. "source": {
  6898. "type": "git",
  6899. "url": "https://github.com/swiftmailer/swiftmailer.git",
  6900. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c"
  6901. },
  6902. "dist": {
  6903. "type": "zip",
  6904. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c",
  6905. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  6906. "shasum": "",
  6907. "mirrors": [
  6908. {
  6909. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6910. "preferred": true
  6911. }
  6912. ]
  6913. },
  6914. "require": {
  6915. "egulias/email-validator": "^2.0|^3.1",
  6916. "php": ">=7.0.0",
  6917. "symfony/polyfill-iconv": "^1.0",
  6918. "symfony/polyfill-intl-idn": "^1.10",
  6919. "symfony/polyfill-mbstring": "^1.0"
  6920. },
  6921. "require-dev": {
  6922. "mockery/mockery": "^1.0",
  6923. "symfony/phpunit-bridge": "^4.4|^5.4"
  6924. },
  6925. "suggest": {
  6926. "ext-intl": "Needed to support internationalized email addresses"
  6927. },
  6928. "type": "library",
  6929. "extra": {
  6930. "branch-alias": {
  6931. "dev-master": "6.2-dev"
  6932. }
  6933. },
  6934. "autoload": {
  6935. "files": [
  6936. "lib/swift_required.php"
  6937. ]
  6938. },
  6939. "notification-url": "https://packagist.org/downloads/",
  6940. "license": [
  6941. "MIT"
  6942. ],
  6943. "authors": [
  6944. {
  6945. "name": "Chris Corbyn"
  6946. },
  6947. {
  6948. "name": "Fabien Potencier",
  6949. "email": "fabien@symfony.com"
  6950. }
  6951. ],
  6952. "description": "Swiftmailer, free feature-rich PHP mailer",
  6953. "homepage": "https://swiftmailer.symfony.com",
  6954. "keywords": [
  6955. "email",
  6956. "mail",
  6957. "mailer"
  6958. ],
  6959. "support": {
  6960. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  6961. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0"
  6962. },
  6963. "funding": [
  6964. {
  6965. "url": "https://github.com/fabpot",
  6966. "type": "github"
  6967. },
  6968. {
  6969. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  6970. "type": "tidelift"
  6971. }
  6972. ],
  6973. "abandoned": "symfony/mailer",
  6974. "time": "2021-10-18T15:26:12+00:00"
  6975. },
  6976. {
  6977. "name": "symfony/cache",
  6978. "version": "v5.4.10",
  6979. "source": {
  6980. "type": "git",
  6981. "url": "https://github.com/symfony/cache.git",
  6982. "reference": "c4e387b739022fd4b20abd8edb2143c44c5daa14"
  6983. },
  6984. "dist": {
  6985. "type": "zip",
  6986. "url": "https://api.github.com/repos/symfony/cache/zipball/c4e387b739022fd4b20abd8edb2143c44c5daa14",
  6987. "reference": "c4e387b739022fd4b20abd8edb2143c44c5daa14",
  6988. "shasum": "",
  6989. "mirrors": [
  6990. {
  6991. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6992. "preferred": true
  6993. }
  6994. ]
  6995. },
  6996. "require": {
  6997. "php": ">=7.2.5",
  6998. "psr/cache": "^1.0|^2.0",
  6999. "psr/log": "^1.1|^2|^3",
  7000. "symfony/cache-contracts": "^1.1.7|^2",
  7001. "symfony/deprecation-contracts": "^2.1|^3",
  7002. "symfony/polyfill-php73": "^1.9",
  7003. "symfony/polyfill-php80": "^1.16",
  7004. "symfony/service-contracts": "^1.1|^2|^3",
  7005. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  7006. },
  7007. "conflict": {
  7008. "doctrine/dbal": "<2.13.1",
  7009. "symfony/dependency-injection": "<4.4",
  7010. "symfony/http-kernel": "<4.4",
  7011. "symfony/var-dumper": "<4.4"
  7012. },
  7013. "provide": {
  7014. "psr/cache-implementation": "1.0|2.0",
  7015. "psr/simple-cache-implementation": "1.0|2.0",
  7016. "symfony/cache-implementation": "1.0|2.0"
  7017. },
  7018. "require-dev": {
  7019. "cache/integration-tests": "dev-master",
  7020. "doctrine/cache": "^1.6|^2.0",
  7021. "doctrine/dbal": "^2.13.1|^3.0",
  7022. "predis/predis": "^1.1",
  7023. "psr/simple-cache": "^1.0|^2.0",
  7024. "symfony/config": "^4.4|^5.0|^6.0",
  7025. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  7026. "symfony/filesystem": "^4.4|^5.0|^6.0",
  7027. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  7028. "symfony/messenger": "^4.4|^5.0|^6.0",
  7029. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  7030. },
  7031. "type": "library",
  7032. "autoload": {
  7033. "psr-4": {
  7034. "Symfony\\Component\\Cache\\": ""
  7035. },
  7036. "exclude-from-classmap": [
  7037. "/Tests/"
  7038. ]
  7039. },
  7040. "notification-url": "https://packagist.org/downloads/",
  7041. "license": [
  7042. "MIT"
  7043. ],
  7044. "authors": [
  7045. {
  7046. "name": "Nicolas Grekas",
  7047. "email": "p@tchwork.com"
  7048. },
  7049. {
  7050. "name": "Symfony Community",
  7051. "homepage": "https://symfony.com/contributors"
  7052. }
  7053. ],
  7054. "description": "Provides an extended PSR-6, PSR-16 (and tags) implementation",
  7055. "homepage": "https://symfony.com",
  7056. "keywords": [
  7057. "caching",
  7058. "psr6"
  7059. ],
  7060. "support": {
  7061. "source": "https://github.com/symfony/cache/tree/v5.4.10"
  7062. },
  7063. "funding": [
  7064. {
  7065. "url": "https://symfony.com/sponsor",
  7066. "type": "custom"
  7067. },
  7068. {
  7069. "url": "https://github.com/fabpot",
  7070. "type": "github"
  7071. },
  7072. {
  7073. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7074. "type": "tidelift"
  7075. }
  7076. ],
  7077. "time": "2022-06-19T12:03:50+00:00"
  7078. },
  7079. {
  7080. "name": "symfony/cache-contracts",
  7081. "version": "v2.5.2",
  7082. "source": {
  7083. "type": "git",
  7084. "url": "https://github.com/symfony/cache-contracts.git",
  7085. "reference": "64be4a7acb83b6f2bf6de9a02cee6dad41277ebc"
  7086. },
  7087. "dist": {
  7088. "type": "zip",
  7089. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/64be4a7acb83b6f2bf6de9a02cee6dad41277ebc",
  7090. "reference": "64be4a7acb83b6f2bf6de9a02cee6dad41277ebc",
  7091. "shasum": "",
  7092. "mirrors": [
  7093. {
  7094. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7095. "preferred": true
  7096. }
  7097. ]
  7098. },
  7099. "require": {
  7100. "php": ">=7.2.5",
  7101. "psr/cache": "^1.0|^2.0|^3.0"
  7102. },
  7103. "suggest": {
  7104. "symfony/cache-implementation": ""
  7105. },
  7106. "type": "library",
  7107. "extra": {
  7108. "branch-alias": {
  7109. "dev-main": "2.5-dev"
  7110. },
  7111. "thanks": {
  7112. "name": "symfony/contracts",
  7113. "url": "https://github.com/symfony/contracts"
  7114. }
  7115. },
  7116. "autoload": {
  7117. "psr-4": {
  7118. "Symfony\\Contracts\\Cache\\": ""
  7119. }
  7120. },
  7121. "notification-url": "https://packagist.org/downloads/",
  7122. "license": [
  7123. "MIT"
  7124. ],
  7125. "authors": [
  7126. {
  7127. "name": "Nicolas Grekas",
  7128. "email": "p@tchwork.com"
  7129. },
  7130. {
  7131. "name": "Symfony Community",
  7132. "homepage": "https://symfony.com/contributors"
  7133. }
  7134. ],
  7135. "description": "Generic abstractions related to caching",
  7136. "homepage": "https://symfony.com",
  7137. "keywords": [
  7138. "abstractions",
  7139. "contracts",
  7140. "decoupling",
  7141. "interfaces",
  7142. "interoperability",
  7143. "standards"
  7144. ],
  7145. "support": {
  7146. "source": "https://github.com/symfony/cache-contracts/tree/v2.5.2"
  7147. },
  7148. "funding": [
  7149. {
  7150. "url": "https://symfony.com/sponsor",
  7151. "type": "custom"
  7152. },
  7153. {
  7154. "url": "https://github.com/fabpot",
  7155. "type": "github"
  7156. },
  7157. {
  7158. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7159. "type": "tidelift"
  7160. }
  7161. ],
  7162. "time": "2022-01-02T09:53:40+00:00"
  7163. },
  7164. {
  7165. "name": "symfony/console",
  7166. "version": "v5.4.10",
  7167. "source": {
  7168. "type": "git",
  7169. "url": "https://github.com/symfony/console.git",
  7170. "reference": "4d671ab4ddac94ee439ea73649c69d9d200b5000"
  7171. },
  7172. "dist": {
  7173. "type": "zip",
  7174. "url": "https://api.github.com/repos/symfony/console/zipball/4d671ab4ddac94ee439ea73649c69d9d200b5000",
  7175. "reference": "4d671ab4ddac94ee439ea73649c69d9d200b5000",
  7176. "shasum": "",
  7177. "mirrors": [
  7178. {
  7179. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7180. "preferred": true
  7181. }
  7182. ]
  7183. },
  7184. "require": {
  7185. "php": ">=7.2.5",
  7186. "symfony/deprecation-contracts": "^2.1|^3",
  7187. "symfony/polyfill-mbstring": "~1.0",
  7188. "symfony/polyfill-php73": "^1.9",
  7189. "symfony/polyfill-php80": "^1.16",
  7190. "symfony/service-contracts": "^1.1|^2|^3",
  7191. "symfony/string": "^5.1|^6.0"
  7192. },
  7193. "conflict": {
  7194. "psr/log": ">=3",
  7195. "symfony/dependency-injection": "<4.4",
  7196. "symfony/dotenv": "<5.1",
  7197. "symfony/event-dispatcher": "<4.4",
  7198. "symfony/lock": "<4.4",
  7199. "symfony/process": "<4.4"
  7200. },
  7201. "provide": {
  7202. "psr/log-implementation": "1.0|2.0"
  7203. },
  7204. "require-dev": {
  7205. "psr/log": "^1|^2",
  7206. "symfony/config": "^4.4|^5.0|^6.0",
  7207. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  7208. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  7209. "symfony/lock": "^4.4|^5.0|^6.0",
  7210. "symfony/process": "^4.4|^5.0|^6.0",
  7211. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  7212. },
  7213. "suggest": {
  7214. "psr/log": "For using the console logger",
  7215. "symfony/event-dispatcher": "",
  7216. "symfony/lock": "",
  7217. "symfony/process": ""
  7218. },
  7219. "type": "library",
  7220. "autoload": {
  7221. "psr-4": {
  7222. "Symfony\\Component\\Console\\": ""
  7223. },
  7224. "exclude-from-classmap": [
  7225. "/Tests/"
  7226. ]
  7227. },
  7228. "notification-url": "https://packagist.org/downloads/",
  7229. "license": [
  7230. "MIT"
  7231. ],
  7232. "authors": [
  7233. {
  7234. "name": "Fabien Potencier",
  7235. "email": "fabien@symfony.com"
  7236. },
  7237. {
  7238. "name": "Symfony Community",
  7239. "homepage": "https://symfony.com/contributors"
  7240. }
  7241. ],
  7242. "description": "Eases the creation of beautiful and testable command line interfaces",
  7243. "homepage": "https://symfony.com",
  7244. "keywords": [
  7245. "cli",
  7246. "command line",
  7247. "console",
  7248. "terminal"
  7249. ],
  7250. "support": {
  7251. "source": "https://github.com/symfony/console/tree/v5.4.10"
  7252. },
  7253. "funding": [
  7254. {
  7255. "url": "https://symfony.com/sponsor",
  7256. "type": "custom"
  7257. },
  7258. {
  7259. "url": "https://github.com/fabpot",
  7260. "type": "github"
  7261. },
  7262. {
  7263. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7264. "type": "tidelift"
  7265. }
  7266. ],
  7267. "time": "2022-06-26T13:00:04+00:00"
  7268. },
  7269. {
  7270. "name": "symfony/css-selector",
  7271. "version": "v6.0.3",
  7272. "source": {
  7273. "type": "git",
  7274. "url": "https://github.com/symfony/css-selector.git",
  7275. "reference": "1955d595c12c111629cc814d3f2a2ff13580508a"
  7276. },
  7277. "dist": {
  7278. "type": "zip",
  7279. "url": "https://api.github.com/repos/symfony/css-selector/zipball/1955d595c12c111629cc814d3f2a2ff13580508a",
  7280. "reference": "1955d595c12c111629cc814d3f2a2ff13580508a",
  7281. "shasum": "",
  7282. "mirrors": [
  7283. {
  7284. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7285. "preferred": true
  7286. }
  7287. ]
  7288. },
  7289. "require": {
  7290. "php": ">=8.0.2"
  7291. },
  7292. "type": "library",
  7293. "autoload": {
  7294. "psr-4": {
  7295. "Symfony\\Component\\CssSelector\\": ""
  7296. },
  7297. "exclude-from-classmap": [
  7298. "/Tests/"
  7299. ]
  7300. },
  7301. "notification-url": "https://packagist.org/downloads/",
  7302. "license": [
  7303. "MIT"
  7304. ],
  7305. "authors": [
  7306. {
  7307. "name": "Fabien Potencier",
  7308. "email": "fabien@symfony.com"
  7309. },
  7310. {
  7311. "name": "Jean-François Simon",
  7312. "email": "jeanfrancois.simon@sensiolabs.com"
  7313. },
  7314. {
  7315. "name": "Symfony Community",
  7316. "homepage": "https://symfony.com/contributors"
  7317. }
  7318. ],
  7319. "description": "Converts CSS selectors to XPath expressions",
  7320. "homepage": "https://symfony.com",
  7321. "support": {
  7322. "source": "https://github.com/symfony/css-selector/tree/v6.0.3"
  7323. },
  7324. "funding": [
  7325. {
  7326. "url": "https://symfony.com/sponsor",
  7327. "type": "custom"
  7328. },
  7329. {
  7330. "url": "https://github.com/fabpot",
  7331. "type": "github"
  7332. },
  7333. {
  7334. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7335. "type": "tidelift"
  7336. }
  7337. ],
  7338. "time": "2022-01-02T09:55:41+00:00"
  7339. },
  7340. {
  7341. "name": "symfony/deprecation-contracts",
  7342. "version": "v3.0.2",
  7343. "source": {
  7344. "type": "git",
  7345. "url": "https://github.com/symfony/deprecation-contracts.git",
  7346. "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c"
  7347. },
  7348. "dist": {
  7349. "type": "zip",
  7350. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
  7351. "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
  7352. "shasum": "",
  7353. "mirrors": [
  7354. {
  7355. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7356. "preferred": true
  7357. }
  7358. ]
  7359. },
  7360. "require": {
  7361. "php": ">=8.0.2"
  7362. },
  7363. "type": "library",
  7364. "extra": {
  7365. "branch-alias": {
  7366. "dev-main": "3.0-dev"
  7367. },
  7368. "thanks": {
  7369. "name": "symfony/contracts",
  7370. "url": "https://github.com/symfony/contracts"
  7371. }
  7372. },
  7373. "autoload": {
  7374. "files": [
  7375. "function.php"
  7376. ]
  7377. },
  7378. "notification-url": "https://packagist.org/downloads/",
  7379. "license": [
  7380. "MIT"
  7381. ],
  7382. "authors": [
  7383. {
  7384. "name": "Nicolas Grekas",
  7385. "email": "p@tchwork.com"
  7386. },
  7387. {
  7388. "name": "Symfony Community",
  7389. "homepage": "https://symfony.com/contributors"
  7390. }
  7391. ],
  7392. "description": "A generic function and convention to trigger deprecation notices",
  7393. "homepage": "https://symfony.com",
  7394. "support": {
  7395. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.0.2"
  7396. },
  7397. "funding": [
  7398. {
  7399. "url": "https://symfony.com/sponsor",
  7400. "type": "custom"
  7401. },
  7402. {
  7403. "url": "https://github.com/fabpot",
  7404. "type": "github"
  7405. },
  7406. {
  7407. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7408. "type": "tidelift"
  7409. }
  7410. ],
  7411. "time": "2022-01-02T09:55:41+00:00"
  7412. },
  7413. {
  7414. "name": "symfony/error-handler",
  7415. "version": "v5.4.9",
  7416. "source": {
  7417. "type": "git",
  7418. "url": "https://github.com/symfony/error-handler.git",
  7419. "reference": "c116cda1f51c678782768dce89a45f13c949455d"
  7420. },
  7421. "dist": {
  7422. "type": "zip",
  7423. "url": "https://api.github.com/repos/symfony/error-handler/zipball/c116cda1f51c678782768dce89a45f13c949455d",
  7424. "reference": "c116cda1f51c678782768dce89a45f13c949455d",
  7425. "shasum": "",
  7426. "mirrors": [
  7427. {
  7428. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7429. "preferred": true
  7430. }
  7431. ]
  7432. },
  7433. "require": {
  7434. "php": ">=7.2.5",
  7435. "psr/log": "^1|^2|^3",
  7436. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  7437. },
  7438. "require-dev": {
  7439. "symfony/deprecation-contracts": "^2.1|^3",
  7440. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  7441. "symfony/serializer": "^4.4|^5.0|^6.0"
  7442. },
  7443. "bin": [
  7444. "Resources/bin/patch-type-declarations"
  7445. ],
  7446. "type": "library",
  7447. "autoload": {
  7448. "psr-4": {
  7449. "Symfony\\Component\\ErrorHandler\\": ""
  7450. },
  7451. "exclude-from-classmap": [
  7452. "/Tests/"
  7453. ]
  7454. },
  7455. "notification-url": "https://packagist.org/downloads/",
  7456. "license": [
  7457. "MIT"
  7458. ],
  7459. "authors": [
  7460. {
  7461. "name": "Fabien Potencier",
  7462. "email": "fabien@symfony.com"
  7463. },
  7464. {
  7465. "name": "Symfony Community",
  7466. "homepage": "https://symfony.com/contributors"
  7467. }
  7468. ],
  7469. "description": "Provides tools to manage errors and ease debugging PHP code",
  7470. "homepage": "https://symfony.com",
  7471. "support": {
  7472. "source": "https://github.com/symfony/error-handler/tree/v5.4.9"
  7473. },
  7474. "funding": [
  7475. {
  7476. "url": "https://symfony.com/sponsor",
  7477. "type": "custom"
  7478. },
  7479. {
  7480. "url": "https://github.com/fabpot",
  7481. "type": "github"
  7482. },
  7483. {
  7484. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7485. "type": "tidelift"
  7486. }
  7487. ],
  7488. "time": "2022-05-21T13:57:48+00:00"
  7489. },
  7490. {
  7491. "name": "symfony/event-dispatcher",
  7492. "version": "v5.4.9",
  7493. "source": {
  7494. "type": "git",
  7495. "url": "https://github.com/symfony/event-dispatcher.git",
  7496. "reference": "8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc"
  7497. },
  7498. "dist": {
  7499. "type": "zip",
  7500. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc",
  7501. "reference": "8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc",
  7502. "shasum": "",
  7503. "mirrors": [
  7504. {
  7505. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7506. "preferred": true
  7507. }
  7508. ]
  7509. },
  7510. "require": {
  7511. "php": ">=7.2.5",
  7512. "symfony/deprecation-contracts": "^2.1|^3",
  7513. "symfony/event-dispatcher-contracts": "^2|^3",
  7514. "symfony/polyfill-php80": "^1.16"
  7515. },
  7516. "conflict": {
  7517. "symfony/dependency-injection": "<4.4"
  7518. },
  7519. "provide": {
  7520. "psr/event-dispatcher-implementation": "1.0",
  7521. "symfony/event-dispatcher-implementation": "2.0"
  7522. },
  7523. "require-dev": {
  7524. "psr/log": "^1|^2|^3",
  7525. "symfony/config": "^4.4|^5.0|^6.0",
  7526. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  7527. "symfony/error-handler": "^4.4|^5.0|^6.0",
  7528. "symfony/expression-language": "^4.4|^5.0|^6.0",
  7529. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  7530. "symfony/service-contracts": "^1.1|^2|^3",
  7531. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  7532. },
  7533. "suggest": {
  7534. "symfony/dependency-injection": "",
  7535. "symfony/http-kernel": ""
  7536. },
  7537. "type": "library",
  7538. "autoload": {
  7539. "psr-4": {
  7540. "Symfony\\Component\\EventDispatcher\\": ""
  7541. },
  7542. "exclude-from-classmap": [
  7543. "/Tests/"
  7544. ]
  7545. },
  7546. "notification-url": "https://packagist.org/downloads/",
  7547. "license": [
  7548. "MIT"
  7549. ],
  7550. "authors": [
  7551. {
  7552. "name": "Fabien Potencier",
  7553. "email": "fabien@symfony.com"
  7554. },
  7555. {
  7556. "name": "Symfony Community",
  7557. "homepage": "https://symfony.com/contributors"
  7558. }
  7559. ],
  7560. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  7561. "homepage": "https://symfony.com",
  7562. "support": {
  7563. "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.9"
  7564. },
  7565. "funding": [
  7566. {
  7567. "url": "https://symfony.com/sponsor",
  7568. "type": "custom"
  7569. },
  7570. {
  7571. "url": "https://github.com/fabpot",
  7572. "type": "github"
  7573. },
  7574. {
  7575. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7576. "type": "tidelift"
  7577. }
  7578. ],
  7579. "time": "2022-05-05T16:45:39+00:00"
  7580. },
  7581. {
  7582. "name": "symfony/event-dispatcher-contracts",
  7583. "version": "v3.0.2",
  7584. "source": {
  7585. "type": "git",
  7586. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  7587. "reference": "7bc61cc2db649b4637d331240c5346dcc7708051"
  7588. },
  7589. "dist": {
  7590. "type": "zip",
  7591. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7bc61cc2db649b4637d331240c5346dcc7708051",
  7592. "reference": "7bc61cc2db649b4637d331240c5346dcc7708051",
  7593. "shasum": "",
  7594. "mirrors": [
  7595. {
  7596. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7597. "preferred": true
  7598. }
  7599. ]
  7600. },
  7601. "require": {
  7602. "php": ">=8.0.2",
  7603. "psr/event-dispatcher": "^1"
  7604. },
  7605. "suggest": {
  7606. "symfony/event-dispatcher-implementation": ""
  7607. },
  7608. "type": "library",
  7609. "extra": {
  7610. "branch-alias": {
  7611. "dev-main": "3.0-dev"
  7612. },
  7613. "thanks": {
  7614. "name": "symfony/contracts",
  7615. "url": "https://github.com/symfony/contracts"
  7616. }
  7617. },
  7618. "autoload": {
  7619. "psr-4": {
  7620. "Symfony\\Contracts\\EventDispatcher\\": ""
  7621. }
  7622. },
  7623. "notification-url": "https://packagist.org/downloads/",
  7624. "license": [
  7625. "MIT"
  7626. ],
  7627. "authors": [
  7628. {
  7629. "name": "Nicolas Grekas",
  7630. "email": "p@tchwork.com"
  7631. },
  7632. {
  7633. "name": "Symfony Community",
  7634. "homepage": "https://symfony.com/contributors"
  7635. }
  7636. ],
  7637. "description": "Generic abstractions related to dispatching event",
  7638. "homepage": "https://symfony.com",
  7639. "keywords": [
  7640. "abstractions",
  7641. "contracts",
  7642. "decoupling",
  7643. "interfaces",
  7644. "interoperability",
  7645. "standards"
  7646. ],
  7647. "support": {
  7648. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.0.2"
  7649. },
  7650. "funding": [
  7651. {
  7652. "url": "https://symfony.com/sponsor",
  7653. "type": "custom"
  7654. },
  7655. {
  7656. "url": "https://github.com/fabpot",
  7657. "type": "github"
  7658. },
  7659. {
  7660. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7661. "type": "tidelift"
  7662. }
  7663. ],
  7664. "time": "2022-01-02T09:55:41+00:00"
  7665. },
  7666. {
  7667. "name": "symfony/finder",
  7668. "version": "v5.4.8",
  7669. "source": {
  7670. "type": "git",
  7671. "url": "https://github.com/symfony/finder.git",
  7672. "reference": "9b630f3427f3ebe7cd346c277a1408b00249dad9"
  7673. },
  7674. "dist": {
  7675. "type": "zip",
  7676. "url": "https://api.github.com/repos/symfony/finder/zipball/9b630f3427f3ebe7cd346c277a1408b00249dad9",
  7677. "reference": "9b630f3427f3ebe7cd346c277a1408b00249dad9",
  7678. "shasum": "",
  7679. "mirrors": [
  7680. {
  7681. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7682. "preferred": true
  7683. }
  7684. ]
  7685. },
  7686. "require": {
  7687. "php": ">=7.2.5",
  7688. "symfony/deprecation-contracts": "^2.1|^3",
  7689. "symfony/polyfill-php80": "^1.16"
  7690. },
  7691. "type": "library",
  7692. "autoload": {
  7693. "psr-4": {
  7694. "Symfony\\Component\\Finder\\": ""
  7695. },
  7696. "exclude-from-classmap": [
  7697. "/Tests/"
  7698. ]
  7699. },
  7700. "notification-url": "https://packagist.org/downloads/",
  7701. "license": [
  7702. "MIT"
  7703. ],
  7704. "authors": [
  7705. {
  7706. "name": "Fabien Potencier",
  7707. "email": "fabien@symfony.com"
  7708. },
  7709. {
  7710. "name": "Symfony Community",
  7711. "homepage": "https://symfony.com/contributors"
  7712. }
  7713. ],
  7714. "description": "Finds files and directories via an intuitive fluent interface",
  7715. "homepage": "https://symfony.com",
  7716. "support": {
  7717. "source": "https://github.com/symfony/finder/tree/v5.4.8"
  7718. },
  7719. "funding": [
  7720. {
  7721. "url": "https://symfony.com/sponsor",
  7722. "type": "custom"
  7723. },
  7724. {
  7725. "url": "https://github.com/fabpot",
  7726. "type": "github"
  7727. },
  7728. {
  7729. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7730. "type": "tidelift"
  7731. }
  7732. ],
  7733. "time": "2022-04-15T08:07:45+00:00"
  7734. },
  7735. {
  7736. "name": "symfony/http-foundation",
  7737. "version": "v5.4.10",
  7738. "source": {
  7739. "type": "git",
  7740. "url": "https://github.com/symfony/http-foundation.git",
  7741. "reference": "e7793b7906f72a8cc51054fbca9dcff7a8af1c1e"
  7742. },
  7743. "dist": {
  7744. "type": "zip",
  7745. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/e7793b7906f72a8cc51054fbca9dcff7a8af1c1e",
  7746. "reference": "e7793b7906f72a8cc51054fbca9dcff7a8af1c1e",
  7747. "shasum": "",
  7748. "mirrors": [
  7749. {
  7750. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7751. "preferred": true
  7752. }
  7753. ]
  7754. },
  7755. "require": {
  7756. "php": ">=7.2.5",
  7757. "symfony/deprecation-contracts": "^2.1|^3",
  7758. "symfony/polyfill-mbstring": "~1.1",
  7759. "symfony/polyfill-php80": "^1.16"
  7760. },
  7761. "require-dev": {
  7762. "predis/predis": "~1.0",
  7763. "symfony/cache": "^4.4|^5.0|^6.0",
  7764. "symfony/expression-language": "^4.4|^5.0|^6.0",
  7765. "symfony/mime": "^4.4|^5.0|^6.0"
  7766. },
  7767. "suggest": {
  7768. "symfony/mime": "To use the file extension guesser"
  7769. },
  7770. "type": "library",
  7771. "autoload": {
  7772. "psr-4": {
  7773. "Symfony\\Component\\HttpFoundation\\": ""
  7774. },
  7775. "exclude-from-classmap": [
  7776. "/Tests/"
  7777. ]
  7778. },
  7779. "notification-url": "https://packagist.org/downloads/",
  7780. "license": [
  7781. "MIT"
  7782. ],
  7783. "authors": [
  7784. {
  7785. "name": "Fabien Potencier",
  7786. "email": "fabien@symfony.com"
  7787. },
  7788. {
  7789. "name": "Symfony Community",
  7790. "homepage": "https://symfony.com/contributors"
  7791. }
  7792. ],
  7793. "description": "Defines an object-oriented layer for the HTTP specification",
  7794. "homepage": "https://symfony.com",
  7795. "support": {
  7796. "source": "https://github.com/symfony/http-foundation/tree/v5.4.10"
  7797. },
  7798. "funding": [
  7799. {
  7800. "url": "https://symfony.com/sponsor",
  7801. "type": "custom"
  7802. },
  7803. {
  7804. "url": "https://github.com/fabpot",
  7805. "type": "github"
  7806. },
  7807. {
  7808. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7809. "type": "tidelift"
  7810. }
  7811. ],
  7812. "time": "2022-06-19T13:13:40+00:00"
  7813. },
  7814. {
  7815. "name": "symfony/http-kernel",
  7816. "version": "v5.4.10",
  7817. "source": {
  7818. "type": "git",
  7819. "url": "https://github.com/symfony/http-kernel.git",
  7820. "reference": "255ae3b0a488d78fbb34da23d3e0c059874b5948"
  7821. },
  7822. "dist": {
  7823. "type": "zip",
  7824. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/255ae3b0a488d78fbb34da23d3e0c059874b5948",
  7825. "reference": "255ae3b0a488d78fbb34da23d3e0c059874b5948",
  7826. "shasum": "",
  7827. "mirrors": [
  7828. {
  7829. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7830. "preferred": true
  7831. }
  7832. ]
  7833. },
  7834. "require": {
  7835. "php": ">=7.2.5",
  7836. "psr/log": "^1|^2",
  7837. "symfony/deprecation-contracts": "^2.1|^3",
  7838. "symfony/error-handler": "^4.4|^5.0|^6.0",
  7839. "symfony/event-dispatcher": "^5.0|^6.0",
  7840. "symfony/http-foundation": "^5.3.7|^6.0",
  7841. "symfony/polyfill-ctype": "^1.8",
  7842. "symfony/polyfill-php73": "^1.9",
  7843. "symfony/polyfill-php80": "^1.16"
  7844. },
  7845. "conflict": {
  7846. "symfony/browser-kit": "<5.4",
  7847. "symfony/cache": "<5.0",
  7848. "symfony/config": "<5.0",
  7849. "symfony/console": "<4.4",
  7850. "symfony/dependency-injection": "<5.3",
  7851. "symfony/doctrine-bridge": "<5.0",
  7852. "symfony/form": "<5.0",
  7853. "symfony/http-client": "<5.0",
  7854. "symfony/mailer": "<5.0",
  7855. "symfony/messenger": "<5.0",
  7856. "symfony/translation": "<5.0",
  7857. "symfony/twig-bridge": "<5.0",
  7858. "symfony/validator": "<5.0",
  7859. "twig/twig": "<2.13"
  7860. },
  7861. "provide": {
  7862. "psr/log-implementation": "1.0|2.0"
  7863. },
  7864. "require-dev": {
  7865. "psr/cache": "^1.0|^2.0|^3.0",
  7866. "symfony/browser-kit": "^5.4|^6.0",
  7867. "symfony/config": "^5.0|^6.0",
  7868. "symfony/console": "^4.4|^5.0|^6.0",
  7869. "symfony/css-selector": "^4.4|^5.0|^6.0",
  7870. "symfony/dependency-injection": "^5.3|^6.0",
  7871. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  7872. "symfony/expression-language": "^4.4|^5.0|^6.0",
  7873. "symfony/finder": "^4.4|^5.0|^6.0",
  7874. "symfony/http-client-contracts": "^1.1|^2|^3",
  7875. "symfony/process": "^4.4|^5.0|^6.0",
  7876. "symfony/routing": "^4.4|^5.0|^6.0",
  7877. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  7878. "symfony/translation": "^4.4|^5.0|^6.0",
  7879. "symfony/translation-contracts": "^1.1|^2|^3",
  7880. "twig/twig": "^2.13|^3.0.4"
  7881. },
  7882. "suggest": {
  7883. "symfony/browser-kit": "",
  7884. "symfony/config": "",
  7885. "symfony/console": "",
  7886. "symfony/dependency-injection": ""
  7887. },
  7888. "type": "library",
  7889. "autoload": {
  7890. "psr-4": {
  7891. "Symfony\\Component\\HttpKernel\\": ""
  7892. },
  7893. "exclude-from-classmap": [
  7894. "/Tests/"
  7895. ]
  7896. },
  7897. "notification-url": "https://packagist.org/downloads/",
  7898. "license": [
  7899. "MIT"
  7900. ],
  7901. "authors": [
  7902. {
  7903. "name": "Fabien Potencier",
  7904. "email": "fabien@symfony.com"
  7905. },
  7906. {
  7907. "name": "Symfony Community",
  7908. "homepage": "https://symfony.com/contributors"
  7909. }
  7910. ],
  7911. "description": "Provides a structured process for converting a Request into a Response",
  7912. "homepage": "https://symfony.com",
  7913. "support": {
  7914. "source": "https://github.com/symfony/http-kernel/tree/v5.4.10"
  7915. },
  7916. "funding": [
  7917. {
  7918. "url": "https://symfony.com/sponsor",
  7919. "type": "custom"
  7920. },
  7921. {
  7922. "url": "https://github.com/fabpot",
  7923. "type": "github"
  7924. },
  7925. {
  7926. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7927. "type": "tidelift"
  7928. }
  7929. ],
  7930. "time": "2022-06-26T16:57:59+00:00"
  7931. },
  7932. {
  7933. "name": "symfony/mime",
  7934. "version": "v5.4.10",
  7935. "source": {
  7936. "type": "git",
  7937. "url": "https://github.com/symfony/mime.git",
  7938. "reference": "02265e1e5111c3cd7480387af25e82378b7ab9cc"
  7939. },
  7940. "dist": {
  7941. "type": "zip",
  7942. "url": "https://api.github.com/repos/symfony/mime/zipball/02265e1e5111c3cd7480387af25e82378b7ab9cc",
  7943. "reference": "02265e1e5111c3cd7480387af25e82378b7ab9cc",
  7944. "shasum": "",
  7945. "mirrors": [
  7946. {
  7947. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7948. "preferred": true
  7949. }
  7950. ]
  7951. },
  7952. "require": {
  7953. "php": ">=7.2.5",
  7954. "symfony/deprecation-contracts": "^2.1|^3",
  7955. "symfony/polyfill-intl-idn": "^1.10",
  7956. "symfony/polyfill-mbstring": "^1.0",
  7957. "symfony/polyfill-php80": "^1.16"
  7958. },
  7959. "conflict": {
  7960. "egulias/email-validator": "~3.0.0",
  7961. "phpdocumentor/reflection-docblock": "<3.2.2",
  7962. "phpdocumentor/type-resolver": "<1.4.0",
  7963. "symfony/mailer": "<4.4"
  7964. },
  7965. "require-dev": {
  7966. "egulias/email-validator": "^2.1.10|^3.1",
  7967. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  7968. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  7969. "symfony/property-access": "^4.4|^5.1|^6.0",
  7970. "symfony/property-info": "^4.4|^5.1|^6.0",
  7971. "symfony/serializer": "^5.2|^6.0"
  7972. },
  7973. "type": "library",
  7974. "autoload": {
  7975. "psr-4": {
  7976. "Symfony\\Component\\Mime\\": ""
  7977. },
  7978. "exclude-from-classmap": [
  7979. "/Tests/"
  7980. ]
  7981. },
  7982. "notification-url": "https://packagist.org/downloads/",
  7983. "license": [
  7984. "MIT"
  7985. ],
  7986. "authors": [
  7987. {
  7988. "name": "Fabien Potencier",
  7989. "email": "fabien@symfony.com"
  7990. },
  7991. {
  7992. "name": "Symfony Community",
  7993. "homepage": "https://symfony.com/contributors"
  7994. }
  7995. ],
  7996. "description": "Allows manipulating MIME messages",
  7997. "homepage": "https://symfony.com",
  7998. "keywords": [
  7999. "mime",
  8000. "mime-type"
  8001. ],
  8002. "support": {
  8003. "source": "https://github.com/symfony/mime/tree/v5.4.10"
  8004. },
  8005. "funding": [
  8006. {
  8007. "url": "https://symfony.com/sponsor",
  8008. "type": "custom"
  8009. },
  8010. {
  8011. "url": "https://github.com/fabpot",
  8012. "type": "github"
  8013. },
  8014. {
  8015. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8016. "type": "tidelift"
  8017. }
  8018. ],
  8019. "time": "2022-06-09T12:22:40+00:00"
  8020. },
  8021. {
  8022. "name": "symfony/polyfill-ctype",
  8023. "version": "v1.26.0",
  8024. "source": {
  8025. "type": "git",
  8026. "url": "https://github.com/symfony/polyfill-ctype.git",
  8027. "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4"
  8028. },
  8029. "dist": {
  8030. "type": "zip",
  8031. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4",
  8032. "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4",
  8033. "shasum": "",
  8034. "mirrors": [
  8035. {
  8036. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8037. "preferred": true
  8038. }
  8039. ]
  8040. },
  8041. "require": {
  8042. "php": ">=7.1"
  8043. },
  8044. "provide": {
  8045. "ext-ctype": "*"
  8046. },
  8047. "suggest": {
  8048. "ext-ctype": "For best performance"
  8049. },
  8050. "type": "library",
  8051. "extra": {
  8052. "branch-alias": {
  8053. "dev-main": "1.26-dev"
  8054. },
  8055. "thanks": {
  8056. "name": "symfony/polyfill",
  8057. "url": "https://github.com/symfony/polyfill"
  8058. }
  8059. },
  8060. "autoload": {
  8061. "files": [
  8062. "bootstrap.php"
  8063. ],
  8064. "psr-4": {
  8065. "Symfony\\Polyfill\\Ctype\\": ""
  8066. }
  8067. },
  8068. "notification-url": "https://packagist.org/downloads/",
  8069. "license": [
  8070. "MIT"
  8071. ],
  8072. "authors": [
  8073. {
  8074. "name": "Gert de Pagter",
  8075. "email": "BackEndTea@gmail.com"
  8076. },
  8077. {
  8078. "name": "Symfony Community",
  8079. "homepage": "https://symfony.com/contributors"
  8080. }
  8081. ],
  8082. "description": "Symfony polyfill for ctype functions",
  8083. "homepage": "https://symfony.com",
  8084. "keywords": [
  8085. "compatibility",
  8086. "ctype",
  8087. "polyfill",
  8088. "portable"
  8089. ],
  8090. "support": {
  8091. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.26.0"
  8092. },
  8093. "funding": [
  8094. {
  8095. "url": "https://symfony.com/sponsor",
  8096. "type": "custom"
  8097. },
  8098. {
  8099. "url": "https://github.com/fabpot",
  8100. "type": "github"
  8101. },
  8102. {
  8103. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8104. "type": "tidelift"
  8105. }
  8106. ],
  8107. "time": "2022-05-24T11:49:31+00:00"
  8108. },
  8109. {
  8110. "name": "symfony/polyfill-iconv",
  8111. "version": "v1.26.0",
  8112. "source": {
  8113. "type": "git",
  8114. "url": "https://github.com/symfony/polyfill-iconv.git",
  8115. "reference": "143f1881e655bebca1312722af8068de235ae5dc"
  8116. },
  8117. "dist": {
  8118. "type": "zip",
  8119. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/143f1881e655bebca1312722af8068de235ae5dc",
  8120. "reference": "143f1881e655bebca1312722af8068de235ae5dc",
  8121. "shasum": "",
  8122. "mirrors": [
  8123. {
  8124. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8125. "preferred": true
  8126. }
  8127. ]
  8128. },
  8129. "require": {
  8130. "php": ">=7.1"
  8131. },
  8132. "provide": {
  8133. "ext-iconv": "*"
  8134. },
  8135. "suggest": {
  8136. "ext-iconv": "For best performance"
  8137. },
  8138. "type": "library",
  8139. "extra": {
  8140. "branch-alias": {
  8141. "dev-main": "1.26-dev"
  8142. },
  8143. "thanks": {
  8144. "name": "symfony/polyfill",
  8145. "url": "https://github.com/symfony/polyfill"
  8146. }
  8147. },
  8148. "autoload": {
  8149. "files": [
  8150. "bootstrap.php"
  8151. ],
  8152. "psr-4": {
  8153. "Symfony\\Polyfill\\Iconv\\": ""
  8154. }
  8155. },
  8156. "notification-url": "https://packagist.org/downloads/",
  8157. "license": [
  8158. "MIT"
  8159. ],
  8160. "authors": [
  8161. {
  8162. "name": "Nicolas Grekas",
  8163. "email": "p@tchwork.com"
  8164. },
  8165. {
  8166. "name": "Symfony Community",
  8167. "homepage": "https://symfony.com/contributors"
  8168. }
  8169. ],
  8170. "description": "Symfony polyfill for the Iconv extension",
  8171. "homepage": "https://symfony.com",
  8172. "keywords": [
  8173. "compatibility",
  8174. "iconv",
  8175. "polyfill",
  8176. "portable",
  8177. "shim"
  8178. ],
  8179. "support": {
  8180. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.26.0"
  8181. },
  8182. "funding": [
  8183. {
  8184. "url": "https://symfony.com/sponsor",
  8185. "type": "custom"
  8186. },
  8187. {
  8188. "url": "https://github.com/fabpot",
  8189. "type": "github"
  8190. },
  8191. {
  8192. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8193. "type": "tidelift"
  8194. }
  8195. ],
  8196. "time": "2022-05-24T11:49:31+00:00"
  8197. },
  8198. {
  8199. "name": "symfony/polyfill-intl-grapheme",
  8200. "version": "v1.26.0",
  8201. "source": {
  8202. "type": "git",
  8203. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  8204. "reference": "433d05519ce6990bf3530fba6957499d327395c2"
  8205. },
  8206. "dist": {
  8207. "type": "zip",
  8208. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/433d05519ce6990bf3530fba6957499d327395c2",
  8209. "reference": "433d05519ce6990bf3530fba6957499d327395c2",
  8210. "shasum": "",
  8211. "mirrors": [
  8212. {
  8213. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8214. "preferred": true
  8215. }
  8216. ]
  8217. },
  8218. "require": {
  8219. "php": ">=7.1"
  8220. },
  8221. "suggest": {
  8222. "ext-intl": "For best performance"
  8223. },
  8224. "type": "library",
  8225. "extra": {
  8226. "branch-alias": {
  8227. "dev-main": "1.26-dev"
  8228. },
  8229. "thanks": {
  8230. "name": "symfony/polyfill",
  8231. "url": "https://github.com/symfony/polyfill"
  8232. }
  8233. },
  8234. "autoload": {
  8235. "files": [
  8236. "bootstrap.php"
  8237. ],
  8238. "psr-4": {
  8239. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  8240. }
  8241. },
  8242. "notification-url": "https://packagist.org/downloads/",
  8243. "license": [
  8244. "MIT"
  8245. ],
  8246. "authors": [
  8247. {
  8248. "name": "Nicolas Grekas",
  8249. "email": "p@tchwork.com"
  8250. },
  8251. {
  8252. "name": "Symfony Community",
  8253. "homepage": "https://symfony.com/contributors"
  8254. }
  8255. ],
  8256. "description": "Symfony polyfill for intl's grapheme_* functions",
  8257. "homepage": "https://symfony.com",
  8258. "keywords": [
  8259. "compatibility",
  8260. "grapheme",
  8261. "intl",
  8262. "polyfill",
  8263. "portable",
  8264. "shim"
  8265. ],
  8266. "support": {
  8267. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.26.0"
  8268. },
  8269. "funding": [
  8270. {
  8271. "url": "https://symfony.com/sponsor",
  8272. "type": "custom"
  8273. },
  8274. {
  8275. "url": "https://github.com/fabpot",
  8276. "type": "github"
  8277. },
  8278. {
  8279. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8280. "type": "tidelift"
  8281. }
  8282. ],
  8283. "time": "2022-05-24T11:49:31+00:00"
  8284. },
  8285. {
  8286. "name": "symfony/polyfill-intl-idn",
  8287. "version": "v1.26.0",
  8288. "source": {
  8289. "type": "git",
  8290. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  8291. "reference": "59a8d271f00dd0e4c2e518104cc7963f655a1aa8"
  8292. },
  8293. "dist": {
  8294. "type": "zip",
  8295. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/59a8d271f00dd0e4c2e518104cc7963f655a1aa8",
  8296. "reference": "59a8d271f00dd0e4c2e518104cc7963f655a1aa8",
  8297. "shasum": "",
  8298. "mirrors": [
  8299. {
  8300. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8301. "preferred": true
  8302. }
  8303. ]
  8304. },
  8305. "require": {
  8306. "php": ">=7.1",
  8307. "symfony/polyfill-intl-normalizer": "^1.10",
  8308. "symfony/polyfill-php72": "^1.10"
  8309. },
  8310. "suggest": {
  8311. "ext-intl": "For best performance"
  8312. },
  8313. "type": "library",
  8314. "extra": {
  8315. "branch-alias": {
  8316. "dev-main": "1.26-dev"
  8317. },
  8318. "thanks": {
  8319. "name": "symfony/polyfill",
  8320. "url": "https://github.com/symfony/polyfill"
  8321. }
  8322. },
  8323. "autoload": {
  8324. "files": [
  8325. "bootstrap.php"
  8326. ],
  8327. "psr-4": {
  8328. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  8329. }
  8330. },
  8331. "notification-url": "https://packagist.org/downloads/",
  8332. "license": [
  8333. "MIT"
  8334. ],
  8335. "authors": [
  8336. {
  8337. "name": "Laurent Bassin",
  8338. "email": "laurent@bassin.info"
  8339. },
  8340. {
  8341. "name": "Trevor Rowbotham",
  8342. "email": "trevor.rowbotham@pm.me"
  8343. },
  8344. {
  8345. "name": "Symfony Community",
  8346. "homepage": "https://symfony.com/contributors"
  8347. }
  8348. ],
  8349. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  8350. "homepage": "https://symfony.com",
  8351. "keywords": [
  8352. "compatibility",
  8353. "idn",
  8354. "intl",
  8355. "polyfill",
  8356. "portable",
  8357. "shim"
  8358. ],
  8359. "support": {
  8360. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.26.0"
  8361. },
  8362. "funding": [
  8363. {
  8364. "url": "https://symfony.com/sponsor",
  8365. "type": "custom"
  8366. },
  8367. {
  8368. "url": "https://github.com/fabpot",
  8369. "type": "github"
  8370. },
  8371. {
  8372. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8373. "type": "tidelift"
  8374. }
  8375. ],
  8376. "time": "2022-05-24T11:49:31+00:00"
  8377. },
  8378. {
  8379. "name": "symfony/polyfill-intl-normalizer",
  8380. "version": "v1.26.0",
  8381. "source": {
  8382. "type": "git",
  8383. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  8384. "reference": "219aa369ceff116e673852dce47c3a41794c14bd"
  8385. },
  8386. "dist": {
  8387. "type": "zip",
  8388. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/219aa369ceff116e673852dce47c3a41794c14bd",
  8389. "reference": "219aa369ceff116e673852dce47c3a41794c14bd",
  8390. "shasum": "",
  8391. "mirrors": [
  8392. {
  8393. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8394. "preferred": true
  8395. }
  8396. ]
  8397. },
  8398. "require": {
  8399. "php": ">=7.1"
  8400. },
  8401. "suggest": {
  8402. "ext-intl": "For best performance"
  8403. },
  8404. "type": "library",
  8405. "extra": {
  8406. "branch-alias": {
  8407. "dev-main": "1.26-dev"
  8408. },
  8409. "thanks": {
  8410. "name": "symfony/polyfill",
  8411. "url": "https://github.com/symfony/polyfill"
  8412. }
  8413. },
  8414. "autoload": {
  8415. "files": [
  8416. "bootstrap.php"
  8417. ],
  8418. "psr-4": {
  8419. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  8420. },
  8421. "classmap": [
  8422. "Resources/stubs"
  8423. ]
  8424. },
  8425. "notification-url": "https://packagist.org/downloads/",
  8426. "license": [
  8427. "MIT"
  8428. ],
  8429. "authors": [
  8430. {
  8431. "name": "Nicolas Grekas",
  8432. "email": "p@tchwork.com"
  8433. },
  8434. {
  8435. "name": "Symfony Community",
  8436. "homepage": "https://symfony.com/contributors"
  8437. }
  8438. ],
  8439. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  8440. "homepage": "https://symfony.com",
  8441. "keywords": [
  8442. "compatibility",
  8443. "intl",
  8444. "normalizer",
  8445. "polyfill",
  8446. "portable",
  8447. "shim"
  8448. ],
  8449. "support": {
  8450. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.26.0"
  8451. },
  8452. "funding": [
  8453. {
  8454. "url": "https://symfony.com/sponsor",
  8455. "type": "custom"
  8456. },
  8457. {
  8458. "url": "https://github.com/fabpot",
  8459. "type": "github"
  8460. },
  8461. {
  8462. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8463. "type": "tidelift"
  8464. }
  8465. ],
  8466. "time": "2022-05-24T11:49:31+00:00"
  8467. },
  8468. {
  8469. "name": "symfony/polyfill-mbstring",
  8470. "version": "v1.26.0",
  8471. "source": {
  8472. "type": "git",
  8473. "url": "https://github.com/symfony/polyfill-mbstring.git",
  8474. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e"
  8475. },
  8476. "dist": {
  8477. "type": "zip",
  8478. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  8479. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  8480. "shasum": "",
  8481. "mirrors": [
  8482. {
  8483. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8484. "preferred": true
  8485. }
  8486. ]
  8487. },
  8488. "require": {
  8489. "php": ">=7.1"
  8490. },
  8491. "provide": {
  8492. "ext-mbstring": "*"
  8493. },
  8494. "suggest": {
  8495. "ext-mbstring": "For best performance"
  8496. },
  8497. "type": "library",
  8498. "extra": {
  8499. "branch-alias": {
  8500. "dev-main": "1.26-dev"
  8501. },
  8502. "thanks": {
  8503. "name": "symfony/polyfill",
  8504. "url": "https://github.com/symfony/polyfill"
  8505. }
  8506. },
  8507. "autoload": {
  8508. "files": [
  8509. "bootstrap.php"
  8510. ],
  8511. "psr-4": {
  8512. "Symfony\\Polyfill\\Mbstring\\": ""
  8513. }
  8514. },
  8515. "notification-url": "https://packagist.org/downloads/",
  8516. "license": [
  8517. "MIT"
  8518. ],
  8519. "authors": [
  8520. {
  8521. "name": "Nicolas Grekas",
  8522. "email": "p@tchwork.com"
  8523. },
  8524. {
  8525. "name": "Symfony Community",
  8526. "homepage": "https://symfony.com/contributors"
  8527. }
  8528. ],
  8529. "description": "Symfony polyfill for the Mbstring extension",
  8530. "homepage": "https://symfony.com",
  8531. "keywords": [
  8532. "compatibility",
  8533. "mbstring",
  8534. "polyfill",
  8535. "portable",
  8536. "shim"
  8537. ],
  8538. "support": {
  8539. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.26.0"
  8540. },
  8541. "funding": [
  8542. {
  8543. "url": "https://symfony.com/sponsor",
  8544. "type": "custom"
  8545. },
  8546. {
  8547. "url": "https://github.com/fabpot",
  8548. "type": "github"
  8549. },
  8550. {
  8551. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8552. "type": "tidelift"
  8553. }
  8554. ],
  8555. "time": "2022-05-24T11:49:31+00:00"
  8556. },
  8557. {
  8558. "name": "symfony/polyfill-php56",
  8559. "version": "v1.20.0",
  8560. "source": {
  8561. "type": "git",
  8562. "url": "https://github.com/symfony/polyfill-php56.git",
  8563. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675"
  8564. },
  8565. "dist": {
  8566. "type": "zip",
  8567. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  8568. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  8569. "shasum": "",
  8570. "mirrors": [
  8571. {
  8572. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8573. "preferred": true
  8574. }
  8575. ]
  8576. },
  8577. "require": {
  8578. "php": ">=7.1"
  8579. },
  8580. "type": "metapackage",
  8581. "extra": {
  8582. "branch-alias": {
  8583. "dev-main": "1.20-dev"
  8584. },
  8585. "thanks": {
  8586. "name": "symfony/polyfill",
  8587. "url": "https://github.com/symfony/polyfill"
  8588. }
  8589. },
  8590. "notification-url": "https://packagist.org/downloads/",
  8591. "license": [
  8592. "MIT"
  8593. ],
  8594. "authors": [
  8595. {
  8596. "name": "Nicolas Grekas",
  8597. "email": "p@tchwork.com"
  8598. },
  8599. {
  8600. "name": "Symfony Community",
  8601. "homepage": "https://symfony.com/contributors"
  8602. }
  8603. ],
  8604. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  8605. "homepage": "https://symfony.com",
  8606. "keywords": [
  8607. "compatibility",
  8608. "polyfill",
  8609. "portable",
  8610. "shim"
  8611. ],
  8612. "support": {
  8613. "source": "https://github.com/symfony/polyfill-php56/tree/v1.20.0"
  8614. },
  8615. "funding": [
  8616. {
  8617. "url": "https://symfony.com/sponsor",
  8618. "type": "custom"
  8619. },
  8620. {
  8621. "url": "https://github.com/fabpot",
  8622. "type": "github"
  8623. },
  8624. {
  8625. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8626. "type": "tidelift"
  8627. }
  8628. ],
  8629. "time": "2020-10-23T14:02:19+00:00"
  8630. },
  8631. {
  8632. "name": "symfony/polyfill-php72",
  8633. "version": "v1.26.0",
  8634. "source": {
  8635. "type": "git",
  8636. "url": "https://github.com/symfony/polyfill-php72.git",
  8637. "reference": "bf44a9fd41feaac72b074de600314a93e2ae78e2"
  8638. },
  8639. "dist": {
  8640. "type": "zip",
  8641. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/bf44a9fd41feaac72b074de600314a93e2ae78e2",
  8642. "reference": "bf44a9fd41feaac72b074de600314a93e2ae78e2",
  8643. "shasum": "",
  8644. "mirrors": [
  8645. {
  8646. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8647. "preferred": true
  8648. }
  8649. ]
  8650. },
  8651. "require": {
  8652. "php": ">=7.1"
  8653. },
  8654. "type": "library",
  8655. "extra": {
  8656. "branch-alias": {
  8657. "dev-main": "1.26-dev"
  8658. },
  8659. "thanks": {
  8660. "name": "symfony/polyfill",
  8661. "url": "https://github.com/symfony/polyfill"
  8662. }
  8663. },
  8664. "autoload": {
  8665. "files": [
  8666. "bootstrap.php"
  8667. ],
  8668. "psr-4": {
  8669. "Symfony\\Polyfill\\Php72\\": ""
  8670. }
  8671. },
  8672. "notification-url": "https://packagist.org/downloads/",
  8673. "license": [
  8674. "MIT"
  8675. ],
  8676. "authors": [
  8677. {
  8678. "name": "Nicolas Grekas",
  8679. "email": "p@tchwork.com"
  8680. },
  8681. {
  8682. "name": "Symfony Community",
  8683. "homepage": "https://symfony.com/contributors"
  8684. }
  8685. ],
  8686. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  8687. "homepage": "https://symfony.com",
  8688. "keywords": [
  8689. "compatibility",
  8690. "polyfill",
  8691. "portable",
  8692. "shim"
  8693. ],
  8694. "support": {
  8695. "source": "https://github.com/symfony/polyfill-php72/tree/v1.26.0"
  8696. },
  8697. "funding": [
  8698. {
  8699. "url": "https://symfony.com/sponsor",
  8700. "type": "custom"
  8701. },
  8702. {
  8703. "url": "https://github.com/fabpot",
  8704. "type": "github"
  8705. },
  8706. {
  8707. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8708. "type": "tidelift"
  8709. }
  8710. ],
  8711. "time": "2022-05-24T11:49:31+00:00"
  8712. },
  8713. {
  8714. "name": "symfony/polyfill-php73",
  8715. "version": "v1.26.0",
  8716. "source": {
  8717. "type": "git",
  8718. "url": "https://github.com/symfony/polyfill-php73.git",
  8719. "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85"
  8720. },
  8721. "dist": {
  8722. "type": "zip",
  8723. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/e440d35fa0286f77fb45b79a03fedbeda9307e85",
  8724. "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85",
  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. "php": ">=7.1"
  8735. },
  8736. "type": "library",
  8737. "extra": {
  8738. "branch-alias": {
  8739. "dev-main": "1.26-dev"
  8740. },
  8741. "thanks": {
  8742. "name": "symfony/polyfill",
  8743. "url": "https://github.com/symfony/polyfill"
  8744. }
  8745. },
  8746. "autoload": {
  8747. "files": [
  8748. "bootstrap.php"
  8749. ],
  8750. "psr-4": {
  8751. "Symfony\\Polyfill\\Php73\\": ""
  8752. },
  8753. "classmap": [
  8754. "Resources/stubs"
  8755. ]
  8756. },
  8757. "notification-url": "https://packagist.org/downloads/",
  8758. "license": [
  8759. "MIT"
  8760. ],
  8761. "authors": [
  8762. {
  8763. "name": "Nicolas Grekas",
  8764. "email": "p@tchwork.com"
  8765. },
  8766. {
  8767. "name": "Symfony Community",
  8768. "homepage": "https://symfony.com/contributors"
  8769. }
  8770. ],
  8771. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  8772. "homepage": "https://symfony.com",
  8773. "keywords": [
  8774. "compatibility",
  8775. "polyfill",
  8776. "portable",
  8777. "shim"
  8778. ],
  8779. "support": {
  8780. "source": "https://github.com/symfony/polyfill-php73/tree/v1.26.0"
  8781. },
  8782. "funding": [
  8783. {
  8784. "url": "https://symfony.com/sponsor",
  8785. "type": "custom"
  8786. },
  8787. {
  8788. "url": "https://github.com/fabpot",
  8789. "type": "github"
  8790. },
  8791. {
  8792. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8793. "type": "tidelift"
  8794. }
  8795. ],
  8796. "time": "2022-05-24T11:49:31+00:00"
  8797. },
  8798. {
  8799. "name": "symfony/polyfill-php80",
  8800. "version": "v1.26.0",
  8801. "source": {
  8802. "type": "git",
  8803. "url": "https://github.com/symfony/polyfill-php80.git",
  8804. "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace"
  8805. },
  8806. "dist": {
  8807. "type": "zip",
  8808. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/cfa0ae98841b9e461207c13ab093d76b0fa7bace",
  8809. "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace",
  8810. "shasum": "",
  8811. "mirrors": [
  8812. {
  8813. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8814. "preferred": true
  8815. }
  8816. ]
  8817. },
  8818. "require": {
  8819. "php": ">=7.1"
  8820. },
  8821. "type": "library",
  8822. "extra": {
  8823. "branch-alias": {
  8824. "dev-main": "1.26-dev"
  8825. },
  8826. "thanks": {
  8827. "name": "symfony/polyfill",
  8828. "url": "https://github.com/symfony/polyfill"
  8829. }
  8830. },
  8831. "autoload": {
  8832. "files": [
  8833. "bootstrap.php"
  8834. ],
  8835. "psr-4": {
  8836. "Symfony\\Polyfill\\Php80\\": ""
  8837. },
  8838. "classmap": [
  8839. "Resources/stubs"
  8840. ]
  8841. },
  8842. "notification-url": "https://packagist.org/downloads/",
  8843. "license": [
  8844. "MIT"
  8845. ],
  8846. "authors": [
  8847. {
  8848. "name": "Ion Bazan",
  8849. "email": "ion.bazan@gmail.com"
  8850. },
  8851. {
  8852. "name": "Nicolas Grekas",
  8853. "email": "p@tchwork.com"
  8854. },
  8855. {
  8856. "name": "Symfony Community",
  8857. "homepage": "https://symfony.com/contributors"
  8858. }
  8859. ],
  8860. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  8861. "homepage": "https://symfony.com",
  8862. "keywords": [
  8863. "compatibility",
  8864. "polyfill",
  8865. "portable",
  8866. "shim"
  8867. ],
  8868. "support": {
  8869. "source": "https://github.com/symfony/polyfill-php80/tree/v1.26.0"
  8870. },
  8871. "funding": [
  8872. {
  8873. "url": "https://symfony.com/sponsor",
  8874. "type": "custom"
  8875. },
  8876. {
  8877. "url": "https://github.com/fabpot",
  8878. "type": "github"
  8879. },
  8880. {
  8881. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8882. "type": "tidelift"
  8883. }
  8884. ],
  8885. "time": "2022-05-10T07:21:04+00:00"
  8886. },
  8887. {
  8888. "name": "symfony/polyfill-php81",
  8889. "version": "v1.26.0",
  8890. "source": {
  8891. "type": "git",
  8892. "url": "https://github.com/symfony/polyfill-php81.git",
  8893. "reference": "13f6d1271c663dc5ae9fb843a8f16521db7687a1"
  8894. },
  8895. "dist": {
  8896. "type": "zip",
  8897. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/13f6d1271c663dc5ae9fb843a8f16521db7687a1",
  8898. "reference": "13f6d1271c663dc5ae9fb843a8f16521db7687a1",
  8899. "shasum": "",
  8900. "mirrors": [
  8901. {
  8902. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8903. "preferred": true
  8904. }
  8905. ]
  8906. },
  8907. "require": {
  8908. "php": ">=7.1"
  8909. },
  8910. "type": "library",
  8911. "extra": {
  8912. "branch-alias": {
  8913. "dev-main": "1.26-dev"
  8914. },
  8915. "thanks": {
  8916. "name": "symfony/polyfill",
  8917. "url": "https://github.com/symfony/polyfill"
  8918. }
  8919. },
  8920. "autoload": {
  8921. "files": [
  8922. "bootstrap.php"
  8923. ],
  8924. "psr-4": {
  8925. "Symfony\\Polyfill\\Php81\\": ""
  8926. },
  8927. "classmap": [
  8928. "Resources/stubs"
  8929. ]
  8930. },
  8931. "notification-url": "https://packagist.org/downloads/",
  8932. "license": [
  8933. "MIT"
  8934. ],
  8935. "authors": [
  8936. {
  8937. "name": "Nicolas Grekas",
  8938. "email": "p@tchwork.com"
  8939. },
  8940. {
  8941. "name": "Symfony Community",
  8942. "homepage": "https://symfony.com/contributors"
  8943. }
  8944. ],
  8945. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  8946. "homepage": "https://symfony.com",
  8947. "keywords": [
  8948. "compatibility",
  8949. "polyfill",
  8950. "portable",
  8951. "shim"
  8952. ],
  8953. "support": {
  8954. "source": "https://github.com/symfony/polyfill-php81/tree/v1.26.0"
  8955. },
  8956. "funding": [
  8957. {
  8958. "url": "https://symfony.com/sponsor",
  8959. "type": "custom"
  8960. },
  8961. {
  8962. "url": "https://github.com/fabpot",
  8963. "type": "github"
  8964. },
  8965. {
  8966. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8967. "type": "tidelift"
  8968. }
  8969. ],
  8970. "time": "2022-05-24T11:49:31+00:00"
  8971. },
  8972. {
  8973. "name": "symfony/process",
  8974. "version": "v5.4.8",
  8975. "source": {
  8976. "type": "git",
  8977. "url": "https://github.com/symfony/process.git",
  8978. "reference": "597f3fff8e3e91836bb0bd38f5718b56ddbde2f3"
  8979. },
  8980. "dist": {
  8981. "type": "zip",
  8982. "url": "https://api.github.com/repos/symfony/process/zipball/597f3fff8e3e91836bb0bd38f5718b56ddbde2f3",
  8983. "reference": "597f3fff8e3e91836bb0bd38f5718b56ddbde2f3",
  8984. "shasum": "",
  8985. "mirrors": [
  8986. {
  8987. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8988. "preferred": true
  8989. }
  8990. ]
  8991. },
  8992. "require": {
  8993. "php": ">=7.2.5",
  8994. "symfony/polyfill-php80": "^1.16"
  8995. },
  8996. "type": "library",
  8997. "autoload": {
  8998. "psr-4": {
  8999. "Symfony\\Component\\Process\\": ""
  9000. },
  9001. "exclude-from-classmap": [
  9002. "/Tests/"
  9003. ]
  9004. },
  9005. "notification-url": "https://packagist.org/downloads/",
  9006. "license": [
  9007. "MIT"
  9008. ],
  9009. "authors": [
  9010. {
  9011. "name": "Fabien Potencier",
  9012. "email": "fabien@symfony.com"
  9013. },
  9014. {
  9015. "name": "Symfony Community",
  9016. "homepage": "https://symfony.com/contributors"
  9017. }
  9018. ],
  9019. "description": "Executes commands in sub-processes",
  9020. "homepage": "https://symfony.com",
  9021. "support": {
  9022. "source": "https://github.com/symfony/process/tree/v5.4.8"
  9023. },
  9024. "funding": [
  9025. {
  9026. "url": "https://symfony.com/sponsor",
  9027. "type": "custom"
  9028. },
  9029. {
  9030. "url": "https://github.com/fabpot",
  9031. "type": "github"
  9032. },
  9033. {
  9034. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9035. "type": "tidelift"
  9036. }
  9037. ],
  9038. "time": "2022-04-08T05:07:18+00:00"
  9039. },
  9040. {
  9041. "name": "symfony/psr-http-message-bridge",
  9042. "version": "v2.1.2",
  9043. "source": {
  9044. "type": "git",
  9045. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  9046. "reference": "22b37c8a3f6b5d94e9cdbd88e1270d96e2f97b34"
  9047. },
  9048. "dist": {
  9049. "type": "zip",
  9050. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/22b37c8a3f6b5d94e9cdbd88e1270d96e2f97b34",
  9051. "reference": "22b37c8a3f6b5d94e9cdbd88e1270d96e2f97b34",
  9052. "shasum": "",
  9053. "mirrors": [
  9054. {
  9055. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9056. "preferred": true
  9057. }
  9058. ]
  9059. },
  9060. "require": {
  9061. "php": ">=7.1",
  9062. "psr/http-message": "^1.0",
  9063. "symfony/http-foundation": "^4.4 || ^5.0 || ^6.0"
  9064. },
  9065. "require-dev": {
  9066. "nyholm/psr7": "^1.1",
  9067. "psr/log": "^1.1 || ^2 || ^3",
  9068. "symfony/browser-kit": "^4.4 || ^5.0 || ^6.0",
  9069. "symfony/config": "^4.4 || ^5.0 || ^6.0",
  9070. "symfony/event-dispatcher": "^4.4 || ^5.0 || ^6.0",
  9071. "symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0",
  9072. "symfony/http-kernel": "^4.4 || ^5.0 || ^6.0",
  9073. "symfony/phpunit-bridge": "^5.4@dev || ^6.0"
  9074. },
  9075. "suggest": {
  9076. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  9077. },
  9078. "type": "symfony-bridge",
  9079. "extra": {
  9080. "branch-alias": {
  9081. "dev-main": "2.1-dev"
  9082. }
  9083. },
  9084. "autoload": {
  9085. "psr-4": {
  9086. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  9087. },
  9088. "exclude-from-classmap": [
  9089. "/Tests/"
  9090. ]
  9091. },
  9092. "notification-url": "https://packagist.org/downloads/",
  9093. "license": [
  9094. "MIT"
  9095. ],
  9096. "authors": [
  9097. {
  9098. "name": "Fabien Potencier",
  9099. "email": "fabien@symfony.com"
  9100. },
  9101. {
  9102. "name": "Symfony Community",
  9103. "homepage": "http://symfony.com/contributors"
  9104. }
  9105. ],
  9106. "description": "PSR HTTP message bridge",
  9107. "homepage": "http://symfony.com",
  9108. "keywords": [
  9109. "http",
  9110. "http-message",
  9111. "psr-17",
  9112. "psr-7"
  9113. ],
  9114. "support": {
  9115. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  9116. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.1.2"
  9117. },
  9118. "funding": [
  9119. {
  9120. "url": "https://symfony.com/sponsor",
  9121. "type": "custom"
  9122. },
  9123. {
  9124. "url": "https://github.com/fabpot",
  9125. "type": "github"
  9126. },
  9127. {
  9128. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9129. "type": "tidelift"
  9130. }
  9131. ],
  9132. "time": "2021-11-05T13:13:39+00:00"
  9133. },
  9134. {
  9135. "name": "symfony/routing",
  9136. "version": "v5.4.8",
  9137. "source": {
  9138. "type": "git",
  9139. "url": "https://github.com/symfony/routing.git",
  9140. "reference": "e07817bb6244ea33ef5ad31abc4a9288bef3f2f7"
  9141. },
  9142. "dist": {
  9143. "type": "zip",
  9144. "url": "https://api.github.com/repos/symfony/routing/zipball/e07817bb6244ea33ef5ad31abc4a9288bef3f2f7",
  9145. "reference": "e07817bb6244ea33ef5ad31abc4a9288bef3f2f7",
  9146. "shasum": "",
  9147. "mirrors": [
  9148. {
  9149. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9150. "preferred": true
  9151. }
  9152. ]
  9153. },
  9154. "require": {
  9155. "php": ">=7.2.5",
  9156. "symfony/deprecation-contracts": "^2.1|^3",
  9157. "symfony/polyfill-php80": "^1.16"
  9158. },
  9159. "conflict": {
  9160. "doctrine/annotations": "<1.12",
  9161. "symfony/config": "<5.3",
  9162. "symfony/dependency-injection": "<4.4",
  9163. "symfony/yaml": "<4.4"
  9164. },
  9165. "require-dev": {
  9166. "doctrine/annotations": "^1.12",
  9167. "psr/log": "^1|^2|^3",
  9168. "symfony/config": "^5.3|^6.0",
  9169. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  9170. "symfony/expression-language": "^4.4|^5.0|^6.0",
  9171. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  9172. "symfony/yaml": "^4.4|^5.0|^6.0"
  9173. },
  9174. "suggest": {
  9175. "symfony/config": "For using the all-in-one router or any loader",
  9176. "symfony/expression-language": "For using expression matching",
  9177. "symfony/http-foundation": "For using a Symfony Request object",
  9178. "symfony/yaml": "For using the YAML loader"
  9179. },
  9180. "type": "library",
  9181. "autoload": {
  9182. "psr-4": {
  9183. "Symfony\\Component\\Routing\\": ""
  9184. },
  9185. "exclude-from-classmap": [
  9186. "/Tests/"
  9187. ]
  9188. },
  9189. "notification-url": "https://packagist.org/downloads/",
  9190. "license": [
  9191. "MIT"
  9192. ],
  9193. "authors": [
  9194. {
  9195. "name": "Fabien Potencier",
  9196. "email": "fabien@symfony.com"
  9197. },
  9198. {
  9199. "name": "Symfony Community",
  9200. "homepage": "https://symfony.com/contributors"
  9201. }
  9202. ],
  9203. "description": "Maps an HTTP request to a set of configuration variables",
  9204. "homepage": "https://symfony.com",
  9205. "keywords": [
  9206. "router",
  9207. "routing",
  9208. "uri",
  9209. "url"
  9210. ],
  9211. "support": {
  9212. "source": "https://github.com/symfony/routing/tree/v5.4.8"
  9213. },
  9214. "funding": [
  9215. {
  9216. "url": "https://symfony.com/sponsor",
  9217. "type": "custom"
  9218. },
  9219. {
  9220. "url": "https://github.com/fabpot",
  9221. "type": "github"
  9222. },
  9223. {
  9224. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9225. "type": "tidelift"
  9226. }
  9227. ],
  9228. "time": "2022-04-18T21:45:37+00:00"
  9229. },
  9230. {
  9231. "name": "symfony/service-contracts",
  9232. "version": "v2.5.2",
  9233. "source": {
  9234. "type": "git",
  9235. "url": "https://github.com/symfony/service-contracts.git",
  9236. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c"
  9237. },
  9238. "dist": {
  9239. "type": "zip",
  9240. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  9241. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  9242. "shasum": "",
  9243. "mirrors": [
  9244. {
  9245. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9246. "preferred": true
  9247. }
  9248. ]
  9249. },
  9250. "require": {
  9251. "php": ">=7.2.5",
  9252. "psr/container": "^1.1",
  9253. "symfony/deprecation-contracts": "^2.1|^3"
  9254. },
  9255. "conflict": {
  9256. "ext-psr": "<1.1|>=2"
  9257. },
  9258. "suggest": {
  9259. "symfony/service-implementation": ""
  9260. },
  9261. "type": "library",
  9262. "extra": {
  9263. "branch-alias": {
  9264. "dev-main": "2.5-dev"
  9265. },
  9266. "thanks": {
  9267. "name": "symfony/contracts",
  9268. "url": "https://github.com/symfony/contracts"
  9269. }
  9270. },
  9271. "autoload": {
  9272. "psr-4": {
  9273. "Symfony\\Contracts\\Service\\": ""
  9274. }
  9275. },
  9276. "notification-url": "https://packagist.org/downloads/",
  9277. "license": [
  9278. "MIT"
  9279. ],
  9280. "authors": [
  9281. {
  9282. "name": "Nicolas Grekas",
  9283. "email": "p@tchwork.com"
  9284. },
  9285. {
  9286. "name": "Symfony Community",
  9287. "homepage": "https://symfony.com/contributors"
  9288. }
  9289. ],
  9290. "description": "Generic abstractions related to writing services",
  9291. "homepage": "https://symfony.com",
  9292. "keywords": [
  9293. "abstractions",
  9294. "contracts",
  9295. "decoupling",
  9296. "interfaces",
  9297. "interoperability",
  9298. "standards"
  9299. ],
  9300. "support": {
  9301. "source": "https://github.com/symfony/service-contracts/tree/v2.5.2"
  9302. },
  9303. "funding": [
  9304. {
  9305. "url": "https://symfony.com/sponsor",
  9306. "type": "custom"
  9307. },
  9308. {
  9309. "url": "https://github.com/fabpot",
  9310. "type": "github"
  9311. },
  9312. {
  9313. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9314. "type": "tidelift"
  9315. }
  9316. ],
  9317. "time": "2022-05-30T19:17:29+00:00"
  9318. },
  9319. {
  9320. "name": "symfony/string",
  9321. "version": "v6.0.10",
  9322. "source": {
  9323. "type": "git",
  9324. "url": "https://github.com/symfony/string.git",
  9325. "reference": "1b3adf02a0fc814bd9118d7fd68a097a599ebc27"
  9326. },
  9327. "dist": {
  9328. "type": "zip",
  9329. "url": "https://api.github.com/repos/symfony/string/zipball/1b3adf02a0fc814bd9118d7fd68a097a599ebc27",
  9330. "reference": "1b3adf02a0fc814bd9118d7fd68a097a599ebc27",
  9331. "shasum": "",
  9332. "mirrors": [
  9333. {
  9334. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9335. "preferred": true
  9336. }
  9337. ]
  9338. },
  9339. "require": {
  9340. "php": ">=8.0.2",
  9341. "symfony/polyfill-ctype": "~1.8",
  9342. "symfony/polyfill-intl-grapheme": "~1.0",
  9343. "symfony/polyfill-intl-normalizer": "~1.0",
  9344. "symfony/polyfill-mbstring": "~1.0"
  9345. },
  9346. "conflict": {
  9347. "symfony/translation-contracts": "<2.0"
  9348. },
  9349. "require-dev": {
  9350. "symfony/error-handler": "^5.4|^6.0",
  9351. "symfony/http-client": "^5.4|^6.0",
  9352. "symfony/translation-contracts": "^2.0|^3.0",
  9353. "symfony/var-exporter": "^5.4|^6.0"
  9354. },
  9355. "type": "library",
  9356. "autoload": {
  9357. "files": [
  9358. "Resources/functions.php"
  9359. ],
  9360. "psr-4": {
  9361. "Symfony\\Component\\String\\": ""
  9362. },
  9363. "exclude-from-classmap": [
  9364. "/Tests/"
  9365. ]
  9366. },
  9367. "notification-url": "https://packagist.org/downloads/",
  9368. "license": [
  9369. "MIT"
  9370. ],
  9371. "authors": [
  9372. {
  9373. "name": "Nicolas Grekas",
  9374. "email": "p@tchwork.com"
  9375. },
  9376. {
  9377. "name": "Symfony Community",
  9378. "homepage": "https://symfony.com/contributors"
  9379. }
  9380. ],
  9381. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  9382. "homepage": "https://symfony.com",
  9383. "keywords": [
  9384. "grapheme",
  9385. "i18n",
  9386. "string",
  9387. "unicode",
  9388. "utf-8",
  9389. "utf8"
  9390. ],
  9391. "support": {
  9392. "source": "https://github.com/symfony/string/tree/v6.0.10"
  9393. },
  9394. "funding": [
  9395. {
  9396. "url": "https://symfony.com/sponsor",
  9397. "type": "custom"
  9398. },
  9399. {
  9400. "url": "https://github.com/fabpot",
  9401. "type": "github"
  9402. },
  9403. {
  9404. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9405. "type": "tidelift"
  9406. }
  9407. ],
  9408. "time": "2022-06-26T16:34:50+00:00"
  9409. },
  9410. {
  9411. "name": "symfony/translation",
  9412. "version": "v6.0.9",
  9413. "source": {
  9414. "type": "git",
  9415. "url": "https://github.com/symfony/translation.git",
  9416. "reference": "9ba011309943955a3807b8236c17cff3b88f67b6"
  9417. },
  9418. "dist": {
  9419. "type": "zip",
  9420. "url": "https://api.github.com/repos/symfony/translation/zipball/9ba011309943955a3807b8236c17cff3b88f67b6",
  9421. "reference": "9ba011309943955a3807b8236c17cff3b88f67b6",
  9422. "shasum": "",
  9423. "mirrors": [
  9424. {
  9425. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9426. "preferred": true
  9427. }
  9428. ]
  9429. },
  9430. "require": {
  9431. "php": ">=8.0.2",
  9432. "symfony/polyfill-mbstring": "~1.0",
  9433. "symfony/translation-contracts": "^2.3|^3.0"
  9434. },
  9435. "conflict": {
  9436. "symfony/config": "<5.4",
  9437. "symfony/console": "<5.4",
  9438. "symfony/dependency-injection": "<5.4",
  9439. "symfony/http-kernel": "<5.4",
  9440. "symfony/twig-bundle": "<5.4",
  9441. "symfony/yaml": "<5.4"
  9442. },
  9443. "provide": {
  9444. "symfony/translation-implementation": "2.3|3.0"
  9445. },
  9446. "require-dev": {
  9447. "psr/log": "^1|^2|^3",
  9448. "symfony/config": "^5.4|^6.0",
  9449. "symfony/console": "^5.4|^6.0",
  9450. "symfony/dependency-injection": "^5.4|^6.0",
  9451. "symfony/finder": "^5.4|^6.0",
  9452. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  9453. "symfony/http-kernel": "^5.4|^6.0",
  9454. "symfony/intl": "^5.4|^6.0",
  9455. "symfony/polyfill-intl-icu": "^1.21",
  9456. "symfony/service-contracts": "^1.1.2|^2|^3",
  9457. "symfony/yaml": "^5.4|^6.0"
  9458. },
  9459. "suggest": {
  9460. "psr/log-implementation": "To use logging capability in translator",
  9461. "symfony/config": "",
  9462. "symfony/yaml": ""
  9463. },
  9464. "type": "library",
  9465. "autoload": {
  9466. "files": [
  9467. "Resources/functions.php"
  9468. ],
  9469. "psr-4": {
  9470. "Symfony\\Component\\Translation\\": ""
  9471. },
  9472. "exclude-from-classmap": [
  9473. "/Tests/"
  9474. ]
  9475. },
  9476. "notification-url": "https://packagist.org/downloads/",
  9477. "license": [
  9478. "MIT"
  9479. ],
  9480. "authors": [
  9481. {
  9482. "name": "Fabien Potencier",
  9483. "email": "fabien@symfony.com"
  9484. },
  9485. {
  9486. "name": "Symfony Community",
  9487. "homepage": "https://symfony.com/contributors"
  9488. }
  9489. ],
  9490. "description": "Provides tools to internationalize your application",
  9491. "homepage": "https://symfony.com",
  9492. "support": {
  9493. "source": "https://github.com/symfony/translation/tree/v6.0.9"
  9494. },
  9495. "funding": [
  9496. {
  9497. "url": "https://symfony.com/sponsor",
  9498. "type": "custom"
  9499. },
  9500. {
  9501. "url": "https://github.com/fabpot",
  9502. "type": "github"
  9503. },
  9504. {
  9505. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9506. "type": "tidelift"
  9507. }
  9508. ],
  9509. "time": "2022-05-06T14:27:17+00:00"
  9510. },
  9511. {
  9512. "name": "symfony/translation-contracts",
  9513. "version": "v3.0.2",
  9514. "source": {
  9515. "type": "git",
  9516. "url": "https://github.com/symfony/translation-contracts.git",
  9517. "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282"
  9518. },
  9519. "dist": {
  9520. "type": "zip",
  9521. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/acbfbb274e730e5a0236f619b6168d9dedb3e282",
  9522. "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282",
  9523. "shasum": "",
  9524. "mirrors": [
  9525. {
  9526. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9527. "preferred": true
  9528. }
  9529. ]
  9530. },
  9531. "require": {
  9532. "php": ">=8.0.2"
  9533. },
  9534. "suggest": {
  9535. "symfony/translation-implementation": ""
  9536. },
  9537. "type": "library",
  9538. "extra": {
  9539. "branch-alias": {
  9540. "dev-main": "3.0-dev"
  9541. },
  9542. "thanks": {
  9543. "name": "symfony/contracts",
  9544. "url": "https://github.com/symfony/contracts"
  9545. }
  9546. },
  9547. "autoload": {
  9548. "psr-4": {
  9549. "Symfony\\Contracts\\Translation\\": ""
  9550. }
  9551. },
  9552. "notification-url": "https://packagist.org/downloads/",
  9553. "license": [
  9554. "MIT"
  9555. ],
  9556. "authors": [
  9557. {
  9558. "name": "Nicolas Grekas",
  9559. "email": "p@tchwork.com"
  9560. },
  9561. {
  9562. "name": "Symfony Community",
  9563. "homepage": "https://symfony.com/contributors"
  9564. }
  9565. ],
  9566. "description": "Generic abstractions related to translation",
  9567. "homepage": "https://symfony.com",
  9568. "keywords": [
  9569. "abstractions",
  9570. "contracts",
  9571. "decoupling",
  9572. "interfaces",
  9573. "interoperability",
  9574. "standards"
  9575. ],
  9576. "support": {
  9577. "source": "https://github.com/symfony/translation-contracts/tree/v3.0.2"
  9578. },
  9579. "funding": [
  9580. {
  9581. "url": "https://symfony.com/sponsor",
  9582. "type": "custom"
  9583. },
  9584. {
  9585. "url": "https://github.com/fabpot",
  9586. "type": "github"
  9587. },
  9588. {
  9589. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9590. "type": "tidelift"
  9591. }
  9592. ],
  9593. "time": "2022-06-27T17:10:44+00:00"
  9594. },
  9595. {
  9596. "name": "symfony/var-dumper",
  9597. "version": "v5.4.9",
  9598. "source": {
  9599. "type": "git",
  9600. "url": "https://github.com/symfony/var-dumper.git",
  9601. "reference": "af52239a330fafd192c773795520dc2dd62b5657"
  9602. },
  9603. "dist": {
  9604. "type": "zip",
  9605. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/af52239a330fafd192c773795520dc2dd62b5657",
  9606. "reference": "af52239a330fafd192c773795520dc2dd62b5657",
  9607. "shasum": "",
  9608. "mirrors": [
  9609. {
  9610. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9611. "preferred": true
  9612. }
  9613. ]
  9614. },
  9615. "require": {
  9616. "php": ">=7.2.5",
  9617. "symfony/polyfill-mbstring": "~1.0",
  9618. "symfony/polyfill-php80": "^1.16"
  9619. },
  9620. "conflict": {
  9621. "phpunit/phpunit": "<5.4.3",
  9622. "symfony/console": "<4.4"
  9623. },
  9624. "require-dev": {
  9625. "ext-iconv": "*",
  9626. "symfony/console": "^4.4|^5.0|^6.0",
  9627. "symfony/process": "^4.4|^5.0|^6.0",
  9628. "symfony/uid": "^5.1|^6.0",
  9629. "twig/twig": "^2.13|^3.0.4"
  9630. },
  9631. "suggest": {
  9632. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  9633. "ext-intl": "To show region name in time zone dump",
  9634. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  9635. },
  9636. "bin": [
  9637. "Resources/bin/var-dump-server"
  9638. ],
  9639. "type": "library",
  9640. "autoload": {
  9641. "files": [
  9642. "Resources/functions/dump.php"
  9643. ],
  9644. "psr-4": {
  9645. "Symfony\\Component\\VarDumper\\": ""
  9646. },
  9647. "exclude-from-classmap": [
  9648. "/Tests/"
  9649. ]
  9650. },
  9651. "notification-url": "https://packagist.org/downloads/",
  9652. "license": [
  9653. "MIT"
  9654. ],
  9655. "authors": [
  9656. {
  9657. "name": "Nicolas Grekas",
  9658. "email": "p@tchwork.com"
  9659. },
  9660. {
  9661. "name": "Symfony Community",
  9662. "homepage": "https://symfony.com/contributors"
  9663. }
  9664. ],
  9665. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  9666. "homepage": "https://symfony.com",
  9667. "keywords": [
  9668. "debug",
  9669. "dump"
  9670. ],
  9671. "support": {
  9672. "source": "https://github.com/symfony/var-dumper/tree/v5.4.9"
  9673. },
  9674. "funding": [
  9675. {
  9676. "url": "https://symfony.com/sponsor",
  9677. "type": "custom"
  9678. },
  9679. {
  9680. "url": "https://github.com/fabpot",
  9681. "type": "github"
  9682. },
  9683. {
  9684. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9685. "type": "tidelift"
  9686. }
  9687. ],
  9688. "time": "2022-05-21T10:24:18+00:00"
  9689. },
  9690. {
  9691. "name": "symfony/var-exporter",
  9692. "version": "v6.0.9",
  9693. "source": {
  9694. "type": "git",
  9695. "url": "https://github.com/symfony/var-exporter.git",
  9696. "reference": "51c9947398d4f87f0b5a861999534a95afcd971e"
  9697. },
  9698. "dist": {
  9699. "type": "zip",
  9700. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/51c9947398d4f87f0b5a861999534a95afcd971e",
  9701. "reference": "51c9947398d4f87f0b5a861999534a95afcd971e",
  9702. "shasum": "",
  9703. "mirrors": [
  9704. {
  9705. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9706. "preferred": true
  9707. }
  9708. ]
  9709. },
  9710. "require": {
  9711. "php": ">=8.0.2"
  9712. },
  9713. "require-dev": {
  9714. "symfony/var-dumper": "^5.4|^6.0"
  9715. },
  9716. "type": "library",
  9717. "autoload": {
  9718. "psr-4": {
  9719. "Symfony\\Component\\VarExporter\\": ""
  9720. },
  9721. "exclude-from-classmap": [
  9722. "/Tests/"
  9723. ]
  9724. },
  9725. "notification-url": "https://packagist.org/downloads/",
  9726. "license": [
  9727. "MIT"
  9728. ],
  9729. "authors": [
  9730. {
  9731. "name": "Nicolas Grekas",
  9732. "email": "p@tchwork.com"
  9733. },
  9734. {
  9735. "name": "Symfony Community",
  9736. "homepage": "https://symfony.com/contributors"
  9737. }
  9738. ],
  9739. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  9740. "homepage": "https://symfony.com",
  9741. "keywords": [
  9742. "clone",
  9743. "construct",
  9744. "export",
  9745. "hydrate",
  9746. "instantiate",
  9747. "serialize"
  9748. ],
  9749. "support": {
  9750. "source": "https://github.com/symfony/var-exporter/tree/v6.0.9"
  9751. },
  9752. "funding": [
  9753. {
  9754. "url": "https://symfony.com/sponsor",
  9755. "type": "custom"
  9756. },
  9757. {
  9758. "url": "https://github.com/fabpot",
  9759. "type": "github"
  9760. },
  9761. {
  9762. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9763. "type": "tidelift"
  9764. }
  9765. ],
  9766. "time": "2022-05-21T13:33:31+00:00"
  9767. },
  9768. {
  9769. "name": "tencent/tls-sig-api-v2",
  9770. "version": "v1.0",
  9771. "source": {
  9772. "type": "git",
  9773. "url": "https://github.com/tencentyun/tls-sig-api-v2-php.git",
  9774. "reference": "af947437779ac6f18233e24c3e12ad5dae866a9f"
  9775. },
  9776. "dist": {
  9777. "type": "zip",
  9778. "url": "https://api.github.com/repos/tencentyun/tls-sig-api-v2-php/zipball/af947437779ac6f18233e24c3e12ad5dae866a9f",
  9779. "reference": "af947437779ac6f18233e24c3e12ad5dae866a9f",
  9780. "shasum": "",
  9781. "mirrors": [
  9782. {
  9783. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9784. "preferred": true
  9785. }
  9786. ]
  9787. },
  9788. "require": {
  9789. "php": ">=5.3.0"
  9790. },
  9791. "type": "library",
  9792. "autoload": {
  9793. "psr-4": {
  9794. "Tencent\\": "src/"
  9795. }
  9796. },
  9797. "notification-url": "https://packagist.org/downloads/",
  9798. "license": [
  9799. "MIT"
  9800. ],
  9801. "authors": [
  9802. {
  9803. "name": "weijunyi",
  9804. "email": "weijunyi@tencent.com",
  9805. "role": "Developer"
  9806. }
  9807. ],
  9808. "description": "tls-sig-api-v2 适用于腾讯云通信生成用户账号签名。",
  9809. "homepage": "https://github.com/tencentyun/tls-sig-api-v2-php",
  9810. "keywords": [
  9811. "im",
  9812. "tencent"
  9813. ],
  9814. "support": {
  9815. "issues": "https://github.com/tencentyun/tls-sig-api-v2-php/issues",
  9816. "source": "https://github.com/tencentyun/tls-sig-api-v2-php/tree/v1.0"
  9817. },
  9818. "time": "2019-06-20T08:42:03+00:00"
  9819. },
  9820. {
  9821. "name": "tencentcloud/tencentcloud-sdk-php",
  9822. "version": "3.0.671",
  9823. "source": {
  9824. "type": "git",
  9825. "url": "https://github.com/TencentCloud/tencentcloud-sdk-php.git",
  9826. "reference": "c3de84ff705dc58e186d65865870cab712cfbdb7"
  9827. },
  9828. "dist": {
  9829. "type": "zip",
  9830. "url": "https://api.github.com/repos/TencentCloud/tencentcloud-sdk-php/zipball/c3de84ff705dc58e186d65865870cab712cfbdb7",
  9831. "reference": "c3de84ff705dc58e186d65865870cab712cfbdb7",
  9832. "shasum": "",
  9833. "mirrors": [
  9834. {
  9835. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9836. "preferred": true
  9837. }
  9838. ]
  9839. },
  9840. "require": {
  9841. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  9842. "php": ">=5.6.0"
  9843. },
  9844. "type": "library",
  9845. "autoload": {
  9846. "psr-4": {
  9847. "TencentCloud\\": "./src/TencentCloud"
  9848. },
  9849. "classmap": [
  9850. "src/QcloudApi/QcloudApi.php"
  9851. ]
  9852. },
  9853. "notification-url": "https://packagist.org/downloads/",
  9854. "license": [
  9855. "Apache-2.0"
  9856. ],
  9857. "authors": [
  9858. {
  9859. "name": "coolli",
  9860. "email": "tencentcloudapi@tencent.com",
  9861. "homepage": "https://cloud.tencent.com/document/sdk/PHP",
  9862. "role": "Developer"
  9863. }
  9864. ],
  9865. "description": "TencentCloudApi php sdk",
  9866. "homepage": "https://github.com/TencentCloud/tencentcloud-sdk-php",
  9867. "support": {
  9868. "issues": "https://github.com/TencentCloud/tencentcloud-sdk-php/issues",
  9869. "source": "https://github.com/TencentCloud/tencentcloud-sdk-php/tree/3.0.671"
  9870. },
  9871. "time": "2022-07-13T23:02:46+00:00"
  9872. },
  9873. {
  9874. "name": "tijsverkoyen/css-to-inline-styles",
  9875. "version": "2.2.4",
  9876. "source": {
  9877. "type": "git",
  9878. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  9879. "reference": "da444caae6aca7a19c0c140f68c6182e337d5b1c"
  9880. },
  9881. "dist": {
  9882. "type": "zip",
  9883. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/da444caae6aca7a19c0c140f68c6182e337d5b1c",
  9884. "reference": "da444caae6aca7a19c0c140f68c6182e337d5b1c",
  9885. "shasum": "",
  9886. "mirrors": [
  9887. {
  9888. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9889. "preferred": true
  9890. }
  9891. ]
  9892. },
  9893. "require": {
  9894. "ext-dom": "*",
  9895. "ext-libxml": "*",
  9896. "php": "^5.5 || ^7.0 || ^8.0",
  9897. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  9898. },
  9899. "require-dev": {
  9900. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  9901. },
  9902. "type": "library",
  9903. "extra": {
  9904. "branch-alias": {
  9905. "dev-master": "2.2.x-dev"
  9906. }
  9907. },
  9908. "autoload": {
  9909. "psr-4": {
  9910. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  9911. }
  9912. },
  9913. "notification-url": "https://packagist.org/downloads/",
  9914. "license": [
  9915. "BSD-3-Clause"
  9916. ],
  9917. "authors": [
  9918. {
  9919. "name": "Tijs Verkoyen",
  9920. "email": "css_to_inline_styles@verkoyen.eu",
  9921. "role": "Developer"
  9922. }
  9923. ],
  9924. "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.",
  9925. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  9926. "support": {
  9927. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  9928. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.4"
  9929. },
  9930. "time": "2021-12-08T09:12:39+00:00"
  9931. },
  9932. {
  9933. "name": "vlucas/phpdotenv",
  9934. "version": "v5.4.1",
  9935. "source": {
  9936. "type": "git",
  9937. "url": "https://github.com/vlucas/phpdotenv.git",
  9938. "reference": "264dce589e7ce37a7ba99cb901eed8249fbec92f"
  9939. },
  9940. "dist": {
  9941. "type": "zip",
  9942. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/264dce589e7ce37a7ba99cb901eed8249fbec92f",
  9943. "reference": "264dce589e7ce37a7ba99cb901eed8249fbec92f",
  9944. "shasum": "",
  9945. "mirrors": [
  9946. {
  9947. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9948. "preferred": true
  9949. }
  9950. ]
  9951. },
  9952. "require": {
  9953. "ext-pcre": "*",
  9954. "graham-campbell/result-type": "^1.0.2",
  9955. "php": "^7.1.3 || ^8.0",
  9956. "phpoption/phpoption": "^1.8",
  9957. "symfony/polyfill-ctype": "^1.23",
  9958. "symfony/polyfill-mbstring": "^1.23.1",
  9959. "symfony/polyfill-php80": "^1.23.1"
  9960. },
  9961. "require-dev": {
  9962. "bamarni/composer-bin-plugin": "^1.4.1",
  9963. "ext-filter": "*",
  9964. "phpunit/phpunit": "^7.5.20 || ^8.5.21 || ^9.5.10"
  9965. },
  9966. "suggest": {
  9967. "ext-filter": "Required to use the boolean validator."
  9968. },
  9969. "type": "library",
  9970. "extra": {
  9971. "branch-alias": {
  9972. "dev-master": "5.4-dev"
  9973. }
  9974. },
  9975. "autoload": {
  9976. "psr-4": {
  9977. "Dotenv\\": "src/"
  9978. }
  9979. },
  9980. "notification-url": "https://packagist.org/downloads/",
  9981. "license": [
  9982. "BSD-3-Clause"
  9983. ],
  9984. "authors": [
  9985. {
  9986. "name": "Graham Campbell",
  9987. "email": "hello@gjcampbell.co.uk",
  9988. "homepage": "https://github.com/GrahamCampbell"
  9989. },
  9990. {
  9991. "name": "Vance Lucas",
  9992. "email": "vance@vancelucas.com",
  9993. "homepage": "https://github.com/vlucas"
  9994. }
  9995. ],
  9996. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  9997. "keywords": [
  9998. "dotenv",
  9999. "env",
  10000. "environment"
  10001. ],
  10002. "support": {
  10003. "issues": "https://github.com/vlucas/phpdotenv/issues",
  10004. "source": "https://github.com/vlucas/phpdotenv/tree/v5.4.1"
  10005. },
  10006. "funding": [
  10007. {
  10008. "url": "https://github.com/GrahamCampbell",
  10009. "type": "github"
  10010. },
  10011. {
  10012. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  10013. "type": "tidelift"
  10014. }
  10015. ],
  10016. "time": "2021-12-12T23:22:04+00:00"
  10017. },
  10018. {
  10019. "name": "voku/portable-ascii",
  10020. "version": "1.6.1",
  10021. "source": {
  10022. "type": "git",
  10023. "url": "https://github.com/voku/portable-ascii.git",
  10024. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a"
  10025. },
  10026. "dist": {
  10027. "type": "zip",
  10028. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/87337c91b9dfacee02452244ee14ab3c43bc485a",
  10029. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a",
  10030. "shasum": "",
  10031. "mirrors": [
  10032. {
  10033. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10034. "preferred": true
  10035. }
  10036. ]
  10037. },
  10038. "require": {
  10039. "php": ">=7.0.0"
  10040. },
  10041. "require-dev": {
  10042. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  10043. },
  10044. "suggest": {
  10045. "ext-intl": "Use Intl for transliterator_transliterate() support"
  10046. },
  10047. "type": "library",
  10048. "autoload": {
  10049. "psr-4": {
  10050. "voku\\": "src/voku/"
  10051. }
  10052. },
  10053. "notification-url": "https://packagist.org/downloads/",
  10054. "license": [
  10055. "MIT"
  10056. ],
  10057. "authors": [
  10058. {
  10059. "name": "Lars Moelleken",
  10060. "homepage": "http://www.moelleken.org/"
  10061. }
  10062. ],
  10063. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  10064. "homepage": "https://github.com/voku/portable-ascii",
  10065. "keywords": [
  10066. "ascii",
  10067. "clean",
  10068. "php"
  10069. ],
  10070. "support": {
  10071. "issues": "https://github.com/voku/portable-ascii/issues",
  10072. "source": "https://github.com/voku/portable-ascii/tree/1.6.1"
  10073. },
  10074. "funding": [
  10075. {
  10076. "url": "https://www.paypal.me/moelleken",
  10077. "type": "custom"
  10078. },
  10079. {
  10080. "url": "https://github.com/voku",
  10081. "type": "github"
  10082. },
  10083. {
  10084. "url": "https://opencollective.com/portable-ascii",
  10085. "type": "open_collective"
  10086. },
  10087. {
  10088. "url": "https://www.patreon.com/voku",
  10089. "type": "patreon"
  10090. },
  10091. {
  10092. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  10093. "type": "tidelift"
  10094. }
  10095. ],
  10096. "time": "2022-01-24T18:55:24+00:00"
  10097. },
  10098. {
  10099. "name": "webmozart/assert",
  10100. "version": "1.11.0",
  10101. "source": {
  10102. "type": "git",
  10103. "url": "https://github.com/webmozarts/assert.git",
  10104. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  10105. },
  10106. "dist": {
  10107. "type": "zip",
  10108. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  10109. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  10110. "shasum": "",
  10111. "mirrors": [
  10112. {
  10113. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10114. "preferred": true
  10115. }
  10116. ]
  10117. },
  10118. "require": {
  10119. "ext-ctype": "*",
  10120. "php": "^7.2 || ^8.0"
  10121. },
  10122. "conflict": {
  10123. "phpstan/phpstan": "<0.12.20",
  10124. "vimeo/psalm": "<4.6.1 || 4.6.2"
  10125. },
  10126. "require-dev": {
  10127. "phpunit/phpunit": "^8.5.13"
  10128. },
  10129. "type": "library",
  10130. "extra": {
  10131. "branch-alias": {
  10132. "dev-master": "1.10-dev"
  10133. }
  10134. },
  10135. "autoload": {
  10136. "psr-4": {
  10137. "Webmozart\\Assert\\": "src/"
  10138. }
  10139. },
  10140. "notification-url": "https://packagist.org/downloads/",
  10141. "license": [
  10142. "MIT"
  10143. ],
  10144. "authors": [
  10145. {
  10146. "name": "Bernhard Schussek",
  10147. "email": "bschussek@gmail.com"
  10148. }
  10149. ],
  10150. "description": "Assertions to validate method input/output with nice error messages.",
  10151. "keywords": [
  10152. "assert",
  10153. "check",
  10154. "validate"
  10155. ],
  10156. "support": {
  10157. "issues": "https://github.com/webmozarts/assert/issues",
  10158. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  10159. },
  10160. "time": "2022-06-03T18:03:27+00:00"
  10161. },
  10162. {
  10163. "name": "wemersonjanuario/wkhtmltopdf-windows",
  10164. "version": "0.12.2.3",
  10165. "source": {
  10166. "type": "git",
  10167. "url": "https://github.com/wemersonjanuario/wkhtmltopdf-windows.git",
  10168. "reference": "90fcd3487cad5931287742113c449b926e9e48d8"
  10169. },
  10170. "dist": {
  10171. "type": "zip",
  10172. "url": "https://api.github.com/repos/wemersonjanuario/wkhtmltopdf-windows/zipball/90fcd3487cad5931287742113c449b926e9e48d8",
  10173. "reference": "90fcd3487cad5931287742113c449b926e9e48d8",
  10174. "shasum": "",
  10175. "mirrors": [
  10176. {
  10177. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10178. "preferred": true
  10179. }
  10180. ]
  10181. },
  10182. "suggest": {
  10183. "h4cc/wkhtmltopdf-amd64": "*",
  10184. "h4cc/wkhtmltopdf-i386": "*",
  10185. "wemersonjanuario/laravelpdf": "1.0.*"
  10186. },
  10187. "bin": [
  10188. "bin/32bit/wkhtmltopdf.exe",
  10189. "bin/32bit/wkhtmltoimage.exe",
  10190. "bin/64bit/wkhtmltopdf.exe",
  10191. "bin/64bit/wkhtmltoimage.exe"
  10192. ],
  10193. "type": "library",
  10194. "notification-url": "https://packagist.org/downloads/",
  10195. "license": [
  10196. "LGPL Version 3"
  10197. ],
  10198. "authors": [
  10199. {
  10200. "name": "Wemerson Januario",
  10201. "email": "wemerson.januario@gmail.com",
  10202. "homepage": "http://wemersonjanuario.com.br"
  10203. }
  10204. ],
  10205. "description": "Convert html to pdf using webkit (qtwebkit). Static linked windows binary for 32 bit and 64 bit systems.",
  10206. "homepage": "http://wkhtmltopdf.org/",
  10207. "keywords": [
  10208. "binary",
  10209. "convert",
  10210. "htmltoimage",
  10211. "htmltopdf",
  10212. "pdf",
  10213. "snapshot",
  10214. "thumbnail",
  10215. "wkhtmltopdf"
  10216. ],
  10217. "support": {
  10218. "issues": "https://github.com/wemersonjanuario/wkhtmltopdf-windows/issues?state=open",
  10219. "source": "https://github.com/wemersonjanuario/wkhtmltopdf-windows/tree/master"
  10220. },
  10221. "time": "2015-06-30T20:19:22+00:00"
  10222. }
  10223. ],
  10224. "packages-dev": [
  10225. {
  10226. "name": "barryvdh/laravel-ide-helper",
  10227. "version": "v2.12.3",
  10228. "source": {
  10229. "type": "git",
  10230. "url": "https://github.com/barryvdh/laravel-ide-helper.git",
  10231. "reference": "3ba1e2573b38f72107b8aacc4ee177fcab30a550"
  10232. },
  10233. "dist": {
  10234. "type": "zip",
  10235. "url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/3ba1e2573b38f72107b8aacc4ee177fcab30a550",
  10236. "reference": "3ba1e2573b38f72107b8aacc4ee177fcab30a550",
  10237. "shasum": "",
  10238. "mirrors": [
  10239. {
  10240. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10241. "preferred": true
  10242. }
  10243. ]
  10244. },
  10245. "require": {
  10246. "barryvdh/reflection-docblock": "^2.0.6",
  10247. "composer/pcre": "^1 || ^2 || ^3",
  10248. "doctrine/dbal": "^2.6 || ^3",
  10249. "ext-json": "*",
  10250. "illuminate/console": "^8 || ^9",
  10251. "illuminate/filesystem": "^8 || ^9",
  10252. "illuminate/support": "^8 || ^9",
  10253. "nikic/php-parser": "^4.7",
  10254. "php": "^7.3 || ^8.0",
  10255. "phpdocumentor/type-resolver": "^1.1.0"
  10256. },
  10257. "require-dev": {
  10258. "ext-pdo_sqlite": "*",
  10259. "friendsofphp/php-cs-fixer": "^2",
  10260. "illuminate/config": "^8 || ^9",
  10261. "illuminate/view": "^8 || ^9",
  10262. "mockery/mockery": "^1.4",
  10263. "orchestra/testbench": "^6 || ^7",
  10264. "phpunit/phpunit": "^8.5 || ^9",
  10265. "spatie/phpunit-snapshot-assertions": "^3 || ^4",
  10266. "vimeo/psalm": "^3.12"
  10267. },
  10268. "suggest": {
  10269. "illuminate/events": "Required for automatic helper generation (^6|^7|^8|^9)."
  10270. },
  10271. "type": "library",
  10272. "extra": {
  10273. "branch-alias": {
  10274. "dev-master": "2.12-dev"
  10275. },
  10276. "laravel": {
  10277. "providers": [
  10278. "Barryvdh\\LaravelIdeHelper\\IdeHelperServiceProvider"
  10279. ]
  10280. }
  10281. },
  10282. "autoload": {
  10283. "psr-4": {
  10284. "Barryvdh\\LaravelIdeHelper\\": "src"
  10285. }
  10286. },
  10287. "notification-url": "https://packagist.org/downloads/",
  10288. "license": [
  10289. "MIT"
  10290. ],
  10291. "authors": [
  10292. {
  10293. "name": "Barry vd. Heuvel",
  10294. "email": "barryvdh@gmail.com"
  10295. }
  10296. ],
  10297. "description": "Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.",
  10298. "keywords": [
  10299. "autocomplete",
  10300. "codeintel",
  10301. "helper",
  10302. "ide",
  10303. "laravel",
  10304. "netbeans",
  10305. "phpdoc",
  10306. "phpstorm",
  10307. "sublime"
  10308. ],
  10309. "support": {
  10310. "issues": "https://github.com/barryvdh/laravel-ide-helper/issues",
  10311. "source": "https://github.com/barryvdh/laravel-ide-helper/tree/v2.12.3"
  10312. },
  10313. "funding": [
  10314. {
  10315. "url": "https://fruitcake.nl",
  10316. "type": "custom"
  10317. },
  10318. {
  10319. "url": "https://github.com/barryvdh",
  10320. "type": "github"
  10321. }
  10322. ],
  10323. "time": "2022-03-06T14:33:42+00:00"
  10324. },
  10325. {
  10326. "name": "barryvdh/reflection-docblock",
  10327. "version": "v2.0.6",
  10328. "source": {
  10329. "type": "git",
  10330. "url": "https://github.com/barryvdh/ReflectionDocBlock.git",
  10331. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16"
  10332. },
  10333. "dist": {
  10334. "type": "zip",
  10335. "url": "https://api.github.com/repos/barryvdh/ReflectionDocBlock/zipball/6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  10336. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  10337. "shasum": "",
  10338. "mirrors": [
  10339. {
  10340. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10341. "preferred": true
  10342. }
  10343. ]
  10344. },
  10345. "require": {
  10346. "php": ">=5.3.3"
  10347. },
  10348. "require-dev": {
  10349. "phpunit/phpunit": "~4.0,<4.5"
  10350. },
  10351. "suggest": {
  10352. "dflydev/markdown": "~1.0",
  10353. "erusev/parsedown": "~1.0"
  10354. },
  10355. "type": "library",
  10356. "extra": {
  10357. "branch-alias": {
  10358. "dev-master": "2.0.x-dev"
  10359. }
  10360. },
  10361. "autoload": {
  10362. "psr-0": {
  10363. "Barryvdh": [
  10364. "src/"
  10365. ]
  10366. }
  10367. },
  10368. "notification-url": "https://packagist.org/downloads/",
  10369. "license": [
  10370. "MIT"
  10371. ],
  10372. "authors": [
  10373. {
  10374. "name": "Mike van Riel",
  10375. "email": "mike.vanriel@naenius.com"
  10376. }
  10377. ],
  10378. "support": {
  10379. "source": "https://github.com/barryvdh/ReflectionDocBlock/tree/v2.0.6"
  10380. },
  10381. "time": "2018-12-13T10:34:14+00:00"
  10382. },
  10383. {
  10384. "name": "composer/pcre",
  10385. "version": "3.0.0",
  10386. "source": {
  10387. "type": "git",
  10388. "url": "https://github.com/composer/pcre.git",
  10389. "reference": "e300eb6c535192decd27a85bc72a9290f0d6b3bd"
  10390. },
  10391. "dist": {
  10392. "type": "zip",
  10393. "url": "https://api.github.com/repos/composer/pcre/zipball/e300eb6c535192decd27a85bc72a9290f0d6b3bd",
  10394. "reference": "e300eb6c535192decd27a85bc72a9290f0d6b3bd",
  10395. "shasum": "",
  10396. "mirrors": [
  10397. {
  10398. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10399. "preferred": true
  10400. }
  10401. ]
  10402. },
  10403. "require": {
  10404. "php": "^7.4 || ^8.0"
  10405. },
  10406. "require-dev": {
  10407. "phpstan/phpstan": "^1.3",
  10408. "phpstan/phpstan-strict-rules": "^1.1",
  10409. "symfony/phpunit-bridge": "^5"
  10410. },
  10411. "type": "library",
  10412. "extra": {
  10413. "branch-alias": {
  10414. "dev-main": "3.x-dev"
  10415. }
  10416. },
  10417. "autoload": {
  10418. "psr-4": {
  10419. "Composer\\Pcre\\": "src"
  10420. }
  10421. },
  10422. "notification-url": "https://packagist.org/downloads/",
  10423. "license": [
  10424. "MIT"
  10425. ],
  10426. "authors": [
  10427. {
  10428. "name": "Jordi Boggiano",
  10429. "email": "j.boggiano@seld.be",
  10430. "homepage": "http://seld.be"
  10431. }
  10432. ],
  10433. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  10434. "keywords": [
  10435. "PCRE",
  10436. "preg",
  10437. "regex",
  10438. "regular expression"
  10439. ],
  10440. "support": {
  10441. "issues": "https://github.com/composer/pcre/issues",
  10442. "source": "https://github.com/composer/pcre/tree/3.0.0"
  10443. },
  10444. "funding": [
  10445. {
  10446. "url": "https://packagist.com",
  10447. "type": "custom"
  10448. },
  10449. {
  10450. "url": "https://github.com/composer",
  10451. "type": "github"
  10452. },
  10453. {
  10454. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  10455. "type": "tidelift"
  10456. }
  10457. ],
  10458. "time": "2022-02-25T20:21:48+00:00"
  10459. },
  10460. {
  10461. "name": "doctrine/instantiator",
  10462. "version": "1.4.1",
  10463. "source": {
  10464. "type": "git",
  10465. "url": "https://github.com/doctrine/instantiator.git",
  10466. "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc"
  10467. },
  10468. "dist": {
  10469. "type": "zip",
  10470. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/10dcfce151b967d20fde1b34ae6640712c3891bc",
  10471. "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc",
  10472. "shasum": "",
  10473. "mirrors": [
  10474. {
  10475. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10476. "preferred": true
  10477. }
  10478. ]
  10479. },
  10480. "require": {
  10481. "php": "^7.1 || ^8.0"
  10482. },
  10483. "require-dev": {
  10484. "doctrine/coding-standard": "^9",
  10485. "ext-pdo": "*",
  10486. "ext-phar": "*",
  10487. "phpbench/phpbench": "^0.16 || ^1",
  10488. "phpstan/phpstan": "^1.4",
  10489. "phpstan/phpstan-phpunit": "^1",
  10490. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  10491. "vimeo/psalm": "^4.22"
  10492. },
  10493. "type": "library",
  10494. "autoload": {
  10495. "psr-4": {
  10496. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  10497. }
  10498. },
  10499. "notification-url": "https://packagist.org/downloads/",
  10500. "license": [
  10501. "MIT"
  10502. ],
  10503. "authors": [
  10504. {
  10505. "name": "Marco Pivetta",
  10506. "email": "ocramius@gmail.com",
  10507. "homepage": "https://ocramius.github.io/"
  10508. }
  10509. ],
  10510. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  10511. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  10512. "keywords": [
  10513. "constructor",
  10514. "instantiate"
  10515. ],
  10516. "support": {
  10517. "issues": "https://github.com/doctrine/instantiator/issues",
  10518. "source": "https://github.com/doctrine/instantiator/tree/1.4.1"
  10519. },
  10520. "funding": [
  10521. {
  10522. "url": "https://www.doctrine-project.org/sponsorship.html",
  10523. "type": "custom"
  10524. },
  10525. {
  10526. "url": "https://www.patreon.com/phpdoctrine",
  10527. "type": "patreon"
  10528. },
  10529. {
  10530. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  10531. "type": "tidelift"
  10532. }
  10533. ],
  10534. "time": "2022-03-03T08:28:38+00:00"
  10535. },
  10536. {
  10537. "name": "facade/flare-client-php",
  10538. "version": "1.9.1",
  10539. "source": {
  10540. "type": "git",
  10541. "url": "https://github.com/facade/flare-client-php.git",
  10542. "reference": "b2adf1512755637d0cef4f7d1b54301325ac78ed"
  10543. },
  10544. "dist": {
  10545. "type": "zip",
  10546. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/b2adf1512755637d0cef4f7d1b54301325ac78ed",
  10547. "reference": "b2adf1512755637d0cef4f7d1b54301325ac78ed",
  10548. "shasum": "",
  10549. "mirrors": [
  10550. {
  10551. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10552. "preferred": true
  10553. }
  10554. ]
  10555. },
  10556. "require": {
  10557. "facade/ignition-contracts": "~1.0",
  10558. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  10559. "php": "^7.1|^8.0",
  10560. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  10561. "symfony/mime": "^3.4|^4.0|^5.1",
  10562. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  10563. },
  10564. "require-dev": {
  10565. "friendsofphp/php-cs-fixer": "^2.14",
  10566. "phpunit/phpunit": "^7.5.16",
  10567. "spatie/phpunit-snapshot-assertions": "^2.0"
  10568. },
  10569. "type": "library",
  10570. "extra": {
  10571. "branch-alias": {
  10572. "dev-master": "1.0-dev"
  10573. }
  10574. },
  10575. "autoload": {
  10576. "files": [
  10577. "src/helpers.php"
  10578. ],
  10579. "psr-4": {
  10580. "Facade\\FlareClient\\": "src"
  10581. }
  10582. },
  10583. "notification-url": "https://packagist.org/downloads/",
  10584. "license": [
  10585. "MIT"
  10586. ],
  10587. "description": "Send PHP errors to Flare",
  10588. "homepage": "https://github.com/facade/flare-client-php",
  10589. "keywords": [
  10590. "exception",
  10591. "facade",
  10592. "flare",
  10593. "reporting"
  10594. ],
  10595. "support": {
  10596. "issues": "https://github.com/facade/flare-client-php/issues",
  10597. "source": "https://github.com/facade/flare-client-php/tree/1.9.1"
  10598. },
  10599. "funding": [
  10600. {
  10601. "url": "https://github.com/spatie",
  10602. "type": "github"
  10603. }
  10604. ],
  10605. "time": "2021-09-13T12:16:46+00:00"
  10606. },
  10607. {
  10608. "name": "facade/ignition",
  10609. "version": "2.17.6",
  10610. "source": {
  10611. "type": "git",
  10612. "url": "https://github.com/facade/ignition.git",
  10613. "reference": "6acd82e986a2ecee89e2e68adfc30a1936d1ab7c"
  10614. },
  10615. "dist": {
  10616. "type": "zip",
  10617. "url": "https://api.github.com/repos/facade/ignition/zipball/6acd82e986a2ecee89e2e68adfc30a1936d1ab7c",
  10618. "reference": "6acd82e986a2ecee89e2e68adfc30a1936d1ab7c",
  10619. "shasum": "",
  10620. "mirrors": [
  10621. {
  10622. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10623. "preferred": true
  10624. }
  10625. ]
  10626. },
  10627. "require": {
  10628. "ext-curl": "*",
  10629. "ext-json": "*",
  10630. "ext-mbstring": "*",
  10631. "facade/flare-client-php": "^1.9.1",
  10632. "facade/ignition-contracts": "^1.0.2",
  10633. "illuminate/support": "^7.0|^8.0",
  10634. "monolog/monolog": "^2.0",
  10635. "php": "^7.2.5|^8.0",
  10636. "symfony/console": "^5.0",
  10637. "symfony/var-dumper": "^5.0"
  10638. },
  10639. "require-dev": {
  10640. "friendsofphp/php-cs-fixer": "^2.14",
  10641. "livewire/livewire": "^2.4",
  10642. "mockery/mockery": "^1.3",
  10643. "orchestra/testbench": "^5.0|^6.0",
  10644. "psalm/plugin-laravel": "^1.2"
  10645. },
  10646. "suggest": {
  10647. "laravel/telescope": "^3.1"
  10648. },
  10649. "type": "library",
  10650. "extra": {
  10651. "branch-alias": {
  10652. "dev-master": "2.x-dev"
  10653. },
  10654. "laravel": {
  10655. "providers": [
  10656. "Facade\\Ignition\\IgnitionServiceProvider"
  10657. ],
  10658. "aliases": {
  10659. "Flare": "Facade\\Ignition\\Facades\\Flare"
  10660. }
  10661. }
  10662. },
  10663. "autoload": {
  10664. "files": [
  10665. "src/helpers.php"
  10666. ],
  10667. "psr-4": {
  10668. "Facade\\Ignition\\": "src"
  10669. }
  10670. },
  10671. "notification-url": "https://packagist.org/downloads/",
  10672. "license": [
  10673. "MIT"
  10674. ],
  10675. "description": "A beautiful error page for Laravel applications.",
  10676. "homepage": "https://github.com/facade/ignition",
  10677. "keywords": [
  10678. "error",
  10679. "flare",
  10680. "laravel",
  10681. "page"
  10682. ],
  10683. "support": {
  10684. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  10685. "forum": "https://twitter.com/flareappio",
  10686. "issues": "https://github.com/facade/ignition/issues",
  10687. "source": "https://github.com/facade/ignition"
  10688. },
  10689. "time": "2022-06-30T18:26:59+00:00"
  10690. },
  10691. {
  10692. "name": "facade/ignition-contracts",
  10693. "version": "1.0.2",
  10694. "source": {
  10695. "type": "git",
  10696. "url": "https://github.com/facade/ignition-contracts.git",
  10697. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  10698. },
  10699. "dist": {
  10700. "type": "zip",
  10701. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  10702. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  10703. "shasum": "",
  10704. "mirrors": [
  10705. {
  10706. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10707. "preferred": true
  10708. }
  10709. ]
  10710. },
  10711. "require": {
  10712. "php": "^7.3|^8.0"
  10713. },
  10714. "require-dev": {
  10715. "friendsofphp/php-cs-fixer": "^v2.15.8",
  10716. "phpunit/phpunit": "^9.3.11",
  10717. "vimeo/psalm": "^3.17.1"
  10718. },
  10719. "type": "library",
  10720. "autoload": {
  10721. "psr-4": {
  10722. "Facade\\IgnitionContracts\\": "src"
  10723. }
  10724. },
  10725. "notification-url": "https://packagist.org/downloads/",
  10726. "license": [
  10727. "MIT"
  10728. ],
  10729. "authors": [
  10730. {
  10731. "name": "Freek Van der Herten",
  10732. "email": "freek@spatie.be",
  10733. "homepage": "https://flareapp.io",
  10734. "role": "Developer"
  10735. }
  10736. ],
  10737. "description": "Solution contracts for Ignition",
  10738. "homepage": "https://github.com/facade/ignition-contracts",
  10739. "keywords": [
  10740. "contracts",
  10741. "flare",
  10742. "ignition"
  10743. ],
  10744. "support": {
  10745. "issues": "https://github.com/facade/ignition-contracts/issues",
  10746. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  10747. },
  10748. "time": "2020-10-16T08:27:54+00:00"
  10749. },
  10750. {
  10751. "name": "fakerphp/faker",
  10752. "version": "v1.19.0",
  10753. "source": {
  10754. "type": "git",
  10755. "url": "https://github.com/FakerPHP/Faker.git",
  10756. "reference": "d7f08a622b3346766325488aa32ddc93ccdecc75"
  10757. },
  10758. "dist": {
  10759. "type": "zip",
  10760. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/d7f08a622b3346766325488aa32ddc93ccdecc75",
  10761. "reference": "d7f08a622b3346766325488aa32ddc93ccdecc75",
  10762. "shasum": "",
  10763. "mirrors": [
  10764. {
  10765. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10766. "preferred": true
  10767. }
  10768. ]
  10769. },
  10770. "require": {
  10771. "php": "^7.1 || ^8.0",
  10772. "psr/container": "^1.0 || ^2.0",
  10773. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  10774. },
  10775. "conflict": {
  10776. "fzaninotto/faker": "*"
  10777. },
  10778. "require-dev": {
  10779. "bamarni/composer-bin-plugin": "^1.4.1",
  10780. "doctrine/persistence": "^1.3 || ^2.0",
  10781. "ext-intl": "*",
  10782. "symfony/phpunit-bridge": "^4.4 || ^5.2"
  10783. },
  10784. "suggest": {
  10785. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  10786. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  10787. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  10788. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  10789. "ext-mbstring": "Required for multibyte Unicode string functionality."
  10790. },
  10791. "type": "library",
  10792. "extra": {
  10793. "branch-alias": {
  10794. "dev-main": "v1.19-dev"
  10795. }
  10796. },
  10797. "autoload": {
  10798. "psr-4": {
  10799. "Faker\\": "src/Faker/"
  10800. }
  10801. },
  10802. "notification-url": "https://packagist.org/downloads/",
  10803. "license": [
  10804. "MIT"
  10805. ],
  10806. "authors": [
  10807. {
  10808. "name": "François Zaninotto"
  10809. }
  10810. ],
  10811. "description": "Faker is a PHP library that generates fake data for you.",
  10812. "keywords": [
  10813. "data",
  10814. "faker",
  10815. "fixtures"
  10816. ],
  10817. "support": {
  10818. "issues": "https://github.com/FakerPHP/Faker/issues",
  10819. "source": "https://github.com/FakerPHP/Faker/tree/v1.19.0"
  10820. },
  10821. "time": "2022-02-02T17:38:57+00:00"
  10822. },
  10823. {
  10824. "name": "filp/whoops",
  10825. "version": "2.14.5",
  10826. "source": {
  10827. "type": "git",
  10828. "url": "https://github.com/filp/whoops.git",
  10829. "reference": "a63e5e8f26ebbebf8ed3c5c691637325512eb0dc"
  10830. },
  10831. "dist": {
  10832. "type": "zip",
  10833. "url": "https://api.github.com/repos/filp/whoops/zipball/a63e5e8f26ebbebf8ed3c5c691637325512eb0dc",
  10834. "reference": "a63e5e8f26ebbebf8ed3c5c691637325512eb0dc",
  10835. "shasum": "",
  10836. "mirrors": [
  10837. {
  10838. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10839. "preferred": true
  10840. }
  10841. ]
  10842. },
  10843. "require": {
  10844. "php": "^5.5.9 || ^7.0 || ^8.0",
  10845. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  10846. },
  10847. "require-dev": {
  10848. "mockery/mockery": "^0.9 || ^1.0",
  10849. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  10850. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  10851. },
  10852. "suggest": {
  10853. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  10854. "whoops/soap": "Formats errors as SOAP responses"
  10855. },
  10856. "type": "library",
  10857. "extra": {
  10858. "branch-alias": {
  10859. "dev-master": "2.7-dev"
  10860. }
  10861. },
  10862. "autoload": {
  10863. "psr-4": {
  10864. "Whoops\\": "src/Whoops/"
  10865. }
  10866. },
  10867. "notification-url": "https://packagist.org/downloads/",
  10868. "license": [
  10869. "MIT"
  10870. ],
  10871. "authors": [
  10872. {
  10873. "name": "Filipe Dobreira",
  10874. "homepage": "https://github.com/filp",
  10875. "role": "Developer"
  10876. }
  10877. ],
  10878. "description": "php error handling for cool kids",
  10879. "homepage": "https://filp.github.io/whoops/",
  10880. "keywords": [
  10881. "error",
  10882. "exception",
  10883. "handling",
  10884. "library",
  10885. "throwable",
  10886. "whoops"
  10887. ],
  10888. "support": {
  10889. "issues": "https://github.com/filp/whoops/issues",
  10890. "source": "https://github.com/filp/whoops/tree/2.14.5"
  10891. },
  10892. "funding": [
  10893. {
  10894. "url": "https://github.com/denis-sokolov",
  10895. "type": "github"
  10896. }
  10897. ],
  10898. "time": "2022-01-07T12:00:00+00:00"
  10899. },
  10900. {
  10901. "name": "hamcrest/hamcrest-php",
  10902. "version": "v2.0.1",
  10903. "source": {
  10904. "type": "git",
  10905. "url": "https://github.com/hamcrest/hamcrest-php.git",
  10906. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  10907. },
  10908. "dist": {
  10909. "type": "zip",
  10910. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  10911. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  10912. "shasum": "",
  10913. "mirrors": [
  10914. {
  10915. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10916. "preferred": true
  10917. }
  10918. ]
  10919. },
  10920. "require": {
  10921. "php": "^5.3|^7.0|^8.0"
  10922. },
  10923. "replace": {
  10924. "cordoval/hamcrest-php": "*",
  10925. "davedevelopment/hamcrest-php": "*",
  10926. "kodova/hamcrest-php": "*"
  10927. },
  10928. "require-dev": {
  10929. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  10930. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  10931. },
  10932. "type": "library",
  10933. "extra": {
  10934. "branch-alias": {
  10935. "dev-master": "2.1-dev"
  10936. }
  10937. },
  10938. "autoload": {
  10939. "classmap": [
  10940. "hamcrest"
  10941. ]
  10942. },
  10943. "notification-url": "https://packagist.org/downloads/",
  10944. "license": [
  10945. "BSD-3-Clause"
  10946. ],
  10947. "description": "This is the PHP port of Hamcrest Matchers",
  10948. "keywords": [
  10949. "test"
  10950. ],
  10951. "support": {
  10952. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  10953. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  10954. },
  10955. "time": "2020-07-09T08:09:16+00:00"
  10956. },
  10957. {
  10958. "name": "laravel/sail",
  10959. "version": "v1.14.11",
  10960. "source": {
  10961. "type": "git",
  10962. "url": "https://github.com/laravel/sail.git",
  10963. "reference": "6edf45a247b3688e0d07e149570a62fd9bc11c73"
  10964. },
  10965. "dist": {
  10966. "type": "zip",
  10967. "url": "https://api.github.com/repos/laravel/sail/zipball/6edf45a247b3688e0d07e149570a62fd9bc11c73",
  10968. "reference": "6edf45a247b3688e0d07e149570a62fd9bc11c73",
  10969. "shasum": "",
  10970. "mirrors": [
  10971. {
  10972. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10973. "preferred": true
  10974. }
  10975. ]
  10976. },
  10977. "require": {
  10978. "illuminate/console": "^8.0|^9.0",
  10979. "illuminate/contracts": "^8.0|^9.0",
  10980. "illuminate/support": "^8.0|^9.0",
  10981. "php": "^7.3|^8.0"
  10982. },
  10983. "bin": [
  10984. "bin/sail"
  10985. ],
  10986. "type": "library",
  10987. "extra": {
  10988. "branch-alias": {
  10989. "dev-master": "1.x-dev"
  10990. },
  10991. "laravel": {
  10992. "providers": [
  10993. "Laravel\\Sail\\SailServiceProvider"
  10994. ]
  10995. }
  10996. },
  10997. "autoload": {
  10998. "psr-4": {
  10999. "Laravel\\Sail\\": "src/"
  11000. }
  11001. },
  11002. "notification-url": "https://packagist.org/downloads/",
  11003. "license": [
  11004. "MIT"
  11005. ],
  11006. "authors": [
  11007. {
  11008. "name": "Taylor Otwell",
  11009. "email": "taylor@laravel.com"
  11010. }
  11011. ],
  11012. "description": "Docker files for running a basic Laravel application.",
  11013. "keywords": [
  11014. "docker",
  11015. "laravel"
  11016. ],
  11017. "support": {
  11018. "issues": "https://github.com/laravel/sail/issues",
  11019. "source": "https://github.com/laravel/sail"
  11020. },
  11021. "time": "2022-06-13T18:32:48+00:00"
  11022. },
  11023. {
  11024. "name": "mockery/mockery",
  11025. "version": "1.5.0",
  11026. "source": {
  11027. "type": "git",
  11028. "url": "https://github.com/mockery/mockery.git",
  11029. "reference": "c10a5f6e06fc2470ab1822fa13fa2a7380f8fbac"
  11030. },
  11031. "dist": {
  11032. "type": "zip",
  11033. "url": "https://api.github.com/repos/mockery/mockery/zipball/c10a5f6e06fc2470ab1822fa13fa2a7380f8fbac",
  11034. "reference": "c10a5f6e06fc2470ab1822fa13fa2a7380f8fbac",
  11035. "shasum": "",
  11036. "mirrors": [
  11037. {
  11038. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11039. "preferred": true
  11040. }
  11041. ]
  11042. },
  11043. "require": {
  11044. "hamcrest/hamcrest-php": "^2.0.1",
  11045. "lib-pcre": ">=7.0",
  11046. "php": "^7.3 || ^8.0"
  11047. },
  11048. "conflict": {
  11049. "phpunit/phpunit": "<8.0"
  11050. },
  11051. "require-dev": {
  11052. "phpunit/phpunit": "^8.5 || ^9.3"
  11053. },
  11054. "type": "library",
  11055. "extra": {
  11056. "branch-alias": {
  11057. "dev-master": "1.4.x-dev"
  11058. }
  11059. },
  11060. "autoload": {
  11061. "psr-0": {
  11062. "Mockery": "library/"
  11063. }
  11064. },
  11065. "notification-url": "https://packagist.org/downloads/",
  11066. "license": [
  11067. "BSD-3-Clause"
  11068. ],
  11069. "authors": [
  11070. {
  11071. "name": "Pádraic Brady",
  11072. "email": "padraic.brady@gmail.com",
  11073. "homepage": "http://blog.astrumfutura.com"
  11074. },
  11075. {
  11076. "name": "Dave Marshall",
  11077. "email": "dave.marshall@atstsolutions.co.uk",
  11078. "homepage": "http://davedevelopment.co.uk"
  11079. }
  11080. ],
  11081. "description": "Mockery is a simple yet flexible PHP mock object framework",
  11082. "homepage": "https://github.com/mockery/mockery",
  11083. "keywords": [
  11084. "BDD",
  11085. "TDD",
  11086. "library",
  11087. "mock",
  11088. "mock objects",
  11089. "mockery",
  11090. "stub",
  11091. "test",
  11092. "test double",
  11093. "testing"
  11094. ],
  11095. "support": {
  11096. "issues": "https://github.com/mockery/mockery/issues",
  11097. "source": "https://github.com/mockery/mockery/tree/1.5.0"
  11098. },
  11099. "time": "2022-01-20T13:18:17+00:00"
  11100. },
  11101. {
  11102. "name": "myclabs/deep-copy",
  11103. "version": "1.11.0",
  11104. "source": {
  11105. "type": "git",
  11106. "url": "https://github.com/myclabs/DeepCopy.git",
  11107. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614"
  11108. },
  11109. "dist": {
  11110. "type": "zip",
  11111. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/14daed4296fae74d9e3201d2c4925d1acb7aa614",
  11112. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614",
  11113. "shasum": "",
  11114. "mirrors": [
  11115. {
  11116. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11117. "preferred": true
  11118. }
  11119. ]
  11120. },
  11121. "require": {
  11122. "php": "^7.1 || ^8.0"
  11123. },
  11124. "conflict": {
  11125. "doctrine/collections": "<1.6.8",
  11126. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  11127. },
  11128. "require-dev": {
  11129. "doctrine/collections": "^1.6.8",
  11130. "doctrine/common": "^2.13.3 || ^3.2.2",
  11131. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  11132. },
  11133. "type": "library",
  11134. "autoload": {
  11135. "files": [
  11136. "src/DeepCopy/deep_copy.php"
  11137. ],
  11138. "psr-4": {
  11139. "DeepCopy\\": "src/DeepCopy/"
  11140. }
  11141. },
  11142. "notification-url": "https://packagist.org/downloads/",
  11143. "license": [
  11144. "MIT"
  11145. ],
  11146. "description": "Create deep copies (clones) of your objects",
  11147. "keywords": [
  11148. "clone",
  11149. "copy",
  11150. "duplicate",
  11151. "object",
  11152. "object graph"
  11153. ],
  11154. "support": {
  11155. "issues": "https://github.com/myclabs/DeepCopy/issues",
  11156. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.0"
  11157. },
  11158. "funding": [
  11159. {
  11160. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  11161. "type": "tidelift"
  11162. }
  11163. ],
  11164. "time": "2022-03-03T13:19:32+00:00"
  11165. },
  11166. {
  11167. "name": "nunomaduro/collision",
  11168. "version": "v5.11.0",
  11169. "source": {
  11170. "type": "git",
  11171. "url": "https://github.com/nunomaduro/collision.git",
  11172. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461"
  11173. },
  11174. "dist": {
  11175. "type": "zip",
  11176. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/8b610eef8582ccdc05d8f2ab23305e2d37049461",
  11177. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461",
  11178. "shasum": "",
  11179. "mirrors": [
  11180. {
  11181. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11182. "preferred": true
  11183. }
  11184. ]
  11185. },
  11186. "require": {
  11187. "facade/ignition-contracts": "^1.0",
  11188. "filp/whoops": "^2.14.3",
  11189. "php": "^7.3 || ^8.0",
  11190. "symfony/console": "^5.0"
  11191. },
  11192. "require-dev": {
  11193. "brianium/paratest": "^6.1",
  11194. "fideloper/proxy": "^4.4.1",
  11195. "fruitcake/laravel-cors": "^2.0.3",
  11196. "laravel/framework": "8.x-dev",
  11197. "nunomaduro/larastan": "^0.6.2",
  11198. "nunomaduro/mock-final-classes": "^1.0",
  11199. "orchestra/testbench": "^6.0",
  11200. "phpstan/phpstan": "^0.12.64",
  11201. "phpunit/phpunit": "^9.5.0"
  11202. },
  11203. "type": "library",
  11204. "extra": {
  11205. "laravel": {
  11206. "providers": [
  11207. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  11208. ]
  11209. }
  11210. },
  11211. "autoload": {
  11212. "psr-4": {
  11213. "NunoMaduro\\Collision\\": "src/"
  11214. }
  11215. },
  11216. "notification-url": "https://packagist.org/downloads/",
  11217. "license": [
  11218. "MIT"
  11219. ],
  11220. "authors": [
  11221. {
  11222. "name": "Nuno Maduro",
  11223. "email": "enunomaduro@gmail.com"
  11224. }
  11225. ],
  11226. "description": "Cli error handling for console/command-line PHP applications.",
  11227. "keywords": [
  11228. "artisan",
  11229. "cli",
  11230. "command-line",
  11231. "console",
  11232. "error",
  11233. "handling",
  11234. "laravel",
  11235. "laravel-zero",
  11236. "php",
  11237. "symfony"
  11238. ],
  11239. "support": {
  11240. "issues": "https://github.com/nunomaduro/collision/issues",
  11241. "source": "https://github.com/nunomaduro/collision"
  11242. },
  11243. "funding": [
  11244. {
  11245. "url": "https://www.paypal.com/paypalme/enunomaduro",
  11246. "type": "custom"
  11247. },
  11248. {
  11249. "url": "https://github.com/nunomaduro",
  11250. "type": "github"
  11251. },
  11252. {
  11253. "url": "https://www.patreon.com/nunomaduro",
  11254. "type": "patreon"
  11255. }
  11256. ],
  11257. "time": "2022-01-10T16:22:52+00:00"
  11258. },
  11259. {
  11260. "name": "phar-io/manifest",
  11261. "version": "2.0.3",
  11262. "source": {
  11263. "type": "git",
  11264. "url": "https://github.com/phar-io/manifest.git",
  11265. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  11266. },
  11267. "dist": {
  11268. "type": "zip",
  11269. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  11270. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  11271. "shasum": "",
  11272. "mirrors": [
  11273. {
  11274. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11275. "preferred": true
  11276. }
  11277. ]
  11278. },
  11279. "require": {
  11280. "ext-dom": "*",
  11281. "ext-phar": "*",
  11282. "ext-xmlwriter": "*",
  11283. "phar-io/version": "^3.0.1",
  11284. "php": "^7.2 || ^8.0"
  11285. },
  11286. "type": "library",
  11287. "extra": {
  11288. "branch-alias": {
  11289. "dev-master": "2.0.x-dev"
  11290. }
  11291. },
  11292. "autoload": {
  11293. "classmap": [
  11294. "src/"
  11295. ]
  11296. },
  11297. "notification-url": "https://packagist.org/downloads/",
  11298. "license": [
  11299. "BSD-3-Clause"
  11300. ],
  11301. "authors": [
  11302. {
  11303. "name": "Arne Blankerts",
  11304. "email": "arne@blankerts.de",
  11305. "role": "Developer"
  11306. },
  11307. {
  11308. "name": "Sebastian Heuer",
  11309. "email": "sebastian@phpeople.de",
  11310. "role": "Developer"
  11311. },
  11312. {
  11313. "name": "Sebastian Bergmann",
  11314. "email": "sebastian@phpunit.de",
  11315. "role": "Developer"
  11316. }
  11317. ],
  11318. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  11319. "support": {
  11320. "issues": "https://github.com/phar-io/manifest/issues",
  11321. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  11322. },
  11323. "time": "2021-07-20T11:28:43+00:00"
  11324. },
  11325. {
  11326. "name": "phar-io/version",
  11327. "version": "3.2.1",
  11328. "source": {
  11329. "type": "git",
  11330. "url": "https://github.com/phar-io/version.git",
  11331. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  11332. },
  11333. "dist": {
  11334. "type": "zip",
  11335. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  11336. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  11337. "shasum": "",
  11338. "mirrors": [
  11339. {
  11340. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11341. "preferred": true
  11342. }
  11343. ]
  11344. },
  11345. "require": {
  11346. "php": "^7.2 || ^8.0"
  11347. },
  11348. "type": "library",
  11349. "autoload": {
  11350. "classmap": [
  11351. "src/"
  11352. ]
  11353. },
  11354. "notification-url": "https://packagist.org/downloads/",
  11355. "license": [
  11356. "BSD-3-Clause"
  11357. ],
  11358. "authors": [
  11359. {
  11360. "name": "Arne Blankerts",
  11361. "email": "arne@blankerts.de",
  11362. "role": "Developer"
  11363. },
  11364. {
  11365. "name": "Sebastian Heuer",
  11366. "email": "sebastian@phpeople.de",
  11367. "role": "Developer"
  11368. },
  11369. {
  11370. "name": "Sebastian Bergmann",
  11371. "email": "sebastian@phpunit.de",
  11372. "role": "Developer"
  11373. }
  11374. ],
  11375. "description": "Library for handling version information and constraints",
  11376. "support": {
  11377. "issues": "https://github.com/phar-io/version/issues",
  11378. "source": "https://github.com/phar-io/version/tree/3.2.1"
  11379. },
  11380. "time": "2022-02-21T01:04:05+00:00"
  11381. },
  11382. {
  11383. "name": "phpspec/prophecy",
  11384. "version": "v1.15.0",
  11385. "source": {
  11386. "type": "git",
  11387. "url": "https://github.com/phpspec/prophecy.git",
  11388. "reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13"
  11389. },
  11390. "dist": {
  11391. "type": "zip",
  11392. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/bbcd7380b0ebf3961ee21409db7b38bc31d69a13",
  11393. "reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13",
  11394. "shasum": "",
  11395. "mirrors": [
  11396. {
  11397. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11398. "preferred": true
  11399. }
  11400. ]
  11401. },
  11402. "require": {
  11403. "doctrine/instantiator": "^1.2",
  11404. "php": "^7.2 || ~8.0, <8.2",
  11405. "phpdocumentor/reflection-docblock": "^5.2",
  11406. "sebastian/comparator": "^3.0 || ^4.0",
  11407. "sebastian/recursion-context": "^3.0 || ^4.0"
  11408. },
  11409. "require-dev": {
  11410. "phpspec/phpspec": "^6.0 || ^7.0",
  11411. "phpunit/phpunit": "^8.0 || ^9.0"
  11412. },
  11413. "type": "library",
  11414. "extra": {
  11415. "branch-alias": {
  11416. "dev-master": "1.x-dev"
  11417. }
  11418. },
  11419. "autoload": {
  11420. "psr-4": {
  11421. "Prophecy\\": "src/Prophecy"
  11422. }
  11423. },
  11424. "notification-url": "https://packagist.org/downloads/",
  11425. "license": [
  11426. "MIT"
  11427. ],
  11428. "authors": [
  11429. {
  11430. "name": "Konstantin Kudryashov",
  11431. "email": "ever.zet@gmail.com",
  11432. "homepage": "http://everzet.com"
  11433. },
  11434. {
  11435. "name": "Marcello Duarte",
  11436. "email": "marcello.duarte@gmail.com"
  11437. }
  11438. ],
  11439. "description": "Highly opinionated mocking framework for PHP 5.3+",
  11440. "homepage": "https://github.com/phpspec/prophecy",
  11441. "keywords": [
  11442. "Double",
  11443. "Dummy",
  11444. "fake",
  11445. "mock",
  11446. "spy",
  11447. "stub"
  11448. ],
  11449. "support": {
  11450. "issues": "https://github.com/phpspec/prophecy/issues",
  11451. "source": "https://github.com/phpspec/prophecy/tree/v1.15.0"
  11452. },
  11453. "time": "2021-12-08T12:19:24+00:00"
  11454. },
  11455. {
  11456. "name": "phpunit/php-code-coverage",
  11457. "version": "9.2.15",
  11458. "source": {
  11459. "type": "git",
  11460. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  11461. "reference": "2e9da11878c4202f97915c1cb4bb1ca318a63f5f"
  11462. },
  11463. "dist": {
  11464. "type": "zip",
  11465. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/2e9da11878c4202f97915c1cb4bb1ca318a63f5f",
  11466. "reference": "2e9da11878c4202f97915c1cb4bb1ca318a63f5f",
  11467. "shasum": "",
  11468. "mirrors": [
  11469. {
  11470. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11471. "preferred": true
  11472. }
  11473. ]
  11474. },
  11475. "require": {
  11476. "ext-dom": "*",
  11477. "ext-libxml": "*",
  11478. "ext-xmlwriter": "*",
  11479. "nikic/php-parser": "^4.13.0",
  11480. "php": ">=7.3",
  11481. "phpunit/php-file-iterator": "^3.0.3",
  11482. "phpunit/php-text-template": "^2.0.2",
  11483. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  11484. "sebastian/complexity": "^2.0",
  11485. "sebastian/environment": "^5.1.2",
  11486. "sebastian/lines-of-code": "^1.0.3",
  11487. "sebastian/version": "^3.0.1",
  11488. "theseer/tokenizer": "^1.2.0"
  11489. },
  11490. "require-dev": {
  11491. "phpunit/phpunit": "^9.3"
  11492. },
  11493. "suggest": {
  11494. "ext-pcov": "*",
  11495. "ext-xdebug": "*"
  11496. },
  11497. "type": "library",
  11498. "extra": {
  11499. "branch-alias": {
  11500. "dev-master": "9.2-dev"
  11501. }
  11502. },
  11503. "autoload": {
  11504. "classmap": [
  11505. "src/"
  11506. ]
  11507. },
  11508. "notification-url": "https://packagist.org/downloads/",
  11509. "license": [
  11510. "BSD-3-Clause"
  11511. ],
  11512. "authors": [
  11513. {
  11514. "name": "Sebastian Bergmann",
  11515. "email": "sebastian@phpunit.de",
  11516. "role": "lead"
  11517. }
  11518. ],
  11519. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  11520. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  11521. "keywords": [
  11522. "coverage",
  11523. "testing",
  11524. "xunit"
  11525. ],
  11526. "support": {
  11527. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  11528. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.15"
  11529. },
  11530. "funding": [
  11531. {
  11532. "url": "https://github.com/sebastianbergmann",
  11533. "type": "github"
  11534. }
  11535. ],
  11536. "time": "2022-03-07T09:28:20+00:00"
  11537. },
  11538. {
  11539. "name": "phpunit/php-file-iterator",
  11540. "version": "3.0.6",
  11541. "source": {
  11542. "type": "git",
  11543. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  11544. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  11545. },
  11546. "dist": {
  11547. "type": "zip",
  11548. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  11549. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  11550. "shasum": "",
  11551. "mirrors": [
  11552. {
  11553. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11554. "preferred": true
  11555. }
  11556. ]
  11557. },
  11558. "require": {
  11559. "php": ">=7.3"
  11560. },
  11561. "require-dev": {
  11562. "phpunit/phpunit": "^9.3"
  11563. },
  11564. "type": "library",
  11565. "extra": {
  11566. "branch-alias": {
  11567. "dev-master": "3.0-dev"
  11568. }
  11569. },
  11570. "autoload": {
  11571. "classmap": [
  11572. "src/"
  11573. ]
  11574. },
  11575. "notification-url": "https://packagist.org/downloads/",
  11576. "license": [
  11577. "BSD-3-Clause"
  11578. ],
  11579. "authors": [
  11580. {
  11581. "name": "Sebastian Bergmann",
  11582. "email": "sebastian@phpunit.de",
  11583. "role": "lead"
  11584. }
  11585. ],
  11586. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  11587. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  11588. "keywords": [
  11589. "filesystem",
  11590. "iterator"
  11591. ],
  11592. "support": {
  11593. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  11594. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  11595. },
  11596. "funding": [
  11597. {
  11598. "url": "https://github.com/sebastianbergmann",
  11599. "type": "github"
  11600. }
  11601. ],
  11602. "time": "2021-12-02T12:48:52+00:00"
  11603. },
  11604. {
  11605. "name": "phpunit/php-invoker",
  11606. "version": "3.1.1",
  11607. "source": {
  11608. "type": "git",
  11609. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  11610. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  11611. },
  11612. "dist": {
  11613. "type": "zip",
  11614. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  11615. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  11616. "shasum": "",
  11617. "mirrors": [
  11618. {
  11619. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11620. "preferred": true
  11621. }
  11622. ]
  11623. },
  11624. "require": {
  11625. "php": ">=7.3"
  11626. },
  11627. "require-dev": {
  11628. "ext-pcntl": "*",
  11629. "phpunit/phpunit": "^9.3"
  11630. },
  11631. "suggest": {
  11632. "ext-pcntl": "*"
  11633. },
  11634. "type": "library",
  11635. "extra": {
  11636. "branch-alias": {
  11637. "dev-master": "3.1-dev"
  11638. }
  11639. },
  11640. "autoload": {
  11641. "classmap": [
  11642. "src/"
  11643. ]
  11644. },
  11645. "notification-url": "https://packagist.org/downloads/",
  11646. "license": [
  11647. "BSD-3-Clause"
  11648. ],
  11649. "authors": [
  11650. {
  11651. "name": "Sebastian Bergmann",
  11652. "email": "sebastian@phpunit.de",
  11653. "role": "lead"
  11654. }
  11655. ],
  11656. "description": "Invoke callables with a timeout",
  11657. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  11658. "keywords": [
  11659. "process"
  11660. ],
  11661. "support": {
  11662. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  11663. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  11664. },
  11665. "funding": [
  11666. {
  11667. "url": "https://github.com/sebastianbergmann",
  11668. "type": "github"
  11669. }
  11670. ],
  11671. "time": "2020-09-28T05:58:55+00:00"
  11672. },
  11673. {
  11674. "name": "phpunit/php-text-template",
  11675. "version": "2.0.4",
  11676. "source": {
  11677. "type": "git",
  11678. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  11679. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  11680. },
  11681. "dist": {
  11682. "type": "zip",
  11683. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  11684. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  11685. "shasum": "",
  11686. "mirrors": [
  11687. {
  11688. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11689. "preferred": true
  11690. }
  11691. ]
  11692. },
  11693. "require": {
  11694. "php": ">=7.3"
  11695. },
  11696. "require-dev": {
  11697. "phpunit/phpunit": "^9.3"
  11698. },
  11699. "type": "library",
  11700. "extra": {
  11701. "branch-alias": {
  11702. "dev-master": "2.0-dev"
  11703. }
  11704. },
  11705. "autoload": {
  11706. "classmap": [
  11707. "src/"
  11708. ]
  11709. },
  11710. "notification-url": "https://packagist.org/downloads/",
  11711. "license": [
  11712. "BSD-3-Clause"
  11713. ],
  11714. "authors": [
  11715. {
  11716. "name": "Sebastian Bergmann",
  11717. "email": "sebastian@phpunit.de",
  11718. "role": "lead"
  11719. }
  11720. ],
  11721. "description": "Simple template engine.",
  11722. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  11723. "keywords": [
  11724. "template"
  11725. ],
  11726. "support": {
  11727. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  11728. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  11729. },
  11730. "funding": [
  11731. {
  11732. "url": "https://github.com/sebastianbergmann",
  11733. "type": "github"
  11734. }
  11735. ],
  11736. "time": "2020-10-26T05:33:50+00:00"
  11737. },
  11738. {
  11739. "name": "phpunit/php-timer",
  11740. "version": "5.0.3",
  11741. "source": {
  11742. "type": "git",
  11743. "url": "https://github.com/sebastianbergmann/php-timer.git",
  11744. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  11745. },
  11746. "dist": {
  11747. "type": "zip",
  11748. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  11749. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  11750. "shasum": "",
  11751. "mirrors": [
  11752. {
  11753. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11754. "preferred": true
  11755. }
  11756. ]
  11757. },
  11758. "require": {
  11759. "php": ">=7.3"
  11760. },
  11761. "require-dev": {
  11762. "phpunit/phpunit": "^9.3"
  11763. },
  11764. "type": "library",
  11765. "extra": {
  11766. "branch-alias": {
  11767. "dev-master": "5.0-dev"
  11768. }
  11769. },
  11770. "autoload": {
  11771. "classmap": [
  11772. "src/"
  11773. ]
  11774. },
  11775. "notification-url": "https://packagist.org/downloads/",
  11776. "license": [
  11777. "BSD-3-Clause"
  11778. ],
  11779. "authors": [
  11780. {
  11781. "name": "Sebastian Bergmann",
  11782. "email": "sebastian@phpunit.de",
  11783. "role": "lead"
  11784. }
  11785. ],
  11786. "description": "Utility class for timing",
  11787. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  11788. "keywords": [
  11789. "timer"
  11790. ],
  11791. "support": {
  11792. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  11793. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  11794. },
  11795. "funding": [
  11796. {
  11797. "url": "https://github.com/sebastianbergmann",
  11798. "type": "github"
  11799. }
  11800. ],
  11801. "time": "2020-10-26T13:16:10+00:00"
  11802. },
  11803. {
  11804. "name": "phpunit/phpunit",
  11805. "version": "9.5.21",
  11806. "source": {
  11807. "type": "git",
  11808. "url": "https://github.com/sebastianbergmann/phpunit.git",
  11809. "reference": "0e32b76be457de00e83213528f6bb37e2a38fcb1"
  11810. },
  11811. "dist": {
  11812. "type": "zip",
  11813. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/0e32b76be457de00e83213528f6bb37e2a38fcb1",
  11814. "reference": "0e32b76be457de00e83213528f6bb37e2a38fcb1",
  11815. "shasum": "",
  11816. "mirrors": [
  11817. {
  11818. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11819. "preferred": true
  11820. }
  11821. ]
  11822. },
  11823. "require": {
  11824. "doctrine/instantiator": "^1.3.1",
  11825. "ext-dom": "*",
  11826. "ext-json": "*",
  11827. "ext-libxml": "*",
  11828. "ext-mbstring": "*",
  11829. "ext-xml": "*",
  11830. "ext-xmlwriter": "*",
  11831. "myclabs/deep-copy": "^1.10.1",
  11832. "phar-io/manifest": "^2.0.3",
  11833. "phar-io/version": "^3.0.2",
  11834. "php": ">=7.3",
  11835. "phpspec/prophecy": "^1.12.1",
  11836. "phpunit/php-code-coverage": "^9.2.13",
  11837. "phpunit/php-file-iterator": "^3.0.5",
  11838. "phpunit/php-invoker": "^3.1.1",
  11839. "phpunit/php-text-template": "^2.0.3",
  11840. "phpunit/php-timer": "^5.0.2",
  11841. "sebastian/cli-parser": "^1.0.1",
  11842. "sebastian/code-unit": "^1.0.6",
  11843. "sebastian/comparator": "^4.0.5",
  11844. "sebastian/diff": "^4.0.3",
  11845. "sebastian/environment": "^5.1.3",
  11846. "sebastian/exporter": "^4.0.3",
  11847. "sebastian/global-state": "^5.0.1",
  11848. "sebastian/object-enumerator": "^4.0.3",
  11849. "sebastian/resource-operations": "^3.0.3",
  11850. "sebastian/type": "^3.0",
  11851. "sebastian/version": "^3.0.2"
  11852. },
  11853. "require-dev": {
  11854. "phpspec/prophecy-phpunit": "^2.0.1"
  11855. },
  11856. "suggest": {
  11857. "ext-soap": "*",
  11858. "ext-xdebug": "*"
  11859. },
  11860. "bin": [
  11861. "phpunit"
  11862. ],
  11863. "type": "library",
  11864. "extra": {
  11865. "branch-alias": {
  11866. "dev-master": "9.5-dev"
  11867. }
  11868. },
  11869. "autoload": {
  11870. "files": [
  11871. "src/Framework/Assert/Functions.php"
  11872. ],
  11873. "classmap": [
  11874. "src/"
  11875. ]
  11876. },
  11877. "notification-url": "https://packagist.org/downloads/",
  11878. "license": [
  11879. "BSD-3-Clause"
  11880. ],
  11881. "authors": [
  11882. {
  11883. "name": "Sebastian Bergmann",
  11884. "email": "sebastian@phpunit.de",
  11885. "role": "lead"
  11886. }
  11887. ],
  11888. "description": "The PHP Unit Testing framework.",
  11889. "homepage": "https://phpunit.de/",
  11890. "keywords": [
  11891. "phpunit",
  11892. "testing",
  11893. "xunit"
  11894. ],
  11895. "support": {
  11896. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  11897. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.21"
  11898. },
  11899. "funding": [
  11900. {
  11901. "url": "https://phpunit.de/sponsors.html",
  11902. "type": "custom"
  11903. },
  11904. {
  11905. "url": "https://github.com/sebastianbergmann",
  11906. "type": "github"
  11907. }
  11908. ],
  11909. "time": "2022-06-19T12:14:25+00:00"
  11910. },
  11911. {
  11912. "name": "sebastian/cli-parser",
  11913. "version": "1.0.1",
  11914. "source": {
  11915. "type": "git",
  11916. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  11917. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  11918. },
  11919. "dist": {
  11920. "type": "zip",
  11921. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  11922. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  11923. "shasum": "",
  11924. "mirrors": [
  11925. {
  11926. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11927. "preferred": true
  11928. }
  11929. ]
  11930. },
  11931. "require": {
  11932. "php": ">=7.3"
  11933. },
  11934. "require-dev": {
  11935. "phpunit/phpunit": "^9.3"
  11936. },
  11937. "type": "library",
  11938. "extra": {
  11939. "branch-alias": {
  11940. "dev-master": "1.0-dev"
  11941. }
  11942. },
  11943. "autoload": {
  11944. "classmap": [
  11945. "src/"
  11946. ]
  11947. },
  11948. "notification-url": "https://packagist.org/downloads/",
  11949. "license": [
  11950. "BSD-3-Clause"
  11951. ],
  11952. "authors": [
  11953. {
  11954. "name": "Sebastian Bergmann",
  11955. "email": "sebastian@phpunit.de",
  11956. "role": "lead"
  11957. }
  11958. ],
  11959. "description": "Library for parsing CLI options",
  11960. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  11961. "support": {
  11962. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  11963. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  11964. },
  11965. "funding": [
  11966. {
  11967. "url": "https://github.com/sebastianbergmann",
  11968. "type": "github"
  11969. }
  11970. ],
  11971. "time": "2020-09-28T06:08:49+00:00"
  11972. },
  11973. {
  11974. "name": "sebastian/code-unit",
  11975. "version": "1.0.8",
  11976. "source": {
  11977. "type": "git",
  11978. "url": "https://github.com/sebastianbergmann/code-unit.git",
  11979. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  11980. },
  11981. "dist": {
  11982. "type": "zip",
  11983. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  11984. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  11985. "shasum": "",
  11986. "mirrors": [
  11987. {
  11988. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11989. "preferred": true
  11990. }
  11991. ]
  11992. },
  11993. "require": {
  11994. "php": ">=7.3"
  11995. },
  11996. "require-dev": {
  11997. "phpunit/phpunit": "^9.3"
  11998. },
  11999. "type": "library",
  12000. "extra": {
  12001. "branch-alias": {
  12002. "dev-master": "1.0-dev"
  12003. }
  12004. },
  12005. "autoload": {
  12006. "classmap": [
  12007. "src/"
  12008. ]
  12009. },
  12010. "notification-url": "https://packagist.org/downloads/",
  12011. "license": [
  12012. "BSD-3-Clause"
  12013. ],
  12014. "authors": [
  12015. {
  12016. "name": "Sebastian Bergmann",
  12017. "email": "sebastian@phpunit.de",
  12018. "role": "lead"
  12019. }
  12020. ],
  12021. "description": "Collection of value objects that represent the PHP code units",
  12022. "homepage": "https://github.com/sebastianbergmann/code-unit",
  12023. "support": {
  12024. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  12025. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  12026. },
  12027. "funding": [
  12028. {
  12029. "url": "https://github.com/sebastianbergmann",
  12030. "type": "github"
  12031. }
  12032. ],
  12033. "time": "2020-10-26T13:08:54+00:00"
  12034. },
  12035. {
  12036. "name": "sebastian/code-unit-reverse-lookup",
  12037. "version": "2.0.3",
  12038. "source": {
  12039. "type": "git",
  12040. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  12041. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  12042. },
  12043. "dist": {
  12044. "type": "zip",
  12045. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  12046. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  12047. "shasum": "",
  12048. "mirrors": [
  12049. {
  12050. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12051. "preferred": true
  12052. }
  12053. ]
  12054. },
  12055. "require": {
  12056. "php": ">=7.3"
  12057. },
  12058. "require-dev": {
  12059. "phpunit/phpunit": "^9.3"
  12060. },
  12061. "type": "library",
  12062. "extra": {
  12063. "branch-alias": {
  12064. "dev-master": "2.0-dev"
  12065. }
  12066. },
  12067. "autoload": {
  12068. "classmap": [
  12069. "src/"
  12070. ]
  12071. },
  12072. "notification-url": "https://packagist.org/downloads/",
  12073. "license": [
  12074. "BSD-3-Clause"
  12075. ],
  12076. "authors": [
  12077. {
  12078. "name": "Sebastian Bergmann",
  12079. "email": "sebastian@phpunit.de"
  12080. }
  12081. ],
  12082. "description": "Looks up which function or method a line of code belongs to",
  12083. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  12084. "support": {
  12085. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  12086. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  12087. },
  12088. "funding": [
  12089. {
  12090. "url": "https://github.com/sebastianbergmann",
  12091. "type": "github"
  12092. }
  12093. ],
  12094. "time": "2020-09-28T05:30:19+00:00"
  12095. },
  12096. {
  12097. "name": "sebastian/comparator",
  12098. "version": "4.0.6",
  12099. "source": {
  12100. "type": "git",
  12101. "url": "https://github.com/sebastianbergmann/comparator.git",
  12102. "reference": "55f4261989e546dc112258c7a75935a81a7ce382"
  12103. },
  12104. "dist": {
  12105. "type": "zip",
  12106. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/55f4261989e546dc112258c7a75935a81a7ce382",
  12107. "reference": "55f4261989e546dc112258c7a75935a81a7ce382",
  12108. "shasum": "",
  12109. "mirrors": [
  12110. {
  12111. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12112. "preferred": true
  12113. }
  12114. ]
  12115. },
  12116. "require": {
  12117. "php": ">=7.3",
  12118. "sebastian/diff": "^4.0",
  12119. "sebastian/exporter": "^4.0"
  12120. },
  12121. "require-dev": {
  12122. "phpunit/phpunit": "^9.3"
  12123. },
  12124. "type": "library",
  12125. "extra": {
  12126. "branch-alias": {
  12127. "dev-master": "4.0-dev"
  12128. }
  12129. },
  12130. "autoload": {
  12131. "classmap": [
  12132. "src/"
  12133. ]
  12134. },
  12135. "notification-url": "https://packagist.org/downloads/",
  12136. "license": [
  12137. "BSD-3-Clause"
  12138. ],
  12139. "authors": [
  12140. {
  12141. "name": "Sebastian Bergmann",
  12142. "email": "sebastian@phpunit.de"
  12143. },
  12144. {
  12145. "name": "Jeff Welch",
  12146. "email": "whatthejeff@gmail.com"
  12147. },
  12148. {
  12149. "name": "Volker Dusch",
  12150. "email": "github@wallbash.com"
  12151. },
  12152. {
  12153. "name": "Bernhard Schussek",
  12154. "email": "bschussek@2bepublished.at"
  12155. }
  12156. ],
  12157. "description": "Provides the functionality to compare PHP values for equality",
  12158. "homepage": "https://github.com/sebastianbergmann/comparator",
  12159. "keywords": [
  12160. "comparator",
  12161. "compare",
  12162. "equality"
  12163. ],
  12164. "support": {
  12165. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  12166. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.6"
  12167. },
  12168. "funding": [
  12169. {
  12170. "url": "https://github.com/sebastianbergmann",
  12171. "type": "github"
  12172. }
  12173. ],
  12174. "time": "2020-10-26T15:49:45+00:00"
  12175. },
  12176. {
  12177. "name": "sebastian/complexity",
  12178. "version": "2.0.2",
  12179. "source": {
  12180. "type": "git",
  12181. "url": "https://github.com/sebastianbergmann/complexity.git",
  12182. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  12183. },
  12184. "dist": {
  12185. "type": "zip",
  12186. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  12187. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  12188. "shasum": "",
  12189. "mirrors": [
  12190. {
  12191. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12192. "preferred": true
  12193. }
  12194. ]
  12195. },
  12196. "require": {
  12197. "nikic/php-parser": "^4.7",
  12198. "php": ">=7.3"
  12199. },
  12200. "require-dev": {
  12201. "phpunit/phpunit": "^9.3"
  12202. },
  12203. "type": "library",
  12204. "extra": {
  12205. "branch-alias": {
  12206. "dev-master": "2.0-dev"
  12207. }
  12208. },
  12209. "autoload": {
  12210. "classmap": [
  12211. "src/"
  12212. ]
  12213. },
  12214. "notification-url": "https://packagist.org/downloads/",
  12215. "license": [
  12216. "BSD-3-Clause"
  12217. ],
  12218. "authors": [
  12219. {
  12220. "name": "Sebastian Bergmann",
  12221. "email": "sebastian@phpunit.de",
  12222. "role": "lead"
  12223. }
  12224. ],
  12225. "description": "Library for calculating the complexity of PHP code units",
  12226. "homepage": "https://github.com/sebastianbergmann/complexity",
  12227. "support": {
  12228. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  12229. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  12230. },
  12231. "funding": [
  12232. {
  12233. "url": "https://github.com/sebastianbergmann",
  12234. "type": "github"
  12235. }
  12236. ],
  12237. "time": "2020-10-26T15:52:27+00:00"
  12238. },
  12239. {
  12240. "name": "sebastian/diff",
  12241. "version": "4.0.4",
  12242. "source": {
  12243. "type": "git",
  12244. "url": "https://github.com/sebastianbergmann/diff.git",
  12245. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  12246. },
  12247. "dist": {
  12248. "type": "zip",
  12249. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  12250. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  12251. "shasum": "",
  12252. "mirrors": [
  12253. {
  12254. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12255. "preferred": true
  12256. }
  12257. ]
  12258. },
  12259. "require": {
  12260. "php": ">=7.3"
  12261. },
  12262. "require-dev": {
  12263. "phpunit/phpunit": "^9.3",
  12264. "symfony/process": "^4.2 || ^5"
  12265. },
  12266. "type": "library",
  12267. "extra": {
  12268. "branch-alias": {
  12269. "dev-master": "4.0-dev"
  12270. }
  12271. },
  12272. "autoload": {
  12273. "classmap": [
  12274. "src/"
  12275. ]
  12276. },
  12277. "notification-url": "https://packagist.org/downloads/",
  12278. "license": [
  12279. "BSD-3-Clause"
  12280. ],
  12281. "authors": [
  12282. {
  12283. "name": "Sebastian Bergmann",
  12284. "email": "sebastian@phpunit.de"
  12285. },
  12286. {
  12287. "name": "Kore Nordmann",
  12288. "email": "mail@kore-nordmann.de"
  12289. }
  12290. ],
  12291. "description": "Diff implementation",
  12292. "homepage": "https://github.com/sebastianbergmann/diff",
  12293. "keywords": [
  12294. "diff",
  12295. "udiff",
  12296. "unidiff",
  12297. "unified diff"
  12298. ],
  12299. "support": {
  12300. "issues": "https://github.com/sebastianbergmann/diff/issues",
  12301. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  12302. },
  12303. "funding": [
  12304. {
  12305. "url": "https://github.com/sebastianbergmann",
  12306. "type": "github"
  12307. }
  12308. ],
  12309. "time": "2020-10-26T13:10:38+00:00"
  12310. },
  12311. {
  12312. "name": "sebastian/environment",
  12313. "version": "5.1.4",
  12314. "source": {
  12315. "type": "git",
  12316. "url": "https://github.com/sebastianbergmann/environment.git",
  12317. "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7"
  12318. },
  12319. "dist": {
  12320. "type": "zip",
  12321. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/1b5dff7bb151a4db11d49d90e5408e4e938270f7",
  12322. "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7",
  12323. "shasum": "",
  12324. "mirrors": [
  12325. {
  12326. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12327. "preferred": true
  12328. }
  12329. ]
  12330. },
  12331. "require": {
  12332. "php": ">=7.3"
  12333. },
  12334. "require-dev": {
  12335. "phpunit/phpunit": "^9.3"
  12336. },
  12337. "suggest": {
  12338. "ext-posix": "*"
  12339. },
  12340. "type": "library",
  12341. "extra": {
  12342. "branch-alias": {
  12343. "dev-master": "5.1-dev"
  12344. }
  12345. },
  12346. "autoload": {
  12347. "classmap": [
  12348. "src/"
  12349. ]
  12350. },
  12351. "notification-url": "https://packagist.org/downloads/",
  12352. "license": [
  12353. "BSD-3-Clause"
  12354. ],
  12355. "authors": [
  12356. {
  12357. "name": "Sebastian Bergmann",
  12358. "email": "sebastian@phpunit.de"
  12359. }
  12360. ],
  12361. "description": "Provides functionality to handle HHVM/PHP environments",
  12362. "homepage": "http://www.github.com/sebastianbergmann/environment",
  12363. "keywords": [
  12364. "Xdebug",
  12365. "environment",
  12366. "hhvm"
  12367. ],
  12368. "support": {
  12369. "issues": "https://github.com/sebastianbergmann/environment/issues",
  12370. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.4"
  12371. },
  12372. "funding": [
  12373. {
  12374. "url": "https://github.com/sebastianbergmann",
  12375. "type": "github"
  12376. }
  12377. ],
  12378. "time": "2022-04-03T09:37:03+00:00"
  12379. },
  12380. {
  12381. "name": "sebastian/exporter",
  12382. "version": "4.0.4",
  12383. "source": {
  12384. "type": "git",
  12385. "url": "https://github.com/sebastianbergmann/exporter.git",
  12386. "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9"
  12387. },
  12388. "dist": {
  12389. "type": "zip",
  12390. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/65e8b7db476c5dd267e65eea9cab77584d3cfff9",
  12391. "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9",
  12392. "shasum": "",
  12393. "mirrors": [
  12394. {
  12395. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12396. "preferred": true
  12397. }
  12398. ]
  12399. },
  12400. "require": {
  12401. "php": ">=7.3",
  12402. "sebastian/recursion-context": "^4.0"
  12403. },
  12404. "require-dev": {
  12405. "ext-mbstring": "*",
  12406. "phpunit/phpunit": "^9.3"
  12407. },
  12408. "type": "library",
  12409. "extra": {
  12410. "branch-alias": {
  12411. "dev-master": "4.0-dev"
  12412. }
  12413. },
  12414. "autoload": {
  12415. "classmap": [
  12416. "src/"
  12417. ]
  12418. },
  12419. "notification-url": "https://packagist.org/downloads/",
  12420. "license": [
  12421. "BSD-3-Clause"
  12422. ],
  12423. "authors": [
  12424. {
  12425. "name": "Sebastian Bergmann",
  12426. "email": "sebastian@phpunit.de"
  12427. },
  12428. {
  12429. "name": "Jeff Welch",
  12430. "email": "whatthejeff@gmail.com"
  12431. },
  12432. {
  12433. "name": "Volker Dusch",
  12434. "email": "github@wallbash.com"
  12435. },
  12436. {
  12437. "name": "Adam Harvey",
  12438. "email": "aharvey@php.net"
  12439. },
  12440. {
  12441. "name": "Bernhard Schussek",
  12442. "email": "bschussek@gmail.com"
  12443. }
  12444. ],
  12445. "description": "Provides the functionality to export PHP variables for visualization",
  12446. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  12447. "keywords": [
  12448. "export",
  12449. "exporter"
  12450. ],
  12451. "support": {
  12452. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  12453. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.4"
  12454. },
  12455. "funding": [
  12456. {
  12457. "url": "https://github.com/sebastianbergmann",
  12458. "type": "github"
  12459. }
  12460. ],
  12461. "time": "2021-11-11T14:18:36+00:00"
  12462. },
  12463. {
  12464. "name": "sebastian/global-state",
  12465. "version": "5.0.5",
  12466. "source": {
  12467. "type": "git",
  12468. "url": "https://github.com/sebastianbergmann/global-state.git",
  12469. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2"
  12470. },
  12471. "dist": {
  12472. "type": "zip",
  12473. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  12474. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  12475. "shasum": "",
  12476. "mirrors": [
  12477. {
  12478. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12479. "preferred": true
  12480. }
  12481. ]
  12482. },
  12483. "require": {
  12484. "php": ">=7.3",
  12485. "sebastian/object-reflector": "^2.0",
  12486. "sebastian/recursion-context": "^4.0"
  12487. },
  12488. "require-dev": {
  12489. "ext-dom": "*",
  12490. "phpunit/phpunit": "^9.3"
  12491. },
  12492. "suggest": {
  12493. "ext-uopz": "*"
  12494. },
  12495. "type": "library",
  12496. "extra": {
  12497. "branch-alias": {
  12498. "dev-master": "5.0-dev"
  12499. }
  12500. },
  12501. "autoload": {
  12502. "classmap": [
  12503. "src/"
  12504. ]
  12505. },
  12506. "notification-url": "https://packagist.org/downloads/",
  12507. "license": [
  12508. "BSD-3-Clause"
  12509. ],
  12510. "authors": [
  12511. {
  12512. "name": "Sebastian Bergmann",
  12513. "email": "sebastian@phpunit.de"
  12514. }
  12515. ],
  12516. "description": "Snapshotting of global state",
  12517. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  12518. "keywords": [
  12519. "global state"
  12520. ],
  12521. "support": {
  12522. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  12523. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5"
  12524. },
  12525. "funding": [
  12526. {
  12527. "url": "https://github.com/sebastianbergmann",
  12528. "type": "github"
  12529. }
  12530. ],
  12531. "time": "2022-02-14T08:28:10+00:00"
  12532. },
  12533. {
  12534. "name": "sebastian/lines-of-code",
  12535. "version": "1.0.3",
  12536. "source": {
  12537. "type": "git",
  12538. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  12539. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  12540. },
  12541. "dist": {
  12542. "type": "zip",
  12543. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  12544. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  12545. "shasum": "",
  12546. "mirrors": [
  12547. {
  12548. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12549. "preferred": true
  12550. }
  12551. ]
  12552. },
  12553. "require": {
  12554. "nikic/php-parser": "^4.6",
  12555. "php": ">=7.3"
  12556. },
  12557. "require-dev": {
  12558. "phpunit/phpunit": "^9.3"
  12559. },
  12560. "type": "library",
  12561. "extra": {
  12562. "branch-alias": {
  12563. "dev-master": "1.0-dev"
  12564. }
  12565. },
  12566. "autoload": {
  12567. "classmap": [
  12568. "src/"
  12569. ]
  12570. },
  12571. "notification-url": "https://packagist.org/downloads/",
  12572. "license": [
  12573. "BSD-3-Clause"
  12574. ],
  12575. "authors": [
  12576. {
  12577. "name": "Sebastian Bergmann",
  12578. "email": "sebastian@phpunit.de",
  12579. "role": "lead"
  12580. }
  12581. ],
  12582. "description": "Library for counting the lines of code in PHP source code",
  12583. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  12584. "support": {
  12585. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  12586. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  12587. },
  12588. "funding": [
  12589. {
  12590. "url": "https://github.com/sebastianbergmann",
  12591. "type": "github"
  12592. }
  12593. ],
  12594. "time": "2020-11-28T06:42:11+00:00"
  12595. },
  12596. {
  12597. "name": "sebastian/object-enumerator",
  12598. "version": "4.0.4",
  12599. "source": {
  12600. "type": "git",
  12601. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  12602. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  12603. },
  12604. "dist": {
  12605. "type": "zip",
  12606. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  12607. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  12608. "shasum": "",
  12609. "mirrors": [
  12610. {
  12611. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12612. "preferred": true
  12613. }
  12614. ]
  12615. },
  12616. "require": {
  12617. "php": ">=7.3",
  12618. "sebastian/object-reflector": "^2.0",
  12619. "sebastian/recursion-context": "^4.0"
  12620. },
  12621. "require-dev": {
  12622. "phpunit/phpunit": "^9.3"
  12623. },
  12624. "type": "library",
  12625. "extra": {
  12626. "branch-alias": {
  12627. "dev-master": "4.0-dev"
  12628. }
  12629. },
  12630. "autoload": {
  12631. "classmap": [
  12632. "src/"
  12633. ]
  12634. },
  12635. "notification-url": "https://packagist.org/downloads/",
  12636. "license": [
  12637. "BSD-3-Clause"
  12638. ],
  12639. "authors": [
  12640. {
  12641. "name": "Sebastian Bergmann",
  12642. "email": "sebastian@phpunit.de"
  12643. }
  12644. ],
  12645. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  12646. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  12647. "support": {
  12648. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  12649. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  12650. },
  12651. "funding": [
  12652. {
  12653. "url": "https://github.com/sebastianbergmann",
  12654. "type": "github"
  12655. }
  12656. ],
  12657. "time": "2020-10-26T13:12:34+00:00"
  12658. },
  12659. {
  12660. "name": "sebastian/object-reflector",
  12661. "version": "2.0.4",
  12662. "source": {
  12663. "type": "git",
  12664. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  12665. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  12666. },
  12667. "dist": {
  12668. "type": "zip",
  12669. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  12670. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  12671. "shasum": "",
  12672. "mirrors": [
  12673. {
  12674. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12675. "preferred": true
  12676. }
  12677. ]
  12678. },
  12679. "require": {
  12680. "php": ">=7.3"
  12681. },
  12682. "require-dev": {
  12683. "phpunit/phpunit": "^9.3"
  12684. },
  12685. "type": "library",
  12686. "extra": {
  12687. "branch-alias": {
  12688. "dev-master": "2.0-dev"
  12689. }
  12690. },
  12691. "autoload": {
  12692. "classmap": [
  12693. "src/"
  12694. ]
  12695. },
  12696. "notification-url": "https://packagist.org/downloads/",
  12697. "license": [
  12698. "BSD-3-Clause"
  12699. ],
  12700. "authors": [
  12701. {
  12702. "name": "Sebastian Bergmann",
  12703. "email": "sebastian@phpunit.de"
  12704. }
  12705. ],
  12706. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  12707. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  12708. "support": {
  12709. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  12710. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  12711. },
  12712. "funding": [
  12713. {
  12714. "url": "https://github.com/sebastianbergmann",
  12715. "type": "github"
  12716. }
  12717. ],
  12718. "time": "2020-10-26T13:14:26+00:00"
  12719. },
  12720. {
  12721. "name": "sebastian/recursion-context",
  12722. "version": "4.0.4",
  12723. "source": {
  12724. "type": "git",
  12725. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  12726. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172"
  12727. },
  12728. "dist": {
  12729. "type": "zip",
  12730. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172",
  12731. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172",
  12732. "shasum": "",
  12733. "mirrors": [
  12734. {
  12735. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12736. "preferred": true
  12737. }
  12738. ]
  12739. },
  12740. "require": {
  12741. "php": ">=7.3"
  12742. },
  12743. "require-dev": {
  12744. "phpunit/phpunit": "^9.3"
  12745. },
  12746. "type": "library",
  12747. "extra": {
  12748. "branch-alias": {
  12749. "dev-master": "4.0-dev"
  12750. }
  12751. },
  12752. "autoload": {
  12753. "classmap": [
  12754. "src/"
  12755. ]
  12756. },
  12757. "notification-url": "https://packagist.org/downloads/",
  12758. "license": [
  12759. "BSD-3-Clause"
  12760. ],
  12761. "authors": [
  12762. {
  12763. "name": "Sebastian Bergmann",
  12764. "email": "sebastian@phpunit.de"
  12765. },
  12766. {
  12767. "name": "Jeff Welch",
  12768. "email": "whatthejeff@gmail.com"
  12769. },
  12770. {
  12771. "name": "Adam Harvey",
  12772. "email": "aharvey@php.net"
  12773. }
  12774. ],
  12775. "description": "Provides functionality to recursively process PHP variables",
  12776. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  12777. "support": {
  12778. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  12779. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4"
  12780. },
  12781. "funding": [
  12782. {
  12783. "url": "https://github.com/sebastianbergmann",
  12784. "type": "github"
  12785. }
  12786. ],
  12787. "time": "2020-10-26T13:17:30+00:00"
  12788. },
  12789. {
  12790. "name": "sebastian/resource-operations",
  12791. "version": "3.0.3",
  12792. "source": {
  12793. "type": "git",
  12794. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  12795. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  12796. },
  12797. "dist": {
  12798. "type": "zip",
  12799. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  12800. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  12801. "shasum": "",
  12802. "mirrors": [
  12803. {
  12804. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12805. "preferred": true
  12806. }
  12807. ]
  12808. },
  12809. "require": {
  12810. "php": ">=7.3"
  12811. },
  12812. "require-dev": {
  12813. "phpunit/phpunit": "^9.0"
  12814. },
  12815. "type": "library",
  12816. "extra": {
  12817. "branch-alias": {
  12818. "dev-master": "3.0-dev"
  12819. }
  12820. },
  12821. "autoload": {
  12822. "classmap": [
  12823. "src/"
  12824. ]
  12825. },
  12826. "notification-url": "https://packagist.org/downloads/",
  12827. "license": [
  12828. "BSD-3-Clause"
  12829. ],
  12830. "authors": [
  12831. {
  12832. "name": "Sebastian Bergmann",
  12833. "email": "sebastian@phpunit.de"
  12834. }
  12835. ],
  12836. "description": "Provides a list of PHP built-in functions that operate on resources",
  12837. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  12838. "support": {
  12839. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  12840. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  12841. },
  12842. "funding": [
  12843. {
  12844. "url": "https://github.com/sebastianbergmann",
  12845. "type": "github"
  12846. }
  12847. ],
  12848. "time": "2020-09-28T06:45:17+00:00"
  12849. },
  12850. {
  12851. "name": "sebastian/type",
  12852. "version": "3.0.0",
  12853. "source": {
  12854. "type": "git",
  12855. "url": "https://github.com/sebastianbergmann/type.git",
  12856. "reference": "b233b84bc4465aff7b57cf1c4bc75c86d00d6dad"
  12857. },
  12858. "dist": {
  12859. "type": "zip",
  12860. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/b233b84bc4465aff7b57cf1c4bc75c86d00d6dad",
  12861. "reference": "b233b84bc4465aff7b57cf1c4bc75c86d00d6dad",
  12862. "shasum": "",
  12863. "mirrors": [
  12864. {
  12865. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12866. "preferred": true
  12867. }
  12868. ]
  12869. },
  12870. "require": {
  12871. "php": ">=7.3"
  12872. },
  12873. "require-dev": {
  12874. "phpunit/phpunit": "^9.5"
  12875. },
  12876. "type": "library",
  12877. "extra": {
  12878. "branch-alias": {
  12879. "dev-master": "3.0-dev"
  12880. }
  12881. },
  12882. "autoload": {
  12883. "classmap": [
  12884. "src/"
  12885. ]
  12886. },
  12887. "notification-url": "https://packagist.org/downloads/",
  12888. "license": [
  12889. "BSD-3-Clause"
  12890. ],
  12891. "authors": [
  12892. {
  12893. "name": "Sebastian Bergmann",
  12894. "email": "sebastian@phpunit.de",
  12895. "role": "lead"
  12896. }
  12897. ],
  12898. "description": "Collection of value objects that represent the types of the PHP type system",
  12899. "homepage": "https://github.com/sebastianbergmann/type",
  12900. "support": {
  12901. "issues": "https://github.com/sebastianbergmann/type/issues",
  12902. "source": "https://github.com/sebastianbergmann/type/tree/3.0.0"
  12903. },
  12904. "funding": [
  12905. {
  12906. "url": "https://github.com/sebastianbergmann",
  12907. "type": "github"
  12908. }
  12909. ],
  12910. "time": "2022-03-15T09:54:48+00:00"
  12911. },
  12912. {
  12913. "name": "sebastian/version",
  12914. "version": "3.0.2",
  12915. "source": {
  12916. "type": "git",
  12917. "url": "https://github.com/sebastianbergmann/version.git",
  12918. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  12919. },
  12920. "dist": {
  12921. "type": "zip",
  12922. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  12923. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  12924. "shasum": "",
  12925. "mirrors": [
  12926. {
  12927. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12928. "preferred": true
  12929. }
  12930. ]
  12931. },
  12932. "require": {
  12933. "php": ">=7.3"
  12934. },
  12935. "type": "library",
  12936. "extra": {
  12937. "branch-alias": {
  12938. "dev-master": "3.0-dev"
  12939. }
  12940. },
  12941. "autoload": {
  12942. "classmap": [
  12943. "src/"
  12944. ]
  12945. },
  12946. "notification-url": "https://packagist.org/downloads/",
  12947. "license": [
  12948. "BSD-3-Clause"
  12949. ],
  12950. "authors": [
  12951. {
  12952. "name": "Sebastian Bergmann",
  12953. "email": "sebastian@phpunit.de",
  12954. "role": "lead"
  12955. }
  12956. ],
  12957. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  12958. "homepage": "https://github.com/sebastianbergmann/version",
  12959. "support": {
  12960. "issues": "https://github.com/sebastianbergmann/version/issues",
  12961. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  12962. },
  12963. "funding": [
  12964. {
  12965. "url": "https://github.com/sebastianbergmann",
  12966. "type": "github"
  12967. }
  12968. ],
  12969. "time": "2020-09-28T06:39:44+00:00"
  12970. },
  12971. {
  12972. "name": "theseer/tokenizer",
  12973. "version": "1.2.1",
  12974. "source": {
  12975. "type": "git",
  12976. "url": "https://github.com/theseer/tokenizer.git",
  12977. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  12978. },
  12979. "dist": {
  12980. "type": "zip",
  12981. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  12982. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  12983. "shasum": "",
  12984. "mirrors": [
  12985. {
  12986. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12987. "preferred": true
  12988. }
  12989. ]
  12990. },
  12991. "require": {
  12992. "ext-dom": "*",
  12993. "ext-tokenizer": "*",
  12994. "ext-xmlwriter": "*",
  12995. "php": "^7.2 || ^8.0"
  12996. },
  12997. "type": "library",
  12998. "autoload": {
  12999. "classmap": [
  13000. "src/"
  13001. ]
  13002. },
  13003. "notification-url": "https://packagist.org/downloads/",
  13004. "license": [
  13005. "BSD-3-Clause"
  13006. ],
  13007. "authors": [
  13008. {
  13009. "name": "Arne Blankerts",
  13010. "email": "arne@blankerts.de",
  13011. "role": "Developer"
  13012. }
  13013. ],
  13014. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  13015. "support": {
  13016. "issues": "https://github.com/theseer/tokenizer/issues",
  13017. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  13018. },
  13019. "funding": [
  13020. {
  13021. "url": "https://github.com/theseer",
  13022. "type": "github"
  13023. }
  13024. ],
  13025. "time": "2021-07-28T10:34:58+00:00"
  13026. }
  13027. ],
  13028. "aliases": [],
  13029. "minimum-stability": "dev",
  13030. "stability-flags": [],
  13031. "prefer-stable": true,
  13032. "prefer-lowest": false,
  13033. "platform": {
  13034. "php": "^7.3|^8.0"
  13035. },
  13036. "platform-dev": [],
  13037. "plugin-api-version": "2.0.0"
  13038. }