composer.lock 471 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056
  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": "100b9128e745c36abecf4764fa09f8bf",
  8. "packages": [
  9. {
  10. "name": "adbario/php-dot-notation",
  11. "version": "2.4.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.4.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.6.0",
  220. "source": {
  221. "type": "git",
  222. "url": "https://github.com/aliyun/aliyun-oss-php-sdk.git",
  223. "reference": "572d0f8e099e8630ae7139ed3fdedb926c7a760f"
  224. },
  225. "dist": {
  226. "type": "zip",
  227. "url": "https://api.github.com/repos/aliyun/aliyun-oss-php-sdk/zipball/572d0f8e099e8630ae7139ed3fdedb926c7a760f",
  228. "reference": "572d0f8e099e8630ae7139ed3fdedb926c7a760f",
  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.6.0"
  265. },
  266. "time": "2022-08-03T08:06:01+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.10.1",
  576. "source": {
  577. "type": "git",
  578. "url": "https://github.com/brick/math.git",
  579. "reference": "de846578401f4e58f911b3afeb62ced56365ed87"
  580. },
  581. "dist": {
  582. "type": "zip",
  583. "url": "https://api.github.com/repos/brick/math/zipball/de846578401f4e58f911b3afeb62ced56365ed87",
  584. "reference": "de846578401f4e58f911b3afeb62ced56365ed87",
  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.4 || ^8.0"
  596. },
  597. "require-dev": {
  598. "php-coveralls/php-coveralls": "^2.2",
  599. "phpunit/phpunit": "^9.0",
  600. "vimeo/psalm": "4.25.0"
  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.10.1"
  626. },
  627. "funding": [
  628. {
  629. "url": "https://github.com/BenMorel",
  630. "type": "github"
  631. }
  632. ],
  633. "time": "2022-08-01T22:54:31+00:00"
  634. },
  635. {
  636. "name": "clagiordano/weblibs-configmanager",
  637. "version": "v1.2.0",
  638. "source": {
  639. "type": "git",
  640. "url": "https://github.com/clagiordano/weblibs-configmanager.git",
  641. "reference": "5c8ebcc62782313b1278afe802b120d18c07a059"
  642. },
  643. "dist": {
  644. "type": "zip",
  645. "url": "https://api.github.com/repos/clagiordano/weblibs-configmanager/zipball/5c8ebcc62782313b1278afe802b120d18c07a059",
  646. "reference": "5c8ebcc62782313b1278afe802b120d18c07a059",
  647. "shasum": "",
  648. "mirrors": [
  649. {
  650. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  651. "preferred": true
  652. }
  653. ]
  654. },
  655. "require": {
  656. "php": ">=5.4"
  657. },
  658. "require-dev": {
  659. "clagiordano/phpunit-result-printer": "^1",
  660. "phpunit/phpunit": "^4.8"
  661. },
  662. "type": "library",
  663. "autoload": {
  664. "psr-4": {
  665. "clagiordano\\weblibs\\configmanager\\": "src/"
  666. }
  667. },
  668. "notification-url": "https://packagist.org/downloads/",
  669. "license": [
  670. "LGPL-3.0-or-later"
  671. ],
  672. "authors": [
  673. {
  674. "name": "Claudio Giordano",
  675. "email": "claudio.giordano@autistici.org",
  676. "role": "Developer"
  677. }
  678. ],
  679. "description": "weblibs-configmanager is a tool library for easily read and access to php config array file and direct read/write configuration file / object",
  680. "keywords": [
  681. "clagiordano",
  682. "configuration",
  683. "manager",
  684. "tool",
  685. "weblibs"
  686. ],
  687. "support": {
  688. "issues": "https://github.com/clagiordano/weblibs-configmanager/issues",
  689. "source": "https://github.com/clagiordano/weblibs-configmanager/tree/v1.2.0"
  690. },
  691. "time": "2021-05-18T17:55:57+00:00"
  692. },
  693. {
  694. "name": "danielstjules/stringy",
  695. "version": "3.1.0",
  696. "source": {
  697. "type": "git",
  698. "url": "https://github.com/danielstjules/Stringy.git",
  699. "reference": "df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e"
  700. },
  701. "dist": {
  702. "type": "zip",
  703. "url": "https://api.github.com/repos/danielstjules/Stringy/zipball/df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e",
  704. "reference": "df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e",
  705. "shasum": "",
  706. "mirrors": [
  707. {
  708. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  709. "preferred": true
  710. }
  711. ]
  712. },
  713. "require": {
  714. "php": ">=5.4.0",
  715. "symfony/polyfill-mbstring": "~1.1"
  716. },
  717. "require-dev": {
  718. "phpunit/phpunit": "~4.0"
  719. },
  720. "type": "library",
  721. "autoload": {
  722. "files": [
  723. "src/Create.php"
  724. ],
  725. "psr-4": {
  726. "Stringy\\": "src/"
  727. }
  728. },
  729. "notification-url": "https://packagist.org/downloads/",
  730. "license": [
  731. "MIT"
  732. ],
  733. "authors": [
  734. {
  735. "name": "Daniel St. Jules",
  736. "email": "danielst.jules@gmail.com",
  737. "homepage": "http://www.danielstjules.com"
  738. }
  739. ],
  740. "description": "A string manipulation library with multibyte support",
  741. "homepage": "https://github.com/danielstjules/Stringy",
  742. "keywords": [
  743. "UTF",
  744. "helpers",
  745. "manipulation",
  746. "methods",
  747. "multibyte",
  748. "string",
  749. "utf-8",
  750. "utility",
  751. "utils"
  752. ],
  753. "support": {
  754. "issues": "https://github.com/danielstjules/Stringy/issues",
  755. "source": "https://github.com/danielstjules/Stringy"
  756. },
  757. "time": "2017-06-12T01:10:27+00:00"
  758. },
  759. {
  760. "name": "dcat/easy-excel",
  761. "version": "1.1.0",
  762. "source": {
  763. "type": "git",
  764. "url": "https://github.com/jqhph/easy-excel.git",
  765. "reference": "20ee838b07f1f5d9c075b84e6f4807cbb21c44b0"
  766. },
  767. "dist": {
  768. "type": "zip",
  769. "url": "https://api.github.com/repos/jqhph/easy-excel/zipball/20ee838b07f1f5d9c075b84e6f4807cbb21c44b0",
  770. "reference": "20ee838b07f1f5d9c075b84e6f4807cbb21c44b0",
  771. "shasum": "",
  772. "mirrors": [
  773. {
  774. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  775. "preferred": true
  776. }
  777. ]
  778. },
  779. "require": {
  780. "box/spout": "~3",
  781. "league/flysystem": "~1|~2|~3",
  782. "php": ">=7.1.0"
  783. },
  784. "require-dev": {
  785. "friendsofphp/php-cs-fixer": "^2",
  786. "phpunit/phpunit": "~7|~8.0"
  787. },
  788. "type": "library",
  789. "autoload": {
  790. "psr-4": {
  791. "Dcat\\EasyExcel\\": "src/"
  792. }
  793. },
  794. "notification-url": "https://packagist.org/downloads/",
  795. "license": [
  796. "MIT"
  797. ],
  798. "authors": [
  799. {
  800. "name": "jqh",
  801. "email": "841324345@qq.com"
  802. }
  803. ],
  804. "description": "使用简单实用的语义化接口快速读写Excel文件",
  805. "homepage": "https://github.com/jqhph/easy-excel",
  806. "keywords": [
  807. "box spout",
  808. "csv",
  809. "easy excel",
  810. "excel",
  811. "ods",
  812. "office",
  813. "read",
  814. "spreadsheet",
  815. "stream",
  816. "xlsx"
  817. ],
  818. "support": {
  819. "issues": "https://github.com/jqhph/easy-excel/issues",
  820. "source": "https://github.com/jqhph/easy-excel/tree/1.1.0"
  821. },
  822. "time": "2022-03-03T03:04:13+00:00"
  823. },
  824. {
  825. "name": "dcat/laravel-admin",
  826. "version": "2.2.2-beta",
  827. "source": {
  828. "type": "git",
  829. "url": "https://github.com/jqhph/dcat-admin.git",
  830. "reference": "150f46486871b5ca57992f7eed3787e0c1c49bef"
  831. },
  832. "dist": {
  833. "type": "zip",
  834. "url": "https://api.github.com/repos/jqhph/dcat-admin/zipball/150f46486871b5ca57992f7eed3787e0c1c49bef",
  835. "reference": "150f46486871b5ca57992f7eed3787e0c1c49bef",
  836. "shasum": "",
  837. "mirrors": [
  838. {
  839. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  840. "preferred": true
  841. }
  842. ]
  843. },
  844. "require": {
  845. "doctrine/dbal": "^2.6|^3.0",
  846. "laravel/framework": "~5.5|~6.0|~7.0|~8.0|~9.0",
  847. "php": ">=7.1.0",
  848. "spatie/eloquent-sortable": "3.*|4.*"
  849. },
  850. "require-dev": {
  851. "fzaninotto/faker": "^1.4",
  852. "laravel/dusk": "~5.9|~6",
  853. "mockery/mockery": "^1.0",
  854. "phpstan/phpstan": "^0.12.0",
  855. "phpunit/phpunit": "^7.5|~9"
  856. },
  857. "type": "library",
  858. "extra": {
  859. "laravel": {
  860. "providers": [
  861. "Dcat\\Admin\\AdminServiceProvider"
  862. ]
  863. }
  864. },
  865. "autoload": {
  866. "files": [
  867. "src/Support/helpers.php"
  868. ],
  869. "psr-4": {
  870. "Dcat\\Admin\\": "src/"
  871. }
  872. },
  873. "notification-url": "https://packagist.org/downloads/",
  874. "license": [
  875. "MIT"
  876. ],
  877. "authors": [
  878. {
  879. "name": "jqh",
  880. "email": "841324345@qq.com"
  881. }
  882. ],
  883. "description": "dcat admin",
  884. "homepage": "https://github.com/jqhph/dcat-admin",
  885. "keywords": [
  886. "admin",
  887. "dcat",
  888. "form",
  889. "grid",
  890. "laravel",
  891. "laravel admin"
  892. ],
  893. "support": {
  894. "issues": "https://github.com/jqhph/dcat-admin/issues",
  895. "source": "https://github.com/jqhph/dcat-admin/tree/2.2.2-beta"
  896. },
  897. "time": "2022-06-27T14:42:39+00:00"
  898. },
  899. {
  900. "name": "dflydev/dot-access-data",
  901. "version": "v3.0.1",
  902. "source": {
  903. "type": "git",
  904. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  905. "reference": "0992cc19268b259a39e86f296da5f0677841f42c"
  906. },
  907. "dist": {
  908. "type": "zip",
  909. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/0992cc19268b259a39e86f296da5f0677841f42c",
  910. "reference": "0992cc19268b259a39e86f296da5f0677841f42c",
  911. "shasum": "",
  912. "mirrors": [
  913. {
  914. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  915. "preferred": true
  916. }
  917. ]
  918. },
  919. "require": {
  920. "php": "^7.1 || ^8.0"
  921. },
  922. "require-dev": {
  923. "phpstan/phpstan": "^0.12.42",
  924. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  925. "scrutinizer/ocular": "1.6.0",
  926. "squizlabs/php_codesniffer": "^3.5",
  927. "vimeo/psalm": "^3.14"
  928. },
  929. "type": "library",
  930. "extra": {
  931. "branch-alias": {
  932. "dev-main": "3.x-dev"
  933. }
  934. },
  935. "autoload": {
  936. "psr-4": {
  937. "Dflydev\\DotAccessData\\": "src/"
  938. }
  939. },
  940. "notification-url": "https://packagist.org/downloads/",
  941. "license": [
  942. "MIT"
  943. ],
  944. "authors": [
  945. {
  946. "name": "Dragonfly Development Inc.",
  947. "email": "info@dflydev.com",
  948. "homepage": "http://dflydev.com"
  949. },
  950. {
  951. "name": "Beau Simensen",
  952. "email": "beau@dflydev.com",
  953. "homepage": "http://beausimensen.com"
  954. },
  955. {
  956. "name": "Carlos Frutos",
  957. "email": "carlos@kiwing.it",
  958. "homepage": "https://github.com/cfrutos"
  959. },
  960. {
  961. "name": "Colin O'Dell",
  962. "email": "colinodell@gmail.com",
  963. "homepage": "https://www.colinodell.com"
  964. }
  965. ],
  966. "description": "Given a deep data structure, access data by dot notation.",
  967. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  968. "keywords": [
  969. "access",
  970. "data",
  971. "dot",
  972. "notation"
  973. ],
  974. "support": {
  975. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  976. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.1"
  977. },
  978. "time": "2021-08-13T13:06:58+00:00"
  979. },
  980. {
  981. "name": "dingo/blueprint",
  982. "version": "v0.4.3",
  983. "source": {
  984. "type": "git",
  985. "url": "https://github.com/dingo/blueprint.git",
  986. "reference": "e3a8f19ae10716670079c3c162540756dbd20a88"
  987. },
  988. "dist": {
  989. "type": "zip",
  990. "url": "https://api.github.com/repos/dingo/blueprint/zipball/e3a8f19ae10716670079c3c162540756dbd20a88",
  991. "reference": "e3a8f19ae10716670079c3c162540756dbd20a88",
  992. "shasum": "",
  993. "mirrors": [
  994. {
  995. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  996. "preferred": true
  997. }
  998. ]
  999. },
  1000. "require": {
  1001. "doctrine/annotations": "~1.2",
  1002. "illuminate/filesystem": "^7.0|^8.0",
  1003. "illuminate/support": "^7.0|^8.0",
  1004. "php": "^7.2.5|^8.0",
  1005. "phpdocumentor/reflection-docblock": "^3.1 || ^4.1 || ^5"
  1006. },
  1007. "require-dev": {
  1008. "phpunit/phpunit": "^6.5|^8.3|^9.0",
  1009. "squizlabs/php_codesniffer": "~2.0"
  1010. },
  1011. "type": "library",
  1012. "extra": {
  1013. "branch-alias": {
  1014. "dev-master": "0.2-dev"
  1015. }
  1016. },
  1017. "autoload": {
  1018. "psr-4": {
  1019. "Dingo\\Blueprint\\": "src"
  1020. }
  1021. },
  1022. "notification-url": "https://packagist.org/downloads/",
  1023. "license": [
  1024. "BSD-3-Clause"
  1025. ],
  1026. "authors": [
  1027. {
  1028. "name": "Jason Lewis",
  1029. "email": "jason.lewis1991@gmail.com"
  1030. }
  1031. ],
  1032. "description": "API Blueprint documentation generator.",
  1033. "keywords": [
  1034. "api",
  1035. "blueprint",
  1036. "dingo",
  1037. "docs",
  1038. "laravel"
  1039. ],
  1040. "support": {
  1041. "issues": "https://github.com/dingo/blueprint/issues",
  1042. "source": "https://github.com/dingo/blueprint/tree/v0.4.3"
  1043. },
  1044. "time": "2021-04-30T11:20:38+00:00"
  1045. },
  1046. {
  1047. "name": "doctrine/annotations",
  1048. "version": "1.13.3",
  1049. "source": {
  1050. "type": "git",
  1051. "url": "https://github.com/doctrine/annotations.git",
  1052. "reference": "648b0343343565c4a056bfc8392201385e8d89f0"
  1053. },
  1054. "dist": {
  1055. "type": "zip",
  1056. "url": "https://api.github.com/repos/doctrine/annotations/zipball/648b0343343565c4a056bfc8392201385e8d89f0",
  1057. "reference": "648b0343343565c4a056bfc8392201385e8d89f0",
  1058. "shasum": "",
  1059. "mirrors": [
  1060. {
  1061. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1062. "preferred": true
  1063. }
  1064. ]
  1065. },
  1066. "require": {
  1067. "doctrine/lexer": "1.*",
  1068. "ext-tokenizer": "*",
  1069. "php": "^7.1 || ^8.0",
  1070. "psr/cache": "^1 || ^2 || ^3"
  1071. },
  1072. "require-dev": {
  1073. "doctrine/cache": "^1.11 || ^2.0",
  1074. "doctrine/coding-standard": "^6.0 || ^8.1",
  1075. "phpstan/phpstan": "^1.4.10 || ^1.8.0",
  1076. "phpunit/phpunit": "^7.5 || ^8.0 || ^9.1.5",
  1077. "symfony/cache": "^4.4 || ^5.2",
  1078. "vimeo/psalm": "^4.10"
  1079. },
  1080. "type": "library",
  1081. "autoload": {
  1082. "psr-4": {
  1083. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1084. }
  1085. },
  1086. "notification-url": "https://packagist.org/downloads/",
  1087. "license": [
  1088. "MIT"
  1089. ],
  1090. "authors": [
  1091. {
  1092. "name": "Guilherme Blanco",
  1093. "email": "guilhermeblanco@gmail.com"
  1094. },
  1095. {
  1096. "name": "Roman Borschel",
  1097. "email": "roman@code-factory.org"
  1098. },
  1099. {
  1100. "name": "Benjamin Eberlei",
  1101. "email": "kontakt@beberlei.de"
  1102. },
  1103. {
  1104. "name": "Jonathan Wage",
  1105. "email": "jonwage@gmail.com"
  1106. },
  1107. {
  1108. "name": "Johannes Schmitt",
  1109. "email": "schmittjoh@gmail.com"
  1110. }
  1111. ],
  1112. "description": "Docblock Annotations Parser",
  1113. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  1114. "keywords": [
  1115. "annotations",
  1116. "docblock",
  1117. "parser"
  1118. ],
  1119. "support": {
  1120. "issues": "https://github.com/doctrine/annotations/issues",
  1121. "source": "https://github.com/doctrine/annotations/tree/1.13.3"
  1122. },
  1123. "time": "2022-07-02T10:48:51+00:00"
  1124. },
  1125. {
  1126. "name": "doctrine/cache",
  1127. "version": "2.2.0",
  1128. "source": {
  1129. "type": "git",
  1130. "url": "https://github.com/doctrine/cache.git",
  1131. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb"
  1132. },
  1133. "dist": {
  1134. "type": "zip",
  1135. "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb",
  1136. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb",
  1137. "shasum": "",
  1138. "mirrors": [
  1139. {
  1140. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1141. "preferred": true
  1142. }
  1143. ]
  1144. },
  1145. "require": {
  1146. "php": "~7.1 || ^8.0"
  1147. },
  1148. "conflict": {
  1149. "doctrine/common": ">2.2,<2.4"
  1150. },
  1151. "require-dev": {
  1152. "cache/integration-tests": "dev-master",
  1153. "doctrine/coding-standard": "^9",
  1154. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1155. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  1156. "symfony/cache": "^4.4 || ^5.4 || ^6",
  1157. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  1158. },
  1159. "type": "library",
  1160. "autoload": {
  1161. "psr-4": {
  1162. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  1163. }
  1164. },
  1165. "notification-url": "https://packagist.org/downloads/",
  1166. "license": [
  1167. "MIT"
  1168. ],
  1169. "authors": [
  1170. {
  1171. "name": "Guilherme Blanco",
  1172. "email": "guilhermeblanco@gmail.com"
  1173. },
  1174. {
  1175. "name": "Roman Borschel",
  1176. "email": "roman@code-factory.org"
  1177. },
  1178. {
  1179. "name": "Benjamin Eberlei",
  1180. "email": "kontakt@beberlei.de"
  1181. },
  1182. {
  1183. "name": "Jonathan Wage",
  1184. "email": "jonwage@gmail.com"
  1185. },
  1186. {
  1187. "name": "Johannes Schmitt",
  1188. "email": "schmittjoh@gmail.com"
  1189. }
  1190. ],
  1191. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  1192. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  1193. "keywords": [
  1194. "abstraction",
  1195. "apcu",
  1196. "cache",
  1197. "caching",
  1198. "couchdb",
  1199. "memcached",
  1200. "php",
  1201. "redis",
  1202. "xcache"
  1203. ],
  1204. "support": {
  1205. "issues": "https://github.com/doctrine/cache/issues",
  1206. "source": "https://github.com/doctrine/cache/tree/2.2.0"
  1207. },
  1208. "funding": [
  1209. {
  1210. "url": "https://www.doctrine-project.org/sponsorship.html",
  1211. "type": "custom"
  1212. },
  1213. {
  1214. "url": "https://www.patreon.com/phpdoctrine",
  1215. "type": "patreon"
  1216. },
  1217. {
  1218. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  1219. "type": "tidelift"
  1220. }
  1221. ],
  1222. "time": "2022-05-20T20:07:39+00:00"
  1223. },
  1224. {
  1225. "name": "doctrine/dbal",
  1226. "version": "3.4.1",
  1227. "source": {
  1228. "type": "git",
  1229. "url": "https://github.com/doctrine/dbal.git",
  1230. "reference": "94e016428884227245fb1219e0de7d8b86ca16d7"
  1231. },
  1232. "dist": {
  1233. "type": "zip",
  1234. "url": "https://api.github.com/repos/doctrine/dbal/zipball/94e016428884227245fb1219e0de7d8b86ca16d7",
  1235. "reference": "94e016428884227245fb1219e0de7d8b86ca16d7",
  1236. "shasum": "",
  1237. "mirrors": [
  1238. {
  1239. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1240. "preferred": true
  1241. }
  1242. ]
  1243. },
  1244. "require": {
  1245. "composer-runtime-api": "^2",
  1246. "doctrine/cache": "^1.11|^2.0",
  1247. "doctrine/deprecations": "^0.5.3|^1",
  1248. "doctrine/event-manager": "^1.0",
  1249. "php": "^7.4 || ^8.0",
  1250. "psr/cache": "^1|^2|^3",
  1251. "psr/log": "^1|^2|^3"
  1252. },
  1253. "require-dev": {
  1254. "doctrine/coding-standard": "9.0.0",
  1255. "jetbrains/phpstorm-stubs": "2022.1",
  1256. "phpstan/phpstan": "1.8.2",
  1257. "phpstan/phpstan-strict-rules": "^1.3",
  1258. "phpunit/phpunit": "9.5.21",
  1259. "psalm/plugin-phpunit": "0.17.0",
  1260. "squizlabs/php_codesniffer": "3.7.1",
  1261. "symfony/cache": "^5.4|^6.0",
  1262. "symfony/console": "^4.4|^5.4|^6.0",
  1263. "vimeo/psalm": "4.24.0"
  1264. },
  1265. "suggest": {
  1266. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  1267. },
  1268. "bin": [
  1269. "bin/doctrine-dbal"
  1270. ],
  1271. "type": "library",
  1272. "autoload": {
  1273. "psr-4": {
  1274. "Doctrine\\DBAL\\": "src"
  1275. }
  1276. },
  1277. "notification-url": "https://packagist.org/downloads/",
  1278. "license": [
  1279. "MIT"
  1280. ],
  1281. "authors": [
  1282. {
  1283. "name": "Guilherme Blanco",
  1284. "email": "guilhermeblanco@gmail.com"
  1285. },
  1286. {
  1287. "name": "Roman Borschel",
  1288. "email": "roman@code-factory.org"
  1289. },
  1290. {
  1291. "name": "Benjamin Eberlei",
  1292. "email": "kontakt@beberlei.de"
  1293. },
  1294. {
  1295. "name": "Jonathan Wage",
  1296. "email": "jonwage@gmail.com"
  1297. }
  1298. ],
  1299. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  1300. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  1301. "keywords": [
  1302. "abstraction",
  1303. "database",
  1304. "db2",
  1305. "dbal",
  1306. "mariadb",
  1307. "mssql",
  1308. "mysql",
  1309. "oci8",
  1310. "oracle",
  1311. "pdo",
  1312. "pgsql",
  1313. "postgresql",
  1314. "queryobject",
  1315. "sasql",
  1316. "sql",
  1317. "sqlite",
  1318. "sqlserver",
  1319. "sqlsrv"
  1320. ],
  1321. "support": {
  1322. "issues": "https://github.com/doctrine/dbal/issues",
  1323. "source": "https://github.com/doctrine/dbal/tree/3.4.1"
  1324. },
  1325. "funding": [
  1326. {
  1327. "url": "https://www.doctrine-project.org/sponsorship.html",
  1328. "type": "custom"
  1329. },
  1330. {
  1331. "url": "https://www.patreon.com/phpdoctrine",
  1332. "type": "patreon"
  1333. },
  1334. {
  1335. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  1336. "type": "tidelift"
  1337. }
  1338. ],
  1339. "time": "2022-08-16T18:37:46+00:00"
  1340. },
  1341. {
  1342. "name": "doctrine/deprecations",
  1343. "version": "v1.0.0",
  1344. "source": {
  1345. "type": "git",
  1346. "url": "https://github.com/doctrine/deprecations.git",
  1347. "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de"
  1348. },
  1349. "dist": {
  1350. "type": "zip",
  1351. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de",
  1352. "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de",
  1353. "shasum": "",
  1354. "mirrors": [
  1355. {
  1356. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1357. "preferred": true
  1358. }
  1359. ]
  1360. },
  1361. "require": {
  1362. "php": "^7.1|^8.0"
  1363. },
  1364. "require-dev": {
  1365. "doctrine/coding-standard": "^9",
  1366. "phpunit/phpunit": "^7.5|^8.5|^9.5",
  1367. "psr/log": "^1|^2|^3"
  1368. },
  1369. "suggest": {
  1370. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  1371. },
  1372. "type": "library",
  1373. "autoload": {
  1374. "psr-4": {
  1375. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  1376. }
  1377. },
  1378. "notification-url": "https://packagist.org/downloads/",
  1379. "license": [
  1380. "MIT"
  1381. ],
  1382. "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.",
  1383. "homepage": "https://www.doctrine-project.org/",
  1384. "support": {
  1385. "issues": "https://github.com/doctrine/deprecations/issues",
  1386. "source": "https://github.com/doctrine/deprecations/tree/v1.0.0"
  1387. },
  1388. "time": "2022-05-02T15:47:09+00:00"
  1389. },
  1390. {
  1391. "name": "doctrine/event-manager",
  1392. "version": "1.1.1",
  1393. "source": {
  1394. "type": "git",
  1395. "url": "https://github.com/doctrine/event-manager.git",
  1396. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  1397. },
  1398. "dist": {
  1399. "type": "zip",
  1400. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  1401. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  1402. "shasum": "",
  1403. "mirrors": [
  1404. {
  1405. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1406. "preferred": true
  1407. }
  1408. ]
  1409. },
  1410. "require": {
  1411. "php": "^7.1 || ^8.0"
  1412. },
  1413. "conflict": {
  1414. "doctrine/common": "<2.9@dev"
  1415. },
  1416. "require-dev": {
  1417. "doctrine/coding-standard": "^6.0",
  1418. "phpunit/phpunit": "^7.0"
  1419. },
  1420. "type": "library",
  1421. "extra": {
  1422. "branch-alias": {
  1423. "dev-master": "1.0.x-dev"
  1424. }
  1425. },
  1426. "autoload": {
  1427. "psr-4": {
  1428. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1429. }
  1430. },
  1431. "notification-url": "https://packagist.org/downloads/",
  1432. "license": [
  1433. "MIT"
  1434. ],
  1435. "authors": [
  1436. {
  1437. "name": "Guilherme Blanco",
  1438. "email": "guilhermeblanco@gmail.com"
  1439. },
  1440. {
  1441. "name": "Roman Borschel",
  1442. "email": "roman@code-factory.org"
  1443. },
  1444. {
  1445. "name": "Benjamin Eberlei",
  1446. "email": "kontakt@beberlei.de"
  1447. },
  1448. {
  1449. "name": "Jonathan Wage",
  1450. "email": "jonwage@gmail.com"
  1451. },
  1452. {
  1453. "name": "Johannes Schmitt",
  1454. "email": "schmittjoh@gmail.com"
  1455. },
  1456. {
  1457. "name": "Marco Pivetta",
  1458. "email": "ocramius@gmail.com"
  1459. }
  1460. ],
  1461. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  1462. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  1463. "keywords": [
  1464. "event",
  1465. "event dispatcher",
  1466. "event manager",
  1467. "event system",
  1468. "events"
  1469. ],
  1470. "support": {
  1471. "issues": "https://github.com/doctrine/event-manager/issues",
  1472. "source": "https://github.com/doctrine/event-manager/tree/1.1.x"
  1473. },
  1474. "funding": [
  1475. {
  1476. "url": "https://www.doctrine-project.org/sponsorship.html",
  1477. "type": "custom"
  1478. },
  1479. {
  1480. "url": "https://www.patreon.com/phpdoctrine",
  1481. "type": "patreon"
  1482. },
  1483. {
  1484. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  1485. "type": "tidelift"
  1486. }
  1487. ],
  1488. "time": "2020-05-29T18:28:51+00:00"
  1489. },
  1490. {
  1491. "name": "doctrine/inflector",
  1492. "version": "2.0.4",
  1493. "source": {
  1494. "type": "git",
  1495. "url": "https://github.com/doctrine/inflector.git",
  1496. "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89"
  1497. },
  1498. "dist": {
  1499. "type": "zip",
  1500. "url": "https://api.github.com/repos/doctrine/inflector/zipball/8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
  1501. "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
  1502. "shasum": "",
  1503. "mirrors": [
  1504. {
  1505. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1506. "preferred": true
  1507. }
  1508. ]
  1509. },
  1510. "require": {
  1511. "php": "^7.2 || ^8.0"
  1512. },
  1513. "require-dev": {
  1514. "doctrine/coding-standard": "^8.2",
  1515. "phpstan/phpstan": "^0.12",
  1516. "phpstan/phpstan-phpunit": "^0.12",
  1517. "phpstan/phpstan-strict-rules": "^0.12",
  1518. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  1519. "vimeo/psalm": "^4.10"
  1520. },
  1521. "type": "library",
  1522. "autoload": {
  1523. "psr-4": {
  1524. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  1525. }
  1526. },
  1527. "notification-url": "https://packagist.org/downloads/",
  1528. "license": [
  1529. "MIT"
  1530. ],
  1531. "authors": [
  1532. {
  1533. "name": "Guilherme Blanco",
  1534. "email": "guilhermeblanco@gmail.com"
  1535. },
  1536. {
  1537. "name": "Roman Borschel",
  1538. "email": "roman@code-factory.org"
  1539. },
  1540. {
  1541. "name": "Benjamin Eberlei",
  1542. "email": "kontakt@beberlei.de"
  1543. },
  1544. {
  1545. "name": "Jonathan Wage",
  1546. "email": "jonwage@gmail.com"
  1547. },
  1548. {
  1549. "name": "Johannes Schmitt",
  1550. "email": "schmittjoh@gmail.com"
  1551. }
  1552. ],
  1553. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1554. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1555. "keywords": [
  1556. "inflection",
  1557. "inflector",
  1558. "lowercase",
  1559. "manipulation",
  1560. "php",
  1561. "plural",
  1562. "singular",
  1563. "strings",
  1564. "uppercase",
  1565. "words"
  1566. ],
  1567. "support": {
  1568. "issues": "https://github.com/doctrine/inflector/issues",
  1569. "source": "https://github.com/doctrine/inflector/tree/2.0.4"
  1570. },
  1571. "funding": [
  1572. {
  1573. "url": "https://www.doctrine-project.org/sponsorship.html",
  1574. "type": "custom"
  1575. },
  1576. {
  1577. "url": "https://www.patreon.com/phpdoctrine",
  1578. "type": "patreon"
  1579. },
  1580. {
  1581. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1582. "type": "tidelift"
  1583. }
  1584. ],
  1585. "time": "2021-10-22T20:16:43+00:00"
  1586. },
  1587. {
  1588. "name": "doctrine/lexer",
  1589. "version": "1.2.3",
  1590. "source": {
  1591. "type": "git",
  1592. "url": "https://github.com/doctrine/lexer.git",
  1593. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  1594. },
  1595. "dist": {
  1596. "type": "zip",
  1597. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1598. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1599. "shasum": "",
  1600. "mirrors": [
  1601. {
  1602. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1603. "preferred": true
  1604. }
  1605. ]
  1606. },
  1607. "require": {
  1608. "php": "^7.1 || ^8.0"
  1609. },
  1610. "require-dev": {
  1611. "doctrine/coding-standard": "^9.0",
  1612. "phpstan/phpstan": "^1.3",
  1613. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1614. "vimeo/psalm": "^4.11"
  1615. },
  1616. "type": "library",
  1617. "autoload": {
  1618. "psr-4": {
  1619. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1620. }
  1621. },
  1622. "notification-url": "https://packagist.org/downloads/",
  1623. "license": [
  1624. "MIT"
  1625. ],
  1626. "authors": [
  1627. {
  1628. "name": "Guilherme Blanco",
  1629. "email": "guilhermeblanco@gmail.com"
  1630. },
  1631. {
  1632. "name": "Roman Borschel",
  1633. "email": "roman@code-factory.org"
  1634. },
  1635. {
  1636. "name": "Johannes Schmitt",
  1637. "email": "schmittjoh@gmail.com"
  1638. }
  1639. ],
  1640. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1641. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1642. "keywords": [
  1643. "annotations",
  1644. "docblock",
  1645. "lexer",
  1646. "parser",
  1647. "php"
  1648. ],
  1649. "support": {
  1650. "issues": "https://github.com/doctrine/lexer/issues",
  1651. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  1652. },
  1653. "funding": [
  1654. {
  1655. "url": "https://www.doctrine-project.org/sponsorship.html",
  1656. "type": "custom"
  1657. },
  1658. {
  1659. "url": "https://www.patreon.com/phpdoctrine",
  1660. "type": "patreon"
  1661. },
  1662. {
  1663. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1664. "type": "tidelift"
  1665. }
  1666. ],
  1667. "time": "2022-02-28T11:07:21+00:00"
  1668. },
  1669. {
  1670. "name": "dragonmantank/cron-expression",
  1671. "version": "v3.3.1",
  1672. "source": {
  1673. "type": "git",
  1674. "url": "https://github.com/dragonmantank/cron-expression.git",
  1675. "reference": "be85b3f05b46c39bbc0d95f6c071ddff669510fa"
  1676. },
  1677. "dist": {
  1678. "type": "zip",
  1679. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/be85b3f05b46c39bbc0d95f6c071ddff669510fa",
  1680. "reference": "be85b3f05b46c39bbc0d95f6c071ddff669510fa",
  1681. "shasum": "",
  1682. "mirrors": [
  1683. {
  1684. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1685. "preferred": true
  1686. }
  1687. ]
  1688. },
  1689. "require": {
  1690. "php": "^7.2|^8.0",
  1691. "webmozart/assert": "^1.0"
  1692. },
  1693. "replace": {
  1694. "mtdowling/cron-expression": "^1.0"
  1695. },
  1696. "require-dev": {
  1697. "phpstan/extension-installer": "^1.0",
  1698. "phpstan/phpstan": "^1.0",
  1699. "phpstan/phpstan-webmozart-assert": "^1.0",
  1700. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  1701. },
  1702. "type": "library",
  1703. "autoload": {
  1704. "psr-4": {
  1705. "Cron\\": "src/Cron/"
  1706. }
  1707. },
  1708. "notification-url": "https://packagist.org/downloads/",
  1709. "license": [
  1710. "MIT"
  1711. ],
  1712. "authors": [
  1713. {
  1714. "name": "Chris Tankersley",
  1715. "email": "chris@ctankersley.com",
  1716. "homepage": "https://github.com/dragonmantank"
  1717. }
  1718. ],
  1719. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1720. "keywords": [
  1721. "cron",
  1722. "schedule"
  1723. ],
  1724. "support": {
  1725. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  1726. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.1"
  1727. },
  1728. "funding": [
  1729. {
  1730. "url": "https://github.com/dragonmantank",
  1731. "type": "github"
  1732. }
  1733. ],
  1734. "time": "2022-01-18T15:43:28+00:00"
  1735. },
  1736. {
  1737. "name": "easywechat-composer/easywechat-composer",
  1738. "version": "1.4.1",
  1739. "source": {
  1740. "type": "git",
  1741. "url": "https://github.com/mingyoung/easywechat-composer.git",
  1742. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd"
  1743. },
  1744. "dist": {
  1745. "type": "zip",
  1746. "url": "https://api.github.com/repos/mingyoung/easywechat-composer/zipball/3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  1747. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  1748. "shasum": "",
  1749. "mirrors": [
  1750. {
  1751. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1752. "preferred": true
  1753. }
  1754. ]
  1755. },
  1756. "require": {
  1757. "composer-plugin-api": "^1.0 || ^2.0",
  1758. "php": ">=7.0"
  1759. },
  1760. "require-dev": {
  1761. "composer/composer": "^1.0 || ^2.0",
  1762. "phpunit/phpunit": "^6.5 || ^7.0"
  1763. },
  1764. "type": "composer-plugin",
  1765. "extra": {
  1766. "class": "EasyWeChatComposer\\Plugin"
  1767. },
  1768. "autoload": {
  1769. "psr-4": {
  1770. "EasyWeChatComposer\\": "src/"
  1771. }
  1772. },
  1773. "notification-url": "https://packagist.org/downloads/",
  1774. "license": [
  1775. "MIT"
  1776. ],
  1777. "authors": [
  1778. {
  1779. "name": "张铭阳",
  1780. "email": "mingyoungcheung@gmail.com"
  1781. }
  1782. ],
  1783. "description": "The composer plugin for EasyWeChat",
  1784. "support": {
  1785. "issues": "https://github.com/mingyoung/easywechat-composer/issues",
  1786. "source": "https://github.com/mingyoung/easywechat-composer/tree/1.4.1"
  1787. },
  1788. "time": "2021-07-05T04:03:22+00:00"
  1789. },
  1790. {
  1791. "name": "egulias/email-validator",
  1792. "version": "2.1.25",
  1793. "source": {
  1794. "type": "git",
  1795. "url": "https://github.com/egulias/EmailValidator.git",
  1796. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  1797. },
  1798. "dist": {
  1799. "type": "zip",
  1800. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1801. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1802. "shasum": "",
  1803. "mirrors": [
  1804. {
  1805. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1806. "preferred": true
  1807. }
  1808. ]
  1809. },
  1810. "require": {
  1811. "doctrine/lexer": "^1.0.1",
  1812. "php": ">=5.5",
  1813. "symfony/polyfill-intl-idn": "^1.10"
  1814. },
  1815. "require-dev": {
  1816. "dominicsayers/isemail": "^3.0.7",
  1817. "phpunit/phpunit": "^4.8.36|^7.5.15",
  1818. "satooshi/php-coveralls": "^1.0.1"
  1819. },
  1820. "suggest": {
  1821. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1822. },
  1823. "type": "library",
  1824. "extra": {
  1825. "branch-alias": {
  1826. "dev-master": "2.1.x-dev"
  1827. }
  1828. },
  1829. "autoload": {
  1830. "psr-4": {
  1831. "Egulias\\EmailValidator\\": "src"
  1832. }
  1833. },
  1834. "notification-url": "https://packagist.org/downloads/",
  1835. "license": [
  1836. "MIT"
  1837. ],
  1838. "authors": [
  1839. {
  1840. "name": "Eduardo Gulias Davis"
  1841. }
  1842. ],
  1843. "description": "A library for validating emails against several RFCs",
  1844. "homepage": "https://github.com/egulias/EmailValidator",
  1845. "keywords": [
  1846. "email",
  1847. "emailvalidation",
  1848. "emailvalidator",
  1849. "validation",
  1850. "validator"
  1851. ],
  1852. "support": {
  1853. "issues": "https://github.com/egulias/EmailValidator/issues",
  1854. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  1855. },
  1856. "funding": [
  1857. {
  1858. "url": "https://github.com/egulias",
  1859. "type": "github"
  1860. }
  1861. ],
  1862. "time": "2020-12-29T14:50:06+00:00"
  1863. },
  1864. {
  1865. "name": "fruitcake/laravel-cors",
  1866. "version": "v2.2.0",
  1867. "source": {
  1868. "type": "git",
  1869. "url": "https://github.com/fruitcake/laravel-cors.git",
  1870. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534"
  1871. },
  1872. "dist": {
  1873. "type": "zip",
  1874. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/783a74f5e3431d7b9805be8afb60fd0a8f743534",
  1875. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534",
  1876. "shasum": "",
  1877. "mirrors": [
  1878. {
  1879. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1880. "preferred": true
  1881. }
  1882. ]
  1883. },
  1884. "require": {
  1885. "asm89/stack-cors": "^2.0.1",
  1886. "illuminate/contracts": "^6|^7|^8|^9",
  1887. "illuminate/support": "^6|^7|^8|^9",
  1888. "php": ">=7.2"
  1889. },
  1890. "require-dev": {
  1891. "laravel/framework": "^6|^7.24|^8",
  1892. "orchestra/testbench-dusk": "^4|^5|^6|^7",
  1893. "phpunit/phpunit": "^6|^7|^8|^9",
  1894. "squizlabs/php_codesniffer": "^3.5"
  1895. },
  1896. "type": "library",
  1897. "extra": {
  1898. "branch-alias": {
  1899. "dev-master": "2.1-dev"
  1900. },
  1901. "laravel": {
  1902. "providers": [
  1903. "Fruitcake\\Cors\\CorsServiceProvider"
  1904. ]
  1905. }
  1906. },
  1907. "autoload": {
  1908. "psr-4": {
  1909. "Fruitcake\\Cors\\": "src/"
  1910. }
  1911. },
  1912. "notification-url": "https://packagist.org/downloads/",
  1913. "license": [
  1914. "MIT"
  1915. ],
  1916. "authors": [
  1917. {
  1918. "name": "Fruitcake",
  1919. "homepage": "https://fruitcake.nl"
  1920. },
  1921. {
  1922. "name": "Barry vd. Heuvel",
  1923. "email": "barryvdh@gmail.com"
  1924. }
  1925. ],
  1926. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  1927. "keywords": [
  1928. "api",
  1929. "cors",
  1930. "crossdomain",
  1931. "laravel"
  1932. ],
  1933. "support": {
  1934. "issues": "https://github.com/fruitcake/laravel-cors/issues",
  1935. "source": "https://github.com/fruitcake/laravel-cors/tree/v2.2.0"
  1936. },
  1937. "funding": [
  1938. {
  1939. "url": "https://fruitcake.nl",
  1940. "type": "custom"
  1941. },
  1942. {
  1943. "url": "https://github.com/barryvdh",
  1944. "type": "github"
  1945. }
  1946. ],
  1947. "time": "2022-02-23T14:25:13+00:00"
  1948. },
  1949. {
  1950. "name": "giggsey/libphonenumber-for-php",
  1951. "version": "8.12.53",
  1952. "source": {
  1953. "type": "git",
  1954. "url": "https://github.com/giggsey/libphonenumber-for-php.git",
  1955. "reference": "2e39201ca4b88c1ec0594cd78128d21e94929d04"
  1956. },
  1957. "dist": {
  1958. "type": "zip",
  1959. "url": "https://api.github.com/repos/giggsey/libphonenumber-for-php/zipball/2e39201ca4b88c1ec0594cd78128d21e94929d04",
  1960. "reference": "2e39201ca4b88c1ec0594cd78128d21e94929d04",
  1961. "shasum": "",
  1962. "mirrors": [
  1963. {
  1964. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1965. "preferred": true
  1966. }
  1967. ]
  1968. },
  1969. "require": {
  1970. "giggsey/locale": "^1.7|^2.0",
  1971. "php": ">=5.3.2",
  1972. "symfony/polyfill-mbstring": "^1.17"
  1973. },
  1974. "require-dev": {
  1975. "pear/pear-core-minimal": "^1.9",
  1976. "pear/pear_exception": "^1.0",
  1977. "pear/versioncontrol_git": "^0.5",
  1978. "phing/phing": "^2.7",
  1979. "php-coveralls/php-coveralls": "^1.0|^2.0",
  1980. "symfony/console": "^2.8|^3.0|^v4.4|^v5.2",
  1981. "symfony/phpunit-bridge": "^4.2 || ^5"
  1982. },
  1983. "type": "library",
  1984. "extra": {
  1985. "branch-alias": {
  1986. "dev-master": "8.x-dev"
  1987. }
  1988. },
  1989. "autoload": {
  1990. "psr-4": {
  1991. "libphonenumber\\": "src/"
  1992. },
  1993. "exclude-from-classmap": [
  1994. "/src/data/",
  1995. "/src/carrier/data/",
  1996. "/src/geocoding/data/",
  1997. "/src/timezone/data/"
  1998. ]
  1999. },
  2000. "notification-url": "https://packagist.org/downloads/",
  2001. "license": [
  2002. "Apache-2.0"
  2003. ],
  2004. "authors": [
  2005. {
  2006. "name": "Joshua Gigg",
  2007. "email": "giggsey@gmail.com",
  2008. "homepage": "https://giggsey.com/"
  2009. }
  2010. ],
  2011. "description": "PHP Port of Google's libphonenumber",
  2012. "homepage": "https://github.com/giggsey/libphonenumber-for-php",
  2013. "keywords": [
  2014. "geocoding",
  2015. "geolocation",
  2016. "libphonenumber",
  2017. "mobile",
  2018. "phonenumber",
  2019. "validation"
  2020. ],
  2021. "support": {
  2022. "irc": "irc://irc.appliedirc.com/lobby",
  2023. "issues": "https://github.com/giggsey/libphonenumber-for-php/issues",
  2024. "source": "https://github.com/giggsey/libphonenumber-for-php"
  2025. },
  2026. "time": "2022-08-08T06:53:30+00:00"
  2027. },
  2028. {
  2029. "name": "giggsey/locale",
  2030. "version": "2.2",
  2031. "source": {
  2032. "type": "git",
  2033. "url": "https://github.com/giggsey/Locale.git",
  2034. "reference": "9c1dca769253f6a3e81f9a5c167f53b6a54ab635"
  2035. },
  2036. "dist": {
  2037. "type": "zip",
  2038. "url": "https://api.github.com/repos/giggsey/Locale/zipball/9c1dca769253f6a3e81f9a5c167f53b6a54ab635",
  2039. "reference": "9c1dca769253f6a3e81f9a5c167f53b6a54ab635",
  2040. "shasum": "",
  2041. "mirrors": [
  2042. {
  2043. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2044. "preferred": true
  2045. }
  2046. ]
  2047. },
  2048. "require": {
  2049. "php": ">=7.2"
  2050. },
  2051. "require-dev": {
  2052. "ext-json": "*",
  2053. "pear/pear-core-minimal": "^1.9",
  2054. "pear/pear_exception": "^1.0",
  2055. "pear/versioncontrol_git": "^0.5",
  2056. "phing/phing": "^2.7",
  2057. "php-coveralls/php-coveralls": "^2.0",
  2058. "phpunit/phpunit": "^8.5|^9.5",
  2059. "symfony/console": "^5.0",
  2060. "symfony/filesystem": "^5.0",
  2061. "symfony/finder": "^5.0",
  2062. "symfony/process": "^5.0"
  2063. },
  2064. "type": "library",
  2065. "autoload": {
  2066. "psr-4": {
  2067. "Giggsey\\Locale\\": "src/"
  2068. }
  2069. },
  2070. "notification-url": "https://packagist.org/downloads/",
  2071. "license": [
  2072. "MIT"
  2073. ],
  2074. "authors": [
  2075. {
  2076. "name": "Joshua Gigg",
  2077. "email": "giggsey@gmail.com",
  2078. "homepage": "https://giggsey.com/"
  2079. }
  2080. ],
  2081. "description": "Locale functions required by libphonenumber-for-php",
  2082. "support": {
  2083. "issues": "https://github.com/giggsey/Locale/issues",
  2084. "source": "https://github.com/giggsey/Locale/tree/2.2"
  2085. },
  2086. "time": "2022-04-06T07:33:59+00:00"
  2087. },
  2088. {
  2089. "name": "graham-campbell/result-type",
  2090. "version": "v1.0.4",
  2091. "source": {
  2092. "type": "git",
  2093. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  2094. "reference": "0690bde05318336c7221785f2a932467f98b64ca"
  2095. },
  2096. "dist": {
  2097. "type": "zip",
  2098. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/0690bde05318336c7221785f2a932467f98b64ca",
  2099. "reference": "0690bde05318336c7221785f2a932467f98b64ca",
  2100. "shasum": "",
  2101. "mirrors": [
  2102. {
  2103. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2104. "preferred": true
  2105. }
  2106. ]
  2107. },
  2108. "require": {
  2109. "php": "^7.0 || ^8.0",
  2110. "phpoption/phpoption": "^1.8"
  2111. },
  2112. "require-dev": {
  2113. "phpunit/phpunit": "^6.5.14 || ^7.5.20 || ^8.5.19 || ^9.5.8"
  2114. },
  2115. "type": "library",
  2116. "autoload": {
  2117. "psr-4": {
  2118. "GrahamCampbell\\ResultType\\": "src/"
  2119. }
  2120. },
  2121. "notification-url": "https://packagist.org/downloads/",
  2122. "license": [
  2123. "MIT"
  2124. ],
  2125. "authors": [
  2126. {
  2127. "name": "Graham Campbell",
  2128. "email": "hello@gjcampbell.co.uk",
  2129. "homepage": "https://github.com/GrahamCampbell"
  2130. }
  2131. ],
  2132. "description": "An Implementation Of The Result Type",
  2133. "keywords": [
  2134. "Graham Campbell",
  2135. "GrahamCampbell",
  2136. "Result Type",
  2137. "Result-Type",
  2138. "result"
  2139. ],
  2140. "support": {
  2141. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  2142. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.0.4"
  2143. },
  2144. "funding": [
  2145. {
  2146. "url": "https://github.com/GrahamCampbell",
  2147. "type": "github"
  2148. },
  2149. {
  2150. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  2151. "type": "tidelift"
  2152. }
  2153. ],
  2154. "time": "2021-11-21T21:41:47+00:00"
  2155. },
  2156. {
  2157. "name": "guzzlehttp/guzzle",
  2158. "version": "7.4.5",
  2159. "source": {
  2160. "type": "git",
  2161. "url": "https://github.com/guzzle/guzzle.git",
  2162. "reference": "1dd98b0564cb3f6bd16ce683cb755f94c10fbd82"
  2163. },
  2164. "dist": {
  2165. "type": "zip",
  2166. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/1dd98b0564cb3f6bd16ce683cb755f94c10fbd82",
  2167. "reference": "1dd98b0564cb3f6bd16ce683cb755f94c10fbd82",
  2168. "shasum": "",
  2169. "mirrors": [
  2170. {
  2171. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2172. "preferred": true
  2173. }
  2174. ]
  2175. },
  2176. "require": {
  2177. "ext-json": "*",
  2178. "guzzlehttp/promises": "^1.5",
  2179. "guzzlehttp/psr7": "^1.9 || ^2.4",
  2180. "php": "^7.2.5 || ^8.0",
  2181. "psr/http-client": "^1.0",
  2182. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  2183. },
  2184. "provide": {
  2185. "psr/http-client-implementation": "1.0"
  2186. },
  2187. "require-dev": {
  2188. "bamarni/composer-bin-plugin": "^1.4.1",
  2189. "ext-curl": "*",
  2190. "php-http/client-integration-tests": "^3.0",
  2191. "phpunit/phpunit": "^8.5.5 || ^9.3.5",
  2192. "psr/log": "^1.1 || ^2.0 || ^3.0"
  2193. },
  2194. "suggest": {
  2195. "ext-curl": "Required for CURL handler support",
  2196. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  2197. "psr/log": "Required for using the Log middleware"
  2198. },
  2199. "type": "library",
  2200. "extra": {
  2201. "branch-alias": {
  2202. "dev-master": "7.4-dev"
  2203. }
  2204. },
  2205. "autoload": {
  2206. "files": [
  2207. "src/functions_include.php"
  2208. ],
  2209. "psr-4": {
  2210. "GuzzleHttp\\": "src/"
  2211. }
  2212. },
  2213. "notification-url": "https://packagist.org/downloads/",
  2214. "license": [
  2215. "MIT"
  2216. ],
  2217. "authors": [
  2218. {
  2219. "name": "Graham Campbell",
  2220. "email": "hello@gjcampbell.co.uk",
  2221. "homepage": "https://github.com/GrahamCampbell"
  2222. },
  2223. {
  2224. "name": "Michael Dowling",
  2225. "email": "mtdowling@gmail.com",
  2226. "homepage": "https://github.com/mtdowling"
  2227. },
  2228. {
  2229. "name": "Jeremy Lindblom",
  2230. "email": "jeremeamia@gmail.com",
  2231. "homepage": "https://github.com/jeremeamia"
  2232. },
  2233. {
  2234. "name": "George Mponos",
  2235. "email": "gmponos@gmail.com",
  2236. "homepage": "https://github.com/gmponos"
  2237. },
  2238. {
  2239. "name": "Tobias Nyholm",
  2240. "email": "tobias.nyholm@gmail.com",
  2241. "homepage": "https://github.com/Nyholm"
  2242. },
  2243. {
  2244. "name": "Márk Sági-Kazár",
  2245. "email": "mark.sagikazar@gmail.com",
  2246. "homepage": "https://github.com/sagikazarmark"
  2247. },
  2248. {
  2249. "name": "Tobias Schultze",
  2250. "email": "webmaster@tubo-world.de",
  2251. "homepage": "https://github.com/Tobion"
  2252. }
  2253. ],
  2254. "description": "Guzzle is a PHP HTTP client library",
  2255. "keywords": [
  2256. "client",
  2257. "curl",
  2258. "framework",
  2259. "http",
  2260. "http client",
  2261. "psr-18",
  2262. "psr-7",
  2263. "rest",
  2264. "web service"
  2265. ],
  2266. "support": {
  2267. "issues": "https://github.com/guzzle/guzzle/issues",
  2268. "source": "https://github.com/guzzle/guzzle/tree/7.4.5"
  2269. },
  2270. "funding": [
  2271. {
  2272. "url": "https://github.com/GrahamCampbell",
  2273. "type": "github"
  2274. },
  2275. {
  2276. "url": "https://github.com/Nyholm",
  2277. "type": "github"
  2278. },
  2279. {
  2280. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  2281. "type": "tidelift"
  2282. }
  2283. ],
  2284. "time": "2022-06-20T22:16:13+00:00"
  2285. },
  2286. {
  2287. "name": "guzzlehttp/promises",
  2288. "version": "1.5.1",
  2289. "source": {
  2290. "type": "git",
  2291. "url": "https://github.com/guzzle/promises.git",
  2292. "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da"
  2293. },
  2294. "dist": {
  2295. "type": "zip",
  2296. "url": "https://api.github.com/repos/guzzle/promises/zipball/fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
  2297. "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
  2298. "shasum": "",
  2299. "mirrors": [
  2300. {
  2301. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2302. "preferred": true
  2303. }
  2304. ]
  2305. },
  2306. "require": {
  2307. "php": ">=5.5"
  2308. },
  2309. "require-dev": {
  2310. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  2311. },
  2312. "type": "library",
  2313. "extra": {
  2314. "branch-alias": {
  2315. "dev-master": "1.5-dev"
  2316. }
  2317. },
  2318. "autoload": {
  2319. "files": [
  2320. "src/functions_include.php"
  2321. ],
  2322. "psr-4": {
  2323. "GuzzleHttp\\Promise\\": "src/"
  2324. }
  2325. },
  2326. "notification-url": "https://packagist.org/downloads/",
  2327. "license": [
  2328. "MIT"
  2329. ],
  2330. "authors": [
  2331. {
  2332. "name": "Graham Campbell",
  2333. "email": "hello@gjcampbell.co.uk",
  2334. "homepage": "https://github.com/GrahamCampbell"
  2335. },
  2336. {
  2337. "name": "Michael Dowling",
  2338. "email": "mtdowling@gmail.com",
  2339. "homepage": "https://github.com/mtdowling"
  2340. },
  2341. {
  2342. "name": "Tobias Nyholm",
  2343. "email": "tobias.nyholm@gmail.com",
  2344. "homepage": "https://github.com/Nyholm"
  2345. },
  2346. {
  2347. "name": "Tobias Schultze",
  2348. "email": "webmaster@tubo-world.de",
  2349. "homepage": "https://github.com/Tobion"
  2350. }
  2351. ],
  2352. "description": "Guzzle promises library",
  2353. "keywords": [
  2354. "promise"
  2355. ],
  2356. "support": {
  2357. "issues": "https://github.com/guzzle/promises/issues",
  2358. "source": "https://github.com/guzzle/promises/tree/1.5.1"
  2359. },
  2360. "funding": [
  2361. {
  2362. "url": "https://github.com/GrahamCampbell",
  2363. "type": "github"
  2364. },
  2365. {
  2366. "url": "https://github.com/Nyholm",
  2367. "type": "github"
  2368. },
  2369. {
  2370. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  2371. "type": "tidelift"
  2372. }
  2373. ],
  2374. "time": "2021-10-22T20:56:57+00:00"
  2375. },
  2376. {
  2377. "name": "guzzlehttp/psr7",
  2378. "version": "2.4.0",
  2379. "source": {
  2380. "type": "git",
  2381. "url": "https://github.com/guzzle/psr7.git",
  2382. "reference": "13388f00956b1503577598873fffb5ae994b5737"
  2383. },
  2384. "dist": {
  2385. "type": "zip",
  2386. "url": "https://api.github.com/repos/guzzle/psr7/zipball/13388f00956b1503577598873fffb5ae994b5737",
  2387. "reference": "13388f00956b1503577598873fffb5ae994b5737",
  2388. "shasum": "",
  2389. "mirrors": [
  2390. {
  2391. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2392. "preferred": true
  2393. }
  2394. ]
  2395. },
  2396. "require": {
  2397. "php": "^7.2.5 || ^8.0",
  2398. "psr/http-factory": "^1.0",
  2399. "psr/http-message": "^1.0",
  2400. "ralouphie/getallheaders": "^3.0"
  2401. },
  2402. "provide": {
  2403. "psr/http-factory-implementation": "1.0",
  2404. "psr/http-message-implementation": "1.0"
  2405. },
  2406. "require-dev": {
  2407. "bamarni/composer-bin-plugin": "^1.4.1",
  2408. "http-interop/http-factory-tests": "^0.9",
  2409. "phpunit/phpunit": "^8.5.8 || ^9.3.10"
  2410. },
  2411. "suggest": {
  2412. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  2413. },
  2414. "type": "library",
  2415. "extra": {
  2416. "branch-alias": {
  2417. "dev-master": "2.4-dev"
  2418. }
  2419. },
  2420. "autoload": {
  2421. "psr-4": {
  2422. "GuzzleHttp\\Psr7\\": "src/"
  2423. }
  2424. },
  2425. "notification-url": "https://packagist.org/downloads/",
  2426. "license": [
  2427. "MIT"
  2428. ],
  2429. "authors": [
  2430. {
  2431. "name": "Graham Campbell",
  2432. "email": "hello@gjcampbell.co.uk",
  2433. "homepage": "https://github.com/GrahamCampbell"
  2434. },
  2435. {
  2436. "name": "Michael Dowling",
  2437. "email": "mtdowling@gmail.com",
  2438. "homepage": "https://github.com/mtdowling"
  2439. },
  2440. {
  2441. "name": "George Mponos",
  2442. "email": "gmponos@gmail.com",
  2443. "homepage": "https://github.com/gmponos"
  2444. },
  2445. {
  2446. "name": "Tobias Nyholm",
  2447. "email": "tobias.nyholm@gmail.com",
  2448. "homepage": "https://github.com/Nyholm"
  2449. },
  2450. {
  2451. "name": "Márk Sági-Kazár",
  2452. "email": "mark.sagikazar@gmail.com",
  2453. "homepage": "https://github.com/sagikazarmark"
  2454. },
  2455. {
  2456. "name": "Tobias Schultze",
  2457. "email": "webmaster@tubo-world.de",
  2458. "homepage": "https://github.com/Tobion"
  2459. },
  2460. {
  2461. "name": "Márk Sági-Kazár",
  2462. "email": "mark.sagikazar@gmail.com",
  2463. "homepage": "https://sagikazarmark.hu"
  2464. }
  2465. ],
  2466. "description": "PSR-7 message implementation that also provides common utility methods",
  2467. "keywords": [
  2468. "http",
  2469. "message",
  2470. "psr-7",
  2471. "request",
  2472. "response",
  2473. "stream",
  2474. "uri",
  2475. "url"
  2476. ],
  2477. "support": {
  2478. "issues": "https://github.com/guzzle/psr7/issues",
  2479. "source": "https://github.com/guzzle/psr7/tree/2.4.0"
  2480. },
  2481. "funding": [
  2482. {
  2483. "url": "https://github.com/GrahamCampbell",
  2484. "type": "github"
  2485. },
  2486. {
  2487. "url": "https://github.com/Nyholm",
  2488. "type": "github"
  2489. },
  2490. {
  2491. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  2492. "type": "tidelift"
  2493. }
  2494. ],
  2495. "time": "2022-06-20T21:43:11+00:00"
  2496. },
  2497. {
  2498. "name": "h4cc/wkhtmltopdf-amd64",
  2499. "version": "0.12.4",
  2500. "source": {
  2501. "type": "git",
  2502. "url": "https://github.com/h4cc/wkhtmltopdf-amd64.git",
  2503. "reference": "4e2ab2d032a5d7fbe2a741de8b10b8989523c95b"
  2504. },
  2505. "dist": {
  2506. "type": "zip",
  2507. "url": "https://api.github.com/repos/h4cc/wkhtmltopdf-amd64/zipball/4e2ab2d032a5d7fbe2a741de8b10b8989523c95b",
  2508. "reference": "4e2ab2d032a5d7fbe2a741de8b10b8989523c95b",
  2509. "shasum": "",
  2510. "mirrors": [
  2511. {
  2512. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2513. "preferred": true
  2514. }
  2515. ]
  2516. },
  2517. "bin": [
  2518. "bin/wkhtmltopdf-amd64"
  2519. ],
  2520. "type": "library",
  2521. "autoload": {
  2522. "psr-4": {
  2523. "h4cc\\WKHTMLToPDF\\": ""
  2524. }
  2525. },
  2526. "notification-url": "https://packagist.org/downloads/",
  2527. "license": [
  2528. "LGPL Version 3"
  2529. ],
  2530. "authors": [
  2531. {
  2532. "name": "Julius Beckmann",
  2533. "email": "github@h4cc.de"
  2534. }
  2535. ],
  2536. "description": "Convert html to pdf using webkit (qtwebkit). Static linked linux binary for amd64 systems.",
  2537. "homepage": "http://wkhtmltopdf.org/",
  2538. "keywords": [
  2539. "binary",
  2540. "convert",
  2541. "pdf",
  2542. "snapshot",
  2543. "thumbnail",
  2544. "wkhtmltopdf"
  2545. ],
  2546. "support": {
  2547. "issues": "https://github.com/h4cc/wkhtmltopdf-amd64/issues",
  2548. "source": "https://github.com/h4cc/wkhtmltopdf-amd64/tree/master"
  2549. },
  2550. "time": "2018-01-15T06:57:33+00:00"
  2551. },
  2552. {
  2553. "name": "h4cc/wkhtmltopdf-i386",
  2554. "version": "0.12.4",
  2555. "source": {
  2556. "type": "git",
  2557. "url": "https://github.com/h4cc/wkhtmltopdf-i386.git",
  2558. "reference": "da14486ec8eba1873b026b56126ed02d2f2ae5e3"
  2559. },
  2560. "dist": {
  2561. "type": "zip",
  2562. "url": "https://api.github.com/repos/h4cc/wkhtmltopdf-i386/zipball/da14486ec8eba1873b026b56126ed02d2f2ae5e3",
  2563. "reference": "da14486ec8eba1873b026b56126ed02d2f2ae5e3",
  2564. "shasum": "",
  2565. "mirrors": [
  2566. {
  2567. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2568. "preferred": true
  2569. }
  2570. ]
  2571. },
  2572. "bin": [
  2573. "bin/wkhtmltopdf-i386"
  2574. ],
  2575. "type": "library",
  2576. "notification-url": "https://packagist.org/downloads/",
  2577. "license": [
  2578. "LGPL Version 3"
  2579. ],
  2580. "authors": [
  2581. {
  2582. "name": "Julius Beckmann",
  2583. "email": "github@h4cc.de"
  2584. }
  2585. ],
  2586. "description": "Convert html to pdf using webkit (qtwebkit). Static linked linux binary for i386 systems.",
  2587. "homepage": "http://wkhtmltopdf.org/",
  2588. "keywords": [
  2589. "binary",
  2590. "convert",
  2591. "pdf",
  2592. "snapshot",
  2593. "thumbnail",
  2594. "wkhtmltopdf"
  2595. ],
  2596. "support": {
  2597. "issues": "https://github.com/h4cc/wkhtmltopdf-i386/issues",
  2598. "source": "https://github.com/h4cc/wkhtmltopdf-i386/tree/master"
  2599. },
  2600. "time": "2018-01-15T07:18:15+00:00"
  2601. },
  2602. {
  2603. "name": "iidestiny/flysystem-oss",
  2604. "version": "2.7",
  2605. "source": {
  2606. "type": "git",
  2607. "url": "https://github.com/iiDestiny/flysystem-oss.git",
  2608. "reference": "c943ce550e973129955275bb17e8182fe8a74020"
  2609. },
  2610. "dist": {
  2611. "type": "zip",
  2612. "url": "https://api.github.com/repos/iiDestiny/flysystem-oss/zipball/c943ce550e973129955275bb17e8182fe8a74020",
  2613. "reference": "c943ce550e973129955275bb17e8182fe8a74020",
  2614. "shasum": "",
  2615. "mirrors": [
  2616. {
  2617. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2618. "preferred": true
  2619. }
  2620. ]
  2621. },
  2622. "require": {
  2623. "aliyuncs/oss-sdk-php": "^2.4",
  2624. "ext-curl": "*",
  2625. "ext-json": "*",
  2626. "ext-openssl": "*",
  2627. "league/flysystem": "^1.0",
  2628. "nesbot/carbon": "^1.24.1 || ^2.0",
  2629. "php": "^7.0 || ^8.0"
  2630. },
  2631. "require-dev": {
  2632. "mockery/mockery": "^1.2",
  2633. "phpunit/phpunit": "^6.5",
  2634. "symfony/var-dumper": "^3.4"
  2635. },
  2636. "type": "library",
  2637. "autoload": {
  2638. "psr-4": {
  2639. "Iidestiny\\Flysystem\\Oss\\": "src"
  2640. }
  2641. },
  2642. "notification-url": "https://packagist.org/downloads/",
  2643. "license": [
  2644. "MIT"
  2645. ],
  2646. "authors": [
  2647. {
  2648. "name": "iidestiny",
  2649. "email": "iidestiny@vip.qq.com"
  2650. }
  2651. ],
  2652. "description": "Flysystem adapter for the Oss storage.",
  2653. "keywords": [
  2654. "alioss",
  2655. "laravel",
  2656. "oss",
  2657. "阿里oss"
  2658. ],
  2659. "support": {
  2660. "issues": "https://github.com/iiDestiny/flysystem-oss/issues",
  2661. "source": "https://github.com/iiDestiny/flysystem-oss/tree/2.7"
  2662. },
  2663. "time": "2021-06-14T10:18:58+00:00"
  2664. },
  2665. {
  2666. "name": "iidestiny/laravel-filesystem-oss",
  2667. "version": "2.1",
  2668. "source": {
  2669. "type": "git",
  2670. "url": "https://github.com/iiDestiny/laravel-filesystem-oss.git",
  2671. "reference": "ae3cd6fd3cd727eedda0e2bcd0403a6d79fe4223"
  2672. },
  2673. "dist": {
  2674. "type": "zip",
  2675. "url": "https://api.github.com/repos/iiDestiny/laravel-filesystem-oss/zipball/ae3cd6fd3cd727eedda0e2bcd0403a6d79fe4223",
  2676. "reference": "ae3cd6fd3cd727eedda0e2bcd0403a6d79fe4223",
  2677. "shasum": "",
  2678. "mirrors": [
  2679. {
  2680. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2681. "preferred": true
  2682. }
  2683. ]
  2684. },
  2685. "require": {
  2686. "iidestiny/flysystem-oss": "~2.0",
  2687. "php": "^7.0|^8.0"
  2688. },
  2689. "type": "library",
  2690. "extra": {
  2691. "laravel": {
  2692. "providers": [
  2693. "Iidestiny\\LaravelFilesystemOss\\OssStorageServiceProvider"
  2694. ]
  2695. }
  2696. },
  2697. "autoload": {
  2698. "psr-4": {
  2699. "Iidestiny\\LaravelFilesystemOss\\": "src"
  2700. }
  2701. },
  2702. "notification-url": "https://packagist.org/downloads/",
  2703. "license": [
  2704. "MIT"
  2705. ],
  2706. "authors": [
  2707. {
  2708. "name": "iidestiny",
  2709. "email": "iidestiny@vip.qq.com"
  2710. }
  2711. ],
  2712. "description": "Oss storage filesystem for Laravel.",
  2713. "support": {
  2714. "issues": "https://github.com/iiDestiny/laravel-filesystem-oss/issues",
  2715. "source": "https://github.com/iiDestiny/laravel-filesystem-oss/tree/2.1"
  2716. },
  2717. "time": "2020-11-30T06:17:22+00:00"
  2718. },
  2719. {
  2720. "name": "jormin/laravel-ddoc",
  2721. "version": "v1.1.5",
  2722. "source": {
  2723. "type": "git",
  2724. "url": "https://github.com/jormin/laravel-ddoc.git",
  2725. "reference": "d7608d3395f7fd1085a3ce7b82441d2360769c77"
  2726. },
  2727. "dist": {
  2728. "type": "zip",
  2729. "url": "https://api.github.com/repos/jormin/laravel-ddoc/zipball/d7608d3395f7fd1085a3ce7b82441d2360769c77",
  2730. "reference": "d7608d3395f7fd1085a3ce7b82441d2360769c77",
  2731. "shasum": "",
  2732. "mirrors": [
  2733. {
  2734. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2735. "preferred": true
  2736. }
  2737. ]
  2738. },
  2739. "require": {
  2740. "barryvdh/laravel-snappy": "^0.4.0",
  2741. "h4cc/wkhtmltopdf-amd64": "0.12.x",
  2742. "h4cc/wkhtmltopdf-i386": "0.12.x",
  2743. "php": ">=5.6",
  2744. "wemersonjanuario/wkhtmltopdf-windows": "0.12.x"
  2745. },
  2746. "require-dev": {
  2747. "phpunit/phpunit": "~4.0||~5.0",
  2748. "squizlabs/php_codesniffer": "^2.3"
  2749. },
  2750. "type": "library",
  2751. "extra": {
  2752. "branch-alias": {
  2753. "dev-master": "1.1.x-dev"
  2754. },
  2755. "laravel": {
  2756. "providers": [
  2757. "Jormin\\DDoc\\DDocServiceProvider"
  2758. ]
  2759. }
  2760. },
  2761. "autoload": {
  2762. "psr-4": {
  2763. "Jormin\\DDoc\\": "src"
  2764. }
  2765. },
  2766. "notification-url": "https://packagist.org/downloads/",
  2767. "license": [
  2768. "MIT"
  2769. ],
  2770. "authors": [
  2771. {
  2772. "name": "Jormin",
  2773. "email": "jorminxee@gmail.com",
  2774. "homepage": "https://blog.lerzen.com",
  2775. "role": "Developer"
  2776. }
  2777. ],
  2778. "description": "每次开发项目时,总是会被要求提供数据字典,每次手动写文档太累了,所以写了这个扩展,自动读取数据库信息并显示在网页上,支持导出Html和PDF文件。",
  2779. "homepage": "https://github.com/jormin/laravel-ddoc",
  2780. "keywords": [
  2781. "DDoc",
  2782. "Jormin",
  2783. "laravel"
  2784. ],
  2785. "support": {
  2786. "issues": "https://github.com/jormin/laravel-ddoc/issues",
  2787. "source": "https://github.com/jormin/laravel-ddoc/tree/v1.1.5"
  2788. },
  2789. "time": "2021-09-07T04:26:43+00:00"
  2790. },
  2791. {
  2792. "name": "jpush/jpush",
  2793. "version": "v3.6.8",
  2794. "source": {
  2795. "type": "git",
  2796. "url": "https://github.com/jpush/jpush-api-php-client.git",
  2797. "reference": "ebb191e8854a35c3fb7a6626028b3a23132cbe2c"
  2798. },
  2799. "dist": {
  2800. "type": "zip",
  2801. "url": "https://api.github.com/repos/jpush/jpush-api-php-client/zipball/ebb191e8854a35c3fb7a6626028b3a23132cbe2c",
  2802. "reference": "ebb191e8854a35c3fb7a6626028b3a23132cbe2c",
  2803. "shasum": "",
  2804. "mirrors": [
  2805. {
  2806. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2807. "preferred": true
  2808. }
  2809. ]
  2810. },
  2811. "require": {
  2812. "ext-curl": "*",
  2813. "php": ">=5.3.3"
  2814. },
  2815. "require-dev": {
  2816. "phpunit/phpunit": "*"
  2817. },
  2818. "type": "library",
  2819. "autoload": {
  2820. "psr-4": {
  2821. "JPush\\": "src/JPush/"
  2822. }
  2823. },
  2824. "notification-url": "https://packagist.org/downloads/",
  2825. "license": [
  2826. "MIT"
  2827. ],
  2828. "authors": [
  2829. {
  2830. "name": "JPush",
  2831. "email": "support@jpush.cn",
  2832. "homepage": "https://www.jpush.cn/",
  2833. "role": "Developer"
  2834. }
  2835. ],
  2836. "description": "JPush API PHP Client",
  2837. "homepage": "https://github.com/jpush/jpush-api-php-client",
  2838. "support": {
  2839. "issues": "https://github.com/jpush/jpush-api-php-client/issues",
  2840. "source": "https://github.com/jpush/jpush-api-php-client/tree/v3.6.8"
  2841. },
  2842. "time": "2021-08-12T07:43:39+00:00"
  2843. },
  2844. {
  2845. "name": "knplabs/knp-snappy",
  2846. "version": "v1.4.1",
  2847. "source": {
  2848. "type": "git",
  2849. "url": "https://github.com/KnpLabs/snappy.git",
  2850. "reference": "5126fb5b335ec929a226314d40cd8dad497c3d67"
  2851. },
  2852. "dist": {
  2853. "type": "zip",
  2854. "url": "https://api.github.com/repos/KnpLabs/snappy/zipball/5126fb5b335ec929a226314d40cd8dad497c3d67",
  2855. "reference": "5126fb5b335ec929a226314d40cd8dad497c3d67",
  2856. "shasum": "",
  2857. "mirrors": [
  2858. {
  2859. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2860. "preferred": true
  2861. }
  2862. ]
  2863. },
  2864. "require": {
  2865. "php": ">=7.1",
  2866. "psr/log": "^1.0||^2.0||^3.0",
  2867. "symfony/process": "~3.4||~4.3||~5.0||~6.0"
  2868. },
  2869. "require-dev": {
  2870. "friendsofphp/php-cs-fixer": "^2.16||^3.0",
  2871. "pedrotroller/php-cs-custom-fixer": "^2.19",
  2872. "phpstan/phpstan": "^0.12.7",
  2873. "phpstan/phpstan-phpunit": "^0.12.6",
  2874. "phpunit/phpunit": "~7.4||~8.5"
  2875. },
  2876. "suggest": {
  2877. "h4cc/wkhtmltoimage-amd64": "Provides wkhtmltoimage-amd64 binary for Linux-compatible machines, use version `~0.12` as dependency",
  2878. "h4cc/wkhtmltoimage-i386": "Provides wkhtmltoimage-i386 binary for Linux-compatible machines, use version `~0.12` as dependency",
  2879. "h4cc/wkhtmltopdf-amd64": "Provides wkhtmltopdf-amd64 binary for Linux-compatible machines, use version `~0.12` as dependency",
  2880. "h4cc/wkhtmltopdf-i386": "Provides wkhtmltopdf-i386 binary for Linux-compatible machines, use version `~0.12` as dependency",
  2881. "wemersonjanuario/wkhtmltopdf-windows": "Provides wkhtmltopdf executable for Windows, use version `~0.12` as dependency"
  2882. },
  2883. "type": "library",
  2884. "extra": {
  2885. "branch-alias": {
  2886. "dev-master": "1.x-dev"
  2887. }
  2888. },
  2889. "autoload": {
  2890. "psr-4": {
  2891. "Knp\\Snappy\\": "src/Knp/Snappy"
  2892. }
  2893. },
  2894. "notification-url": "https://packagist.org/downloads/",
  2895. "license": [
  2896. "MIT"
  2897. ],
  2898. "authors": [
  2899. {
  2900. "name": "KNP Labs Team",
  2901. "homepage": "http://knplabs.com"
  2902. },
  2903. {
  2904. "name": "Symfony Community",
  2905. "homepage": "http://github.com/KnpLabs/snappy/contributors"
  2906. }
  2907. ],
  2908. "description": "PHP library allowing thumbnail, snapshot or PDF generation from a url or a html page. Wrapper for wkhtmltopdf/wkhtmltoimage.",
  2909. "homepage": "http://github.com/KnpLabs/snappy",
  2910. "keywords": [
  2911. "knp",
  2912. "knplabs",
  2913. "pdf",
  2914. "snapshot",
  2915. "thumbnail",
  2916. "wkhtmltopdf"
  2917. ],
  2918. "support": {
  2919. "issues": "https://github.com/KnpLabs/snappy/issues",
  2920. "source": "https://github.com/KnpLabs/snappy/tree/v1.4.1"
  2921. },
  2922. "time": "2022-01-07T13:03:38+00:00"
  2923. },
  2924. {
  2925. "name": "laravel-lang/lang",
  2926. "version": "3.0.62",
  2927. "source": {
  2928. "type": "git",
  2929. "url": "https://github.com/Laravel-Lang/lang.git",
  2930. "reference": "fcb8cec051b175278e0a9efa440f0b1033d12dd7"
  2931. },
  2932. "dist": {
  2933. "type": "zip",
  2934. "url": "https://api.github.com/repos/Laravel-Lang/lang/zipball/fcb8cec051b175278e0a9efa440f0b1033d12dd7",
  2935. "reference": "fcb8cec051b175278e0a9efa440f0b1033d12dd7",
  2936. "shasum": "",
  2937. "mirrors": [
  2938. {
  2939. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2940. "preferred": true
  2941. }
  2942. ]
  2943. },
  2944. "require-dev": {
  2945. "friendsofphp/php-cs-fixer": "^2.10"
  2946. },
  2947. "suggest": {
  2948. "ablunier/laravel-lang-installer": "Command for easily add languages to a Laravel project",
  2949. "andrey-helldar/laravel-lang-publisher": "Easy installation and update of translation files for your project",
  2950. "arcanedev/laravel-lang": "Translations manager and checker for Laravel 5",
  2951. "overtrue/laravel-lang": "Command to add languages in your project"
  2952. },
  2953. "type": "library",
  2954. "notification-url": "https://packagist.org/downloads/",
  2955. "license": [
  2956. "MIT"
  2957. ],
  2958. "authors": [
  2959. {
  2960. "name": "caouecs",
  2961. "email": "caouecs@caouecs.net"
  2962. }
  2963. ],
  2964. "description": "Languages for Laravel",
  2965. "keywords": [
  2966. "lang",
  2967. "languages",
  2968. "laravel",
  2969. "lpm"
  2970. ],
  2971. "support": {
  2972. "issues": "https://github.com/Laravel-Lang/lang/issues",
  2973. "source": "https://github.com/Laravel-Lang/lang/tree/3.0.62"
  2974. },
  2975. "time": "2019-03-17T10:36:46+00:00"
  2976. },
  2977. {
  2978. "name": "laravel/framework",
  2979. "version": "v8.83.23",
  2980. "source": {
  2981. "type": "git",
  2982. "url": "https://github.com/laravel/framework.git",
  2983. "reference": "bdc707f8b9bcad289b24cd182d98ec7480ac4491"
  2984. },
  2985. "dist": {
  2986. "type": "zip",
  2987. "url": "https://api.github.com/repos/laravel/framework/zipball/bdc707f8b9bcad289b24cd182d98ec7480ac4491",
  2988. "reference": "bdc707f8b9bcad289b24cd182d98ec7480ac4491",
  2989. "shasum": "",
  2990. "mirrors": [
  2991. {
  2992. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2993. "preferred": true
  2994. }
  2995. ]
  2996. },
  2997. "require": {
  2998. "doctrine/inflector": "^1.4|^2.0",
  2999. "dragonmantank/cron-expression": "^3.0.2",
  3000. "egulias/email-validator": "^2.1.10",
  3001. "ext-json": "*",
  3002. "ext-mbstring": "*",
  3003. "ext-openssl": "*",
  3004. "laravel/serializable-closure": "^1.0",
  3005. "league/commonmark": "^1.3|^2.0.2",
  3006. "league/flysystem": "^1.1",
  3007. "monolog/monolog": "^2.0",
  3008. "nesbot/carbon": "^2.53.1",
  3009. "opis/closure": "^3.6",
  3010. "php": "^7.3|^8.0",
  3011. "psr/container": "^1.0",
  3012. "psr/log": "^1.0|^2.0",
  3013. "psr/simple-cache": "^1.0",
  3014. "ramsey/uuid": "^4.2.2",
  3015. "swiftmailer/swiftmailer": "^6.3",
  3016. "symfony/console": "^5.4",
  3017. "symfony/error-handler": "^5.4",
  3018. "symfony/finder": "^5.4",
  3019. "symfony/http-foundation": "^5.4",
  3020. "symfony/http-kernel": "^5.4",
  3021. "symfony/mime": "^5.4",
  3022. "symfony/process": "^5.4",
  3023. "symfony/routing": "^5.4",
  3024. "symfony/var-dumper": "^5.4",
  3025. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  3026. "vlucas/phpdotenv": "^5.4.1",
  3027. "voku/portable-ascii": "^1.6.1"
  3028. },
  3029. "conflict": {
  3030. "tightenco/collect": "<5.5.33"
  3031. },
  3032. "provide": {
  3033. "psr/container-implementation": "1.0",
  3034. "psr/simple-cache-implementation": "1.0"
  3035. },
  3036. "replace": {
  3037. "illuminate/auth": "self.version",
  3038. "illuminate/broadcasting": "self.version",
  3039. "illuminate/bus": "self.version",
  3040. "illuminate/cache": "self.version",
  3041. "illuminate/collections": "self.version",
  3042. "illuminate/config": "self.version",
  3043. "illuminate/console": "self.version",
  3044. "illuminate/container": "self.version",
  3045. "illuminate/contracts": "self.version",
  3046. "illuminate/cookie": "self.version",
  3047. "illuminate/database": "self.version",
  3048. "illuminate/encryption": "self.version",
  3049. "illuminate/events": "self.version",
  3050. "illuminate/filesystem": "self.version",
  3051. "illuminate/hashing": "self.version",
  3052. "illuminate/http": "self.version",
  3053. "illuminate/log": "self.version",
  3054. "illuminate/macroable": "self.version",
  3055. "illuminate/mail": "self.version",
  3056. "illuminate/notifications": "self.version",
  3057. "illuminate/pagination": "self.version",
  3058. "illuminate/pipeline": "self.version",
  3059. "illuminate/queue": "self.version",
  3060. "illuminate/redis": "self.version",
  3061. "illuminate/routing": "self.version",
  3062. "illuminate/session": "self.version",
  3063. "illuminate/support": "self.version",
  3064. "illuminate/testing": "self.version",
  3065. "illuminate/translation": "self.version",
  3066. "illuminate/validation": "self.version",
  3067. "illuminate/view": "self.version"
  3068. },
  3069. "require-dev": {
  3070. "aws/aws-sdk-php": "^3.198.1",
  3071. "doctrine/dbal": "^2.13.3|^3.1.4",
  3072. "filp/whoops": "^2.14.3",
  3073. "guzzlehttp/guzzle": "^6.5.5|^7.0.1",
  3074. "league/flysystem-cached-adapter": "^1.0",
  3075. "mockery/mockery": "^1.4.4",
  3076. "orchestra/testbench-core": "^6.27",
  3077. "pda/pheanstalk": "^4.0",
  3078. "phpunit/phpunit": "^8.5.19|^9.5.8",
  3079. "predis/predis": "^1.1.9",
  3080. "symfony/cache": "^5.4"
  3081. },
  3082. "suggest": {
  3083. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  3084. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.198.1).",
  3085. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  3086. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).",
  3087. "ext-bcmath": "Required to use the multiple_of validation rule.",
  3088. "ext-ftp": "Required to use the Flysystem FTP driver.",
  3089. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  3090. "ext-memcached": "Required to use the memcache cache driver.",
  3091. "ext-pcntl": "Required to use all features of the queue worker.",
  3092. "ext-posix": "Required to use all features of the queue worker.",
  3093. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  3094. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  3095. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  3096. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.5.5|^7.0.1).",
  3097. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  3098. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  3099. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  3100. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  3101. "mockery/mockery": "Required to use mocking (^1.4.4).",
  3102. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  3103. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  3104. "phpunit/phpunit": "Required to use assertions and run tests (^8.5.19|^9.5.8).",
  3105. "predis/predis": "Required to use the predis connector (^1.1.9).",
  3106. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  3107. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0|^5.0|^6.0|^7.0).",
  3108. "symfony/cache": "Required to PSR-6 cache bridge (^5.4).",
  3109. "symfony/filesystem": "Required to enable support for relative symbolic links (^5.4).",
  3110. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  3111. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  3112. },
  3113. "type": "library",
  3114. "extra": {
  3115. "branch-alias": {
  3116. "dev-master": "8.x-dev"
  3117. }
  3118. },
  3119. "autoload": {
  3120. "files": [
  3121. "src/Illuminate/Collections/helpers.php",
  3122. "src/Illuminate/Events/functions.php",
  3123. "src/Illuminate/Foundation/helpers.php",
  3124. "src/Illuminate/Support/helpers.php"
  3125. ],
  3126. "psr-4": {
  3127. "Illuminate\\": "src/Illuminate/",
  3128. "Illuminate\\Support\\": [
  3129. "src/Illuminate/Macroable/",
  3130. "src/Illuminate/Collections/"
  3131. ]
  3132. }
  3133. },
  3134. "notification-url": "https://packagist.org/downloads/",
  3135. "license": [
  3136. "MIT"
  3137. ],
  3138. "authors": [
  3139. {
  3140. "name": "Taylor Otwell",
  3141. "email": "taylor@laravel.com"
  3142. }
  3143. ],
  3144. "description": "The Laravel Framework.",
  3145. "homepage": "https://laravel.com",
  3146. "keywords": [
  3147. "framework",
  3148. "laravel"
  3149. ],
  3150. "support": {
  3151. "issues": "https://github.com/laravel/framework/issues",
  3152. "source": "https://github.com/laravel/framework"
  3153. },
  3154. "time": "2022-07-26T13:30:00+00:00"
  3155. },
  3156. {
  3157. "name": "laravel/sanctum",
  3158. "version": "v2.15.1",
  3159. "source": {
  3160. "type": "git",
  3161. "url": "https://github.com/laravel/sanctum.git",
  3162. "reference": "31fbe6f85aee080c4dc2f9b03dc6dd5d0ee72473"
  3163. },
  3164. "dist": {
  3165. "type": "zip",
  3166. "url": "https://api.github.com/repos/laravel/sanctum/zipball/31fbe6f85aee080c4dc2f9b03dc6dd5d0ee72473",
  3167. "reference": "31fbe6f85aee080c4dc2f9b03dc6dd5d0ee72473",
  3168. "shasum": "",
  3169. "mirrors": [
  3170. {
  3171. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3172. "preferred": true
  3173. }
  3174. ]
  3175. },
  3176. "require": {
  3177. "ext-json": "*",
  3178. "illuminate/console": "^6.9|^7.0|^8.0|^9.0",
  3179. "illuminate/contracts": "^6.9|^7.0|^8.0|^9.0",
  3180. "illuminate/database": "^6.9|^7.0|^8.0|^9.0",
  3181. "illuminate/support": "^6.9|^7.0|^8.0|^9.0",
  3182. "php": "^7.2|^8.0"
  3183. },
  3184. "require-dev": {
  3185. "mockery/mockery": "^1.0",
  3186. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0",
  3187. "phpunit/phpunit": "^8.0|^9.3"
  3188. },
  3189. "type": "library",
  3190. "extra": {
  3191. "branch-alias": {
  3192. "dev-master": "2.x-dev"
  3193. },
  3194. "laravel": {
  3195. "providers": [
  3196. "Laravel\\Sanctum\\SanctumServiceProvider"
  3197. ]
  3198. }
  3199. },
  3200. "autoload": {
  3201. "psr-4": {
  3202. "Laravel\\Sanctum\\": "src/"
  3203. }
  3204. },
  3205. "notification-url": "https://packagist.org/downloads/",
  3206. "license": [
  3207. "MIT"
  3208. ],
  3209. "authors": [
  3210. {
  3211. "name": "Taylor Otwell",
  3212. "email": "taylor@laravel.com"
  3213. }
  3214. ],
  3215. "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.",
  3216. "keywords": [
  3217. "auth",
  3218. "laravel",
  3219. "sanctum"
  3220. ],
  3221. "support": {
  3222. "issues": "https://github.com/laravel/sanctum/issues",
  3223. "source": "https://github.com/laravel/sanctum"
  3224. },
  3225. "time": "2022-04-08T13:39:49+00:00"
  3226. },
  3227. {
  3228. "name": "laravel/serializable-closure",
  3229. "version": "v1.2.0",
  3230. "source": {
  3231. "type": "git",
  3232. "url": "https://github.com/laravel/serializable-closure.git",
  3233. "reference": "09f0e9fb61829f628205b7c94906c28740ff9540"
  3234. },
  3235. "dist": {
  3236. "type": "zip",
  3237. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/09f0e9fb61829f628205b7c94906c28740ff9540",
  3238. "reference": "09f0e9fb61829f628205b7c94906c28740ff9540",
  3239. "shasum": "",
  3240. "mirrors": [
  3241. {
  3242. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3243. "preferred": true
  3244. }
  3245. ]
  3246. },
  3247. "require": {
  3248. "php": "^7.3|^8.0"
  3249. },
  3250. "require-dev": {
  3251. "pestphp/pest": "^1.18",
  3252. "phpstan/phpstan": "^0.12.98",
  3253. "symfony/var-dumper": "^5.3"
  3254. },
  3255. "type": "library",
  3256. "extra": {
  3257. "branch-alias": {
  3258. "dev-master": "1.x-dev"
  3259. }
  3260. },
  3261. "autoload": {
  3262. "psr-4": {
  3263. "Laravel\\SerializableClosure\\": "src/"
  3264. }
  3265. },
  3266. "notification-url": "https://packagist.org/downloads/",
  3267. "license": [
  3268. "MIT"
  3269. ],
  3270. "authors": [
  3271. {
  3272. "name": "Taylor Otwell",
  3273. "email": "taylor@laravel.com"
  3274. },
  3275. {
  3276. "name": "Nuno Maduro",
  3277. "email": "nuno@laravel.com"
  3278. }
  3279. ],
  3280. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  3281. "keywords": [
  3282. "closure",
  3283. "laravel",
  3284. "serializable"
  3285. ],
  3286. "support": {
  3287. "issues": "https://github.com/laravel/serializable-closure/issues",
  3288. "source": "https://github.com/laravel/serializable-closure"
  3289. },
  3290. "time": "2022-05-16T17:09:47+00:00"
  3291. },
  3292. {
  3293. "name": "laravel/socialite",
  3294. "version": "v5.5.4",
  3295. "source": {
  3296. "type": "git",
  3297. "url": "https://github.com/laravel/socialite.git",
  3298. "reference": "3eec261bf83690dd85812587457f093e3156dca6"
  3299. },
  3300. "dist": {
  3301. "type": "zip",
  3302. "url": "https://api.github.com/repos/laravel/socialite/zipball/3eec261bf83690dd85812587457f093e3156dca6",
  3303. "reference": "3eec261bf83690dd85812587457f093e3156dca6",
  3304. "shasum": "",
  3305. "mirrors": [
  3306. {
  3307. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3308. "preferred": true
  3309. }
  3310. ]
  3311. },
  3312. "require": {
  3313. "ext-json": "*",
  3314. "guzzlehttp/guzzle": "^6.0|^7.0",
  3315. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0",
  3316. "illuminate/http": "^6.0|^7.0|^8.0|^9.0",
  3317. "illuminate/support": "^6.0|^7.0|^8.0|^9.0",
  3318. "league/oauth1-client": "^1.10.1",
  3319. "php": "^7.2|^8.0"
  3320. },
  3321. "require-dev": {
  3322. "mockery/mockery": "^1.0",
  3323. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0",
  3324. "phpunit/phpunit": "^8.0|^9.3"
  3325. },
  3326. "type": "library",
  3327. "extra": {
  3328. "branch-alias": {
  3329. "dev-master": "5.x-dev"
  3330. },
  3331. "laravel": {
  3332. "providers": [
  3333. "Laravel\\Socialite\\SocialiteServiceProvider"
  3334. ],
  3335. "aliases": {
  3336. "Socialite": "Laravel\\Socialite\\Facades\\Socialite"
  3337. }
  3338. }
  3339. },
  3340. "autoload": {
  3341. "psr-4": {
  3342. "Laravel\\Socialite\\": "src/"
  3343. }
  3344. },
  3345. "notification-url": "https://packagist.org/downloads/",
  3346. "license": [
  3347. "MIT"
  3348. ],
  3349. "authors": [
  3350. {
  3351. "name": "Taylor Otwell",
  3352. "email": "taylor@laravel.com"
  3353. }
  3354. ],
  3355. "description": "Laravel wrapper around OAuth 1 & OAuth 2 libraries.",
  3356. "homepage": "https://laravel.com",
  3357. "keywords": [
  3358. "laravel",
  3359. "oauth"
  3360. ],
  3361. "support": {
  3362. "issues": "https://github.com/laravel/socialite/issues",
  3363. "source": "https://github.com/laravel/socialite"
  3364. },
  3365. "time": "2022-08-08T13:27:06+00:00"
  3366. },
  3367. {
  3368. "name": "laravel/tinker",
  3369. "version": "v2.7.2",
  3370. "source": {
  3371. "type": "git",
  3372. "url": "https://github.com/laravel/tinker.git",
  3373. "reference": "dff39b661e827dae6e092412f976658df82dbac5"
  3374. },
  3375. "dist": {
  3376. "type": "zip",
  3377. "url": "https://api.github.com/repos/laravel/tinker/zipball/dff39b661e827dae6e092412f976658df82dbac5",
  3378. "reference": "dff39b661e827dae6e092412f976658df82dbac5",
  3379. "shasum": "",
  3380. "mirrors": [
  3381. {
  3382. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3383. "preferred": true
  3384. }
  3385. ]
  3386. },
  3387. "require": {
  3388. "illuminate/console": "^6.0|^7.0|^8.0|^9.0",
  3389. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0",
  3390. "illuminate/support": "^6.0|^7.0|^8.0|^9.0",
  3391. "php": "^7.2.5|^8.0",
  3392. "psy/psysh": "^0.10.4|^0.11.1",
  3393. "symfony/var-dumper": "^4.3.4|^5.0|^6.0"
  3394. },
  3395. "require-dev": {
  3396. "mockery/mockery": "~1.3.3|^1.4.2",
  3397. "phpunit/phpunit": "^8.5.8|^9.3.3"
  3398. },
  3399. "suggest": {
  3400. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0)."
  3401. },
  3402. "type": "library",
  3403. "extra": {
  3404. "branch-alias": {
  3405. "dev-master": "2.x-dev"
  3406. },
  3407. "laravel": {
  3408. "providers": [
  3409. "Laravel\\Tinker\\TinkerServiceProvider"
  3410. ]
  3411. }
  3412. },
  3413. "autoload": {
  3414. "psr-4": {
  3415. "Laravel\\Tinker\\": "src/"
  3416. }
  3417. },
  3418. "notification-url": "https://packagist.org/downloads/",
  3419. "license": [
  3420. "MIT"
  3421. ],
  3422. "authors": [
  3423. {
  3424. "name": "Taylor Otwell",
  3425. "email": "taylor@laravel.com"
  3426. }
  3427. ],
  3428. "description": "Powerful REPL for the Laravel framework.",
  3429. "keywords": [
  3430. "REPL",
  3431. "Tinker",
  3432. "laravel",
  3433. "psysh"
  3434. ],
  3435. "support": {
  3436. "issues": "https://github.com/laravel/tinker/issues",
  3437. "source": "https://github.com/laravel/tinker/tree/v2.7.2"
  3438. },
  3439. "time": "2022-03-23T12:38:24+00:00"
  3440. },
  3441. {
  3442. "name": "lcobucci/clock",
  3443. "version": "2.2.0",
  3444. "source": {
  3445. "type": "git",
  3446. "url": "https://github.com/lcobucci/clock.git",
  3447. "reference": "fb533e093fd61321bfcbac08b131ce805fe183d3"
  3448. },
  3449. "dist": {
  3450. "type": "zip",
  3451. "url": "https://api.github.com/repos/lcobucci/clock/zipball/fb533e093fd61321bfcbac08b131ce805fe183d3",
  3452. "reference": "fb533e093fd61321bfcbac08b131ce805fe183d3",
  3453. "shasum": "",
  3454. "mirrors": [
  3455. {
  3456. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3457. "preferred": true
  3458. }
  3459. ]
  3460. },
  3461. "require": {
  3462. "php": "^8.0",
  3463. "stella-maris/clock": "^0.1.4"
  3464. },
  3465. "require-dev": {
  3466. "infection/infection": "^0.26",
  3467. "lcobucci/coding-standard": "^8.0",
  3468. "phpstan/extension-installer": "^1.1",
  3469. "phpstan/phpstan": "^0.12",
  3470. "phpstan/phpstan-deprecation-rules": "^0.12",
  3471. "phpstan/phpstan-phpunit": "^0.12",
  3472. "phpstan/phpstan-strict-rules": "^0.12",
  3473. "phpunit/phpunit": "^9.5"
  3474. },
  3475. "type": "library",
  3476. "autoload": {
  3477. "psr-4": {
  3478. "Lcobucci\\Clock\\": "src"
  3479. }
  3480. },
  3481. "notification-url": "https://packagist.org/downloads/",
  3482. "license": [
  3483. "MIT"
  3484. ],
  3485. "authors": [
  3486. {
  3487. "name": "Luís Cobucci",
  3488. "email": "lcobucci@gmail.com"
  3489. }
  3490. ],
  3491. "description": "Yet another clock abstraction",
  3492. "support": {
  3493. "issues": "https://github.com/lcobucci/clock/issues",
  3494. "source": "https://github.com/lcobucci/clock/tree/2.2.0"
  3495. },
  3496. "funding": [
  3497. {
  3498. "url": "https://github.com/lcobucci",
  3499. "type": "github"
  3500. },
  3501. {
  3502. "url": "https://www.patreon.com/lcobucci",
  3503. "type": "patreon"
  3504. }
  3505. ],
  3506. "time": "2022-04-19T19:34:17+00:00"
  3507. },
  3508. {
  3509. "name": "lcobucci/jwt",
  3510. "version": "4.2.1",
  3511. "source": {
  3512. "type": "git",
  3513. "url": "https://github.com/lcobucci/jwt.git",
  3514. "reference": "72ac6d807ee51a70ad376ee03a2387e8646e10f3"
  3515. },
  3516. "dist": {
  3517. "type": "zip",
  3518. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/72ac6d807ee51a70ad376ee03a2387e8646e10f3",
  3519. "reference": "72ac6d807ee51a70ad376ee03a2387e8646e10f3",
  3520. "shasum": "",
  3521. "mirrors": [
  3522. {
  3523. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3524. "preferred": true
  3525. }
  3526. ]
  3527. },
  3528. "require": {
  3529. "ext-hash": "*",
  3530. "ext-json": "*",
  3531. "ext-mbstring": "*",
  3532. "ext-openssl": "*",
  3533. "ext-sodium": "*",
  3534. "lcobucci/clock": "^2.0",
  3535. "php": "^7.4 || ^8.0"
  3536. },
  3537. "require-dev": {
  3538. "infection/infection": "^0.21",
  3539. "lcobucci/coding-standard": "^6.0",
  3540. "mikey179/vfsstream": "^1.6.7",
  3541. "phpbench/phpbench": "^1.2",
  3542. "phpstan/extension-installer": "^1.0",
  3543. "phpstan/phpstan": "^1.4",
  3544. "phpstan/phpstan-deprecation-rules": "^1.0",
  3545. "phpstan/phpstan-phpunit": "^1.0",
  3546. "phpstan/phpstan-strict-rules": "^1.0",
  3547. "phpunit/php-invoker": "^3.1",
  3548. "phpunit/phpunit": "^9.5"
  3549. },
  3550. "type": "library",
  3551. "autoload": {
  3552. "psr-4": {
  3553. "Lcobucci\\JWT\\": "src"
  3554. }
  3555. },
  3556. "notification-url": "https://packagist.org/downloads/",
  3557. "license": [
  3558. "BSD-3-Clause"
  3559. ],
  3560. "authors": [
  3561. {
  3562. "name": "Luís Cobucci",
  3563. "email": "lcobucci@gmail.com",
  3564. "role": "Developer"
  3565. }
  3566. ],
  3567. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  3568. "keywords": [
  3569. "JWS",
  3570. "jwt"
  3571. ],
  3572. "support": {
  3573. "issues": "https://github.com/lcobucci/jwt/issues",
  3574. "source": "https://github.com/lcobucci/jwt/tree/4.2.1"
  3575. },
  3576. "funding": [
  3577. {
  3578. "url": "https://github.com/lcobucci",
  3579. "type": "github"
  3580. },
  3581. {
  3582. "url": "https://www.patreon.com/lcobucci",
  3583. "type": "patreon"
  3584. }
  3585. ],
  3586. "time": "2022-08-19T23:14:07+00:00"
  3587. },
  3588. {
  3589. "name": "league/commonmark",
  3590. "version": "2.3.4",
  3591. "source": {
  3592. "type": "git",
  3593. "url": "https://github.com/thephpleague/commonmark.git",
  3594. "reference": "155ec1c95626b16fda0889cf15904d24890a60d5"
  3595. },
  3596. "dist": {
  3597. "type": "zip",
  3598. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/155ec1c95626b16fda0889cf15904d24890a60d5",
  3599. "reference": "155ec1c95626b16fda0889cf15904d24890a60d5",
  3600. "shasum": "",
  3601. "mirrors": [
  3602. {
  3603. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3604. "preferred": true
  3605. }
  3606. ]
  3607. },
  3608. "require": {
  3609. "ext-mbstring": "*",
  3610. "league/config": "^1.1.1",
  3611. "php": "^7.4 || ^8.0",
  3612. "psr/event-dispatcher": "^1.0",
  3613. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  3614. "symfony/polyfill-php80": "^1.16"
  3615. },
  3616. "require-dev": {
  3617. "cebe/markdown": "^1.0",
  3618. "commonmark/cmark": "0.30.0",
  3619. "commonmark/commonmark.js": "0.30.0",
  3620. "composer/package-versions-deprecated": "^1.8",
  3621. "embed/embed": "^4.4",
  3622. "erusev/parsedown": "^1.0",
  3623. "ext-json": "*",
  3624. "github/gfm": "0.29.0",
  3625. "michelf/php-markdown": "^1.4",
  3626. "nyholm/psr7": "^1.5",
  3627. "phpstan/phpstan": "^0.12.88 || ^1.0.0",
  3628. "phpunit/phpunit": "^9.5.5",
  3629. "scrutinizer/ocular": "^1.8.1",
  3630. "symfony/finder": "^5.3",
  3631. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0",
  3632. "unleashedtech/php-coding-standard": "^3.1",
  3633. "vimeo/psalm": "^4.7.3"
  3634. },
  3635. "suggest": {
  3636. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  3637. },
  3638. "type": "library",
  3639. "extra": {
  3640. "branch-alias": {
  3641. "dev-main": "2.4-dev"
  3642. }
  3643. },
  3644. "autoload": {
  3645. "psr-4": {
  3646. "League\\CommonMark\\": "src"
  3647. }
  3648. },
  3649. "notification-url": "https://packagist.org/downloads/",
  3650. "license": [
  3651. "BSD-3-Clause"
  3652. ],
  3653. "authors": [
  3654. {
  3655. "name": "Colin O'Dell",
  3656. "email": "colinodell@gmail.com",
  3657. "homepage": "https://www.colinodell.com",
  3658. "role": "Lead Developer"
  3659. }
  3660. ],
  3661. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  3662. "homepage": "https://commonmark.thephpleague.com",
  3663. "keywords": [
  3664. "commonmark",
  3665. "flavored",
  3666. "gfm",
  3667. "github",
  3668. "github-flavored",
  3669. "markdown",
  3670. "md",
  3671. "parser"
  3672. ],
  3673. "support": {
  3674. "docs": "https://commonmark.thephpleague.com/",
  3675. "forum": "https://github.com/thephpleague/commonmark/discussions",
  3676. "issues": "https://github.com/thephpleague/commonmark/issues",
  3677. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  3678. "source": "https://github.com/thephpleague/commonmark"
  3679. },
  3680. "funding": [
  3681. {
  3682. "url": "https://www.colinodell.com/sponsor",
  3683. "type": "custom"
  3684. },
  3685. {
  3686. "url": "https://www.paypal.me/colinpodell/10.00",
  3687. "type": "custom"
  3688. },
  3689. {
  3690. "url": "https://github.com/colinodell",
  3691. "type": "github"
  3692. },
  3693. {
  3694. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  3695. "type": "tidelift"
  3696. }
  3697. ],
  3698. "time": "2022-07-17T16:25:47+00:00"
  3699. },
  3700. {
  3701. "name": "league/config",
  3702. "version": "v1.1.1",
  3703. "source": {
  3704. "type": "git",
  3705. "url": "https://github.com/thephpleague/config.git",
  3706. "reference": "a9d39eeeb6cc49d10a6e6c36f22c4c1f4a767f3e"
  3707. },
  3708. "dist": {
  3709. "type": "zip",
  3710. "url": "https://api.github.com/repos/thephpleague/config/zipball/a9d39eeeb6cc49d10a6e6c36f22c4c1f4a767f3e",
  3711. "reference": "a9d39eeeb6cc49d10a6e6c36f22c4c1f4a767f3e",
  3712. "shasum": "",
  3713. "mirrors": [
  3714. {
  3715. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3716. "preferred": true
  3717. }
  3718. ]
  3719. },
  3720. "require": {
  3721. "dflydev/dot-access-data": "^3.0.1",
  3722. "nette/schema": "^1.2",
  3723. "php": "^7.4 || ^8.0"
  3724. },
  3725. "require-dev": {
  3726. "phpstan/phpstan": "^0.12.90",
  3727. "phpunit/phpunit": "^9.5.5",
  3728. "scrutinizer/ocular": "^1.8.1",
  3729. "unleashedtech/php-coding-standard": "^3.1",
  3730. "vimeo/psalm": "^4.7.3"
  3731. },
  3732. "type": "library",
  3733. "extra": {
  3734. "branch-alias": {
  3735. "dev-main": "1.2-dev"
  3736. }
  3737. },
  3738. "autoload": {
  3739. "psr-4": {
  3740. "League\\Config\\": "src"
  3741. }
  3742. },
  3743. "notification-url": "https://packagist.org/downloads/",
  3744. "license": [
  3745. "BSD-3-Clause"
  3746. ],
  3747. "authors": [
  3748. {
  3749. "name": "Colin O'Dell",
  3750. "email": "colinodell@gmail.com",
  3751. "homepage": "https://www.colinodell.com",
  3752. "role": "Lead Developer"
  3753. }
  3754. ],
  3755. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  3756. "homepage": "https://config.thephpleague.com",
  3757. "keywords": [
  3758. "array",
  3759. "config",
  3760. "configuration",
  3761. "dot",
  3762. "dot-access",
  3763. "nested",
  3764. "schema"
  3765. ],
  3766. "support": {
  3767. "docs": "https://config.thephpleague.com/",
  3768. "issues": "https://github.com/thephpleague/config/issues",
  3769. "rss": "https://github.com/thephpleague/config/releases.atom",
  3770. "source": "https://github.com/thephpleague/config"
  3771. },
  3772. "funding": [
  3773. {
  3774. "url": "https://www.colinodell.com/sponsor",
  3775. "type": "custom"
  3776. },
  3777. {
  3778. "url": "https://www.paypal.me/colinpodell/10.00",
  3779. "type": "custom"
  3780. },
  3781. {
  3782. "url": "https://github.com/colinodell",
  3783. "type": "github"
  3784. }
  3785. ],
  3786. "time": "2021-08-14T12:15:32+00:00"
  3787. },
  3788. {
  3789. "name": "league/flysystem",
  3790. "version": "1.1.9",
  3791. "source": {
  3792. "type": "git",
  3793. "url": "https://github.com/thephpleague/flysystem.git",
  3794. "reference": "094defdb4a7001845300334e7c1ee2335925ef99"
  3795. },
  3796. "dist": {
  3797. "type": "zip",
  3798. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/094defdb4a7001845300334e7c1ee2335925ef99",
  3799. "reference": "094defdb4a7001845300334e7c1ee2335925ef99",
  3800. "shasum": "",
  3801. "mirrors": [
  3802. {
  3803. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3804. "preferred": true
  3805. }
  3806. ]
  3807. },
  3808. "require": {
  3809. "ext-fileinfo": "*",
  3810. "league/mime-type-detection": "^1.3",
  3811. "php": "^7.2.5 || ^8.0"
  3812. },
  3813. "conflict": {
  3814. "league/flysystem-sftp": "<1.0.6"
  3815. },
  3816. "require-dev": {
  3817. "phpspec/prophecy": "^1.11.1",
  3818. "phpunit/phpunit": "^8.5.8"
  3819. },
  3820. "suggest": {
  3821. "ext-ftp": "Allows you to use FTP server storage",
  3822. "ext-openssl": "Allows you to use FTPS server storage",
  3823. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  3824. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  3825. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  3826. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  3827. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  3828. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  3829. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  3830. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  3831. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  3832. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  3833. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  3834. },
  3835. "type": "library",
  3836. "extra": {
  3837. "branch-alias": {
  3838. "dev-master": "1.1-dev"
  3839. }
  3840. },
  3841. "autoload": {
  3842. "psr-4": {
  3843. "League\\Flysystem\\": "src/"
  3844. }
  3845. },
  3846. "notification-url": "https://packagist.org/downloads/",
  3847. "license": [
  3848. "MIT"
  3849. ],
  3850. "authors": [
  3851. {
  3852. "name": "Frank de Jonge",
  3853. "email": "info@frenky.net"
  3854. }
  3855. ],
  3856. "description": "Filesystem abstraction: Many filesystems, one API.",
  3857. "keywords": [
  3858. "Cloud Files",
  3859. "WebDAV",
  3860. "abstraction",
  3861. "aws",
  3862. "cloud",
  3863. "copy.com",
  3864. "dropbox",
  3865. "file systems",
  3866. "files",
  3867. "filesystem",
  3868. "filesystems",
  3869. "ftp",
  3870. "rackspace",
  3871. "remote",
  3872. "s3",
  3873. "sftp",
  3874. "storage"
  3875. ],
  3876. "support": {
  3877. "issues": "https://github.com/thephpleague/flysystem/issues",
  3878. "source": "https://github.com/thephpleague/flysystem/tree/1.1.9"
  3879. },
  3880. "funding": [
  3881. {
  3882. "url": "https://offset.earth/frankdejonge",
  3883. "type": "other"
  3884. }
  3885. ],
  3886. "time": "2021-12-09T09:40:50+00:00"
  3887. },
  3888. {
  3889. "name": "league/fractal",
  3890. "version": "0.19.2",
  3891. "source": {
  3892. "type": "git",
  3893. "url": "https://github.com/thephpleague/fractal.git",
  3894. "reference": "06dc15f6ba38f2dde2f919d3095d13b571190a7c"
  3895. },
  3896. "dist": {
  3897. "type": "zip",
  3898. "url": "https://api.github.com/repos/thephpleague/fractal/zipball/06dc15f6ba38f2dde2f919d3095d13b571190a7c",
  3899. "reference": "06dc15f6ba38f2dde2f919d3095d13b571190a7c",
  3900. "shasum": "",
  3901. "mirrors": [
  3902. {
  3903. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3904. "preferred": true
  3905. }
  3906. ]
  3907. },
  3908. "require": {
  3909. "php": ">=5.4"
  3910. },
  3911. "require-dev": {
  3912. "doctrine/orm": "^2.5",
  3913. "illuminate/contracts": "~5.0",
  3914. "mockery/mockery": "~0.9",
  3915. "pagerfanta/pagerfanta": "~1.0.0",
  3916. "phpunit/phpunit": "^4.8.35 || ^7.5",
  3917. "squizlabs/php_codesniffer": "~1.5|~2.0|~3.4",
  3918. "zendframework/zend-paginator": "~2.3"
  3919. },
  3920. "suggest": {
  3921. "illuminate/pagination": "The Illuminate Pagination component.",
  3922. "pagerfanta/pagerfanta": "Pagerfanta Paginator",
  3923. "zendframework/zend-paginator": "Zend Framework Paginator"
  3924. },
  3925. "type": "library",
  3926. "extra": {
  3927. "branch-alias": {
  3928. "dev-master": "0.13-dev"
  3929. }
  3930. },
  3931. "autoload": {
  3932. "psr-4": {
  3933. "League\\Fractal\\": "src"
  3934. }
  3935. },
  3936. "notification-url": "https://packagist.org/downloads/",
  3937. "license": [
  3938. "MIT"
  3939. ],
  3940. "authors": [
  3941. {
  3942. "name": "Phil Sturgeon",
  3943. "email": "me@philsturgeon.uk",
  3944. "homepage": "http://philsturgeon.uk/",
  3945. "role": "Developer"
  3946. }
  3947. ],
  3948. "description": "Handle the output of complex data structures ready for API output.",
  3949. "homepage": "http://fractal.thephpleague.com/",
  3950. "keywords": [
  3951. "api",
  3952. "json",
  3953. "league",
  3954. "rest"
  3955. ],
  3956. "support": {
  3957. "issues": "https://github.com/thephpleague/fractal/issues",
  3958. "source": "https://github.com/thephpleague/fractal/tree/0.19.2"
  3959. },
  3960. "time": "2020-01-24T23:17:29+00:00"
  3961. },
  3962. {
  3963. "name": "league/mime-type-detection",
  3964. "version": "1.11.0",
  3965. "source": {
  3966. "type": "git",
  3967. "url": "https://github.com/thephpleague/mime-type-detection.git",
  3968. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd"
  3969. },
  3970. "dist": {
  3971. "type": "zip",
  3972. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  3973. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  3974. "shasum": "",
  3975. "mirrors": [
  3976. {
  3977. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3978. "preferred": true
  3979. }
  3980. ]
  3981. },
  3982. "require": {
  3983. "ext-fileinfo": "*",
  3984. "php": "^7.2 || ^8.0"
  3985. },
  3986. "require-dev": {
  3987. "friendsofphp/php-cs-fixer": "^3.2",
  3988. "phpstan/phpstan": "^0.12.68",
  3989. "phpunit/phpunit": "^8.5.8 || ^9.3"
  3990. },
  3991. "type": "library",
  3992. "autoload": {
  3993. "psr-4": {
  3994. "League\\MimeTypeDetection\\": "src"
  3995. }
  3996. },
  3997. "notification-url": "https://packagist.org/downloads/",
  3998. "license": [
  3999. "MIT"
  4000. ],
  4001. "authors": [
  4002. {
  4003. "name": "Frank de Jonge",
  4004. "email": "info@frankdejonge.nl"
  4005. }
  4006. ],
  4007. "description": "Mime-type detection for Flysystem",
  4008. "support": {
  4009. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  4010. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.11.0"
  4011. },
  4012. "funding": [
  4013. {
  4014. "url": "https://github.com/frankdejonge",
  4015. "type": "github"
  4016. },
  4017. {
  4018. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  4019. "type": "tidelift"
  4020. }
  4021. ],
  4022. "time": "2022-04-17T13:12:02+00:00"
  4023. },
  4024. {
  4025. "name": "league/oauth1-client",
  4026. "version": "v1.10.1",
  4027. "source": {
  4028. "type": "git",
  4029. "url": "https://github.com/thephpleague/oauth1-client.git",
  4030. "reference": "d6365b901b5c287dd41f143033315e2f777e1167"
  4031. },
  4032. "dist": {
  4033. "type": "zip",
  4034. "url": "https://api.github.com/repos/thephpleague/oauth1-client/zipball/d6365b901b5c287dd41f143033315e2f777e1167",
  4035. "reference": "d6365b901b5c287dd41f143033315e2f777e1167",
  4036. "shasum": "",
  4037. "mirrors": [
  4038. {
  4039. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4040. "preferred": true
  4041. }
  4042. ]
  4043. },
  4044. "require": {
  4045. "ext-json": "*",
  4046. "ext-openssl": "*",
  4047. "guzzlehttp/guzzle": "^6.0|^7.0",
  4048. "guzzlehttp/psr7": "^1.7|^2.0",
  4049. "php": ">=7.1||>=8.0"
  4050. },
  4051. "require-dev": {
  4052. "ext-simplexml": "*",
  4053. "friendsofphp/php-cs-fixer": "^2.17",
  4054. "mockery/mockery": "^1.3.3",
  4055. "phpstan/phpstan": "^0.12.42",
  4056. "phpunit/phpunit": "^7.5||9.5"
  4057. },
  4058. "suggest": {
  4059. "ext-simplexml": "For decoding XML-based responses."
  4060. },
  4061. "type": "library",
  4062. "extra": {
  4063. "branch-alias": {
  4064. "dev-master": "1.0-dev",
  4065. "dev-develop": "2.0-dev"
  4066. }
  4067. },
  4068. "autoload": {
  4069. "psr-4": {
  4070. "League\\OAuth1\\Client\\": "src/"
  4071. }
  4072. },
  4073. "notification-url": "https://packagist.org/downloads/",
  4074. "license": [
  4075. "MIT"
  4076. ],
  4077. "authors": [
  4078. {
  4079. "name": "Ben Corlett",
  4080. "email": "bencorlett@me.com",
  4081. "homepage": "http://www.webcomm.com.au",
  4082. "role": "Developer"
  4083. }
  4084. ],
  4085. "description": "OAuth 1.0 Client Library",
  4086. "keywords": [
  4087. "Authentication",
  4088. "SSO",
  4089. "authorization",
  4090. "bitbucket",
  4091. "identity",
  4092. "idp",
  4093. "oauth",
  4094. "oauth1",
  4095. "single sign on",
  4096. "trello",
  4097. "tumblr",
  4098. "twitter"
  4099. ],
  4100. "support": {
  4101. "issues": "https://github.com/thephpleague/oauth1-client/issues",
  4102. "source": "https://github.com/thephpleague/oauth1-client/tree/v1.10.1"
  4103. },
  4104. "time": "2022-04-15T14:02:14+00:00"
  4105. },
  4106. {
  4107. "name": "monolog/monolog",
  4108. "version": "2.8.0",
  4109. "source": {
  4110. "type": "git",
  4111. "url": "https://github.com/Seldaek/monolog.git",
  4112. "reference": "720488632c590286b88b80e62aa3d3d551ad4a50"
  4113. },
  4114. "dist": {
  4115. "type": "zip",
  4116. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/720488632c590286b88b80e62aa3d3d551ad4a50",
  4117. "reference": "720488632c590286b88b80e62aa3d3d551ad4a50",
  4118. "shasum": "",
  4119. "mirrors": [
  4120. {
  4121. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4122. "preferred": true
  4123. }
  4124. ]
  4125. },
  4126. "require": {
  4127. "php": ">=7.2",
  4128. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  4129. },
  4130. "provide": {
  4131. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  4132. },
  4133. "require-dev": {
  4134. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  4135. "doctrine/couchdb": "~1.0@dev",
  4136. "elasticsearch/elasticsearch": "^7 || ^8",
  4137. "ext-json": "*",
  4138. "graylog2/gelf-php": "^1.4.2",
  4139. "guzzlehttp/guzzle": "^7.4",
  4140. "guzzlehttp/psr7": "^2.2",
  4141. "mongodb/mongodb": "^1.8",
  4142. "php-amqplib/php-amqplib": "~2.4 || ^3",
  4143. "phpspec/prophecy": "^1.15",
  4144. "phpstan/phpstan": "^0.12.91",
  4145. "phpunit/phpunit": "^8.5.14",
  4146. "predis/predis": "^1.1 || ^2.0",
  4147. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  4148. "ruflin/elastica": "^7",
  4149. "swiftmailer/swiftmailer": "^5.3|^6.0",
  4150. "symfony/mailer": "^5.4 || ^6",
  4151. "symfony/mime": "^5.4 || ^6"
  4152. },
  4153. "suggest": {
  4154. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  4155. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  4156. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  4157. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  4158. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  4159. "ext-mbstring": "Allow to work properly with unicode symbols",
  4160. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  4161. "ext-openssl": "Required to send log messages using SSL",
  4162. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  4163. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  4164. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  4165. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  4166. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  4167. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  4168. },
  4169. "type": "library",
  4170. "extra": {
  4171. "branch-alias": {
  4172. "dev-main": "2.x-dev"
  4173. }
  4174. },
  4175. "autoload": {
  4176. "psr-4": {
  4177. "Monolog\\": "src/Monolog"
  4178. }
  4179. },
  4180. "notification-url": "https://packagist.org/downloads/",
  4181. "license": [
  4182. "MIT"
  4183. ],
  4184. "authors": [
  4185. {
  4186. "name": "Jordi Boggiano",
  4187. "email": "j.boggiano@seld.be",
  4188. "homepage": "https://seld.be"
  4189. }
  4190. ],
  4191. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  4192. "homepage": "https://github.com/Seldaek/monolog",
  4193. "keywords": [
  4194. "log",
  4195. "logging",
  4196. "psr-3"
  4197. ],
  4198. "support": {
  4199. "issues": "https://github.com/Seldaek/monolog/issues",
  4200. "source": "https://github.com/Seldaek/monolog/tree/2.8.0"
  4201. },
  4202. "funding": [
  4203. {
  4204. "url": "https://github.com/Seldaek",
  4205. "type": "github"
  4206. },
  4207. {
  4208. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  4209. "type": "tidelift"
  4210. }
  4211. ],
  4212. "time": "2022-07-24T11:55:47+00:00"
  4213. },
  4214. {
  4215. "name": "mtdowling/jmespath.php",
  4216. "version": "2.6.1",
  4217. "source": {
  4218. "type": "git",
  4219. "url": "https://github.com/jmespath/jmespath.php.git",
  4220. "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb"
  4221. },
  4222. "dist": {
  4223. "type": "zip",
  4224. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
  4225. "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
  4226. "shasum": "",
  4227. "mirrors": [
  4228. {
  4229. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4230. "preferred": true
  4231. }
  4232. ]
  4233. },
  4234. "require": {
  4235. "php": "^5.4 || ^7.0 || ^8.0",
  4236. "symfony/polyfill-mbstring": "^1.17"
  4237. },
  4238. "require-dev": {
  4239. "composer/xdebug-handler": "^1.4 || ^2.0",
  4240. "phpunit/phpunit": "^4.8.36 || ^7.5.15"
  4241. },
  4242. "bin": [
  4243. "bin/jp.php"
  4244. ],
  4245. "type": "library",
  4246. "extra": {
  4247. "branch-alias": {
  4248. "dev-master": "2.6-dev"
  4249. }
  4250. },
  4251. "autoload": {
  4252. "files": [
  4253. "src/JmesPath.php"
  4254. ],
  4255. "psr-4": {
  4256. "JmesPath\\": "src/"
  4257. }
  4258. },
  4259. "notification-url": "https://packagist.org/downloads/",
  4260. "license": [
  4261. "MIT"
  4262. ],
  4263. "authors": [
  4264. {
  4265. "name": "Michael Dowling",
  4266. "email": "mtdowling@gmail.com",
  4267. "homepage": "https://github.com/mtdowling"
  4268. }
  4269. ],
  4270. "description": "Declaratively specify how to extract elements from a JSON document",
  4271. "keywords": [
  4272. "json",
  4273. "jsonpath"
  4274. ],
  4275. "support": {
  4276. "issues": "https://github.com/jmespath/jmespath.php/issues",
  4277. "source": "https://github.com/jmespath/jmespath.php/tree/2.6.1"
  4278. },
  4279. "time": "2021-06-14T00:11:39+00:00"
  4280. },
  4281. {
  4282. "name": "namshi/jose",
  4283. "version": "7.2.3",
  4284. "source": {
  4285. "type": "git",
  4286. "url": "https://github.com/namshi/jose.git",
  4287. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff"
  4288. },
  4289. "dist": {
  4290. "type": "zip",
  4291. "url": "https://api.github.com/repos/namshi/jose/zipball/89a24d7eb3040e285dd5925fcad992378b82bcff",
  4292. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff",
  4293. "shasum": "",
  4294. "mirrors": [
  4295. {
  4296. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4297. "preferred": true
  4298. }
  4299. ]
  4300. },
  4301. "require": {
  4302. "ext-date": "*",
  4303. "ext-hash": "*",
  4304. "ext-json": "*",
  4305. "ext-pcre": "*",
  4306. "ext-spl": "*",
  4307. "php": ">=5.5",
  4308. "symfony/polyfill-php56": "^1.0"
  4309. },
  4310. "require-dev": {
  4311. "phpseclib/phpseclib": "^2.0",
  4312. "phpunit/phpunit": "^4.5|^5.0",
  4313. "satooshi/php-coveralls": "^1.0"
  4314. },
  4315. "suggest": {
  4316. "ext-openssl": "Allows to use OpenSSL as crypto engine.",
  4317. "phpseclib/phpseclib": "Allows to use Phpseclib as crypto engine, use version ^2.0."
  4318. },
  4319. "type": "library",
  4320. "autoload": {
  4321. "psr-4": {
  4322. "Namshi\\JOSE\\": "src/Namshi/JOSE/"
  4323. }
  4324. },
  4325. "notification-url": "https://packagist.org/downloads/",
  4326. "license": [
  4327. "MIT"
  4328. ],
  4329. "authors": [
  4330. {
  4331. "name": "Alessandro Nadalin",
  4332. "email": "alessandro.nadalin@gmail.com"
  4333. },
  4334. {
  4335. "name": "Alessandro Cinelli (cirpo)",
  4336. "email": "alessandro.cinelli@gmail.com"
  4337. }
  4338. ],
  4339. "description": "JSON Object Signing and Encryption library for PHP.",
  4340. "keywords": [
  4341. "JSON Web Signature",
  4342. "JSON Web Token",
  4343. "JWS",
  4344. "json",
  4345. "jwt",
  4346. "token"
  4347. ],
  4348. "support": {
  4349. "issues": "https://github.com/namshi/jose/issues",
  4350. "source": "https://github.com/namshi/jose/tree/master"
  4351. },
  4352. "time": "2016-12-05T07:27:31+00:00"
  4353. },
  4354. {
  4355. "name": "nesbot/carbon",
  4356. "version": "2.61.0",
  4357. "source": {
  4358. "type": "git",
  4359. "url": "https://github.com/briannesbitt/Carbon.git",
  4360. "reference": "bdf4f4fe3a3eac4de84dbec0738082a862c68ba6"
  4361. },
  4362. "dist": {
  4363. "type": "zip",
  4364. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/bdf4f4fe3a3eac4de84dbec0738082a862c68ba6",
  4365. "reference": "bdf4f4fe3a3eac4de84dbec0738082a862c68ba6",
  4366. "shasum": "",
  4367. "mirrors": [
  4368. {
  4369. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4370. "preferred": true
  4371. }
  4372. ]
  4373. },
  4374. "require": {
  4375. "ext-json": "*",
  4376. "php": "^7.1.8 || ^8.0",
  4377. "symfony/polyfill-mbstring": "^1.0",
  4378. "symfony/polyfill-php80": "^1.16",
  4379. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  4380. },
  4381. "require-dev": {
  4382. "doctrine/dbal": "^2.0 || ^3.0",
  4383. "doctrine/orm": "^2.7",
  4384. "friendsofphp/php-cs-fixer": "^3.0",
  4385. "kylekatarnls/multi-tester": "^2.0",
  4386. "ondrejmirtes/better-reflection": "*",
  4387. "phpmd/phpmd": "^2.9",
  4388. "phpstan/extension-installer": "^1.0",
  4389. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  4390. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  4391. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  4392. "squizlabs/php_codesniffer": "^3.4"
  4393. },
  4394. "bin": [
  4395. "bin/carbon"
  4396. ],
  4397. "type": "library",
  4398. "extra": {
  4399. "branch-alias": {
  4400. "dev-3.x": "3.x-dev",
  4401. "dev-master": "2.x-dev"
  4402. },
  4403. "laravel": {
  4404. "providers": [
  4405. "Carbon\\Laravel\\ServiceProvider"
  4406. ]
  4407. },
  4408. "phpstan": {
  4409. "includes": [
  4410. "extension.neon"
  4411. ]
  4412. }
  4413. },
  4414. "autoload": {
  4415. "psr-4": {
  4416. "Carbon\\": "src/Carbon/"
  4417. }
  4418. },
  4419. "notification-url": "https://packagist.org/downloads/",
  4420. "license": [
  4421. "MIT"
  4422. ],
  4423. "authors": [
  4424. {
  4425. "name": "Brian Nesbitt",
  4426. "email": "brian@nesbot.com",
  4427. "homepage": "https://markido.com"
  4428. },
  4429. {
  4430. "name": "kylekatarnls",
  4431. "homepage": "https://github.com/kylekatarnls"
  4432. }
  4433. ],
  4434. "description": "An API extension for DateTime that supports 281 different languages.",
  4435. "homepage": "https://carbon.nesbot.com",
  4436. "keywords": [
  4437. "date",
  4438. "datetime",
  4439. "time"
  4440. ],
  4441. "support": {
  4442. "docs": "https://carbon.nesbot.com/docs",
  4443. "issues": "https://github.com/briannesbitt/Carbon/issues",
  4444. "source": "https://github.com/briannesbitt/Carbon"
  4445. },
  4446. "funding": [
  4447. {
  4448. "url": "https://github.com/sponsors/kylekatarnls",
  4449. "type": "github"
  4450. },
  4451. {
  4452. "url": "https://opencollective.com/Carbon#sponsor",
  4453. "type": "opencollective"
  4454. },
  4455. {
  4456. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  4457. "type": "tidelift"
  4458. }
  4459. ],
  4460. "time": "2022-08-06T12:41:24+00:00"
  4461. },
  4462. {
  4463. "name": "nette/schema",
  4464. "version": "v1.2.2",
  4465. "source": {
  4466. "type": "git",
  4467. "url": "https://github.com/nette/schema.git",
  4468. "reference": "9a39cef03a5b34c7de64f551538cbba05c2be5df"
  4469. },
  4470. "dist": {
  4471. "type": "zip",
  4472. "url": "https://api.github.com/repos/nette/schema/zipball/9a39cef03a5b34c7de64f551538cbba05c2be5df",
  4473. "reference": "9a39cef03a5b34c7de64f551538cbba05c2be5df",
  4474. "shasum": "",
  4475. "mirrors": [
  4476. {
  4477. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4478. "preferred": true
  4479. }
  4480. ]
  4481. },
  4482. "require": {
  4483. "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
  4484. "php": ">=7.1 <8.2"
  4485. },
  4486. "require-dev": {
  4487. "nette/tester": "^2.3 || ^2.4",
  4488. "phpstan/phpstan-nette": "^0.12",
  4489. "tracy/tracy": "^2.7"
  4490. },
  4491. "type": "library",
  4492. "extra": {
  4493. "branch-alias": {
  4494. "dev-master": "1.2-dev"
  4495. }
  4496. },
  4497. "autoload": {
  4498. "classmap": [
  4499. "src/"
  4500. ]
  4501. },
  4502. "notification-url": "https://packagist.org/downloads/",
  4503. "license": [
  4504. "BSD-3-Clause",
  4505. "GPL-2.0-only",
  4506. "GPL-3.0-only"
  4507. ],
  4508. "authors": [
  4509. {
  4510. "name": "David Grudl",
  4511. "homepage": "https://davidgrudl.com"
  4512. },
  4513. {
  4514. "name": "Nette Community",
  4515. "homepage": "https://nette.org/contributors"
  4516. }
  4517. ],
  4518. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  4519. "homepage": "https://nette.org",
  4520. "keywords": [
  4521. "config",
  4522. "nette"
  4523. ],
  4524. "support": {
  4525. "issues": "https://github.com/nette/schema/issues",
  4526. "source": "https://github.com/nette/schema/tree/v1.2.2"
  4527. },
  4528. "time": "2021-10-15T11:40:02+00:00"
  4529. },
  4530. {
  4531. "name": "nette/utils",
  4532. "version": "v3.2.7",
  4533. "source": {
  4534. "type": "git",
  4535. "url": "https://github.com/nette/utils.git",
  4536. "reference": "0af4e3de4df9f1543534beab255ccf459e7a2c99"
  4537. },
  4538. "dist": {
  4539. "type": "zip",
  4540. "url": "https://api.github.com/repos/nette/utils/zipball/0af4e3de4df9f1543534beab255ccf459e7a2c99",
  4541. "reference": "0af4e3de4df9f1543534beab255ccf459e7a2c99",
  4542. "shasum": "",
  4543. "mirrors": [
  4544. {
  4545. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4546. "preferred": true
  4547. }
  4548. ]
  4549. },
  4550. "require": {
  4551. "php": ">=7.2 <8.2"
  4552. },
  4553. "conflict": {
  4554. "nette/di": "<3.0.6"
  4555. },
  4556. "require-dev": {
  4557. "nette/tester": "~2.0",
  4558. "phpstan/phpstan": "^1.0",
  4559. "tracy/tracy": "^2.3"
  4560. },
  4561. "suggest": {
  4562. "ext-gd": "to use Image",
  4563. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  4564. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  4565. "ext-json": "to use Nette\\Utils\\Json",
  4566. "ext-mbstring": "to use Strings::lower() etc...",
  4567. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()",
  4568. "ext-xml": "to use Strings::length() etc. when mbstring is not available"
  4569. },
  4570. "type": "library",
  4571. "extra": {
  4572. "branch-alias": {
  4573. "dev-master": "3.2-dev"
  4574. }
  4575. },
  4576. "autoload": {
  4577. "classmap": [
  4578. "src/"
  4579. ]
  4580. },
  4581. "notification-url": "https://packagist.org/downloads/",
  4582. "license": [
  4583. "BSD-3-Clause",
  4584. "GPL-2.0-only",
  4585. "GPL-3.0-only"
  4586. ],
  4587. "authors": [
  4588. {
  4589. "name": "David Grudl",
  4590. "homepage": "https://davidgrudl.com"
  4591. },
  4592. {
  4593. "name": "Nette Community",
  4594. "homepage": "https://nette.org/contributors"
  4595. }
  4596. ],
  4597. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  4598. "homepage": "https://nette.org",
  4599. "keywords": [
  4600. "array",
  4601. "core",
  4602. "datetime",
  4603. "images",
  4604. "json",
  4605. "nette",
  4606. "paginator",
  4607. "password",
  4608. "slugify",
  4609. "string",
  4610. "unicode",
  4611. "utf-8",
  4612. "utility",
  4613. "validation"
  4614. ],
  4615. "support": {
  4616. "issues": "https://github.com/nette/utils/issues",
  4617. "source": "https://github.com/nette/utils/tree/v3.2.7"
  4618. },
  4619. "time": "2022-01-24T11:29:14+00:00"
  4620. },
  4621. {
  4622. "name": "nikic/php-parser",
  4623. "version": "v4.14.0",
  4624. "source": {
  4625. "type": "git",
  4626. "url": "https://github.com/nikic/PHP-Parser.git",
  4627. "reference": "34bea19b6e03d8153165d8f30bba4c3be86184c1"
  4628. },
  4629. "dist": {
  4630. "type": "zip",
  4631. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/34bea19b6e03d8153165d8f30bba4c3be86184c1",
  4632. "reference": "34bea19b6e03d8153165d8f30bba4c3be86184c1",
  4633. "shasum": "",
  4634. "mirrors": [
  4635. {
  4636. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4637. "preferred": true
  4638. }
  4639. ]
  4640. },
  4641. "require": {
  4642. "ext-tokenizer": "*",
  4643. "php": ">=7.0"
  4644. },
  4645. "require-dev": {
  4646. "ircmaxell/php-yacc": "^0.0.7",
  4647. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  4648. },
  4649. "bin": [
  4650. "bin/php-parse"
  4651. ],
  4652. "type": "library",
  4653. "extra": {
  4654. "branch-alias": {
  4655. "dev-master": "4.9-dev"
  4656. }
  4657. },
  4658. "autoload": {
  4659. "psr-4": {
  4660. "PhpParser\\": "lib/PhpParser"
  4661. }
  4662. },
  4663. "notification-url": "https://packagist.org/downloads/",
  4664. "license": [
  4665. "BSD-3-Clause"
  4666. ],
  4667. "authors": [
  4668. {
  4669. "name": "Nikita Popov"
  4670. }
  4671. ],
  4672. "description": "A PHP parser written in PHP",
  4673. "keywords": [
  4674. "parser",
  4675. "php"
  4676. ],
  4677. "support": {
  4678. "issues": "https://github.com/nikic/PHP-Parser/issues",
  4679. "source": "https://github.com/nikic/PHP-Parser/tree/v4.14.0"
  4680. },
  4681. "time": "2022-05-31T20:59:12+00:00"
  4682. },
  4683. {
  4684. "name": "opis/closure",
  4685. "version": "3.6.3",
  4686. "source": {
  4687. "type": "git",
  4688. "url": "https://github.com/opis/closure.git",
  4689. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad"
  4690. },
  4691. "dist": {
  4692. "type": "zip",
  4693. "url": "https://api.github.com/repos/opis/closure/zipball/3d81e4309d2a927abbe66df935f4bb60082805ad",
  4694. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad",
  4695. "shasum": "",
  4696. "mirrors": [
  4697. {
  4698. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4699. "preferred": true
  4700. }
  4701. ]
  4702. },
  4703. "require": {
  4704. "php": "^5.4 || ^7.0 || ^8.0"
  4705. },
  4706. "require-dev": {
  4707. "jeremeamia/superclosure": "^2.0",
  4708. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  4709. },
  4710. "type": "library",
  4711. "extra": {
  4712. "branch-alias": {
  4713. "dev-master": "3.6.x-dev"
  4714. }
  4715. },
  4716. "autoload": {
  4717. "files": [
  4718. "functions.php"
  4719. ],
  4720. "psr-4": {
  4721. "Opis\\Closure\\": "src/"
  4722. }
  4723. },
  4724. "notification-url": "https://packagist.org/downloads/",
  4725. "license": [
  4726. "MIT"
  4727. ],
  4728. "authors": [
  4729. {
  4730. "name": "Marius Sarca",
  4731. "email": "marius.sarca@gmail.com"
  4732. },
  4733. {
  4734. "name": "Sorin Sarca",
  4735. "email": "sarca_sorin@hotmail.com"
  4736. }
  4737. ],
  4738. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  4739. "homepage": "https://opis.io/closure",
  4740. "keywords": [
  4741. "anonymous functions",
  4742. "closure",
  4743. "function",
  4744. "serializable",
  4745. "serialization",
  4746. "serialize"
  4747. ],
  4748. "support": {
  4749. "issues": "https://github.com/opis/closure/issues",
  4750. "source": "https://github.com/opis/closure/tree/3.6.3"
  4751. },
  4752. "time": "2022-01-27T09:35:39+00:00"
  4753. },
  4754. {
  4755. "name": "overtrue/easy-sms",
  4756. "version": "2.2.0",
  4757. "source": {
  4758. "type": "git",
  4759. "url": "https://github.com/overtrue/easy-sms.git",
  4760. "reference": "fda1b6fcde861451ccf54e1071b4e1877455d89a"
  4761. },
  4762. "dist": {
  4763. "type": "zip",
  4764. "url": "https://api.github.com/repos/overtrue/easy-sms/zipball/fda1b6fcde861451ccf54e1071b4e1877455d89a",
  4765. "reference": "fda1b6fcde861451ccf54e1071b4e1877455d89a",
  4766. "shasum": "",
  4767. "mirrors": [
  4768. {
  4769. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4770. "preferred": true
  4771. }
  4772. ]
  4773. },
  4774. "require": {
  4775. "ext-json": "*",
  4776. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  4777. "php": ">=5.6"
  4778. },
  4779. "require-dev": {
  4780. "brainmaestro/composer-git-hooks": "^2.8",
  4781. "jetbrains/phpstorm-attributes": "^1.0",
  4782. "mockery/mockery": "~1.3.3 || ^1.4.2",
  4783. "phpunit/phpunit": "^5.7 || ^7.5 || ^8.5.19 || ^9.5.8"
  4784. },
  4785. "type": "library",
  4786. "extra": {
  4787. "hooks": {
  4788. "pre-commit": [
  4789. "composer check-style",
  4790. "composer psalm",
  4791. "composer test"
  4792. ],
  4793. "pre-push": [
  4794. "composer check-style"
  4795. ]
  4796. }
  4797. },
  4798. "autoload": {
  4799. "psr-4": {
  4800. "Overtrue\\EasySms\\": "src"
  4801. }
  4802. },
  4803. "notification-url": "https://packagist.org/downloads/",
  4804. "license": [
  4805. "MIT"
  4806. ],
  4807. "authors": [
  4808. {
  4809. "name": "overtrue",
  4810. "email": "i@overtrue.me"
  4811. }
  4812. ],
  4813. "description": "The easiest way to send short message.",
  4814. "support": {
  4815. "issues": "https://github.com/overtrue/easy-sms/issues",
  4816. "source": "https://github.com/overtrue/easy-sms/tree/2.2.0"
  4817. },
  4818. "funding": [
  4819. {
  4820. "url": "https://github.com/overtrue",
  4821. "type": "github"
  4822. }
  4823. ],
  4824. "time": "2022-03-20T15:13:45+00:00"
  4825. },
  4826. {
  4827. "name": "overtrue/laravel-lang",
  4828. "version": "3.0.19",
  4829. "source": {
  4830. "type": "git",
  4831. "url": "https://github.com/overtrue/laravel-lang.git",
  4832. "reference": "fb6de57a454792833c96ffdcd4999c90468deb89"
  4833. },
  4834. "dist": {
  4835. "type": "zip",
  4836. "url": "https://api.github.com/repos/overtrue/laravel-lang/zipball/fb6de57a454792833c96ffdcd4999c90468deb89",
  4837. "reference": "fb6de57a454792833c96ffdcd4999c90468deb89",
  4838. "shasum": "",
  4839. "mirrors": [
  4840. {
  4841. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4842. "preferred": true
  4843. }
  4844. ]
  4845. },
  4846. "require": {
  4847. "laravel-lang/lang": "~3.0"
  4848. },
  4849. "type": "library",
  4850. "extra": {
  4851. "laravel": {
  4852. "providers": [
  4853. "Overtrue\\LaravelLang\\TranslationServiceProvider"
  4854. ]
  4855. }
  4856. },
  4857. "autoload": {
  4858. "files": [
  4859. "src/helpers.php"
  4860. ],
  4861. "psr-4": {
  4862. "Overtrue\\LaravelLang\\": "src/"
  4863. }
  4864. },
  4865. "notification-url": "https://packagist.org/downloads/",
  4866. "license": [
  4867. "MIT"
  4868. ],
  4869. "authors": [
  4870. {
  4871. "name": "overtrue",
  4872. "email": "anzhengchao@gmail.com"
  4873. }
  4874. ],
  4875. "description": "List of 52 languages for Laravel 5",
  4876. "keywords": [
  4877. "languages",
  4878. "laravel",
  4879. "overtrue"
  4880. ],
  4881. "support": {
  4882. "issues": "https://github.com/overtrue/laravel-lang/issues",
  4883. "source": "https://github.com/overtrue/laravel-lang/tree/3.0.19"
  4884. },
  4885. "funding": [
  4886. {
  4887. "url": "https://www.patreon.com/overtrue",
  4888. "type": "patreon"
  4889. }
  4890. ],
  4891. "time": "2021-04-28T03:36:48+00:00"
  4892. },
  4893. {
  4894. "name": "overtrue/laravel-wechat",
  4895. "version": "5.1.0",
  4896. "source": {
  4897. "type": "git",
  4898. "url": "https://github.com/overtrue/laravel-wechat.git",
  4899. "reference": "1bc59aa52cf6bae2f4f388e9f20f7893305f2fe8"
  4900. },
  4901. "dist": {
  4902. "type": "zip",
  4903. "url": "https://api.github.com/repos/overtrue/laravel-wechat/zipball/1bc59aa52cf6bae2f4f388e9f20f7893305f2fe8",
  4904. "reference": "1bc59aa52cf6bae2f4f388e9f20f7893305f2fe8",
  4905. "shasum": "",
  4906. "mirrors": [
  4907. {
  4908. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4909. "preferred": true
  4910. }
  4911. ]
  4912. },
  4913. "require": {
  4914. "illuminate/container": "^5.1 || ^6.0 || ^7.0 || ^8.0",
  4915. "overtrue/wechat": "^4.0"
  4916. },
  4917. "require-dev": {
  4918. "friendsofphp/php-cs-fixer": "^2.16",
  4919. "laravel/framework": "^8.5"
  4920. },
  4921. "type": "library",
  4922. "extra": {
  4923. "laravel": {
  4924. "providers": [
  4925. "Overtrue\\LaravelWeChat\\ServiceProvider"
  4926. ],
  4927. "aliases": {
  4928. "EasyWeChat": "Overtrue\\LaravelWeChat\\Facade"
  4929. }
  4930. }
  4931. },
  4932. "autoload": {
  4933. "psr-4": {
  4934. "Overtrue\\LaravelWeChat\\": "src/"
  4935. }
  4936. },
  4937. "notification-url": "https://packagist.org/downloads/",
  4938. "license": [
  4939. "MIT"
  4940. ],
  4941. "authors": [
  4942. {
  4943. "name": "overtrue",
  4944. "email": "anzhengchao@gmail.com"
  4945. }
  4946. ],
  4947. "description": "微信 SDK for Laravel",
  4948. "keywords": [
  4949. "laravel",
  4950. "sdk",
  4951. "wechat",
  4952. "weixin"
  4953. ],
  4954. "support": {
  4955. "issues": "https://github.com/overtrue/laravel-wechat/issues",
  4956. "source": "https://github.com/overtrue/laravel-wechat/tree/5.1.0"
  4957. },
  4958. "time": "2020-09-27T08:32:30+00:00"
  4959. },
  4960. {
  4961. "name": "overtrue/pinyin",
  4962. "version": "5.3.0",
  4963. "source": {
  4964. "type": "git",
  4965. "url": "https://github.com/overtrue/pinyin.git",
  4966. "reference": "cd40f248239231ae2d1f94348c323a40c7fc58b1"
  4967. },
  4968. "dist": {
  4969. "type": "zip",
  4970. "url": "https://api.github.com/repos/overtrue/pinyin/zipball/cd40f248239231ae2d1f94348c323a40c7fc58b1",
  4971. "reference": "cd40f248239231ae2d1f94348c323a40c7fc58b1",
  4972. "shasum": "",
  4973. "mirrors": [
  4974. {
  4975. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4976. "preferred": true
  4977. }
  4978. ]
  4979. },
  4980. "require": {
  4981. "php": ">=8.0.2"
  4982. },
  4983. "require-dev": {
  4984. "brainmaestro/composer-git-hooks": "^2.7",
  4985. "friendsofphp/php-cs-fixer": "^3.2",
  4986. "laravel/pint": "^1.10",
  4987. "nunomaduro/termwind": "^1.13",
  4988. "phpunit/phpunit": "^10.1"
  4989. },
  4990. "bin": [
  4991. "bin/pinyin"
  4992. ],
  4993. "type": "library",
  4994. "extra": {
  4995. "hooks": {
  4996. "pre-commit": [
  4997. "composer pint",
  4998. "composer test"
  4999. ],
  5000. "pre-push": [
  5001. "composer pint",
  5002. "composer test"
  5003. ]
  5004. }
  5005. },
  5006. "autoload": {
  5007. "psr-4": {
  5008. "Overtrue\\Pinyin\\": "src/"
  5009. }
  5010. },
  5011. "notification-url": "https://packagist.org/downloads/",
  5012. "license": [
  5013. "MIT"
  5014. ],
  5015. "authors": [
  5016. {
  5017. "name": "overtrue",
  5018. "email": "anzhengchao@gmail.com",
  5019. "homepage": "http://github.com/overtrue"
  5020. }
  5021. ],
  5022. "description": "Chinese to pinyin translator.",
  5023. "homepage": "https://github.com/overtrue/pinyin",
  5024. "keywords": [
  5025. "Chinese",
  5026. "Pinyin",
  5027. "cn2pinyin"
  5028. ],
  5029. "support": {
  5030. "issues": "https://github.com/overtrue/pinyin/issues",
  5031. "source": "https://github.com/overtrue/pinyin/tree/5.3.0"
  5032. },
  5033. "funding": [
  5034. {
  5035. "url": "https://github.com/overtrue",
  5036. "type": "github"
  5037. }
  5038. ],
  5039. "time": "2023-10-27T02:04:12+00:00"
  5040. },
  5041. {
  5042. "name": "overtrue/socialite",
  5043. "version": "2.0.24",
  5044. "source": {
  5045. "type": "git",
  5046. "url": "https://github.com/overtrue/socialite.git",
  5047. "reference": "ee7e7b000ec7d64f2b8aba1f6a2eec5cdf3f8bec"
  5048. },
  5049. "dist": {
  5050. "type": "zip",
  5051. "url": "https://api.github.com/repos/overtrue/socialite/zipball/ee7e7b000ec7d64f2b8aba1f6a2eec5cdf3f8bec",
  5052. "reference": "ee7e7b000ec7d64f2b8aba1f6a2eec5cdf3f8bec",
  5053. "shasum": "",
  5054. "mirrors": [
  5055. {
  5056. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5057. "preferred": true
  5058. }
  5059. ]
  5060. },
  5061. "require": {
  5062. "ext-json": "*",
  5063. "guzzlehttp/guzzle": "^5.0|^6.0|^7.0",
  5064. "php": ">=5.6",
  5065. "symfony/http-foundation": "^2.7|^3.0|^4.0|^5.0"
  5066. },
  5067. "require-dev": {
  5068. "mockery/mockery": "~1.2",
  5069. "phpunit/phpunit": "^6.0|^7.0|^8.0|^9.0"
  5070. },
  5071. "type": "library",
  5072. "autoload": {
  5073. "psr-4": {
  5074. "Overtrue\\Socialite\\": "src/"
  5075. }
  5076. },
  5077. "notification-url": "https://packagist.org/downloads/",
  5078. "license": [
  5079. "MIT"
  5080. ],
  5081. "authors": [
  5082. {
  5083. "name": "overtrue",
  5084. "email": "anzhengchao@gmail.com"
  5085. }
  5086. ],
  5087. "description": "A collection of OAuth 2 packages that extracts from laravel/socialite.",
  5088. "keywords": [
  5089. "login",
  5090. "oauth",
  5091. "qq",
  5092. "social",
  5093. "wechat",
  5094. "weibo"
  5095. ],
  5096. "support": {
  5097. "issues": "https://github.com/overtrue/socialite/issues",
  5098. "source": "https://github.com/overtrue/socialite/tree/2.0.24"
  5099. },
  5100. "funding": [
  5101. {
  5102. "url": "https://www.patreon.com/overtrue",
  5103. "type": "patreon"
  5104. }
  5105. ],
  5106. "time": "2021-05-13T16:04:48+00:00"
  5107. },
  5108. {
  5109. "name": "overtrue/wechat",
  5110. "version": "4.5.0",
  5111. "source": {
  5112. "type": "git",
  5113. "url": "https://github.com/w7corp/easywechat.git",
  5114. "reference": "04a940f97d6812a67bb8d5f2dbaebf9ad78ae776"
  5115. },
  5116. "dist": {
  5117. "type": "zip",
  5118. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/04a940f97d6812a67bb8d5f2dbaebf9ad78ae776",
  5119. "reference": "04a940f97d6812a67bb8d5f2dbaebf9ad78ae776",
  5120. "shasum": "",
  5121. "mirrors": [
  5122. {
  5123. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5124. "preferred": true
  5125. }
  5126. ]
  5127. },
  5128. "require": {
  5129. "easywechat-composer/easywechat-composer": "^1.1",
  5130. "ext-fileinfo": "*",
  5131. "ext-openssl": "*",
  5132. "ext-simplexml": "*",
  5133. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  5134. "monolog/monolog": "^1.22 || ^2.0",
  5135. "overtrue/socialite": "~2.0",
  5136. "php": ">=7.2",
  5137. "pimple/pimple": "^3.0",
  5138. "psr/simple-cache": "^1.0",
  5139. "symfony/cache": "^3.3 || ^4.3 || ^5.0",
  5140. "symfony/event-dispatcher": "^4.3 || ^5.0",
  5141. "symfony/http-foundation": "^2.7 || ^3.0 || ^4.0 || ^5.0",
  5142. "symfony/psr-http-message-bridge": "^0.3 || ^1.0 || ^2.0"
  5143. },
  5144. "require-dev": {
  5145. "friendsofphp/php-cs-fixer": "^2.15",
  5146. "mikey179/vfsstream": "^1.6",
  5147. "mockery/mockery": "^1.2.3",
  5148. "phpstan/phpstan": "^0.12.0",
  5149. "phpunit/phpunit": "^7.5"
  5150. },
  5151. "type": "library",
  5152. "autoload": {
  5153. "files": [
  5154. "src/Kernel/Support/Helpers.php",
  5155. "src/Kernel/Helpers.php"
  5156. ],
  5157. "psr-4": {
  5158. "EasyWeChat\\": "src/"
  5159. }
  5160. },
  5161. "notification-url": "https://packagist.org/downloads/",
  5162. "license": [
  5163. "MIT"
  5164. ],
  5165. "authors": [
  5166. {
  5167. "name": "overtrue",
  5168. "email": "anzhengchao@gmail.com"
  5169. }
  5170. ],
  5171. "description": "微信SDK",
  5172. "keywords": [
  5173. "easywechat",
  5174. "sdk",
  5175. "wechat",
  5176. "weixin",
  5177. "weixin-sdk"
  5178. ],
  5179. "support": {
  5180. "issues": "https://github.com/w7corp/easywechat/issues",
  5181. "source": "https://github.com/w7corp/easywechat/tree/4.5.0"
  5182. },
  5183. "funding": [
  5184. {
  5185. "url": "https://github.com/overtrue",
  5186. "type": "github"
  5187. }
  5188. ],
  5189. "abandoned": "w7corp/easywechat",
  5190. "time": "2021-12-27T13:56:47+00:00"
  5191. },
  5192. {
  5193. "name": "php-open-source-saver/jwt-auth",
  5194. "version": "1.4.2",
  5195. "source": {
  5196. "type": "git",
  5197. "url": "https://github.com/PHP-Open-Source-Saver/jwt-auth.git",
  5198. "reference": "5fd8c185453d875835c24d4ce50be7396af6ae14"
  5199. },
  5200. "dist": {
  5201. "type": "zip",
  5202. "url": "https://api.github.com/repos/PHP-Open-Source-Saver/jwt-auth/zipball/5fd8c185453d875835c24d4ce50be7396af6ae14",
  5203. "reference": "5fd8c185453d875835c24d4ce50be7396af6ae14",
  5204. "shasum": "",
  5205. "mirrors": [
  5206. {
  5207. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5208. "preferred": true
  5209. }
  5210. ]
  5211. },
  5212. "require": {
  5213. "ext-json": "*",
  5214. "illuminate/auth": "^6|^7|^8.67|^9",
  5215. "illuminate/contracts": "^6|^7|^8.67|^9",
  5216. "illuminate/http": "^6|^7|^8.67|^9",
  5217. "illuminate/support": "^6|^7|^8.67|^9",
  5218. "lcobucci/jwt": "^4.0",
  5219. "namshi/jose": "^7.0",
  5220. "nesbot/carbon": "^1.0|^2.0",
  5221. "php": "^7.4|^8.0"
  5222. },
  5223. "require-dev": {
  5224. "friendsofphp/php-cs-fixer": "^3",
  5225. "illuminate/console": "^6|^7|^8.67|^9",
  5226. "illuminate/routing": "^6|^7|^8.67|^9",
  5227. "mockery/mockery": "^1.4.4",
  5228. "orchestra/testbench": "^4.18|^5.8|^6.3|^7",
  5229. "phpstan/phpstan": "^1",
  5230. "phpunit/phpunit": "^8.5|^9.4",
  5231. "rector/rector": "^0.12.4",
  5232. "vlucas/phpdotenv": "^5.2.0",
  5233. "yoast/phpunit-polyfills": "^1.0.2"
  5234. },
  5235. "type": "library",
  5236. "extra": {
  5237. "branch-alias": {
  5238. "dev-develop": "1.0-dev"
  5239. },
  5240. "laravel": {
  5241. "aliases": {
  5242. "JWTAuth": "PHPOpenSourceSaver\\JWTAuth\\Facades\\JWTAuth",
  5243. "JWTFactory": "PHPOpenSourceSaver\\JWTAuth\\Facades\\JWTFactory"
  5244. },
  5245. "providers": [
  5246. "PHPOpenSourceSaver\\JWTAuth\\Providers\\LaravelServiceProvider"
  5247. ]
  5248. }
  5249. },
  5250. "autoload": {
  5251. "psr-4": {
  5252. "PHPOpenSourceSaver\\JWTAuth\\": "src/"
  5253. }
  5254. },
  5255. "notification-url": "https://packagist.org/downloads/",
  5256. "license": [
  5257. "MIT"
  5258. ],
  5259. "authors": [
  5260. {
  5261. "name": "Sean Tymon",
  5262. "email": "tymon148@gmail.com",
  5263. "homepage": "https://tymon.xyz",
  5264. "role": "Forked package creator | Developer"
  5265. },
  5266. {
  5267. "name": "Eric Schricker",
  5268. "email": "eric.schricker@adiutabyte.de",
  5269. "role": "Developer"
  5270. },
  5271. {
  5272. "name": "Fabio William Conceição",
  5273. "email": "messhias@gmail.com",
  5274. "role": "Developer"
  5275. }
  5276. ],
  5277. "description": "JSON Web Token Authentication for Laravel and Lumen",
  5278. "homepage": "https://github.com/PHP-Open-Source-Saver/jwt-auth",
  5279. "keywords": [
  5280. "Authentication",
  5281. "JSON Web Token",
  5282. "auth",
  5283. "jwt",
  5284. "laravel"
  5285. ],
  5286. "support": {
  5287. "issues": "https://github.com/PHP-Open-Source-Saver/jwt-auth/issues",
  5288. "source": "https://github.com/PHP-Open-Source-Saver/jwt-auth"
  5289. },
  5290. "time": "2022-04-22T06:31:30+00:00"
  5291. },
  5292. {
  5293. "name": "phpdocumentor/reflection-common",
  5294. "version": "2.2.0",
  5295. "source": {
  5296. "type": "git",
  5297. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  5298. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  5299. },
  5300. "dist": {
  5301. "type": "zip",
  5302. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  5303. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  5304. "shasum": "",
  5305. "mirrors": [
  5306. {
  5307. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5308. "preferred": true
  5309. }
  5310. ]
  5311. },
  5312. "require": {
  5313. "php": "^7.2 || ^8.0"
  5314. },
  5315. "type": "library",
  5316. "extra": {
  5317. "branch-alias": {
  5318. "dev-2.x": "2.x-dev"
  5319. }
  5320. },
  5321. "autoload": {
  5322. "psr-4": {
  5323. "phpDocumentor\\Reflection\\": "src/"
  5324. }
  5325. },
  5326. "notification-url": "https://packagist.org/downloads/",
  5327. "license": [
  5328. "MIT"
  5329. ],
  5330. "authors": [
  5331. {
  5332. "name": "Jaap van Otterdijk",
  5333. "email": "opensource@ijaap.nl"
  5334. }
  5335. ],
  5336. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  5337. "homepage": "http://www.phpdoc.org",
  5338. "keywords": [
  5339. "FQSEN",
  5340. "phpDocumentor",
  5341. "phpdoc",
  5342. "reflection",
  5343. "static analysis"
  5344. ],
  5345. "support": {
  5346. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  5347. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  5348. },
  5349. "time": "2020-06-27T09:03:43+00:00"
  5350. },
  5351. {
  5352. "name": "phpdocumentor/reflection-docblock",
  5353. "version": "5.3.0",
  5354. "source": {
  5355. "type": "git",
  5356. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  5357. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170"
  5358. },
  5359. "dist": {
  5360. "type": "zip",
  5361. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170",
  5362. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170",
  5363. "shasum": "",
  5364. "mirrors": [
  5365. {
  5366. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5367. "preferred": true
  5368. }
  5369. ]
  5370. },
  5371. "require": {
  5372. "ext-filter": "*",
  5373. "php": "^7.2 || ^8.0",
  5374. "phpdocumentor/reflection-common": "^2.2",
  5375. "phpdocumentor/type-resolver": "^1.3",
  5376. "webmozart/assert": "^1.9.1"
  5377. },
  5378. "require-dev": {
  5379. "mockery/mockery": "~1.3.2",
  5380. "psalm/phar": "^4.8"
  5381. },
  5382. "type": "library",
  5383. "extra": {
  5384. "branch-alias": {
  5385. "dev-master": "5.x-dev"
  5386. }
  5387. },
  5388. "autoload": {
  5389. "psr-4": {
  5390. "phpDocumentor\\Reflection\\": "src"
  5391. }
  5392. },
  5393. "notification-url": "https://packagist.org/downloads/",
  5394. "license": [
  5395. "MIT"
  5396. ],
  5397. "authors": [
  5398. {
  5399. "name": "Mike van Riel",
  5400. "email": "me@mikevanriel.com"
  5401. },
  5402. {
  5403. "name": "Jaap van Otterdijk",
  5404. "email": "account@ijaap.nl"
  5405. }
  5406. ],
  5407. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  5408. "support": {
  5409. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  5410. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0"
  5411. },
  5412. "time": "2021-10-19T17:43:47+00:00"
  5413. },
  5414. {
  5415. "name": "phpdocumentor/type-resolver",
  5416. "version": "1.6.1",
  5417. "source": {
  5418. "type": "git",
  5419. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  5420. "reference": "77a32518733312af16a44300404e945338981de3"
  5421. },
  5422. "dist": {
  5423. "type": "zip",
  5424. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/77a32518733312af16a44300404e945338981de3",
  5425. "reference": "77a32518733312af16a44300404e945338981de3",
  5426. "shasum": "",
  5427. "mirrors": [
  5428. {
  5429. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5430. "preferred": true
  5431. }
  5432. ]
  5433. },
  5434. "require": {
  5435. "php": "^7.2 || ^8.0",
  5436. "phpdocumentor/reflection-common": "^2.0"
  5437. },
  5438. "require-dev": {
  5439. "ext-tokenizer": "*",
  5440. "psalm/phar": "^4.8"
  5441. },
  5442. "type": "library",
  5443. "extra": {
  5444. "branch-alias": {
  5445. "dev-1.x": "1.x-dev"
  5446. }
  5447. },
  5448. "autoload": {
  5449. "psr-4": {
  5450. "phpDocumentor\\Reflection\\": "src"
  5451. }
  5452. },
  5453. "notification-url": "https://packagist.org/downloads/",
  5454. "license": [
  5455. "MIT"
  5456. ],
  5457. "authors": [
  5458. {
  5459. "name": "Mike van Riel",
  5460. "email": "me@mikevanriel.com"
  5461. }
  5462. ],
  5463. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  5464. "support": {
  5465. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  5466. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.6.1"
  5467. },
  5468. "time": "2022-03-15T21:29:03+00:00"
  5469. },
  5470. {
  5471. "name": "phpoption/phpoption",
  5472. "version": "1.8.1",
  5473. "source": {
  5474. "type": "git",
  5475. "url": "https://github.com/schmittjoh/php-option.git",
  5476. "reference": "eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15"
  5477. },
  5478. "dist": {
  5479. "type": "zip",
  5480. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15",
  5481. "reference": "eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15",
  5482. "shasum": "",
  5483. "mirrors": [
  5484. {
  5485. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5486. "preferred": true
  5487. }
  5488. ]
  5489. },
  5490. "require": {
  5491. "php": "^7.0 || ^8.0"
  5492. },
  5493. "require-dev": {
  5494. "bamarni/composer-bin-plugin": "^1.4.1",
  5495. "phpunit/phpunit": "^6.5.14 || ^7.5.20 || ^8.5.19 || ^9.5.8"
  5496. },
  5497. "type": "library",
  5498. "extra": {
  5499. "branch-alias": {
  5500. "dev-master": "1.8-dev"
  5501. }
  5502. },
  5503. "autoload": {
  5504. "psr-4": {
  5505. "PhpOption\\": "src/PhpOption/"
  5506. }
  5507. },
  5508. "notification-url": "https://packagist.org/downloads/",
  5509. "license": [
  5510. "Apache-2.0"
  5511. ],
  5512. "authors": [
  5513. {
  5514. "name": "Johannes M. Schmitt",
  5515. "email": "schmittjoh@gmail.com",
  5516. "homepage": "https://github.com/schmittjoh"
  5517. },
  5518. {
  5519. "name": "Graham Campbell",
  5520. "email": "hello@gjcampbell.co.uk",
  5521. "homepage": "https://github.com/GrahamCampbell"
  5522. }
  5523. ],
  5524. "description": "Option Type for PHP",
  5525. "keywords": [
  5526. "language",
  5527. "option",
  5528. "php",
  5529. "type"
  5530. ],
  5531. "support": {
  5532. "issues": "https://github.com/schmittjoh/php-option/issues",
  5533. "source": "https://github.com/schmittjoh/php-option/tree/1.8.1"
  5534. },
  5535. "funding": [
  5536. {
  5537. "url": "https://github.com/GrahamCampbell",
  5538. "type": "github"
  5539. },
  5540. {
  5541. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  5542. "type": "tidelift"
  5543. }
  5544. ],
  5545. "time": "2021-12-04T23:24:31+00:00"
  5546. },
  5547. {
  5548. "name": "pimple/pimple",
  5549. "version": "v3.5.0",
  5550. "source": {
  5551. "type": "git",
  5552. "url": "https://github.com/silexphp/Pimple.git",
  5553. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed"
  5554. },
  5555. "dist": {
  5556. "type": "zip",
  5557. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  5558. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  5559. "shasum": "",
  5560. "mirrors": [
  5561. {
  5562. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5563. "preferred": true
  5564. }
  5565. ]
  5566. },
  5567. "require": {
  5568. "php": ">=7.2.5",
  5569. "psr/container": "^1.1 || ^2.0"
  5570. },
  5571. "require-dev": {
  5572. "symfony/phpunit-bridge": "^5.4@dev"
  5573. },
  5574. "type": "library",
  5575. "extra": {
  5576. "branch-alias": {
  5577. "dev-master": "3.4.x-dev"
  5578. }
  5579. },
  5580. "autoload": {
  5581. "psr-0": {
  5582. "Pimple": "src/"
  5583. }
  5584. },
  5585. "notification-url": "https://packagist.org/downloads/",
  5586. "license": [
  5587. "MIT"
  5588. ],
  5589. "authors": [
  5590. {
  5591. "name": "Fabien Potencier",
  5592. "email": "fabien@symfony.com"
  5593. }
  5594. ],
  5595. "description": "Pimple, a simple Dependency Injection Container",
  5596. "homepage": "https://pimple.symfony.com",
  5597. "keywords": [
  5598. "container",
  5599. "dependency injection"
  5600. ],
  5601. "support": {
  5602. "source": "https://github.com/silexphp/Pimple/tree/v3.5.0"
  5603. },
  5604. "time": "2021-10-28T11:13:42+00:00"
  5605. },
  5606. {
  5607. "name": "prettus/l5-repository",
  5608. "version": "2.8.0",
  5609. "source": {
  5610. "type": "git",
  5611. "url": "https://github.com/andersao/l5-repository.git",
  5612. "reference": "bdaf12dcf1fcc2637ccbe06999f789a9ff522fea"
  5613. },
  5614. "dist": {
  5615. "type": "zip",
  5616. "url": "https://api.github.com/repos/andersao/l5-repository/zipball/bdaf12dcf1fcc2637ccbe06999f789a9ff522fea",
  5617. "reference": "bdaf12dcf1fcc2637ccbe06999f789a9ff522fea",
  5618. "shasum": "",
  5619. "mirrors": [
  5620. {
  5621. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5622. "preferred": true
  5623. }
  5624. ]
  5625. },
  5626. "require": {
  5627. "illuminate/config": "~5.0|~6.0|~7.0|^8.0|^9.0",
  5628. "illuminate/console": "~5.0|~6.0|~7.0|^8.0|^9.0",
  5629. "illuminate/database": "~5.0|~6.0|~7.0|^8.0|^9.0",
  5630. "illuminate/filesystem": "~5.0|~6.0|~7.0|^8.0|^9.0",
  5631. "illuminate/http": "~5.0|~6.0|~7.0|^8.0|^9.0",
  5632. "illuminate/pagination": "~5.0|~6.0|~7.0|^8.0|^9.0",
  5633. "illuminate/support": "~5.0|~6.0|~7.0|^8.0|^9.0",
  5634. "illuminate/validation": "~5.0|~6.0|~7.0|^8.0|^9.0",
  5635. "prettus/laravel-validation": "~1.1|~1.2|~1.3|~1.4"
  5636. },
  5637. "suggest": {
  5638. "league/fractal": "Required to use the Fractal Presenter (0.12.*).",
  5639. "prettus/laravel-validation": "Required to provide easy validation with the repository (1.1.*)",
  5640. "robclancy/presenter": "Required to use the Presenter Model (1.3.*)"
  5641. },
  5642. "type": "library",
  5643. "extra": {
  5644. "laravel": {
  5645. "providers": [
  5646. "Prettus\\Repository\\Providers\\RepositoryServiceProvider"
  5647. ]
  5648. }
  5649. },
  5650. "autoload": {
  5651. "psr-4": {
  5652. "Prettus\\Repository\\": "src/Prettus/Repository/"
  5653. }
  5654. },
  5655. "notification-url": "https://packagist.org/downloads/",
  5656. "license": [
  5657. "MIT"
  5658. ],
  5659. "authors": [
  5660. {
  5661. "name": "Anderson Andrade",
  5662. "email": "contato@andersonandra.de",
  5663. "homepage": "http://andersonandra.de",
  5664. "role": "Developer"
  5665. }
  5666. ],
  5667. "description": "Laravel 5|6|7|8|9 - Repositories to the database layer",
  5668. "homepage": "http://andersao.github.io/l5-repository",
  5669. "keywords": [
  5670. "cache",
  5671. "eloquent",
  5672. "laravel",
  5673. "model",
  5674. "repository"
  5675. ],
  5676. "support": {
  5677. "docs": "http://andersao.github.io/l5-repository",
  5678. "email": "contato@andersonandra.de",
  5679. "issues": "https://github.com/andersao/l5-repository/issues",
  5680. "source": "https://github.com/andersao/l5-repository",
  5681. "wiki": "https://github.com/andersao/l5-repository"
  5682. },
  5683. "time": "2022-02-21T11:19:35+00:00"
  5684. },
  5685. {
  5686. "name": "prettus/laravel-validation",
  5687. "version": "1.4.0",
  5688. "source": {
  5689. "type": "git",
  5690. "url": "https://github.com/andersao/laravel-validator.git",
  5691. "reference": "45d6b64e35d966aa0866d6f5fd22ecbb33ea41d9"
  5692. },
  5693. "dist": {
  5694. "type": "zip",
  5695. "url": "https://api.github.com/repos/andersao/laravel-validator/zipball/45d6b64e35d966aa0866d6f5fd22ecbb33ea41d9",
  5696. "reference": "45d6b64e35d966aa0866d6f5fd22ecbb33ea41d9",
  5697. "shasum": "",
  5698. "mirrors": [
  5699. {
  5700. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5701. "preferred": true
  5702. }
  5703. ]
  5704. },
  5705. "require": {
  5706. "illuminate/support": "~5.4|^6.0|^7.0|^8.0|^9.0",
  5707. "illuminate/validation": "~5.4|^6.0|^7.0|^8.0|^9.0",
  5708. "php": ">=5.4.0"
  5709. },
  5710. "type": "library",
  5711. "autoload": {
  5712. "psr-4": {
  5713. "Prettus\\Validator\\": "src/Prettus/Validator/"
  5714. }
  5715. },
  5716. "notification-url": "https://packagist.org/downloads/",
  5717. "authors": [
  5718. {
  5719. "name": "Anderson Andrade",
  5720. "email": "contato@andersonandra.de",
  5721. "homepage": "http://andersonandra.de",
  5722. "role": "Developer"
  5723. }
  5724. ],
  5725. "description": "Laravel Validation Service",
  5726. "homepage": "http://andersao.github.io/laravel-validation",
  5727. "keywords": [
  5728. "laravel",
  5729. "service",
  5730. "validation"
  5731. ],
  5732. "support": {
  5733. "docs": "http://andersao.github.io/laravel-validation",
  5734. "email": "contato@andersonandra.de",
  5735. "issues": "https://github.com/andersao/laravel-validation/issues",
  5736. "source": "https://github.com/andersao/laravel-validation",
  5737. "wiki": "https://github.com/andersao/laravel-validation"
  5738. },
  5739. "time": "2022-02-21T11:18:30+00:00"
  5740. },
  5741. {
  5742. "name": "psr/cache",
  5743. "version": "2.0.0",
  5744. "source": {
  5745. "type": "git",
  5746. "url": "https://github.com/php-fig/cache.git",
  5747. "reference": "213f9dbc5b9bfbc4f8db86d2838dc968752ce13b"
  5748. },
  5749. "dist": {
  5750. "type": "zip",
  5751. "url": "https://api.github.com/repos/php-fig/cache/zipball/213f9dbc5b9bfbc4f8db86d2838dc968752ce13b",
  5752. "reference": "213f9dbc5b9bfbc4f8db86d2838dc968752ce13b",
  5753. "shasum": "",
  5754. "mirrors": [
  5755. {
  5756. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5757. "preferred": true
  5758. }
  5759. ]
  5760. },
  5761. "require": {
  5762. "php": ">=8.0.0"
  5763. },
  5764. "type": "library",
  5765. "extra": {
  5766. "branch-alias": {
  5767. "dev-master": "1.0.x-dev"
  5768. }
  5769. },
  5770. "autoload": {
  5771. "psr-4": {
  5772. "Psr\\Cache\\": "src/"
  5773. }
  5774. },
  5775. "notification-url": "https://packagist.org/downloads/",
  5776. "license": [
  5777. "MIT"
  5778. ],
  5779. "authors": [
  5780. {
  5781. "name": "PHP-FIG",
  5782. "homepage": "https://www.php-fig.org/"
  5783. }
  5784. ],
  5785. "description": "Common interface for caching libraries",
  5786. "keywords": [
  5787. "cache",
  5788. "psr",
  5789. "psr-6"
  5790. ],
  5791. "support": {
  5792. "source": "https://github.com/php-fig/cache/tree/2.0.0"
  5793. },
  5794. "time": "2021-02-03T23:23:37+00:00"
  5795. },
  5796. {
  5797. "name": "psr/container",
  5798. "version": "1.1.2",
  5799. "source": {
  5800. "type": "git",
  5801. "url": "https://github.com/php-fig/container.git",
  5802. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  5803. },
  5804. "dist": {
  5805. "type": "zip",
  5806. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  5807. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  5808. "shasum": "",
  5809. "mirrors": [
  5810. {
  5811. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5812. "preferred": true
  5813. }
  5814. ]
  5815. },
  5816. "require": {
  5817. "php": ">=7.4.0"
  5818. },
  5819. "type": "library",
  5820. "autoload": {
  5821. "psr-4": {
  5822. "Psr\\Container\\": "src/"
  5823. }
  5824. },
  5825. "notification-url": "https://packagist.org/downloads/",
  5826. "license": [
  5827. "MIT"
  5828. ],
  5829. "authors": [
  5830. {
  5831. "name": "PHP-FIG",
  5832. "homepage": "https://www.php-fig.org/"
  5833. }
  5834. ],
  5835. "description": "Common Container Interface (PHP FIG PSR-11)",
  5836. "homepage": "https://github.com/php-fig/container",
  5837. "keywords": [
  5838. "PSR-11",
  5839. "container",
  5840. "container-interface",
  5841. "container-interop",
  5842. "psr"
  5843. ],
  5844. "support": {
  5845. "issues": "https://github.com/php-fig/container/issues",
  5846. "source": "https://github.com/php-fig/container/tree/1.1.2"
  5847. },
  5848. "time": "2021-11-05T16:50:12+00:00"
  5849. },
  5850. {
  5851. "name": "psr/event-dispatcher",
  5852. "version": "1.0.0",
  5853. "source": {
  5854. "type": "git",
  5855. "url": "https://github.com/php-fig/event-dispatcher.git",
  5856. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  5857. },
  5858. "dist": {
  5859. "type": "zip",
  5860. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5861. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5862. "shasum": "",
  5863. "mirrors": [
  5864. {
  5865. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5866. "preferred": true
  5867. }
  5868. ]
  5869. },
  5870. "require": {
  5871. "php": ">=7.2.0"
  5872. },
  5873. "type": "library",
  5874. "extra": {
  5875. "branch-alias": {
  5876. "dev-master": "1.0.x-dev"
  5877. }
  5878. },
  5879. "autoload": {
  5880. "psr-4": {
  5881. "Psr\\EventDispatcher\\": "src/"
  5882. }
  5883. },
  5884. "notification-url": "https://packagist.org/downloads/",
  5885. "license": [
  5886. "MIT"
  5887. ],
  5888. "authors": [
  5889. {
  5890. "name": "PHP-FIG",
  5891. "homepage": "http://www.php-fig.org/"
  5892. }
  5893. ],
  5894. "description": "Standard interfaces for event handling.",
  5895. "keywords": [
  5896. "events",
  5897. "psr",
  5898. "psr-14"
  5899. ],
  5900. "support": {
  5901. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  5902. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  5903. },
  5904. "time": "2019-01-08T18:20:26+00:00"
  5905. },
  5906. {
  5907. "name": "psr/http-client",
  5908. "version": "1.0.1",
  5909. "source": {
  5910. "type": "git",
  5911. "url": "https://github.com/php-fig/http-client.git",
  5912. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  5913. },
  5914. "dist": {
  5915. "type": "zip",
  5916. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  5917. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  5918. "shasum": "",
  5919. "mirrors": [
  5920. {
  5921. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5922. "preferred": true
  5923. }
  5924. ]
  5925. },
  5926. "require": {
  5927. "php": "^7.0 || ^8.0",
  5928. "psr/http-message": "^1.0"
  5929. },
  5930. "type": "library",
  5931. "extra": {
  5932. "branch-alias": {
  5933. "dev-master": "1.0.x-dev"
  5934. }
  5935. },
  5936. "autoload": {
  5937. "psr-4": {
  5938. "Psr\\Http\\Client\\": "src/"
  5939. }
  5940. },
  5941. "notification-url": "https://packagist.org/downloads/",
  5942. "license": [
  5943. "MIT"
  5944. ],
  5945. "authors": [
  5946. {
  5947. "name": "PHP-FIG",
  5948. "homepage": "http://www.php-fig.org/"
  5949. }
  5950. ],
  5951. "description": "Common interface for HTTP clients",
  5952. "homepage": "https://github.com/php-fig/http-client",
  5953. "keywords": [
  5954. "http",
  5955. "http-client",
  5956. "psr",
  5957. "psr-18"
  5958. ],
  5959. "support": {
  5960. "source": "https://github.com/php-fig/http-client/tree/master"
  5961. },
  5962. "time": "2020-06-29T06:28:15+00:00"
  5963. },
  5964. {
  5965. "name": "psr/http-factory",
  5966. "version": "1.0.1",
  5967. "source": {
  5968. "type": "git",
  5969. "url": "https://github.com/php-fig/http-factory.git",
  5970. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  5971. },
  5972. "dist": {
  5973. "type": "zip",
  5974. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  5975. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  5976. "shasum": "",
  5977. "mirrors": [
  5978. {
  5979. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5980. "preferred": true
  5981. }
  5982. ]
  5983. },
  5984. "require": {
  5985. "php": ">=7.0.0",
  5986. "psr/http-message": "^1.0"
  5987. },
  5988. "type": "library",
  5989. "extra": {
  5990. "branch-alias": {
  5991. "dev-master": "1.0.x-dev"
  5992. }
  5993. },
  5994. "autoload": {
  5995. "psr-4": {
  5996. "Psr\\Http\\Message\\": "src/"
  5997. }
  5998. },
  5999. "notification-url": "https://packagist.org/downloads/",
  6000. "license": [
  6001. "MIT"
  6002. ],
  6003. "authors": [
  6004. {
  6005. "name": "PHP-FIG",
  6006. "homepage": "http://www.php-fig.org/"
  6007. }
  6008. ],
  6009. "description": "Common interfaces for PSR-7 HTTP message factories",
  6010. "keywords": [
  6011. "factory",
  6012. "http",
  6013. "message",
  6014. "psr",
  6015. "psr-17",
  6016. "psr-7",
  6017. "request",
  6018. "response"
  6019. ],
  6020. "support": {
  6021. "source": "https://github.com/php-fig/http-factory/tree/master"
  6022. },
  6023. "time": "2019-04-30T12:38:16+00:00"
  6024. },
  6025. {
  6026. "name": "psr/http-message",
  6027. "version": "1.0.1",
  6028. "source": {
  6029. "type": "git",
  6030. "url": "https://github.com/php-fig/http-message.git",
  6031. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  6032. },
  6033. "dist": {
  6034. "type": "zip",
  6035. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  6036. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  6037. "shasum": "",
  6038. "mirrors": [
  6039. {
  6040. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6041. "preferred": true
  6042. }
  6043. ]
  6044. },
  6045. "require": {
  6046. "php": ">=5.3.0"
  6047. },
  6048. "type": "library",
  6049. "extra": {
  6050. "branch-alias": {
  6051. "dev-master": "1.0.x-dev"
  6052. }
  6053. },
  6054. "autoload": {
  6055. "psr-4": {
  6056. "Psr\\Http\\Message\\": "src/"
  6057. }
  6058. },
  6059. "notification-url": "https://packagist.org/downloads/",
  6060. "license": [
  6061. "MIT"
  6062. ],
  6063. "authors": [
  6064. {
  6065. "name": "PHP-FIG",
  6066. "homepage": "http://www.php-fig.org/"
  6067. }
  6068. ],
  6069. "description": "Common interface for HTTP messages",
  6070. "homepage": "https://github.com/php-fig/http-message",
  6071. "keywords": [
  6072. "http",
  6073. "http-message",
  6074. "psr",
  6075. "psr-7",
  6076. "request",
  6077. "response"
  6078. ],
  6079. "support": {
  6080. "source": "https://github.com/php-fig/http-message/tree/master"
  6081. },
  6082. "time": "2016-08-06T14:39:51+00:00"
  6083. },
  6084. {
  6085. "name": "psr/log",
  6086. "version": "2.0.0",
  6087. "source": {
  6088. "type": "git",
  6089. "url": "https://github.com/php-fig/log.git",
  6090. "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376"
  6091. },
  6092. "dist": {
  6093. "type": "zip",
  6094. "url": "https://api.github.com/repos/php-fig/log/zipball/ef29f6d262798707a9edd554e2b82517ef3a9376",
  6095. "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376",
  6096. "shasum": "",
  6097. "mirrors": [
  6098. {
  6099. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6100. "preferred": true
  6101. }
  6102. ]
  6103. },
  6104. "require": {
  6105. "php": ">=8.0.0"
  6106. },
  6107. "type": "library",
  6108. "extra": {
  6109. "branch-alias": {
  6110. "dev-master": "2.0.x-dev"
  6111. }
  6112. },
  6113. "autoload": {
  6114. "psr-4": {
  6115. "Psr\\Log\\": "src"
  6116. }
  6117. },
  6118. "notification-url": "https://packagist.org/downloads/",
  6119. "license": [
  6120. "MIT"
  6121. ],
  6122. "authors": [
  6123. {
  6124. "name": "PHP-FIG",
  6125. "homepage": "https://www.php-fig.org/"
  6126. }
  6127. ],
  6128. "description": "Common interface for logging libraries",
  6129. "homepage": "https://github.com/php-fig/log",
  6130. "keywords": [
  6131. "log",
  6132. "psr",
  6133. "psr-3"
  6134. ],
  6135. "support": {
  6136. "source": "https://github.com/php-fig/log/tree/2.0.0"
  6137. },
  6138. "time": "2021-07-14T16:41:46+00:00"
  6139. },
  6140. {
  6141. "name": "psr/simple-cache",
  6142. "version": "1.0.1",
  6143. "source": {
  6144. "type": "git",
  6145. "url": "https://github.com/php-fig/simple-cache.git",
  6146. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  6147. },
  6148. "dist": {
  6149. "type": "zip",
  6150. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  6151. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  6152. "shasum": "",
  6153. "mirrors": [
  6154. {
  6155. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6156. "preferred": true
  6157. }
  6158. ]
  6159. },
  6160. "require": {
  6161. "php": ">=5.3.0"
  6162. },
  6163. "type": "library",
  6164. "extra": {
  6165. "branch-alias": {
  6166. "dev-master": "1.0.x-dev"
  6167. }
  6168. },
  6169. "autoload": {
  6170. "psr-4": {
  6171. "Psr\\SimpleCache\\": "src/"
  6172. }
  6173. },
  6174. "notification-url": "https://packagist.org/downloads/",
  6175. "license": [
  6176. "MIT"
  6177. ],
  6178. "authors": [
  6179. {
  6180. "name": "PHP-FIG",
  6181. "homepage": "http://www.php-fig.org/"
  6182. }
  6183. ],
  6184. "description": "Common interfaces for simple caching",
  6185. "keywords": [
  6186. "cache",
  6187. "caching",
  6188. "psr",
  6189. "psr-16",
  6190. "simple-cache"
  6191. ],
  6192. "support": {
  6193. "source": "https://github.com/php-fig/simple-cache/tree/master"
  6194. },
  6195. "time": "2017-10-23T01:57:42+00:00"
  6196. },
  6197. {
  6198. "name": "psy/psysh",
  6199. "version": "v0.11.8",
  6200. "source": {
  6201. "type": "git",
  6202. "url": "https://github.com/bobthecow/psysh.git",
  6203. "reference": "f455acf3645262ae389b10e9beba0c358aa6994e"
  6204. },
  6205. "dist": {
  6206. "type": "zip",
  6207. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/f455acf3645262ae389b10e9beba0c358aa6994e",
  6208. "reference": "f455acf3645262ae389b10e9beba0c358aa6994e",
  6209. "shasum": "",
  6210. "mirrors": [
  6211. {
  6212. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6213. "preferred": true
  6214. }
  6215. ]
  6216. },
  6217. "require": {
  6218. "ext-json": "*",
  6219. "ext-tokenizer": "*",
  6220. "nikic/php-parser": "^4.0 || ^3.1",
  6221. "php": "^8.0 || ^7.0.8",
  6222. "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
  6223. "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
  6224. },
  6225. "conflict": {
  6226. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  6227. },
  6228. "require-dev": {
  6229. "bamarni/composer-bin-plugin": "^1.2"
  6230. },
  6231. "suggest": {
  6232. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  6233. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  6234. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  6235. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history."
  6236. },
  6237. "bin": [
  6238. "bin/psysh"
  6239. ],
  6240. "type": "library",
  6241. "extra": {
  6242. "branch-alias": {
  6243. "dev-main": "0.11.x-dev"
  6244. }
  6245. },
  6246. "autoload": {
  6247. "files": [
  6248. "src/functions.php"
  6249. ],
  6250. "psr-4": {
  6251. "Psy\\": "src/"
  6252. }
  6253. },
  6254. "notification-url": "https://packagist.org/downloads/",
  6255. "license": [
  6256. "MIT"
  6257. ],
  6258. "authors": [
  6259. {
  6260. "name": "Justin Hileman",
  6261. "email": "justin@justinhileman.info",
  6262. "homepage": "http://justinhileman.com"
  6263. }
  6264. ],
  6265. "description": "An interactive shell for modern PHP.",
  6266. "homepage": "http://psysh.org",
  6267. "keywords": [
  6268. "REPL",
  6269. "console",
  6270. "interactive",
  6271. "shell"
  6272. ],
  6273. "support": {
  6274. "issues": "https://github.com/bobthecow/psysh/issues",
  6275. "source": "https://github.com/bobthecow/psysh/tree/v0.11.8"
  6276. },
  6277. "time": "2022-07-28T14:25:11+00:00"
  6278. },
  6279. {
  6280. "name": "ralouphie/getallheaders",
  6281. "version": "3.0.3",
  6282. "source": {
  6283. "type": "git",
  6284. "url": "https://github.com/ralouphie/getallheaders.git",
  6285. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  6286. },
  6287. "dist": {
  6288. "type": "zip",
  6289. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  6290. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  6291. "shasum": "",
  6292. "mirrors": [
  6293. {
  6294. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6295. "preferred": true
  6296. }
  6297. ]
  6298. },
  6299. "require": {
  6300. "php": ">=5.6"
  6301. },
  6302. "require-dev": {
  6303. "php-coveralls/php-coveralls": "^2.1",
  6304. "phpunit/phpunit": "^5 || ^6.5"
  6305. },
  6306. "type": "library",
  6307. "autoload": {
  6308. "files": [
  6309. "src/getallheaders.php"
  6310. ]
  6311. },
  6312. "notification-url": "https://packagist.org/downloads/",
  6313. "license": [
  6314. "MIT"
  6315. ],
  6316. "authors": [
  6317. {
  6318. "name": "Ralph Khattar",
  6319. "email": "ralph.khattar@gmail.com"
  6320. }
  6321. ],
  6322. "description": "A polyfill for getallheaders.",
  6323. "support": {
  6324. "issues": "https://github.com/ralouphie/getallheaders/issues",
  6325. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  6326. },
  6327. "time": "2019-03-08T08:55:37+00:00"
  6328. },
  6329. {
  6330. "name": "ramsey/collection",
  6331. "version": "1.2.2",
  6332. "source": {
  6333. "type": "git",
  6334. "url": "https://github.com/ramsey/collection.git",
  6335. "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a"
  6336. },
  6337. "dist": {
  6338. "type": "zip",
  6339. "url": "https://api.github.com/repos/ramsey/collection/zipball/cccc74ee5e328031b15640b51056ee8d3bb66c0a",
  6340. "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a",
  6341. "shasum": "",
  6342. "mirrors": [
  6343. {
  6344. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6345. "preferred": true
  6346. }
  6347. ]
  6348. },
  6349. "require": {
  6350. "php": "^7.3 || ^8",
  6351. "symfony/polyfill-php81": "^1.23"
  6352. },
  6353. "require-dev": {
  6354. "captainhook/captainhook": "^5.3",
  6355. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  6356. "ergebnis/composer-normalize": "^2.6",
  6357. "fakerphp/faker": "^1.5",
  6358. "hamcrest/hamcrest-php": "^2",
  6359. "jangregor/phpstan-prophecy": "^0.8",
  6360. "mockery/mockery": "^1.3",
  6361. "phpspec/prophecy-phpunit": "^2.0",
  6362. "phpstan/extension-installer": "^1",
  6363. "phpstan/phpstan": "^0.12.32",
  6364. "phpstan/phpstan-mockery": "^0.12.5",
  6365. "phpstan/phpstan-phpunit": "^0.12.11",
  6366. "phpunit/phpunit": "^8.5 || ^9",
  6367. "psy/psysh": "^0.10.4",
  6368. "slevomat/coding-standard": "^6.3",
  6369. "squizlabs/php_codesniffer": "^3.5",
  6370. "vimeo/psalm": "^4.4"
  6371. },
  6372. "type": "library",
  6373. "autoload": {
  6374. "psr-4": {
  6375. "Ramsey\\Collection\\": "src/"
  6376. }
  6377. },
  6378. "notification-url": "https://packagist.org/downloads/",
  6379. "license": [
  6380. "MIT"
  6381. ],
  6382. "authors": [
  6383. {
  6384. "name": "Ben Ramsey",
  6385. "email": "ben@benramsey.com",
  6386. "homepage": "https://benramsey.com"
  6387. }
  6388. ],
  6389. "description": "A PHP library for representing and manipulating collections.",
  6390. "keywords": [
  6391. "array",
  6392. "collection",
  6393. "hash",
  6394. "map",
  6395. "queue",
  6396. "set"
  6397. ],
  6398. "support": {
  6399. "issues": "https://github.com/ramsey/collection/issues",
  6400. "source": "https://github.com/ramsey/collection/tree/1.2.2"
  6401. },
  6402. "funding": [
  6403. {
  6404. "url": "https://github.com/ramsey",
  6405. "type": "github"
  6406. },
  6407. {
  6408. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  6409. "type": "tidelift"
  6410. }
  6411. ],
  6412. "time": "2021-10-10T03:01:02+00:00"
  6413. },
  6414. {
  6415. "name": "ramsey/uuid",
  6416. "version": "4.4.0",
  6417. "source": {
  6418. "type": "git",
  6419. "url": "https://github.com/ramsey/uuid.git",
  6420. "reference": "373f7bacfcf3de038778ff27dcce5672ddbf4c8a"
  6421. },
  6422. "dist": {
  6423. "type": "zip",
  6424. "url": "https://api.github.com/repos/ramsey/uuid/zipball/373f7bacfcf3de038778ff27dcce5672ddbf4c8a",
  6425. "reference": "373f7bacfcf3de038778ff27dcce5672ddbf4c8a",
  6426. "shasum": "",
  6427. "mirrors": [
  6428. {
  6429. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6430. "preferred": true
  6431. }
  6432. ]
  6433. },
  6434. "require": {
  6435. "brick/math": "^0.8 || ^0.9 || ^0.10",
  6436. "ext-ctype": "*",
  6437. "ext-json": "*",
  6438. "php": "^8.0",
  6439. "ramsey/collection": "^1.0"
  6440. },
  6441. "replace": {
  6442. "rhumsaa/uuid": "self.version"
  6443. },
  6444. "require-dev": {
  6445. "captainhook/captainhook": "^5.10",
  6446. "captainhook/plugin-composer": "^5.3",
  6447. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  6448. "doctrine/annotations": "^1.8",
  6449. "ergebnis/composer-normalize": "^2.15",
  6450. "mockery/mockery": "^1.3",
  6451. "paragonie/random-lib": "^2",
  6452. "php-mock/php-mock": "^2.2",
  6453. "php-mock/php-mock-mockery": "^1.3",
  6454. "php-parallel-lint/php-parallel-lint": "^1.1",
  6455. "phpbench/phpbench": "^1.0",
  6456. "phpstan/extension-installer": "^1.0",
  6457. "phpstan/phpstan": "^0.12",
  6458. "phpstan/phpstan-mockery": "^0.12",
  6459. "phpstan/phpstan-phpunit": "^0.12",
  6460. "phpunit/phpunit": "^8.5 || ^9",
  6461. "slevomat/coding-standard": "^7.0",
  6462. "squizlabs/php_codesniffer": "^3.5",
  6463. "vimeo/psalm": "^4.9"
  6464. },
  6465. "suggest": {
  6466. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  6467. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  6468. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  6469. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  6470. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  6471. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  6472. },
  6473. "type": "library",
  6474. "extra": {
  6475. "captainhook": {
  6476. "force-install": true
  6477. }
  6478. },
  6479. "autoload": {
  6480. "files": [
  6481. "src/functions.php"
  6482. ],
  6483. "psr-4": {
  6484. "Ramsey\\Uuid\\": "src/"
  6485. }
  6486. },
  6487. "notification-url": "https://packagist.org/downloads/",
  6488. "license": [
  6489. "MIT"
  6490. ],
  6491. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  6492. "keywords": [
  6493. "guid",
  6494. "identifier",
  6495. "uuid"
  6496. ],
  6497. "support": {
  6498. "issues": "https://github.com/ramsey/uuid/issues",
  6499. "source": "https://github.com/ramsey/uuid/tree/4.4.0"
  6500. },
  6501. "funding": [
  6502. {
  6503. "url": "https://github.com/ramsey",
  6504. "type": "github"
  6505. },
  6506. {
  6507. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  6508. "type": "tidelift"
  6509. }
  6510. ],
  6511. "time": "2022-08-05T17:58:37+00:00"
  6512. },
  6513. {
  6514. "name": "socialiteproviders/facebook",
  6515. "version": "4.1.0",
  6516. "source": {
  6517. "type": "git",
  6518. "url": "https://github.com/SocialiteProviders/Facebook.git",
  6519. "reference": "9b94a9334b5d0f61de8f5a20928d63d4d8f4e00d"
  6520. },
  6521. "dist": {
  6522. "type": "zip",
  6523. "url": "https://api.github.com/repos/SocialiteProviders/Facebook/zipball/9b94a9334b5d0f61de8f5a20928d63d4d8f4e00d",
  6524. "reference": "9b94a9334b5d0f61de8f5a20928d63d4d8f4e00d",
  6525. "shasum": "",
  6526. "mirrors": [
  6527. {
  6528. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6529. "preferred": true
  6530. }
  6531. ]
  6532. },
  6533. "require": {
  6534. "ext-json": "*",
  6535. "php": "^7.2 || ^8.0",
  6536. "socialiteproviders/manager": "~4.0"
  6537. },
  6538. "type": "library",
  6539. "autoload": {
  6540. "psr-4": {
  6541. "SocialiteProviders\\Facebook\\": ""
  6542. }
  6543. },
  6544. "notification-url": "https://packagist.org/downloads/",
  6545. "license": [
  6546. "MIT"
  6547. ],
  6548. "authors": [
  6549. {
  6550. "name": "Oleksandr Prypkhan (Alex Wells)",
  6551. "email": "autaut03@googlemail.com"
  6552. }
  6553. ],
  6554. "description": "Facebook (facebook.com) OAuth2 Provider for Laravel Socialite",
  6555. "support": {
  6556. "source": "https://github.com/SocialiteProviders/Facebook/tree/4.1.0"
  6557. },
  6558. "time": "2020-12-01T23:10:59+00:00"
  6559. },
  6560. {
  6561. "name": "socialiteproviders/manager",
  6562. "version": "v4.1.0",
  6563. "source": {
  6564. "type": "git",
  6565. "url": "https://github.com/SocialiteProviders/Manager.git",
  6566. "reference": "4e63afbd26dc45ff263591de2a0970436a6a0bf9"
  6567. },
  6568. "dist": {
  6569. "type": "zip",
  6570. "url": "https://api.github.com/repos/SocialiteProviders/Manager/zipball/4e63afbd26dc45ff263591de2a0970436a6a0bf9",
  6571. "reference": "4e63afbd26dc45ff263591de2a0970436a6a0bf9",
  6572. "shasum": "",
  6573. "mirrors": [
  6574. {
  6575. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6576. "preferred": true
  6577. }
  6578. ]
  6579. },
  6580. "require": {
  6581. "illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.0",
  6582. "laravel/socialite": "~4.0 || ~5.0",
  6583. "php": "^7.2 || ^8.0"
  6584. },
  6585. "require-dev": {
  6586. "mockery/mockery": "^1.2",
  6587. "phpunit/phpunit": "^6.0 || ^9.0"
  6588. },
  6589. "type": "library",
  6590. "extra": {
  6591. "laravel": {
  6592. "providers": [
  6593. "SocialiteProviders\\Manager\\ServiceProvider"
  6594. ]
  6595. }
  6596. },
  6597. "autoload": {
  6598. "psr-4": {
  6599. "SocialiteProviders\\Manager\\": "src/"
  6600. }
  6601. },
  6602. "notification-url": "https://packagist.org/downloads/",
  6603. "license": [
  6604. "MIT"
  6605. ],
  6606. "authors": [
  6607. {
  6608. "name": "Andy Wendt",
  6609. "email": "andy@awendt.com"
  6610. },
  6611. {
  6612. "name": "Anton Komarev",
  6613. "email": "a.komarev@cybercog.su"
  6614. },
  6615. {
  6616. "name": "Miguel Piedrafita",
  6617. "email": "soy@miguelpiedrafita.com"
  6618. },
  6619. {
  6620. "name": "atymic",
  6621. "email": "atymicq@gmail.com",
  6622. "homepage": "https://atymic.dev"
  6623. }
  6624. ],
  6625. "description": "Easily add new or override built-in providers in Laravel Socialite.",
  6626. "homepage": "https://socialiteproviders.com",
  6627. "keywords": [
  6628. "laravel",
  6629. "manager",
  6630. "oauth",
  6631. "providers",
  6632. "socialite"
  6633. ],
  6634. "support": {
  6635. "issues": "https://github.com/socialiteproviders/manager/issues",
  6636. "source": "https://github.com/socialiteproviders/manager"
  6637. },
  6638. "time": "2022-01-23T22:40:23+00:00"
  6639. },
  6640. {
  6641. "name": "socialiteproviders/weixin",
  6642. "version": "4.1.0",
  6643. "source": {
  6644. "type": "git",
  6645. "url": "https://github.com/SocialiteProviders/Weixin.git",
  6646. "reference": "4f5ca3ee25e1a46e0dc6bb00bd6ba77f344e340f"
  6647. },
  6648. "dist": {
  6649. "type": "zip",
  6650. "url": "https://api.github.com/repos/SocialiteProviders/Weixin/zipball/4f5ca3ee25e1a46e0dc6bb00bd6ba77f344e340f",
  6651. "reference": "4f5ca3ee25e1a46e0dc6bb00bd6ba77f344e340f",
  6652. "shasum": "",
  6653. "mirrors": [
  6654. {
  6655. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6656. "preferred": true
  6657. }
  6658. ]
  6659. },
  6660. "require": {
  6661. "ext-json": "*",
  6662. "php": "^7.2 || ^8.0",
  6663. "socialiteproviders/manager": "~4.0"
  6664. },
  6665. "type": "library",
  6666. "autoload": {
  6667. "psr-4": {
  6668. "SocialiteProviders\\Weixin\\": ""
  6669. }
  6670. },
  6671. "notification-url": "https://packagist.org/downloads/",
  6672. "license": [
  6673. "MIT"
  6674. ],
  6675. "authors": [
  6676. {
  6677. "name": "xyxu",
  6678. "email": "techxu@gmail.com"
  6679. },
  6680. {
  6681. "name": "xiami",
  6682. "email": "jhdxr@php.net"
  6683. }
  6684. ],
  6685. "description": "Weixin OAuth2 Provider for Laravel Socialite",
  6686. "support": {
  6687. "source": "https://github.com/SocialiteProviders/Weixin/tree/4.1.0"
  6688. },
  6689. "time": "2020-12-01T23:10:59+00:00"
  6690. },
  6691. {
  6692. "name": "spatie/eloquent-sortable",
  6693. "version": "4.0.1",
  6694. "source": {
  6695. "type": "git",
  6696. "url": "https://github.com/spatie/eloquent-sortable.git",
  6697. "reference": "64a3365c0d5a7b4a1837b2f29d01ee4c578c416a"
  6698. },
  6699. "dist": {
  6700. "type": "zip",
  6701. "url": "https://api.github.com/repos/spatie/eloquent-sortable/zipball/64a3365c0d5a7b4a1837b2f29d01ee4c578c416a",
  6702. "reference": "64a3365c0d5a7b4a1837b2f29d01ee4c578c416a",
  6703. "shasum": "",
  6704. "mirrors": [
  6705. {
  6706. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6707. "preferred": true
  6708. }
  6709. ]
  6710. },
  6711. "require": {
  6712. "illuminate/database": "^8.0|^9.0",
  6713. "illuminate/support": "^8.0|^9.0",
  6714. "php": "^8.0",
  6715. "spatie/laravel-package-tools": "^1.9"
  6716. },
  6717. "require-dev": {
  6718. "orchestra/testbench": "^6.0|^7.0",
  6719. "phpunit/phpunit": "^9.5"
  6720. },
  6721. "type": "library",
  6722. "extra": {
  6723. "laravel": {
  6724. "providers": [
  6725. "Spatie\\EloquentSortable\\EloquentSortableServiceProvider"
  6726. ]
  6727. }
  6728. },
  6729. "autoload": {
  6730. "psr-4": {
  6731. "Spatie\\EloquentSortable\\": "src/"
  6732. }
  6733. },
  6734. "notification-url": "https://packagist.org/downloads/",
  6735. "license": [
  6736. "MIT"
  6737. ],
  6738. "authors": [
  6739. {
  6740. "name": "Freek Van der Herten",
  6741. "email": "freek@spatie.be"
  6742. }
  6743. ],
  6744. "description": "Sortable behaviour for eloquent models",
  6745. "homepage": "https://github.com/spatie/eloquent-sortable",
  6746. "keywords": [
  6747. "behaviour",
  6748. "eloquent",
  6749. "laravel",
  6750. "model",
  6751. "sort",
  6752. "sortable"
  6753. ],
  6754. "support": {
  6755. "issues": "https://github.com/spatie/eloquent-sortable/issues",
  6756. "source": "https://github.com/spatie/eloquent-sortable/tree/4.0.1"
  6757. },
  6758. "funding": [
  6759. {
  6760. "url": "https://spatie.be/open-source/support-us",
  6761. "type": "custom"
  6762. },
  6763. {
  6764. "url": "https://github.com/spatie",
  6765. "type": "github"
  6766. }
  6767. ],
  6768. "time": "2022-01-21T08:32:41+00:00"
  6769. },
  6770. {
  6771. "name": "spatie/laravel-package-tools",
  6772. "version": "1.12.1",
  6773. "source": {
  6774. "type": "git",
  6775. "url": "https://github.com/spatie/laravel-package-tools.git",
  6776. "reference": "09f80fa240d44fafb1c70657c74ee44ffa929357"
  6777. },
  6778. "dist": {
  6779. "type": "zip",
  6780. "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/09f80fa240d44fafb1c70657c74ee44ffa929357",
  6781. "reference": "09f80fa240d44fafb1c70657c74ee44ffa929357",
  6782. "shasum": "",
  6783. "mirrors": [
  6784. {
  6785. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6786. "preferred": true
  6787. }
  6788. ]
  6789. },
  6790. "require": {
  6791. "illuminate/contracts": "^7.0|^8.0|^9.0",
  6792. "php": "^7.4|^8.0"
  6793. },
  6794. "require-dev": {
  6795. "mockery/mockery": "^1.4",
  6796. "orchestra/testbench": "^5.0|^6.23|^7.0",
  6797. "phpunit/phpunit": "^9.4",
  6798. "spatie/test-time": "^1.2"
  6799. },
  6800. "type": "library",
  6801. "autoload": {
  6802. "psr-4": {
  6803. "Spatie\\LaravelPackageTools\\": "src"
  6804. }
  6805. },
  6806. "notification-url": "https://packagist.org/downloads/",
  6807. "license": [
  6808. "MIT"
  6809. ],
  6810. "authors": [
  6811. {
  6812. "name": "Freek Van der Herten",
  6813. "email": "freek@spatie.be",
  6814. "role": "Developer"
  6815. }
  6816. ],
  6817. "description": "Tools for creating Laravel packages",
  6818. "homepage": "https://github.com/spatie/laravel-package-tools",
  6819. "keywords": [
  6820. "laravel-package-tools",
  6821. "spatie"
  6822. ],
  6823. "support": {
  6824. "issues": "https://github.com/spatie/laravel-package-tools/issues",
  6825. "source": "https://github.com/spatie/laravel-package-tools/tree/1.12.1"
  6826. },
  6827. "funding": [
  6828. {
  6829. "url": "https://github.com/spatie",
  6830. "type": "github"
  6831. }
  6832. ],
  6833. "time": "2022-06-28T14:29:26+00:00"
  6834. },
  6835. {
  6836. "name": "stella-maris/clock",
  6837. "version": "0.1.5",
  6838. "source": {
  6839. "type": "git",
  6840. "url": "git@gitlab.com:stella-maris/clock.git",
  6841. "reference": "447879c53ca0b2a762cdbfba5e76ccf4deca9158"
  6842. },
  6843. "dist": {
  6844. "type": "zip",
  6845. "url": "https://gitlab.com/api/v4/projects/stella-maris%2Fclock/repository/archive.zip?sha=447879c53ca0b2a762cdbfba5e76ccf4deca9158",
  6846. "reference": "447879c53ca0b2a762cdbfba5e76ccf4deca9158",
  6847. "shasum": "",
  6848. "mirrors": [
  6849. {
  6850. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6851. "preferred": true
  6852. }
  6853. ]
  6854. },
  6855. "require": {
  6856. "php": "^7.0|^8.0"
  6857. },
  6858. "type": "library",
  6859. "autoload": {
  6860. "psr-4": {
  6861. "StellaMaris\\Clock\\": "src"
  6862. }
  6863. },
  6864. "notification-url": "https://packagist.org/downloads/",
  6865. "license": [
  6866. "MIT"
  6867. ],
  6868. "authors": [
  6869. {
  6870. "name": "Andreas Heigl",
  6871. "role": "Maintainer"
  6872. }
  6873. ],
  6874. "description": "A pre-release of the proposed PSR-20 Clock-Interface",
  6875. "homepage": "https://gitlab.com/stella-maris/clock",
  6876. "keywords": [
  6877. "clock",
  6878. "datetime",
  6879. "point in time",
  6880. "psr20"
  6881. ],
  6882. "time": "2022-08-05T07:21:25+00:00"
  6883. },
  6884. {
  6885. "name": "stomp-php/stomp-php",
  6886. "version": "5.0.0",
  6887. "source": {
  6888. "type": "git",
  6889. "url": "https://github.com/stomp-php/stomp-php.git",
  6890. "reference": "50f6e6e9aa1ba4696faa40cd1cbe180a96679f98"
  6891. },
  6892. "dist": {
  6893. "type": "zip",
  6894. "url": "https://api.github.com/repos/stomp-php/stomp-php/zipball/50f6e6e9aa1ba4696faa40cd1cbe180a96679f98",
  6895. "reference": "50f6e6e9aa1ba4696faa40cd1cbe180a96679f98",
  6896. "shasum": "",
  6897. "mirrors": [
  6898. {
  6899. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6900. "preferred": true
  6901. }
  6902. ]
  6903. },
  6904. "require": {
  6905. "php": "^7.3|^8.0"
  6906. },
  6907. "require-dev": {
  6908. "phpunit/phpunit": "^9.5"
  6909. },
  6910. "type": "library",
  6911. "autoload": {
  6912. "psr-4": {
  6913. "Stomp\\": "src/"
  6914. }
  6915. },
  6916. "notification-url": "https://packagist.org/downloads/",
  6917. "license": [
  6918. "Apache-2.0"
  6919. ],
  6920. "authors": [
  6921. {
  6922. "name": "Dejan Bosnanac",
  6923. "email": "dejan@nighttale.net",
  6924. "homepage": "http://www.nighttale.net"
  6925. },
  6926. {
  6927. "name": "Sören Rohweder",
  6928. "email": "s.rohweder@blage.net",
  6929. "homepage": "http://www.monofone.de"
  6930. },
  6931. {
  6932. "name": "Jens Radtke",
  6933. "email": "swefl@fin-sn.de",
  6934. "homepage": "http://www.fin-sn.de"
  6935. }
  6936. ],
  6937. "description": "stomp support for PHP",
  6938. "homepage": "http://github.com/stomp-php/stomp-php",
  6939. "keywords": [
  6940. "activeMQ",
  6941. "apollomq",
  6942. "jms",
  6943. "messaging",
  6944. "rabbitmq",
  6945. "stomp"
  6946. ],
  6947. "support": {
  6948. "issues": "https://github.com/stomp-php/stomp-php/issues",
  6949. "source": "https://github.com/stomp-php/stomp-php/tree/5.0.0"
  6950. },
  6951. "funding": [
  6952. {
  6953. "url": "https://github.com/jmglsn",
  6954. "type": "github"
  6955. },
  6956. {
  6957. "url": "https://github.com/staabm",
  6958. "type": "github"
  6959. }
  6960. ],
  6961. "time": "2021-02-02T19:25:59+00:00"
  6962. },
  6963. {
  6964. "name": "swiftmailer/swiftmailer",
  6965. "version": "v6.3.0",
  6966. "source": {
  6967. "type": "git",
  6968. "url": "https://github.com/swiftmailer/swiftmailer.git",
  6969. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c"
  6970. },
  6971. "dist": {
  6972. "type": "zip",
  6973. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c",
  6974. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  6975. "shasum": "",
  6976. "mirrors": [
  6977. {
  6978. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6979. "preferred": true
  6980. }
  6981. ]
  6982. },
  6983. "require": {
  6984. "egulias/email-validator": "^2.0|^3.1",
  6985. "php": ">=7.0.0",
  6986. "symfony/polyfill-iconv": "^1.0",
  6987. "symfony/polyfill-intl-idn": "^1.10",
  6988. "symfony/polyfill-mbstring": "^1.0"
  6989. },
  6990. "require-dev": {
  6991. "mockery/mockery": "^1.0",
  6992. "symfony/phpunit-bridge": "^4.4|^5.4"
  6993. },
  6994. "suggest": {
  6995. "ext-intl": "Needed to support internationalized email addresses"
  6996. },
  6997. "type": "library",
  6998. "extra": {
  6999. "branch-alias": {
  7000. "dev-master": "6.2-dev"
  7001. }
  7002. },
  7003. "autoload": {
  7004. "files": [
  7005. "lib/swift_required.php"
  7006. ]
  7007. },
  7008. "notification-url": "https://packagist.org/downloads/",
  7009. "license": [
  7010. "MIT"
  7011. ],
  7012. "authors": [
  7013. {
  7014. "name": "Chris Corbyn"
  7015. },
  7016. {
  7017. "name": "Fabien Potencier",
  7018. "email": "fabien@symfony.com"
  7019. }
  7020. ],
  7021. "description": "Swiftmailer, free feature-rich PHP mailer",
  7022. "homepage": "https://swiftmailer.symfony.com",
  7023. "keywords": [
  7024. "email",
  7025. "mail",
  7026. "mailer"
  7027. ],
  7028. "support": {
  7029. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  7030. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0"
  7031. },
  7032. "funding": [
  7033. {
  7034. "url": "https://github.com/fabpot",
  7035. "type": "github"
  7036. },
  7037. {
  7038. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  7039. "type": "tidelift"
  7040. }
  7041. ],
  7042. "abandoned": "symfony/mailer",
  7043. "time": "2021-10-18T15:26:12+00:00"
  7044. },
  7045. {
  7046. "name": "symfony/cache",
  7047. "version": "v5.4.11",
  7048. "source": {
  7049. "type": "git",
  7050. "url": "https://github.com/symfony/cache.git",
  7051. "reference": "5a0fff46df349f0db3fe242263451fddf5277362"
  7052. },
  7053. "dist": {
  7054. "type": "zip",
  7055. "url": "https://api.github.com/repos/symfony/cache/zipball/5a0fff46df349f0db3fe242263451fddf5277362",
  7056. "reference": "5a0fff46df349f0db3fe242263451fddf5277362",
  7057. "shasum": "",
  7058. "mirrors": [
  7059. {
  7060. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7061. "preferred": true
  7062. }
  7063. ]
  7064. },
  7065. "require": {
  7066. "php": ">=7.2.5",
  7067. "psr/cache": "^1.0|^2.0",
  7068. "psr/log": "^1.1|^2|^3",
  7069. "symfony/cache-contracts": "^1.1.7|^2",
  7070. "symfony/deprecation-contracts": "^2.1|^3",
  7071. "symfony/polyfill-php73": "^1.9",
  7072. "symfony/polyfill-php80": "^1.16",
  7073. "symfony/service-contracts": "^1.1|^2|^3",
  7074. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  7075. },
  7076. "conflict": {
  7077. "doctrine/dbal": "<2.13.1",
  7078. "symfony/dependency-injection": "<4.4",
  7079. "symfony/http-kernel": "<4.4",
  7080. "symfony/var-dumper": "<4.4"
  7081. },
  7082. "provide": {
  7083. "psr/cache-implementation": "1.0|2.0",
  7084. "psr/simple-cache-implementation": "1.0|2.0",
  7085. "symfony/cache-implementation": "1.0|2.0"
  7086. },
  7087. "require-dev": {
  7088. "cache/integration-tests": "dev-master",
  7089. "doctrine/cache": "^1.6|^2.0",
  7090. "doctrine/dbal": "^2.13.1|^3.0",
  7091. "predis/predis": "^1.1",
  7092. "psr/simple-cache": "^1.0|^2.0",
  7093. "symfony/config": "^4.4|^5.0|^6.0",
  7094. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  7095. "symfony/filesystem": "^4.4|^5.0|^6.0",
  7096. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  7097. "symfony/messenger": "^4.4|^5.0|^6.0",
  7098. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  7099. },
  7100. "type": "library",
  7101. "autoload": {
  7102. "psr-4": {
  7103. "Symfony\\Component\\Cache\\": ""
  7104. },
  7105. "exclude-from-classmap": [
  7106. "/Tests/"
  7107. ]
  7108. },
  7109. "notification-url": "https://packagist.org/downloads/",
  7110. "license": [
  7111. "MIT"
  7112. ],
  7113. "authors": [
  7114. {
  7115. "name": "Nicolas Grekas",
  7116. "email": "p@tchwork.com"
  7117. },
  7118. {
  7119. "name": "Symfony Community",
  7120. "homepage": "https://symfony.com/contributors"
  7121. }
  7122. ],
  7123. "description": "Provides an extended PSR-6, PSR-16 (and tags) implementation",
  7124. "homepage": "https://symfony.com",
  7125. "keywords": [
  7126. "caching",
  7127. "psr6"
  7128. ],
  7129. "support": {
  7130. "source": "https://github.com/symfony/cache/tree/v5.4.11"
  7131. },
  7132. "funding": [
  7133. {
  7134. "url": "https://symfony.com/sponsor",
  7135. "type": "custom"
  7136. },
  7137. {
  7138. "url": "https://github.com/fabpot",
  7139. "type": "github"
  7140. },
  7141. {
  7142. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7143. "type": "tidelift"
  7144. }
  7145. ],
  7146. "time": "2022-07-28T15:25:17+00:00"
  7147. },
  7148. {
  7149. "name": "symfony/cache-contracts",
  7150. "version": "v2.5.2",
  7151. "source": {
  7152. "type": "git",
  7153. "url": "https://github.com/symfony/cache-contracts.git",
  7154. "reference": "64be4a7acb83b6f2bf6de9a02cee6dad41277ebc"
  7155. },
  7156. "dist": {
  7157. "type": "zip",
  7158. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/64be4a7acb83b6f2bf6de9a02cee6dad41277ebc",
  7159. "reference": "64be4a7acb83b6f2bf6de9a02cee6dad41277ebc",
  7160. "shasum": "",
  7161. "mirrors": [
  7162. {
  7163. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7164. "preferred": true
  7165. }
  7166. ]
  7167. },
  7168. "require": {
  7169. "php": ">=7.2.5",
  7170. "psr/cache": "^1.0|^2.0|^3.0"
  7171. },
  7172. "suggest": {
  7173. "symfony/cache-implementation": ""
  7174. },
  7175. "type": "library",
  7176. "extra": {
  7177. "branch-alias": {
  7178. "dev-main": "2.5-dev"
  7179. },
  7180. "thanks": {
  7181. "name": "symfony/contracts",
  7182. "url": "https://github.com/symfony/contracts"
  7183. }
  7184. },
  7185. "autoload": {
  7186. "psr-4": {
  7187. "Symfony\\Contracts\\Cache\\": ""
  7188. }
  7189. },
  7190. "notification-url": "https://packagist.org/downloads/",
  7191. "license": [
  7192. "MIT"
  7193. ],
  7194. "authors": [
  7195. {
  7196. "name": "Nicolas Grekas",
  7197. "email": "p@tchwork.com"
  7198. },
  7199. {
  7200. "name": "Symfony Community",
  7201. "homepage": "https://symfony.com/contributors"
  7202. }
  7203. ],
  7204. "description": "Generic abstractions related to caching",
  7205. "homepage": "https://symfony.com",
  7206. "keywords": [
  7207. "abstractions",
  7208. "contracts",
  7209. "decoupling",
  7210. "interfaces",
  7211. "interoperability",
  7212. "standards"
  7213. ],
  7214. "support": {
  7215. "source": "https://github.com/symfony/cache-contracts/tree/v2.5.2"
  7216. },
  7217. "funding": [
  7218. {
  7219. "url": "https://symfony.com/sponsor",
  7220. "type": "custom"
  7221. },
  7222. {
  7223. "url": "https://github.com/fabpot",
  7224. "type": "github"
  7225. },
  7226. {
  7227. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7228. "type": "tidelift"
  7229. }
  7230. ],
  7231. "time": "2022-01-02T09:53:40+00:00"
  7232. },
  7233. {
  7234. "name": "symfony/console",
  7235. "version": "v5.4.11",
  7236. "source": {
  7237. "type": "git",
  7238. "url": "https://github.com/symfony/console.git",
  7239. "reference": "535846c7ee6bc4dd027ca0d93220601456734b10"
  7240. },
  7241. "dist": {
  7242. "type": "zip",
  7243. "url": "https://api.github.com/repos/symfony/console/zipball/535846c7ee6bc4dd027ca0d93220601456734b10",
  7244. "reference": "535846c7ee6bc4dd027ca0d93220601456734b10",
  7245. "shasum": "",
  7246. "mirrors": [
  7247. {
  7248. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7249. "preferred": true
  7250. }
  7251. ]
  7252. },
  7253. "require": {
  7254. "php": ">=7.2.5",
  7255. "symfony/deprecation-contracts": "^2.1|^3",
  7256. "symfony/polyfill-mbstring": "~1.0",
  7257. "symfony/polyfill-php73": "^1.9",
  7258. "symfony/polyfill-php80": "^1.16",
  7259. "symfony/service-contracts": "^1.1|^2|^3",
  7260. "symfony/string": "^5.1|^6.0"
  7261. },
  7262. "conflict": {
  7263. "psr/log": ">=3",
  7264. "symfony/dependency-injection": "<4.4",
  7265. "symfony/dotenv": "<5.1",
  7266. "symfony/event-dispatcher": "<4.4",
  7267. "symfony/lock": "<4.4",
  7268. "symfony/process": "<4.4"
  7269. },
  7270. "provide": {
  7271. "psr/log-implementation": "1.0|2.0"
  7272. },
  7273. "require-dev": {
  7274. "psr/log": "^1|^2",
  7275. "symfony/config": "^4.4|^5.0|^6.0",
  7276. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  7277. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  7278. "symfony/lock": "^4.4|^5.0|^6.0",
  7279. "symfony/process": "^4.4|^5.0|^6.0",
  7280. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  7281. },
  7282. "suggest": {
  7283. "psr/log": "For using the console logger",
  7284. "symfony/event-dispatcher": "",
  7285. "symfony/lock": "",
  7286. "symfony/process": ""
  7287. },
  7288. "type": "library",
  7289. "autoload": {
  7290. "psr-4": {
  7291. "Symfony\\Component\\Console\\": ""
  7292. },
  7293. "exclude-from-classmap": [
  7294. "/Tests/"
  7295. ]
  7296. },
  7297. "notification-url": "https://packagist.org/downloads/",
  7298. "license": [
  7299. "MIT"
  7300. ],
  7301. "authors": [
  7302. {
  7303. "name": "Fabien Potencier",
  7304. "email": "fabien@symfony.com"
  7305. },
  7306. {
  7307. "name": "Symfony Community",
  7308. "homepage": "https://symfony.com/contributors"
  7309. }
  7310. ],
  7311. "description": "Eases the creation of beautiful and testable command line interfaces",
  7312. "homepage": "https://symfony.com",
  7313. "keywords": [
  7314. "cli",
  7315. "command line",
  7316. "console",
  7317. "terminal"
  7318. ],
  7319. "support": {
  7320. "source": "https://github.com/symfony/console/tree/v5.4.11"
  7321. },
  7322. "funding": [
  7323. {
  7324. "url": "https://symfony.com/sponsor",
  7325. "type": "custom"
  7326. },
  7327. {
  7328. "url": "https://github.com/fabpot",
  7329. "type": "github"
  7330. },
  7331. {
  7332. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7333. "type": "tidelift"
  7334. }
  7335. ],
  7336. "time": "2022-07-22T10:42:43+00:00"
  7337. },
  7338. {
  7339. "name": "symfony/css-selector",
  7340. "version": "v6.0.11",
  7341. "source": {
  7342. "type": "git",
  7343. "url": "https://github.com/symfony/css-selector.git",
  7344. "reference": "ab2746acddc4f03a7234c8441822ac5d5c63efe9"
  7345. },
  7346. "dist": {
  7347. "type": "zip",
  7348. "url": "https://api.github.com/repos/symfony/css-selector/zipball/ab2746acddc4f03a7234c8441822ac5d5c63efe9",
  7349. "reference": "ab2746acddc4f03a7234c8441822ac5d5c63efe9",
  7350. "shasum": "",
  7351. "mirrors": [
  7352. {
  7353. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7354. "preferred": true
  7355. }
  7356. ]
  7357. },
  7358. "require": {
  7359. "php": ">=8.0.2"
  7360. },
  7361. "type": "library",
  7362. "autoload": {
  7363. "psr-4": {
  7364. "Symfony\\Component\\CssSelector\\": ""
  7365. },
  7366. "exclude-from-classmap": [
  7367. "/Tests/"
  7368. ]
  7369. },
  7370. "notification-url": "https://packagist.org/downloads/",
  7371. "license": [
  7372. "MIT"
  7373. ],
  7374. "authors": [
  7375. {
  7376. "name": "Fabien Potencier",
  7377. "email": "fabien@symfony.com"
  7378. },
  7379. {
  7380. "name": "Jean-François Simon",
  7381. "email": "jeanfrancois.simon@sensiolabs.com"
  7382. },
  7383. {
  7384. "name": "Symfony Community",
  7385. "homepage": "https://symfony.com/contributors"
  7386. }
  7387. ],
  7388. "description": "Converts CSS selectors to XPath expressions",
  7389. "homepage": "https://symfony.com",
  7390. "support": {
  7391. "source": "https://github.com/symfony/css-selector/tree/v6.0.11"
  7392. },
  7393. "funding": [
  7394. {
  7395. "url": "https://symfony.com/sponsor",
  7396. "type": "custom"
  7397. },
  7398. {
  7399. "url": "https://github.com/fabpot",
  7400. "type": "github"
  7401. },
  7402. {
  7403. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7404. "type": "tidelift"
  7405. }
  7406. ],
  7407. "time": "2022-06-27T17:10:44+00:00"
  7408. },
  7409. {
  7410. "name": "symfony/deprecation-contracts",
  7411. "version": "v3.0.2",
  7412. "source": {
  7413. "type": "git",
  7414. "url": "https://github.com/symfony/deprecation-contracts.git",
  7415. "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c"
  7416. },
  7417. "dist": {
  7418. "type": "zip",
  7419. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
  7420. "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
  7421. "shasum": "",
  7422. "mirrors": [
  7423. {
  7424. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7425. "preferred": true
  7426. }
  7427. ]
  7428. },
  7429. "require": {
  7430. "php": ">=8.0.2"
  7431. },
  7432. "type": "library",
  7433. "extra": {
  7434. "branch-alias": {
  7435. "dev-main": "3.0-dev"
  7436. },
  7437. "thanks": {
  7438. "name": "symfony/contracts",
  7439. "url": "https://github.com/symfony/contracts"
  7440. }
  7441. },
  7442. "autoload": {
  7443. "files": [
  7444. "function.php"
  7445. ]
  7446. },
  7447. "notification-url": "https://packagist.org/downloads/",
  7448. "license": [
  7449. "MIT"
  7450. ],
  7451. "authors": [
  7452. {
  7453. "name": "Nicolas Grekas",
  7454. "email": "p@tchwork.com"
  7455. },
  7456. {
  7457. "name": "Symfony Community",
  7458. "homepage": "https://symfony.com/contributors"
  7459. }
  7460. ],
  7461. "description": "A generic function and convention to trigger deprecation notices",
  7462. "homepage": "https://symfony.com",
  7463. "support": {
  7464. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.0.2"
  7465. },
  7466. "funding": [
  7467. {
  7468. "url": "https://symfony.com/sponsor",
  7469. "type": "custom"
  7470. },
  7471. {
  7472. "url": "https://github.com/fabpot",
  7473. "type": "github"
  7474. },
  7475. {
  7476. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7477. "type": "tidelift"
  7478. }
  7479. ],
  7480. "time": "2022-01-02T09:55:41+00:00"
  7481. },
  7482. {
  7483. "name": "symfony/error-handler",
  7484. "version": "v5.4.11",
  7485. "source": {
  7486. "type": "git",
  7487. "url": "https://github.com/symfony/error-handler.git",
  7488. "reference": "f75d17cb4769eb38cd5fccbda95cd80a054d35c8"
  7489. },
  7490. "dist": {
  7491. "type": "zip",
  7492. "url": "https://api.github.com/repos/symfony/error-handler/zipball/f75d17cb4769eb38cd5fccbda95cd80a054d35c8",
  7493. "reference": "f75d17cb4769eb38cd5fccbda95cd80a054d35c8",
  7494. "shasum": "",
  7495. "mirrors": [
  7496. {
  7497. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7498. "preferred": true
  7499. }
  7500. ]
  7501. },
  7502. "require": {
  7503. "php": ">=7.2.5",
  7504. "psr/log": "^1|^2|^3",
  7505. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  7506. },
  7507. "require-dev": {
  7508. "symfony/deprecation-contracts": "^2.1|^3",
  7509. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  7510. "symfony/serializer": "^4.4|^5.0|^6.0"
  7511. },
  7512. "bin": [
  7513. "Resources/bin/patch-type-declarations"
  7514. ],
  7515. "type": "library",
  7516. "autoload": {
  7517. "psr-4": {
  7518. "Symfony\\Component\\ErrorHandler\\": ""
  7519. },
  7520. "exclude-from-classmap": [
  7521. "/Tests/"
  7522. ]
  7523. },
  7524. "notification-url": "https://packagist.org/downloads/",
  7525. "license": [
  7526. "MIT"
  7527. ],
  7528. "authors": [
  7529. {
  7530. "name": "Fabien Potencier",
  7531. "email": "fabien@symfony.com"
  7532. },
  7533. {
  7534. "name": "Symfony Community",
  7535. "homepage": "https://symfony.com/contributors"
  7536. }
  7537. ],
  7538. "description": "Provides tools to manage errors and ease debugging PHP code",
  7539. "homepage": "https://symfony.com",
  7540. "support": {
  7541. "source": "https://github.com/symfony/error-handler/tree/v5.4.11"
  7542. },
  7543. "funding": [
  7544. {
  7545. "url": "https://symfony.com/sponsor",
  7546. "type": "custom"
  7547. },
  7548. {
  7549. "url": "https://github.com/fabpot",
  7550. "type": "github"
  7551. },
  7552. {
  7553. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7554. "type": "tidelift"
  7555. }
  7556. ],
  7557. "time": "2022-07-29T07:37:50+00:00"
  7558. },
  7559. {
  7560. "name": "symfony/event-dispatcher",
  7561. "version": "v5.4.9",
  7562. "source": {
  7563. "type": "git",
  7564. "url": "https://github.com/symfony/event-dispatcher.git",
  7565. "reference": "8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc"
  7566. },
  7567. "dist": {
  7568. "type": "zip",
  7569. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc",
  7570. "reference": "8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc",
  7571. "shasum": "",
  7572. "mirrors": [
  7573. {
  7574. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7575. "preferred": true
  7576. }
  7577. ]
  7578. },
  7579. "require": {
  7580. "php": ">=7.2.5",
  7581. "symfony/deprecation-contracts": "^2.1|^3",
  7582. "symfony/event-dispatcher-contracts": "^2|^3",
  7583. "symfony/polyfill-php80": "^1.16"
  7584. },
  7585. "conflict": {
  7586. "symfony/dependency-injection": "<4.4"
  7587. },
  7588. "provide": {
  7589. "psr/event-dispatcher-implementation": "1.0",
  7590. "symfony/event-dispatcher-implementation": "2.0"
  7591. },
  7592. "require-dev": {
  7593. "psr/log": "^1|^2|^3",
  7594. "symfony/config": "^4.4|^5.0|^6.0",
  7595. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  7596. "symfony/error-handler": "^4.4|^5.0|^6.0",
  7597. "symfony/expression-language": "^4.4|^5.0|^6.0",
  7598. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  7599. "symfony/service-contracts": "^1.1|^2|^3",
  7600. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  7601. },
  7602. "suggest": {
  7603. "symfony/dependency-injection": "",
  7604. "symfony/http-kernel": ""
  7605. },
  7606. "type": "library",
  7607. "autoload": {
  7608. "psr-4": {
  7609. "Symfony\\Component\\EventDispatcher\\": ""
  7610. },
  7611. "exclude-from-classmap": [
  7612. "/Tests/"
  7613. ]
  7614. },
  7615. "notification-url": "https://packagist.org/downloads/",
  7616. "license": [
  7617. "MIT"
  7618. ],
  7619. "authors": [
  7620. {
  7621. "name": "Fabien Potencier",
  7622. "email": "fabien@symfony.com"
  7623. },
  7624. {
  7625. "name": "Symfony Community",
  7626. "homepage": "https://symfony.com/contributors"
  7627. }
  7628. ],
  7629. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  7630. "homepage": "https://symfony.com",
  7631. "support": {
  7632. "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.9"
  7633. },
  7634. "funding": [
  7635. {
  7636. "url": "https://symfony.com/sponsor",
  7637. "type": "custom"
  7638. },
  7639. {
  7640. "url": "https://github.com/fabpot",
  7641. "type": "github"
  7642. },
  7643. {
  7644. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7645. "type": "tidelift"
  7646. }
  7647. ],
  7648. "time": "2022-05-05T16:45:39+00:00"
  7649. },
  7650. {
  7651. "name": "symfony/event-dispatcher-contracts",
  7652. "version": "v3.0.2",
  7653. "source": {
  7654. "type": "git",
  7655. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  7656. "reference": "7bc61cc2db649b4637d331240c5346dcc7708051"
  7657. },
  7658. "dist": {
  7659. "type": "zip",
  7660. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7bc61cc2db649b4637d331240c5346dcc7708051",
  7661. "reference": "7bc61cc2db649b4637d331240c5346dcc7708051",
  7662. "shasum": "",
  7663. "mirrors": [
  7664. {
  7665. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7666. "preferred": true
  7667. }
  7668. ]
  7669. },
  7670. "require": {
  7671. "php": ">=8.0.2",
  7672. "psr/event-dispatcher": "^1"
  7673. },
  7674. "suggest": {
  7675. "symfony/event-dispatcher-implementation": ""
  7676. },
  7677. "type": "library",
  7678. "extra": {
  7679. "branch-alias": {
  7680. "dev-main": "3.0-dev"
  7681. },
  7682. "thanks": {
  7683. "name": "symfony/contracts",
  7684. "url": "https://github.com/symfony/contracts"
  7685. }
  7686. },
  7687. "autoload": {
  7688. "psr-4": {
  7689. "Symfony\\Contracts\\EventDispatcher\\": ""
  7690. }
  7691. },
  7692. "notification-url": "https://packagist.org/downloads/",
  7693. "license": [
  7694. "MIT"
  7695. ],
  7696. "authors": [
  7697. {
  7698. "name": "Nicolas Grekas",
  7699. "email": "p@tchwork.com"
  7700. },
  7701. {
  7702. "name": "Symfony Community",
  7703. "homepage": "https://symfony.com/contributors"
  7704. }
  7705. ],
  7706. "description": "Generic abstractions related to dispatching event",
  7707. "homepage": "https://symfony.com",
  7708. "keywords": [
  7709. "abstractions",
  7710. "contracts",
  7711. "decoupling",
  7712. "interfaces",
  7713. "interoperability",
  7714. "standards"
  7715. ],
  7716. "support": {
  7717. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.0.2"
  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-01-02T09:55:41+00:00"
  7734. },
  7735. {
  7736. "name": "symfony/finder",
  7737. "version": "v5.4.11",
  7738. "source": {
  7739. "type": "git",
  7740. "url": "https://github.com/symfony/finder.git",
  7741. "reference": "7872a66f57caffa2916a584db1aa7f12adc76f8c"
  7742. },
  7743. "dist": {
  7744. "type": "zip",
  7745. "url": "https://api.github.com/repos/symfony/finder/zipball/7872a66f57caffa2916a584db1aa7f12adc76f8c",
  7746. "reference": "7872a66f57caffa2916a584db1aa7f12adc76f8c",
  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-php80": "^1.16"
  7759. },
  7760. "type": "library",
  7761. "autoload": {
  7762. "psr-4": {
  7763. "Symfony\\Component\\Finder\\": ""
  7764. },
  7765. "exclude-from-classmap": [
  7766. "/Tests/"
  7767. ]
  7768. },
  7769. "notification-url": "https://packagist.org/downloads/",
  7770. "license": [
  7771. "MIT"
  7772. ],
  7773. "authors": [
  7774. {
  7775. "name": "Fabien Potencier",
  7776. "email": "fabien@symfony.com"
  7777. },
  7778. {
  7779. "name": "Symfony Community",
  7780. "homepage": "https://symfony.com/contributors"
  7781. }
  7782. ],
  7783. "description": "Finds files and directories via an intuitive fluent interface",
  7784. "homepage": "https://symfony.com",
  7785. "support": {
  7786. "source": "https://github.com/symfony/finder/tree/v5.4.11"
  7787. },
  7788. "funding": [
  7789. {
  7790. "url": "https://symfony.com/sponsor",
  7791. "type": "custom"
  7792. },
  7793. {
  7794. "url": "https://github.com/fabpot",
  7795. "type": "github"
  7796. },
  7797. {
  7798. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7799. "type": "tidelift"
  7800. }
  7801. ],
  7802. "time": "2022-07-29T07:37:50+00:00"
  7803. },
  7804. {
  7805. "name": "symfony/http-foundation",
  7806. "version": "v5.4.11",
  7807. "source": {
  7808. "type": "git",
  7809. "url": "https://github.com/symfony/http-foundation.git",
  7810. "reference": "0a5868e0999e9d47859ba3d918548ff6943e6389"
  7811. },
  7812. "dist": {
  7813. "type": "zip",
  7814. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/0a5868e0999e9d47859ba3d918548ff6943e6389",
  7815. "reference": "0a5868e0999e9d47859ba3d918548ff6943e6389",
  7816. "shasum": "",
  7817. "mirrors": [
  7818. {
  7819. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7820. "preferred": true
  7821. }
  7822. ]
  7823. },
  7824. "require": {
  7825. "php": ">=7.2.5",
  7826. "symfony/deprecation-contracts": "^2.1|^3",
  7827. "symfony/polyfill-mbstring": "~1.1",
  7828. "symfony/polyfill-php80": "^1.16"
  7829. },
  7830. "require-dev": {
  7831. "predis/predis": "~1.0",
  7832. "symfony/cache": "^4.4|^5.0|^6.0",
  7833. "symfony/expression-language": "^4.4|^5.0|^6.0",
  7834. "symfony/mime": "^4.4|^5.0|^6.0"
  7835. },
  7836. "suggest": {
  7837. "symfony/mime": "To use the file extension guesser"
  7838. },
  7839. "type": "library",
  7840. "autoload": {
  7841. "psr-4": {
  7842. "Symfony\\Component\\HttpFoundation\\": ""
  7843. },
  7844. "exclude-from-classmap": [
  7845. "/Tests/"
  7846. ]
  7847. },
  7848. "notification-url": "https://packagist.org/downloads/",
  7849. "license": [
  7850. "MIT"
  7851. ],
  7852. "authors": [
  7853. {
  7854. "name": "Fabien Potencier",
  7855. "email": "fabien@symfony.com"
  7856. },
  7857. {
  7858. "name": "Symfony Community",
  7859. "homepage": "https://symfony.com/contributors"
  7860. }
  7861. ],
  7862. "description": "Defines an object-oriented layer for the HTTP specification",
  7863. "homepage": "https://symfony.com",
  7864. "support": {
  7865. "source": "https://github.com/symfony/http-foundation/tree/v5.4.11"
  7866. },
  7867. "funding": [
  7868. {
  7869. "url": "https://symfony.com/sponsor",
  7870. "type": "custom"
  7871. },
  7872. {
  7873. "url": "https://github.com/fabpot",
  7874. "type": "github"
  7875. },
  7876. {
  7877. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7878. "type": "tidelift"
  7879. }
  7880. ],
  7881. "time": "2022-07-20T13:00:38+00:00"
  7882. },
  7883. {
  7884. "name": "symfony/http-kernel",
  7885. "version": "v5.4.11",
  7886. "source": {
  7887. "type": "git",
  7888. "url": "https://github.com/symfony/http-kernel.git",
  7889. "reference": "4fd590a2ef3f62560dbbf6cea511995dd77321ee"
  7890. },
  7891. "dist": {
  7892. "type": "zip",
  7893. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/4fd590a2ef3f62560dbbf6cea511995dd77321ee",
  7894. "reference": "4fd590a2ef3f62560dbbf6cea511995dd77321ee",
  7895. "shasum": "",
  7896. "mirrors": [
  7897. {
  7898. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7899. "preferred": true
  7900. }
  7901. ]
  7902. },
  7903. "require": {
  7904. "php": ">=7.2.5",
  7905. "psr/log": "^1|^2",
  7906. "symfony/deprecation-contracts": "^2.1|^3",
  7907. "symfony/error-handler": "^4.4|^5.0|^6.0",
  7908. "symfony/event-dispatcher": "^5.0|^6.0",
  7909. "symfony/http-foundation": "^5.3.7|^6.0",
  7910. "symfony/polyfill-ctype": "^1.8",
  7911. "symfony/polyfill-php73": "^1.9",
  7912. "symfony/polyfill-php80": "^1.16"
  7913. },
  7914. "conflict": {
  7915. "symfony/browser-kit": "<5.4",
  7916. "symfony/cache": "<5.0",
  7917. "symfony/config": "<5.0",
  7918. "symfony/console": "<4.4",
  7919. "symfony/dependency-injection": "<5.3",
  7920. "symfony/doctrine-bridge": "<5.0",
  7921. "symfony/form": "<5.0",
  7922. "symfony/http-client": "<5.0",
  7923. "symfony/mailer": "<5.0",
  7924. "symfony/messenger": "<5.0",
  7925. "symfony/translation": "<5.0",
  7926. "symfony/twig-bridge": "<5.0",
  7927. "symfony/validator": "<5.0",
  7928. "twig/twig": "<2.13"
  7929. },
  7930. "provide": {
  7931. "psr/log-implementation": "1.0|2.0"
  7932. },
  7933. "require-dev": {
  7934. "psr/cache": "^1.0|^2.0|^3.0",
  7935. "symfony/browser-kit": "^5.4|^6.0",
  7936. "symfony/config": "^5.0|^6.0",
  7937. "symfony/console": "^4.4|^5.0|^6.0",
  7938. "symfony/css-selector": "^4.4|^5.0|^6.0",
  7939. "symfony/dependency-injection": "^5.3|^6.0",
  7940. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  7941. "symfony/expression-language": "^4.4|^5.0|^6.0",
  7942. "symfony/finder": "^4.4|^5.0|^6.0",
  7943. "symfony/http-client-contracts": "^1.1|^2|^3",
  7944. "symfony/process": "^4.4|^5.0|^6.0",
  7945. "symfony/routing": "^4.4|^5.0|^6.0",
  7946. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  7947. "symfony/translation": "^4.4|^5.0|^6.0",
  7948. "symfony/translation-contracts": "^1.1|^2|^3",
  7949. "twig/twig": "^2.13|^3.0.4"
  7950. },
  7951. "suggest": {
  7952. "symfony/browser-kit": "",
  7953. "symfony/config": "",
  7954. "symfony/console": "",
  7955. "symfony/dependency-injection": ""
  7956. },
  7957. "type": "library",
  7958. "autoload": {
  7959. "psr-4": {
  7960. "Symfony\\Component\\HttpKernel\\": ""
  7961. },
  7962. "exclude-from-classmap": [
  7963. "/Tests/"
  7964. ]
  7965. },
  7966. "notification-url": "https://packagist.org/downloads/",
  7967. "license": [
  7968. "MIT"
  7969. ],
  7970. "authors": [
  7971. {
  7972. "name": "Fabien Potencier",
  7973. "email": "fabien@symfony.com"
  7974. },
  7975. {
  7976. "name": "Symfony Community",
  7977. "homepage": "https://symfony.com/contributors"
  7978. }
  7979. ],
  7980. "description": "Provides a structured process for converting a Request into a Response",
  7981. "homepage": "https://symfony.com",
  7982. "support": {
  7983. "source": "https://github.com/symfony/http-kernel/tree/v5.4.11"
  7984. },
  7985. "funding": [
  7986. {
  7987. "url": "https://symfony.com/sponsor",
  7988. "type": "custom"
  7989. },
  7990. {
  7991. "url": "https://github.com/fabpot",
  7992. "type": "github"
  7993. },
  7994. {
  7995. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7996. "type": "tidelift"
  7997. }
  7998. ],
  7999. "time": "2022-07-29T12:30:22+00:00"
  8000. },
  8001. {
  8002. "name": "symfony/mime",
  8003. "version": "v5.4.11",
  8004. "source": {
  8005. "type": "git",
  8006. "url": "https://github.com/symfony/mime.git",
  8007. "reference": "3cd175cdcdb6db2e589e837dd46aff41027d9830"
  8008. },
  8009. "dist": {
  8010. "type": "zip",
  8011. "url": "https://api.github.com/repos/symfony/mime/zipball/3cd175cdcdb6db2e589e837dd46aff41027d9830",
  8012. "reference": "3cd175cdcdb6db2e589e837dd46aff41027d9830",
  8013. "shasum": "",
  8014. "mirrors": [
  8015. {
  8016. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8017. "preferred": true
  8018. }
  8019. ]
  8020. },
  8021. "require": {
  8022. "php": ">=7.2.5",
  8023. "symfony/deprecation-contracts": "^2.1|^3",
  8024. "symfony/polyfill-intl-idn": "^1.10",
  8025. "symfony/polyfill-mbstring": "^1.0",
  8026. "symfony/polyfill-php80": "^1.16"
  8027. },
  8028. "conflict": {
  8029. "egulias/email-validator": "~3.0.0",
  8030. "phpdocumentor/reflection-docblock": "<3.2.2",
  8031. "phpdocumentor/type-resolver": "<1.4.0",
  8032. "symfony/mailer": "<4.4"
  8033. },
  8034. "require-dev": {
  8035. "egulias/email-validator": "^2.1.10|^3.1",
  8036. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  8037. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  8038. "symfony/property-access": "^4.4|^5.1|^6.0",
  8039. "symfony/property-info": "^4.4|^5.1|^6.0",
  8040. "symfony/serializer": "^5.2|^6.0"
  8041. },
  8042. "type": "library",
  8043. "autoload": {
  8044. "psr-4": {
  8045. "Symfony\\Component\\Mime\\": ""
  8046. },
  8047. "exclude-from-classmap": [
  8048. "/Tests/"
  8049. ]
  8050. },
  8051. "notification-url": "https://packagist.org/downloads/",
  8052. "license": [
  8053. "MIT"
  8054. ],
  8055. "authors": [
  8056. {
  8057. "name": "Fabien Potencier",
  8058. "email": "fabien@symfony.com"
  8059. },
  8060. {
  8061. "name": "Symfony Community",
  8062. "homepage": "https://symfony.com/contributors"
  8063. }
  8064. ],
  8065. "description": "Allows manipulating MIME messages",
  8066. "homepage": "https://symfony.com",
  8067. "keywords": [
  8068. "mime",
  8069. "mime-type"
  8070. ],
  8071. "support": {
  8072. "source": "https://github.com/symfony/mime/tree/v5.4.11"
  8073. },
  8074. "funding": [
  8075. {
  8076. "url": "https://symfony.com/sponsor",
  8077. "type": "custom"
  8078. },
  8079. {
  8080. "url": "https://github.com/fabpot",
  8081. "type": "github"
  8082. },
  8083. {
  8084. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8085. "type": "tidelift"
  8086. }
  8087. ],
  8088. "time": "2022-07-20T11:34:24+00:00"
  8089. },
  8090. {
  8091. "name": "symfony/polyfill-ctype",
  8092. "version": "v1.26.0",
  8093. "source": {
  8094. "type": "git",
  8095. "url": "https://github.com/symfony/polyfill-ctype.git",
  8096. "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4"
  8097. },
  8098. "dist": {
  8099. "type": "zip",
  8100. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4",
  8101. "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4",
  8102. "shasum": "",
  8103. "mirrors": [
  8104. {
  8105. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8106. "preferred": true
  8107. }
  8108. ]
  8109. },
  8110. "require": {
  8111. "php": ">=7.1"
  8112. },
  8113. "provide": {
  8114. "ext-ctype": "*"
  8115. },
  8116. "suggest": {
  8117. "ext-ctype": "For best performance"
  8118. },
  8119. "type": "library",
  8120. "extra": {
  8121. "branch-alias": {
  8122. "dev-main": "1.26-dev"
  8123. },
  8124. "thanks": {
  8125. "name": "symfony/polyfill",
  8126. "url": "https://github.com/symfony/polyfill"
  8127. }
  8128. },
  8129. "autoload": {
  8130. "files": [
  8131. "bootstrap.php"
  8132. ],
  8133. "psr-4": {
  8134. "Symfony\\Polyfill\\Ctype\\": ""
  8135. }
  8136. },
  8137. "notification-url": "https://packagist.org/downloads/",
  8138. "license": [
  8139. "MIT"
  8140. ],
  8141. "authors": [
  8142. {
  8143. "name": "Gert de Pagter",
  8144. "email": "BackEndTea@gmail.com"
  8145. },
  8146. {
  8147. "name": "Symfony Community",
  8148. "homepage": "https://symfony.com/contributors"
  8149. }
  8150. ],
  8151. "description": "Symfony polyfill for ctype functions",
  8152. "homepage": "https://symfony.com",
  8153. "keywords": [
  8154. "compatibility",
  8155. "ctype",
  8156. "polyfill",
  8157. "portable"
  8158. ],
  8159. "support": {
  8160. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.26.0"
  8161. },
  8162. "funding": [
  8163. {
  8164. "url": "https://symfony.com/sponsor",
  8165. "type": "custom"
  8166. },
  8167. {
  8168. "url": "https://github.com/fabpot",
  8169. "type": "github"
  8170. },
  8171. {
  8172. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8173. "type": "tidelift"
  8174. }
  8175. ],
  8176. "time": "2022-05-24T11:49:31+00:00"
  8177. },
  8178. {
  8179. "name": "symfony/polyfill-iconv",
  8180. "version": "v1.26.0",
  8181. "source": {
  8182. "type": "git",
  8183. "url": "https://github.com/symfony/polyfill-iconv.git",
  8184. "reference": "143f1881e655bebca1312722af8068de235ae5dc"
  8185. },
  8186. "dist": {
  8187. "type": "zip",
  8188. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/143f1881e655bebca1312722af8068de235ae5dc",
  8189. "reference": "143f1881e655bebca1312722af8068de235ae5dc",
  8190. "shasum": "",
  8191. "mirrors": [
  8192. {
  8193. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8194. "preferred": true
  8195. }
  8196. ]
  8197. },
  8198. "require": {
  8199. "php": ">=7.1"
  8200. },
  8201. "provide": {
  8202. "ext-iconv": "*"
  8203. },
  8204. "suggest": {
  8205. "ext-iconv": "For best performance"
  8206. },
  8207. "type": "library",
  8208. "extra": {
  8209. "branch-alias": {
  8210. "dev-main": "1.26-dev"
  8211. },
  8212. "thanks": {
  8213. "name": "symfony/polyfill",
  8214. "url": "https://github.com/symfony/polyfill"
  8215. }
  8216. },
  8217. "autoload": {
  8218. "files": [
  8219. "bootstrap.php"
  8220. ],
  8221. "psr-4": {
  8222. "Symfony\\Polyfill\\Iconv\\": ""
  8223. }
  8224. },
  8225. "notification-url": "https://packagist.org/downloads/",
  8226. "license": [
  8227. "MIT"
  8228. ],
  8229. "authors": [
  8230. {
  8231. "name": "Nicolas Grekas",
  8232. "email": "p@tchwork.com"
  8233. },
  8234. {
  8235. "name": "Symfony Community",
  8236. "homepage": "https://symfony.com/contributors"
  8237. }
  8238. ],
  8239. "description": "Symfony polyfill for the Iconv extension",
  8240. "homepage": "https://symfony.com",
  8241. "keywords": [
  8242. "compatibility",
  8243. "iconv",
  8244. "polyfill",
  8245. "portable",
  8246. "shim"
  8247. ],
  8248. "support": {
  8249. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.26.0"
  8250. },
  8251. "funding": [
  8252. {
  8253. "url": "https://symfony.com/sponsor",
  8254. "type": "custom"
  8255. },
  8256. {
  8257. "url": "https://github.com/fabpot",
  8258. "type": "github"
  8259. },
  8260. {
  8261. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8262. "type": "tidelift"
  8263. }
  8264. ],
  8265. "time": "2022-05-24T11:49:31+00:00"
  8266. },
  8267. {
  8268. "name": "symfony/polyfill-intl-grapheme",
  8269. "version": "v1.26.0",
  8270. "source": {
  8271. "type": "git",
  8272. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  8273. "reference": "433d05519ce6990bf3530fba6957499d327395c2"
  8274. },
  8275. "dist": {
  8276. "type": "zip",
  8277. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/433d05519ce6990bf3530fba6957499d327395c2",
  8278. "reference": "433d05519ce6990bf3530fba6957499d327395c2",
  8279. "shasum": "",
  8280. "mirrors": [
  8281. {
  8282. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8283. "preferred": true
  8284. }
  8285. ]
  8286. },
  8287. "require": {
  8288. "php": ">=7.1"
  8289. },
  8290. "suggest": {
  8291. "ext-intl": "For best performance"
  8292. },
  8293. "type": "library",
  8294. "extra": {
  8295. "branch-alias": {
  8296. "dev-main": "1.26-dev"
  8297. },
  8298. "thanks": {
  8299. "name": "symfony/polyfill",
  8300. "url": "https://github.com/symfony/polyfill"
  8301. }
  8302. },
  8303. "autoload": {
  8304. "files": [
  8305. "bootstrap.php"
  8306. ],
  8307. "psr-4": {
  8308. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  8309. }
  8310. },
  8311. "notification-url": "https://packagist.org/downloads/",
  8312. "license": [
  8313. "MIT"
  8314. ],
  8315. "authors": [
  8316. {
  8317. "name": "Nicolas Grekas",
  8318. "email": "p@tchwork.com"
  8319. },
  8320. {
  8321. "name": "Symfony Community",
  8322. "homepage": "https://symfony.com/contributors"
  8323. }
  8324. ],
  8325. "description": "Symfony polyfill for intl's grapheme_* functions",
  8326. "homepage": "https://symfony.com",
  8327. "keywords": [
  8328. "compatibility",
  8329. "grapheme",
  8330. "intl",
  8331. "polyfill",
  8332. "portable",
  8333. "shim"
  8334. ],
  8335. "support": {
  8336. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.26.0"
  8337. },
  8338. "funding": [
  8339. {
  8340. "url": "https://symfony.com/sponsor",
  8341. "type": "custom"
  8342. },
  8343. {
  8344. "url": "https://github.com/fabpot",
  8345. "type": "github"
  8346. },
  8347. {
  8348. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8349. "type": "tidelift"
  8350. }
  8351. ],
  8352. "time": "2022-05-24T11:49:31+00:00"
  8353. },
  8354. {
  8355. "name": "symfony/polyfill-intl-idn",
  8356. "version": "v1.26.0",
  8357. "source": {
  8358. "type": "git",
  8359. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  8360. "reference": "59a8d271f00dd0e4c2e518104cc7963f655a1aa8"
  8361. },
  8362. "dist": {
  8363. "type": "zip",
  8364. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/59a8d271f00dd0e4c2e518104cc7963f655a1aa8",
  8365. "reference": "59a8d271f00dd0e4c2e518104cc7963f655a1aa8",
  8366. "shasum": "",
  8367. "mirrors": [
  8368. {
  8369. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8370. "preferred": true
  8371. }
  8372. ]
  8373. },
  8374. "require": {
  8375. "php": ">=7.1",
  8376. "symfony/polyfill-intl-normalizer": "^1.10",
  8377. "symfony/polyfill-php72": "^1.10"
  8378. },
  8379. "suggest": {
  8380. "ext-intl": "For best performance"
  8381. },
  8382. "type": "library",
  8383. "extra": {
  8384. "branch-alias": {
  8385. "dev-main": "1.26-dev"
  8386. },
  8387. "thanks": {
  8388. "name": "symfony/polyfill",
  8389. "url": "https://github.com/symfony/polyfill"
  8390. }
  8391. },
  8392. "autoload": {
  8393. "files": [
  8394. "bootstrap.php"
  8395. ],
  8396. "psr-4": {
  8397. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  8398. }
  8399. },
  8400. "notification-url": "https://packagist.org/downloads/",
  8401. "license": [
  8402. "MIT"
  8403. ],
  8404. "authors": [
  8405. {
  8406. "name": "Laurent Bassin",
  8407. "email": "laurent@bassin.info"
  8408. },
  8409. {
  8410. "name": "Trevor Rowbotham",
  8411. "email": "trevor.rowbotham@pm.me"
  8412. },
  8413. {
  8414. "name": "Symfony Community",
  8415. "homepage": "https://symfony.com/contributors"
  8416. }
  8417. ],
  8418. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  8419. "homepage": "https://symfony.com",
  8420. "keywords": [
  8421. "compatibility",
  8422. "idn",
  8423. "intl",
  8424. "polyfill",
  8425. "portable",
  8426. "shim"
  8427. ],
  8428. "support": {
  8429. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.26.0"
  8430. },
  8431. "funding": [
  8432. {
  8433. "url": "https://symfony.com/sponsor",
  8434. "type": "custom"
  8435. },
  8436. {
  8437. "url": "https://github.com/fabpot",
  8438. "type": "github"
  8439. },
  8440. {
  8441. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8442. "type": "tidelift"
  8443. }
  8444. ],
  8445. "time": "2022-05-24T11:49:31+00:00"
  8446. },
  8447. {
  8448. "name": "symfony/polyfill-intl-normalizer",
  8449. "version": "v1.26.0",
  8450. "source": {
  8451. "type": "git",
  8452. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  8453. "reference": "219aa369ceff116e673852dce47c3a41794c14bd"
  8454. },
  8455. "dist": {
  8456. "type": "zip",
  8457. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/219aa369ceff116e673852dce47c3a41794c14bd",
  8458. "reference": "219aa369ceff116e673852dce47c3a41794c14bd",
  8459. "shasum": "",
  8460. "mirrors": [
  8461. {
  8462. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8463. "preferred": true
  8464. }
  8465. ]
  8466. },
  8467. "require": {
  8468. "php": ">=7.1"
  8469. },
  8470. "suggest": {
  8471. "ext-intl": "For best performance"
  8472. },
  8473. "type": "library",
  8474. "extra": {
  8475. "branch-alias": {
  8476. "dev-main": "1.26-dev"
  8477. },
  8478. "thanks": {
  8479. "name": "symfony/polyfill",
  8480. "url": "https://github.com/symfony/polyfill"
  8481. }
  8482. },
  8483. "autoload": {
  8484. "files": [
  8485. "bootstrap.php"
  8486. ],
  8487. "psr-4": {
  8488. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  8489. },
  8490. "classmap": [
  8491. "Resources/stubs"
  8492. ]
  8493. },
  8494. "notification-url": "https://packagist.org/downloads/",
  8495. "license": [
  8496. "MIT"
  8497. ],
  8498. "authors": [
  8499. {
  8500. "name": "Nicolas Grekas",
  8501. "email": "p@tchwork.com"
  8502. },
  8503. {
  8504. "name": "Symfony Community",
  8505. "homepage": "https://symfony.com/contributors"
  8506. }
  8507. ],
  8508. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  8509. "homepage": "https://symfony.com",
  8510. "keywords": [
  8511. "compatibility",
  8512. "intl",
  8513. "normalizer",
  8514. "polyfill",
  8515. "portable",
  8516. "shim"
  8517. ],
  8518. "support": {
  8519. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.26.0"
  8520. },
  8521. "funding": [
  8522. {
  8523. "url": "https://symfony.com/sponsor",
  8524. "type": "custom"
  8525. },
  8526. {
  8527. "url": "https://github.com/fabpot",
  8528. "type": "github"
  8529. },
  8530. {
  8531. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8532. "type": "tidelift"
  8533. }
  8534. ],
  8535. "time": "2022-05-24T11:49:31+00:00"
  8536. },
  8537. {
  8538. "name": "symfony/polyfill-mbstring",
  8539. "version": "v1.26.0",
  8540. "source": {
  8541. "type": "git",
  8542. "url": "https://github.com/symfony/polyfill-mbstring.git",
  8543. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e"
  8544. },
  8545. "dist": {
  8546. "type": "zip",
  8547. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  8548. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  8549. "shasum": "",
  8550. "mirrors": [
  8551. {
  8552. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8553. "preferred": true
  8554. }
  8555. ]
  8556. },
  8557. "require": {
  8558. "php": ">=7.1"
  8559. },
  8560. "provide": {
  8561. "ext-mbstring": "*"
  8562. },
  8563. "suggest": {
  8564. "ext-mbstring": "For best performance"
  8565. },
  8566. "type": "library",
  8567. "extra": {
  8568. "branch-alias": {
  8569. "dev-main": "1.26-dev"
  8570. },
  8571. "thanks": {
  8572. "name": "symfony/polyfill",
  8573. "url": "https://github.com/symfony/polyfill"
  8574. }
  8575. },
  8576. "autoload": {
  8577. "files": [
  8578. "bootstrap.php"
  8579. ],
  8580. "psr-4": {
  8581. "Symfony\\Polyfill\\Mbstring\\": ""
  8582. }
  8583. },
  8584. "notification-url": "https://packagist.org/downloads/",
  8585. "license": [
  8586. "MIT"
  8587. ],
  8588. "authors": [
  8589. {
  8590. "name": "Nicolas Grekas",
  8591. "email": "p@tchwork.com"
  8592. },
  8593. {
  8594. "name": "Symfony Community",
  8595. "homepage": "https://symfony.com/contributors"
  8596. }
  8597. ],
  8598. "description": "Symfony polyfill for the Mbstring extension",
  8599. "homepage": "https://symfony.com",
  8600. "keywords": [
  8601. "compatibility",
  8602. "mbstring",
  8603. "polyfill",
  8604. "portable",
  8605. "shim"
  8606. ],
  8607. "support": {
  8608. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.26.0"
  8609. },
  8610. "funding": [
  8611. {
  8612. "url": "https://symfony.com/sponsor",
  8613. "type": "custom"
  8614. },
  8615. {
  8616. "url": "https://github.com/fabpot",
  8617. "type": "github"
  8618. },
  8619. {
  8620. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8621. "type": "tidelift"
  8622. }
  8623. ],
  8624. "time": "2022-05-24T11:49:31+00:00"
  8625. },
  8626. {
  8627. "name": "symfony/polyfill-php56",
  8628. "version": "v1.20.0",
  8629. "source": {
  8630. "type": "git",
  8631. "url": "https://github.com/symfony/polyfill-php56.git",
  8632. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675"
  8633. },
  8634. "dist": {
  8635. "type": "zip",
  8636. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  8637. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  8638. "shasum": "",
  8639. "mirrors": [
  8640. {
  8641. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8642. "preferred": true
  8643. }
  8644. ]
  8645. },
  8646. "require": {
  8647. "php": ">=7.1"
  8648. },
  8649. "type": "metapackage",
  8650. "extra": {
  8651. "branch-alias": {
  8652. "dev-main": "1.20-dev"
  8653. },
  8654. "thanks": {
  8655. "name": "symfony/polyfill",
  8656. "url": "https://github.com/symfony/polyfill"
  8657. }
  8658. },
  8659. "notification-url": "https://packagist.org/downloads/",
  8660. "license": [
  8661. "MIT"
  8662. ],
  8663. "authors": [
  8664. {
  8665. "name": "Nicolas Grekas",
  8666. "email": "p@tchwork.com"
  8667. },
  8668. {
  8669. "name": "Symfony Community",
  8670. "homepage": "https://symfony.com/contributors"
  8671. }
  8672. ],
  8673. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  8674. "homepage": "https://symfony.com",
  8675. "keywords": [
  8676. "compatibility",
  8677. "polyfill",
  8678. "portable",
  8679. "shim"
  8680. ],
  8681. "support": {
  8682. "source": "https://github.com/symfony/polyfill-php56/tree/v1.20.0"
  8683. },
  8684. "funding": [
  8685. {
  8686. "url": "https://symfony.com/sponsor",
  8687. "type": "custom"
  8688. },
  8689. {
  8690. "url": "https://github.com/fabpot",
  8691. "type": "github"
  8692. },
  8693. {
  8694. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8695. "type": "tidelift"
  8696. }
  8697. ],
  8698. "time": "2020-10-23T14:02:19+00:00"
  8699. },
  8700. {
  8701. "name": "symfony/polyfill-php72",
  8702. "version": "v1.26.0",
  8703. "source": {
  8704. "type": "git",
  8705. "url": "https://github.com/symfony/polyfill-php72.git",
  8706. "reference": "bf44a9fd41feaac72b074de600314a93e2ae78e2"
  8707. },
  8708. "dist": {
  8709. "type": "zip",
  8710. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/bf44a9fd41feaac72b074de600314a93e2ae78e2",
  8711. "reference": "bf44a9fd41feaac72b074de600314a93e2ae78e2",
  8712. "shasum": "",
  8713. "mirrors": [
  8714. {
  8715. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8716. "preferred": true
  8717. }
  8718. ]
  8719. },
  8720. "require": {
  8721. "php": ">=7.1"
  8722. },
  8723. "type": "library",
  8724. "extra": {
  8725. "branch-alias": {
  8726. "dev-main": "1.26-dev"
  8727. },
  8728. "thanks": {
  8729. "name": "symfony/polyfill",
  8730. "url": "https://github.com/symfony/polyfill"
  8731. }
  8732. },
  8733. "autoload": {
  8734. "files": [
  8735. "bootstrap.php"
  8736. ],
  8737. "psr-4": {
  8738. "Symfony\\Polyfill\\Php72\\": ""
  8739. }
  8740. },
  8741. "notification-url": "https://packagist.org/downloads/",
  8742. "license": [
  8743. "MIT"
  8744. ],
  8745. "authors": [
  8746. {
  8747. "name": "Nicolas Grekas",
  8748. "email": "p@tchwork.com"
  8749. },
  8750. {
  8751. "name": "Symfony Community",
  8752. "homepage": "https://symfony.com/contributors"
  8753. }
  8754. ],
  8755. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  8756. "homepage": "https://symfony.com",
  8757. "keywords": [
  8758. "compatibility",
  8759. "polyfill",
  8760. "portable",
  8761. "shim"
  8762. ],
  8763. "support": {
  8764. "source": "https://github.com/symfony/polyfill-php72/tree/v1.26.0"
  8765. },
  8766. "funding": [
  8767. {
  8768. "url": "https://symfony.com/sponsor",
  8769. "type": "custom"
  8770. },
  8771. {
  8772. "url": "https://github.com/fabpot",
  8773. "type": "github"
  8774. },
  8775. {
  8776. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8777. "type": "tidelift"
  8778. }
  8779. ],
  8780. "time": "2022-05-24T11:49:31+00:00"
  8781. },
  8782. {
  8783. "name": "symfony/polyfill-php73",
  8784. "version": "v1.26.0",
  8785. "source": {
  8786. "type": "git",
  8787. "url": "https://github.com/symfony/polyfill-php73.git",
  8788. "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85"
  8789. },
  8790. "dist": {
  8791. "type": "zip",
  8792. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/e440d35fa0286f77fb45b79a03fedbeda9307e85",
  8793. "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85",
  8794. "shasum": "",
  8795. "mirrors": [
  8796. {
  8797. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8798. "preferred": true
  8799. }
  8800. ]
  8801. },
  8802. "require": {
  8803. "php": ">=7.1"
  8804. },
  8805. "type": "library",
  8806. "extra": {
  8807. "branch-alias": {
  8808. "dev-main": "1.26-dev"
  8809. },
  8810. "thanks": {
  8811. "name": "symfony/polyfill",
  8812. "url": "https://github.com/symfony/polyfill"
  8813. }
  8814. },
  8815. "autoload": {
  8816. "files": [
  8817. "bootstrap.php"
  8818. ],
  8819. "psr-4": {
  8820. "Symfony\\Polyfill\\Php73\\": ""
  8821. },
  8822. "classmap": [
  8823. "Resources/stubs"
  8824. ]
  8825. },
  8826. "notification-url": "https://packagist.org/downloads/",
  8827. "license": [
  8828. "MIT"
  8829. ],
  8830. "authors": [
  8831. {
  8832. "name": "Nicolas Grekas",
  8833. "email": "p@tchwork.com"
  8834. },
  8835. {
  8836. "name": "Symfony Community",
  8837. "homepage": "https://symfony.com/contributors"
  8838. }
  8839. ],
  8840. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  8841. "homepage": "https://symfony.com",
  8842. "keywords": [
  8843. "compatibility",
  8844. "polyfill",
  8845. "portable",
  8846. "shim"
  8847. ],
  8848. "support": {
  8849. "source": "https://github.com/symfony/polyfill-php73/tree/v1.26.0"
  8850. },
  8851. "funding": [
  8852. {
  8853. "url": "https://symfony.com/sponsor",
  8854. "type": "custom"
  8855. },
  8856. {
  8857. "url": "https://github.com/fabpot",
  8858. "type": "github"
  8859. },
  8860. {
  8861. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8862. "type": "tidelift"
  8863. }
  8864. ],
  8865. "time": "2022-05-24T11:49:31+00:00"
  8866. },
  8867. {
  8868. "name": "symfony/polyfill-php80",
  8869. "version": "v1.26.0",
  8870. "source": {
  8871. "type": "git",
  8872. "url": "https://github.com/symfony/polyfill-php80.git",
  8873. "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace"
  8874. },
  8875. "dist": {
  8876. "type": "zip",
  8877. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/cfa0ae98841b9e461207c13ab093d76b0fa7bace",
  8878. "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace",
  8879. "shasum": "",
  8880. "mirrors": [
  8881. {
  8882. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8883. "preferred": true
  8884. }
  8885. ]
  8886. },
  8887. "require": {
  8888. "php": ">=7.1"
  8889. },
  8890. "type": "library",
  8891. "extra": {
  8892. "branch-alias": {
  8893. "dev-main": "1.26-dev"
  8894. },
  8895. "thanks": {
  8896. "name": "symfony/polyfill",
  8897. "url": "https://github.com/symfony/polyfill"
  8898. }
  8899. },
  8900. "autoload": {
  8901. "files": [
  8902. "bootstrap.php"
  8903. ],
  8904. "psr-4": {
  8905. "Symfony\\Polyfill\\Php80\\": ""
  8906. },
  8907. "classmap": [
  8908. "Resources/stubs"
  8909. ]
  8910. },
  8911. "notification-url": "https://packagist.org/downloads/",
  8912. "license": [
  8913. "MIT"
  8914. ],
  8915. "authors": [
  8916. {
  8917. "name": "Ion Bazan",
  8918. "email": "ion.bazan@gmail.com"
  8919. },
  8920. {
  8921. "name": "Nicolas Grekas",
  8922. "email": "p@tchwork.com"
  8923. },
  8924. {
  8925. "name": "Symfony Community",
  8926. "homepage": "https://symfony.com/contributors"
  8927. }
  8928. ],
  8929. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  8930. "homepage": "https://symfony.com",
  8931. "keywords": [
  8932. "compatibility",
  8933. "polyfill",
  8934. "portable",
  8935. "shim"
  8936. ],
  8937. "support": {
  8938. "source": "https://github.com/symfony/polyfill-php80/tree/v1.26.0"
  8939. },
  8940. "funding": [
  8941. {
  8942. "url": "https://symfony.com/sponsor",
  8943. "type": "custom"
  8944. },
  8945. {
  8946. "url": "https://github.com/fabpot",
  8947. "type": "github"
  8948. },
  8949. {
  8950. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8951. "type": "tidelift"
  8952. }
  8953. ],
  8954. "time": "2022-05-10T07:21:04+00:00"
  8955. },
  8956. {
  8957. "name": "symfony/polyfill-php81",
  8958. "version": "v1.26.0",
  8959. "source": {
  8960. "type": "git",
  8961. "url": "https://github.com/symfony/polyfill-php81.git",
  8962. "reference": "13f6d1271c663dc5ae9fb843a8f16521db7687a1"
  8963. },
  8964. "dist": {
  8965. "type": "zip",
  8966. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/13f6d1271c663dc5ae9fb843a8f16521db7687a1",
  8967. "reference": "13f6d1271c663dc5ae9fb843a8f16521db7687a1",
  8968. "shasum": "",
  8969. "mirrors": [
  8970. {
  8971. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8972. "preferred": true
  8973. }
  8974. ]
  8975. },
  8976. "require": {
  8977. "php": ">=7.1"
  8978. },
  8979. "type": "library",
  8980. "extra": {
  8981. "branch-alias": {
  8982. "dev-main": "1.26-dev"
  8983. },
  8984. "thanks": {
  8985. "name": "symfony/polyfill",
  8986. "url": "https://github.com/symfony/polyfill"
  8987. }
  8988. },
  8989. "autoload": {
  8990. "files": [
  8991. "bootstrap.php"
  8992. ],
  8993. "psr-4": {
  8994. "Symfony\\Polyfill\\Php81\\": ""
  8995. },
  8996. "classmap": [
  8997. "Resources/stubs"
  8998. ]
  8999. },
  9000. "notification-url": "https://packagist.org/downloads/",
  9001. "license": [
  9002. "MIT"
  9003. ],
  9004. "authors": [
  9005. {
  9006. "name": "Nicolas Grekas",
  9007. "email": "p@tchwork.com"
  9008. },
  9009. {
  9010. "name": "Symfony Community",
  9011. "homepage": "https://symfony.com/contributors"
  9012. }
  9013. ],
  9014. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  9015. "homepage": "https://symfony.com",
  9016. "keywords": [
  9017. "compatibility",
  9018. "polyfill",
  9019. "portable",
  9020. "shim"
  9021. ],
  9022. "support": {
  9023. "source": "https://github.com/symfony/polyfill-php81/tree/v1.26.0"
  9024. },
  9025. "funding": [
  9026. {
  9027. "url": "https://symfony.com/sponsor",
  9028. "type": "custom"
  9029. },
  9030. {
  9031. "url": "https://github.com/fabpot",
  9032. "type": "github"
  9033. },
  9034. {
  9035. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9036. "type": "tidelift"
  9037. }
  9038. ],
  9039. "time": "2022-05-24T11:49:31+00:00"
  9040. },
  9041. {
  9042. "name": "symfony/process",
  9043. "version": "v5.4.11",
  9044. "source": {
  9045. "type": "git",
  9046. "url": "https://github.com/symfony/process.git",
  9047. "reference": "6e75fe6874cbc7e4773d049616ab450eff537bf1"
  9048. },
  9049. "dist": {
  9050. "type": "zip",
  9051. "url": "https://api.github.com/repos/symfony/process/zipball/6e75fe6874cbc7e4773d049616ab450eff537bf1",
  9052. "reference": "6e75fe6874cbc7e4773d049616ab450eff537bf1",
  9053. "shasum": "",
  9054. "mirrors": [
  9055. {
  9056. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9057. "preferred": true
  9058. }
  9059. ]
  9060. },
  9061. "require": {
  9062. "php": ">=7.2.5",
  9063. "symfony/polyfill-php80": "^1.16"
  9064. },
  9065. "type": "library",
  9066. "autoload": {
  9067. "psr-4": {
  9068. "Symfony\\Component\\Process\\": ""
  9069. },
  9070. "exclude-from-classmap": [
  9071. "/Tests/"
  9072. ]
  9073. },
  9074. "notification-url": "https://packagist.org/downloads/",
  9075. "license": [
  9076. "MIT"
  9077. ],
  9078. "authors": [
  9079. {
  9080. "name": "Fabien Potencier",
  9081. "email": "fabien@symfony.com"
  9082. },
  9083. {
  9084. "name": "Symfony Community",
  9085. "homepage": "https://symfony.com/contributors"
  9086. }
  9087. ],
  9088. "description": "Executes commands in sub-processes",
  9089. "homepage": "https://symfony.com",
  9090. "support": {
  9091. "source": "https://github.com/symfony/process/tree/v5.4.11"
  9092. },
  9093. "funding": [
  9094. {
  9095. "url": "https://symfony.com/sponsor",
  9096. "type": "custom"
  9097. },
  9098. {
  9099. "url": "https://github.com/fabpot",
  9100. "type": "github"
  9101. },
  9102. {
  9103. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9104. "type": "tidelift"
  9105. }
  9106. ],
  9107. "time": "2022-06-27T16:58:25+00:00"
  9108. },
  9109. {
  9110. "name": "symfony/psr-http-message-bridge",
  9111. "version": "v2.1.2",
  9112. "source": {
  9113. "type": "git",
  9114. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  9115. "reference": "22b37c8a3f6b5d94e9cdbd88e1270d96e2f97b34"
  9116. },
  9117. "dist": {
  9118. "type": "zip",
  9119. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/22b37c8a3f6b5d94e9cdbd88e1270d96e2f97b34",
  9120. "reference": "22b37c8a3f6b5d94e9cdbd88e1270d96e2f97b34",
  9121. "shasum": "",
  9122. "mirrors": [
  9123. {
  9124. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9125. "preferred": true
  9126. }
  9127. ]
  9128. },
  9129. "require": {
  9130. "php": ">=7.1",
  9131. "psr/http-message": "^1.0",
  9132. "symfony/http-foundation": "^4.4 || ^5.0 || ^6.0"
  9133. },
  9134. "require-dev": {
  9135. "nyholm/psr7": "^1.1",
  9136. "psr/log": "^1.1 || ^2 || ^3",
  9137. "symfony/browser-kit": "^4.4 || ^5.0 || ^6.0",
  9138. "symfony/config": "^4.4 || ^5.0 || ^6.0",
  9139. "symfony/event-dispatcher": "^4.4 || ^5.0 || ^6.0",
  9140. "symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0",
  9141. "symfony/http-kernel": "^4.4 || ^5.0 || ^6.0",
  9142. "symfony/phpunit-bridge": "^5.4@dev || ^6.0"
  9143. },
  9144. "suggest": {
  9145. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  9146. },
  9147. "type": "symfony-bridge",
  9148. "extra": {
  9149. "branch-alias": {
  9150. "dev-main": "2.1-dev"
  9151. }
  9152. },
  9153. "autoload": {
  9154. "psr-4": {
  9155. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  9156. },
  9157. "exclude-from-classmap": [
  9158. "/Tests/"
  9159. ]
  9160. },
  9161. "notification-url": "https://packagist.org/downloads/",
  9162. "license": [
  9163. "MIT"
  9164. ],
  9165. "authors": [
  9166. {
  9167. "name": "Fabien Potencier",
  9168. "email": "fabien@symfony.com"
  9169. },
  9170. {
  9171. "name": "Symfony Community",
  9172. "homepage": "http://symfony.com/contributors"
  9173. }
  9174. ],
  9175. "description": "PSR HTTP message bridge",
  9176. "homepage": "http://symfony.com",
  9177. "keywords": [
  9178. "http",
  9179. "http-message",
  9180. "psr-17",
  9181. "psr-7"
  9182. ],
  9183. "support": {
  9184. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  9185. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.1.2"
  9186. },
  9187. "funding": [
  9188. {
  9189. "url": "https://symfony.com/sponsor",
  9190. "type": "custom"
  9191. },
  9192. {
  9193. "url": "https://github.com/fabpot",
  9194. "type": "github"
  9195. },
  9196. {
  9197. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9198. "type": "tidelift"
  9199. }
  9200. ],
  9201. "time": "2021-11-05T13:13:39+00:00"
  9202. },
  9203. {
  9204. "name": "symfony/routing",
  9205. "version": "v5.4.11",
  9206. "source": {
  9207. "type": "git",
  9208. "url": "https://github.com/symfony/routing.git",
  9209. "reference": "3e01ccd9b2a3a4167ba2b3c53612762300300226"
  9210. },
  9211. "dist": {
  9212. "type": "zip",
  9213. "url": "https://api.github.com/repos/symfony/routing/zipball/3e01ccd9b2a3a4167ba2b3c53612762300300226",
  9214. "reference": "3e01ccd9b2a3a4167ba2b3c53612762300300226",
  9215. "shasum": "",
  9216. "mirrors": [
  9217. {
  9218. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9219. "preferred": true
  9220. }
  9221. ]
  9222. },
  9223. "require": {
  9224. "php": ">=7.2.5",
  9225. "symfony/deprecation-contracts": "^2.1|^3",
  9226. "symfony/polyfill-php80": "^1.16"
  9227. },
  9228. "conflict": {
  9229. "doctrine/annotations": "<1.12",
  9230. "symfony/config": "<5.3",
  9231. "symfony/dependency-injection": "<4.4",
  9232. "symfony/yaml": "<4.4"
  9233. },
  9234. "require-dev": {
  9235. "doctrine/annotations": "^1.12",
  9236. "psr/log": "^1|^2|^3",
  9237. "symfony/config": "^5.3|^6.0",
  9238. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  9239. "symfony/expression-language": "^4.4|^5.0|^6.0",
  9240. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  9241. "symfony/yaml": "^4.4|^5.0|^6.0"
  9242. },
  9243. "suggest": {
  9244. "symfony/config": "For using the all-in-one router or any loader",
  9245. "symfony/expression-language": "For using expression matching",
  9246. "symfony/http-foundation": "For using a Symfony Request object",
  9247. "symfony/yaml": "For using the YAML loader"
  9248. },
  9249. "type": "library",
  9250. "autoload": {
  9251. "psr-4": {
  9252. "Symfony\\Component\\Routing\\": ""
  9253. },
  9254. "exclude-from-classmap": [
  9255. "/Tests/"
  9256. ]
  9257. },
  9258. "notification-url": "https://packagist.org/downloads/",
  9259. "license": [
  9260. "MIT"
  9261. ],
  9262. "authors": [
  9263. {
  9264. "name": "Fabien Potencier",
  9265. "email": "fabien@symfony.com"
  9266. },
  9267. {
  9268. "name": "Symfony Community",
  9269. "homepage": "https://symfony.com/contributors"
  9270. }
  9271. ],
  9272. "description": "Maps an HTTP request to a set of configuration variables",
  9273. "homepage": "https://symfony.com",
  9274. "keywords": [
  9275. "router",
  9276. "routing",
  9277. "uri",
  9278. "url"
  9279. ],
  9280. "support": {
  9281. "source": "https://github.com/symfony/routing/tree/v5.4.11"
  9282. },
  9283. "funding": [
  9284. {
  9285. "url": "https://symfony.com/sponsor",
  9286. "type": "custom"
  9287. },
  9288. {
  9289. "url": "https://github.com/fabpot",
  9290. "type": "github"
  9291. },
  9292. {
  9293. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9294. "type": "tidelift"
  9295. }
  9296. ],
  9297. "time": "2022-07-20T13:00:38+00:00"
  9298. },
  9299. {
  9300. "name": "symfony/service-contracts",
  9301. "version": "v2.5.2",
  9302. "source": {
  9303. "type": "git",
  9304. "url": "https://github.com/symfony/service-contracts.git",
  9305. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c"
  9306. },
  9307. "dist": {
  9308. "type": "zip",
  9309. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  9310. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  9311. "shasum": "",
  9312. "mirrors": [
  9313. {
  9314. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9315. "preferred": true
  9316. }
  9317. ]
  9318. },
  9319. "require": {
  9320. "php": ">=7.2.5",
  9321. "psr/container": "^1.1",
  9322. "symfony/deprecation-contracts": "^2.1|^3"
  9323. },
  9324. "conflict": {
  9325. "ext-psr": "<1.1|>=2"
  9326. },
  9327. "suggest": {
  9328. "symfony/service-implementation": ""
  9329. },
  9330. "type": "library",
  9331. "extra": {
  9332. "branch-alias": {
  9333. "dev-main": "2.5-dev"
  9334. },
  9335. "thanks": {
  9336. "name": "symfony/contracts",
  9337. "url": "https://github.com/symfony/contracts"
  9338. }
  9339. },
  9340. "autoload": {
  9341. "psr-4": {
  9342. "Symfony\\Contracts\\Service\\": ""
  9343. }
  9344. },
  9345. "notification-url": "https://packagist.org/downloads/",
  9346. "license": [
  9347. "MIT"
  9348. ],
  9349. "authors": [
  9350. {
  9351. "name": "Nicolas Grekas",
  9352. "email": "p@tchwork.com"
  9353. },
  9354. {
  9355. "name": "Symfony Community",
  9356. "homepage": "https://symfony.com/contributors"
  9357. }
  9358. ],
  9359. "description": "Generic abstractions related to writing services",
  9360. "homepage": "https://symfony.com",
  9361. "keywords": [
  9362. "abstractions",
  9363. "contracts",
  9364. "decoupling",
  9365. "interfaces",
  9366. "interoperability",
  9367. "standards"
  9368. ],
  9369. "support": {
  9370. "source": "https://github.com/symfony/service-contracts/tree/v2.5.2"
  9371. },
  9372. "funding": [
  9373. {
  9374. "url": "https://symfony.com/sponsor",
  9375. "type": "custom"
  9376. },
  9377. {
  9378. "url": "https://github.com/fabpot",
  9379. "type": "github"
  9380. },
  9381. {
  9382. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9383. "type": "tidelift"
  9384. }
  9385. ],
  9386. "time": "2022-05-30T19:17:29+00:00"
  9387. },
  9388. {
  9389. "name": "symfony/string",
  9390. "version": "v6.0.11",
  9391. "source": {
  9392. "type": "git",
  9393. "url": "https://github.com/symfony/string.git",
  9394. "reference": "042b6bf0f6ccca6d456a0572eb788cfb8b1ff809"
  9395. },
  9396. "dist": {
  9397. "type": "zip",
  9398. "url": "https://api.github.com/repos/symfony/string/zipball/042b6bf0f6ccca6d456a0572eb788cfb8b1ff809",
  9399. "reference": "042b6bf0f6ccca6d456a0572eb788cfb8b1ff809",
  9400. "shasum": "",
  9401. "mirrors": [
  9402. {
  9403. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9404. "preferred": true
  9405. }
  9406. ]
  9407. },
  9408. "require": {
  9409. "php": ">=8.0.2",
  9410. "symfony/polyfill-ctype": "~1.8",
  9411. "symfony/polyfill-intl-grapheme": "~1.0",
  9412. "symfony/polyfill-intl-normalizer": "~1.0",
  9413. "symfony/polyfill-mbstring": "~1.0"
  9414. },
  9415. "conflict": {
  9416. "symfony/translation-contracts": "<2.0"
  9417. },
  9418. "require-dev": {
  9419. "symfony/error-handler": "^5.4|^6.0",
  9420. "symfony/http-client": "^5.4|^6.0",
  9421. "symfony/translation-contracts": "^2.0|^3.0",
  9422. "symfony/var-exporter": "^5.4|^6.0"
  9423. },
  9424. "type": "library",
  9425. "autoload": {
  9426. "files": [
  9427. "Resources/functions.php"
  9428. ],
  9429. "psr-4": {
  9430. "Symfony\\Component\\String\\": ""
  9431. },
  9432. "exclude-from-classmap": [
  9433. "/Tests/"
  9434. ]
  9435. },
  9436. "notification-url": "https://packagist.org/downloads/",
  9437. "license": [
  9438. "MIT"
  9439. ],
  9440. "authors": [
  9441. {
  9442. "name": "Nicolas Grekas",
  9443. "email": "p@tchwork.com"
  9444. },
  9445. {
  9446. "name": "Symfony Community",
  9447. "homepage": "https://symfony.com/contributors"
  9448. }
  9449. ],
  9450. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  9451. "homepage": "https://symfony.com",
  9452. "keywords": [
  9453. "grapheme",
  9454. "i18n",
  9455. "string",
  9456. "unicode",
  9457. "utf-8",
  9458. "utf8"
  9459. ],
  9460. "support": {
  9461. "source": "https://github.com/symfony/string/tree/v6.0.11"
  9462. },
  9463. "funding": [
  9464. {
  9465. "url": "https://symfony.com/sponsor",
  9466. "type": "custom"
  9467. },
  9468. {
  9469. "url": "https://github.com/fabpot",
  9470. "type": "github"
  9471. },
  9472. {
  9473. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9474. "type": "tidelift"
  9475. }
  9476. ],
  9477. "time": "2022-07-27T15:50:26+00:00"
  9478. },
  9479. {
  9480. "name": "symfony/translation",
  9481. "version": "v6.0.11",
  9482. "source": {
  9483. "type": "git",
  9484. "url": "https://github.com/symfony/translation.git",
  9485. "reference": "55ffbe4b690156100af1ae42e1f94c5873085bca"
  9486. },
  9487. "dist": {
  9488. "type": "zip",
  9489. "url": "https://api.github.com/repos/symfony/translation/zipball/55ffbe4b690156100af1ae42e1f94c5873085bca",
  9490. "reference": "55ffbe4b690156100af1ae42e1f94c5873085bca",
  9491. "shasum": "",
  9492. "mirrors": [
  9493. {
  9494. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9495. "preferred": true
  9496. }
  9497. ]
  9498. },
  9499. "require": {
  9500. "php": ">=8.0.2",
  9501. "symfony/polyfill-mbstring": "~1.0",
  9502. "symfony/translation-contracts": "^2.3|^3.0"
  9503. },
  9504. "conflict": {
  9505. "symfony/config": "<5.4",
  9506. "symfony/console": "<5.4",
  9507. "symfony/dependency-injection": "<5.4",
  9508. "symfony/http-kernel": "<5.4",
  9509. "symfony/twig-bundle": "<5.4",
  9510. "symfony/yaml": "<5.4"
  9511. },
  9512. "provide": {
  9513. "symfony/translation-implementation": "2.3|3.0"
  9514. },
  9515. "require-dev": {
  9516. "psr/log": "^1|^2|^3",
  9517. "symfony/config": "^5.4|^6.0",
  9518. "symfony/console": "^5.4|^6.0",
  9519. "symfony/dependency-injection": "^5.4|^6.0",
  9520. "symfony/finder": "^5.4|^6.0",
  9521. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  9522. "symfony/http-kernel": "^5.4|^6.0",
  9523. "symfony/intl": "^5.4|^6.0",
  9524. "symfony/polyfill-intl-icu": "^1.21",
  9525. "symfony/service-contracts": "^1.1.2|^2|^3",
  9526. "symfony/yaml": "^5.4|^6.0"
  9527. },
  9528. "suggest": {
  9529. "psr/log-implementation": "To use logging capability in translator",
  9530. "symfony/config": "",
  9531. "symfony/yaml": ""
  9532. },
  9533. "type": "library",
  9534. "autoload": {
  9535. "files": [
  9536. "Resources/functions.php"
  9537. ],
  9538. "psr-4": {
  9539. "Symfony\\Component\\Translation\\": ""
  9540. },
  9541. "exclude-from-classmap": [
  9542. "/Tests/"
  9543. ]
  9544. },
  9545. "notification-url": "https://packagist.org/downloads/",
  9546. "license": [
  9547. "MIT"
  9548. ],
  9549. "authors": [
  9550. {
  9551. "name": "Fabien Potencier",
  9552. "email": "fabien@symfony.com"
  9553. },
  9554. {
  9555. "name": "Symfony Community",
  9556. "homepage": "https://symfony.com/contributors"
  9557. }
  9558. ],
  9559. "description": "Provides tools to internationalize your application",
  9560. "homepage": "https://symfony.com",
  9561. "support": {
  9562. "source": "https://github.com/symfony/translation/tree/v6.0.11"
  9563. },
  9564. "funding": [
  9565. {
  9566. "url": "https://symfony.com/sponsor",
  9567. "type": "custom"
  9568. },
  9569. {
  9570. "url": "https://github.com/fabpot",
  9571. "type": "github"
  9572. },
  9573. {
  9574. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9575. "type": "tidelift"
  9576. }
  9577. ],
  9578. "time": "2022-07-20T13:45:53+00:00"
  9579. },
  9580. {
  9581. "name": "symfony/translation-contracts",
  9582. "version": "v3.0.2",
  9583. "source": {
  9584. "type": "git",
  9585. "url": "https://github.com/symfony/translation-contracts.git",
  9586. "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282"
  9587. },
  9588. "dist": {
  9589. "type": "zip",
  9590. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/acbfbb274e730e5a0236f619b6168d9dedb3e282",
  9591. "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282",
  9592. "shasum": "",
  9593. "mirrors": [
  9594. {
  9595. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9596. "preferred": true
  9597. }
  9598. ]
  9599. },
  9600. "require": {
  9601. "php": ">=8.0.2"
  9602. },
  9603. "suggest": {
  9604. "symfony/translation-implementation": ""
  9605. },
  9606. "type": "library",
  9607. "extra": {
  9608. "branch-alias": {
  9609. "dev-main": "3.0-dev"
  9610. },
  9611. "thanks": {
  9612. "name": "symfony/contracts",
  9613. "url": "https://github.com/symfony/contracts"
  9614. }
  9615. },
  9616. "autoload": {
  9617. "psr-4": {
  9618. "Symfony\\Contracts\\Translation\\": ""
  9619. }
  9620. },
  9621. "notification-url": "https://packagist.org/downloads/",
  9622. "license": [
  9623. "MIT"
  9624. ],
  9625. "authors": [
  9626. {
  9627. "name": "Nicolas Grekas",
  9628. "email": "p@tchwork.com"
  9629. },
  9630. {
  9631. "name": "Symfony Community",
  9632. "homepage": "https://symfony.com/contributors"
  9633. }
  9634. ],
  9635. "description": "Generic abstractions related to translation",
  9636. "homepage": "https://symfony.com",
  9637. "keywords": [
  9638. "abstractions",
  9639. "contracts",
  9640. "decoupling",
  9641. "interfaces",
  9642. "interoperability",
  9643. "standards"
  9644. ],
  9645. "support": {
  9646. "source": "https://github.com/symfony/translation-contracts/tree/v3.0.2"
  9647. },
  9648. "funding": [
  9649. {
  9650. "url": "https://symfony.com/sponsor",
  9651. "type": "custom"
  9652. },
  9653. {
  9654. "url": "https://github.com/fabpot",
  9655. "type": "github"
  9656. },
  9657. {
  9658. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9659. "type": "tidelift"
  9660. }
  9661. ],
  9662. "time": "2022-06-27T17:10:44+00:00"
  9663. },
  9664. {
  9665. "name": "symfony/var-dumper",
  9666. "version": "v5.4.11",
  9667. "source": {
  9668. "type": "git",
  9669. "url": "https://github.com/symfony/var-dumper.git",
  9670. "reference": "b8f306d7b8ef34fb3db3305be97ba8e088fb4861"
  9671. },
  9672. "dist": {
  9673. "type": "zip",
  9674. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/b8f306d7b8ef34fb3db3305be97ba8e088fb4861",
  9675. "reference": "b8f306d7b8ef34fb3db3305be97ba8e088fb4861",
  9676. "shasum": "",
  9677. "mirrors": [
  9678. {
  9679. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9680. "preferred": true
  9681. }
  9682. ]
  9683. },
  9684. "require": {
  9685. "php": ">=7.2.5",
  9686. "symfony/polyfill-mbstring": "~1.0",
  9687. "symfony/polyfill-php80": "^1.16"
  9688. },
  9689. "conflict": {
  9690. "phpunit/phpunit": "<5.4.3",
  9691. "symfony/console": "<4.4"
  9692. },
  9693. "require-dev": {
  9694. "ext-iconv": "*",
  9695. "symfony/console": "^4.4|^5.0|^6.0",
  9696. "symfony/process": "^4.4|^5.0|^6.0",
  9697. "symfony/uid": "^5.1|^6.0",
  9698. "twig/twig": "^2.13|^3.0.4"
  9699. },
  9700. "suggest": {
  9701. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  9702. "ext-intl": "To show region name in time zone dump",
  9703. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  9704. },
  9705. "bin": [
  9706. "Resources/bin/var-dump-server"
  9707. ],
  9708. "type": "library",
  9709. "autoload": {
  9710. "files": [
  9711. "Resources/functions/dump.php"
  9712. ],
  9713. "psr-4": {
  9714. "Symfony\\Component\\VarDumper\\": ""
  9715. },
  9716. "exclude-from-classmap": [
  9717. "/Tests/"
  9718. ]
  9719. },
  9720. "notification-url": "https://packagist.org/downloads/",
  9721. "license": [
  9722. "MIT"
  9723. ],
  9724. "authors": [
  9725. {
  9726. "name": "Nicolas Grekas",
  9727. "email": "p@tchwork.com"
  9728. },
  9729. {
  9730. "name": "Symfony Community",
  9731. "homepage": "https://symfony.com/contributors"
  9732. }
  9733. ],
  9734. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  9735. "homepage": "https://symfony.com",
  9736. "keywords": [
  9737. "debug",
  9738. "dump"
  9739. ],
  9740. "support": {
  9741. "source": "https://github.com/symfony/var-dumper/tree/v5.4.11"
  9742. },
  9743. "funding": [
  9744. {
  9745. "url": "https://symfony.com/sponsor",
  9746. "type": "custom"
  9747. },
  9748. {
  9749. "url": "https://github.com/fabpot",
  9750. "type": "github"
  9751. },
  9752. {
  9753. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9754. "type": "tidelift"
  9755. }
  9756. ],
  9757. "time": "2022-07-20T13:00:38+00:00"
  9758. },
  9759. {
  9760. "name": "symfony/var-exporter",
  9761. "version": "v6.0.10",
  9762. "source": {
  9763. "type": "git",
  9764. "url": "https://github.com/symfony/var-exporter.git",
  9765. "reference": "e3df004a8d0fb572c420a6915cd23db9254c8366"
  9766. },
  9767. "dist": {
  9768. "type": "zip",
  9769. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/e3df004a8d0fb572c420a6915cd23db9254c8366",
  9770. "reference": "e3df004a8d0fb572c420a6915cd23db9254c8366",
  9771. "shasum": "",
  9772. "mirrors": [
  9773. {
  9774. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9775. "preferred": true
  9776. }
  9777. ]
  9778. },
  9779. "require": {
  9780. "php": ">=8.0.2"
  9781. },
  9782. "require-dev": {
  9783. "symfony/var-dumper": "^5.4|^6.0"
  9784. },
  9785. "type": "library",
  9786. "autoload": {
  9787. "psr-4": {
  9788. "Symfony\\Component\\VarExporter\\": ""
  9789. },
  9790. "exclude-from-classmap": [
  9791. "/Tests/"
  9792. ]
  9793. },
  9794. "notification-url": "https://packagist.org/downloads/",
  9795. "license": [
  9796. "MIT"
  9797. ],
  9798. "authors": [
  9799. {
  9800. "name": "Nicolas Grekas",
  9801. "email": "p@tchwork.com"
  9802. },
  9803. {
  9804. "name": "Symfony Community",
  9805. "homepage": "https://symfony.com/contributors"
  9806. }
  9807. ],
  9808. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  9809. "homepage": "https://symfony.com",
  9810. "keywords": [
  9811. "clone",
  9812. "construct",
  9813. "export",
  9814. "hydrate",
  9815. "instantiate",
  9816. "serialize"
  9817. ],
  9818. "support": {
  9819. "source": "https://github.com/symfony/var-exporter/tree/v6.0.10"
  9820. },
  9821. "funding": [
  9822. {
  9823. "url": "https://symfony.com/sponsor",
  9824. "type": "custom"
  9825. },
  9826. {
  9827. "url": "https://github.com/fabpot",
  9828. "type": "github"
  9829. },
  9830. {
  9831. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9832. "type": "tidelift"
  9833. }
  9834. ],
  9835. "time": "2022-05-27T12:57:11+00:00"
  9836. },
  9837. {
  9838. "name": "tencent/tls-sig-api-v2",
  9839. "version": "v1.0",
  9840. "source": {
  9841. "type": "git",
  9842. "url": "https://github.com/tencentyun/tls-sig-api-v2-php.git",
  9843. "reference": "af947437779ac6f18233e24c3e12ad5dae866a9f"
  9844. },
  9845. "dist": {
  9846. "type": "zip",
  9847. "url": "https://api.github.com/repos/tencentyun/tls-sig-api-v2-php/zipball/af947437779ac6f18233e24c3e12ad5dae866a9f",
  9848. "reference": "af947437779ac6f18233e24c3e12ad5dae866a9f",
  9849. "shasum": "",
  9850. "mirrors": [
  9851. {
  9852. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9853. "preferred": true
  9854. }
  9855. ]
  9856. },
  9857. "require": {
  9858. "php": ">=5.3.0"
  9859. },
  9860. "type": "library",
  9861. "autoload": {
  9862. "psr-4": {
  9863. "Tencent\\": "src/"
  9864. }
  9865. },
  9866. "notification-url": "https://packagist.org/downloads/",
  9867. "license": [
  9868. "MIT"
  9869. ],
  9870. "authors": [
  9871. {
  9872. "name": "weijunyi",
  9873. "email": "weijunyi@tencent.com",
  9874. "role": "Developer"
  9875. }
  9876. ],
  9877. "description": "tls-sig-api-v2 适用于腾讯云通信生成用户账号签名。",
  9878. "homepage": "https://github.com/tencentyun/tls-sig-api-v2-php",
  9879. "keywords": [
  9880. "im",
  9881. "tencent"
  9882. ],
  9883. "support": {
  9884. "issues": "https://github.com/tencentyun/tls-sig-api-v2-php/issues",
  9885. "source": "https://github.com/tencentyun/tls-sig-api-v2-php/tree/v1.0"
  9886. },
  9887. "time": "2019-06-20T08:42:03+00:00"
  9888. },
  9889. {
  9890. "name": "tijsverkoyen/css-to-inline-styles",
  9891. "version": "2.2.4",
  9892. "source": {
  9893. "type": "git",
  9894. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  9895. "reference": "da444caae6aca7a19c0c140f68c6182e337d5b1c"
  9896. },
  9897. "dist": {
  9898. "type": "zip",
  9899. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/da444caae6aca7a19c0c140f68c6182e337d5b1c",
  9900. "reference": "da444caae6aca7a19c0c140f68c6182e337d5b1c",
  9901. "shasum": "",
  9902. "mirrors": [
  9903. {
  9904. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9905. "preferred": true
  9906. }
  9907. ]
  9908. },
  9909. "require": {
  9910. "ext-dom": "*",
  9911. "ext-libxml": "*",
  9912. "php": "^5.5 || ^7.0 || ^8.0",
  9913. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  9914. },
  9915. "require-dev": {
  9916. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  9917. },
  9918. "type": "library",
  9919. "extra": {
  9920. "branch-alias": {
  9921. "dev-master": "2.2.x-dev"
  9922. }
  9923. },
  9924. "autoload": {
  9925. "psr-4": {
  9926. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  9927. }
  9928. },
  9929. "notification-url": "https://packagist.org/downloads/",
  9930. "license": [
  9931. "BSD-3-Clause"
  9932. ],
  9933. "authors": [
  9934. {
  9935. "name": "Tijs Verkoyen",
  9936. "email": "css_to_inline_styles@verkoyen.eu",
  9937. "role": "Developer"
  9938. }
  9939. ],
  9940. "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.",
  9941. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  9942. "support": {
  9943. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  9944. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.4"
  9945. },
  9946. "time": "2021-12-08T09:12:39+00:00"
  9947. },
  9948. {
  9949. "name": "vlucas/phpdotenv",
  9950. "version": "v5.4.1",
  9951. "source": {
  9952. "type": "git",
  9953. "url": "https://github.com/vlucas/phpdotenv.git",
  9954. "reference": "264dce589e7ce37a7ba99cb901eed8249fbec92f"
  9955. },
  9956. "dist": {
  9957. "type": "zip",
  9958. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/264dce589e7ce37a7ba99cb901eed8249fbec92f",
  9959. "reference": "264dce589e7ce37a7ba99cb901eed8249fbec92f",
  9960. "shasum": "",
  9961. "mirrors": [
  9962. {
  9963. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9964. "preferred": true
  9965. }
  9966. ]
  9967. },
  9968. "require": {
  9969. "ext-pcre": "*",
  9970. "graham-campbell/result-type": "^1.0.2",
  9971. "php": "^7.1.3 || ^8.0",
  9972. "phpoption/phpoption": "^1.8",
  9973. "symfony/polyfill-ctype": "^1.23",
  9974. "symfony/polyfill-mbstring": "^1.23.1",
  9975. "symfony/polyfill-php80": "^1.23.1"
  9976. },
  9977. "require-dev": {
  9978. "bamarni/composer-bin-plugin": "^1.4.1",
  9979. "ext-filter": "*",
  9980. "phpunit/phpunit": "^7.5.20 || ^8.5.21 || ^9.5.10"
  9981. },
  9982. "suggest": {
  9983. "ext-filter": "Required to use the boolean validator."
  9984. },
  9985. "type": "library",
  9986. "extra": {
  9987. "branch-alias": {
  9988. "dev-master": "5.4-dev"
  9989. }
  9990. },
  9991. "autoload": {
  9992. "psr-4": {
  9993. "Dotenv\\": "src/"
  9994. }
  9995. },
  9996. "notification-url": "https://packagist.org/downloads/",
  9997. "license": [
  9998. "BSD-3-Clause"
  9999. ],
  10000. "authors": [
  10001. {
  10002. "name": "Graham Campbell",
  10003. "email": "hello@gjcampbell.co.uk",
  10004. "homepage": "https://github.com/GrahamCampbell"
  10005. },
  10006. {
  10007. "name": "Vance Lucas",
  10008. "email": "vance@vancelucas.com",
  10009. "homepage": "https://github.com/vlucas"
  10010. }
  10011. ],
  10012. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  10013. "keywords": [
  10014. "dotenv",
  10015. "env",
  10016. "environment"
  10017. ],
  10018. "support": {
  10019. "issues": "https://github.com/vlucas/phpdotenv/issues",
  10020. "source": "https://github.com/vlucas/phpdotenv/tree/v5.4.1"
  10021. },
  10022. "funding": [
  10023. {
  10024. "url": "https://github.com/GrahamCampbell",
  10025. "type": "github"
  10026. },
  10027. {
  10028. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  10029. "type": "tidelift"
  10030. }
  10031. ],
  10032. "time": "2021-12-12T23:22:04+00:00"
  10033. },
  10034. {
  10035. "name": "voku/portable-ascii",
  10036. "version": "1.6.1",
  10037. "source": {
  10038. "type": "git",
  10039. "url": "https://github.com/voku/portable-ascii.git",
  10040. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a"
  10041. },
  10042. "dist": {
  10043. "type": "zip",
  10044. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/87337c91b9dfacee02452244ee14ab3c43bc485a",
  10045. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a",
  10046. "shasum": "",
  10047. "mirrors": [
  10048. {
  10049. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10050. "preferred": true
  10051. }
  10052. ]
  10053. },
  10054. "require": {
  10055. "php": ">=7.0.0"
  10056. },
  10057. "require-dev": {
  10058. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  10059. },
  10060. "suggest": {
  10061. "ext-intl": "Use Intl for transliterator_transliterate() support"
  10062. },
  10063. "type": "library",
  10064. "autoload": {
  10065. "psr-4": {
  10066. "voku\\": "src/voku/"
  10067. }
  10068. },
  10069. "notification-url": "https://packagist.org/downloads/",
  10070. "license": [
  10071. "MIT"
  10072. ],
  10073. "authors": [
  10074. {
  10075. "name": "Lars Moelleken",
  10076. "homepage": "http://www.moelleken.org/"
  10077. }
  10078. ],
  10079. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  10080. "homepage": "https://github.com/voku/portable-ascii",
  10081. "keywords": [
  10082. "ascii",
  10083. "clean",
  10084. "php"
  10085. ],
  10086. "support": {
  10087. "issues": "https://github.com/voku/portable-ascii/issues",
  10088. "source": "https://github.com/voku/portable-ascii/tree/1.6.1"
  10089. },
  10090. "funding": [
  10091. {
  10092. "url": "https://www.paypal.me/moelleken",
  10093. "type": "custom"
  10094. },
  10095. {
  10096. "url": "https://github.com/voku",
  10097. "type": "github"
  10098. },
  10099. {
  10100. "url": "https://opencollective.com/portable-ascii",
  10101. "type": "open_collective"
  10102. },
  10103. {
  10104. "url": "https://www.patreon.com/voku",
  10105. "type": "patreon"
  10106. },
  10107. {
  10108. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  10109. "type": "tidelift"
  10110. }
  10111. ],
  10112. "time": "2022-01-24T18:55:24+00:00"
  10113. },
  10114. {
  10115. "name": "webmozart/assert",
  10116. "version": "1.11.0",
  10117. "source": {
  10118. "type": "git",
  10119. "url": "https://github.com/webmozarts/assert.git",
  10120. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  10121. },
  10122. "dist": {
  10123. "type": "zip",
  10124. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  10125. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  10126. "shasum": "",
  10127. "mirrors": [
  10128. {
  10129. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10130. "preferred": true
  10131. }
  10132. ]
  10133. },
  10134. "require": {
  10135. "ext-ctype": "*",
  10136. "php": "^7.2 || ^8.0"
  10137. },
  10138. "conflict": {
  10139. "phpstan/phpstan": "<0.12.20",
  10140. "vimeo/psalm": "<4.6.1 || 4.6.2"
  10141. },
  10142. "require-dev": {
  10143. "phpunit/phpunit": "^8.5.13"
  10144. },
  10145. "type": "library",
  10146. "extra": {
  10147. "branch-alias": {
  10148. "dev-master": "1.10-dev"
  10149. }
  10150. },
  10151. "autoload": {
  10152. "psr-4": {
  10153. "Webmozart\\Assert\\": "src/"
  10154. }
  10155. },
  10156. "notification-url": "https://packagist.org/downloads/",
  10157. "license": [
  10158. "MIT"
  10159. ],
  10160. "authors": [
  10161. {
  10162. "name": "Bernhard Schussek",
  10163. "email": "bschussek@gmail.com"
  10164. }
  10165. ],
  10166. "description": "Assertions to validate method input/output with nice error messages.",
  10167. "keywords": [
  10168. "assert",
  10169. "check",
  10170. "validate"
  10171. ],
  10172. "support": {
  10173. "issues": "https://github.com/webmozarts/assert/issues",
  10174. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  10175. },
  10176. "time": "2022-06-03T18:03:27+00:00"
  10177. },
  10178. {
  10179. "name": "wemersonjanuario/wkhtmltopdf-windows",
  10180. "version": "0.12.2.3",
  10181. "source": {
  10182. "type": "git",
  10183. "url": "https://github.com/wemersonjanuario/wkhtmltopdf-windows.git",
  10184. "reference": "90fcd3487cad5931287742113c449b926e9e48d8"
  10185. },
  10186. "dist": {
  10187. "type": "zip",
  10188. "url": "https://api.github.com/repos/wemersonjanuario/wkhtmltopdf-windows/zipball/90fcd3487cad5931287742113c449b926e9e48d8",
  10189. "reference": "90fcd3487cad5931287742113c449b926e9e48d8",
  10190. "shasum": "",
  10191. "mirrors": [
  10192. {
  10193. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10194. "preferred": true
  10195. }
  10196. ]
  10197. },
  10198. "suggest": {
  10199. "h4cc/wkhtmltopdf-amd64": "*",
  10200. "h4cc/wkhtmltopdf-i386": "*",
  10201. "wemersonjanuario/laravelpdf": "1.0.*"
  10202. },
  10203. "bin": [
  10204. "bin/32bit/wkhtmltopdf.exe",
  10205. "bin/32bit/wkhtmltoimage.exe",
  10206. "bin/64bit/wkhtmltopdf.exe",
  10207. "bin/64bit/wkhtmltoimage.exe"
  10208. ],
  10209. "type": "library",
  10210. "notification-url": "https://packagist.org/downloads/",
  10211. "license": [
  10212. "LGPL Version 3"
  10213. ],
  10214. "authors": [
  10215. {
  10216. "name": "Wemerson Januario",
  10217. "email": "wemerson.januario@gmail.com",
  10218. "homepage": "http://wemersonjanuario.com.br"
  10219. }
  10220. ],
  10221. "description": "Convert html to pdf using webkit (qtwebkit). Static linked windows binary for 32 bit and 64 bit systems.",
  10222. "homepage": "http://wkhtmltopdf.org/",
  10223. "keywords": [
  10224. "binary",
  10225. "convert",
  10226. "htmltoimage",
  10227. "htmltopdf",
  10228. "pdf",
  10229. "snapshot",
  10230. "thumbnail",
  10231. "wkhtmltopdf"
  10232. ],
  10233. "support": {
  10234. "issues": "https://github.com/wemersonjanuario/wkhtmltopdf-windows/issues?state=open",
  10235. "source": "https://github.com/wemersonjanuario/wkhtmltopdf-windows/tree/master"
  10236. },
  10237. "time": "2015-06-30T20:19:22+00:00"
  10238. }
  10239. ],
  10240. "packages-dev": [
  10241. {
  10242. "name": "barryvdh/laravel-ide-helper",
  10243. "version": "v2.12.3",
  10244. "source": {
  10245. "type": "git",
  10246. "url": "https://github.com/barryvdh/laravel-ide-helper.git",
  10247. "reference": "3ba1e2573b38f72107b8aacc4ee177fcab30a550"
  10248. },
  10249. "dist": {
  10250. "type": "zip",
  10251. "url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/3ba1e2573b38f72107b8aacc4ee177fcab30a550",
  10252. "reference": "3ba1e2573b38f72107b8aacc4ee177fcab30a550",
  10253. "shasum": "",
  10254. "mirrors": [
  10255. {
  10256. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10257. "preferred": true
  10258. }
  10259. ]
  10260. },
  10261. "require": {
  10262. "barryvdh/reflection-docblock": "^2.0.6",
  10263. "composer/pcre": "^1 || ^2 || ^3",
  10264. "doctrine/dbal": "^2.6 || ^3",
  10265. "ext-json": "*",
  10266. "illuminate/console": "^8 || ^9",
  10267. "illuminate/filesystem": "^8 || ^9",
  10268. "illuminate/support": "^8 || ^9",
  10269. "nikic/php-parser": "^4.7",
  10270. "php": "^7.3 || ^8.0",
  10271. "phpdocumentor/type-resolver": "^1.1.0"
  10272. },
  10273. "require-dev": {
  10274. "ext-pdo_sqlite": "*",
  10275. "friendsofphp/php-cs-fixer": "^2",
  10276. "illuminate/config": "^8 || ^9",
  10277. "illuminate/view": "^8 || ^9",
  10278. "mockery/mockery": "^1.4",
  10279. "orchestra/testbench": "^6 || ^7",
  10280. "phpunit/phpunit": "^8.5 || ^9",
  10281. "spatie/phpunit-snapshot-assertions": "^3 || ^4",
  10282. "vimeo/psalm": "^3.12"
  10283. },
  10284. "suggest": {
  10285. "illuminate/events": "Required for automatic helper generation (^6|^7|^8|^9)."
  10286. },
  10287. "type": "library",
  10288. "extra": {
  10289. "branch-alias": {
  10290. "dev-master": "2.12-dev"
  10291. },
  10292. "laravel": {
  10293. "providers": [
  10294. "Barryvdh\\LaravelIdeHelper\\IdeHelperServiceProvider"
  10295. ]
  10296. }
  10297. },
  10298. "autoload": {
  10299. "psr-4": {
  10300. "Barryvdh\\LaravelIdeHelper\\": "src"
  10301. }
  10302. },
  10303. "notification-url": "https://packagist.org/downloads/",
  10304. "license": [
  10305. "MIT"
  10306. ],
  10307. "authors": [
  10308. {
  10309. "name": "Barry vd. Heuvel",
  10310. "email": "barryvdh@gmail.com"
  10311. }
  10312. ],
  10313. "description": "Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.",
  10314. "keywords": [
  10315. "autocomplete",
  10316. "codeintel",
  10317. "helper",
  10318. "ide",
  10319. "laravel",
  10320. "netbeans",
  10321. "phpdoc",
  10322. "phpstorm",
  10323. "sublime"
  10324. ],
  10325. "support": {
  10326. "issues": "https://github.com/barryvdh/laravel-ide-helper/issues",
  10327. "source": "https://github.com/barryvdh/laravel-ide-helper/tree/v2.12.3"
  10328. },
  10329. "funding": [
  10330. {
  10331. "url": "https://fruitcake.nl",
  10332. "type": "custom"
  10333. },
  10334. {
  10335. "url": "https://github.com/barryvdh",
  10336. "type": "github"
  10337. }
  10338. ],
  10339. "time": "2022-03-06T14:33:42+00:00"
  10340. },
  10341. {
  10342. "name": "barryvdh/reflection-docblock",
  10343. "version": "v2.0.6",
  10344. "source": {
  10345. "type": "git",
  10346. "url": "https://github.com/barryvdh/ReflectionDocBlock.git",
  10347. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16"
  10348. },
  10349. "dist": {
  10350. "type": "zip",
  10351. "url": "https://api.github.com/repos/barryvdh/ReflectionDocBlock/zipball/6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  10352. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  10353. "shasum": "",
  10354. "mirrors": [
  10355. {
  10356. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10357. "preferred": true
  10358. }
  10359. ]
  10360. },
  10361. "require": {
  10362. "php": ">=5.3.3"
  10363. },
  10364. "require-dev": {
  10365. "phpunit/phpunit": "~4.0,<4.5"
  10366. },
  10367. "suggest": {
  10368. "dflydev/markdown": "~1.0",
  10369. "erusev/parsedown": "~1.0"
  10370. },
  10371. "type": "library",
  10372. "extra": {
  10373. "branch-alias": {
  10374. "dev-master": "2.0.x-dev"
  10375. }
  10376. },
  10377. "autoload": {
  10378. "psr-0": {
  10379. "Barryvdh": [
  10380. "src/"
  10381. ]
  10382. }
  10383. },
  10384. "notification-url": "https://packagist.org/downloads/",
  10385. "license": [
  10386. "MIT"
  10387. ],
  10388. "authors": [
  10389. {
  10390. "name": "Mike van Riel",
  10391. "email": "mike.vanriel@naenius.com"
  10392. }
  10393. ],
  10394. "support": {
  10395. "source": "https://github.com/barryvdh/ReflectionDocBlock/tree/v2.0.6"
  10396. },
  10397. "time": "2018-12-13T10:34:14+00:00"
  10398. },
  10399. {
  10400. "name": "composer/pcre",
  10401. "version": "3.0.0",
  10402. "source": {
  10403. "type": "git",
  10404. "url": "https://github.com/composer/pcre.git",
  10405. "reference": "e300eb6c535192decd27a85bc72a9290f0d6b3bd"
  10406. },
  10407. "dist": {
  10408. "type": "zip",
  10409. "url": "https://api.github.com/repos/composer/pcre/zipball/e300eb6c535192decd27a85bc72a9290f0d6b3bd",
  10410. "reference": "e300eb6c535192decd27a85bc72a9290f0d6b3bd",
  10411. "shasum": "",
  10412. "mirrors": [
  10413. {
  10414. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10415. "preferred": true
  10416. }
  10417. ]
  10418. },
  10419. "require": {
  10420. "php": "^7.4 || ^8.0"
  10421. },
  10422. "require-dev": {
  10423. "phpstan/phpstan": "^1.3",
  10424. "phpstan/phpstan-strict-rules": "^1.1",
  10425. "symfony/phpunit-bridge": "^5"
  10426. },
  10427. "type": "library",
  10428. "extra": {
  10429. "branch-alias": {
  10430. "dev-main": "3.x-dev"
  10431. }
  10432. },
  10433. "autoload": {
  10434. "psr-4": {
  10435. "Composer\\Pcre\\": "src"
  10436. }
  10437. },
  10438. "notification-url": "https://packagist.org/downloads/",
  10439. "license": [
  10440. "MIT"
  10441. ],
  10442. "authors": [
  10443. {
  10444. "name": "Jordi Boggiano",
  10445. "email": "j.boggiano@seld.be",
  10446. "homepage": "http://seld.be"
  10447. }
  10448. ],
  10449. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  10450. "keywords": [
  10451. "PCRE",
  10452. "preg",
  10453. "regex",
  10454. "regular expression"
  10455. ],
  10456. "support": {
  10457. "issues": "https://github.com/composer/pcre/issues",
  10458. "source": "https://github.com/composer/pcre/tree/3.0.0"
  10459. },
  10460. "funding": [
  10461. {
  10462. "url": "https://packagist.com",
  10463. "type": "custom"
  10464. },
  10465. {
  10466. "url": "https://github.com/composer",
  10467. "type": "github"
  10468. },
  10469. {
  10470. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  10471. "type": "tidelift"
  10472. }
  10473. ],
  10474. "time": "2022-02-25T20:21:48+00:00"
  10475. },
  10476. {
  10477. "name": "doctrine/instantiator",
  10478. "version": "1.4.1",
  10479. "source": {
  10480. "type": "git",
  10481. "url": "https://github.com/doctrine/instantiator.git",
  10482. "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc"
  10483. },
  10484. "dist": {
  10485. "type": "zip",
  10486. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/10dcfce151b967d20fde1b34ae6640712c3891bc",
  10487. "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc",
  10488. "shasum": "",
  10489. "mirrors": [
  10490. {
  10491. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10492. "preferred": true
  10493. }
  10494. ]
  10495. },
  10496. "require": {
  10497. "php": "^7.1 || ^8.0"
  10498. },
  10499. "require-dev": {
  10500. "doctrine/coding-standard": "^9",
  10501. "ext-pdo": "*",
  10502. "ext-phar": "*",
  10503. "phpbench/phpbench": "^0.16 || ^1",
  10504. "phpstan/phpstan": "^1.4",
  10505. "phpstan/phpstan-phpunit": "^1",
  10506. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  10507. "vimeo/psalm": "^4.22"
  10508. },
  10509. "type": "library",
  10510. "autoload": {
  10511. "psr-4": {
  10512. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  10513. }
  10514. },
  10515. "notification-url": "https://packagist.org/downloads/",
  10516. "license": [
  10517. "MIT"
  10518. ],
  10519. "authors": [
  10520. {
  10521. "name": "Marco Pivetta",
  10522. "email": "ocramius@gmail.com",
  10523. "homepage": "https://ocramius.github.io/"
  10524. }
  10525. ],
  10526. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  10527. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  10528. "keywords": [
  10529. "constructor",
  10530. "instantiate"
  10531. ],
  10532. "support": {
  10533. "issues": "https://github.com/doctrine/instantiator/issues",
  10534. "source": "https://github.com/doctrine/instantiator/tree/1.4.1"
  10535. },
  10536. "funding": [
  10537. {
  10538. "url": "https://www.doctrine-project.org/sponsorship.html",
  10539. "type": "custom"
  10540. },
  10541. {
  10542. "url": "https://www.patreon.com/phpdoctrine",
  10543. "type": "patreon"
  10544. },
  10545. {
  10546. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  10547. "type": "tidelift"
  10548. }
  10549. ],
  10550. "time": "2022-03-03T08:28:38+00:00"
  10551. },
  10552. {
  10553. "name": "facade/flare-client-php",
  10554. "version": "1.10.0",
  10555. "source": {
  10556. "type": "git",
  10557. "url": "https://github.com/facade/flare-client-php.git",
  10558. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8"
  10559. },
  10560. "dist": {
  10561. "type": "zip",
  10562. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  10563. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  10564. "shasum": "",
  10565. "mirrors": [
  10566. {
  10567. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10568. "preferred": true
  10569. }
  10570. ]
  10571. },
  10572. "require": {
  10573. "facade/ignition-contracts": "~1.0",
  10574. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  10575. "php": "^7.1|^8.0",
  10576. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  10577. "symfony/mime": "^3.4|^4.0|^5.1",
  10578. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  10579. },
  10580. "require-dev": {
  10581. "friendsofphp/php-cs-fixer": "^2.14",
  10582. "phpunit/phpunit": "^7.5",
  10583. "spatie/phpunit-snapshot-assertions": "^2.0"
  10584. },
  10585. "type": "library",
  10586. "extra": {
  10587. "branch-alias": {
  10588. "dev-master": "1.0-dev"
  10589. }
  10590. },
  10591. "autoload": {
  10592. "files": [
  10593. "src/helpers.php"
  10594. ],
  10595. "psr-4": {
  10596. "Facade\\FlareClient\\": "src"
  10597. }
  10598. },
  10599. "notification-url": "https://packagist.org/downloads/",
  10600. "license": [
  10601. "MIT"
  10602. ],
  10603. "description": "Send PHP errors to Flare",
  10604. "homepage": "https://github.com/facade/flare-client-php",
  10605. "keywords": [
  10606. "exception",
  10607. "facade",
  10608. "flare",
  10609. "reporting"
  10610. ],
  10611. "support": {
  10612. "issues": "https://github.com/facade/flare-client-php/issues",
  10613. "source": "https://github.com/facade/flare-client-php/tree/1.10.0"
  10614. },
  10615. "funding": [
  10616. {
  10617. "url": "https://github.com/spatie",
  10618. "type": "github"
  10619. }
  10620. ],
  10621. "time": "2022-08-09T11:23:57+00:00"
  10622. },
  10623. {
  10624. "name": "facade/ignition",
  10625. "version": "2.17.6",
  10626. "source": {
  10627. "type": "git",
  10628. "url": "https://github.com/facade/ignition.git",
  10629. "reference": "6acd82e986a2ecee89e2e68adfc30a1936d1ab7c"
  10630. },
  10631. "dist": {
  10632. "type": "zip",
  10633. "url": "https://api.github.com/repos/facade/ignition/zipball/6acd82e986a2ecee89e2e68adfc30a1936d1ab7c",
  10634. "reference": "6acd82e986a2ecee89e2e68adfc30a1936d1ab7c",
  10635. "shasum": "",
  10636. "mirrors": [
  10637. {
  10638. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10639. "preferred": true
  10640. }
  10641. ]
  10642. },
  10643. "require": {
  10644. "ext-curl": "*",
  10645. "ext-json": "*",
  10646. "ext-mbstring": "*",
  10647. "facade/flare-client-php": "^1.9.1",
  10648. "facade/ignition-contracts": "^1.0.2",
  10649. "illuminate/support": "^7.0|^8.0",
  10650. "monolog/monolog": "^2.0",
  10651. "php": "^7.2.5|^8.0",
  10652. "symfony/console": "^5.0",
  10653. "symfony/var-dumper": "^5.0"
  10654. },
  10655. "require-dev": {
  10656. "friendsofphp/php-cs-fixer": "^2.14",
  10657. "livewire/livewire": "^2.4",
  10658. "mockery/mockery": "^1.3",
  10659. "orchestra/testbench": "^5.0|^6.0",
  10660. "psalm/plugin-laravel": "^1.2"
  10661. },
  10662. "suggest": {
  10663. "laravel/telescope": "^3.1"
  10664. },
  10665. "type": "library",
  10666. "extra": {
  10667. "branch-alias": {
  10668. "dev-master": "2.x-dev"
  10669. },
  10670. "laravel": {
  10671. "providers": [
  10672. "Facade\\Ignition\\IgnitionServiceProvider"
  10673. ],
  10674. "aliases": {
  10675. "Flare": "Facade\\Ignition\\Facades\\Flare"
  10676. }
  10677. }
  10678. },
  10679. "autoload": {
  10680. "files": [
  10681. "src/helpers.php"
  10682. ],
  10683. "psr-4": {
  10684. "Facade\\Ignition\\": "src"
  10685. }
  10686. },
  10687. "notification-url": "https://packagist.org/downloads/",
  10688. "license": [
  10689. "MIT"
  10690. ],
  10691. "description": "A beautiful error page for Laravel applications.",
  10692. "homepage": "https://github.com/facade/ignition",
  10693. "keywords": [
  10694. "error",
  10695. "flare",
  10696. "laravel",
  10697. "page"
  10698. ],
  10699. "support": {
  10700. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  10701. "forum": "https://twitter.com/flareappio",
  10702. "issues": "https://github.com/facade/ignition/issues",
  10703. "source": "https://github.com/facade/ignition"
  10704. },
  10705. "time": "2022-06-30T18:26:59+00:00"
  10706. },
  10707. {
  10708. "name": "facade/ignition-contracts",
  10709. "version": "1.0.2",
  10710. "source": {
  10711. "type": "git",
  10712. "url": "https://github.com/facade/ignition-contracts.git",
  10713. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  10714. },
  10715. "dist": {
  10716. "type": "zip",
  10717. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  10718. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  10719. "shasum": "",
  10720. "mirrors": [
  10721. {
  10722. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10723. "preferred": true
  10724. }
  10725. ]
  10726. },
  10727. "require": {
  10728. "php": "^7.3|^8.0"
  10729. },
  10730. "require-dev": {
  10731. "friendsofphp/php-cs-fixer": "^v2.15.8",
  10732. "phpunit/phpunit": "^9.3.11",
  10733. "vimeo/psalm": "^3.17.1"
  10734. },
  10735. "type": "library",
  10736. "autoload": {
  10737. "psr-4": {
  10738. "Facade\\IgnitionContracts\\": "src"
  10739. }
  10740. },
  10741. "notification-url": "https://packagist.org/downloads/",
  10742. "license": [
  10743. "MIT"
  10744. ],
  10745. "authors": [
  10746. {
  10747. "name": "Freek Van der Herten",
  10748. "email": "freek@spatie.be",
  10749. "homepage": "https://flareapp.io",
  10750. "role": "Developer"
  10751. }
  10752. ],
  10753. "description": "Solution contracts for Ignition",
  10754. "homepage": "https://github.com/facade/ignition-contracts",
  10755. "keywords": [
  10756. "contracts",
  10757. "flare",
  10758. "ignition"
  10759. ],
  10760. "support": {
  10761. "issues": "https://github.com/facade/ignition-contracts/issues",
  10762. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  10763. },
  10764. "time": "2020-10-16T08:27:54+00:00"
  10765. },
  10766. {
  10767. "name": "fakerphp/faker",
  10768. "version": "v1.19.0",
  10769. "source": {
  10770. "type": "git",
  10771. "url": "https://github.com/FakerPHP/Faker.git",
  10772. "reference": "d7f08a622b3346766325488aa32ddc93ccdecc75"
  10773. },
  10774. "dist": {
  10775. "type": "zip",
  10776. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/d7f08a622b3346766325488aa32ddc93ccdecc75",
  10777. "reference": "d7f08a622b3346766325488aa32ddc93ccdecc75",
  10778. "shasum": "",
  10779. "mirrors": [
  10780. {
  10781. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10782. "preferred": true
  10783. }
  10784. ]
  10785. },
  10786. "require": {
  10787. "php": "^7.1 || ^8.0",
  10788. "psr/container": "^1.0 || ^2.0",
  10789. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  10790. },
  10791. "conflict": {
  10792. "fzaninotto/faker": "*"
  10793. },
  10794. "require-dev": {
  10795. "bamarni/composer-bin-plugin": "^1.4.1",
  10796. "doctrine/persistence": "^1.3 || ^2.0",
  10797. "ext-intl": "*",
  10798. "symfony/phpunit-bridge": "^4.4 || ^5.2"
  10799. },
  10800. "suggest": {
  10801. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  10802. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  10803. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  10804. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  10805. "ext-mbstring": "Required for multibyte Unicode string functionality."
  10806. },
  10807. "type": "library",
  10808. "extra": {
  10809. "branch-alias": {
  10810. "dev-main": "v1.19-dev"
  10811. }
  10812. },
  10813. "autoload": {
  10814. "psr-4": {
  10815. "Faker\\": "src/Faker/"
  10816. }
  10817. },
  10818. "notification-url": "https://packagist.org/downloads/",
  10819. "license": [
  10820. "MIT"
  10821. ],
  10822. "authors": [
  10823. {
  10824. "name": "François Zaninotto"
  10825. }
  10826. ],
  10827. "description": "Faker is a PHP library that generates fake data for you.",
  10828. "keywords": [
  10829. "data",
  10830. "faker",
  10831. "fixtures"
  10832. ],
  10833. "support": {
  10834. "issues": "https://github.com/FakerPHP/Faker/issues",
  10835. "source": "https://github.com/FakerPHP/Faker/tree/v1.19.0"
  10836. },
  10837. "time": "2022-02-02T17:38:57+00:00"
  10838. },
  10839. {
  10840. "name": "filp/whoops",
  10841. "version": "2.14.5",
  10842. "source": {
  10843. "type": "git",
  10844. "url": "https://github.com/filp/whoops.git",
  10845. "reference": "a63e5e8f26ebbebf8ed3c5c691637325512eb0dc"
  10846. },
  10847. "dist": {
  10848. "type": "zip",
  10849. "url": "https://api.github.com/repos/filp/whoops/zipball/a63e5e8f26ebbebf8ed3c5c691637325512eb0dc",
  10850. "reference": "a63e5e8f26ebbebf8ed3c5c691637325512eb0dc",
  10851. "shasum": "",
  10852. "mirrors": [
  10853. {
  10854. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10855. "preferred": true
  10856. }
  10857. ]
  10858. },
  10859. "require": {
  10860. "php": "^5.5.9 || ^7.0 || ^8.0",
  10861. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  10862. },
  10863. "require-dev": {
  10864. "mockery/mockery": "^0.9 || ^1.0",
  10865. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  10866. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  10867. },
  10868. "suggest": {
  10869. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  10870. "whoops/soap": "Formats errors as SOAP responses"
  10871. },
  10872. "type": "library",
  10873. "extra": {
  10874. "branch-alias": {
  10875. "dev-master": "2.7-dev"
  10876. }
  10877. },
  10878. "autoload": {
  10879. "psr-4": {
  10880. "Whoops\\": "src/Whoops/"
  10881. }
  10882. },
  10883. "notification-url": "https://packagist.org/downloads/",
  10884. "license": [
  10885. "MIT"
  10886. ],
  10887. "authors": [
  10888. {
  10889. "name": "Filipe Dobreira",
  10890. "homepage": "https://github.com/filp",
  10891. "role": "Developer"
  10892. }
  10893. ],
  10894. "description": "php error handling for cool kids",
  10895. "homepage": "https://filp.github.io/whoops/",
  10896. "keywords": [
  10897. "error",
  10898. "exception",
  10899. "handling",
  10900. "library",
  10901. "throwable",
  10902. "whoops"
  10903. ],
  10904. "support": {
  10905. "issues": "https://github.com/filp/whoops/issues",
  10906. "source": "https://github.com/filp/whoops/tree/2.14.5"
  10907. },
  10908. "funding": [
  10909. {
  10910. "url": "https://github.com/denis-sokolov",
  10911. "type": "github"
  10912. }
  10913. ],
  10914. "time": "2022-01-07T12:00:00+00:00"
  10915. },
  10916. {
  10917. "name": "hamcrest/hamcrest-php",
  10918. "version": "v2.0.1",
  10919. "source": {
  10920. "type": "git",
  10921. "url": "https://github.com/hamcrest/hamcrest-php.git",
  10922. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  10923. },
  10924. "dist": {
  10925. "type": "zip",
  10926. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  10927. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  10928. "shasum": "",
  10929. "mirrors": [
  10930. {
  10931. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10932. "preferred": true
  10933. }
  10934. ]
  10935. },
  10936. "require": {
  10937. "php": "^5.3|^7.0|^8.0"
  10938. },
  10939. "replace": {
  10940. "cordoval/hamcrest-php": "*",
  10941. "davedevelopment/hamcrest-php": "*",
  10942. "kodova/hamcrest-php": "*"
  10943. },
  10944. "require-dev": {
  10945. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  10946. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  10947. },
  10948. "type": "library",
  10949. "extra": {
  10950. "branch-alias": {
  10951. "dev-master": "2.1-dev"
  10952. }
  10953. },
  10954. "autoload": {
  10955. "classmap": [
  10956. "hamcrest"
  10957. ]
  10958. },
  10959. "notification-url": "https://packagist.org/downloads/",
  10960. "license": [
  10961. "BSD-3-Clause"
  10962. ],
  10963. "description": "This is the PHP port of Hamcrest Matchers",
  10964. "keywords": [
  10965. "test"
  10966. ],
  10967. "support": {
  10968. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  10969. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  10970. },
  10971. "time": "2020-07-09T08:09:16+00:00"
  10972. },
  10973. {
  10974. "name": "laravel/sail",
  10975. "version": "v1.15.3",
  10976. "source": {
  10977. "type": "git",
  10978. "url": "https://github.com/laravel/sail.git",
  10979. "reference": "7e7222ef0b0d7f0a0b9635543c0d7d09ef720cf1"
  10980. },
  10981. "dist": {
  10982. "type": "zip",
  10983. "url": "https://api.github.com/repos/laravel/sail/zipball/7e7222ef0b0d7f0a0b9635543c0d7d09ef720cf1",
  10984. "reference": "7e7222ef0b0d7f0a0b9635543c0d7d09ef720cf1",
  10985. "shasum": "",
  10986. "mirrors": [
  10987. {
  10988. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10989. "preferred": true
  10990. }
  10991. ]
  10992. },
  10993. "require": {
  10994. "illuminate/console": "^8.0|^9.0",
  10995. "illuminate/contracts": "^8.0|^9.0",
  10996. "illuminate/support": "^8.0|^9.0",
  10997. "php": "^7.3|^8.0"
  10998. },
  10999. "bin": [
  11000. "bin/sail"
  11001. ],
  11002. "type": "library",
  11003. "extra": {
  11004. "branch-alias": {
  11005. "dev-master": "1.x-dev"
  11006. },
  11007. "laravel": {
  11008. "providers": [
  11009. "Laravel\\Sail\\SailServiceProvider"
  11010. ]
  11011. }
  11012. },
  11013. "autoload": {
  11014. "psr-4": {
  11015. "Laravel\\Sail\\": "src/"
  11016. }
  11017. },
  11018. "notification-url": "https://packagist.org/downloads/",
  11019. "license": [
  11020. "MIT"
  11021. ],
  11022. "authors": [
  11023. {
  11024. "name": "Taylor Otwell",
  11025. "email": "taylor@laravel.com"
  11026. }
  11027. ],
  11028. "description": "Docker files for running a basic Laravel application.",
  11029. "keywords": [
  11030. "docker",
  11031. "laravel"
  11032. ],
  11033. "support": {
  11034. "issues": "https://github.com/laravel/sail/issues",
  11035. "source": "https://github.com/laravel/sail"
  11036. },
  11037. "time": "2022-08-16T14:53:54+00:00"
  11038. },
  11039. {
  11040. "name": "mockery/mockery",
  11041. "version": "1.5.0",
  11042. "source": {
  11043. "type": "git",
  11044. "url": "https://github.com/mockery/mockery.git",
  11045. "reference": "c10a5f6e06fc2470ab1822fa13fa2a7380f8fbac"
  11046. },
  11047. "dist": {
  11048. "type": "zip",
  11049. "url": "https://api.github.com/repos/mockery/mockery/zipball/c10a5f6e06fc2470ab1822fa13fa2a7380f8fbac",
  11050. "reference": "c10a5f6e06fc2470ab1822fa13fa2a7380f8fbac",
  11051. "shasum": "",
  11052. "mirrors": [
  11053. {
  11054. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11055. "preferred": true
  11056. }
  11057. ]
  11058. },
  11059. "require": {
  11060. "hamcrest/hamcrest-php": "^2.0.1",
  11061. "lib-pcre": ">=7.0",
  11062. "php": "^7.3 || ^8.0"
  11063. },
  11064. "conflict": {
  11065. "phpunit/phpunit": "<8.0"
  11066. },
  11067. "require-dev": {
  11068. "phpunit/phpunit": "^8.5 || ^9.3"
  11069. },
  11070. "type": "library",
  11071. "extra": {
  11072. "branch-alias": {
  11073. "dev-master": "1.4.x-dev"
  11074. }
  11075. },
  11076. "autoload": {
  11077. "psr-0": {
  11078. "Mockery": "library/"
  11079. }
  11080. },
  11081. "notification-url": "https://packagist.org/downloads/",
  11082. "license": [
  11083. "BSD-3-Clause"
  11084. ],
  11085. "authors": [
  11086. {
  11087. "name": "Pádraic Brady",
  11088. "email": "padraic.brady@gmail.com",
  11089. "homepage": "http://blog.astrumfutura.com"
  11090. },
  11091. {
  11092. "name": "Dave Marshall",
  11093. "email": "dave.marshall@atstsolutions.co.uk",
  11094. "homepage": "http://davedevelopment.co.uk"
  11095. }
  11096. ],
  11097. "description": "Mockery is a simple yet flexible PHP mock object framework",
  11098. "homepage": "https://github.com/mockery/mockery",
  11099. "keywords": [
  11100. "BDD",
  11101. "TDD",
  11102. "library",
  11103. "mock",
  11104. "mock objects",
  11105. "mockery",
  11106. "stub",
  11107. "test",
  11108. "test double",
  11109. "testing"
  11110. ],
  11111. "support": {
  11112. "issues": "https://github.com/mockery/mockery/issues",
  11113. "source": "https://github.com/mockery/mockery/tree/1.5.0"
  11114. },
  11115. "time": "2022-01-20T13:18:17+00:00"
  11116. },
  11117. {
  11118. "name": "myclabs/deep-copy",
  11119. "version": "1.11.0",
  11120. "source": {
  11121. "type": "git",
  11122. "url": "https://github.com/myclabs/DeepCopy.git",
  11123. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614"
  11124. },
  11125. "dist": {
  11126. "type": "zip",
  11127. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/14daed4296fae74d9e3201d2c4925d1acb7aa614",
  11128. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614",
  11129. "shasum": "",
  11130. "mirrors": [
  11131. {
  11132. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11133. "preferred": true
  11134. }
  11135. ]
  11136. },
  11137. "require": {
  11138. "php": "^7.1 || ^8.0"
  11139. },
  11140. "conflict": {
  11141. "doctrine/collections": "<1.6.8",
  11142. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  11143. },
  11144. "require-dev": {
  11145. "doctrine/collections": "^1.6.8",
  11146. "doctrine/common": "^2.13.3 || ^3.2.2",
  11147. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  11148. },
  11149. "type": "library",
  11150. "autoload": {
  11151. "files": [
  11152. "src/DeepCopy/deep_copy.php"
  11153. ],
  11154. "psr-4": {
  11155. "DeepCopy\\": "src/DeepCopy/"
  11156. }
  11157. },
  11158. "notification-url": "https://packagist.org/downloads/",
  11159. "license": [
  11160. "MIT"
  11161. ],
  11162. "description": "Create deep copies (clones) of your objects",
  11163. "keywords": [
  11164. "clone",
  11165. "copy",
  11166. "duplicate",
  11167. "object",
  11168. "object graph"
  11169. ],
  11170. "support": {
  11171. "issues": "https://github.com/myclabs/DeepCopy/issues",
  11172. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.0"
  11173. },
  11174. "funding": [
  11175. {
  11176. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  11177. "type": "tidelift"
  11178. }
  11179. ],
  11180. "time": "2022-03-03T13:19:32+00:00"
  11181. },
  11182. {
  11183. "name": "nunomaduro/collision",
  11184. "version": "v5.11.0",
  11185. "source": {
  11186. "type": "git",
  11187. "url": "https://github.com/nunomaduro/collision.git",
  11188. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461"
  11189. },
  11190. "dist": {
  11191. "type": "zip",
  11192. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/8b610eef8582ccdc05d8f2ab23305e2d37049461",
  11193. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461",
  11194. "shasum": "",
  11195. "mirrors": [
  11196. {
  11197. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11198. "preferred": true
  11199. }
  11200. ]
  11201. },
  11202. "require": {
  11203. "facade/ignition-contracts": "^1.0",
  11204. "filp/whoops": "^2.14.3",
  11205. "php": "^7.3 || ^8.0",
  11206. "symfony/console": "^5.0"
  11207. },
  11208. "require-dev": {
  11209. "brianium/paratest": "^6.1",
  11210. "fideloper/proxy": "^4.4.1",
  11211. "fruitcake/laravel-cors": "^2.0.3",
  11212. "laravel/framework": "8.x-dev",
  11213. "nunomaduro/larastan": "^0.6.2",
  11214. "nunomaduro/mock-final-classes": "^1.0",
  11215. "orchestra/testbench": "^6.0",
  11216. "phpstan/phpstan": "^0.12.64",
  11217. "phpunit/phpunit": "^9.5.0"
  11218. },
  11219. "type": "library",
  11220. "extra": {
  11221. "laravel": {
  11222. "providers": [
  11223. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  11224. ]
  11225. }
  11226. },
  11227. "autoload": {
  11228. "psr-4": {
  11229. "NunoMaduro\\Collision\\": "src/"
  11230. }
  11231. },
  11232. "notification-url": "https://packagist.org/downloads/",
  11233. "license": [
  11234. "MIT"
  11235. ],
  11236. "authors": [
  11237. {
  11238. "name": "Nuno Maduro",
  11239. "email": "enunomaduro@gmail.com"
  11240. }
  11241. ],
  11242. "description": "Cli error handling for console/command-line PHP applications.",
  11243. "keywords": [
  11244. "artisan",
  11245. "cli",
  11246. "command-line",
  11247. "console",
  11248. "error",
  11249. "handling",
  11250. "laravel",
  11251. "laravel-zero",
  11252. "php",
  11253. "symfony"
  11254. ],
  11255. "support": {
  11256. "issues": "https://github.com/nunomaduro/collision/issues",
  11257. "source": "https://github.com/nunomaduro/collision"
  11258. },
  11259. "funding": [
  11260. {
  11261. "url": "https://www.paypal.com/paypalme/enunomaduro",
  11262. "type": "custom"
  11263. },
  11264. {
  11265. "url": "https://github.com/nunomaduro",
  11266. "type": "github"
  11267. },
  11268. {
  11269. "url": "https://www.patreon.com/nunomaduro",
  11270. "type": "patreon"
  11271. }
  11272. ],
  11273. "time": "2022-01-10T16:22:52+00:00"
  11274. },
  11275. {
  11276. "name": "phar-io/manifest",
  11277. "version": "2.0.3",
  11278. "source": {
  11279. "type": "git",
  11280. "url": "https://github.com/phar-io/manifest.git",
  11281. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  11282. },
  11283. "dist": {
  11284. "type": "zip",
  11285. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  11286. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  11287. "shasum": "",
  11288. "mirrors": [
  11289. {
  11290. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11291. "preferred": true
  11292. }
  11293. ]
  11294. },
  11295. "require": {
  11296. "ext-dom": "*",
  11297. "ext-phar": "*",
  11298. "ext-xmlwriter": "*",
  11299. "phar-io/version": "^3.0.1",
  11300. "php": "^7.2 || ^8.0"
  11301. },
  11302. "type": "library",
  11303. "extra": {
  11304. "branch-alias": {
  11305. "dev-master": "2.0.x-dev"
  11306. }
  11307. },
  11308. "autoload": {
  11309. "classmap": [
  11310. "src/"
  11311. ]
  11312. },
  11313. "notification-url": "https://packagist.org/downloads/",
  11314. "license": [
  11315. "BSD-3-Clause"
  11316. ],
  11317. "authors": [
  11318. {
  11319. "name": "Arne Blankerts",
  11320. "email": "arne@blankerts.de",
  11321. "role": "Developer"
  11322. },
  11323. {
  11324. "name": "Sebastian Heuer",
  11325. "email": "sebastian@phpeople.de",
  11326. "role": "Developer"
  11327. },
  11328. {
  11329. "name": "Sebastian Bergmann",
  11330. "email": "sebastian@phpunit.de",
  11331. "role": "Developer"
  11332. }
  11333. ],
  11334. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  11335. "support": {
  11336. "issues": "https://github.com/phar-io/manifest/issues",
  11337. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  11338. },
  11339. "time": "2021-07-20T11:28:43+00:00"
  11340. },
  11341. {
  11342. "name": "phar-io/version",
  11343. "version": "3.2.1",
  11344. "source": {
  11345. "type": "git",
  11346. "url": "https://github.com/phar-io/version.git",
  11347. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  11348. },
  11349. "dist": {
  11350. "type": "zip",
  11351. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  11352. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  11353. "shasum": "",
  11354. "mirrors": [
  11355. {
  11356. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11357. "preferred": true
  11358. }
  11359. ]
  11360. },
  11361. "require": {
  11362. "php": "^7.2 || ^8.0"
  11363. },
  11364. "type": "library",
  11365. "autoload": {
  11366. "classmap": [
  11367. "src/"
  11368. ]
  11369. },
  11370. "notification-url": "https://packagist.org/downloads/",
  11371. "license": [
  11372. "BSD-3-Clause"
  11373. ],
  11374. "authors": [
  11375. {
  11376. "name": "Arne Blankerts",
  11377. "email": "arne@blankerts.de",
  11378. "role": "Developer"
  11379. },
  11380. {
  11381. "name": "Sebastian Heuer",
  11382. "email": "sebastian@phpeople.de",
  11383. "role": "Developer"
  11384. },
  11385. {
  11386. "name": "Sebastian Bergmann",
  11387. "email": "sebastian@phpunit.de",
  11388. "role": "Developer"
  11389. }
  11390. ],
  11391. "description": "Library for handling version information and constraints",
  11392. "support": {
  11393. "issues": "https://github.com/phar-io/version/issues",
  11394. "source": "https://github.com/phar-io/version/tree/3.2.1"
  11395. },
  11396. "time": "2022-02-21T01:04:05+00:00"
  11397. },
  11398. {
  11399. "name": "phpspec/prophecy",
  11400. "version": "v1.15.0",
  11401. "source": {
  11402. "type": "git",
  11403. "url": "https://github.com/phpspec/prophecy.git",
  11404. "reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13"
  11405. },
  11406. "dist": {
  11407. "type": "zip",
  11408. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/bbcd7380b0ebf3961ee21409db7b38bc31d69a13",
  11409. "reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13",
  11410. "shasum": "",
  11411. "mirrors": [
  11412. {
  11413. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11414. "preferred": true
  11415. }
  11416. ]
  11417. },
  11418. "require": {
  11419. "doctrine/instantiator": "^1.2",
  11420. "php": "^7.2 || ~8.0, <8.2",
  11421. "phpdocumentor/reflection-docblock": "^5.2",
  11422. "sebastian/comparator": "^3.0 || ^4.0",
  11423. "sebastian/recursion-context": "^3.0 || ^4.0"
  11424. },
  11425. "require-dev": {
  11426. "phpspec/phpspec": "^6.0 || ^7.0",
  11427. "phpunit/phpunit": "^8.0 || ^9.0"
  11428. },
  11429. "type": "library",
  11430. "extra": {
  11431. "branch-alias": {
  11432. "dev-master": "1.x-dev"
  11433. }
  11434. },
  11435. "autoload": {
  11436. "psr-4": {
  11437. "Prophecy\\": "src/Prophecy"
  11438. }
  11439. },
  11440. "notification-url": "https://packagist.org/downloads/",
  11441. "license": [
  11442. "MIT"
  11443. ],
  11444. "authors": [
  11445. {
  11446. "name": "Konstantin Kudryashov",
  11447. "email": "ever.zet@gmail.com",
  11448. "homepage": "http://everzet.com"
  11449. },
  11450. {
  11451. "name": "Marcello Duarte",
  11452. "email": "marcello.duarte@gmail.com"
  11453. }
  11454. ],
  11455. "description": "Highly opinionated mocking framework for PHP 5.3+",
  11456. "homepage": "https://github.com/phpspec/prophecy",
  11457. "keywords": [
  11458. "Double",
  11459. "Dummy",
  11460. "fake",
  11461. "mock",
  11462. "spy",
  11463. "stub"
  11464. ],
  11465. "support": {
  11466. "issues": "https://github.com/phpspec/prophecy/issues",
  11467. "source": "https://github.com/phpspec/prophecy/tree/v1.15.0"
  11468. },
  11469. "time": "2021-12-08T12:19:24+00:00"
  11470. },
  11471. {
  11472. "name": "phpunit/php-code-coverage",
  11473. "version": "9.2.16",
  11474. "source": {
  11475. "type": "git",
  11476. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  11477. "reference": "2593003befdcc10db5e213f9f28814f5aa8ac073"
  11478. },
  11479. "dist": {
  11480. "type": "zip",
  11481. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/2593003befdcc10db5e213f9f28814f5aa8ac073",
  11482. "reference": "2593003befdcc10db5e213f9f28814f5aa8ac073",
  11483. "shasum": "",
  11484. "mirrors": [
  11485. {
  11486. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11487. "preferred": true
  11488. }
  11489. ]
  11490. },
  11491. "require": {
  11492. "ext-dom": "*",
  11493. "ext-libxml": "*",
  11494. "ext-xmlwriter": "*",
  11495. "nikic/php-parser": "^4.14",
  11496. "php": ">=7.3",
  11497. "phpunit/php-file-iterator": "^3.0.3",
  11498. "phpunit/php-text-template": "^2.0.2",
  11499. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  11500. "sebastian/complexity": "^2.0",
  11501. "sebastian/environment": "^5.1.2",
  11502. "sebastian/lines-of-code": "^1.0.3",
  11503. "sebastian/version": "^3.0.1",
  11504. "theseer/tokenizer": "^1.2.0"
  11505. },
  11506. "require-dev": {
  11507. "phpunit/phpunit": "^9.3"
  11508. },
  11509. "suggest": {
  11510. "ext-pcov": "*",
  11511. "ext-xdebug": "*"
  11512. },
  11513. "type": "library",
  11514. "extra": {
  11515. "branch-alias": {
  11516. "dev-master": "9.2-dev"
  11517. }
  11518. },
  11519. "autoload": {
  11520. "classmap": [
  11521. "src/"
  11522. ]
  11523. },
  11524. "notification-url": "https://packagist.org/downloads/",
  11525. "license": [
  11526. "BSD-3-Clause"
  11527. ],
  11528. "authors": [
  11529. {
  11530. "name": "Sebastian Bergmann",
  11531. "email": "sebastian@phpunit.de",
  11532. "role": "lead"
  11533. }
  11534. ],
  11535. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  11536. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  11537. "keywords": [
  11538. "coverage",
  11539. "testing",
  11540. "xunit"
  11541. ],
  11542. "support": {
  11543. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  11544. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.16"
  11545. },
  11546. "funding": [
  11547. {
  11548. "url": "https://github.com/sebastianbergmann",
  11549. "type": "github"
  11550. }
  11551. ],
  11552. "time": "2022-08-20T05:26:47+00:00"
  11553. },
  11554. {
  11555. "name": "phpunit/php-file-iterator",
  11556. "version": "3.0.6",
  11557. "source": {
  11558. "type": "git",
  11559. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  11560. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  11561. },
  11562. "dist": {
  11563. "type": "zip",
  11564. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  11565. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  11566. "shasum": "",
  11567. "mirrors": [
  11568. {
  11569. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11570. "preferred": true
  11571. }
  11572. ]
  11573. },
  11574. "require": {
  11575. "php": ">=7.3"
  11576. },
  11577. "require-dev": {
  11578. "phpunit/phpunit": "^9.3"
  11579. },
  11580. "type": "library",
  11581. "extra": {
  11582. "branch-alias": {
  11583. "dev-master": "3.0-dev"
  11584. }
  11585. },
  11586. "autoload": {
  11587. "classmap": [
  11588. "src/"
  11589. ]
  11590. },
  11591. "notification-url": "https://packagist.org/downloads/",
  11592. "license": [
  11593. "BSD-3-Clause"
  11594. ],
  11595. "authors": [
  11596. {
  11597. "name": "Sebastian Bergmann",
  11598. "email": "sebastian@phpunit.de",
  11599. "role": "lead"
  11600. }
  11601. ],
  11602. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  11603. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  11604. "keywords": [
  11605. "filesystem",
  11606. "iterator"
  11607. ],
  11608. "support": {
  11609. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  11610. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  11611. },
  11612. "funding": [
  11613. {
  11614. "url": "https://github.com/sebastianbergmann",
  11615. "type": "github"
  11616. }
  11617. ],
  11618. "time": "2021-12-02T12:48:52+00:00"
  11619. },
  11620. {
  11621. "name": "phpunit/php-invoker",
  11622. "version": "3.1.1",
  11623. "source": {
  11624. "type": "git",
  11625. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  11626. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  11627. },
  11628. "dist": {
  11629. "type": "zip",
  11630. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  11631. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  11632. "shasum": "",
  11633. "mirrors": [
  11634. {
  11635. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11636. "preferred": true
  11637. }
  11638. ]
  11639. },
  11640. "require": {
  11641. "php": ">=7.3"
  11642. },
  11643. "require-dev": {
  11644. "ext-pcntl": "*",
  11645. "phpunit/phpunit": "^9.3"
  11646. },
  11647. "suggest": {
  11648. "ext-pcntl": "*"
  11649. },
  11650. "type": "library",
  11651. "extra": {
  11652. "branch-alias": {
  11653. "dev-master": "3.1-dev"
  11654. }
  11655. },
  11656. "autoload": {
  11657. "classmap": [
  11658. "src/"
  11659. ]
  11660. },
  11661. "notification-url": "https://packagist.org/downloads/",
  11662. "license": [
  11663. "BSD-3-Clause"
  11664. ],
  11665. "authors": [
  11666. {
  11667. "name": "Sebastian Bergmann",
  11668. "email": "sebastian@phpunit.de",
  11669. "role": "lead"
  11670. }
  11671. ],
  11672. "description": "Invoke callables with a timeout",
  11673. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  11674. "keywords": [
  11675. "process"
  11676. ],
  11677. "support": {
  11678. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  11679. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  11680. },
  11681. "funding": [
  11682. {
  11683. "url": "https://github.com/sebastianbergmann",
  11684. "type": "github"
  11685. }
  11686. ],
  11687. "time": "2020-09-28T05:58:55+00:00"
  11688. },
  11689. {
  11690. "name": "phpunit/php-text-template",
  11691. "version": "2.0.4",
  11692. "source": {
  11693. "type": "git",
  11694. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  11695. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  11696. },
  11697. "dist": {
  11698. "type": "zip",
  11699. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  11700. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  11701. "shasum": "",
  11702. "mirrors": [
  11703. {
  11704. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11705. "preferred": true
  11706. }
  11707. ]
  11708. },
  11709. "require": {
  11710. "php": ">=7.3"
  11711. },
  11712. "require-dev": {
  11713. "phpunit/phpunit": "^9.3"
  11714. },
  11715. "type": "library",
  11716. "extra": {
  11717. "branch-alias": {
  11718. "dev-master": "2.0-dev"
  11719. }
  11720. },
  11721. "autoload": {
  11722. "classmap": [
  11723. "src/"
  11724. ]
  11725. },
  11726. "notification-url": "https://packagist.org/downloads/",
  11727. "license": [
  11728. "BSD-3-Clause"
  11729. ],
  11730. "authors": [
  11731. {
  11732. "name": "Sebastian Bergmann",
  11733. "email": "sebastian@phpunit.de",
  11734. "role": "lead"
  11735. }
  11736. ],
  11737. "description": "Simple template engine.",
  11738. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  11739. "keywords": [
  11740. "template"
  11741. ],
  11742. "support": {
  11743. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  11744. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  11745. },
  11746. "funding": [
  11747. {
  11748. "url": "https://github.com/sebastianbergmann",
  11749. "type": "github"
  11750. }
  11751. ],
  11752. "time": "2020-10-26T05:33:50+00:00"
  11753. },
  11754. {
  11755. "name": "phpunit/php-timer",
  11756. "version": "5.0.3",
  11757. "source": {
  11758. "type": "git",
  11759. "url": "https://github.com/sebastianbergmann/php-timer.git",
  11760. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  11761. },
  11762. "dist": {
  11763. "type": "zip",
  11764. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  11765. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  11766. "shasum": "",
  11767. "mirrors": [
  11768. {
  11769. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11770. "preferred": true
  11771. }
  11772. ]
  11773. },
  11774. "require": {
  11775. "php": ">=7.3"
  11776. },
  11777. "require-dev": {
  11778. "phpunit/phpunit": "^9.3"
  11779. },
  11780. "type": "library",
  11781. "extra": {
  11782. "branch-alias": {
  11783. "dev-master": "5.0-dev"
  11784. }
  11785. },
  11786. "autoload": {
  11787. "classmap": [
  11788. "src/"
  11789. ]
  11790. },
  11791. "notification-url": "https://packagist.org/downloads/",
  11792. "license": [
  11793. "BSD-3-Clause"
  11794. ],
  11795. "authors": [
  11796. {
  11797. "name": "Sebastian Bergmann",
  11798. "email": "sebastian@phpunit.de",
  11799. "role": "lead"
  11800. }
  11801. ],
  11802. "description": "Utility class for timing",
  11803. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  11804. "keywords": [
  11805. "timer"
  11806. ],
  11807. "support": {
  11808. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  11809. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  11810. },
  11811. "funding": [
  11812. {
  11813. "url": "https://github.com/sebastianbergmann",
  11814. "type": "github"
  11815. }
  11816. ],
  11817. "time": "2020-10-26T13:16:10+00:00"
  11818. },
  11819. {
  11820. "name": "phpunit/phpunit",
  11821. "version": "9.5.22",
  11822. "source": {
  11823. "type": "git",
  11824. "url": "https://github.com/sebastianbergmann/phpunit.git",
  11825. "reference": "e329ac6e8744f461518272612a479fde958752fe"
  11826. },
  11827. "dist": {
  11828. "type": "zip",
  11829. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/e329ac6e8744f461518272612a479fde958752fe",
  11830. "reference": "e329ac6e8744f461518272612a479fde958752fe",
  11831. "shasum": "",
  11832. "mirrors": [
  11833. {
  11834. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11835. "preferred": true
  11836. }
  11837. ]
  11838. },
  11839. "require": {
  11840. "doctrine/instantiator": "^1.3.1",
  11841. "ext-dom": "*",
  11842. "ext-json": "*",
  11843. "ext-libxml": "*",
  11844. "ext-mbstring": "*",
  11845. "ext-xml": "*",
  11846. "ext-xmlwriter": "*",
  11847. "myclabs/deep-copy": "^1.10.1",
  11848. "phar-io/manifest": "^2.0.3",
  11849. "phar-io/version": "^3.0.2",
  11850. "php": ">=7.3",
  11851. "phpspec/prophecy": "^1.12.1",
  11852. "phpunit/php-code-coverage": "^9.2.13",
  11853. "phpunit/php-file-iterator": "^3.0.5",
  11854. "phpunit/php-invoker": "^3.1.1",
  11855. "phpunit/php-text-template": "^2.0.3",
  11856. "phpunit/php-timer": "^5.0.2",
  11857. "sebastian/cli-parser": "^1.0.1",
  11858. "sebastian/code-unit": "^1.0.6",
  11859. "sebastian/comparator": "^4.0.5",
  11860. "sebastian/diff": "^4.0.3",
  11861. "sebastian/environment": "^5.1.3",
  11862. "sebastian/exporter": "^4.0.3",
  11863. "sebastian/global-state": "^5.0.1",
  11864. "sebastian/object-enumerator": "^4.0.3",
  11865. "sebastian/resource-operations": "^3.0.3",
  11866. "sebastian/type": "^3.0",
  11867. "sebastian/version": "^3.0.2"
  11868. },
  11869. "require-dev": {
  11870. "phpspec/prophecy-phpunit": "^2.0.1"
  11871. },
  11872. "suggest": {
  11873. "ext-soap": "*",
  11874. "ext-xdebug": "*"
  11875. },
  11876. "bin": [
  11877. "phpunit"
  11878. ],
  11879. "type": "library",
  11880. "extra": {
  11881. "branch-alias": {
  11882. "dev-master": "9.5-dev"
  11883. }
  11884. },
  11885. "autoload": {
  11886. "files": [
  11887. "src/Framework/Assert/Functions.php"
  11888. ],
  11889. "classmap": [
  11890. "src/"
  11891. ]
  11892. },
  11893. "notification-url": "https://packagist.org/downloads/",
  11894. "license": [
  11895. "BSD-3-Clause"
  11896. ],
  11897. "authors": [
  11898. {
  11899. "name": "Sebastian Bergmann",
  11900. "email": "sebastian@phpunit.de",
  11901. "role": "lead"
  11902. }
  11903. ],
  11904. "description": "The PHP Unit Testing framework.",
  11905. "homepage": "https://phpunit.de/",
  11906. "keywords": [
  11907. "phpunit",
  11908. "testing",
  11909. "xunit"
  11910. ],
  11911. "support": {
  11912. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  11913. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.22"
  11914. },
  11915. "funding": [
  11916. {
  11917. "url": "https://phpunit.de/sponsors.html",
  11918. "type": "custom"
  11919. },
  11920. {
  11921. "url": "https://github.com/sebastianbergmann",
  11922. "type": "github"
  11923. }
  11924. ],
  11925. "time": "2022-08-20T08:25:46+00:00"
  11926. },
  11927. {
  11928. "name": "sebastian/cli-parser",
  11929. "version": "1.0.1",
  11930. "source": {
  11931. "type": "git",
  11932. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  11933. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  11934. },
  11935. "dist": {
  11936. "type": "zip",
  11937. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  11938. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  11939. "shasum": "",
  11940. "mirrors": [
  11941. {
  11942. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11943. "preferred": true
  11944. }
  11945. ]
  11946. },
  11947. "require": {
  11948. "php": ">=7.3"
  11949. },
  11950. "require-dev": {
  11951. "phpunit/phpunit": "^9.3"
  11952. },
  11953. "type": "library",
  11954. "extra": {
  11955. "branch-alias": {
  11956. "dev-master": "1.0-dev"
  11957. }
  11958. },
  11959. "autoload": {
  11960. "classmap": [
  11961. "src/"
  11962. ]
  11963. },
  11964. "notification-url": "https://packagist.org/downloads/",
  11965. "license": [
  11966. "BSD-3-Clause"
  11967. ],
  11968. "authors": [
  11969. {
  11970. "name": "Sebastian Bergmann",
  11971. "email": "sebastian@phpunit.de",
  11972. "role": "lead"
  11973. }
  11974. ],
  11975. "description": "Library for parsing CLI options",
  11976. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  11977. "support": {
  11978. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  11979. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  11980. },
  11981. "funding": [
  11982. {
  11983. "url": "https://github.com/sebastianbergmann",
  11984. "type": "github"
  11985. }
  11986. ],
  11987. "time": "2020-09-28T06:08:49+00:00"
  11988. },
  11989. {
  11990. "name": "sebastian/code-unit",
  11991. "version": "1.0.8",
  11992. "source": {
  11993. "type": "git",
  11994. "url": "https://github.com/sebastianbergmann/code-unit.git",
  11995. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  11996. },
  11997. "dist": {
  11998. "type": "zip",
  11999. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  12000. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  12001. "shasum": "",
  12002. "mirrors": [
  12003. {
  12004. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12005. "preferred": true
  12006. }
  12007. ]
  12008. },
  12009. "require": {
  12010. "php": ">=7.3"
  12011. },
  12012. "require-dev": {
  12013. "phpunit/phpunit": "^9.3"
  12014. },
  12015. "type": "library",
  12016. "extra": {
  12017. "branch-alias": {
  12018. "dev-master": "1.0-dev"
  12019. }
  12020. },
  12021. "autoload": {
  12022. "classmap": [
  12023. "src/"
  12024. ]
  12025. },
  12026. "notification-url": "https://packagist.org/downloads/",
  12027. "license": [
  12028. "BSD-3-Clause"
  12029. ],
  12030. "authors": [
  12031. {
  12032. "name": "Sebastian Bergmann",
  12033. "email": "sebastian@phpunit.de",
  12034. "role": "lead"
  12035. }
  12036. ],
  12037. "description": "Collection of value objects that represent the PHP code units",
  12038. "homepage": "https://github.com/sebastianbergmann/code-unit",
  12039. "support": {
  12040. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  12041. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  12042. },
  12043. "funding": [
  12044. {
  12045. "url": "https://github.com/sebastianbergmann",
  12046. "type": "github"
  12047. }
  12048. ],
  12049. "time": "2020-10-26T13:08:54+00:00"
  12050. },
  12051. {
  12052. "name": "sebastian/code-unit-reverse-lookup",
  12053. "version": "2.0.3",
  12054. "source": {
  12055. "type": "git",
  12056. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  12057. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  12058. },
  12059. "dist": {
  12060. "type": "zip",
  12061. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  12062. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  12063. "shasum": "",
  12064. "mirrors": [
  12065. {
  12066. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12067. "preferred": true
  12068. }
  12069. ]
  12070. },
  12071. "require": {
  12072. "php": ">=7.3"
  12073. },
  12074. "require-dev": {
  12075. "phpunit/phpunit": "^9.3"
  12076. },
  12077. "type": "library",
  12078. "extra": {
  12079. "branch-alias": {
  12080. "dev-master": "2.0-dev"
  12081. }
  12082. },
  12083. "autoload": {
  12084. "classmap": [
  12085. "src/"
  12086. ]
  12087. },
  12088. "notification-url": "https://packagist.org/downloads/",
  12089. "license": [
  12090. "BSD-3-Clause"
  12091. ],
  12092. "authors": [
  12093. {
  12094. "name": "Sebastian Bergmann",
  12095. "email": "sebastian@phpunit.de"
  12096. }
  12097. ],
  12098. "description": "Looks up which function or method a line of code belongs to",
  12099. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  12100. "support": {
  12101. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  12102. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  12103. },
  12104. "funding": [
  12105. {
  12106. "url": "https://github.com/sebastianbergmann",
  12107. "type": "github"
  12108. }
  12109. ],
  12110. "time": "2020-09-28T05:30:19+00:00"
  12111. },
  12112. {
  12113. "name": "sebastian/comparator",
  12114. "version": "4.0.6",
  12115. "source": {
  12116. "type": "git",
  12117. "url": "https://github.com/sebastianbergmann/comparator.git",
  12118. "reference": "55f4261989e546dc112258c7a75935a81a7ce382"
  12119. },
  12120. "dist": {
  12121. "type": "zip",
  12122. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/55f4261989e546dc112258c7a75935a81a7ce382",
  12123. "reference": "55f4261989e546dc112258c7a75935a81a7ce382",
  12124. "shasum": "",
  12125. "mirrors": [
  12126. {
  12127. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12128. "preferred": true
  12129. }
  12130. ]
  12131. },
  12132. "require": {
  12133. "php": ">=7.3",
  12134. "sebastian/diff": "^4.0",
  12135. "sebastian/exporter": "^4.0"
  12136. },
  12137. "require-dev": {
  12138. "phpunit/phpunit": "^9.3"
  12139. },
  12140. "type": "library",
  12141. "extra": {
  12142. "branch-alias": {
  12143. "dev-master": "4.0-dev"
  12144. }
  12145. },
  12146. "autoload": {
  12147. "classmap": [
  12148. "src/"
  12149. ]
  12150. },
  12151. "notification-url": "https://packagist.org/downloads/",
  12152. "license": [
  12153. "BSD-3-Clause"
  12154. ],
  12155. "authors": [
  12156. {
  12157. "name": "Sebastian Bergmann",
  12158. "email": "sebastian@phpunit.de"
  12159. },
  12160. {
  12161. "name": "Jeff Welch",
  12162. "email": "whatthejeff@gmail.com"
  12163. },
  12164. {
  12165. "name": "Volker Dusch",
  12166. "email": "github@wallbash.com"
  12167. },
  12168. {
  12169. "name": "Bernhard Schussek",
  12170. "email": "bschussek@2bepublished.at"
  12171. }
  12172. ],
  12173. "description": "Provides the functionality to compare PHP values for equality",
  12174. "homepage": "https://github.com/sebastianbergmann/comparator",
  12175. "keywords": [
  12176. "comparator",
  12177. "compare",
  12178. "equality"
  12179. ],
  12180. "support": {
  12181. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  12182. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.6"
  12183. },
  12184. "funding": [
  12185. {
  12186. "url": "https://github.com/sebastianbergmann",
  12187. "type": "github"
  12188. }
  12189. ],
  12190. "time": "2020-10-26T15:49:45+00:00"
  12191. },
  12192. {
  12193. "name": "sebastian/complexity",
  12194. "version": "2.0.2",
  12195. "source": {
  12196. "type": "git",
  12197. "url": "https://github.com/sebastianbergmann/complexity.git",
  12198. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  12199. },
  12200. "dist": {
  12201. "type": "zip",
  12202. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  12203. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  12204. "shasum": "",
  12205. "mirrors": [
  12206. {
  12207. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12208. "preferred": true
  12209. }
  12210. ]
  12211. },
  12212. "require": {
  12213. "nikic/php-parser": "^4.7",
  12214. "php": ">=7.3"
  12215. },
  12216. "require-dev": {
  12217. "phpunit/phpunit": "^9.3"
  12218. },
  12219. "type": "library",
  12220. "extra": {
  12221. "branch-alias": {
  12222. "dev-master": "2.0-dev"
  12223. }
  12224. },
  12225. "autoload": {
  12226. "classmap": [
  12227. "src/"
  12228. ]
  12229. },
  12230. "notification-url": "https://packagist.org/downloads/",
  12231. "license": [
  12232. "BSD-3-Clause"
  12233. ],
  12234. "authors": [
  12235. {
  12236. "name": "Sebastian Bergmann",
  12237. "email": "sebastian@phpunit.de",
  12238. "role": "lead"
  12239. }
  12240. ],
  12241. "description": "Library for calculating the complexity of PHP code units",
  12242. "homepage": "https://github.com/sebastianbergmann/complexity",
  12243. "support": {
  12244. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  12245. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  12246. },
  12247. "funding": [
  12248. {
  12249. "url": "https://github.com/sebastianbergmann",
  12250. "type": "github"
  12251. }
  12252. ],
  12253. "time": "2020-10-26T15:52:27+00:00"
  12254. },
  12255. {
  12256. "name": "sebastian/diff",
  12257. "version": "4.0.4",
  12258. "source": {
  12259. "type": "git",
  12260. "url": "https://github.com/sebastianbergmann/diff.git",
  12261. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  12262. },
  12263. "dist": {
  12264. "type": "zip",
  12265. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  12266. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  12267. "shasum": "",
  12268. "mirrors": [
  12269. {
  12270. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12271. "preferred": true
  12272. }
  12273. ]
  12274. },
  12275. "require": {
  12276. "php": ">=7.3"
  12277. },
  12278. "require-dev": {
  12279. "phpunit/phpunit": "^9.3",
  12280. "symfony/process": "^4.2 || ^5"
  12281. },
  12282. "type": "library",
  12283. "extra": {
  12284. "branch-alias": {
  12285. "dev-master": "4.0-dev"
  12286. }
  12287. },
  12288. "autoload": {
  12289. "classmap": [
  12290. "src/"
  12291. ]
  12292. },
  12293. "notification-url": "https://packagist.org/downloads/",
  12294. "license": [
  12295. "BSD-3-Clause"
  12296. ],
  12297. "authors": [
  12298. {
  12299. "name": "Sebastian Bergmann",
  12300. "email": "sebastian@phpunit.de"
  12301. },
  12302. {
  12303. "name": "Kore Nordmann",
  12304. "email": "mail@kore-nordmann.de"
  12305. }
  12306. ],
  12307. "description": "Diff implementation",
  12308. "homepage": "https://github.com/sebastianbergmann/diff",
  12309. "keywords": [
  12310. "diff",
  12311. "udiff",
  12312. "unidiff",
  12313. "unified diff"
  12314. ],
  12315. "support": {
  12316. "issues": "https://github.com/sebastianbergmann/diff/issues",
  12317. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  12318. },
  12319. "funding": [
  12320. {
  12321. "url": "https://github.com/sebastianbergmann",
  12322. "type": "github"
  12323. }
  12324. ],
  12325. "time": "2020-10-26T13:10:38+00:00"
  12326. },
  12327. {
  12328. "name": "sebastian/environment",
  12329. "version": "5.1.4",
  12330. "source": {
  12331. "type": "git",
  12332. "url": "https://github.com/sebastianbergmann/environment.git",
  12333. "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7"
  12334. },
  12335. "dist": {
  12336. "type": "zip",
  12337. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/1b5dff7bb151a4db11d49d90e5408e4e938270f7",
  12338. "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7",
  12339. "shasum": "",
  12340. "mirrors": [
  12341. {
  12342. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12343. "preferred": true
  12344. }
  12345. ]
  12346. },
  12347. "require": {
  12348. "php": ">=7.3"
  12349. },
  12350. "require-dev": {
  12351. "phpunit/phpunit": "^9.3"
  12352. },
  12353. "suggest": {
  12354. "ext-posix": "*"
  12355. },
  12356. "type": "library",
  12357. "extra": {
  12358. "branch-alias": {
  12359. "dev-master": "5.1-dev"
  12360. }
  12361. },
  12362. "autoload": {
  12363. "classmap": [
  12364. "src/"
  12365. ]
  12366. },
  12367. "notification-url": "https://packagist.org/downloads/",
  12368. "license": [
  12369. "BSD-3-Clause"
  12370. ],
  12371. "authors": [
  12372. {
  12373. "name": "Sebastian Bergmann",
  12374. "email": "sebastian@phpunit.de"
  12375. }
  12376. ],
  12377. "description": "Provides functionality to handle HHVM/PHP environments",
  12378. "homepage": "http://www.github.com/sebastianbergmann/environment",
  12379. "keywords": [
  12380. "Xdebug",
  12381. "environment",
  12382. "hhvm"
  12383. ],
  12384. "support": {
  12385. "issues": "https://github.com/sebastianbergmann/environment/issues",
  12386. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.4"
  12387. },
  12388. "funding": [
  12389. {
  12390. "url": "https://github.com/sebastianbergmann",
  12391. "type": "github"
  12392. }
  12393. ],
  12394. "time": "2022-04-03T09:37:03+00:00"
  12395. },
  12396. {
  12397. "name": "sebastian/exporter",
  12398. "version": "4.0.4",
  12399. "source": {
  12400. "type": "git",
  12401. "url": "https://github.com/sebastianbergmann/exporter.git",
  12402. "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9"
  12403. },
  12404. "dist": {
  12405. "type": "zip",
  12406. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/65e8b7db476c5dd267e65eea9cab77584d3cfff9",
  12407. "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9",
  12408. "shasum": "",
  12409. "mirrors": [
  12410. {
  12411. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12412. "preferred": true
  12413. }
  12414. ]
  12415. },
  12416. "require": {
  12417. "php": ">=7.3",
  12418. "sebastian/recursion-context": "^4.0"
  12419. },
  12420. "require-dev": {
  12421. "ext-mbstring": "*",
  12422. "phpunit/phpunit": "^9.3"
  12423. },
  12424. "type": "library",
  12425. "extra": {
  12426. "branch-alias": {
  12427. "dev-master": "4.0-dev"
  12428. }
  12429. },
  12430. "autoload": {
  12431. "classmap": [
  12432. "src/"
  12433. ]
  12434. },
  12435. "notification-url": "https://packagist.org/downloads/",
  12436. "license": [
  12437. "BSD-3-Clause"
  12438. ],
  12439. "authors": [
  12440. {
  12441. "name": "Sebastian Bergmann",
  12442. "email": "sebastian@phpunit.de"
  12443. },
  12444. {
  12445. "name": "Jeff Welch",
  12446. "email": "whatthejeff@gmail.com"
  12447. },
  12448. {
  12449. "name": "Volker Dusch",
  12450. "email": "github@wallbash.com"
  12451. },
  12452. {
  12453. "name": "Adam Harvey",
  12454. "email": "aharvey@php.net"
  12455. },
  12456. {
  12457. "name": "Bernhard Schussek",
  12458. "email": "bschussek@gmail.com"
  12459. }
  12460. ],
  12461. "description": "Provides the functionality to export PHP variables for visualization",
  12462. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  12463. "keywords": [
  12464. "export",
  12465. "exporter"
  12466. ],
  12467. "support": {
  12468. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  12469. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.4"
  12470. },
  12471. "funding": [
  12472. {
  12473. "url": "https://github.com/sebastianbergmann",
  12474. "type": "github"
  12475. }
  12476. ],
  12477. "time": "2021-11-11T14:18:36+00:00"
  12478. },
  12479. {
  12480. "name": "sebastian/global-state",
  12481. "version": "5.0.5",
  12482. "source": {
  12483. "type": "git",
  12484. "url": "https://github.com/sebastianbergmann/global-state.git",
  12485. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2"
  12486. },
  12487. "dist": {
  12488. "type": "zip",
  12489. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  12490. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  12491. "shasum": "",
  12492. "mirrors": [
  12493. {
  12494. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12495. "preferred": true
  12496. }
  12497. ]
  12498. },
  12499. "require": {
  12500. "php": ">=7.3",
  12501. "sebastian/object-reflector": "^2.0",
  12502. "sebastian/recursion-context": "^4.0"
  12503. },
  12504. "require-dev": {
  12505. "ext-dom": "*",
  12506. "phpunit/phpunit": "^9.3"
  12507. },
  12508. "suggest": {
  12509. "ext-uopz": "*"
  12510. },
  12511. "type": "library",
  12512. "extra": {
  12513. "branch-alias": {
  12514. "dev-master": "5.0-dev"
  12515. }
  12516. },
  12517. "autoload": {
  12518. "classmap": [
  12519. "src/"
  12520. ]
  12521. },
  12522. "notification-url": "https://packagist.org/downloads/",
  12523. "license": [
  12524. "BSD-3-Clause"
  12525. ],
  12526. "authors": [
  12527. {
  12528. "name": "Sebastian Bergmann",
  12529. "email": "sebastian@phpunit.de"
  12530. }
  12531. ],
  12532. "description": "Snapshotting of global state",
  12533. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  12534. "keywords": [
  12535. "global state"
  12536. ],
  12537. "support": {
  12538. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  12539. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5"
  12540. },
  12541. "funding": [
  12542. {
  12543. "url": "https://github.com/sebastianbergmann",
  12544. "type": "github"
  12545. }
  12546. ],
  12547. "time": "2022-02-14T08:28:10+00:00"
  12548. },
  12549. {
  12550. "name": "sebastian/lines-of-code",
  12551. "version": "1.0.3",
  12552. "source": {
  12553. "type": "git",
  12554. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  12555. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  12556. },
  12557. "dist": {
  12558. "type": "zip",
  12559. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  12560. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  12561. "shasum": "",
  12562. "mirrors": [
  12563. {
  12564. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12565. "preferred": true
  12566. }
  12567. ]
  12568. },
  12569. "require": {
  12570. "nikic/php-parser": "^4.6",
  12571. "php": ">=7.3"
  12572. },
  12573. "require-dev": {
  12574. "phpunit/phpunit": "^9.3"
  12575. },
  12576. "type": "library",
  12577. "extra": {
  12578. "branch-alias": {
  12579. "dev-master": "1.0-dev"
  12580. }
  12581. },
  12582. "autoload": {
  12583. "classmap": [
  12584. "src/"
  12585. ]
  12586. },
  12587. "notification-url": "https://packagist.org/downloads/",
  12588. "license": [
  12589. "BSD-3-Clause"
  12590. ],
  12591. "authors": [
  12592. {
  12593. "name": "Sebastian Bergmann",
  12594. "email": "sebastian@phpunit.de",
  12595. "role": "lead"
  12596. }
  12597. ],
  12598. "description": "Library for counting the lines of code in PHP source code",
  12599. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  12600. "support": {
  12601. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  12602. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  12603. },
  12604. "funding": [
  12605. {
  12606. "url": "https://github.com/sebastianbergmann",
  12607. "type": "github"
  12608. }
  12609. ],
  12610. "time": "2020-11-28T06:42:11+00:00"
  12611. },
  12612. {
  12613. "name": "sebastian/object-enumerator",
  12614. "version": "4.0.4",
  12615. "source": {
  12616. "type": "git",
  12617. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  12618. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  12619. },
  12620. "dist": {
  12621. "type": "zip",
  12622. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  12623. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  12624. "shasum": "",
  12625. "mirrors": [
  12626. {
  12627. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12628. "preferred": true
  12629. }
  12630. ]
  12631. },
  12632. "require": {
  12633. "php": ">=7.3",
  12634. "sebastian/object-reflector": "^2.0",
  12635. "sebastian/recursion-context": "^4.0"
  12636. },
  12637. "require-dev": {
  12638. "phpunit/phpunit": "^9.3"
  12639. },
  12640. "type": "library",
  12641. "extra": {
  12642. "branch-alias": {
  12643. "dev-master": "4.0-dev"
  12644. }
  12645. },
  12646. "autoload": {
  12647. "classmap": [
  12648. "src/"
  12649. ]
  12650. },
  12651. "notification-url": "https://packagist.org/downloads/",
  12652. "license": [
  12653. "BSD-3-Clause"
  12654. ],
  12655. "authors": [
  12656. {
  12657. "name": "Sebastian Bergmann",
  12658. "email": "sebastian@phpunit.de"
  12659. }
  12660. ],
  12661. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  12662. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  12663. "support": {
  12664. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  12665. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  12666. },
  12667. "funding": [
  12668. {
  12669. "url": "https://github.com/sebastianbergmann",
  12670. "type": "github"
  12671. }
  12672. ],
  12673. "time": "2020-10-26T13:12:34+00:00"
  12674. },
  12675. {
  12676. "name": "sebastian/object-reflector",
  12677. "version": "2.0.4",
  12678. "source": {
  12679. "type": "git",
  12680. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  12681. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  12682. },
  12683. "dist": {
  12684. "type": "zip",
  12685. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  12686. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  12687. "shasum": "",
  12688. "mirrors": [
  12689. {
  12690. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12691. "preferred": true
  12692. }
  12693. ]
  12694. },
  12695. "require": {
  12696. "php": ">=7.3"
  12697. },
  12698. "require-dev": {
  12699. "phpunit/phpunit": "^9.3"
  12700. },
  12701. "type": "library",
  12702. "extra": {
  12703. "branch-alias": {
  12704. "dev-master": "2.0-dev"
  12705. }
  12706. },
  12707. "autoload": {
  12708. "classmap": [
  12709. "src/"
  12710. ]
  12711. },
  12712. "notification-url": "https://packagist.org/downloads/",
  12713. "license": [
  12714. "BSD-3-Clause"
  12715. ],
  12716. "authors": [
  12717. {
  12718. "name": "Sebastian Bergmann",
  12719. "email": "sebastian@phpunit.de"
  12720. }
  12721. ],
  12722. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  12723. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  12724. "support": {
  12725. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  12726. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  12727. },
  12728. "funding": [
  12729. {
  12730. "url": "https://github.com/sebastianbergmann",
  12731. "type": "github"
  12732. }
  12733. ],
  12734. "time": "2020-10-26T13:14:26+00:00"
  12735. },
  12736. {
  12737. "name": "sebastian/recursion-context",
  12738. "version": "4.0.4",
  12739. "source": {
  12740. "type": "git",
  12741. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  12742. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172"
  12743. },
  12744. "dist": {
  12745. "type": "zip",
  12746. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172",
  12747. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172",
  12748. "shasum": "",
  12749. "mirrors": [
  12750. {
  12751. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12752. "preferred": true
  12753. }
  12754. ]
  12755. },
  12756. "require": {
  12757. "php": ">=7.3"
  12758. },
  12759. "require-dev": {
  12760. "phpunit/phpunit": "^9.3"
  12761. },
  12762. "type": "library",
  12763. "extra": {
  12764. "branch-alias": {
  12765. "dev-master": "4.0-dev"
  12766. }
  12767. },
  12768. "autoload": {
  12769. "classmap": [
  12770. "src/"
  12771. ]
  12772. },
  12773. "notification-url": "https://packagist.org/downloads/",
  12774. "license": [
  12775. "BSD-3-Clause"
  12776. ],
  12777. "authors": [
  12778. {
  12779. "name": "Sebastian Bergmann",
  12780. "email": "sebastian@phpunit.de"
  12781. },
  12782. {
  12783. "name": "Jeff Welch",
  12784. "email": "whatthejeff@gmail.com"
  12785. },
  12786. {
  12787. "name": "Adam Harvey",
  12788. "email": "aharvey@php.net"
  12789. }
  12790. ],
  12791. "description": "Provides functionality to recursively process PHP variables",
  12792. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  12793. "support": {
  12794. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  12795. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4"
  12796. },
  12797. "funding": [
  12798. {
  12799. "url": "https://github.com/sebastianbergmann",
  12800. "type": "github"
  12801. }
  12802. ],
  12803. "time": "2020-10-26T13:17:30+00:00"
  12804. },
  12805. {
  12806. "name": "sebastian/resource-operations",
  12807. "version": "3.0.3",
  12808. "source": {
  12809. "type": "git",
  12810. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  12811. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  12812. },
  12813. "dist": {
  12814. "type": "zip",
  12815. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  12816. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  12817. "shasum": "",
  12818. "mirrors": [
  12819. {
  12820. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12821. "preferred": true
  12822. }
  12823. ]
  12824. },
  12825. "require": {
  12826. "php": ">=7.3"
  12827. },
  12828. "require-dev": {
  12829. "phpunit/phpunit": "^9.0"
  12830. },
  12831. "type": "library",
  12832. "extra": {
  12833. "branch-alias": {
  12834. "dev-master": "3.0-dev"
  12835. }
  12836. },
  12837. "autoload": {
  12838. "classmap": [
  12839. "src/"
  12840. ]
  12841. },
  12842. "notification-url": "https://packagist.org/downloads/",
  12843. "license": [
  12844. "BSD-3-Clause"
  12845. ],
  12846. "authors": [
  12847. {
  12848. "name": "Sebastian Bergmann",
  12849. "email": "sebastian@phpunit.de"
  12850. }
  12851. ],
  12852. "description": "Provides a list of PHP built-in functions that operate on resources",
  12853. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  12854. "support": {
  12855. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  12856. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  12857. },
  12858. "funding": [
  12859. {
  12860. "url": "https://github.com/sebastianbergmann",
  12861. "type": "github"
  12862. }
  12863. ],
  12864. "time": "2020-09-28T06:45:17+00:00"
  12865. },
  12866. {
  12867. "name": "sebastian/type",
  12868. "version": "3.0.0",
  12869. "source": {
  12870. "type": "git",
  12871. "url": "https://github.com/sebastianbergmann/type.git",
  12872. "reference": "b233b84bc4465aff7b57cf1c4bc75c86d00d6dad"
  12873. },
  12874. "dist": {
  12875. "type": "zip",
  12876. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/b233b84bc4465aff7b57cf1c4bc75c86d00d6dad",
  12877. "reference": "b233b84bc4465aff7b57cf1c4bc75c86d00d6dad",
  12878. "shasum": "",
  12879. "mirrors": [
  12880. {
  12881. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12882. "preferred": true
  12883. }
  12884. ]
  12885. },
  12886. "require": {
  12887. "php": ">=7.3"
  12888. },
  12889. "require-dev": {
  12890. "phpunit/phpunit": "^9.5"
  12891. },
  12892. "type": "library",
  12893. "extra": {
  12894. "branch-alias": {
  12895. "dev-master": "3.0-dev"
  12896. }
  12897. },
  12898. "autoload": {
  12899. "classmap": [
  12900. "src/"
  12901. ]
  12902. },
  12903. "notification-url": "https://packagist.org/downloads/",
  12904. "license": [
  12905. "BSD-3-Clause"
  12906. ],
  12907. "authors": [
  12908. {
  12909. "name": "Sebastian Bergmann",
  12910. "email": "sebastian@phpunit.de",
  12911. "role": "lead"
  12912. }
  12913. ],
  12914. "description": "Collection of value objects that represent the types of the PHP type system",
  12915. "homepage": "https://github.com/sebastianbergmann/type",
  12916. "support": {
  12917. "issues": "https://github.com/sebastianbergmann/type/issues",
  12918. "source": "https://github.com/sebastianbergmann/type/tree/3.0.0"
  12919. },
  12920. "funding": [
  12921. {
  12922. "url": "https://github.com/sebastianbergmann",
  12923. "type": "github"
  12924. }
  12925. ],
  12926. "time": "2022-03-15T09:54:48+00:00"
  12927. },
  12928. {
  12929. "name": "sebastian/version",
  12930. "version": "3.0.2",
  12931. "source": {
  12932. "type": "git",
  12933. "url": "https://github.com/sebastianbergmann/version.git",
  12934. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  12935. },
  12936. "dist": {
  12937. "type": "zip",
  12938. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  12939. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  12940. "shasum": "",
  12941. "mirrors": [
  12942. {
  12943. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12944. "preferred": true
  12945. }
  12946. ]
  12947. },
  12948. "require": {
  12949. "php": ">=7.3"
  12950. },
  12951. "type": "library",
  12952. "extra": {
  12953. "branch-alias": {
  12954. "dev-master": "3.0-dev"
  12955. }
  12956. },
  12957. "autoload": {
  12958. "classmap": [
  12959. "src/"
  12960. ]
  12961. },
  12962. "notification-url": "https://packagist.org/downloads/",
  12963. "license": [
  12964. "BSD-3-Clause"
  12965. ],
  12966. "authors": [
  12967. {
  12968. "name": "Sebastian Bergmann",
  12969. "email": "sebastian@phpunit.de",
  12970. "role": "lead"
  12971. }
  12972. ],
  12973. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  12974. "homepage": "https://github.com/sebastianbergmann/version",
  12975. "support": {
  12976. "issues": "https://github.com/sebastianbergmann/version/issues",
  12977. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  12978. },
  12979. "funding": [
  12980. {
  12981. "url": "https://github.com/sebastianbergmann",
  12982. "type": "github"
  12983. }
  12984. ],
  12985. "time": "2020-09-28T06:39:44+00:00"
  12986. },
  12987. {
  12988. "name": "theseer/tokenizer",
  12989. "version": "1.2.1",
  12990. "source": {
  12991. "type": "git",
  12992. "url": "https://github.com/theseer/tokenizer.git",
  12993. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  12994. },
  12995. "dist": {
  12996. "type": "zip",
  12997. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  12998. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  12999. "shasum": "",
  13000. "mirrors": [
  13001. {
  13002. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  13003. "preferred": true
  13004. }
  13005. ]
  13006. },
  13007. "require": {
  13008. "ext-dom": "*",
  13009. "ext-tokenizer": "*",
  13010. "ext-xmlwriter": "*",
  13011. "php": "^7.2 || ^8.0"
  13012. },
  13013. "type": "library",
  13014. "autoload": {
  13015. "classmap": [
  13016. "src/"
  13017. ]
  13018. },
  13019. "notification-url": "https://packagist.org/downloads/",
  13020. "license": [
  13021. "BSD-3-Clause"
  13022. ],
  13023. "authors": [
  13024. {
  13025. "name": "Arne Blankerts",
  13026. "email": "arne@blankerts.de",
  13027. "role": "Developer"
  13028. }
  13029. ],
  13030. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  13031. "support": {
  13032. "issues": "https://github.com/theseer/tokenizer/issues",
  13033. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  13034. },
  13035. "funding": [
  13036. {
  13037. "url": "https://github.com/theseer",
  13038. "type": "github"
  13039. }
  13040. ],
  13041. "time": "2021-07-28T10:34:58+00:00"
  13042. }
  13043. ],
  13044. "aliases": [],
  13045. "minimum-stability": "dev",
  13046. "stability-flags": [],
  13047. "prefer-stable": true,
  13048. "prefer-lowest": false,
  13049. "platform": {
  13050. "php": "^7.3|^8.0",
  13051. "ext-curl": "*",
  13052. "ext-json": "*"
  13053. },
  13054. "platform-dev": [],
  13055. "plugin-api-version": "2.0.0"
  13056. }