composer.lock 213 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032
  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": "1f2a0c041e3ed0794a02ba094911f70d",
  8. "packages": [
  9. {
  10. "name": "adbario/php-dot-notation",
  11. "version": "2.5.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/adbario/php-dot-notation.git",
  15. "reference": "081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/adbario/php-dot-notation/zipball/081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae",
  20. "reference": "081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "ext-json": "*",
  25. "php": "^5.5 || ^7.0 || ^8.0"
  26. },
  27. "require-dev": {
  28. "phpunit/phpunit": "^4.8|^5.7|^6.6|^7.5|^8.5|^9.5",
  29. "squizlabs/php_codesniffer": "^3.6"
  30. },
  31. "type": "library",
  32. "autoload": {
  33. "files": [
  34. "src/helpers.php"
  35. ],
  36. "psr-4": {
  37. "Adbar\\": "src"
  38. }
  39. },
  40. "notification-url": "https://packagist.org/downloads/",
  41. "license": [
  42. "MIT"
  43. ],
  44. "authors": [
  45. {
  46. "name": "Riku Särkinen",
  47. "email": "riku@adbar.io"
  48. }
  49. ],
  50. "description": "PHP dot notation access to arrays",
  51. "homepage": "https://github.com/adbario/php-dot-notation",
  52. "keywords": [
  53. "ArrayAccess",
  54. "dotnotation"
  55. ],
  56. "support": {
  57. "issues": "https://github.com/adbario/php-dot-notation/issues",
  58. "source": "https://github.com/adbario/php-dot-notation/tree/2.5.0"
  59. },
  60. "time": "2022-10-14T20:31:46+00:00"
  61. },
  62. {
  63. "name": "alibabacloud/credentials",
  64. "version": "1.1.6",
  65. "source": {
  66. "type": "git",
  67. "url": "https://github.com/aliyun/credentials-php.git",
  68. "reference": "c61dca4a5df24a00c183d68df05cb7e5ce04e47d"
  69. },
  70. "dist": {
  71. "type": "zip",
  72. "url": "https://api.github.com/repos/aliyun/credentials-php/zipball/c61dca4a5df24a00c183d68df05cb7e5ce04e47d",
  73. "reference": "c61dca4a5df24a00c183d68df05cb7e5ce04e47d",
  74. "shasum": ""
  75. },
  76. "require": {
  77. "adbario/php-dot-notation": "^2.2",
  78. "alibabacloud/tea": "^3.0",
  79. "ext-curl": "*",
  80. "ext-json": "*",
  81. "ext-libxml": "*",
  82. "ext-mbstring": "*",
  83. "ext-openssl": "*",
  84. "ext-simplexml": "*",
  85. "ext-xmlwriter": "*",
  86. "guzzlehttp/guzzle": "^6.3|^7.0",
  87. "php": ">=5.6"
  88. },
  89. "require-dev": {
  90. "composer/composer": "^1.8",
  91. "drupal/coder": "^8.3",
  92. "ext-dom": "*",
  93. "ext-pcre": "*",
  94. "ext-sockets": "*",
  95. "ext-spl": "*",
  96. "mikey179/vfsstream": "^1.6",
  97. "monolog/monolog": "^1.24",
  98. "phpunit/phpunit": "^5.7|^6.6|^9.3",
  99. "psr/cache": "^1.0",
  100. "symfony/dotenv": "^3.4",
  101. "symfony/var-dumper": "^3.4"
  102. },
  103. "suggest": {
  104. "ext-sockets": "To use client-side monitoring"
  105. },
  106. "type": "library",
  107. "autoload": {
  108. "psr-4": {
  109. "AlibabaCloud\\Credentials\\": "src"
  110. }
  111. },
  112. "notification-url": "https://packagist.org/downloads/",
  113. "license": [
  114. "Apache-2.0"
  115. ],
  116. "authors": [
  117. {
  118. "name": "Alibaba Cloud SDK",
  119. "email": "sdk-team@alibabacloud.com",
  120. "homepage": "http://www.alibabacloud.com"
  121. }
  122. ],
  123. "description": "Alibaba Cloud Credentials for PHP",
  124. "homepage": "https://www.alibabacloud.com/",
  125. "keywords": [
  126. "alibaba",
  127. "alibabacloud",
  128. "aliyun",
  129. "client",
  130. "cloud",
  131. "credentials",
  132. "library",
  133. "sdk",
  134. "tool"
  135. ],
  136. "support": {
  137. "issues": "https://github.com/aliyun/credentials-php/issues",
  138. "source": "https://github.com/aliyun/credentials-php"
  139. },
  140. "time": "2024-08-18T04:26:45+00:00"
  141. },
  142. {
  143. "name": "alibabacloud/darabonba-openapi",
  144. "version": "0.2.13",
  145. "source": {
  146. "type": "git",
  147. "url": "https://github.com/alibabacloud-sdk-php/darabonba-openapi.git",
  148. "reference": "0213396384e2c064eefd614f3dd53636a63f987f"
  149. },
  150. "dist": {
  151. "type": "zip",
  152. "url": "https://api.github.com/repos/alibabacloud-sdk-php/darabonba-openapi/zipball/0213396384e2c064eefd614f3dd53636a63f987f",
  153. "reference": "0213396384e2c064eefd614f3dd53636a63f987f",
  154. "shasum": ""
  155. },
  156. "require": {
  157. "alibabacloud/credentials": "^1.1",
  158. "alibabacloud/gateway-spi": "^1",
  159. "alibabacloud/openapi-util": "^0.1.10|^0.2.1",
  160. "alibabacloud/tea-utils": "^0.2.21",
  161. "alibabacloud/tea-xml": "^0.2",
  162. "php": ">5.5"
  163. },
  164. "type": "library",
  165. "autoload": {
  166. "psr-4": {
  167. "Darabonba\\OpenApi\\": "src"
  168. }
  169. },
  170. "notification-url": "https://packagist.org/downloads/",
  171. "license": [
  172. "Apache-2.0"
  173. ],
  174. "authors": [
  175. {
  176. "name": "Alibaba Cloud SDK",
  177. "email": "sdk-team@alibabacloud.com"
  178. }
  179. ],
  180. "description": "Alibaba Cloud OpenApi Client",
  181. "support": {
  182. "issues": "https://github.com/alibabacloud-sdk-php/darabonba-openapi/issues",
  183. "source": "https://github.com/alibabacloud-sdk-php/darabonba-openapi/tree/0.2.13"
  184. },
  185. "time": "2024-07-15T13:11:36+00:00"
  186. },
  187. {
  188. "name": "alibabacloud/dysmsapi-20170525",
  189. "version": "2.0.9",
  190. "source": {
  191. "type": "git",
  192. "url": "https://github.com/alibabacloud-sdk-php/Dysmsapi-20170525.git",
  193. "reference": "f3098cdd4196aa42413e60fececcea08a3374ff1"
  194. },
  195. "dist": {
  196. "type": "zip",
  197. "url": "https://api.github.com/repos/alibabacloud-sdk-php/Dysmsapi-20170525/zipball/f3098cdd4196aa42413e60fececcea08a3374ff1",
  198. "reference": "f3098cdd4196aa42413e60fececcea08a3374ff1",
  199. "shasum": ""
  200. },
  201. "require": {
  202. "alibabacloud/darabonba-openapi": "^0.2.5",
  203. "alibabacloud/endpoint-util": "^0.1.0",
  204. "alibabacloud/openapi-util": "^0.1.10",
  205. "alibabacloud/tea-utils": "^0.2.0",
  206. "php": ">5.5"
  207. },
  208. "type": "library",
  209. "autoload": {
  210. "psr-4": {
  211. "AlibabaCloud\\SDK\\Dysmsapi\\V20170525\\": "src"
  212. }
  213. },
  214. "notification-url": "https://packagist.org/downloads/",
  215. "license": [
  216. "Apache-2.0"
  217. ],
  218. "authors": [
  219. {
  220. "name": "Alibaba Cloud SDK",
  221. "email": "sdk-team@alibabacloud.com"
  222. }
  223. ],
  224. "description": "Alibaba Cloud Dysmsapi (20170525) SDK Library for PHP",
  225. "support": {
  226. "source": "https://github.com/alibabacloud-sdk-php/Dysmsapi-20170525/tree/2.0.9"
  227. },
  228. "time": "2022-01-24T07:38:41+00:00"
  229. },
  230. {
  231. "name": "alibabacloud/endpoint-util",
  232. "version": "0.1.1",
  233. "source": {
  234. "type": "git",
  235. "url": "https://github.com/alibabacloud-sdk-php/endpoint-util.git",
  236. "reference": "f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5"
  237. },
  238. "dist": {
  239. "type": "zip",
  240. "url": "https://api.github.com/repos/alibabacloud-sdk-php/endpoint-util/zipball/f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5",
  241. "reference": "f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5",
  242. "shasum": ""
  243. },
  244. "require": {
  245. "php": ">5.5"
  246. },
  247. "require-dev": {
  248. "phpunit/phpunit": "^4.8.35|^5.4.3"
  249. },
  250. "type": "library",
  251. "autoload": {
  252. "psr-4": {
  253. "AlibabaCloud\\Endpoint\\": "src"
  254. }
  255. },
  256. "notification-url": "https://packagist.org/downloads/",
  257. "license": [
  258. "Apache-2.0"
  259. ],
  260. "authors": [
  261. {
  262. "name": "Alibaba Cloud SDK",
  263. "email": "sdk-team@alibabacloud.com"
  264. }
  265. ],
  266. "description": "Alibaba Cloud Endpoint Library for PHP",
  267. "support": {
  268. "source": "https://github.com/alibabacloud-sdk-php/endpoint-util/tree/0.1.1"
  269. },
  270. "time": "2020-06-04T10:57:15+00:00"
  271. },
  272. {
  273. "name": "alibabacloud/gateway-spi",
  274. "version": "1.0.0",
  275. "source": {
  276. "type": "git",
  277. "url": "https://github.com/alibabacloud-sdk-php/alibabacloud-gateway-spi.git",
  278. "reference": "7440f77750c329d8ab252db1d1d967314ccd1fcb"
  279. },
  280. "dist": {
  281. "type": "zip",
  282. "url": "https://api.github.com/repos/alibabacloud-sdk-php/alibabacloud-gateway-spi/zipball/7440f77750c329d8ab252db1d1d967314ccd1fcb",
  283. "reference": "7440f77750c329d8ab252db1d1d967314ccd1fcb",
  284. "shasum": ""
  285. },
  286. "require": {
  287. "alibabacloud/credentials": "^1.1",
  288. "php": ">5.5"
  289. },
  290. "type": "library",
  291. "autoload": {
  292. "psr-4": {
  293. "Darabonba\\GatewaySpi\\": "src"
  294. }
  295. },
  296. "notification-url": "https://packagist.org/downloads/",
  297. "license": [
  298. "Apache-2.0"
  299. ],
  300. "authors": [
  301. {
  302. "name": "Alibaba Cloud SDK",
  303. "email": "sdk-team@alibabacloud.com"
  304. }
  305. ],
  306. "description": "Alibaba Cloud Gateway SPI Client",
  307. "support": {
  308. "source": "https://github.com/alibabacloud-sdk-php/alibabacloud-gateway-spi/tree/1.0.0"
  309. },
  310. "time": "2022-07-14T05:31:35+00:00"
  311. },
  312. {
  313. "name": "alibabacloud/openapi-util",
  314. "version": "0.1.13",
  315. "source": {
  316. "type": "git",
  317. "url": "https://github.com/alibabacloud-sdk-php/openapi-util.git",
  318. "reference": "870e59984f05e104aa303c85b8214e339ba0a0ac"
  319. },
  320. "dist": {
  321. "type": "zip",
  322. "url": "https://api.github.com/repos/alibabacloud-sdk-php/openapi-util/zipball/870e59984f05e104aa303c85b8214e339ba0a0ac",
  323. "reference": "870e59984f05e104aa303c85b8214e339ba0a0ac",
  324. "shasum": ""
  325. },
  326. "require": {
  327. "alibabacloud/tea": "^3.1",
  328. "alibabacloud/tea-utils": "^0.2",
  329. "lizhichao/one-sm": "^1.5",
  330. "php": ">5.5"
  331. },
  332. "require-dev": {
  333. "phpunit/phpunit": "*"
  334. },
  335. "type": "library",
  336. "autoload": {
  337. "psr-4": {
  338. "AlibabaCloud\\OpenApiUtil\\": "src"
  339. }
  340. },
  341. "notification-url": "https://packagist.org/downloads/",
  342. "license": [
  343. "Apache-2.0"
  344. ],
  345. "authors": [
  346. {
  347. "name": "Alibaba Cloud SDK",
  348. "email": "sdk-team@alibabacloud.com"
  349. }
  350. ],
  351. "description": "Alibaba Cloud OpenApi Util",
  352. "support": {
  353. "issues": "https://github.com/alibabacloud-sdk-php/openapi-util/issues",
  354. "source": "https://github.com/alibabacloud-sdk-php/openapi-util/tree/0.2.0"
  355. },
  356. "time": "2022-11-06T05:49:55+00:00"
  357. },
  358. {
  359. "name": "alibabacloud/tea",
  360. "version": "3.2.1",
  361. "source": {
  362. "type": "git",
  363. "url": "https://github.com/aliyun/tea-php.git",
  364. "reference": "1619cb96c158384f72b873e1f85de8b299c9c367"
  365. },
  366. "dist": {
  367. "type": "zip",
  368. "url": "https://api.github.com/repos/aliyun/tea-php/zipball/1619cb96c158384f72b873e1f85de8b299c9c367",
  369. "reference": "1619cb96c158384f72b873e1f85de8b299c9c367",
  370. "shasum": ""
  371. },
  372. "require": {
  373. "adbario/php-dot-notation": "^2.4",
  374. "ext-curl": "*",
  375. "ext-json": "*",
  376. "ext-libxml": "*",
  377. "ext-mbstring": "*",
  378. "ext-openssl": "*",
  379. "ext-simplexml": "*",
  380. "ext-xmlwriter": "*",
  381. "guzzlehttp/guzzle": "^6.3|^7.0",
  382. "php": ">=5.5"
  383. },
  384. "require-dev": {
  385. "phpunit/phpunit": "*",
  386. "symfony/dotenv": "^3.4",
  387. "symfony/var-dumper": "^3.4"
  388. },
  389. "suggest": {
  390. "ext-sockets": "To use client-side monitoring"
  391. },
  392. "type": "library",
  393. "autoload": {
  394. "psr-4": {
  395. "AlibabaCloud\\Tea\\": "src"
  396. }
  397. },
  398. "notification-url": "https://packagist.org/downloads/",
  399. "license": [
  400. "Apache-2.0"
  401. ],
  402. "authors": [
  403. {
  404. "name": "Alibaba Cloud SDK",
  405. "email": "sdk-team@alibabacloud.com",
  406. "homepage": "http://www.alibabacloud.com"
  407. }
  408. ],
  409. "description": "Client of Tea for PHP",
  410. "homepage": "https://www.alibabacloud.com/",
  411. "keywords": [
  412. "alibabacloud",
  413. "client",
  414. "cloud",
  415. "tea"
  416. ],
  417. "support": {
  418. "issues": "https://github.com/aliyun/tea-php/issues",
  419. "source": "https://github.com/aliyun/tea-php"
  420. },
  421. "time": "2023-05-16T06:43:41+00:00"
  422. },
  423. {
  424. "name": "alibabacloud/tea-utils",
  425. "version": "0.2.21",
  426. "source": {
  427. "type": "git",
  428. "url": "https://github.com/alibabacloud-sdk-php/tea-utils.git",
  429. "reference": "5039e45714c6456186d267f5d81a4b260a652495"
  430. },
  431. "dist": {
  432. "type": "zip",
  433. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-utils/zipball/5039e45714c6456186d267f5d81a4b260a652495",
  434. "reference": "5039e45714c6456186d267f5d81a4b260a652495",
  435. "shasum": ""
  436. },
  437. "require": {
  438. "alibabacloud/tea": "^3.1",
  439. "php": ">5.5"
  440. },
  441. "type": "library",
  442. "autoload": {
  443. "psr-4": {
  444. "AlibabaCloud\\Tea\\Utils\\": "src"
  445. }
  446. },
  447. "notification-url": "https://packagist.org/downloads/",
  448. "license": [
  449. "Apache-2.0"
  450. ],
  451. "authors": [
  452. {
  453. "name": "Alibaba Cloud SDK",
  454. "email": "sdk-team@alibabacloud.com"
  455. }
  456. ],
  457. "description": "Alibaba Cloud Tea Utils for PHP",
  458. "support": {
  459. "issues": "https://github.com/aliyun/tea-util/issues",
  460. "source": "https://github.com/aliyun/tea-util"
  461. },
  462. "time": "2024-07-05T06:05:54+00:00"
  463. },
  464. {
  465. "name": "alibabacloud/tea-xml",
  466. "version": "0.2.4",
  467. "source": {
  468. "type": "git",
  469. "url": "https://github.com/alibabacloud-sdk-php/tea-xml.git",
  470. "reference": "3e0c000bf536224eebbac913c371bef174c0a16a"
  471. },
  472. "dist": {
  473. "type": "zip",
  474. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-xml/zipball/3e0c000bf536224eebbac913c371bef174c0a16a",
  475. "reference": "3e0c000bf536224eebbac913c371bef174c0a16a",
  476. "shasum": ""
  477. },
  478. "require": {
  479. "php": ">5.5"
  480. },
  481. "require-dev": {
  482. "phpunit/phpunit": "*",
  483. "symfony/var-dumper": "*"
  484. },
  485. "type": "library",
  486. "autoload": {
  487. "psr-4": {
  488. "AlibabaCloud\\Tea\\XML\\": "src"
  489. }
  490. },
  491. "notification-url": "https://packagist.org/downloads/",
  492. "license": [
  493. "Apache-2.0"
  494. ],
  495. "authors": [
  496. {
  497. "name": "Alibaba Cloud SDK",
  498. "email": "sdk-team@alibabacloud.com"
  499. }
  500. ],
  501. "description": "Alibaba Cloud Tea XML Library for PHP",
  502. "support": {
  503. "source": "https://github.com/alibabacloud-sdk-php/tea-xml/tree/0.2.4"
  504. },
  505. "time": "2022-08-02T04:12:58+00:00"
  506. },
  507. {
  508. "name": "aliyuncs/oss-sdk-php",
  509. "version": "v2.7.1",
  510. "source": {
  511. "type": "git",
  512. "url": "https://github.com/aliyun/aliyun-oss-php-sdk.git",
  513. "reference": "ce5d34dae9868237a32248788ea175c7e9da14b1"
  514. },
  515. "dist": {
  516. "type": "zip",
  517. "url": "https://api.github.com/repos/aliyun/aliyun-oss-php-sdk/zipball/ce5d34dae9868237a32248788ea175c7e9da14b1",
  518. "reference": "ce5d34dae9868237a32248788ea175c7e9da14b1",
  519. "shasum": ""
  520. },
  521. "require": {
  522. "php": ">=5.3"
  523. },
  524. "require-dev": {
  525. "php-coveralls/php-coveralls": "*",
  526. "phpunit/phpunit": "*"
  527. },
  528. "type": "library",
  529. "autoload": {
  530. "psr-4": {
  531. "OSS\\": "src/OSS"
  532. }
  533. },
  534. "notification-url": "https://packagist.org/downloads/",
  535. "license": [
  536. "MIT"
  537. ],
  538. "authors": [
  539. {
  540. "name": "Aliyuncs",
  541. "homepage": "http://www.aliyun.com"
  542. }
  543. ],
  544. "description": "Aliyun OSS SDK for PHP",
  545. "homepage": "http://www.aliyun.com/product/oss/",
  546. "support": {
  547. "issues": "https://github.com/aliyun/aliyun-oss-php-sdk/issues",
  548. "source": "https://github.com/aliyun/aliyun-oss-php-sdk/tree/v2.7.1"
  549. },
  550. "time": "2024-02-28T11:22:18+00:00"
  551. },
  552. {
  553. "name": "aws/aws-crt-php",
  554. "version": "v1.2.6",
  555. "source": {
  556. "type": "git",
  557. "url": "https://github.com/awslabs/aws-crt-php.git",
  558. "reference": "a63485b65b6b3367039306496d49737cf1995408"
  559. },
  560. "dist": {
  561. "type": "zip",
  562. "url": "https://api.github.com/repos/awslabs/aws-crt-php/zipball/a63485b65b6b3367039306496d49737cf1995408",
  563. "reference": "a63485b65b6b3367039306496d49737cf1995408",
  564. "shasum": ""
  565. },
  566. "require": {
  567. "php": ">=5.5"
  568. },
  569. "require-dev": {
  570. "phpunit/phpunit": "^4.8.35||^5.6.3||^9.5",
  571. "yoast/phpunit-polyfills": "^1.0"
  572. },
  573. "suggest": {
  574. "ext-awscrt": "Make sure you install awscrt native extension to use any of the functionality."
  575. },
  576. "type": "library",
  577. "autoload": {
  578. "classmap": [
  579. "src/"
  580. ]
  581. },
  582. "notification-url": "https://packagist.org/downloads/",
  583. "license": [
  584. "Apache-2.0"
  585. ],
  586. "authors": [
  587. {
  588. "name": "AWS SDK Common Runtime Team",
  589. "email": "aws-sdk-common-runtime@amazon.com"
  590. }
  591. ],
  592. "description": "AWS Common Runtime for PHP",
  593. "homepage": "https://github.com/awslabs/aws-crt-php",
  594. "keywords": [
  595. "amazon",
  596. "aws",
  597. "crt",
  598. "sdk"
  599. ],
  600. "support": {
  601. "issues": "https://github.com/awslabs/aws-crt-php/issues",
  602. "source": "https://github.com/awslabs/aws-crt-php/tree/v1.2.6"
  603. },
  604. "time": "2024-06-13T17:21:28+00:00"
  605. },
  606. {
  607. "name": "aws/aws-sdk-php",
  608. "version": "3.322.6",
  609. "source": {
  610. "type": "git",
  611. "url": "https://github.com/aws/aws-sdk-php.git",
  612. "reference": "ae7b0edab466c3440fe007c07cb62ae32a4dbfca"
  613. },
  614. "dist": {
  615. "type": "zip",
  616. "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/ae7b0edab466c3440fe007c07cb62ae32a4dbfca",
  617. "reference": "ae7b0edab466c3440fe007c07cb62ae32a4dbfca",
  618. "shasum": ""
  619. },
  620. "require": {
  621. "aws/aws-crt-php": "^1.2.3",
  622. "ext-json": "*",
  623. "ext-pcre": "*",
  624. "ext-simplexml": "*",
  625. "guzzlehttp/guzzle": "^6.5.8 || ^7.4.5",
  626. "guzzlehttp/promises": "^1.4.0 || ^2.0",
  627. "guzzlehttp/psr7": "^1.9.1 || ^2.4.5",
  628. "mtdowling/jmespath.php": "^2.6",
  629. "php": ">=7.2.5",
  630. "psr/http-message": "^1.0 || ^2.0"
  631. },
  632. "require-dev": {
  633. "andrewsville/php-token-reflection": "^1.4",
  634. "aws/aws-php-sns-message-validator": "~1.0",
  635. "behat/behat": "~3.0",
  636. "composer/composer": "^1.10.22",
  637. "dms/phpunit-arraysubset-asserts": "^0.4.0",
  638. "doctrine/cache": "~1.4",
  639. "ext-dom": "*",
  640. "ext-openssl": "*",
  641. "ext-pcntl": "*",
  642. "ext-sockets": "*",
  643. "nette/neon": "^2.3",
  644. "paragonie/random_compat": ">= 2",
  645. "phpunit/phpunit": "^5.6.3 || ^8.5 || ^9.5",
  646. "psr/cache": "^1.0",
  647. "psr/simple-cache": "^1.0",
  648. "sebastian/comparator": "^1.2.3 || ^4.0",
  649. "yoast/phpunit-polyfills": "^1.0"
  650. },
  651. "suggest": {
  652. "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications",
  653. "doctrine/cache": "To use the DoctrineCacheAdapter",
  654. "ext-curl": "To send requests using cURL",
  655. "ext-openssl": "Allows working with CloudFront private distributions and verifying received SNS messages",
  656. "ext-sockets": "To use client-side monitoring"
  657. },
  658. "type": "library",
  659. "extra": {
  660. "branch-alias": {
  661. "dev-master": "3.0-dev"
  662. }
  663. },
  664. "autoload": {
  665. "files": [
  666. "src/functions.php"
  667. ],
  668. "psr-4": {
  669. "Aws\\": "src/"
  670. },
  671. "exclude-from-classmap": [
  672. "src/data/"
  673. ]
  674. },
  675. "notification-url": "https://packagist.org/downloads/",
  676. "license": [
  677. "Apache-2.0"
  678. ],
  679. "authors": [
  680. {
  681. "name": "Amazon Web Services",
  682. "homepage": "http://aws.amazon.com"
  683. }
  684. ],
  685. "description": "AWS SDK for PHP - Use Amazon Web Services in your PHP project",
  686. "homepage": "http://aws.amazon.com/sdkforphp",
  687. "keywords": [
  688. "amazon",
  689. "aws",
  690. "cloud",
  691. "dynamodb",
  692. "ec2",
  693. "glacier",
  694. "s3",
  695. "sdk"
  696. ],
  697. "support": {
  698. "forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80",
  699. "issues": "https://github.com/aws/aws-sdk-php/issues",
  700. "source": "https://github.com/aws/aws-sdk-php/tree/3.322.6"
  701. },
  702. "time": "2024-09-26T18:12:45+00:00"
  703. },
  704. {
  705. "name": "bacon/bacon-qr-code",
  706. "version": "2.0.8",
  707. "source": {
  708. "type": "git",
  709. "url": "https://github.com/Bacon/BaconQrCode.git",
  710. "reference": "8674e51bb65af933a5ffaf1c308a660387c35c22"
  711. },
  712. "dist": {
  713. "type": "zip",
  714. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/8674e51bb65af933a5ffaf1c308a660387c35c22",
  715. "reference": "8674e51bb65af933a5ffaf1c308a660387c35c22",
  716. "shasum": ""
  717. },
  718. "require": {
  719. "dasprid/enum": "^1.0.3",
  720. "ext-iconv": "*",
  721. "php": "^7.1 || ^8.0"
  722. },
  723. "require-dev": {
  724. "phly/keep-a-changelog": "^2.1",
  725. "phpunit/phpunit": "^7 | ^8 | ^9",
  726. "spatie/phpunit-snapshot-assertions": "^4.2.9",
  727. "squizlabs/php_codesniffer": "^3.4"
  728. },
  729. "suggest": {
  730. "ext-imagick": "to generate QR code images"
  731. },
  732. "type": "library",
  733. "autoload": {
  734. "psr-4": {
  735. "BaconQrCode\\": "src/"
  736. }
  737. },
  738. "notification-url": "https://packagist.org/downloads/",
  739. "license": [
  740. "BSD-2-Clause"
  741. ],
  742. "authors": [
  743. {
  744. "name": "Ben Scholzen 'DASPRiD'",
  745. "email": "mail@dasprids.de",
  746. "homepage": "https://dasprids.de/",
  747. "role": "Developer"
  748. }
  749. ],
  750. "description": "BaconQrCode is a QR code generator for PHP.",
  751. "homepage": "https://github.com/Bacon/BaconQrCode",
  752. "support": {
  753. "issues": "https://github.com/Bacon/BaconQrCode/issues",
  754. "source": "https://github.com/Bacon/BaconQrCode/tree/2.0.8"
  755. },
  756. "time": "2022-12-07T17:46:57+00:00"
  757. },
  758. {
  759. "name": "carbonphp/carbon-doctrine-types",
  760. "version": "1.0.0",
  761. "source": {
  762. "type": "git",
  763. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  764. "reference": "3c430083d0b41ceed84ecccf9dac613241d7305d"
  765. },
  766. "dist": {
  767. "type": "zip",
  768. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/3c430083d0b41ceed84ecccf9dac613241d7305d",
  769. "reference": "3c430083d0b41ceed84ecccf9dac613241d7305d",
  770. "shasum": ""
  771. },
  772. "require": {
  773. "php": "^7.1.8 || ^8.0"
  774. },
  775. "conflict": {
  776. "doctrine/dbal": ">=3.7.0"
  777. },
  778. "require-dev": {
  779. "doctrine/dbal": ">=2.0.0",
  780. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  781. "phpunit/phpunit": "^10.3"
  782. },
  783. "type": "library",
  784. "autoload": {
  785. "psr-4": {
  786. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  787. }
  788. },
  789. "notification-url": "https://packagist.org/downloads/",
  790. "license": [
  791. "MIT"
  792. ],
  793. "authors": [
  794. {
  795. "name": "KyleKatarn",
  796. "email": "kylekatarnls@gmail.com"
  797. }
  798. ],
  799. "description": "Types to use Carbon in Doctrine",
  800. "keywords": [
  801. "carbon",
  802. "date",
  803. "datetime",
  804. "doctrine",
  805. "time"
  806. ],
  807. "support": {
  808. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  809. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/1.0.0"
  810. },
  811. "funding": [
  812. {
  813. "url": "https://github.com/kylekatarnls",
  814. "type": "github"
  815. },
  816. {
  817. "url": "https://opencollective.com/Carbon",
  818. "type": "open_collective"
  819. },
  820. {
  821. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  822. "type": "tidelift"
  823. }
  824. ],
  825. "time": "2023-10-01T12:35:29+00:00"
  826. },
  827. {
  828. "name": "dasprid/enum",
  829. "version": "1.0.6",
  830. "source": {
  831. "type": "git",
  832. "url": "https://github.com/DASPRiD/Enum.git",
  833. "reference": "8dfd07c6d2cf31c8da90c53b83c026c7696dda90"
  834. },
  835. "dist": {
  836. "type": "zip",
  837. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/8dfd07c6d2cf31c8da90c53b83c026c7696dda90",
  838. "reference": "8dfd07c6d2cf31c8da90c53b83c026c7696dda90",
  839. "shasum": ""
  840. },
  841. "require": {
  842. "php": ">=7.1 <9.0"
  843. },
  844. "require-dev": {
  845. "phpunit/phpunit": "^7 || ^8 || ^9 || ^10 || ^11",
  846. "squizlabs/php_codesniffer": "*"
  847. },
  848. "type": "library",
  849. "autoload": {
  850. "psr-4": {
  851. "DASPRiD\\Enum\\": "src/"
  852. }
  853. },
  854. "notification-url": "https://packagist.org/downloads/",
  855. "license": [
  856. "BSD-2-Clause"
  857. ],
  858. "authors": [
  859. {
  860. "name": "Ben Scholzen 'DASPRiD'",
  861. "email": "mail@dasprids.de",
  862. "homepage": "https://dasprids.de/",
  863. "role": "Developer"
  864. }
  865. ],
  866. "description": "PHP 7.1 enum implementation",
  867. "keywords": [
  868. "enum",
  869. "map"
  870. ],
  871. "support": {
  872. "issues": "https://github.com/DASPRiD/Enum/issues",
  873. "source": "https://github.com/DASPRiD/Enum/tree/1.0.6"
  874. },
  875. "time": "2024-08-09T14:30:48+00:00"
  876. },
  877. {
  878. "name": "doctrine/annotations",
  879. "version": "v1.2.7",
  880. "source": {
  881. "type": "git",
  882. "url": "https://github.com/doctrine/annotations.git",
  883. "reference": "f25c8aab83e0c3e976fd7d19875f198ccf2f7535"
  884. },
  885. "dist": {
  886. "type": "zip",
  887. "url": "https://api.github.com/repos/doctrine/annotations/zipball/f25c8aab83e0c3e976fd7d19875f198ccf2f7535",
  888. "reference": "f25c8aab83e0c3e976fd7d19875f198ccf2f7535",
  889. "shasum": ""
  890. },
  891. "require": {
  892. "doctrine/lexer": "1.*",
  893. "php": ">=5.3.2"
  894. },
  895. "require-dev": {
  896. "doctrine/cache": "1.*",
  897. "phpunit/phpunit": "4.*"
  898. },
  899. "type": "library",
  900. "extra": {
  901. "branch-alias": {
  902. "dev-master": "1.3.x-dev"
  903. }
  904. },
  905. "autoload": {
  906. "psr-0": {
  907. "Doctrine\\Common\\Annotations\\": "lib/"
  908. }
  909. },
  910. "notification-url": "https://packagist.org/downloads/",
  911. "license": [
  912. "MIT"
  913. ],
  914. "authors": [
  915. {
  916. "name": "Roman Borschel",
  917. "email": "roman@code-factory.org"
  918. },
  919. {
  920. "name": "Benjamin Eberlei",
  921. "email": "kontakt@beberlei.de"
  922. },
  923. {
  924. "name": "Guilherme Blanco",
  925. "email": "guilhermeblanco@gmail.com"
  926. },
  927. {
  928. "name": "Jonathan Wage",
  929. "email": "jonwage@gmail.com"
  930. },
  931. {
  932. "name": "Johannes Schmitt",
  933. "email": "schmittjoh@gmail.com"
  934. }
  935. ],
  936. "description": "Docblock Annotations Parser",
  937. "homepage": "http://www.doctrine-project.org",
  938. "keywords": [
  939. "annotations",
  940. "docblock",
  941. "parser"
  942. ],
  943. "support": {
  944. "source": "https://github.com/doctrine/annotations/tree/master"
  945. },
  946. "time": "2015-08-31T12:32:49+00:00"
  947. },
  948. {
  949. "name": "doctrine/cache",
  950. "version": "v1.4.4",
  951. "source": {
  952. "type": "git",
  953. "url": "https://github.com/doctrine/cache.git",
  954. "reference": "6433826dd02c9e5be8a127320dc13e7e6625d020"
  955. },
  956. "dist": {
  957. "type": "zip",
  958. "url": "https://api.github.com/repos/doctrine/cache/zipball/6433826dd02c9e5be8a127320dc13e7e6625d020",
  959. "reference": "6433826dd02c9e5be8a127320dc13e7e6625d020",
  960. "shasum": ""
  961. },
  962. "require": {
  963. "php": ">=5.3.2"
  964. },
  965. "conflict": {
  966. "doctrine/common": ">2.2,<2.4"
  967. },
  968. "require-dev": {
  969. "phpunit/phpunit": ">=3.7",
  970. "predis/predis": "~1.0",
  971. "satooshi/php-coveralls": "~0.6"
  972. },
  973. "type": "library",
  974. "extra": {
  975. "branch-alias": {
  976. "dev-master": "1.5.x-dev"
  977. }
  978. },
  979. "autoload": {
  980. "psr-0": {
  981. "Doctrine\\Common\\Cache\\": "lib/"
  982. }
  983. },
  984. "notification-url": "https://packagist.org/downloads/",
  985. "license": [
  986. "MIT"
  987. ],
  988. "authors": [
  989. {
  990. "name": "Roman Borschel",
  991. "email": "roman@code-factory.org"
  992. },
  993. {
  994. "name": "Benjamin Eberlei",
  995. "email": "kontakt@beberlei.de"
  996. },
  997. {
  998. "name": "Guilherme Blanco",
  999. "email": "guilhermeblanco@gmail.com"
  1000. },
  1001. {
  1002. "name": "Jonathan Wage",
  1003. "email": "jonwage@gmail.com"
  1004. },
  1005. {
  1006. "name": "Johannes Schmitt",
  1007. "email": "schmittjoh@gmail.com"
  1008. }
  1009. ],
  1010. "description": "Caching library offering an object-oriented API for many cache backends",
  1011. "homepage": "http://www.doctrine-project.org",
  1012. "keywords": [
  1013. "cache",
  1014. "caching"
  1015. ],
  1016. "support": {
  1017. "source": "https://github.com/doctrine/cache/tree/v1.4.4"
  1018. },
  1019. "time": "2015-11-02T18:33:51+00:00"
  1020. },
  1021. {
  1022. "name": "doctrine/lexer",
  1023. "version": "1.2.3",
  1024. "source": {
  1025. "type": "git",
  1026. "url": "https://github.com/doctrine/lexer.git",
  1027. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  1028. },
  1029. "dist": {
  1030. "type": "zip",
  1031. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1032. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1033. "shasum": ""
  1034. },
  1035. "require": {
  1036. "php": "^7.1 || ^8.0"
  1037. },
  1038. "require-dev": {
  1039. "doctrine/coding-standard": "^9.0",
  1040. "phpstan/phpstan": "^1.3",
  1041. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1042. "vimeo/psalm": "^4.11"
  1043. },
  1044. "type": "library",
  1045. "autoload": {
  1046. "psr-4": {
  1047. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1048. }
  1049. },
  1050. "notification-url": "https://packagist.org/downloads/",
  1051. "license": [
  1052. "MIT"
  1053. ],
  1054. "authors": [
  1055. {
  1056. "name": "Guilherme Blanco",
  1057. "email": "guilhermeblanco@gmail.com"
  1058. },
  1059. {
  1060. "name": "Roman Borschel",
  1061. "email": "roman@code-factory.org"
  1062. },
  1063. {
  1064. "name": "Johannes Schmitt",
  1065. "email": "schmittjoh@gmail.com"
  1066. }
  1067. ],
  1068. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1069. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1070. "keywords": [
  1071. "annotations",
  1072. "docblock",
  1073. "lexer",
  1074. "parser",
  1075. "php"
  1076. ],
  1077. "support": {
  1078. "issues": "https://github.com/doctrine/lexer/issues",
  1079. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  1080. },
  1081. "funding": [
  1082. {
  1083. "url": "https://www.doctrine-project.org/sponsorship.html",
  1084. "type": "custom"
  1085. },
  1086. {
  1087. "url": "https://www.patreon.com/phpdoctrine",
  1088. "type": "patreon"
  1089. },
  1090. {
  1091. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1092. "type": "tidelift"
  1093. }
  1094. ],
  1095. "time": "2022-02-28T11:07:21+00:00"
  1096. },
  1097. {
  1098. "name": "endroid/qr-code",
  1099. "version": "3.9.7",
  1100. "source": {
  1101. "type": "git",
  1102. "url": "https://github.com/endroid/qr-code.git",
  1103. "reference": "94563d7b3105288e6ac53a67ae720e3669fac1f6"
  1104. },
  1105. "dist": {
  1106. "type": "zip",
  1107. "url": "https://api.github.com/repos/endroid/qr-code/zipball/94563d7b3105288e6ac53a67ae720e3669fac1f6",
  1108. "reference": "94563d7b3105288e6ac53a67ae720e3669fac1f6",
  1109. "shasum": ""
  1110. },
  1111. "require": {
  1112. "bacon/bacon-qr-code": "^2.0",
  1113. "khanamiryan/qrcode-detector-decoder": "^1.0.5",
  1114. "myclabs/php-enum": "^1.5",
  1115. "php": "^7.3||^8.0",
  1116. "symfony/options-resolver": "^3.4||^4.4||^5.0",
  1117. "symfony/property-access": "^3.4||^4.4||^5.0"
  1118. },
  1119. "require-dev": {
  1120. "endroid/quality": "^1.5.2",
  1121. "setasign/fpdf": "^1.8"
  1122. },
  1123. "suggest": {
  1124. "ext-gd": "Required for generating PNG images",
  1125. "roave/security-advisories": "Avoids installation of package versions with vulnerabilities",
  1126. "setasign/fpdf": "Required to use the FPDF writer.",
  1127. "symfony/security-checker": "Checks your composer.lock for vulnerabilities"
  1128. },
  1129. "type": "library",
  1130. "extra": {
  1131. "branch-alias": {
  1132. "dev-master": "3.x-dev"
  1133. }
  1134. },
  1135. "autoload": {
  1136. "psr-4": {
  1137. "Endroid\\QrCode\\": "src/"
  1138. }
  1139. },
  1140. "notification-url": "https://packagist.org/downloads/",
  1141. "license": [
  1142. "MIT"
  1143. ],
  1144. "authors": [
  1145. {
  1146. "name": "Jeroen van den Enden",
  1147. "email": "info@endroid.nl"
  1148. }
  1149. ],
  1150. "description": "Endroid QR Code",
  1151. "homepage": "https://github.com/endroid/qr-code",
  1152. "keywords": [
  1153. "bundle",
  1154. "code",
  1155. "endroid",
  1156. "php",
  1157. "qr",
  1158. "qrcode"
  1159. ],
  1160. "support": {
  1161. "issues": "https://github.com/endroid/qr-code/issues",
  1162. "source": "https://github.com/endroid/qr-code/tree/3.9.7"
  1163. },
  1164. "funding": [
  1165. {
  1166. "url": "https://github.com/endroid",
  1167. "type": "github"
  1168. }
  1169. ],
  1170. "time": "2021-04-20T19:10:54+00:00"
  1171. },
  1172. {
  1173. "name": "ezyang/htmlpurifier",
  1174. "version": "v4.17.0",
  1175. "source": {
  1176. "type": "git",
  1177. "url": "https://github.com/ezyang/htmlpurifier.git",
  1178. "reference": "bbc513d79acf6691fa9cf10f192c90dd2957f18c"
  1179. },
  1180. "dist": {
  1181. "type": "zip",
  1182. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/bbc513d79acf6691fa9cf10f192c90dd2957f18c",
  1183. "reference": "bbc513d79acf6691fa9cf10f192c90dd2957f18c",
  1184. "shasum": ""
  1185. },
  1186. "require": {
  1187. "php": "~5.6.0 || ~7.0.0 || ~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
  1188. },
  1189. "require-dev": {
  1190. "cerdic/css-tidy": "^1.7 || ^2.0",
  1191. "simpletest/simpletest": "dev-master"
  1192. },
  1193. "suggest": {
  1194. "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.",
  1195. "ext-bcmath": "Used for unit conversion and imagecrash protection",
  1196. "ext-iconv": "Converts text to and from non-UTF-8 encodings",
  1197. "ext-tidy": "Used for pretty-printing HTML"
  1198. },
  1199. "type": "library",
  1200. "autoload": {
  1201. "files": [
  1202. "library/HTMLPurifier.composer.php"
  1203. ],
  1204. "psr-0": {
  1205. "HTMLPurifier": "library/"
  1206. },
  1207. "exclude-from-classmap": [
  1208. "/library/HTMLPurifier/Language/"
  1209. ]
  1210. },
  1211. "notification-url": "https://packagist.org/downloads/",
  1212. "license": [
  1213. "LGPL-2.1-or-later"
  1214. ],
  1215. "authors": [
  1216. {
  1217. "name": "Edward Z. Yang",
  1218. "email": "admin@htmlpurifier.org",
  1219. "homepage": "http://ezyang.com"
  1220. }
  1221. ],
  1222. "description": "Standards compliant HTML filter written in PHP",
  1223. "homepage": "http://htmlpurifier.org/",
  1224. "keywords": [
  1225. "html"
  1226. ],
  1227. "support": {
  1228. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  1229. "source": "https://github.com/ezyang/htmlpurifier/tree/v4.17.0"
  1230. },
  1231. "time": "2023-11-17T15:01:25+00:00"
  1232. },
  1233. {
  1234. "name": "fastknife/ajcaptcha",
  1235. "version": "v1.2.2",
  1236. "source": {
  1237. "type": "git",
  1238. "url": "https://gitee.com/fastknife/aj-captcha.git",
  1239. "reference": "87c122b6cd950fd98702e929685e5e7c0c517ddc"
  1240. },
  1241. "require": {
  1242. "ext-gd": "*",
  1243. "ext-iconv": "*",
  1244. "ext-json": "*",
  1245. "ext-openssl": "*",
  1246. "intervention/image": "^2.5",
  1247. "php": ">=7.1"
  1248. },
  1249. "type": "library",
  1250. "autoload": {
  1251. "psr-4": {
  1252. "Fastknife\\": "src"
  1253. }
  1254. },
  1255. "notification-url": "https://packagist.org/downloads/",
  1256. "license": [
  1257. "GPL-3.0-only"
  1258. ],
  1259. "authors": [
  1260. {
  1261. "name": "bruce",
  1262. "email": "2777314125@qq.com"
  1263. }
  1264. ],
  1265. "description": "This is a behavior verification code PHP back-end implementation package",
  1266. "time": "2023-03-29T10:35:25+00:00"
  1267. },
  1268. {
  1269. "name": "firebase/php-jwt",
  1270. "version": "v5.5.1",
  1271. "source": {
  1272. "type": "git",
  1273. "url": "https://github.com/firebase/php-jwt.git",
  1274. "reference": "83b609028194aa042ea33b5af2d41a7427de80e6"
  1275. },
  1276. "dist": {
  1277. "type": "zip",
  1278. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/83b609028194aa042ea33b5af2d41a7427de80e6",
  1279. "reference": "83b609028194aa042ea33b5af2d41a7427de80e6",
  1280. "shasum": ""
  1281. },
  1282. "require": {
  1283. "php": ">=5.3.0"
  1284. },
  1285. "require-dev": {
  1286. "phpunit/phpunit": ">=4.8 <=9"
  1287. },
  1288. "suggest": {
  1289. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  1290. },
  1291. "type": "library",
  1292. "autoload": {
  1293. "psr-4": {
  1294. "Firebase\\JWT\\": "src"
  1295. }
  1296. },
  1297. "notification-url": "https://packagist.org/downloads/",
  1298. "license": [
  1299. "BSD-3-Clause"
  1300. ],
  1301. "authors": [
  1302. {
  1303. "name": "Neuman Vong",
  1304. "email": "neuman+pear@twilio.com",
  1305. "role": "Developer"
  1306. },
  1307. {
  1308. "name": "Anant Narayanan",
  1309. "email": "anant@php.net",
  1310. "role": "Developer"
  1311. }
  1312. ],
  1313. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  1314. "homepage": "https://github.com/firebase/php-jwt",
  1315. "keywords": [
  1316. "jwt",
  1317. "php"
  1318. ],
  1319. "support": {
  1320. "issues": "https://github.com/firebase/php-jwt/issues",
  1321. "source": "https://github.com/firebase/php-jwt/tree/v5.5.1"
  1322. },
  1323. "time": "2021-11-08T20:18:51+00:00"
  1324. },
  1325. {
  1326. "name": "gregwar/captcha",
  1327. "version": "v1.2.1",
  1328. "source": {
  1329. "type": "git",
  1330. "url": "https://github.com/Gregwar/Captcha.git",
  1331. "reference": "229d3cdfe33d6f1349e0aec94a26e9205a6db08e"
  1332. },
  1333. "dist": {
  1334. "type": "zip",
  1335. "url": "https://api.github.com/repos/Gregwar/Captcha/zipball/229d3cdfe33d6f1349e0aec94a26e9205a6db08e",
  1336. "reference": "229d3cdfe33d6f1349e0aec94a26e9205a6db08e",
  1337. "shasum": ""
  1338. },
  1339. "require": {
  1340. "ext-gd": "*",
  1341. "ext-mbstring": "*",
  1342. "php": ">=5.3.0",
  1343. "symfony/finder": "*"
  1344. },
  1345. "require-dev": {
  1346. "phpunit/phpunit": "^6.4"
  1347. },
  1348. "type": "library",
  1349. "autoload": {
  1350. "psr-4": {
  1351. "Gregwar\\": "src/Gregwar"
  1352. }
  1353. },
  1354. "notification-url": "https://packagist.org/downloads/",
  1355. "license": [
  1356. "MIT"
  1357. ],
  1358. "authors": [
  1359. {
  1360. "name": "Grégoire Passault",
  1361. "email": "g.passault@gmail.com",
  1362. "homepage": "http://www.gregwar.com/"
  1363. },
  1364. {
  1365. "name": "Jeremy Livingston",
  1366. "email": "jeremy.j.livingston@gmail.com"
  1367. }
  1368. ],
  1369. "description": "Captcha generator",
  1370. "homepage": "https://github.com/Gregwar/Captcha",
  1371. "keywords": [
  1372. "bot",
  1373. "captcha",
  1374. "spam"
  1375. ],
  1376. "support": {
  1377. "issues": "https://github.com/Gregwar/Captcha/issues",
  1378. "source": "https://github.com/Gregwar/Captcha/tree/v1.2.1"
  1379. },
  1380. "time": "2023-09-26T13:45:37+00:00"
  1381. },
  1382. {
  1383. "name": "guzzlehttp/guzzle",
  1384. "version": "6.5.8",
  1385. "source": {
  1386. "type": "git",
  1387. "url": "https://github.com/guzzle/guzzle.git",
  1388. "reference": "a52f0440530b54fa079ce76e8c5d196a42cad981"
  1389. },
  1390. "dist": {
  1391. "type": "zip",
  1392. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/a52f0440530b54fa079ce76e8c5d196a42cad981",
  1393. "reference": "a52f0440530b54fa079ce76e8c5d196a42cad981",
  1394. "shasum": ""
  1395. },
  1396. "require": {
  1397. "ext-json": "*",
  1398. "guzzlehttp/promises": "^1.0",
  1399. "guzzlehttp/psr7": "^1.9",
  1400. "php": ">=5.5",
  1401. "symfony/polyfill-intl-idn": "^1.17"
  1402. },
  1403. "require-dev": {
  1404. "ext-curl": "*",
  1405. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  1406. "psr/log": "^1.1"
  1407. },
  1408. "suggest": {
  1409. "psr/log": "Required for using the Log middleware"
  1410. },
  1411. "type": "library",
  1412. "extra": {
  1413. "branch-alias": {
  1414. "dev-master": "6.5-dev"
  1415. }
  1416. },
  1417. "autoload": {
  1418. "files": [
  1419. "src/functions_include.php"
  1420. ],
  1421. "psr-4": {
  1422. "GuzzleHttp\\": "src/"
  1423. }
  1424. },
  1425. "notification-url": "https://packagist.org/downloads/",
  1426. "license": [
  1427. "MIT"
  1428. ],
  1429. "authors": [
  1430. {
  1431. "name": "Graham Campbell",
  1432. "email": "hello@gjcampbell.co.uk",
  1433. "homepage": "https://github.com/GrahamCampbell"
  1434. },
  1435. {
  1436. "name": "Michael Dowling",
  1437. "email": "mtdowling@gmail.com",
  1438. "homepage": "https://github.com/mtdowling"
  1439. },
  1440. {
  1441. "name": "Jeremy Lindblom",
  1442. "email": "jeremeamia@gmail.com",
  1443. "homepage": "https://github.com/jeremeamia"
  1444. },
  1445. {
  1446. "name": "George Mponos",
  1447. "email": "gmponos@gmail.com",
  1448. "homepage": "https://github.com/gmponos"
  1449. },
  1450. {
  1451. "name": "Tobias Nyholm",
  1452. "email": "tobias.nyholm@gmail.com",
  1453. "homepage": "https://github.com/Nyholm"
  1454. },
  1455. {
  1456. "name": "Márk Sági-Kazár",
  1457. "email": "mark.sagikazar@gmail.com",
  1458. "homepage": "https://github.com/sagikazarmark"
  1459. },
  1460. {
  1461. "name": "Tobias Schultze",
  1462. "email": "webmaster@tubo-world.de",
  1463. "homepage": "https://github.com/Tobion"
  1464. }
  1465. ],
  1466. "description": "Guzzle is a PHP HTTP client library",
  1467. "homepage": "http://guzzlephp.org/",
  1468. "keywords": [
  1469. "client",
  1470. "curl",
  1471. "framework",
  1472. "http",
  1473. "http client",
  1474. "rest",
  1475. "web service"
  1476. ],
  1477. "support": {
  1478. "issues": "https://github.com/guzzle/guzzle/issues",
  1479. "source": "https://github.com/guzzle/guzzle/tree/6.5.8"
  1480. },
  1481. "funding": [
  1482. {
  1483. "url": "https://github.com/GrahamCampbell",
  1484. "type": "github"
  1485. },
  1486. {
  1487. "url": "https://github.com/Nyholm",
  1488. "type": "github"
  1489. },
  1490. {
  1491. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1492. "type": "tidelift"
  1493. }
  1494. ],
  1495. "time": "2022-06-20T22:16:07+00:00"
  1496. },
  1497. {
  1498. "name": "guzzlehttp/promises",
  1499. "version": "1.5.3",
  1500. "source": {
  1501. "type": "git",
  1502. "url": "https://github.com/guzzle/promises.git",
  1503. "reference": "67ab6e18aaa14d753cc148911d273f6e6cb6721e"
  1504. },
  1505. "dist": {
  1506. "type": "zip",
  1507. "url": "https://api.github.com/repos/guzzle/promises/zipball/67ab6e18aaa14d753cc148911d273f6e6cb6721e",
  1508. "reference": "67ab6e18aaa14d753cc148911d273f6e6cb6721e",
  1509. "shasum": ""
  1510. },
  1511. "require": {
  1512. "php": ">=5.5"
  1513. },
  1514. "require-dev": {
  1515. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  1516. },
  1517. "type": "library",
  1518. "autoload": {
  1519. "files": [
  1520. "src/functions_include.php"
  1521. ],
  1522. "psr-4": {
  1523. "GuzzleHttp\\Promise\\": "src/"
  1524. }
  1525. },
  1526. "notification-url": "https://packagist.org/downloads/",
  1527. "license": [
  1528. "MIT"
  1529. ],
  1530. "authors": [
  1531. {
  1532. "name": "Graham Campbell",
  1533. "email": "hello@gjcampbell.co.uk",
  1534. "homepage": "https://github.com/GrahamCampbell"
  1535. },
  1536. {
  1537. "name": "Michael Dowling",
  1538. "email": "mtdowling@gmail.com",
  1539. "homepage": "https://github.com/mtdowling"
  1540. },
  1541. {
  1542. "name": "Tobias Nyholm",
  1543. "email": "tobias.nyholm@gmail.com",
  1544. "homepage": "https://github.com/Nyholm"
  1545. },
  1546. {
  1547. "name": "Tobias Schultze",
  1548. "email": "webmaster@tubo-world.de",
  1549. "homepage": "https://github.com/Tobion"
  1550. }
  1551. ],
  1552. "description": "Guzzle promises library",
  1553. "keywords": [
  1554. "promise"
  1555. ],
  1556. "support": {
  1557. "issues": "https://github.com/guzzle/promises/issues",
  1558. "source": "https://github.com/guzzle/promises/tree/1.5.3"
  1559. },
  1560. "funding": [
  1561. {
  1562. "url": "https://github.com/GrahamCampbell",
  1563. "type": "github"
  1564. },
  1565. {
  1566. "url": "https://github.com/Nyholm",
  1567. "type": "github"
  1568. },
  1569. {
  1570. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1571. "type": "tidelift"
  1572. }
  1573. ],
  1574. "time": "2023-05-21T12:31:43+00:00"
  1575. },
  1576. {
  1577. "name": "guzzlehttp/psr7",
  1578. "version": "1.9.1",
  1579. "source": {
  1580. "type": "git",
  1581. "url": "https://github.com/guzzle/psr7.git",
  1582. "reference": "e4490cabc77465aaee90b20cfc9a770f8c04be6b"
  1583. },
  1584. "dist": {
  1585. "type": "zip",
  1586. "url": "https://api.github.com/repos/guzzle/psr7/zipball/e4490cabc77465aaee90b20cfc9a770f8c04be6b",
  1587. "reference": "e4490cabc77465aaee90b20cfc9a770f8c04be6b",
  1588. "shasum": ""
  1589. },
  1590. "require": {
  1591. "php": ">=5.4.0",
  1592. "psr/http-message": "~1.0",
  1593. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  1594. },
  1595. "provide": {
  1596. "psr/http-message-implementation": "1.0"
  1597. },
  1598. "require-dev": {
  1599. "ext-zlib": "*",
  1600. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  1601. },
  1602. "suggest": {
  1603. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1604. },
  1605. "type": "library",
  1606. "autoload": {
  1607. "files": [
  1608. "src/functions_include.php"
  1609. ],
  1610. "psr-4": {
  1611. "GuzzleHttp\\Psr7\\": "src/"
  1612. }
  1613. },
  1614. "notification-url": "https://packagist.org/downloads/",
  1615. "license": [
  1616. "MIT"
  1617. ],
  1618. "authors": [
  1619. {
  1620. "name": "Graham Campbell",
  1621. "email": "hello@gjcampbell.co.uk",
  1622. "homepage": "https://github.com/GrahamCampbell"
  1623. },
  1624. {
  1625. "name": "Michael Dowling",
  1626. "email": "mtdowling@gmail.com",
  1627. "homepage": "https://github.com/mtdowling"
  1628. },
  1629. {
  1630. "name": "George Mponos",
  1631. "email": "gmponos@gmail.com",
  1632. "homepage": "https://github.com/gmponos"
  1633. },
  1634. {
  1635. "name": "Tobias Nyholm",
  1636. "email": "tobias.nyholm@gmail.com",
  1637. "homepage": "https://github.com/Nyholm"
  1638. },
  1639. {
  1640. "name": "Márk Sági-Kazár",
  1641. "email": "mark.sagikazar@gmail.com",
  1642. "homepage": "https://github.com/sagikazarmark"
  1643. },
  1644. {
  1645. "name": "Tobias Schultze",
  1646. "email": "webmaster@tubo-world.de",
  1647. "homepage": "https://github.com/Tobion"
  1648. }
  1649. ],
  1650. "description": "PSR-7 message implementation that also provides common utility methods",
  1651. "keywords": [
  1652. "http",
  1653. "message",
  1654. "psr-7",
  1655. "request",
  1656. "response",
  1657. "stream",
  1658. "uri",
  1659. "url"
  1660. ],
  1661. "support": {
  1662. "issues": "https://github.com/guzzle/psr7/issues",
  1663. "source": "https://github.com/guzzle/psr7/tree/1.9.1"
  1664. },
  1665. "funding": [
  1666. {
  1667. "url": "https://github.com/GrahamCampbell",
  1668. "type": "github"
  1669. },
  1670. {
  1671. "url": "https://github.com/Nyholm",
  1672. "type": "github"
  1673. },
  1674. {
  1675. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1676. "type": "tidelift"
  1677. }
  1678. ],
  1679. "time": "2023-04-17T16:00:37+00:00"
  1680. },
  1681. {
  1682. "name": "intervention/image",
  1683. "version": "2.7.2",
  1684. "source": {
  1685. "type": "git",
  1686. "url": "https://github.com/Intervention/image.git",
  1687. "reference": "04be355f8d6734c826045d02a1079ad658322dad"
  1688. },
  1689. "dist": {
  1690. "type": "zip",
  1691. "url": "https://api.github.com/repos/Intervention/image/zipball/04be355f8d6734c826045d02a1079ad658322dad",
  1692. "reference": "04be355f8d6734c826045d02a1079ad658322dad",
  1693. "shasum": ""
  1694. },
  1695. "require": {
  1696. "ext-fileinfo": "*",
  1697. "guzzlehttp/psr7": "~1.1 || ^2.0",
  1698. "php": ">=5.4.0"
  1699. },
  1700. "require-dev": {
  1701. "mockery/mockery": "~0.9.2",
  1702. "phpunit/phpunit": "^4.8 || ^5.7 || ^7.5.15"
  1703. },
  1704. "suggest": {
  1705. "ext-gd": "to use GD library based image processing.",
  1706. "ext-imagick": "to use Imagick based image processing.",
  1707. "intervention/imagecache": "Caching extension for the Intervention Image library"
  1708. },
  1709. "type": "library",
  1710. "extra": {
  1711. "branch-alias": {
  1712. "dev-master": "2.4-dev"
  1713. },
  1714. "laravel": {
  1715. "providers": [
  1716. "Intervention\\Image\\ImageServiceProvider"
  1717. ],
  1718. "aliases": {
  1719. "Image": "Intervention\\Image\\Facades\\Image"
  1720. }
  1721. }
  1722. },
  1723. "autoload": {
  1724. "psr-4": {
  1725. "Intervention\\Image\\": "src/Intervention/Image"
  1726. }
  1727. },
  1728. "notification-url": "https://packagist.org/downloads/",
  1729. "license": [
  1730. "MIT"
  1731. ],
  1732. "authors": [
  1733. {
  1734. "name": "Oliver Vogel",
  1735. "email": "oliver@intervention.io",
  1736. "homepage": "https://intervention.io/"
  1737. }
  1738. ],
  1739. "description": "Image handling and manipulation library with support for Laravel integration",
  1740. "homepage": "http://image.intervention.io/",
  1741. "keywords": [
  1742. "gd",
  1743. "image",
  1744. "imagick",
  1745. "laravel",
  1746. "thumbnail",
  1747. "watermark"
  1748. ],
  1749. "support": {
  1750. "issues": "https://github.com/Intervention/image/issues",
  1751. "source": "https://github.com/Intervention/image/tree/2.7.2"
  1752. },
  1753. "funding": [
  1754. {
  1755. "url": "https://paypal.me/interventionio",
  1756. "type": "custom"
  1757. },
  1758. {
  1759. "url": "https://github.com/Intervention",
  1760. "type": "github"
  1761. }
  1762. ],
  1763. "time": "2022-05-21T17:30:32+00:00"
  1764. },
  1765. {
  1766. "name": "joypack/tencent-map",
  1767. "version": "1.0.0",
  1768. "source": {
  1769. "type": "git",
  1770. "url": "https://gitee.com/lphkxd/tencent-map",
  1771. "reference": "97c0269086d53dbecb9c3c6e1d2717645d7940a8"
  1772. },
  1773. "require": {
  1774. "php": ">=5.6"
  1775. },
  1776. "type": "library",
  1777. "autoload": {
  1778. "psr-4": {
  1779. "Joypack\\Tencent\\Map\\": "src"
  1780. }
  1781. },
  1782. "notification-url": "https://packagist.org/downloads/",
  1783. "license": [
  1784. "Apache-2.0"
  1785. ],
  1786. "authors": [
  1787. {
  1788. "name": "堪笑",
  1789. "email": "jixiang.f@gmail.com",
  1790. "homepage": "http://cli.life",
  1791. "role": "Developer"
  1792. }
  1793. ],
  1794. "description": "腾讯位置服务(WebService)",
  1795. "homepage": "https://github.com/joypack/tencent-map",
  1796. "keywords": [
  1797. "LBS",
  1798. "腾讯位置服务"
  1799. ],
  1800. "support": {
  1801. "email": "jixiang.f@gmail.com",
  1802. "issues": "https://github.com/joypack/tencent-map/issues",
  1803. "wiki": "https://github.com/joypack/tencent-map/wiki"
  1804. },
  1805. "time": "2021-11-16T06:49:35+00:00"
  1806. },
  1807. {
  1808. "name": "khanamiryan/qrcode-detector-decoder",
  1809. "version": "1.0.6",
  1810. "source": {
  1811. "type": "git",
  1812. "url": "https://github.com/khanamiryan/php-qrcode-detector-decoder.git",
  1813. "reference": "45326fb83a2a375065dbb3a134b5b8a5872da569"
  1814. },
  1815. "dist": {
  1816. "type": "zip",
  1817. "url": "https://api.github.com/repos/khanamiryan/php-qrcode-detector-decoder/zipball/45326fb83a2a375065dbb3a134b5b8a5872da569",
  1818. "reference": "45326fb83a2a375065dbb3a134b5b8a5872da569",
  1819. "shasum": ""
  1820. },
  1821. "require": {
  1822. "php": ">=5.6"
  1823. },
  1824. "require-dev": {
  1825. "phpunit/phpunit": "^5.7 | ^7.5 | ^8.0 | ^9.0",
  1826. "rector/rector": "^0.13.6",
  1827. "symplify/easy-coding-standard": "^11.0"
  1828. },
  1829. "type": "library",
  1830. "autoload": {
  1831. "files": [
  1832. "lib/Common/customFunctions.php"
  1833. ],
  1834. "psr-4": {
  1835. "Zxing\\": "lib/"
  1836. }
  1837. },
  1838. "notification-url": "https://packagist.org/downloads/",
  1839. "license": [
  1840. "MIT",
  1841. "Apache-2.0"
  1842. ],
  1843. "authors": [
  1844. {
  1845. "name": "Ashot Khanamiryan",
  1846. "email": "a.khanamiryan@gmail.com",
  1847. "homepage": "https://github.com/khanamiryan",
  1848. "role": "Developer"
  1849. }
  1850. ],
  1851. "description": "QR code decoder / reader",
  1852. "homepage": "https://github.com/khanamiryan/php-qrcode-detector-decoder/",
  1853. "keywords": [
  1854. "barcode",
  1855. "qr",
  1856. "zxing"
  1857. ],
  1858. "support": {
  1859. "issues": "https://github.com/khanamiryan/php-qrcode-detector-decoder/issues",
  1860. "source": "https://github.com/khanamiryan/php-qrcode-detector-decoder/tree/1.0.6"
  1861. },
  1862. "time": "2022-06-29T09:25:13+00:00"
  1863. },
  1864. {
  1865. "name": "league/flysystem",
  1866. "version": "1.1.10",
  1867. "source": {
  1868. "type": "git",
  1869. "url": "https://github.com/thephpleague/flysystem.git",
  1870. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1"
  1871. },
  1872. "dist": {
  1873. "type": "zip",
  1874. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/3239285c825c152bcc315fe0e87d6b55f5972ed1",
  1875. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1",
  1876. "shasum": ""
  1877. },
  1878. "require": {
  1879. "ext-fileinfo": "*",
  1880. "league/mime-type-detection": "^1.3",
  1881. "php": "^7.2.5 || ^8.0"
  1882. },
  1883. "conflict": {
  1884. "league/flysystem-sftp": "<1.0.6"
  1885. },
  1886. "require-dev": {
  1887. "phpspec/prophecy": "^1.11.1",
  1888. "phpunit/phpunit": "^8.5.8"
  1889. },
  1890. "suggest": {
  1891. "ext-ftp": "Allows you to use FTP server storage",
  1892. "ext-openssl": "Allows you to use FTPS server storage",
  1893. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  1894. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  1895. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  1896. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  1897. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  1898. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  1899. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  1900. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  1901. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  1902. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  1903. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  1904. },
  1905. "type": "library",
  1906. "extra": {
  1907. "branch-alias": {
  1908. "dev-master": "1.1-dev"
  1909. }
  1910. },
  1911. "autoload": {
  1912. "psr-4": {
  1913. "League\\Flysystem\\": "src/"
  1914. }
  1915. },
  1916. "notification-url": "https://packagist.org/downloads/",
  1917. "license": [
  1918. "MIT"
  1919. ],
  1920. "authors": [
  1921. {
  1922. "name": "Frank de Jonge",
  1923. "email": "info@frenky.net"
  1924. }
  1925. ],
  1926. "description": "Filesystem abstraction: Many filesystems, one API.",
  1927. "keywords": [
  1928. "Cloud Files",
  1929. "WebDAV",
  1930. "abstraction",
  1931. "aws",
  1932. "cloud",
  1933. "copy.com",
  1934. "dropbox",
  1935. "file systems",
  1936. "files",
  1937. "filesystem",
  1938. "filesystems",
  1939. "ftp",
  1940. "rackspace",
  1941. "remote",
  1942. "s3",
  1943. "sftp",
  1944. "storage"
  1945. ],
  1946. "support": {
  1947. "issues": "https://github.com/thephpleague/flysystem/issues",
  1948. "source": "https://github.com/thephpleague/flysystem/tree/1.1.10"
  1949. },
  1950. "funding": [
  1951. {
  1952. "url": "https://offset.earth/frankdejonge",
  1953. "type": "other"
  1954. }
  1955. ],
  1956. "time": "2022-10-04T09:16:37+00:00"
  1957. },
  1958. {
  1959. "name": "league/flysystem-cached-adapter",
  1960. "version": "1.1.0",
  1961. "source": {
  1962. "type": "git",
  1963. "url": "https://github.com/thephpleague/flysystem-cached-adapter.git",
  1964. "reference": "d1925efb2207ac4be3ad0c40b8277175f99ffaff"
  1965. },
  1966. "dist": {
  1967. "type": "zip",
  1968. "url": "https://api.github.com/repos/thephpleague/flysystem-cached-adapter/zipball/d1925efb2207ac4be3ad0c40b8277175f99ffaff",
  1969. "reference": "d1925efb2207ac4be3ad0c40b8277175f99ffaff",
  1970. "shasum": ""
  1971. },
  1972. "require": {
  1973. "league/flysystem": "~1.0",
  1974. "psr/cache": "^1.0.0"
  1975. },
  1976. "require-dev": {
  1977. "mockery/mockery": "~0.9",
  1978. "phpspec/phpspec": "^3.4",
  1979. "phpunit/phpunit": "^5.7",
  1980. "predis/predis": "~1.0",
  1981. "tedivm/stash": "~0.12"
  1982. },
  1983. "suggest": {
  1984. "ext-phpredis": "Pure C implemented extension for PHP"
  1985. },
  1986. "type": "library",
  1987. "autoload": {
  1988. "psr-4": {
  1989. "League\\Flysystem\\Cached\\": "src/"
  1990. }
  1991. },
  1992. "notification-url": "https://packagist.org/downloads/",
  1993. "license": [
  1994. "MIT"
  1995. ],
  1996. "authors": [
  1997. {
  1998. "name": "frankdejonge",
  1999. "email": "info@frenky.net"
  2000. }
  2001. ],
  2002. "description": "An adapter decorator to enable meta-data caching.",
  2003. "support": {
  2004. "issues": "https://github.com/thephpleague/flysystem-cached-adapter/issues",
  2005. "source": "https://github.com/thephpleague/flysystem-cached-adapter/tree/master"
  2006. },
  2007. "time": "2020-07-25T15:56:04+00:00"
  2008. },
  2009. {
  2010. "name": "league/mime-type-detection",
  2011. "version": "1.12.0",
  2012. "source": {
  2013. "type": "git",
  2014. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2015. "reference": "c7f2872fb273bf493811473dafc88d60ae829f48"
  2016. },
  2017. "dist": {
  2018. "type": "zip",
  2019. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/c7f2872fb273bf493811473dafc88d60ae829f48",
  2020. "reference": "c7f2872fb273bf493811473dafc88d60ae829f48",
  2021. "shasum": ""
  2022. },
  2023. "require": {
  2024. "ext-fileinfo": "*",
  2025. "php": "^7.2 || ^8.0"
  2026. },
  2027. "require-dev": {
  2028. "friendsofphp/php-cs-fixer": "^3.2",
  2029. "phpstan/phpstan": "^0.12.68",
  2030. "phpunit/phpunit": "^8.5.8 || ^9.3"
  2031. },
  2032. "type": "library",
  2033. "autoload": {
  2034. "psr-4": {
  2035. "League\\MimeTypeDetection\\": "src"
  2036. }
  2037. },
  2038. "notification-url": "https://packagist.org/downloads/",
  2039. "license": [
  2040. "MIT"
  2041. ],
  2042. "authors": [
  2043. {
  2044. "name": "Frank de Jonge",
  2045. "email": "info@frankdejonge.nl"
  2046. }
  2047. ],
  2048. "description": "Mime-type detection for Flysystem",
  2049. "support": {
  2050. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2051. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.12.0"
  2052. },
  2053. "funding": [
  2054. {
  2055. "url": "https://github.com/frankdejonge",
  2056. "type": "github"
  2057. },
  2058. {
  2059. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2060. "type": "tidelift"
  2061. }
  2062. ],
  2063. "time": "2023-08-03T07:14:11+00:00"
  2064. },
  2065. {
  2066. "name": "lizhichao/one-sm",
  2067. "version": "1.10",
  2068. "source": {
  2069. "type": "git",
  2070. "url": "https://github.com/lizhichao/sm.git",
  2071. "reference": "687a012a44a5bfd4d9143a0234e1060543be455a"
  2072. },
  2073. "dist": {
  2074. "type": "zip",
  2075. "url": "https://api.github.com/repos/lizhichao/sm/zipball/687a012a44a5bfd4d9143a0234e1060543be455a",
  2076. "reference": "687a012a44a5bfd4d9143a0234e1060543be455a",
  2077. "shasum": ""
  2078. },
  2079. "require": {
  2080. "php": ">=5.6"
  2081. },
  2082. "type": "library",
  2083. "autoload": {
  2084. "psr-4": {
  2085. "OneSm\\": "src/"
  2086. }
  2087. },
  2088. "notification-url": "https://packagist.org/downloads/",
  2089. "license": [
  2090. "Apache-2.0"
  2091. ],
  2092. "authors": [
  2093. {
  2094. "name": "tanszhe",
  2095. "email": "1018595261@qq.com"
  2096. }
  2097. ],
  2098. "description": "国密sm3",
  2099. "keywords": [
  2100. "php",
  2101. "sm3"
  2102. ],
  2103. "support": {
  2104. "issues": "https://github.com/lizhichao/sm/issues",
  2105. "source": "https://github.com/lizhichao/sm/tree/1.10"
  2106. },
  2107. "funding": [
  2108. {
  2109. "url": "https://www.vicsdf.com/img/w.jpg",
  2110. "type": "custom"
  2111. },
  2112. {
  2113. "url": "https://www.vicsdf.com/img/z.jpg",
  2114. "type": "custom"
  2115. }
  2116. ],
  2117. "time": "2021-05-26T06:19:22+00:00"
  2118. },
  2119. {
  2120. "name": "lizhichao/word",
  2121. "version": "v2.1",
  2122. "source": {
  2123. "type": "git",
  2124. "url": "https://github.com/lizhichao/VicWord.git",
  2125. "reference": "f17172d45f505e7140da0bde2103defc13255326"
  2126. },
  2127. "dist": {
  2128. "type": "zip",
  2129. "url": "https://api.github.com/repos/lizhichao/VicWord/zipball/f17172d45f505e7140da0bde2103defc13255326",
  2130. "reference": "f17172d45f505e7140da0bde2103defc13255326",
  2131. "shasum": ""
  2132. },
  2133. "require": {
  2134. "php": ">=5.6.0"
  2135. },
  2136. "type": "library",
  2137. "autoload": {
  2138. "psr-4": {
  2139. "Lizhichao\\Word\\": "Lib"
  2140. }
  2141. },
  2142. "notification-url": "https://packagist.org/downloads/",
  2143. "license": [
  2144. "Apache-2.0"
  2145. ],
  2146. "authors": [
  2147. {
  2148. "name": "tanszhe",
  2149. "email": "1018595261@qq.com"
  2150. }
  2151. ],
  2152. "description": "This is a participle library",
  2153. "support": {
  2154. "issues": "https://github.com/lizhichao/VicWord/issues",
  2155. "source": "https://github.com/lizhichao/VicWord/tree/master"
  2156. },
  2157. "time": "2020-07-30T07:33:06+00:00"
  2158. },
  2159. {
  2160. "name": "maennchen/zipstream-php",
  2161. "version": "2.1.0",
  2162. "source": {
  2163. "type": "git",
  2164. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  2165. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58"
  2166. },
  2167. "dist": {
  2168. "type": "zip",
  2169. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2170. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2171. "shasum": ""
  2172. },
  2173. "require": {
  2174. "myclabs/php-enum": "^1.5",
  2175. "php": ">= 7.1",
  2176. "psr/http-message": "^1.0",
  2177. "symfony/polyfill-mbstring": "^1.0"
  2178. },
  2179. "require-dev": {
  2180. "ext-zip": "*",
  2181. "guzzlehttp/guzzle": ">= 6.3",
  2182. "mikey179/vfsstream": "^1.6",
  2183. "phpunit/phpunit": ">= 7.5"
  2184. },
  2185. "type": "library",
  2186. "autoload": {
  2187. "psr-4": {
  2188. "ZipStream\\": "src/"
  2189. }
  2190. },
  2191. "notification-url": "https://packagist.org/downloads/",
  2192. "license": [
  2193. "MIT"
  2194. ],
  2195. "authors": [
  2196. {
  2197. "name": "Paul Duncan",
  2198. "email": "pabs@pablotron.org"
  2199. },
  2200. {
  2201. "name": "Jonatan Männchen",
  2202. "email": "jonatan@maennchen.ch"
  2203. },
  2204. {
  2205. "name": "Jesse Donat",
  2206. "email": "donatj@gmail.com"
  2207. },
  2208. {
  2209. "name": "András Kolesár",
  2210. "email": "kolesar@kolesar.hu"
  2211. }
  2212. ],
  2213. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  2214. "keywords": [
  2215. "stream",
  2216. "zip"
  2217. ],
  2218. "support": {
  2219. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  2220. "source": "https://github.com/maennchen/ZipStream-PHP/tree/2.1.0"
  2221. },
  2222. "funding": [
  2223. {
  2224. "url": "https://github.com/maennchen",
  2225. "type": "github"
  2226. },
  2227. {
  2228. "url": "https://opencollective.com/zipstream",
  2229. "type": "open_collective"
  2230. }
  2231. ],
  2232. "time": "2020-05-30T13:11:16+00:00"
  2233. },
  2234. {
  2235. "name": "markbaker/complex",
  2236. "version": "3.0.2",
  2237. "source": {
  2238. "type": "git",
  2239. "url": "https://github.com/MarkBaker/PHPComplex.git",
  2240. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9"
  2241. },
  2242. "dist": {
  2243. "type": "zip",
  2244. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  2245. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  2246. "shasum": ""
  2247. },
  2248. "require": {
  2249. "php": "^7.2 || ^8.0"
  2250. },
  2251. "require-dev": {
  2252. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  2253. "phpcompatibility/php-compatibility": "^9.3",
  2254. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  2255. "squizlabs/php_codesniffer": "^3.7"
  2256. },
  2257. "type": "library",
  2258. "autoload": {
  2259. "psr-4": {
  2260. "Complex\\": "classes/src/"
  2261. }
  2262. },
  2263. "notification-url": "https://packagist.org/downloads/",
  2264. "license": [
  2265. "MIT"
  2266. ],
  2267. "authors": [
  2268. {
  2269. "name": "Mark Baker",
  2270. "email": "mark@lange.demon.co.uk"
  2271. }
  2272. ],
  2273. "description": "PHP Class for working with complex numbers",
  2274. "homepage": "https://github.com/MarkBaker/PHPComplex",
  2275. "keywords": [
  2276. "complex",
  2277. "mathematics"
  2278. ],
  2279. "support": {
  2280. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  2281. "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.2"
  2282. },
  2283. "time": "2022-12-06T16:21:08+00:00"
  2284. },
  2285. {
  2286. "name": "markbaker/matrix",
  2287. "version": "3.0.1",
  2288. "source": {
  2289. "type": "git",
  2290. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  2291. "reference": "728434227fe21be27ff6d86621a1b13107a2562c"
  2292. },
  2293. "dist": {
  2294. "type": "zip",
  2295. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/728434227fe21be27ff6d86621a1b13107a2562c",
  2296. "reference": "728434227fe21be27ff6d86621a1b13107a2562c",
  2297. "shasum": ""
  2298. },
  2299. "require": {
  2300. "php": "^7.1 || ^8.0"
  2301. },
  2302. "require-dev": {
  2303. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  2304. "phpcompatibility/php-compatibility": "^9.3",
  2305. "phpdocumentor/phpdocumentor": "2.*",
  2306. "phploc/phploc": "^4.0",
  2307. "phpmd/phpmd": "2.*",
  2308. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  2309. "sebastian/phpcpd": "^4.0",
  2310. "squizlabs/php_codesniffer": "^3.7"
  2311. },
  2312. "type": "library",
  2313. "autoload": {
  2314. "psr-4": {
  2315. "Matrix\\": "classes/src/"
  2316. }
  2317. },
  2318. "notification-url": "https://packagist.org/downloads/",
  2319. "license": [
  2320. "MIT"
  2321. ],
  2322. "authors": [
  2323. {
  2324. "name": "Mark Baker",
  2325. "email": "mark@demon-angel.eu"
  2326. }
  2327. ],
  2328. "description": "PHP Class for working with matrices",
  2329. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  2330. "keywords": [
  2331. "mathematics",
  2332. "matrix",
  2333. "vector"
  2334. ],
  2335. "support": {
  2336. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  2337. "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.1"
  2338. },
  2339. "time": "2022-12-02T22:17:43+00:00"
  2340. },
  2341. {
  2342. "name": "monolog/monolog",
  2343. "version": "1.27.1",
  2344. "source": {
  2345. "type": "git",
  2346. "url": "https://github.com/Seldaek/monolog.git",
  2347. "reference": "904713c5929655dc9b97288b69cfeedad610c9a1"
  2348. },
  2349. "dist": {
  2350. "type": "zip",
  2351. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/904713c5929655dc9b97288b69cfeedad610c9a1",
  2352. "reference": "904713c5929655dc9b97288b69cfeedad610c9a1",
  2353. "shasum": ""
  2354. },
  2355. "require": {
  2356. "php": ">=5.3.0",
  2357. "psr/log": "~1.0"
  2358. },
  2359. "provide": {
  2360. "psr/log-implementation": "1.0.0"
  2361. },
  2362. "require-dev": {
  2363. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2364. "doctrine/couchdb": "~1.0@dev",
  2365. "graylog2/gelf-php": "~1.0",
  2366. "php-amqplib/php-amqplib": "~2.4",
  2367. "php-console/php-console": "^3.1.3",
  2368. "phpstan/phpstan": "^0.12.59",
  2369. "phpunit/phpunit": "~4.5",
  2370. "ruflin/elastica": ">=0.90 <3.0",
  2371. "sentry/sentry": "^0.13",
  2372. "swiftmailer/swiftmailer": "^5.3|^6.0"
  2373. },
  2374. "suggest": {
  2375. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2376. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2377. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2378. "ext-mongo": "Allow sending log messages to a MongoDB server",
  2379. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2380. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  2381. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2382. "php-console/php-console": "Allow sending log messages to Google Chrome",
  2383. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2384. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  2385. "sentry/sentry": "Allow sending log messages to a Sentry server"
  2386. },
  2387. "type": "library",
  2388. "autoload": {
  2389. "psr-4": {
  2390. "Monolog\\": "src/Monolog"
  2391. }
  2392. },
  2393. "notification-url": "https://packagist.org/downloads/",
  2394. "license": [
  2395. "MIT"
  2396. ],
  2397. "authors": [
  2398. {
  2399. "name": "Jordi Boggiano",
  2400. "email": "j.boggiano@seld.be",
  2401. "homepage": "http://seld.be"
  2402. }
  2403. ],
  2404. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2405. "homepage": "http://github.com/Seldaek/monolog",
  2406. "keywords": [
  2407. "log",
  2408. "logging",
  2409. "psr-3"
  2410. ],
  2411. "support": {
  2412. "issues": "https://github.com/Seldaek/monolog/issues",
  2413. "source": "https://github.com/Seldaek/monolog/tree/1.27.1"
  2414. },
  2415. "funding": [
  2416. {
  2417. "url": "https://github.com/Seldaek",
  2418. "type": "github"
  2419. },
  2420. {
  2421. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2422. "type": "tidelift"
  2423. }
  2424. ],
  2425. "time": "2022-06-09T08:53:42+00:00"
  2426. },
  2427. {
  2428. "name": "mtdowling/jmespath.php",
  2429. "version": "2.8.0",
  2430. "source": {
  2431. "type": "git",
  2432. "url": "https://github.com/jmespath/jmespath.php.git",
  2433. "reference": "a2a865e05d5f420b50cc2f85bb78d565db12a6bc"
  2434. },
  2435. "dist": {
  2436. "type": "zip",
  2437. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/a2a865e05d5f420b50cc2f85bb78d565db12a6bc",
  2438. "reference": "a2a865e05d5f420b50cc2f85bb78d565db12a6bc",
  2439. "shasum": ""
  2440. },
  2441. "require": {
  2442. "php": "^7.2.5 || ^8.0",
  2443. "symfony/polyfill-mbstring": "^1.17"
  2444. },
  2445. "require-dev": {
  2446. "composer/xdebug-handler": "^3.0.3",
  2447. "phpunit/phpunit": "^8.5.33"
  2448. },
  2449. "bin": [
  2450. "bin/jp.php"
  2451. ],
  2452. "type": "library",
  2453. "extra": {
  2454. "branch-alias": {
  2455. "dev-master": "2.8-dev"
  2456. }
  2457. },
  2458. "autoload": {
  2459. "files": [
  2460. "src/JmesPath.php"
  2461. ],
  2462. "psr-4": {
  2463. "JmesPath\\": "src/"
  2464. }
  2465. },
  2466. "notification-url": "https://packagist.org/downloads/",
  2467. "license": [
  2468. "MIT"
  2469. ],
  2470. "authors": [
  2471. {
  2472. "name": "Graham Campbell",
  2473. "email": "hello@gjcampbell.co.uk",
  2474. "homepage": "https://github.com/GrahamCampbell"
  2475. },
  2476. {
  2477. "name": "Michael Dowling",
  2478. "email": "mtdowling@gmail.com",
  2479. "homepage": "https://github.com/mtdowling"
  2480. }
  2481. ],
  2482. "description": "Declaratively specify how to extract elements from a JSON document",
  2483. "keywords": [
  2484. "json",
  2485. "jsonpath"
  2486. ],
  2487. "support": {
  2488. "issues": "https://github.com/jmespath/jmespath.php/issues",
  2489. "source": "https://github.com/jmespath/jmespath.php/tree/2.8.0"
  2490. },
  2491. "time": "2024-09-04T18:46:31+00:00"
  2492. },
  2493. {
  2494. "name": "myclabs/php-enum",
  2495. "version": "1.8.4",
  2496. "source": {
  2497. "type": "git",
  2498. "url": "https://github.com/myclabs/php-enum.git",
  2499. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483"
  2500. },
  2501. "dist": {
  2502. "type": "zip",
  2503. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/a867478eae49c9f59ece437ae7f9506bfaa27483",
  2504. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483",
  2505. "shasum": ""
  2506. },
  2507. "require": {
  2508. "ext-json": "*",
  2509. "php": "^7.3 || ^8.0"
  2510. },
  2511. "require-dev": {
  2512. "phpunit/phpunit": "^9.5",
  2513. "squizlabs/php_codesniffer": "1.*",
  2514. "vimeo/psalm": "^4.6.2"
  2515. },
  2516. "type": "library",
  2517. "autoload": {
  2518. "psr-4": {
  2519. "MyCLabs\\Enum\\": "src/"
  2520. },
  2521. "classmap": [
  2522. "stubs/Stringable.php"
  2523. ]
  2524. },
  2525. "notification-url": "https://packagist.org/downloads/",
  2526. "license": [
  2527. "MIT"
  2528. ],
  2529. "authors": [
  2530. {
  2531. "name": "PHP Enum contributors",
  2532. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  2533. }
  2534. ],
  2535. "description": "PHP Enum implementation",
  2536. "homepage": "http://github.com/myclabs/php-enum",
  2537. "keywords": [
  2538. "enum"
  2539. ],
  2540. "support": {
  2541. "issues": "https://github.com/myclabs/php-enum/issues",
  2542. "source": "https://github.com/myclabs/php-enum/tree/1.8.4"
  2543. },
  2544. "funding": [
  2545. {
  2546. "url": "https://github.com/mnapoli",
  2547. "type": "github"
  2548. },
  2549. {
  2550. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  2551. "type": "tidelift"
  2552. }
  2553. ],
  2554. "time": "2022-08-04T09:53:51+00:00"
  2555. },
  2556. {
  2557. "name": "nesbot/carbon",
  2558. "version": "2.72.5",
  2559. "source": {
  2560. "type": "git",
  2561. "url": "https://github.com/briannesbitt/Carbon.git",
  2562. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed"
  2563. },
  2564. "dist": {
  2565. "type": "zip",
  2566. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/afd46589c216118ecd48ff2b95d77596af1e57ed",
  2567. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed",
  2568. "shasum": ""
  2569. },
  2570. "require": {
  2571. "carbonphp/carbon-doctrine-types": "*",
  2572. "ext-json": "*",
  2573. "php": "^7.1.8 || ^8.0",
  2574. "psr/clock": "^1.0",
  2575. "symfony/polyfill-mbstring": "^1.0",
  2576. "symfony/polyfill-php80": "^1.16",
  2577. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  2578. },
  2579. "provide": {
  2580. "psr/clock-implementation": "1.0"
  2581. },
  2582. "require-dev": {
  2583. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  2584. "doctrine/orm": "^2.7 || ^3.0",
  2585. "friendsofphp/php-cs-fixer": "^3.0",
  2586. "kylekatarnls/multi-tester": "^2.0",
  2587. "ondrejmirtes/better-reflection": "*",
  2588. "phpmd/phpmd": "^2.9",
  2589. "phpstan/extension-installer": "^1.0",
  2590. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  2591. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  2592. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  2593. "squizlabs/php_codesniffer": "^3.4"
  2594. },
  2595. "bin": [
  2596. "bin/carbon"
  2597. ],
  2598. "type": "library",
  2599. "extra": {
  2600. "branch-alias": {
  2601. "dev-master": "3.x-dev",
  2602. "dev-2.x": "2.x-dev"
  2603. },
  2604. "laravel": {
  2605. "providers": [
  2606. "Carbon\\Laravel\\ServiceProvider"
  2607. ]
  2608. },
  2609. "phpstan": {
  2610. "includes": [
  2611. "extension.neon"
  2612. ]
  2613. }
  2614. },
  2615. "autoload": {
  2616. "psr-4": {
  2617. "Carbon\\": "src/Carbon/"
  2618. }
  2619. },
  2620. "notification-url": "https://packagist.org/downloads/",
  2621. "license": [
  2622. "MIT"
  2623. ],
  2624. "authors": [
  2625. {
  2626. "name": "Brian Nesbitt",
  2627. "email": "brian@nesbot.com",
  2628. "homepage": "https://markido.com"
  2629. },
  2630. {
  2631. "name": "kylekatarnls",
  2632. "homepage": "https://github.com/kylekatarnls"
  2633. }
  2634. ],
  2635. "description": "An API extension for DateTime that supports 281 different languages.",
  2636. "homepage": "https://carbon.nesbot.com",
  2637. "keywords": [
  2638. "date",
  2639. "datetime",
  2640. "time"
  2641. ],
  2642. "support": {
  2643. "docs": "https://carbon.nesbot.com/docs",
  2644. "issues": "https://github.com/briannesbitt/Carbon/issues",
  2645. "source": "https://github.com/briannesbitt/Carbon"
  2646. },
  2647. "funding": [
  2648. {
  2649. "url": "https://github.com/sponsors/kylekatarnls",
  2650. "type": "github"
  2651. },
  2652. {
  2653. "url": "https://opencollective.com/Carbon#sponsor",
  2654. "type": "opencollective"
  2655. },
  2656. {
  2657. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  2658. "type": "tidelift"
  2659. }
  2660. ],
  2661. "time": "2024-06-03T19:18:41+00:00"
  2662. },
  2663. {
  2664. "name": "nette/php-generator",
  2665. "version": "v3.6.9",
  2666. "source": {
  2667. "type": "git",
  2668. "url": "https://github.com/nette/php-generator.git",
  2669. "reference": "d31782f7bd2ae84ad06f863391ec3fb77ca4d0a6"
  2670. },
  2671. "dist": {
  2672. "type": "zip",
  2673. "url": "https://api.github.com/repos/nette/php-generator/zipball/d31782f7bd2ae84ad06f863391ec3fb77ca4d0a6",
  2674. "reference": "d31782f7bd2ae84ad06f863391ec3fb77ca4d0a6",
  2675. "shasum": ""
  2676. },
  2677. "require": {
  2678. "nette/utils": "^3.1.2",
  2679. "php": ">=7.2 <8.3"
  2680. },
  2681. "require-dev": {
  2682. "nette/tester": "^2.4",
  2683. "nikic/php-parser": "^4.13",
  2684. "phpstan/phpstan": "^0.12",
  2685. "tracy/tracy": "^2.8"
  2686. },
  2687. "suggest": {
  2688. "nikic/php-parser": "to use ClassType::withBodiesFrom() & GlobalFunction::withBodyFrom()"
  2689. },
  2690. "type": "library",
  2691. "extra": {
  2692. "branch-alias": {
  2693. "dev-master": "3.6-dev"
  2694. }
  2695. },
  2696. "autoload": {
  2697. "classmap": [
  2698. "src/"
  2699. ]
  2700. },
  2701. "notification-url": "https://packagist.org/downloads/",
  2702. "license": [
  2703. "BSD-3-Clause",
  2704. "GPL-2.0-only",
  2705. "GPL-3.0-only"
  2706. ],
  2707. "authors": [
  2708. {
  2709. "name": "David Grudl",
  2710. "homepage": "https://davidgrudl.com"
  2711. },
  2712. {
  2713. "name": "Nette Community",
  2714. "homepage": "https://nette.org/contributors"
  2715. }
  2716. ],
  2717. "description": "🐘 Nette PHP Generator: generates neat PHP code for you. Supports new PHP 8.1 features.",
  2718. "homepage": "https://nette.org",
  2719. "keywords": [
  2720. "code",
  2721. "nette",
  2722. "php",
  2723. "scaffolding"
  2724. ],
  2725. "support": {
  2726. "issues": "https://github.com/nette/php-generator/issues",
  2727. "source": "https://github.com/nette/php-generator/tree/v3.6.9"
  2728. },
  2729. "time": "2022-10-04T11:49:47+00:00"
  2730. },
  2731. {
  2732. "name": "nette/utils",
  2733. "version": "v3.2.10",
  2734. "source": {
  2735. "type": "git",
  2736. "url": "https://github.com/nette/utils.git",
  2737. "reference": "a4175c62652f2300c8017fb7e640f9ccb11648d2"
  2738. },
  2739. "dist": {
  2740. "type": "zip",
  2741. "url": "https://api.github.com/repos/nette/utils/zipball/a4175c62652f2300c8017fb7e640f9ccb11648d2",
  2742. "reference": "a4175c62652f2300c8017fb7e640f9ccb11648d2",
  2743. "shasum": ""
  2744. },
  2745. "require": {
  2746. "php": ">=7.2 <8.4"
  2747. },
  2748. "conflict": {
  2749. "nette/di": "<3.0.6"
  2750. },
  2751. "require-dev": {
  2752. "jetbrains/phpstorm-attributes": "dev-master",
  2753. "nette/tester": "~2.0",
  2754. "phpstan/phpstan": "^1.0",
  2755. "tracy/tracy": "^2.3"
  2756. },
  2757. "suggest": {
  2758. "ext-gd": "to use Image",
  2759. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  2760. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  2761. "ext-json": "to use Nette\\Utils\\Json",
  2762. "ext-mbstring": "to use Strings::lower() etc...",
  2763. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()",
  2764. "ext-xml": "to use Strings::length() etc. when mbstring is not available"
  2765. },
  2766. "type": "library",
  2767. "extra": {
  2768. "branch-alias": {
  2769. "dev-master": "3.2-dev"
  2770. }
  2771. },
  2772. "autoload": {
  2773. "classmap": [
  2774. "src/"
  2775. ]
  2776. },
  2777. "notification-url": "https://packagist.org/downloads/",
  2778. "license": [
  2779. "BSD-3-Clause",
  2780. "GPL-2.0-only",
  2781. "GPL-3.0-only"
  2782. ],
  2783. "authors": [
  2784. {
  2785. "name": "David Grudl",
  2786. "homepage": "https://davidgrudl.com"
  2787. },
  2788. {
  2789. "name": "Nette Community",
  2790. "homepage": "https://nette.org/contributors"
  2791. }
  2792. ],
  2793. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  2794. "homepage": "https://nette.org",
  2795. "keywords": [
  2796. "array",
  2797. "core",
  2798. "datetime",
  2799. "images",
  2800. "json",
  2801. "nette",
  2802. "paginator",
  2803. "password",
  2804. "slugify",
  2805. "string",
  2806. "unicode",
  2807. "utf-8",
  2808. "utility",
  2809. "validation"
  2810. ],
  2811. "support": {
  2812. "issues": "https://github.com/nette/utils/issues",
  2813. "source": "https://github.com/nette/utils/tree/v3.2.10"
  2814. },
  2815. "time": "2023-07-30T15:38:18+00:00"
  2816. },
  2817. {
  2818. "name": "obs/esdk-obs-php",
  2819. "version": "3.23.11",
  2820. "source": {
  2821. "type": "git",
  2822. "url": "https://github.com/huaweicloud/huaweicloud-sdk-php-obs.git",
  2823. "reference": "51272ef0c4415607f0f68460ae7706be330b8a82"
  2824. },
  2825. "dist": {
  2826. "type": "zip",
  2827. "url": "https://api.github.com/repos/huaweicloud/huaweicloud-sdk-php-obs/zipball/51272ef0c4415607f0f68460ae7706be330b8a82",
  2828. "reference": "51272ef0c4415607f0f68460ae7706be330b8a82",
  2829. "shasum": ""
  2830. },
  2831. "require": {
  2832. "guzzlehttp/guzzle": "^6.3.0 || ^7.0",
  2833. "guzzlehttp/psr7": "^1.4.2 || ^2.0",
  2834. "monolog/monolog": "^1.23.0 || ^2.0",
  2835. "php": ">=5.6.0",
  2836. "psr/http-message": "^1.0"
  2837. },
  2838. "type": "library",
  2839. "autoload": {
  2840. "psr-4": {
  2841. "Obs\\": "Obs/"
  2842. }
  2843. },
  2844. "notification-url": "https://packagist.org/downloads/",
  2845. "license": [
  2846. "Apache-2.0"
  2847. ],
  2848. "description": "OBS PHP SDK",
  2849. "keywords": [
  2850. "OBS",
  2851. "php"
  2852. ],
  2853. "support": {
  2854. "issues": "https://github.com/huaweicloud/huaweicloud-sdk-php-obs/issues",
  2855. "source": "https://github.com/huaweicloud/huaweicloud-sdk-php-obs/tree/v3.23.11"
  2856. },
  2857. "time": "2023-12-04T09:11:10+00:00"
  2858. },
  2859. {
  2860. "name": "open-smf/connection-pool",
  2861. "version": "v1.0.16",
  2862. "source": {
  2863. "type": "git",
  2864. "url": "https://github.com/open-smf/connection-pool.git",
  2865. "reference": "f70e47dbf56f1869d3207e15825cf38810b865e0"
  2866. },
  2867. "dist": {
  2868. "type": "zip",
  2869. "url": "https://api.github.com/repos/open-smf/connection-pool/zipball/f70e47dbf56f1869d3207e15825cf38810b865e0",
  2870. "reference": "f70e47dbf56f1869d3207e15825cf38810b865e0",
  2871. "shasum": ""
  2872. },
  2873. "require": {
  2874. "ext-json": "*",
  2875. "ext-swoole": ">=4.2.9",
  2876. "php": ">=7.0.0"
  2877. },
  2878. "require-dev": {
  2879. "swoole/ide-helper": "@dev"
  2880. },
  2881. "suggest": {
  2882. "ext-redis": "A PHP extension for Redis."
  2883. },
  2884. "type": "library",
  2885. "autoload": {
  2886. "psr-4": {
  2887. "Smf\\ConnectionPool\\": "src"
  2888. }
  2889. },
  2890. "notification-url": "https://packagist.org/downloads/",
  2891. "license": [
  2892. "MIT"
  2893. ],
  2894. "authors": [
  2895. {
  2896. "name": "Xie Biao",
  2897. "email": "hhxsv5@sina.com"
  2898. }
  2899. ],
  2900. "description": "A common connection pool based on Swoole is usually used as the database connection pool.",
  2901. "homepage": "https://github.com/open-smf/connection-pool",
  2902. "keywords": [
  2903. "connection-pool",
  2904. "database-connection-pool",
  2905. "swoole"
  2906. ],
  2907. "support": {
  2908. "issues": "https://github.com/open-smf/connection-pool/issues",
  2909. "source": "https://github.com/open-smf/connection-pool"
  2910. },
  2911. "time": "2021-03-01T04:13:24+00:00"
  2912. },
  2913. {
  2914. "name": "overtrue/socialite",
  2915. "version": "1.3.0",
  2916. "source": {
  2917. "type": "git",
  2918. "url": "https://github.com/overtrue/socialite.git",
  2919. "reference": "fda55f0acef43a144799b1957a8f93d9f5deffce"
  2920. },
  2921. "dist": {
  2922. "type": "zip",
  2923. "url": "https://api.github.com/repos/overtrue/socialite/zipball/fda55f0acef43a144799b1957a8f93d9f5deffce",
  2924. "reference": "fda55f0acef43a144799b1957a8f93d9f5deffce",
  2925. "shasum": ""
  2926. },
  2927. "require": {
  2928. "guzzlehttp/guzzle": "~5.0|~6.0",
  2929. "php": ">=5.4.0",
  2930. "symfony/http-foundation": "~2.6|~2.7|~2.8|~3.0"
  2931. },
  2932. "require-dev": {
  2933. "mockery/mockery": "~0.9",
  2934. "phpunit/phpunit": "~4.0"
  2935. },
  2936. "type": "library",
  2937. "autoload": {
  2938. "psr-4": {
  2939. "Overtrue\\Socialite\\": "src/"
  2940. }
  2941. },
  2942. "notification-url": "https://packagist.org/downloads/",
  2943. "license": [
  2944. "MIT"
  2945. ],
  2946. "authors": [
  2947. {
  2948. "name": "overtrue",
  2949. "email": "anzhengchao@gmail.com"
  2950. }
  2951. ],
  2952. "description": "A collection of OAuth 2 packages that extracts from laravel/socialite.",
  2953. "keywords": [
  2954. "login",
  2955. "oauth",
  2956. "qq",
  2957. "social",
  2958. "wechat",
  2959. "weibo"
  2960. ],
  2961. "support": {
  2962. "issues": "https://github.com/overtrue/socialite/issues",
  2963. "source": "https://github.com/overtrue/socialite/tree/master"
  2964. },
  2965. "time": "2017-08-04T06:28:22+00:00"
  2966. },
  2967. {
  2968. "name": "overtrue/wechat",
  2969. "version": "3.3.33",
  2970. "source": {
  2971. "type": "git",
  2972. "url": "https://github.com/w7corp/easywechat.git",
  2973. "reference": "78e5476df330754040d1c400d0bca640d5b77cb7"
  2974. },
  2975. "dist": {
  2976. "type": "zip",
  2977. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/78e5476df330754040d1c400d0bca640d5b77cb7",
  2978. "reference": "78e5476df330754040d1c400d0bca640d5b77cb7",
  2979. "shasum": ""
  2980. },
  2981. "require": {
  2982. "doctrine/cache": "1.4.*",
  2983. "ext-openssl": "*",
  2984. "guzzlehttp/guzzle": "~6.2",
  2985. "monolog/monolog": "^1.17",
  2986. "overtrue/socialite": "^1.0.25",
  2987. "php": ">=5.5.0",
  2988. "pimple/pimple": "~3.0",
  2989. "symfony/http-foundation": "~2.6|~2.7|~2.8|~3.0",
  2990. "symfony/psr-http-message-bridge": "~0.3|^1.0"
  2991. },
  2992. "require-dev": {
  2993. "mockery/mockery": "^0.9.9",
  2994. "overtrue/phplint": "dev-master",
  2995. "phpunit/phpunit": "~4.0"
  2996. },
  2997. "type": "library",
  2998. "autoload": {
  2999. "files": [
  3000. "src/Payment/helpers.php"
  3001. ],
  3002. "psr-4": {
  3003. "EasyWeChat\\": "src/"
  3004. }
  3005. },
  3006. "notification-url": "https://packagist.org/downloads/",
  3007. "license": [
  3008. "MIT"
  3009. ],
  3010. "authors": [
  3011. {
  3012. "name": "overtrue",
  3013. "email": "anzhengchao@gmail.com"
  3014. }
  3015. ],
  3016. "description": "微信SDK",
  3017. "keywords": [
  3018. "sdk",
  3019. "wechat",
  3020. "weixin",
  3021. "weixin-sdk"
  3022. ],
  3023. "support": {
  3024. "issues": "https://github.com/w7corp/easywechat/issues",
  3025. "source": "https://github.com/w7corp/easywechat/tree/3.3.33"
  3026. },
  3027. "abandoned": "w7corp/easywechat",
  3028. "time": "2018-10-17T12:27:27+00:00"
  3029. },
  3030. {
  3031. "name": "phpoffice/phpexcel",
  3032. "version": "1.8.2",
  3033. "source": {
  3034. "type": "git",
  3035. "url": "https://github.com/PHPOffice/PHPExcel.git",
  3036. "reference": "1441011fb7ecdd8cc689878f54f8b58a6805f870"
  3037. },
  3038. "dist": {
  3039. "type": "zip",
  3040. "url": "https://api.github.com/repos/PHPOffice/PHPExcel/zipball/1441011fb7ecdd8cc689878f54f8b58a6805f870",
  3041. "reference": "1441011fb7ecdd8cc689878f54f8b58a6805f870",
  3042. "shasum": ""
  3043. },
  3044. "require": {
  3045. "ext-mbstring": "*",
  3046. "ext-xml": "*",
  3047. "ext-xmlwriter": "*",
  3048. "php": "^5.2|^7.0"
  3049. },
  3050. "require-dev": {
  3051. "squizlabs/php_codesniffer": "2.*"
  3052. },
  3053. "type": "library",
  3054. "autoload": {
  3055. "psr-0": {
  3056. "PHPExcel": "Classes/"
  3057. }
  3058. },
  3059. "notification-url": "https://packagist.org/downloads/",
  3060. "license": [
  3061. "LGPL-2.1"
  3062. ],
  3063. "authors": [
  3064. {
  3065. "name": "Maarten Balliauw",
  3066. "homepage": "http://blog.maartenballiauw.be"
  3067. },
  3068. {
  3069. "name": "Erik Tilt"
  3070. },
  3071. {
  3072. "name": "Franck Lefevre",
  3073. "homepage": "http://rootslabs.net"
  3074. },
  3075. {
  3076. "name": "Mark Baker",
  3077. "homepage": "http://markbakeruk.net"
  3078. }
  3079. ],
  3080. "description": "PHPExcel - OpenXML - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  3081. "homepage": "https://github.com/PHPOffice/PHPExcel",
  3082. "keywords": [
  3083. "OpenXML",
  3084. "excel",
  3085. "php",
  3086. "spreadsheet",
  3087. "xls",
  3088. "xlsx"
  3089. ],
  3090. "support": {
  3091. "issues": "https://github.com/PHPOffice/PHPExcel/issues",
  3092. "source": "https://github.com/PHPOffice/PHPExcel/tree/master"
  3093. },
  3094. "abandoned": "phpoffice/phpspreadsheet",
  3095. "time": "2018-11-22T23:07:24+00:00"
  3096. },
  3097. {
  3098. "name": "phpoffice/phpspreadsheet",
  3099. "version": "1.25.2",
  3100. "source": {
  3101. "type": "git",
  3102. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  3103. "reference": "a317a09e7def49852400a4b3eca4a4b0790ceeb5"
  3104. },
  3105. "dist": {
  3106. "type": "zip",
  3107. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/a317a09e7def49852400a4b3eca4a4b0790ceeb5",
  3108. "reference": "a317a09e7def49852400a4b3eca4a4b0790ceeb5",
  3109. "shasum": ""
  3110. },
  3111. "require": {
  3112. "ext-ctype": "*",
  3113. "ext-dom": "*",
  3114. "ext-fileinfo": "*",
  3115. "ext-gd": "*",
  3116. "ext-iconv": "*",
  3117. "ext-libxml": "*",
  3118. "ext-mbstring": "*",
  3119. "ext-simplexml": "*",
  3120. "ext-xml": "*",
  3121. "ext-xmlreader": "*",
  3122. "ext-xmlwriter": "*",
  3123. "ext-zip": "*",
  3124. "ext-zlib": "*",
  3125. "ezyang/htmlpurifier": "^4.15",
  3126. "maennchen/zipstream-php": "^2.1",
  3127. "markbaker/complex": "^3.0",
  3128. "markbaker/matrix": "^3.0",
  3129. "php": "^7.3 || ^8.0",
  3130. "psr/http-client": "^1.0",
  3131. "psr/http-factory": "^1.0",
  3132. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  3133. },
  3134. "require-dev": {
  3135. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  3136. "dompdf/dompdf": "^1.0 || ^2.0",
  3137. "friendsofphp/php-cs-fixer": "^3.2",
  3138. "mitoteam/jpgraph": "10.2.4",
  3139. "mpdf/mpdf": "8.1.1",
  3140. "phpcompatibility/php-compatibility": "^9.3",
  3141. "phpstan/phpstan": "^1.1",
  3142. "phpstan/phpstan-phpunit": "^1.0",
  3143. "phpunit/phpunit": "^8.5 || ^9.0",
  3144. "squizlabs/php_codesniffer": "^3.7",
  3145. "tecnickcom/tcpdf": "6.5"
  3146. },
  3147. "suggest": {
  3148. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  3149. "ext-intl": "PHP Internationalization Functions",
  3150. "mitoteam/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  3151. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  3152. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  3153. },
  3154. "type": "library",
  3155. "autoload": {
  3156. "psr-4": {
  3157. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  3158. }
  3159. },
  3160. "notification-url": "https://packagist.org/downloads/",
  3161. "license": [
  3162. "MIT"
  3163. ],
  3164. "authors": [
  3165. {
  3166. "name": "Maarten Balliauw",
  3167. "homepage": "https://blog.maartenballiauw.be"
  3168. },
  3169. {
  3170. "name": "Mark Baker",
  3171. "homepage": "https://markbakeruk.net"
  3172. },
  3173. {
  3174. "name": "Franck Lefevre",
  3175. "homepage": "https://rootslabs.net"
  3176. },
  3177. {
  3178. "name": "Erik Tilt"
  3179. },
  3180. {
  3181. "name": "Adrien Crivelli"
  3182. }
  3183. ],
  3184. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  3185. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  3186. "keywords": [
  3187. "OpenXML",
  3188. "excel",
  3189. "gnumeric",
  3190. "ods",
  3191. "php",
  3192. "spreadsheet",
  3193. "xls",
  3194. "xlsx"
  3195. ],
  3196. "support": {
  3197. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  3198. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.25.2"
  3199. },
  3200. "time": "2022-09-25T17:21:01+00:00"
  3201. },
  3202. {
  3203. "name": "pimple/pimple",
  3204. "version": "v3.5.0",
  3205. "source": {
  3206. "type": "git",
  3207. "url": "https://github.com/silexphp/Pimple.git",
  3208. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed"
  3209. },
  3210. "dist": {
  3211. "type": "zip",
  3212. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  3213. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  3214. "shasum": ""
  3215. },
  3216. "require": {
  3217. "php": ">=7.2.5",
  3218. "psr/container": "^1.1 || ^2.0"
  3219. },
  3220. "require-dev": {
  3221. "symfony/phpunit-bridge": "^5.4@dev"
  3222. },
  3223. "type": "library",
  3224. "extra": {
  3225. "branch-alias": {
  3226. "dev-master": "3.4.x-dev"
  3227. }
  3228. },
  3229. "autoload": {
  3230. "psr-0": {
  3231. "Pimple": "src/"
  3232. }
  3233. },
  3234. "notification-url": "https://packagist.org/downloads/",
  3235. "license": [
  3236. "MIT"
  3237. ],
  3238. "authors": [
  3239. {
  3240. "name": "Fabien Potencier",
  3241. "email": "fabien@symfony.com"
  3242. }
  3243. ],
  3244. "description": "Pimple, a simple Dependency Injection Container",
  3245. "homepage": "https://pimple.symfony.com",
  3246. "keywords": [
  3247. "container",
  3248. "dependency injection"
  3249. ],
  3250. "support": {
  3251. "source": "https://github.com/silexphp/Pimple/tree/v3.5.0"
  3252. },
  3253. "time": "2021-10-28T11:13:42+00:00"
  3254. },
  3255. {
  3256. "name": "psr/cache",
  3257. "version": "1.0.1",
  3258. "source": {
  3259. "type": "git",
  3260. "url": "https://github.com/php-fig/cache.git",
  3261. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  3262. },
  3263. "dist": {
  3264. "type": "zip",
  3265. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  3266. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  3267. "shasum": ""
  3268. },
  3269. "require": {
  3270. "php": ">=5.3.0"
  3271. },
  3272. "type": "library",
  3273. "extra": {
  3274. "branch-alias": {
  3275. "dev-master": "1.0.x-dev"
  3276. }
  3277. },
  3278. "autoload": {
  3279. "psr-4": {
  3280. "Psr\\Cache\\": "src/"
  3281. }
  3282. },
  3283. "notification-url": "https://packagist.org/downloads/",
  3284. "license": [
  3285. "MIT"
  3286. ],
  3287. "authors": [
  3288. {
  3289. "name": "PHP-FIG",
  3290. "homepage": "http://www.php-fig.org/"
  3291. }
  3292. ],
  3293. "description": "Common interface for caching libraries",
  3294. "keywords": [
  3295. "cache",
  3296. "psr",
  3297. "psr-6"
  3298. ],
  3299. "support": {
  3300. "source": "https://github.com/php-fig/cache/tree/master"
  3301. },
  3302. "time": "2016-08-06T20:24:11+00:00"
  3303. },
  3304. {
  3305. "name": "psr/clock",
  3306. "version": "1.0.0",
  3307. "source": {
  3308. "type": "git",
  3309. "url": "https://github.com/php-fig/clock.git",
  3310. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  3311. },
  3312. "dist": {
  3313. "type": "zip",
  3314. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  3315. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  3316. "shasum": ""
  3317. },
  3318. "require": {
  3319. "php": "^7.0 || ^8.0"
  3320. },
  3321. "type": "library",
  3322. "autoload": {
  3323. "psr-4": {
  3324. "Psr\\Clock\\": "src/"
  3325. }
  3326. },
  3327. "notification-url": "https://packagist.org/downloads/",
  3328. "license": [
  3329. "MIT"
  3330. ],
  3331. "authors": [
  3332. {
  3333. "name": "PHP-FIG",
  3334. "homepage": "https://www.php-fig.org/"
  3335. }
  3336. ],
  3337. "description": "Common interface for reading the clock.",
  3338. "homepage": "https://github.com/php-fig/clock",
  3339. "keywords": [
  3340. "clock",
  3341. "now",
  3342. "psr",
  3343. "psr-20",
  3344. "time"
  3345. ],
  3346. "support": {
  3347. "issues": "https://github.com/php-fig/clock/issues",
  3348. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  3349. },
  3350. "time": "2022-11-25T14:36:26+00:00"
  3351. },
  3352. {
  3353. "name": "psr/container",
  3354. "version": "1.1.1",
  3355. "source": {
  3356. "type": "git",
  3357. "url": "https://github.com/php-fig/container.git",
  3358. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
  3359. },
  3360. "dist": {
  3361. "type": "zip",
  3362. "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
  3363. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
  3364. "shasum": ""
  3365. },
  3366. "require": {
  3367. "php": ">=7.2.0"
  3368. },
  3369. "type": "library",
  3370. "autoload": {
  3371. "psr-4": {
  3372. "Psr\\Container\\": "src/"
  3373. }
  3374. },
  3375. "notification-url": "https://packagist.org/downloads/",
  3376. "license": [
  3377. "MIT"
  3378. ],
  3379. "authors": [
  3380. {
  3381. "name": "PHP-FIG",
  3382. "homepage": "https://www.php-fig.org/"
  3383. }
  3384. ],
  3385. "description": "Common Container Interface (PHP FIG PSR-11)",
  3386. "homepage": "https://github.com/php-fig/container",
  3387. "keywords": [
  3388. "PSR-11",
  3389. "container",
  3390. "container-interface",
  3391. "container-interop",
  3392. "psr"
  3393. ],
  3394. "support": {
  3395. "issues": "https://github.com/php-fig/container/issues",
  3396. "source": "https://github.com/php-fig/container/tree/1.1.1"
  3397. },
  3398. "time": "2021-03-05T17:36:06+00:00"
  3399. },
  3400. {
  3401. "name": "psr/http-client",
  3402. "version": "1.0.3",
  3403. "source": {
  3404. "type": "git",
  3405. "url": "https://github.com/php-fig/http-client.git",
  3406. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  3407. },
  3408. "dist": {
  3409. "type": "zip",
  3410. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  3411. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  3412. "shasum": ""
  3413. },
  3414. "require": {
  3415. "php": "^7.0 || ^8.0",
  3416. "psr/http-message": "^1.0 || ^2.0"
  3417. },
  3418. "type": "library",
  3419. "extra": {
  3420. "branch-alias": {
  3421. "dev-master": "1.0.x-dev"
  3422. }
  3423. },
  3424. "autoload": {
  3425. "psr-4": {
  3426. "Psr\\Http\\Client\\": "src/"
  3427. }
  3428. },
  3429. "notification-url": "https://packagist.org/downloads/",
  3430. "license": [
  3431. "MIT"
  3432. ],
  3433. "authors": [
  3434. {
  3435. "name": "PHP-FIG",
  3436. "homepage": "https://www.php-fig.org/"
  3437. }
  3438. ],
  3439. "description": "Common interface for HTTP clients",
  3440. "homepage": "https://github.com/php-fig/http-client",
  3441. "keywords": [
  3442. "http",
  3443. "http-client",
  3444. "psr",
  3445. "psr-18"
  3446. ],
  3447. "support": {
  3448. "source": "https://github.com/php-fig/http-client"
  3449. },
  3450. "time": "2023-09-23T14:17:50+00:00"
  3451. },
  3452. {
  3453. "name": "psr/http-factory",
  3454. "version": "1.1.0",
  3455. "source": {
  3456. "type": "git",
  3457. "url": "https://github.com/php-fig/http-factory.git",
  3458. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  3459. },
  3460. "dist": {
  3461. "type": "zip",
  3462. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  3463. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  3464. "shasum": ""
  3465. },
  3466. "require": {
  3467. "php": ">=7.1",
  3468. "psr/http-message": "^1.0 || ^2.0"
  3469. },
  3470. "type": "library",
  3471. "extra": {
  3472. "branch-alias": {
  3473. "dev-master": "1.0.x-dev"
  3474. }
  3475. },
  3476. "autoload": {
  3477. "psr-4": {
  3478. "Psr\\Http\\Message\\": "src/"
  3479. }
  3480. },
  3481. "notification-url": "https://packagist.org/downloads/",
  3482. "license": [
  3483. "MIT"
  3484. ],
  3485. "authors": [
  3486. {
  3487. "name": "PHP-FIG",
  3488. "homepage": "https://www.php-fig.org/"
  3489. }
  3490. ],
  3491. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  3492. "keywords": [
  3493. "factory",
  3494. "http",
  3495. "message",
  3496. "psr",
  3497. "psr-17",
  3498. "psr-7",
  3499. "request",
  3500. "response"
  3501. ],
  3502. "support": {
  3503. "source": "https://github.com/php-fig/http-factory"
  3504. },
  3505. "time": "2024-04-15T12:06:14+00:00"
  3506. },
  3507. {
  3508. "name": "psr/http-message",
  3509. "version": "1.1",
  3510. "source": {
  3511. "type": "git",
  3512. "url": "https://github.com/php-fig/http-message.git",
  3513. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  3514. },
  3515. "dist": {
  3516. "type": "zip",
  3517. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  3518. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  3519. "shasum": ""
  3520. },
  3521. "require": {
  3522. "php": "^7.2 || ^8.0"
  3523. },
  3524. "type": "library",
  3525. "extra": {
  3526. "branch-alias": {
  3527. "dev-master": "1.1.x-dev"
  3528. }
  3529. },
  3530. "autoload": {
  3531. "psr-4": {
  3532. "Psr\\Http\\Message\\": "src/"
  3533. }
  3534. },
  3535. "notification-url": "https://packagist.org/downloads/",
  3536. "license": [
  3537. "MIT"
  3538. ],
  3539. "authors": [
  3540. {
  3541. "name": "PHP-FIG",
  3542. "homepage": "http://www.php-fig.org/"
  3543. }
  3544. ],
  3545. "description": "Common interface for HTTP messages",
  3546. "homepage": "https://github.com/php-fig/http-message",
  3547. "keywords": [
  3548. "http",
  3549. "http-message",
  3550. "psr",
  3551. "psr-7",
  3552. "request",
  3553. "response"
  3554. ],
  3555. "support": {
  3556. "source": "https://github.com/php-fig/http-message/tree/1.1"
  3557. },
  3558. "time": "2023-04-04T09:50:52+00:00"
  3559. },
  3560. {
  3561. "name": "psr/log",
  3562. "version": "1.1.4",
  3563. "source": {
  3564. "type": "git",
  3565. "url": "https://github.com/php-fig/log.git",
  3566. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  3567. },
  3568. "dist": {
  3569. "type": "zip",
  3570. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  3571. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  3572. "shasum": ""
  3573. },
  3574. "require": {
  3575. "php": ">=5.3.0"
  3576. },
  3577. "type": "library",
  3578. "extra": {
  3579. "branch-alias": {
  3580. "dev-master": "1.1.x-dev"
  3581. }
  3582. },
  3583. "autoload": {
  3584. "psr-4": {
  3585. "Psr\\Log\\": "Psr/Log/"
  3586. }
  3587. },
  3588. "notification-url": "https://packagist.org/downloads/",
  3589. "license": [
  3590. "MIT"
  3591. ],
  3592. "authors": [
  3593. {
  3594. "name": "PHP-FIG",
  3595. "homepage": "https://www.php-fig.org/"
  3596. }
  3597. ],
  3598. "description": "Common interface for logging libraries",
  3599. "homepage": "https://github.com/php-fig/log",
  3600. "keywords": [
  3601. "log",
  3602. "psr",
  3603. "psr-3"
  3604. ],
  3605. "support": {
  3606. "source": "https://github.com/php-fig/log/tree/1.1.4"
  3607. },
  3608. "time": "2021-05-03T11:20:27+00:00"
  3609. },
  3610. {
  3611. "name": "psr/simple-cache",
  3612. "version": "1.0.1",
  3613. "source": {
  3614. "type": "git",
  3615. "url": "https://github.com/php-fig/simple-cache.git",
  3616. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  3617. },
  3618. "dist": {
  3619. "type": "zip",
  3620. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3621. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3622. "shasum": ""
  3623. },
  3624. "require": {
  3625. "php": ">=5.3.0"
  3626. },
  3627. "type": "library",
  3628. "extra": {
  3629. "branch-alias": {
  3630. "dev-master": "1.0.x-dev"
  3631. }
  3632. },
  3633. "autoload": {
  3634. "psr-4": {
  3635. "Psr\\SimpleCache\\": "src/"
  3636. }
  3637. },
  3638. "notification-url": "https://packagist.org/downloads/",
  3639. "license": [
  3640. "MIT"
  3641. ],
  3642. "authors": [
  3643. {
  3644. "name": "PHP-FIG",
  3645. "homepage": "http://www.php-fig.org/"
  3646. }
  3647. ],
  3648. "description": "Common interfaces for simple caching",
  3649. "keywords": [
  3650. "cache",
  3651. "caching",
  3652. "psr",
  3653. "psr-16",
  3654. "simple-cache"
  3655. ],
  3656. "support": {
  3657. "source": "https://github.com/php-fig/simple-cache/tree/master"
  3658. },
  3659. "time": "2017-10-23T01:57:42+00:00"
  3660. },
  3661. {
  3662. "name": "qiniu/php-sdk",
  3663. "version": "v7.13.0",
  3664. "source": {
  3665. "type": "git",
  3666. "url": "https://github.com/qiniu/php-sdk.git",
  3667. "reference": "a9b6716ca6f31c9ac9d2c732a38a638caa2828d9"
  3668. },
  3669. "dist": {
  3670. "type": "zip",
  3671. "url": "https://api.github.com/repos/qiniu/php-sdk/zipball/a9b6716ca6f31c9ac9d2c732a38a638caa2828d9",
  3672. "reference": "a9b6716ca6f31c9ac9d2c732a38a638caa2828d9",
  3673. "shasum": ""
  3674. },
  3675. "require": {
  3676. "ext-curl": "*",
  3677. "ext-xml": "*",
  3678. "myclabs/php-enum": "~1.5.2 || ~1.6.6 || ~1.7.7 || ~1.8.4",
  3679. "php": ">=5.3.3"
  3680. },
  3681. "require-dev": {
  3682. "paragonie/random_compat": ">=2",
  3683. "phpunit/phpunit": "^4.8 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.3.4",
  3684. "squizlabs/php_codesniffer": "^2.3 || ~3.6"
  3685. },
  3686. "type": "library",
  3687. "autoload": {
  3688. "files": [
  3689. "src/Qiniu/functions.php",
  3690. "src/Qiniu/Http/Middleware/Middleware.php"
  3691. ],
  3692. "psr-4": {
  3693. "Qiniu\\": "src/Qiniu"
  3694. }
  3695. },
  3696. "notification-url": "https://packagist.org/downloads/",
  3697. "license": [
  3698. "MIT"
  3699. ],
  3700. "authors": [
  3701. {
  3702. "name": "Qiniu",
  3703. "email": "sdk@qiniu.com",
  3704. "homepage": "http://www.qiniu.com"
  3705. }
  3706. ],
  3707. "description": "Qiniu Resource (Cloud) Storage SDK for PHP",
  3708. "homepage": "http://developer.qiniu.com/",
  3709. "keywords": [
  3710. "cloud",
  3711. "qiniu",
  3712. "sdk",
  3713. "storage"
  3714. ],
  3715. "support": {
  3716. "issues": "https://github.com/qiniu/php-sdk/issues",
  3717. "source": "https://github.com/qiniu/php-sdk/tree/v7.13.0"
  3718. },
  3719. "time": "2024-09-20T14:00:46+00:00"
  3720. },
  3721. {
  3722. "name": "ralouphie/getallheaders",
  3723. "version": "3.0.3",
  3724. "source": {
  3725. "type": "git",
  3726. "url": "https://github.com/ralouphie/getallheaders.git",
  3727. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  3728. },
  3729. "dist": {
  3730. "type": "zip",
  3731. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  3732. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  3733. "shasum": ""
  3734. },
  3735. "require": {
  3736. "php": ">=5.6"
  3737. },
  3738. "require-dev": {
  3739. "php-coveralls/php-coveralls": "^2.1",
  3740. "phpunit/phpunit": "^5 || ^6.5"
  3741. },
  3742. "type": "library",
  3743. "autoload": {
  3744. "files": [
  3745. "src/getallheaders.php"
  3746. ]
  3747. },
  3748. "notification-url": "https://packagist.org/downloads/",
  3749. "license": [
  3750. "MIT"
  3751. ],
  3752. "authors": [
  3753. {
  3754. "name": "Ralph Khattar",
  3755. "email": "ralph.khattar@gmail.com"
  3756. }
  3757. ],
  3758. "description": "A polyfill for getallheaders.",
  3759. "support": {
  3760. "issues": "https://github.com/ralouphie/getallheaders/issues",
  3761. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  3762. },
  3763. "time": "2019-03-08T08:55:37+00:00"
  3764. },
  3765. {
  3766. "name": "riverslei/payment",
  3767. "version": "v5.1.0",
  3768. "source": {
  3769. "type": "git",
  3770. "url": "https://github.com/helei112g/payment.git",
  3771. "reference": "77f671b68b0285a6af77dc7c5afa36eabcae35aa"
  3772. },
  3773. "dist": {
  3774. "type": "zip",
  3775. "url": "https://api.github.com/repos/helei112g/payment/zipball/77f671b68b0285a6af77dc7c5afa36eabcae35aa",
  3776. "reference": "77f671b68b0285a6af77dc7c5afa36eabcae35aa",
  3777. "shasum": ""
  3778. },
  3779. "require": {
  3780. "ext-bcmath": "*",
  3781. "ext-json": "*",
  3782. "ext-mbstring": "*",
  3783. "ext-openssl": "*",
  3784. "ext-simplexml": "*",
  3785. "ext-xml": "*",
  3786. "guzzlehttp/guzzle": "~6.0",
  3787. "php": ">=7.0"
  3788. },
  3789. "require-dev": {
  3790. "codeception/codeception": "*"
  3791. },
  3792. "type": "library",
  3793. "autoload": {
  3794. "psr-4": {
  3795. "Payment\\": "src/"
  3796. }
  3797. },
  3798. "notification-url": "https://packagist.org/downloads/",
  3799. "license": [
  3800. "MIT"
  3801. ],
  3802. "authors": [
  3803. {
  3804. "name": "Leo",
  3805. "email": "dayugog@gmail.com",
  3806. "homepage": "https://dayutalk.cn"
  3807. }
  3808. ],
  3809. "description": "支付宝支付、微信支付、招商一网通支付php SDK。方便快速接入,最完整的开源支付 php sdk",
  3810. "homepage": "http://helei112g.github.io/payment",
  3811. "keywords": [
  3812. "alipay",
  3813. "weixin",
  3814. "一网通",
  3815. "微信支付",
  3816. "招商一网通",
  3817. "支付宝支付",
  3818. "集成支付接口SDK"
  3819. ],
  3820. "support": {
  3821. "issues": "https://github.com/helei112g/payment/issues",
  3822. "source": "https://github.com/helei112g/payment/tree/v5.x"
  3823. },
  3824. "time": "2020-05-04T03:07:17+00:00"
  3825. },
  3826. {
  3827. "name": "swoole/ide-helper",
  3828. "version": "4.8.13",
  3829. "source": {
  3830. "type": "git",
  3831. "url": "https://github.com/swoole/ide-helper.git",
  3832. "reference": "d100c446b2e3d56430cbcab5dc3fa20a9f35c4ef"
  3833. },
  3834. "dist": {
  3835. "type": "zip",
  3836. "url": "https://api.github.com/repos/swoole/ide-helper/zipball/d100c446b2e3d56430cbcab5dc3fa20a9f35c4ef",
  3837. "reference": "d100c446b2e3d56430cbcab5dc3fa20a9f35c4ef",
  3838. "shasum": ""
  3839. },
  3840. "type": "library",
  3841. "notification-url": "https://packagist.org/downloads/",
  3842. "license": [
  3843. "Apache-2.0"
  3844. ],
  3845. "authors": [
  3846. {
  3847. "name": "Team Swoole",
  3848. "email": "team@swoole.com"
  3849. }
  3850. ],
  3851. "description": "IDE help files for Swoole.",
  3852. "support": {
  3853. "issues": "https://github.com/swoole/ide-helper/issues",
  3854. "source": "https://github.com/swoole/ide-helper/tree/4.8.13"
  3855. },
  3856. "time": "2023-03-20T06:46:24+00:00"
  3857. },
  3858. {
  3859. "name": "symfony/deprecation-contracts",
  3860. "version": "v2.5.3",
  3861. "source": {
  3862. "type": "git",
  3863. "url": "https://github.com/symfony/deprecation-contracts.git",
  3864. "reference": "80d075412b557d41002320b96a096ca65aa2c98d"
  3865. },
  3866. "dist": {
  3867. "type": "zip",
  3868. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/80d075412b557d41002320b96a096ca65aa2c98d",
  3869. "reference": "80d075412b557d41002320b96a096ca65aa2c98d",
  3870. "shasum": ""
  3871. },
  3872. "require": {
  3873. "php": ">=7.1"
  3874. },
  3875. "type": "library",
  3876. "extra": {
  3877. "branch-alias": {
  3878. "dev-main": "2.5-dev"
  3879. },
  3880. "thanks": {
  3881. "name": "symfony/contracts",
  3882. "url": "https://github.com/symfony/contracts"
  3883. }
  3884. },
  3885. "autoload": {
  3886. "files": [
  3887. "function.php"
  3888. ]
  3889. },
  3890. "notification-url": "https://packagist.org/downloads/",
  3891. "license": [
  3892. "MIT"
  3893. ],
  3894. "authors": [
  3895. {
  3896. "name": "Nicolas Grekas",
  3897. "email": "p@tchwork.com"
  3898. },
  3899. {
  3900. "name": "Symfony Community",
  3901. "homepage": "https://symfony.com/contributors"
  3902. }
  3903. ],
  3904. "description": "A generic function and convention to trigger deprecation notices",
  3905. "homepage": "https://symfony.com",
  3906. "support": {
  3907. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.3"
  3908. },
  3909. "funding": [
  3910. {
  3911. "url": "https://symfony.com/sponsor",
  3912. "type": "custom"
  3913. },
  3914. {
  3915. "url": "https://github.com/fabpot",
  3916. "type": "github"
  3917. },
  3918. {
  3919. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3920. "type": "tidelift"
  3921. }
  3922. ],
  3923. "time": "2023-01-24T14:02:46+00:00"
  3924. },
  3925. {
  3926. "name": "symfony/finder",
  3927. "version": "v5.4.43",
  3928. "source": {
  3929. "type": "git",
  3930. "url": "https://github.com/symfony/finder.git",
  3931. "reference": "ae25a9145a900764158d439653d5630191155ca0"
  3932. },
  3933. "dist": {
  3934. "type": "zip",
  3935. "url": "https://api.github.com/repos/symfony/finder/zipball/ae25a9145a900764158d439653d5630191155ca0",
  3936. "reference": "ae25a9145a900764158d439653d5630191155ca0",
  3937. "shasum": ""
  3938. },
  3939. "require": {
  3940. "php": ">=7.2.5",
  3941. "symfony/deprecation-contracts": "^2.1|^3",
  3942. "symfony/polyfill-php80": "^1.16"
  3943. },
  3944. "type": "library",
  3945. "autoload": {
  3946. "psr-4": {
  3947. "Symfony\\Component\\Finder\\": ""
  3948. },
  3949. "exclude-from-classmap": [
  3950. "/Tests/"
  3951. ]
  3952. },
  3953. "notification-url": "https://packagist.org/downloads/",
  3954. "license": [
  3955. "MIT"
  3956. ],
  3957. "authors": [
  3958. {
  3959. "name": "Fabien Potencier",
  3960. "email": "fabien@symfony.com"
  3961. },
  3962. {
  3963. "name": "Symfony Community",
  3964. "homepage": "https://symfony.com/contributors"
  3965. }
  3966. ],
  3967. "description": "Finds files and directories via an intuitive fluent interface",
  3968. "homepage": "https://symfony.com",
  3969. "support": {
  3970. "source": "https://github.com/symfony/finder/tree/v5.4.43"
  3971. },
  3972. "funding": [
  3973. {
  3974. "url": "https://symfony.com/sponsor",
  3975. "type": "custom"
  3976. },
  3977. {
  3978. "url": "https://github.com/fabpot",
  3979. "type": "github"
  3980. },
  3981. {
  3982. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3983. "type": "tidelift"
  3984. }
  3985. ],
  3986. "time": "2024-08-13T14:03:51+00:00"
  3987. },
  3988. {
  3989. "name": "symfony/http-foundation",
  3990. "version": "v3.4.47",
  3991. "source": {
  3992. "type": "git",
  3993. "url": "https://github.com/symfony/http-foundation.git",
  3994. "reference": "b9885fcce6fe494201da4f70a9309770e9d13dc8"
  3995. },
  3996. "dist": {
  3997. "type": "zip",
  3998. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/b9885fcce6fe494201da4f70a9309770e9d13dc8",
  3999. "reference": "b9885fcce6fe494201da4f70a9309770e9d13dc8",
  4000. "shasum": ""
  4001. },
  4002. "require": {
  4003. "php": "^5.5.9|>=7.0.8",
  4004. "symfony/polyfill-mbstring": "~1.1",
  4005. "symfony/polyfill-php70": "~1.6"
  4006. },
  4007. "require-dev": {
  4008. "symfony/expression-language": "~2.8|~3.0|~4.0"
  4009. },
  4010. "type": "library",
  4011. "autoload": {
  4012. "psr-4": {
  4013. "Symfony\\Component\\HttpFoundation\\": ""
  4014. },
  4015. "exclude-from-classmap": [
  4016. "/Tests/"
  4017. ]
  4018. },
  4019. "notification-url": "https://packagist.org/downloads/",
  4020. "license": [
  4021. "MIT"
  4022. ],
  4023. "authors": [
  4024. {
  4025. "name": "Fabien Potencier",
  4026. "email": "fabien@symfony.com"
  4027. },
  4028. {
  4029. "name": "Symfony Community",
  4030. "homepage": "https://symfony.com/contributors"
  4031. }
  4032. ],
  4033. "description": "Symfony HttpFoundation Component",
  4034. "homepage": "https://symfony.com",
  4035. "support": {
  4036. "source": "https://github.com/symfony/http-foundation/tree/v3.4.47"
  4037. },
  4038. "funding": [
  4039. {
  4040. "url": "https://symfony.com/sponsor",
  4041. "type": "custom"
  4042. },
  4043. {
  4044. "url": "https://github.com/fabpot",
  4045. "type": "github"
  4046. },
  4047. {
  4048. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4049. "type": "tidelift"
  4050. }
  4051. ],
  4052. "time": "2020-10-24T10:57:07+00:00"
  4053. },
  4054. {
  4055. "name": "symfony/options-resolver",
  4056. "version": "v5.4.40",
  4057. "source": {
  4058. "type": "git",
  4059. "url": "https://github.com/symfony/options-resolver.git",
  4060. "reference": "bd1afbde6613a8d6b956115e0e14b196191fd0c4"
  4061. },
  4062. "dist": {
  4063. "type": "zip",
  4064. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/bd1afbde6613a8d6b956115e0e14b196191fd0c4",
  4065. "reference": "bd1afbde6613a8d6b956115e0e14b196191fd0c4",
  4066. "shasum": ""
  4067. },
  4068. "require": {
  4069. "php": ">=7.2.5",
  4070. "symfony/deprecation-contracts": "^2.1|^3",
  4071. "symfony/polyfill-php73": "~1.0",
  4072. "symfony/polyfill-php80": "^1.16"
  4073. },
  4074. "type": "library",
  4075. "autoload": {
  4076. "psr-4": {
  4077. "Symfony\\Component\\OptionsResolver\\": ""
  4078. },
  4079. "exclude-from-classmap": [
  4080. "/Tests/"
  4081. ]
  4082. },
  4083. "notification-url": "https://packagist.org/downloads/",
  4084. "license": [
  4085. "MIT"
  4086. ],
  4087. "authors": [
  4088. {
  4089. "name": "Fabien Potencier",
  4090. "email": "fabien@symfony.com"
  4091. },
  4092. {
  4093. "name": "Symfony Community",
  4094. "homepage": "https://symfony.com/contributors"
  4095. }
  4096. ],
  4097. "description": "Provides an improved replacement for the array_replace PHP function",
  4098. "homepage": "https://symfony.com",
  4099. "keywords": [
  4100. "config",
  4101. "configuration",
  4102. "options"
  4103. ],
  4104. "support": {
  4105. "source": "https://github.com/symfony/options-resolver/tree/v5.4.40"
  4106. },
  4107. "funding": [
  4108. {
  4109. "url": "https://symfony.com/sponsor",
  4110. "type": "custom"
  4111. },
  4112. {
  4113. "url": "https://github.com/fabpot",
  4114. "type": "github"
  4115. },
  4116. {
  4117. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4118. "type": "tidelift"
  4119. }
  4120. ],
  4121. "time": "2024-05-31T14:33:22+00:00"
  4122. },
  4123. {
  4124. "name": "symfony/polyfill-ctype",
  4125. "version": "v1.31.0",
  4126. "source": {
  4127. "type": "git",
  4128. "url": "https://github.com/symfony/polyfill-ctype.git",
  4129. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  4130. },
  4131. "dist": {
  4132. "type": "zip",
  4133. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  4134. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  4135. "shasum": ""
  4136. },
  4137. "require": {
  4138. "php": ">=7.2"
  4139. },
  4140. "provide": {
  4141. "ext-ctype": "*"
  4142. },
  4143. "suggest": {
  4144. "ext-ctype": "For best performance"
  4145. },
  4146. "type": "library",
  4147. "extra": {
  4148. "thanks": {
  4149. "name": "symfony/polyfill",
  4150. "url": "https://github.com/symfony/polyfill"
  4151. }
  4152. },
  4153. "autoload": {
  4154. "files": [
  4155. "bootstrap.php"
  4156. ],
  4157. "psr-4": {
  4158. "Symfony\\Polyfill\\Ctype\\": ""
  4159. }
  4160. },
  4161. "notification-url": "https://packagist.org/downloads/",
  4162. "license": [
  4163. "MIT"
  4164. ],
  4165. "authors": [
  4166. {
  4167. "name": "Gert de Pagter",
  4168. "email": "BackEndTea@gmail.com"
  4169. },
  4170. {
  4171. "name": "Symfony Community",
  4172. "homepage": "https://symfony.com/contributors"
  4173. }
  4174. ],
  4175. "description": "Symfony polyfill for ctype functions",
  4176. "homepage": "https://symfony.com",
  4177. "keywords": [
  4178. "compatibility",
  4179. "ctype",
  4180. "polyfill",
  4181. "portable"
  4182. ],
  4183. "support": {
  4184. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
  4185. },
  4186. "funding": [
  4187. {
  4188. "url": "https://symfony.com/sponsor",
  4189. "type": "custom"
  4190. },
  4191. {
  4192. "url": "https://github.com/fabpot",
  4193. "type": "github"
  4194. },
  4195. {
  4196. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4197. "type": "tidelift"
  4198. }
  4199. ],
  4200. "time": "2024-09-09T11:45:10+00:00"
  4201. },
  4202. {
  4203. "name": "symfony/polyfill-intl-grapheme",
  4204. "version": "v1.31.0",
  4205. "source": {
  4206. "type": "git",
  4207. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  4208. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  4209. },
  4210. "dist": {
  4211. "type": "zip",
  4212. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  4213. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  4214. "shasum": ""
  4215. },
  4216. "require": {
  4217. "php": ">=7.2"
  4218. },
  4219. "suggest": {
  4220. "ext-intl": "For best performance"
  4221. },
  4222. "type": "library",
  4223. "extra": {
  4224. "thanks": {
  4225. "name": "symfony/polyfill",
  4226. "url": "https://github.com/symfony/polyfill"
  4227. }
  4228. },
  4229. "autoload": {
  4230. "files": [
  4231. "bootstrap.php"
  4232. ],
  4233. "psr-4": {
  4234. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  4235. }
  4236. },
  4237. "notification-url": "https://packagist.org/downloads/",
  4238. "license": [
  4239. "MIT"
  4240. ],
  4241. "authors": [
  4242. {
  4243. "name": "Nicolas Grekas",
  4244. "email": "p@tchwork.com"
  4245. },
  4246. {
  4247. "name": "Symfony Community",
  4248. "homepage": "https://symfony.com/contributors"
  4249. }
  4250. ],
  4251. "description": "Symfony polyfill for intl's grapheme_* functions",
  4252. "homepage": "https://symfony.com",
  4253. "keywords": [
  4254. "compatibility",
  4255. "grapheme",
  4256. "intl",
  4257. "polyfill",
  4258. "portable",
  4259. "shim"
  4260. ],
  4261. "support": {
  4262. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  4263. },
  4264. "funding": [
  4265. {
  4266. "url": "https://symfony.com/sponsor",
  4267. "type": "custom"
  4268. },
  4269. {
  4270. "url": "https://github.com/fabpot",
  4271. "type": "github"
  4272. },
  4273. {
  4274. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4275. "type": "tidelift"
  4276. }
  4277. ],
  4278. "time": "2024-09-09T11:45:10+00:00"
  4279. },
  4280. {
  4281. "name": "symfony/polyfill-intl-idn",
  4282. "version": "v1.31.0",
  4283. "source": {
  4284. "type": "git",
  4285. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  4286. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773"
  4287. },
  4288. "dist": {
  4289. "type": "zip",
  4290. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773",
  4291. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773",
  4292. "shasum": ""
  4293. },
  4294. "require": {
  4295. "php": ">=7.2",
  4296. "symfony/polyfill-intl-normalizer": "^1.10"
  4297. },
  4298. "suggest": {
  4299. "ext-intl": "For best performance"
  4300. },
  4301. "type": "library",
  4302. "extra": {
  4303. "thanks": {
  4304. "name": "symfony/polyfill",
  4305. "url": "https://github.com/symfony/polyfill"
  4306. }
  4307. },
  4308. "autoload": {
  4309. "files": [
  4310. "bootstrap.php"
  4311. ],
  4312. "psr-4": {
  4313. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  4314. }
  4315. },
  4316. "notification-url": "https://packagist.org/downloads/",
  4317. "license": [
  4318. "MIT"
  4319. ],
  4320. "authors": [
  4321. {
  4322. "name": "Laurent Bassin",
  4323. "email": "laurent@bassin.info"
  4324. },
  4325. {
  4326. "name": "Trevor Rowbotham",
  4327. "email": "trevor.rowbotham@pm.me"
  4328. },
  4329. {
  4330. "name": "Symfony Community",
  4331. "homepage": "https://symfony.com/contributors"
  4332. }
  4333. ],
  4334. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  4335. "homepage": "https://symfony.com",
  4336. "keywords": [
  4337. "compatibility",
  4338. "idn",
  4339. "intl",
  4340. "polyfill",
  4341. "portable",
  4342. "shim"
  4343. ],
  4344. "support": {
  4345. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0"
  4346. },
  4347. "funding": [
  4348. {
  4349. "url": "https://symfony.com/sponsor",
  4350. "type": "custom"
  4351. },
  4352. {
  4353. "url": "https://github.com/fabpot",
  4354. "type": "github"
  4355. },
  4356. {
  4357. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4358. "type": "tidelift"
  4359. }
  4360. ],
  4361. "time": "2024-09-09T11:45:10+00:00"
  4362. },
  4363. {
  4364. "name": "symfony/polyfill-intl-normalizer",
  4365. "version": "v1.31.0",
  4366. "source": {
  4367. "type": "git",
  4368. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  4369. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  4370. },
  4371. "dist": {
  4372. "type": "zip",
  4373. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  4374. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  4375. "shasum": ""
  4376. },
  4377. "require": {
  4378. "php": ">=7.2"
  4379. },
  4380. "suggest": {
  4381. "ext-intl": "For best performance"
  4382. },
  4383. "type": "library",
  4384. "extra": {
  4385. "thanks": {
  4386. "name": "symfony/polyfill",
  4387. "url": "https://github.com/symfony/polyfill"
  4388. }
  4389. },
  4390. "autoload": {
  4391. "files": [
  4392. "bootstrap.php"
  4393. ],
  4394. "psr-4": {
  4395. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  4396. },
  4397. "classmap": [
  4398. "Resources/stubs"
  4399. ]
  4400. },
  4401. "notification-url": "https://packagist.org/downloads/",
  4402. "license": [
  4403. "MIT"
  4404. ],
  4405. "authors": [
  4406. {
  4407. "name": "Nicolas Grekas",
  4408. "email": "p@tchwork.com"
  4409. },
  4410. {
  4411. "name": "Symfony Community",
  4412. "homepage": "https://symfony.com/contributors"
  4413. }
  4414. ],
  4415. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  4416. "homepage": "https://symfony.com",
  4417. "keywords": [
  4418. "compatibility",
  4419. "intl",
  4420. "normalizer",
  4421. "polyfill",
  4422. "portable",
  4423. "shim"
  4424. ],
  4425. "support": {
  4426. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  4427. },
  4428. "funding": [
  4429. {
  4430. "url": "https://symfony.com/sponsor",
  4431. "type": "custom"
  4432. },
  4433. {
  4434. "url": "https://github.com/fabpot",
  4435. "type": "github"
  4436. },
  4437. {
  4438. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4439. "type": "tidelift"
  4440. }
  4441. ],
  4442. "time": "2024-09-09T11:45:10+00:00"
  4443. },
  4444. {
  4445. "name": "symfony/polyfill-mbstring",
  4446. "version": "v1.31.0",
  4447. "source": {
  4448. "type": "git",
  4449. "url": "https://github.com/symfony/polyfill-mbstring.git",
  4450. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  4451. },
  4452. "dist": {
  4453. "type": "zip",
  4454. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  4455. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  4456. "shasum": ""
  4457. },
  4458. "require": {
  4459. "php": ">=7.2"
  4460. },
  4461. "provide": {
  4462. "ext-mbstring": "*"
  4463. },
  4464. "suggest": {
  4465. "ext-mbstring": "For best performance"
  4466. },
  4467. "type": "library",
  4468. "extra": {
  4469. "thanks": {
  4470. "name": "symfony/polyfill",
  4471. "url": "https://github.com/symfony/polyfill"
  4472. }
  4473. },
  4474. "autoload": {
  4475. "files": [
  4476. "bootstrap.php"
  4477. ],
  4478. "psr-4": {
  4479. "Symfony\\Polyfill\\Mbstring\\": ""
  4480. }
  4481. },
  4482. "notification-url": "https://packagist.org/downloads/",
  4483. "license": [
  4484. "MIT"
  4485. ],
  4486. "authors": [
  4487. {
  4488. "name": "Nicolas Grekas",
  4489. "email": "p@tchwork.com"
  4490. },
  4491. {
  4492. "name": "Symfony Community",
  4493. "homepage": "https://symfony.com/contributors"
  4494. }
  4495. ],
  4496. "description": "Symfony polyfill for the Mbstring extension",
  4497. "homepage": "https://symfony.com",
  4498. "keywords": [
  4499. "compatibility",
  4500. "mbstring",
  4501. "polyfill",
  4502. "portable",
  4503. "shim"
  4504. ],
  4505. "support": {
  4506. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  4507. },
  4508. "funding": [
  4509. {
  4510. "url": "https://symfony.com/sponsor",
  4511. "type": "custom"
  4512. },
  4513. {
  4514. "url": "https://github.com/fabpot",
  4515. "type": "github"
  4516. },
  4517. {
  4518. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4519. "type": "tidelift"
  4520. }
  4521. ],
  4522. "time": "2024-09-09T11:45:10+00:00"
  4523. },
  4524. {
  4525. "name": "symfony/polyfill-php70",
  4526. "version": "v1.20.0",
  4527. "source": {
  4528. "type": "git",
  4529. "url": "https://github.com/symfony/polyfill-php70.git",
  4530. "reference": "5f03a781d984aae42cebd18e7912fa80f02ee644"
  4531. },
  4532. "dist": {
  4533. "type": "zip",
  4534. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/5f03a781d984aae42cebd18e7912fa80f02ee644",
  4535. "reference": "5f03a781d984aae42cebd18e7912fa80f02ee644",
  4536. "shasum": ""
  4537. },
  4538. "require": {
  4539. "php": ">=7.1"
  4540. },
  4541. "type": "metapackage",
  4542. "extra": {
  4543. "branch-alias": {
  4544. "dev-main": "1.20-dev"
  4545. },
  4546. "thanks": {
  4547. "name": "symfony/polyfill",
  4548. "url": "https://github.com/symfony/polyfill"
  4549. }
  4550. },
  4551. "notification-url": "https://packagist.org/downloads/",
  4552. "license": [
  4553. "MIT"
  4554. ],
  4555. "authors": [
  4556. {
  4557. "name": "Nicolas Grekas",
  4558. "email": "p@tchwork.com"
  4559. },
  4560. {
  4561. "name": "Symfony Community",
  4562. "homepage": "https://symfony.com/contributors"
  4563. }
  4564. ],
  4565. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  4566. "homepage": "https://symfony.com",
  4567. "keywords": [
  4568. "compatibility",
  4569. "polyfill",
  4570. "portable",
  4571. "shim"
  4572. ],
  4573. "support": {
  4574. "source": "https://github.com/symfony/polyfill-php70/tree/v1.20.0"
  4575. },
  4576. "funding": [
  4577. {
  4578. "url": "https://symfony.com/sponsor",
  4579. "type": "custom"
  4580. },
  4581. {
  4582. "url": "https://github.com/fabpot",
  4583. "type": "github"
  4584. },
  4585. {
  4586. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4587. "type": "tidelift"
  4588. }
  4589. ],
  4590. "time": "2020-10-23T14:02:19+00:00"
  4591. },
  4592. {
  4593. "name": "symfony/polyfill-php73",
  4594. "version": "v1.31.0",
  4595. "source": {
  4596. "type": "git",
  4597. "url": "https://github.com/symfony/polyfill-php73.git",
  4598. "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb"
  4599. },
  4600. "dist": {
  4601. "type": "zip",
  4602. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
  4603. "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
  4604. "shasum": ""
  4605. },
  4606. "require": {
  4607. "php": ">=7.2"
  4608. },
  4609. "type": "library",
  4610. "extra": {
  4611. "thanks": {
  4612. "name": "symfony/polyfill",
  4613. "url": "https://github.com/symfony/polyfill"
  4614. }
  4615. },
  4616. "autoload": {
  4617. "files": [
  4618. "bootstrap.php"
  4619. ],
  4620. "psr-4": {
  4621. "Symfony\\Polyfill\\Php73\\": ""
  4622. },
  4623. "classmap": [
  4624. "Resources/stubs"
  4625. ]
  4626. },
  4627. "notification-url": "https://packagist.org/downloads/",
  4628. "license": [
  4629. "MIT"
  4630. ],
  4631. "authors": [
  4632. {
  4633. "name": "Nicolas Grekas",
  4634. "email": "p@tchwork.com"
  4635. },
  4636. {
  4637. "name": "Symfony Community",
  4638. "homepage": "https://symfony.com/contributors"
  4639. }
  4640. ],
  4641. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  4642. "homepage": "https://symfony.com",
  4643. "keywords": [
  4644. "compatibility",
  4645. "polyfill",
  4646. "portable",
  4647. "shim"
  4648. ],
  4649. "support": {
  4650. "source": "https://github.com/symfony/polyfill-php73/tree/v1.31.0"
  4651. },
  4652. "funding": [
  4653. {
  4654. "url": "https://symfony.com/sponsor",
  4655. "type": "custom"
  4656. },
  4657. {
  4658. "url": "https://github.com/fabpot",
  4659. "type": "github"
  4660. },
  4661. {
  4662. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4663. "type": "tidelift"
  4664. }
  4665. ],
  4666. "time": "2024-09-09T11:45:10+00:00"
  4667. },
  4668. {
  4669. "name": "symfony/polyfill-php80",
  4670. "version": "v1.31.0",
  4671. "source": {
  4672. "type": "git",
  4673. "url": "https://github.com/symfony/polyfill-php80.git",
  4674. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  4675. },
  4676. "dist": {
  4677. "type": "zip",
  4678. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  4679. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  4680. "shasum": ""
  4681. },
  4682. "require": {
  4683. "php": ">=7.2"
  4684. },
  4685. "type": "library",
  4686. "extra": {
  4687. "thanks": {
  4688. "name": "symfony/polyfill",
  4689. "url": "https://github.com/symfony/polyfill"
  4690. }
  4691. },
  4692. "autoload": {
  4693. "files": [
  4694. "bootstrap.php"
  4695. ],
  4696. "psr-4": {
  4697. "Symfony\\Polyfill\\Php80\\": ""
  4698. },
  4699. "classmap": [
  4700. "Resources/stubs"
  4701. ]
  4702. },
  4703. "notification-url": "https://packagist.org/downloads/",
  4704. "license": [
  4705. "MIT"
  4706. ],
  4707. "authors": [
  4708. {
  4709. "name": "Ion Bazan",
  4710. "email": "ion.bazan@gmail.com"
  4711. },
  4712. {
  4713. "name": "Nicolas Grekas",
  4714. "email": "p@tchwork.com"
  4715. },
  4716. {
  4717. "name": "Symfony Community",
  4718. "homepage": "https://symfony.com/contributors"
  4719. }
  4720. ],
  4721. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  4722. "homepage": "https://symfony.com",
  4723. "keywords": [
  4724. "compatibility",
  4725. "polyfill",
  4726. "portable",
  4727. "shim"
  4728. ],
  4729. "support": {
  4730. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  4731. },
  4732. "funding": [
  4733. {
  4734. "url": "https://symfony.com/sponsor",
  4735. "type": "custom"
  4736. },
  4737. {
  4738. "url": "https://github.com/fabpot",
  4739. "type": "github"
  4740. },
  4741. {
  4742. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4743. "type": "tidelift"
  4744. }
  4745. ],
  4746. "time": "2024-09-09T11:45:10+00:00"
  4747. },
  4748. {
  4749. "name": "symfony/process",
  4750. "version": "v5.4.44",
  4751. "source": {
  4752. "type": "git",
  4753. "url": "https://github.com/symfony/process.git",
  4754. "reference": "1b9fa82b5c62cd49da8c9e3952dd8531ada65096"
  4755. },
  4756. "dist": {
  4757. "type": "zip",
  4758. "url": "https://api.github.com/repos/symfony/process/zipball/1b9fa82b5c62cd49da8c9e3952dd8531ada65096",
  4759. "reference": "1b9fa82b5c62cd49da8c9e3952dd8531ada65096",
  4760. "shasum": ""
  4761. },
  4762. "require": {
  4763. "php": ">=7.2.5",
  4764. "symfony/polyfill-php80": "^1.16"
  4765. },
  4766. "type": "library",
  4767. "autoload": {
  4768. "psr-4": {
  4769. "Symfony\\Component\\Process\\": ""
  4770. },
  4771. "exclude-from-classmap": [
  4772. "/Tests/"
  4773. ]
  4774. },
  4775. "notification-url": "https://packagist.org/downloads/",
  4776. "license": [
  4777. "MIT"
  4778. ],
  4779. "authors": [
  4780. {
  4781. "name": "Fabien Potencier",
  4782. "email": "fabien@symfony.com"
  4783. },
  4784. {
  4785. "name": "Symfony Community",
  4786. "homepage": "https://symfony.com/contributors"
  4787. }
  4788. ],
  4789. "description": "Executes commands in sub-processes",
  4790. "homepage": "https://symfony.com",
  4791. "support": {
  4792. "source": "https://github.com/symfony/process/tree/v5.4.44"
  4793. },
  4794. "funding": [
  4795. {
  4796. "url": "https://symfony.com/sponsor",
  4797. "type": "custom"
  4798. },
  4799. {
  4800. "url": "https://github.com/fabpot",
  4801. "type": "github"
  4802. },
  4803. {
  4804. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4805. "type": "tidelift"
  4806. }
  4807. ],
  4808. "time": "2024-09-17T12:46:43+00:00"
  4809. },
  4810. {
  4811. "name": "symfony/property-access",
  4812. "version": "v5.4.43",
  4813. "source": {
  4814. "type": "git",
  4815. "url": "https://github.com/symfony/property-access.git",
  4816. "reference": "2d751866b976a02e22743359733edc55cd20e9fd"
  4817. },
  4818. "dist": {
  4819. "type": "zip",
  4820. "url": "https://api.github.com/repos/symfony/property-access/zipball/2d751866b976a02e22743359733edc55cd20e9fd",
  4821. "reference": "2d751866b976a02e22743359733edc55cd20e9fd",
  4822. "shasum": ""
  4823. },
  4824. "require": {
  4825. "php": ">=7.2.5",
  4826. "symfony/deprecation-contracts": "^2.1|^3",
  4827. "symfony/polyfill-php80": "^1.16",
  4828. "symfony/property-info": "^5.2|^6.0"
  4829. },
  4830. "require-dev": {
  4831. "symfony/cache": "^4.4|^5.0|^6.0"
  4832. },
  4833. "suggest": {
  4834. "psr/cache-implementation": "To cache access methods."
  4835. },
  4836. "type": "library",
  4837. "autoload": {
  4838. "psr-4": {
  4839. "Symfony\\Component\\PropertyAccess\\": ""
  4840. },
  4841. "exclude-from-classmap": [
  4842. "/Tests/"
  4843. ]
  4844. },
  4845. "notification-url": "https://packagist.org/downloads/",
  4846. "license": [
  4847. "MIT"
  4848. ],
  4849. "authors": [
  4850. {
  4851. "name": "Fabien Potencier",
  4852. "email": "fabien@symfony.com"
  4853. },
  4854. {
  4855. "name": "Symfony Community",
  4856. "homepage": "https://symfony.com/contributors"
  4857. }
  4858. ],
  4859. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  4860. "homepage": "https://symfony.com",
  4861. "keywords": [
  4862. "access",
  4863. "array",
  4864. "extraction",
  4865. "index",
  4866. "injection",
  4867. "object",
  4868. "property",
  4869. "property-path",
  4870. "reflection"
  4871. ],
  4872. "support": {
  4873. "source": "https://github.com/symfony/property-access/tree/v5.4.43"
  4874. },
  4875. "funding": [
  4876. {
  4877. "url": "https://symfony.com/sponsor",
  4878. "type": "custom"
  4879. },
  4880. {
  4881. "url": "https://github.com/fabpot",
  4882. "type": "github"
  4883. },
  4884. {
  4885. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4886. "type": "tidelift"
  4887. }
  4888. ],
  4889. "time": "2024-08-29T08:50:14+00:00"
  4890. },
  4891. {
  4892. "name": "symfony/property-info",
  4893. "version": "v5.4.42",
  4894. "source": {
  4895. "type": "git",
  4896. "url": "https://github.com/symfony/property-info.git",
  4897. "reference": "825aa937f6e8cd63dcc118d0af84d7d4979cddf4"
  4898. },
  4899. "dist": {
  4900. "type": "zip",
  4901. "url": "https://api.github.com/repos/symfony/property-info/zipball/825aa937f6e8cd63dcc118d0af84d7d4979cddf4",
  4902. "reference": "825aa937f6e8cd63dcc118d0af84d7d4979cddf4",
  4903. "shasum": ""
  4904. },
  4905. "require": {
  4906. "php": ">=7.2.5",
  4907. "symfony/deprecation-contracts": "^2.1|^3",
  4908. "symfony/polyfill-php80": "^1.16",
  4909. "symfony/string": "^5.1|^6.0"
  4910. },
  4911. "conflict": {
  4912. "phpdocumentor/reflection-docblock": "<3.2.2",
  4913. "phpdocumentor/type-resolver": "<1.4.0",
  4914. "symfony/dependency-injection": "<4.4"
  4915. },
  4916. "require-dev": {
  4917. "doctrine/annotations": "^1.10.4|^2",
  4918. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  4919. "phpstan/phpdoc-parser": "^1.0",
  4920. "symfony/cache": "^4.4|^5.0|^6.0",
  4921. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  4922. "symfony/serializer": "^4.4|^5.0|^6.0"
  4923. },
  4924. "suggest": {
  4925. "phpdocumentor/reflection-docblock": "To use the PHPDoc",
  4926. "psr/cache-implementation": "To cache results",
  4927. "symfony/doctrine-bridge": "To use Doctrine metadata",
  4928. "symfony/serializer": "To use Serializer metadata"
  4929. },
  4930. "type": "library",
  4931. "autoload": {
  4932. "psr-4": {
  4933. "Symfony\\Component\\PropertyInfo\\": ""
  4934. },
  4935. "exclude-from-classmap": [
  4936. "/Tests/"
  4937. ]
  4938. },
  4939. "notification-url": "https://packagist.org/downloads/",
  4940. "license": [
  4941. "MIT"
  4942. ],
  4943. "authors": [
  4944. {
  4945. "name": "Kévin Dunglas",
  4946. "email": "dunglas@gmail.com"
  4947. },
  4948. {
  4949. "name": "Symfony Community",
  4950. "homepage": "https://symfony.com/contributors"
  4951. }
  4952. ],
  4953. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  4954. "homepage": "https://symfony.com",
  4955. "keywords": [
  4956. "doctrine",
  4957. "phpdoc",
  4958. "property",
  4959. "symfony",
  4960. "type",
  4961. "validator"
  4962. ],
  4963. "support": {
  4964. "source": "https://github.com/symfony/property-info/tree/v5.4.42"
  4965. },
  4966. "funding": [
  4967. {
  4968. "url": "https://symfony.com/sponsor",
  4969. "type": "custom"
  4970. },
  4971. {
  4972. "url": "https://github.com/fabpot",
  4973. "type": "github"
  4974. },
  4975. {
  4976. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4977. "type": "tidelift"
  4978. }
  4979. ],
  4980. "time": "2024-07-22T18:03:36+00:00"
  4981. },
  4982. {
  4983. "name": "symfony/psr-http-message-bridge",
  4984. "version": "v1.2.0",
  4985. "source": {
  4986. "type": "git",
  4987. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  4988. "reference": "9ab9d71f97d5c7d35a121a7fb69f74fee95cd0ad"
  4989. },
  4990. "dist": {
  4991. "type": "zip",
  4992. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/9ab9d71f97d5c7d35a121a7fb69f74fee95cd0ad",
  4993. "reference": "9ab9d71f97d5c7d35a121a7fb69f74fee95cd0ad",
  4994. "shasum": ""
  4995. },
  4996. "require": {
  4997. "php": "^7.1",
  4998. "psr/http-message": "^1.0",
  4999. "symfony/http-foundation": "^3.4 || ^4.0"
  5000. },
  5001. "require-dev": {
  5002. "nyholm/psr7": "^1.1",
  5003. "symfony/phpunit-bridge": "^3.4.20 || ^4.0",
  5004. "zendframework/zend-diactoros": "^1.4.1 || ^2.0"
  5005. },
  5006. "suggest": {
  5007. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  5008. },
  5009. "type": "symfony-bridge",
  5010. "extra": {
  5011. "branch-alias": {
  5012. "dev-master": "1.2-dev"
  5013. }
  5014. },
  5015. "autoload": {
  5016. "psr-4": {
  5017. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  5018. },
  5019. "exclude-from-classmap": [
  5020. "/Tests/"
  5021. ]
  5022. },
  5023. "notification-url": "https://packagist.org/downloads/",
  5024. "license": [
  5025. "MIT"
  5026. ],
  5027. "authors": [
  5028. {
  5029. "name": "Symfony Community",
  5030. "homepage": "http://symfony.com/contributors"
  5031. },
  5032. {
  5033. "name": "Fabien Potencier",
  5034. "email": "fabien@symfony.com"
  5035. }
  5036. ],
  5037. "description": "PSR HTTP message bridge",
  5038. "homepage": "http://symfony.com",
  5039. "keywords": [
  5040. "http",
  5041. "http-message",
  5042. "psr-17",
  5043. "psr-7"
  5044. ],
  5045. "support": {
  5046. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  5047. "source": "https://github.com/symfony/psr-http-message-bridge/tree/master"
  5048. },
  5049. "time": "2019-03-11T18:22:33+00:00"
  5050. },
  5051. {
  5052. "name": "symfony/string",
  5053. "version": "v5.4.44",
  5054. "source": {
  5055. "type": "git",
  5056. "url": "https://github.com/symfony/string.git",
  5057. "reference": "832caa16b6d9aac6bf11747315225f5aba384c24"
  5058. },
  5059. "dist": {
  5060. "type": "zip",
  5061. "url": "https://api.github.com/repos/symfony/string/zipball/832caa16b6d9aac6bf11747315225f5aba384c24",
  5062. "reference": "832caa16b6d9aac6bf11747315225f5aba384c24",
  5063. "shasum": ""
  5064. },
  5065. "require": {
  5066. "php": ">=7.2.5",
  5067. "symfony/polyfill-ctype": "~1.8",
  5068. "symfony/polyfill-intl-grapheme": "~1.0",
  5069. "symfony/polyfill-intl-normalizer": "~1.0",
  5070. "symfony/polyfill-mbstring": "~1.0",
  5071. "symfony/polyfill-php80": "~1.15"
  5072. },
  5073. "conflict": {
  5074. "symfony/translation-contracts": ">=3.0"
  5075. },
  5076. "require-dev": {
  5077. "symfony/error-handler": "^4.4|^5.0|^6.0",
  5078. "symfony/http-client": "^4.4|^5.0|^6.0",
  5079. "symfony/translation-contracts": "^1.1|^2",
  5080. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  5081. },
  5082. "type": "library",
  5083. "autoload": {
  5084. "files": [
  5085. "Resources/functions.php"
  5086. ],
  5087. "psr-4": {
  5088. "Symfony\\Component\\String\\": ""
  5089. },
  5090. "exclude-from-classmap": [
  5091. "/Tests/"
  5092. ]
  5093. },
  5094. "notification-url": "https://packagist.org/downloads/",
  5095. "license": [
  5096. "MIT"
  5097. ],
  5098. "authors": [
  5099. {
  5100. "name": "Nicolas Grekas",
  5101. "email": "p@tchwork.com"
  5102. },
  5103. {
  5104. "name": "Symfony Community",
  5105. "homepage": "https://symfony.com/contributors"
  5106. }
  5107. ],
  5108. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  5109. "homepage": "https://symfony.com",
  5110. "keywords": [
  5111. "grapheme",
  5112. "i18n",
  5113. "string",
  5114. "unicode",
  5115. "utf-8",
  5116. "utf8"
  5117. ],
  5118. "support": {
  5119. "source": "https://github.com/symfony/string/tree/v5.4.44"
  5120. },
  5121. "funding": [
  5122. {
  5123. "url": "https://symfony.com/sponsor",
  5124. "type": "custom"
  5125. },
  5126. {
  5127. "url": "https://github.com/fabpot",
  5128. "type": "github"
  5129. },
  5130. {
  5131. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5132. "type": "tidelift"
  5133. }
  5134. ],
  5135. "time": "2024-09-20T07:56:40+00:00"
  5136. },
  5137. {
  5138. "name": "symfony/translation",
  5139. "version": "v5.4.44",
  5140. "source": {
  5141. "type": "git",
  5142. "url": "https://github.com/symfony/translation.git",
  5143. "reference": "6fed3a20b5b87ee9cdd9dacf545922b8fd475921"
  5144. },
  5145. "dist": {
  5146. "type": "zip",
  5147. "url": "https://api.github.com/repos/symfony/translation/zipball/6fed3a20b5b87ee9cdd9dacf545922b8fd475921",
  5148. "reference": "6fed3a20b5b87ee9cdd9dacf545922b8fd475921",
  5149. "shasum": ""
  5150. },
  5151. "require": {
  5152. "php": ">=7.2.5",
  5153. "symfony/deprecation-contracts": "^2.1|^3",
  5154. "symfony/polyfill-mbstring": "~1.0",
  5155. "symfony/polyfill-php80": "^1.16",
  5156. "symfony/translation-contracts": "^2.3"
  5157. },
  5158. "conflict": {
  5159. "symfony/config": "<4.4",
  5160. "symfony/console": "<5.3",
  5161. "symfony/dependency-injection": "<5.0",
  5162. "symfony/http-kernel": "<5.0",
  5163. "symfony/twig-bundle": "<5.0",
  5164. "symfony/yaml": "<4.4"
  5165. },
  5166. "provide": {
  5167. "symfony/translation-implementation": "2.3"
  5168. },
  5169. "require-dev": {
  5170. "psr/log": "^1|^2|^3",
  5171. "symfony/config": "^4.4|^5.0|^6.0",
  5172. "symfony/console": "^5.4|^6.0",
  5173. "symfony/dependency-injection": "^5.0|^6.0",
  5174. "symfony/finder": "^4.4|^5.0|^6.0",
  5175. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  5176. "symfony/http-kernel": "^5.0|^6.0",
  5177. "symfony/intl": "^4.4|^5.0|^6.0",
  5178. "symfony/polyfill-intl-icu": "^1.21",
  5179. "symfony/service-contracts": "^1.1.2|^2|^3",
  5180. "symfony/yaml": "^4.4|^5.0|^6.0"
  5181. },
  5182. "suggest": {
  5183. "psr/log-implementation": "To use logging capability in translator",
  5184. "symfony/config": "",
  5185. "symfony/yaml": ""
  5186. },
  5187. "type": "library",
  5188. "autoload": {
  5189. "files": [
  5190. "Resources/functions.php"
  5191. ],
  5192. "psr-4": {
  5193. "Symfony\\Component\\Translation\\": ""
  5194. },
  5195. "exclude-from-classmap": [
  5196. "/Tests/"
  5197. ]
  5198. },
  5199. "notification-url": "https://packagist.org/downloads/",
  5200. "license": [
  5201. "MIT"
  5202. ],
  5203. "authors": [
  5204. {
  5205. "name": "Fabien Potencier",
  5206. "email": "fabien@symfony.com"
  5207. },
  5208. {
  5209. "name": "Symfony Community",
  5210. "homepage": "https://symfony.com/contributors"
  5211. }
  5212. ],
  5213. "description": "Provides tools to internationalize your application",
  5214. "homepage": "https://symfony.com",
  5215. "support": {
  5216. "source": "https://github.com/symfony/translation/tree/v5.4.44"
  5217. },
  5218. "funding": [
  5219. {
  5220. "url": "https://symfony.com/sponsor",
  5221. "type": "custom"
  5222. },
  5223. {
  5224. "url": "https://github.com/fabpot",
  5225. "type": "github"
  5226. },
  5227. {
  5228. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5229. "type": "tidelift"
  5230. }
  5231. ],
  5232. "time": "2024-09-15T08:12:35+00:00"
  5233. },
  5234. {
  5235. "name": "symfony/translation-contracts",
  5236. "version": "v2.5.3",
  5237. "source": {
  5238. "type": "git",
  5239. "url": "https://github.com/symfony/translation-contracts.git",
  5240. "reference": "b0073a77ac0b7ea55131020e87b1e3af540f4664"
  5241. },
  5242. "dist": {
  5243. "type": "zip",
  5244. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b0073a77ac0b7ea55131020e87b1e3af540f4664",
  5245. "reference": "b0073a77ac0b7ea55131020e87b1e3af540f4664",
  5246. "shasum": ""
  5247. },
  5248. "require": {
  5249. "php": ">=7.2.5"
  5250. },
  5251. "suggest": {
  5252. "symfony/translation-implementation": ""
  5253. },
  5254. "type": "library",
  5255. "extra": {
  5256. "branch-alias": {
  5257. "dev-main": "2.5-dev"
  5258. },
  5259. "thanks": {
  5260. "name": "symfony/contracts",
  5261. "url": "https://github.com/symfony/contracts"
  5262. }
  5263. },
  5264. "autoload": {
  5265. "psr-4": {
  5266. "Symfony\\Contracts\\Translation\\": ""
  5267. }
  5268. },
  5269. "notification-url": "https://packagist.org/downloads/",
  5270. "license": [
  5271. "MIT"
  5272. ],
  5273. "authors": [
  5274. {
  5275. "name": "Nicolas Grekas",
  5276. "email": "p@tchwork.com"
  5277. },
  5278. {
  5279. "name": "Symfony Community",
  5280. "homepage": "https://symfony.com/contributors"
  5281. }
  5282. ],
  5283. "description": "Generic abstractions related to translation",
  5284. "homepage": "https://symfony.com",
  5285. "keywords": [
  5286. "abstractions",
  5287. "contracts",
  5288. "decoupling",
  5289. "interfaces",
  5290. "interoperability",
  5291. "standards"
  5292. ],
  5293. "support": {
  5294. "source": "https://github.com/symfony/translation-contracts/tree/v2.5.3"
  5295. },
  5296. "funding": [
  5297. {
  5298. "url": "https://symfony.com/sponsor",
  5299. "type": "custom"
  5300. },
  5301. {
  5302. "url": "https://github.com/fabpot",
  5303. "type": "github"
  5304. },
  5305. {
  5306. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5307. "type": "tidelift"
  5308. }
  5309. ],
  5310. "time": "2024-01-23T13:51:25+00:00"
  5311. },
  5312. {
  5313. "name": "topthink/framework",
  5314. "version": "v6.0.7",
  5315. "source": {
  5316. "type": "git",
  5317. "url": "https://github.com/top-think/framework.git",
  5318. "reference": "db8fe22520a9660dd5e4c87e304034ac49e39270"
  5319. },
  5320. "dist": {
  5321. "type": "zip",
  5322. "url": "https://api.github.com/repos/top-think/framework/zipball/db8fe22520a9660dd5e4c87e304034ac49e39270",
  5323. "reference": "db8fe22520a9660dd5e4c87e304034ac49e39270",
  5324. "shasum": ""
  5325. },
  5326. "require": {
  5327. "ext-json": "*",
  5328. "ext-mbstring": "*",
  5329. "league/flysystem": "^1.0",
  5330. "league/flysystem-cached-adapter": "^1.0",
  5331. "php": ">=7.1.0",
  5332. "psr/container": "~1.0",
  5333. "psr/log": "~1.0",
  5334. "psr/simple-cache": "^1.0",
  5335. "topthink/think-helper": "^3.1.1",
  5336. "topthink/think-orm": "^2.0"
  5337. },
  5338. "require-dev": {
  5339. "mikey179/vfsstream": "^1.6",
  5340. "mockery/mockery": "^1.2",
  5341. "phpunit/phpunit": "^7.0"
  5342. },
  5343. "type": "library",
  5344. "autoload": {
  5345. "files": [],
  5346. "psr-4": {
  5347. "think\\": "src/think/"
  5348. }
  5349. },
  5350. "notification-url": "https://packagist.org/downloads/",
  5351. "license": [
  5352. "Apache-2.0"
  5353. ],
  5354. "authors": [
  5355. {
  5356. "name": "liu21st",
  5357. "email": "liu21st@gmail.com"
  5358. },
  5359. {
  5360. "name": "yunwuxin",
  5361. "email": "448901948@qq.com"
  5362. }
  5363. ],
  5364. "description": "The ThinkPHP Framework.",
  5365. "homepage": "http://thinkphp.cn/",
  5366. "keywords": [
  5367. "framework",
  5368. "orm",
  5369. "thinkphp"
  5370. ],
  5371. "support": {
  5372. "issues": "https://github.com/top-think/framework/issues",
  5373. "source": "https://github.com/top-think/framework/tree/v6.0.7"
  5374. },
  5375. "time": "2021-01-25T14:48:29+00:00"
  5376. },
  5377. {
  5378. "name": "topthink/think-helper",
  5379. "version": "v3.1.8",
  5380. "source": {
  5381. "type": "git",
  5382. "url": "https://github.com/top-think/think-helper.git",
  5383. "reference": "612eea76eec2a22f41b0e24be27f49454e4fd5f5"
  5384. },
  5385. "dist": {
  5386. "type": "zip",
  5387. "url": "https://api.github.com/repos/top-think/think-helper/zipball/612eea76eec2a22f41b0e24be27f49454e4fd5f5",
  5388. "reference": "612eea76eec2a22f41b0e24be27f49454e4fd5f5",
  5389. "shasum": ""
  5390. },
  5391. "require": {
  5392. "php": ">=7.1.0"
  5393. },
  5394. "require-dev": {
  5395. "phpunit/phpunit": "^9.5"
  5396. },
  5397. "type": "library",
  5398. "autoload": {
  5399. "files": [
  5400. "src/helper.php"
  5401. ],
  5402. "psr-4": {
  5403. "think\\": "src"
  5404. }
  5405. },
  5406. "notification-url": "https://packagist.org/downloads/",
  5407. "license": [
  5408. "Apache-2.0"
  5409. ],
  5410. "authors": [
  5411. {
  5412. "name": "yunwuxin",
  5413. "email": "448901948@qq.com"
  5414. }
  5415. ],
  5416. "description": "The ThinkPHP6 Helper Package",
  5417. "support": {
  5418. "issues": "https://github.com/top-think/think-helper/issues",
  5419. "source": "https://github.com/top-think/think-helper/tree/v3.1.8"
  5420. },
  5421. "time": "2024-08-26T15:07:58+00:00"
  5422. },
  5423. {
  5424. "name": "topthink/think-image",
  5425. "version": "v1.0.8",
  5426. "source": {
  5427. "type": "git",
  5428. "url": "https://github.com/top-think/think-image.git",
  5429. "reference": "d1d748cbb2fe2f29fca6138cf96cb8b5113892f1"
  5430. },
  5431. "dist": {
  5432. "type": "zip",
  5433. "url": "https://api.github.com/repos/top-think/think-image/zipball/d1d748cbb2fe2f29fca6138cf96cb8b5113892f1",
  5434. "reference": "d1d748cbb2fe2f29fca6138cf96cb8b5113892f1",
  5435. "shasum": ""
  5436. },
  5437. "require": {
  5438. "ext-gd": "*"
  5439. },
  5440. "require-dev": {
  5441. "phpunit/phpunit": "4.8.*",
  5442. "topthink/framework": "^5.0"
  5443. },
  5444. "type": "library",
  5445. "autoload": {
  5446. "psr-4": {
  5447. "think\\": "src"
  5448. }
  5449. },
  5450. "notification-url": "https://packagist.org/downloads/",
  5451. "license": [
  5452. "Apache-2.0"
  5453. ],
  5454. "authors": [
  5455. {
  5456. "name": "yunwuxin",
  5457. "email": "448901948@qq.com"
  5458. }
  5459. ],
  5460. "description": "The ThinkPHP5 Image Package",
  5461. "support": {
  5462. "issues": "https://github.com/top-think/think-image/issues",
  5463. "source": "https://github.com/top-think/think-image/tree/v1.0.8"
  5464. },
  5465. "time": "2024-08-07T10:06:35+00:00"
  5466. },
  5467. {
  5468. "name": "topthink/think-orm",
  5469. "version": "v2.0.61",
  5470. "source": {
  5471. "type": "git",
  5472. "url": "https://github.com/top-think/think-orm.git",
  5473. "reference": "10528ebf4a5106b19c3bac9c6deae7a67ff49de6"
  5474. },
  5475. "dist": {
  5476. "type": "zip",
  5477. "url": "https://api.github.com/repos/top-think/think-orm/zipball/10528ebf4a5106b19c3bac9c6deae7a67ff49de6",
  5478. "reference": "10528ebf4a5106b19c3bac9c6deae7a67ff49de6",
  5479. "shasum": ""
  5480. },
  5481. "require": {
  5482. "ext-json": "*",
  5483. "ext-pdo": "*",
  5484. "php": ">=7.1.0",
  5485. "psr/log": "^1.0|^2.0",
  5486. "psr/simple-cache": "^1.0|^2.0",
  5487. "topthink/think-helper": "^3.1"
  5488. },
  5489. "require-dev": {
  5490. "phpunit/phpunit": "^7|^8|^9.5"
  5491. },
  5492. "type": "library",
  5493. "autoload": {
  5494. "files": [
  5495. "stubs/load_stubs.php"
  5496. ],
  5497. "psr-4": {
  5498. "think\\": "src"
  5499. }
  5500. },
  5501. "notification-url": "https://packagist.org/downloads/",
  5502. "license": [
  5503. "Apache-2.0"
  5504. ],
  5505. "authors": [
  5506. {
  5507. "name": "liu21st",
  5508. "email": "liu21st@gmail.com"
  5509. }
  5510. ],
  5511. "description": "think orm",
  5512. "keywords": [
  5513. "database",
  5514. "orm"
  5515. ],
  5516. "support": {
  5517. "issues": "https://github.com/top-think/think-orm/issues",
  5518. "source": "https://github.com/top-think/think-orm/tree/v2.0.61"
  5519. },
  5520. "time": "2023-04-20T14:27:51+00:00"
  5521. },
  5522. {
  5523. "name": "topthink/think-queue",
  5524. "version": "v3.0.9",
  5525. "source": {
  5526. "type": "git",
  5527. "url": "https://github.com/top-think/think-queue.git",
  5528. "reference": "654812b47dd7c708c4443deed27f212f8382e8da"
  5529. },
  5530. "dist": {
  5531. "type": "zip",
  5532. "url": "https://api.github.com/repos/top-think/think-queue/zipball/654812b47dd7c708c4443deed27f212f8382e8da",
  5533. "reference": "654812b47dd7c708c4443deed27f212f8382e8da",
  5534. "shasum": ""
  5535. },
  5536. "require": {
  5537. "ext-json": "*",
  5538. "nesbot/carbon": "^2.16",
  5539. "symfony/process": ">=4.2",
  5540. "topthink/framework": "^6.0 || ^8.0"
  5541. },
  5542. "require-dev": {
  5543. "mockery/mockery": "^1.2",
  5544. "phpunit/phpunit": "^6.2",
  5545. "topthink/think-migration": "^3.0"
  5546. },
  5547. "type": "library",
  5548. "extra": {
  5549. "think": {
  5550. "services": [
  5551. "think\\queue\\Service"
  5552. ],
  5553. "config": {
  5554. "queue": "src/config.php"
  5555. }
  5556. }
  5557. },
  5558. "autoload": {
  5559. "files": [
  5560. "src/common.php"
  5561. ],
  5562. "psr-4": {
  5563. "think\\": "src"
  5564. }
  5565. },
  5566. "notification-url": "https://packagist.org/downloads/",
  5567. "license": [
  5568. "Apache-2.0"
  5569. ],
  5570. "authors": [
  5571. {
  5572. "name": "yunwuxin",
  5573. "email": "448901948@qq.com"
  5574. }
  5575. ],
  5576. "description": "The ThinkPHP6 Queue Package",
  5577. "support": {
  5578. "issues": "https://github.com/top-think/think-queue/issues",
  5579. "source": "https://github.com/top-think/think-queue/tree/v3.0.9"
  5580. },
  5581. "time": "2023-07-03T05:42:01+00:00"
  5582. },
  5583. {
  5584. "name": "topthink/think-swoole",
  5585. "version": "v3.1.2",
  5586. "source": {
  5587. "type": "git",
  5588. "url": "https://github.com/top-think/think-swoole.git",
  5589. "reference": "eb7f78b7eb53dde79257f4254fe61f9514f3c7d8"
  5590. },
  5591. "dist": {
  5592. "type": "zip",
  5593. "url": "https://api.github.com/repos/top-think/think-swoole/zipball/eb7f78b7eb53dde79257f4254fe61f9514f3c7d8",
  5594. "reference": "eb7f78b7eb53dde79257f4254fe61f9514f3c7d8",
  5595. "shasum": ""
  5596. },
  5597. "require": {
  5598. "ext-json": "*",
  5599. "ext-swoole": ">=4.4.8",
  5600. "nette/php-generator": "^3.2",
  5601. "open-smf/connection-pool": "~1.0",
  5602. "php": ">7.1",
  5603. "swoole/ide-helper": "^4.3",
  5604. "symfony/finder": "^4.3.2|^5.1",
  5605. "topthink/framework": "^6.0"
  5606. },
  5607. "require-dev": {
  5608. "symfony/var-dumper": "^4.3|^5.1",
  5609. "topthink/think-tracing": "^1.0"
  5610. },
  5611. "type": "library",
  5612. "extra": {
  5613. "think": {
  5614. "services": [
  5615. "think\\swoole\\Service"
  5616. ],
  5617. "config": {
  5618. "swoole": "src/config/swoole.php"
  5619. }
  5620. }
  5621. },
  5622. "autoload": {
  5623. "files": [
  5624. "src/helpers.php"
  5625. ],
  5626. "psr-4": {
  5627. "think\\swoole\\": "src"
  5628. }
  5629. },
  5630. "notification-url": "https://packagist.org/downloads/",
  5631. "license": [
  5632. "Apache-2.0"
  5633. ],
  5634. "authors": [
  5635. {
  5636. "name": "liu21st",
  5637. "email": "liu21st@gmail.com"
  5638. }
  5639. ],
  5640. "description": "Swoole extend for thinkphp",
  5641. "support": {
  5642. "issues": "https://github.com/top-think/think-swoole/issues",
  5643. "source": "https://github.com/top-think/think-swoole/tree/v3.1.2"
  5644. },
  5645. "time": "2021-02-02T07:26:09+00:00"
  5646. },
  5647. {
  5648. "name": "topthink/think-trace",
  5649. "version": "v1.6",
  5650. "source": {
  5651. "type": "git",
  5652. "url": "https://github.com/top-think/think-trace.git",
  5653. "reference": "136cd5d97e8bdb780e4b5c1637c588ed7ca3e142"
  5654. },
  5655. "dist": {
  5656. "type": "zip",
  5657. "url": "https://api.github.com/repos/top-think/think-trace/zipball/136cd5d97e8bdb780e4b5c1637c588ed7ca3e142",
  5658. "reference": "136cd5d97e8bdb780e4b5c1637c588ed7ca3e142",
  5659. "shasum": ""
  5660. },
  5661. "require": {
  5662. "php": ">=7.1.0",
  5663. "topthink/framework": "^6.0|^8.0"
  5664. },
  5665. "type": "library",
  5666. "extra": {
  5667. "think": {
  5668. "services": [
  5669. "think\\trace\\Service"
  5670. ],
  5671. "config": {
  5672. "trace": "src/config.php"
  5673. }
  5674. }
  5675. },
  5676. "autoload": {
  5677. "psr-4": {
  5678. "think\\trace\\": "src"
  5679. }
  5680. },
  5681. "notification-url": "https://packagist.org/downloads/",
  5682. "license": [
  5683. "Apache-2.0"
  5684. ],
  5685. "authors": [
  5686. {
  5687. "name": "liu21st",
  5688. "email": "liu21st@gmail.com"
  5689. }
  5690. ],
  5691. "description": "thinkphp debug trace",
  5692. "support": {
  5693. "issues": "https://github.com/top-think/think-trace/issues",
  5694. "source": "https://github.com/top-think/think-trace/tree/v1.6"
  5695. },
  5696. "time": "2023-02-07T08:36:32+00:00"
  5697. },
  5698. {
  5699. "name": "ucloud/ucloud-sdk-php",
  5700. "version": "0.3.5",
  5701. "source": {
  5702. "type": "git",
  5703. "url": "https://github.com/ucloud/ucloud-sdk-php.git",
  5704. "reference": "312f371025c0da079df2046658ede8c9ebc47e85"
  5705. },
  5706. "dist": {
  5707. "type": "zip",
  5708. "url": "https://api.github.com/repos/ucloud/ucloud-sdk-php/zipball/312f371025c0da079df2046658ede8c9ebc47e85",
  5709. "reference": "312f371025c0da079df2046658ede8c9ebc47e85",
  5710. "shasum": ""
  5711. },
  5712. "require": {
  5713. "guzzlehttp/guzzle": "^6.2.1|^7.0",
  5714. "php": ">=5.6",
  5715. "psr/log": "^1.1"
  5716. },
  5717. "require-dev": {
  5718. "phpcompatibility/php-compatibility": "^9.0",
  5719. "phpunit/phpunit": "^9.0",
  5720. "squizlabs/php_codesniffer": "^3.0"
  5721. },
  5722. "type": "library",
  5723. "extra": {
  5724. "branch-alias": {
  5725. "dev-master": "1.0.x-dev"
  5726. }
  5727. },
  5728. "autoload": {
  5729. "psr-4": {
  5730. "UCloud\\": "src/"
  5731. }
  5732. },
  5733. "notification-url": "https://packagist.org/downloads/",
  5734. "license": [
  5735. "MIT"
  5736. ],
  5737. "authors": [
  5738. {
  5739. "name": "ucloud",
  5740. "email": "yufei.li@ucloud.cn"
  5741. }
  5742. ],
  5743. "description": "UCloud",
  5744. "homepage": "https://github.com/ucloud/ucloud-sdk-php",
  5745. "keywords": [
  5746. "php",
  5747. "ucloud"
  5748. ],
  5749. "support": {
  5750. "issues": "https://github.com/ucloud/ucloud-sdk-php/issues",
  5751. "source": "https://github.com/ucloud/ucloud-sdk-php/tree/0.3.5"
  5752. },
  5753. "time": "2023-12-14T07:45:43+00:00"
  5754. },
  5755. {
  5756. "name": "ucloud/ufile-php-sdk",
  5757. "version": "1.0.1",
  5758. "source": {
  5759. "type": "git",
  5760. "url": "https://github.com/yufeiminds/Ufile-php-sdk.git",
  5761. "reference": "42f739ecd55dec488e9b2185795cdc5ea7be12d0"
  5762. },
  5763. "dist": {
  5764. "type": "zip",
  5765. "url": "https://api.github.com/repos/yufeiminds/Ufile-php-sdk/zipball/42f739ecd55dec488e9b2185795cdc5ea7be12d0",
  5766. "reference": "42f739ecd55dec488e9b2185795cdc5ea7be12d0",
  5767. "shasum": ""
  5768. },
  5769. "require": {
  5770. "php": ">=5.6.0"
  5771. },
  5772. "type": "library",
  5773. "autoload": {
  5774. "files": [
  5775. "src/functions.php"
  5776. ],
  5777. "psr-4": {
  5778. "UCloud\\": "src/"
  5779. }
  5780. },
  5781. "notification-url": "https://packagist.org/downloads/",
  5782. "license": [
  5783. "MIT"
  5784. ],
  5785. "authors": [
  5786. {
  5787. "name": "MadScientist",
  5788. "email": "superdinghh@gmail.com"
  5789. }
  5790. ],
  5791. "description": "UCloud Resource (Cloud) Storage SDK for PHP",
  5792. "keywords": [
  5793. "cloud",
  5794. "sdk",
  5795. "storage",
  5796. "ucloud"
  5797. ],
  5798. "support": {
  5799. "source": "https://github.com/yufeiminds/Ufile-php-sdk/tree/1.0.1"
  5800. },
  5801. "time": "2018-05-08T02:37:11+00:00"
  5802. },
  5803. {
  5804. "name": "xaboy/form-builder",
  5805. "version": "2.0.15",
  5806. "source": {
  5807. "type": "git",
  5808. "url": "https://github.com/xaboy/form-builder.git",
  5809. "reference": "20cf96927c7aed273dd0db5b2c7c83f56e535bf1"
  5810. },
  5811. "dist": {
  5812. "type": "zip",
  5813. "url": "https://api.github.com/repos/xaboy/form-builder/zipball/20cf96927c7aed273dd0db5b2c7c83f56e535bf1",
  5814. "reference": "20cf96927c7aed273dd0db5b2c7c83f56e535bf1",
  5815. "shasum": ""
  5816. },
  5817. "require": {
  5818. "doctrine/annotations": "1.2.7",
  5819. "ext-json": "*",
  5820. "php": ">=5.4.0",
  5821. "symfony/http-foundation": "~2.6|~2.7|~2.8|~3.0|~4.0"
  5822. },
  5823. "type": "library",
  5824. "autoload": {
  5825. "psr-4": {
  5826. "FormBuilder\\": "./src/"
  5827. }
  5828. },
  5829. "notification-url": "https://packagist.org/downloads/",
  5830. "license": [
  5831. "MIT"
  5832. ],
  5833. "authors": [
  5834. {
  5835. "name": "xaboy",
  5836. "email": "xaboy2005@qq.com"
  5837. }
  5838. ],
  5839. "description": "PHP表单生成器,快速生成现代化的form表单。包含复选框、单选框、输入框、下拉选择框等元素以及,省市区三级联动,时间选择,日期选择,颜色选择,文件/图片上传等功能。",
  5840. "homepage": "https://github.com/xaboy/form-builder",
  5841. "keywords": [
  5842. "dynamic-form",
  5843. "element-ui",
  5844. "form",
  5845. "form-create",
  5846. "form-generator",
  5847. "iview"
  5848. ],
  5849. "support": {
  5850. "issues": "https://github.com/xaboy/form-builder/issues",
  5851. "source": "https://github.com/xaboy/form-builder"
  5852. },
  5853. "time": "2020-04-15T09:57:04+00:00"
  5854. }
  5855. ],
  5856. "packages-dev": [
  5857. {
  5858. "name": "symfony/polyfill-php72",
  5859. "version": "v1.31.0",
  5860. "source": {
  5861. "type": "git",
  5862. "url": "https://github.com/symfony/polyfill-php72.git",
  5863. "reference": "fa2ae56c44f03bed91a39bfc9822e31e7c5c38ce"
  5864. },
  5865. "dist": {
  5866. "type": "zip",
  5867. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/fa2ae56c44f03bed91a39bfc9822e31e7c5c38ce",
  5868. "reference": "fa2ae56c44f03bed91a39bfc9822e31e7c5c38ce",
  5869. "shasum": ""
  5870. },
  5871. "require": {
  5872. "php": ">=7.2"
  5873. },
  5874. "type": "metapackage",
  5875. "extra": {
  5876. "thanks": {
  5877. "name": "symfony/polyfill",
  5878. "url": "https://github.com/symfony/polyfill"
  5879. }
  5880. },
  5881. "notification-url": "https://packagist.org/downloads/",
  5882. "license": [
  5883. "MIT"
  5884. ],
  5885. "authors": [
  5886. {
  5887. "name": "Nicolas Grekas",
  5888. "email": "p@tchwork.com"
  5889. },
  5890. {
  5891. "name": "Symfony Community",
  5892. "homepage": "https://symfony.com/contributors"
  5893. }
  5894. ],
  5895. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  5896. "homepage": "https://symfony.com",
  5897. "keywords": [
  5898. "compatibility",
  5899. "polyfill",
  5900. "portable",
  5901. "shim"
  5902. ],
  5903. "support": {
  5904. "source": "https://github.com/symfony/polyfill-php72/tree/v1.31.0"
  5905. },
  5906. "funding": [
  5907. {
  5908. "url": "https://symfony.com/sponsor",
  5909. "type": "custom"
  5910. },
  5911. {
  5912. "url": "https://github.com/fabpot",
  5913. "type": "github"
  5914. },
  5915. {
  5916. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5917. "type": "tidelift"
  5918. }
  5919. ],
  5920. "time": "2024-09-09T11:45:10+00:00"
  5921. },
  5922. {
  5923. "name": "symfony/var-dumper",
  5924. "version": "v4.4.47",
  5925. "source": {
  5926. "type": "git",
  5927. "url": "https://github.com/symfony/var-dumper.git",
  5928. "reference": "1069c7a3fca74578022fab6f81643248d02f8e63"
  5929. },
  5930. "dist": {
  5931. "type": "zip",
  5932. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/1069c7a3fca74578022fab6f81643248d02f8e63",
  5933. "reference": "1069c7a3fca74578022fab6f81643248d02f8e63",
  5934. "shasum": ""
  5935. },
  5936. "require": {
  5937. "php": ">=7.1.3",
  5938. "symfony/polyfill-mbstring": "~1.0",
  5939. "symfony/polyfill-php72": "~1.5",
  5940. "symfony/polyfill-php80": "^1.16"
  5941. },
  5942. "conflict": {
  5943. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  5944. "symfony/console": "<3.4"
  5945. },
  5946. "require-dev": {
  5947. "ext-iconv": "*",
  5948. "symfony/console": "^3.4|^4.0|^5.0",
  5949. "symfony/process": "^4.4|^5.0",
  5950. "twig/twig": "^1.43|^2.13|^3.0.4"
  5951. },
  5952. "suggest": {
  5953. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  5954. "ext-intl": "To show region name in time zone dump",
  5955. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  5956. },
  5957. "bin": [
  5958. "Resources/bin/var-dump-server"
  5959. ],
  5960. "type": "library",
  5961. "autoload": {
  5962. "files": [
  5963. "Resources/functions/dump.php"
  5964. ],
  5965. "psr-4": {
  5966. "Symfony\\Component\\VarDumper\\": ""
  5967. },
  5968. "exclude-from-classmap": [
  5969. "/Tests/"
  5970. ]
  5971. },
  5972. "notification-url": "https://packagist.org/downloads/",
  5973. "license": [
  5974. "MIT"
  5975. ],
  5976. "authors": [
  5977. {
  5978. "name": "Nicolas Grekas",
  5979. "email": "p@tchwork.com"
  5980. },
  5981. {
  5982. "name": "Symfony Community",
  5983. "homepage": "https://symfony.com/contributors"
  5984. }
  5985. ],
  5986. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  5987. "homepage": "https://symfony.com",
  5988. "keywords": [
  5989. "debug",
  5990. "dump"
  5991. ],
  5992. "support": {
  5993. "source": "https://github.com/symfony/var-dumper/tree/v4.4.47"
  5994. },
  5995. "funding": [
  5996. {
  5997. "url": "https://symfony.com/sponsor",
  5998. "type": "custom"
  5999. },
  6000. {
  6001. "url": "https://github.com/fabpot",
  6002. "type": "github"
  6003. },
  6004. {
  6005. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6006. "type": "tidelift"
  6007. }
  6008. ],
  6009. "time": "2022-10-03T15:15:11+00:00"
  6010. }
  6011. ],
  6012. "aliases": [],
  6013. "minimum-stability": "stable",
  6014. "stability-flags": [],
  6015. "prefer-stable": false,
  6016. "prefer-lowest": false,
  6017. "platform": {
  6018. "php": ">=7.1.0",
  6019. "ext-json": "*",
  6020. "ext-openssl": "*",
  6021. "ext-gd": "*",
  6022. "ext-redis": "*",
  6023. "ext-zip": "*",
  6024. "ext-pdo": "*",
  6025. "ext-curl": "*",
  6026. "ext-bcmath": "*",
  6027. "ext-mbstring": "*",
  6028. "ext-swoole": "^4.4.0"
  6029. },
  6030. "platform-dev": [],
  6031. "plugin-api-version": "2.6.0"
  6032. }