composer.lock 193 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459
  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": "04022398e12ef0ecf3730b16dddc4398",
  8. "packages": [
  9. {
  10. "name": "adbario/php-dot-notation",
  11. "version": "2.x-dev",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/adbario/php-dot-notation.git",
  15. "reference": "84da820f12be2a504c9612757ffb7850eceb34fe"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/adbario/php-dot-notation/zipball/84da820f12be2a504c9612757ffb7850eceb34fe",
  20. "reference": "84da820f12be2a504c9612757ffb7850eceb34fe",
  21. "shasum": "",
  22. "mirrors": [
  23. {
  24. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  25. "preferred": true
  26. }
  27. ]
  28. },
  29. "require": {
  30. "ext-json": "*",
  31. "php": ">=5.5"
  32. },
  33. "require-dev": {
  34. "phpunit/phpunit": "^4|^5|^6|^7|^8",
  35. "squizlabs/php_codesniffer": "^3.0"
  36. },
  37. "type": "library",
  38. "autoload": {
  39. "files": [
  40. "src/helpers.php"
  41. ],
  42. "psr-4": {
  43. "Adbar\\": "src"
  44. }
  45. },
  46. "notification-url": "https://packagist.org/downloads/",
  47. "license": [
  48. "MIT"
  49. ],
  50. "authors": [
  51. {
  52. "name": "Riku Särkinen",
  53. "email": "riku@adbar.io"
  54. }
  55. ],
  56. "description": "PHP dot notation access to arrays",
  57. "homepage": "https://github.com/adbario/php-dot-notation",
  58. "keywords": [
  59. "ArrayAccess",
  60. "dotnotation"
  61. ],
  62. "time": "2020-04-04T01:24:44+00:00"
  63. },
  64. {
  65. "name": "alibabacloud/client",
  66. "version": "dev-master",
  67. "source": {
  68. "type": "git",
  69. "url": "https://github.com/aliyun/openapi-sdk-php-client.git",
  70. "reference": "ce97db83d26df698c85d79302f33f65f089c646b"
  71. },
  72. "dist": {
  73. "type": "zip",
  74. "url": "https://api.github.com/repos/aliyun/openapi-sdk-php-client/zipball/ce97db83d26df698c85d79302f33f65f089c646b",
  75. "reference": "ce97db83d26df698c85d79302f33f65f089c646b",
  76. "shasum": "",
  77. "mirrors": [
  78. {
  79. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  80. "preferred": true
  81. }
  82. ]
  83. },
  84. "require": {
  85. "adbario/php-dot-notation": "^2.2",
  86. "clagiordano/weblibs-configmanager": "^1.0",
  87. "danielstjules/stringy": "^3.1",
  88. "ext-curl": "*",
  89. "ext-json": "*",
  90. "ext-libxml": "*",
  91. "ext-mbstring": "*",
  92. "ext-openssl": "*",
  93. "ext-simplexml": "*",
  94. "ext-xmlwriter": "*",
  95. "guzzlehttp/guzzle": "^6.3|^7.0",
  96. "mtdowling/jmespath.php": "^2.5",
  97. "php": ">=5.5"
  98. },
  99. "require-dev": {
  100. "composer/composer": "^1.8",
  101. "drupal/coder": "^8.3",
  102. "ext-dom": "*",
  103. "ext-pcre": "*",
  104. "ext-sockets": "*",
  105. "ext-spl": "*",
  106. "league/climate": "^3.2.4",
  107. "mikey179/vfsstream": "^1.6",
  108. "monolog/monolog": "^1.24",
  109. "phpunit/phpunit": "^5.7.27|^6.1",
  110. "psr/cache": "^1.0",
  111. "symfony/dotenv": "^3.4",
  112. "symfony/var-dumper": "^3.4"
  113. },
  114. "suggest": {
  115. "ext-sockets": "To use client-side monitoring"
  116. },
  117. "type": "library",
  118. "autoload": {
  119. "psr-4": {
  120. "AlibabaCloud\\Client\\": "src"
  121. },
  122. "files": [
  123. "src/Functions.php"
  124. ]
  125. },
  126. "notification-url": "https://packagist.org/downloads/",
  127. "license": [
  128. "Apache-2.0"
  129. ],
  130. "authors": [
  131. {
  132. "name": "Alibaba Cloud SDK",
  133. "email": "sdk-team@alibabacloud.com",
  134. "homepage": "http://www.alibabacloud.com"
  135. }
  136. ],
  137. "description": "Alibaba Cloud Client for PHP - Use Alibaba Cloud in your PHP project",
  138. "homepage": "https://www.alibabacloud.com/",
  139. "keywords": [
  140. "alibaba",
  141. "alibabacloud",
  142. "aliyun",
  143. "client",
  144. "cloud",
  145. "library",
  146. "sdk",
  147. "tool"
  148. ],
  149. "time": "2021-03-24T03:13:25+00:00"
  150. },
  151. {
  152. "name": "aliyuncs/oss-sdk-php",
  153. "version": "v2.3.0",
  154. "source": {
  155. "type": "git",
  156. "url": "https://github.com/aliyun/aliyun-oss-php-sdk.git",
  157. "reference": "e69f57916678458642ac9d2fd341ae78a56996c8"
  158. },
  159. "dist": {
  160. "type": "zip",
  161. "url": "https://api.github.com/repos/aliyun/aliyun-oss-php-sdk/zipball/e69f57916678458642ac9d2fd341ae78a56996c8",
  162. "reference": "e69f57916678458642ac9d2fd341ae78a56996c8",
  163. "shasum": "",
  164. "mirrors": [
  165. {
  166. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  167. "preferred": true
  168. }
  169. ]
  170. },
  171. "require": {
  172. "php": ">=5.3"
  173. },
  174. "require-dev": {
  175. "phpunit/phpunit": "~4.0",
  176. "satooshi/php-coveralls": "~1.0"
  177. },
  178. "type": "library",
  179. "autoload": {
  180. "psr-4": {
  181. "OSS\\": "src/OSS"
  182. }
  183. },
  184. "notification-url": "https://packagist.org/downloads/",
  185. "license": [
  186. "MIT"
  187. ],
  188. "authors": [
  189. {
  190. "name": "Aliyuncs",
  191. "homepage": "http://www.aliyun.com"
  192. }
  193. ],
  194. "description": "Aliyun OSS SDK for PHP",
  195. "homepage": "http://www.aliyun.com/product/oss/",
  196. "time": "2018-01-08T06:59:35+00:00"
  197. },
  198. {
  199. "name": "baidu/aip-sdk",
  200. "version": "dev-master",
  201. "source": {
  202. "type": "git",
  203. "url": "https://github.com/Baidu-AIP/php-sdk.git",
  204. "reference": "84e5936eb6426b4cc9d9a96848568b9dd527b4a0"
  205. },
  206. "dist": {
  207. "type": "zip",
  208. "url": "https://api.github.com/repos/Baidu-AIP/php-sdk/zipball/84e5936eb6426b4cc9d9a96848568b9dd527b4a0",
  209. "reference": "84e5936eb6426b4cc9d9a96848568b9dd527b4a0",
  210. "shasum": "",
  211. "mirrors": [
  212. {
  213. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  214. "preferred": true
  215. }
  216. ]
  217. },
  218. "require": {
  219. "php": ">=5.3.3"
  220. },
  221. "type": "library",
  222. "autoload": {
  223. "files": [
  224. "lib/AipBase.php",
  225. "AipBodyAnalysis.php",
  226. "AipContentCensor.php",
  227. "AipFace.php",
  228. "AipImageClassify.php",
  229. "AipImageSearch.php",
  230. "AipKg.php",
  231. "AipNlp.php",
  232. "AipOcr.php",
  233. "AipSpeech.php"
  234. ]
  235. },
  236. "notification-url": "https://packagist.org/downloads/",
  237. "license": [
  238. "Apache-2.0"
  239. ],
  240. "authors": [
  241. {
  242. "name": "baidu"
  243. }
  244. ],
  245. "description": "baidu pulic ai php sdk",
  246. "time": "2019-06-20T07:57:25+00:00"
  247. },
  248. {
  249. "name": "bower-asset/bootstrap",
  250. "version": "v3.4.1",
  251. "source": {
  252. "type": "git",
  253. "url": "https://github.com/twbs/bootstrap.git",
  254. "reference": "68b0d231a13201eb14acd3dc84e51543d16e5f7e"
  255. },
  256. "dist": {
  257. "type": "zip",
  258. "url": "https://api.github.com/repos/twbs/bootstrap/zipball/68b0d231a13201eb14acd3dc84e51543d16e5f7e",
  259. "reference": "68b0d231a13201eb14acd3dc84e51543d16e5f7e",
  260. "shasum": ""
  261. },
  262. "require": {
  263. "bower-asset/jquery": ">=1.9.1,<=3"
  264. },
  265. "type": "bower-asset-library",
  266. "extra": {
  267. "bower-asset-main": [
  268. "less/bootstrap.less",
  269. "dist/js/bootstrap.js"
  270. ],
  271. "bower-asset-ignore": [
  272. "/.*",
  273. "_config.yml",
  274. "CNAME",
  275. "composer.json",
  276. "CONTRIBUTING.md",
  277. "docs",
  278. "js/tests",
  279. "test-infra"
  280. ]
  281. },
  282. "license": [
  283. "MIT"
  284. ],
  285. "description": "The most popular front-end framework for developing responsive, mobile first projects on the web.",
  286. "keywords": [
  287. "css",
  288. "framework",
  289. "front-end",
  290. "js",
  291. "less",
  292. "mobile-first",
  293. "responsive",
  294. "web"
  295. ]
  296. },
  297. {
  298. "name": "bower-asset/inputmask",
  299. "version": "3.3.11",
  300. "source": {
  301. "type": "git",
  302. "url": "https://github.com/RobinHerbots/Inputmask.git",
  303. "reference": "5e670ad62f50c738388d4dcec78d2888505ad77b"
  304. },
  305. "dist": {
  306. "type": "zip",
  307. "url": "https://api.github.com/repos/RobinHerbots/Inputmask/zipball/5e670ad62f50c738388d4dcec78d2888505ad77b",
  308. "reference": "5e670ad62f50c738388d4dcec78d2888505ad77b"
  309. },
  310. "require": {
  311. "bower-asset/jquery": ">=1.7"
  312. },
  313. "type": "bower-asset",
  314. "license": [
  315. "http://opensource.org/licenses/mit-license.php"
  316. ]
  317. },
  318. {
  319. "name": "bower-asset/jquery",
  320. "version": "2.2.4",
  321. "source": {
  322. "type": "git",
  323. "url": "https://github.com/jquery/jquery-dist.git",
  324. "reference": "c0185ab7c75aab88762c5aae780b9d83b80eda72"
  325. },
  326. "dist": {
  327. "type": "zip",
  328. "url": "https://api.github.com/repos/jquery/jquery-dist/zipball/c0185ab7c75aab88762c5aae780b9d83b80eda72",
  329. "reference": "c0185ab7c75aab88762c5aae780b9d83b80eda72"
  330. },
  331. "type": "bower-asset",
  332. "license": [
  333. "MIT"
  334. ]
  335. },
  336. {
  337. "name": "bower-asset/punycode",
  338. "version": "v1.3.2",
  339. "source": {
  340. "type": "git",
  341. "url": "https://github.com/mathiasbynens/punycode.js.git",
  342. "reference": "38c8d3131a82567bfef18da09f7f4db68c84f8a3"
  343. },
  344. "dist": {
  345. "type": "zip",
  346. "url": "https://api.github.com/repos/mathiasbynens/punycode.js/zipball/38c8d3131a82567bfef18da09f7f4db68c84f8a3",
  347. "reference": "38c8d3131a82567bfef18da09f7f4db68c84f8a3"
  348. },
  349. "type": "bower-asset"
  350. },
  351. {
  352. "name": "bower-asset/yii2-pjax",
  353. "version": "2.0.8",
  354. "source": {
  355. "type": "git",
  356. "url": "https://github.com/yiisoft/jquery-pjax.git",
  357. "reference": "a9298d57da63d14a950f1b94366a864bc62264fb"
  358. },
  359. "dist": {
  360. "type": "zip",
  361. "url": "https://api.github.com/repos/yiisoft/jquery-pjax/zipball/a9298d57da63d14a950f1b94366a864bc62264fb",
  362. "reference": "a9298d57da63d14a950f1b94366a864bc62264fb"
  363. },
  364. "require": {
  365. "bower-asset/jquery": ">=1.8"
  366. },
  367. "type": "bower-asset",
  368. "license": [
  369. "MIT"
  370. ]
  371. },
  372. {
  373. "name": "cebe/markdown",
  374. "version": "dev-master",
  375. "source": {
  376. "type": "git",
  377. "url": "https://github.com/cebe/markdown.git",
  378. "reference": "2b2461bed9e15305486319ee552bafca75d1cdaa"
  379. },
  380. "dist": {
  381. "type": "zip",
  382. "url": "https://api.github.com/repos/cebe/markdown/zipball/2b2461bed9e15305486319ee552bafca75d1cdaa",
  383. "reference": "2b2461bed9e15305486319ee552bafca75d1cdaa",
  384. "shasum": "",
  385. "mirrors": [
  386. {
  387. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  388. "preferred": true
  389. }
  390. ]
  391. },
  392. "require": {
  393. "lib-pcre": "*",
  394. "php": ">=5.4.0"
  395. },
  396. "require-dev": {
  397. "cebe/indent": "*",
  398. "facebook/xhprof": "*@dev",
  399. "phpunit/phpunit": "4.1.*"
  400. },
  401. "default-branch": true,
  402. "bin": [
  403. "bin/markdown"
  404. ],
  405. "type": "library",
  406. "extra": {
  407. "branch-alias": {
  408. "dev-master": "1.2.x-dev"
  409. }
  410. },
  411. "autoload": {
  412. "psr-4": {
  413. "cebe\\markdown\\": ""
  414. }
  415. },
  416. "notification-url": "https://packagist.org/downloads/",
  417. "license": [
  418. "MIT"
  419. ],
  420. "authors": [
  421. {
  422. "name": "Carsten Brandt",
  423. "email": "mail@cebe.cc",
  424. "homepage": "http://cebe.cc/",
  425. "role": "Creator"
  426. }
  427. ],
  428. "description": "A super fast, highly extensible markdown parser for PHP",
  429. "homepage": "https://github.com/cebe/markdown#readme",
  430. "keywords": [
  431. "extensible",
  432. "fast",
  433. "gfm",
  434. "markdown",
  435. "markdown-extra"
  436. ],
  437. "support": {
  438. "issues": "https://github.com/cebe/markdown/issues",
  439. "source": "https://github.com/cebe/markdown"
  440. },
  441. "time": "2020-02-26T01:55:18+00:00"
  442. },
  443. {
  444. "name": "clagiordano/weblibs-configmanager",
  445. "version": "v1.1.0",
  446. "source": {
  447. "type": "git",
  448. "url": "https://github.com/clagiordano/weblibs-configmanager.git",
  449. "reference": "ecf584f5b3a27929175ff0abdba52f0131bef795"
  450. },
  451. "dist": {
  452. "type": "zip",
  453. "url": "https://api.github.com/repos/clagiordano/weblibs-configmanager/zipball/ecf584f5b3a27929175ff0abdba52f0131bef795",
  454. "reference": "ecf584f5b3a27929175ff0abdba52f0131bef795",
  455. "shasum": "",
  456. "mirrors": [
  457. {
  458. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  459. "preferred": true
  460. }
  461. ]
  462. },
  463. "require": {
  464. "php": ">=5.4"
  465. },
  466. "require-dev": {
  467. "clagiordano/phpunit-result-printer": "^1",
  468. "phpunit/phpunit": "^4.8"
  469. },
  470. "type": "library",
  471. "autoload": {
  472. "psr-4": {
  473. "clagiordano\\weblibs\\configmanager\\": "src/"
  474. }
  475. },
  476. "notification-url": "https://packagist.org/downloads/",
  477. "license": [
  478. "LGPL-3.0-or-later"
  479. ],
  480. "authors": [
  481. {
  482. "name": "Claudio Giordano",
  483. "email": "claudio.giordano@autistici.org",
  484. "role": "Developer"
  485. }
  486. ],
  487. "description": "weblibs-configmanager is a tool library for easily read and access to php config array file and direct read/write configuration file / object",
  488. "keywords": [
  489. "clagiordano",
  490. "configuration",
  491. "manager",
  492. "tool",
  493. "weblibs"
  494. ],
  495. "time": "2020-07-20T20:39:25+00:00"
  496. },
  497. {
  498. "name": "danielstjules/stringy",
  499. "version": "3.1.0",
  500. "source": {
  501. "type": "git",
  502. "url": "https://github.com/danielstjules/Stringy.git",
  503. "reference": "df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e"
  504. },
  505. "dist": {
  506. "type": "zip",
  507. "url": "https://api.github.com/repos/danielstjules/Stringy/zipball/df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e",
  508. "reference": "df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e",
  509. "shasum": "",
  510. "mirrors": [
  511. {
  512. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  513. "preferred": true
  514. }
  515. ]
  516. },
  517. "require": {
  518. "php": ">=5.4.0",
  519. "symfony/polyfill-mbstring": "~1.1"
  520. },
  521. "require-dev": {
  522. "phpunit/phpunit": "~4.0"
  523. },
  524. "type": "library",
  525. "autoload": {
  526. "psr-4": {
  527. "Stringy\\": "src/"
  528. },
  529. "files": [
  530. "src/Create.php"
  531. ]
  532. },
  533. "notification-url": "https://packagist.org/downloads/",
  534. "license": [
  535. "MIT"
  536. ],
  537. "authors": [
  538. {
  539. "name": "Daniel St. Jules",
  540. "email": "danielst.jules@gmail.com",
  541. "homepage": "http://www.danielstjules.com"
  542. }
  543. ],
  544. "description": "A string manipulation library with multibyte support",
  545. "homepage": "https://github.com/danielstjules/Stringy",
  546. "keywords": [
  547. "UTF",
  548. "helpers",
  549. "manipulation",
  550. "methods",
  551. "multibyte",
  552. "string",
  553. "utf-8",
  554. "utility",
  555. "utils"
  556. ],
  557. "time": "2017-06-12T01:10:27+00:00"
  558. },
  559. {
  560. "name": "ezyang/htmlpurifier",
  561. "version": "v4.18.0",
  562. "source": {
  563. "type": "git",
  564. "url": "https://github.com/ezyang/htmlpurifier.git",
  565. "reference": "cb56001e54359df7ae76dc522d08845dc741621b"
  566. },
  567. "dist": {
  568. "type": "zip",
  569. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/cb56001e54359df7ae76dc522d08845dc741621b",
  570. "reference": "cb56001e54359df7ae76dc522d08845dc741621b",
  571. "shasum": "",
  572. "mirrors": [
  573. {
  574. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  575. "preferred": true
  576. }
  577. ]
  578. },
  579. "require": {
  580. "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 || ~8.4.0"
  581. },
  582. "require-dev": {
  583. "cerdic/css-tidy": "^1.7 || ^2.0",
  584. "simpletest/simpletest": "dev-master"
  585. },
  586. "suggest": {
  587. "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.",
  588. "ext-bcmath": "Used for unit conversion and imagecrash protection",
  589. "ext-iconv": "Converts text to and from non-UTF-8 encodings",
  590. "ext-tidy": "Used for pretty-printing HTML"
  591. },
  592. "type": "library",
  593. "autoload": {
  594. "files": [
  595. "library/HTMLPurifier.composer.php"
  596. ],
  597. "psr-0": {
  598. "HTMLPurifier": "library/"
  599. },
  600. "exclude-from-classmap": [
  601. "/library/HTMLPurifier/Language/"
  602. ]
  603. },
  604. "notification-url": "https://packagist.org/downloads/",
  605. "license": [
  606. "LGPL-2.1-or-later"
  607. ],
  608. "authors": [
  609. {
  610. "name": "Edward Z. Yang",
  611. "email": "admin@htmlpurifier.org",
  612. "homepage": "http://ezyang.com"
  613. }
  614. ],
  615. "description": "Standards compliant HTML filter written in PHP",
  616. "homepage": "http://htmlpurifier.org/",
  617. "keywords": [
  618. "html"
  619. ],
  620. "support": {
  621. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  622. "source": "https://github.com/ezyang/htmlpurifier/tree/v4.18.0"
  623. },
  624. "time": "2024-11-01T03:51:45+00:00"
  625. },
  626. {
  627. "name": "getuilaboratory/getui-pushapi-php-client-v2",
  628. "version": "dev-master",
  629. "source": {
  630. "type": "git",
  631. "url": "https://github.com/GetuiLaboratory/getui-pushapi-php-client-v2.git",
  632. "reference": "255cc076624d049c0481d7172cd3c519ae7b07f6"
  633. },
  634. "dist": {
  635. "type": "zip",
  636. "url": "https://api.github.com/repos/GetuiLaboratory/getui-pushapi-php-client-v2/zipball/255cc076624d049c0481d7172cd3c519ae7b07f6",
  637. "reference": "255cc076624d049c0481d7172cd3c519ae7b07f6",
  638. "shasum": "",
  639. "mirrors": [
  640. {
  641. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  642. "preferred": true
  643. }
  644. ]
  645. },
  646. "default-branch": true,
  647. "type": "library",
  648. "autoload": {
  649. "classmap": [
  650. ""
  651. ]
  652. },
  653. "notification-url": "https://packagist.org/downloads/",
  654. "license": [
  655. "MIT"
  656. ],
  657. "authors": [
  658. {
  659. "name": "getui",
  660. "homepage": "https://www.getui.com/cn"
  661. }
  662. ],
  663. "description": "getui php client V2",
  664. "homepage": "https://www.getui.com/cn/",
  665. "keywords": [
  666. "GeTui",
  667. "GetuiLaboratory",
  668. "getui-pushapi-php-client",
  669. "getui-pushapi-php-client-v2",
  670. "pushapi"
  671. ],
  672. "support": {
  673. "issues": "https://github.com/GetuiLaboratory/getui-pushapi-php-client-v2/issues",
  674. "source": "https://github.com/GetuiLaboratory/getui-pushapi-php-client-v2/tree/master"
  675. },
  676. "time": "2021-06-21T03:22:42+00:00"
  677. },
  678. {
  679. "name": "guzzlehttp/guzzle",
  680. "version": "6.5.x-dev",
  681. "source": {
  682. "type": "git",
  683. "url": "https://github.com/guzzle/guzzle.git",
  684. "reference": "a52f0440530b54fa079ce76e8c5d196a42cad981"
  685. },
  686. "dist": {
  687. "type": "zip",
  688. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/a52f0440530b54fa079ce76e8c5d196a42cad981",
  689. "reference": "a52f0440530b54fa079ce76e8c5d196a42cad981",
  690. "shasum": "",
  691. "mirrors": [
  692. {
  693. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  694. "preferred": true
  695. }
  696. ]
  697. },
  698. "require": {
  699. "ext-json": "*",
  700. "guzzlehttp/promises": "^1.0",
  701. "guzzlehttp/psr7": "^1.9",
  702. "php": ">=5.5",
  703. "symfony/polyfill-intl-idn": "^1.17"
  704. },
  705. "require-dev": {
  706. "ext-curl": "*",
  707. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  708. "psr/log": "^1.1"
  709. },
  710. "suggest": {
  711. "psr/log": "Required for using the Log middleware"
  712. },
  713. "type": "library",
  714. "extra": {
  715. "branch-alias": {
  716. "dev-master": "6.5-dev"
  717. }
  718. },
  719. "autoload": {
  720. "files": [
  721. "src/functions_include.php"
  722. ],
  723. "psr-4": {
  724. "GuzzleHttp\\": "src/"
  725. }
  726. },
  727. "notification-url": "https://packagist.org/downloads/",
  728. "license": [
  729. "MIT"
  730. ],
  731. "authors": [
  732. {
  733. "name": "Graham Campbell",
  734. "email": "hello@gjcampbell.co.uk",
  735. "homepage": "https://github.com/GrahamCampbell"
  736. },
  737. {
  738. "name": "Michael Dowling",
  739. "email": "mtdowling@gmail.com",
  740. "homepage": "https://github.com/mtdowling"
  741. },
  742. {
  743. "name": "Jeremy Lindblom",
  744. "email": "jeremeamia@gmail.com",
  745. "homepage": "https://github.com/jeremeamia"
  746. },
  747. {
  748. "name": "George Mponos",
  749. "email": "gmponos@gmail.com",
  750. "homepage": "https://github.com/gmponos"
  751. },
  752. {
  753. "name": "Tobias Nyholm",
  754. "email": "tobias.nyholm@gmail.com",
  755. "homepage": "https://github.com/Nyholm"
  756. },
  757. {
  758. "name": "Márk Sági-Kazár",
  759. "email": "mark.sagikazar@gmail.com",
  760. "homepage": "https://github.com/sagikazarmark"
  761. },
  762. {
  763. "name": "Tobias Schultze",
  764. "email": "webmaster@tubo-world.de",
  765. "homepage": "https://github.com/Tobion"
  766. }
  767. ],
  768. "description": "Guzzle is a PHP HTTP client library",
  769. "homepage": "http://guzzlephp.org/",
  770. "keywords": [
  771. "client",
  772. "curl",
  773. "framework",
  774. "http",
  775. "http client",
  776. "rest",
  777. "web service"
  778. ],
  779. "support": {
  780. "issues": "https://github.com/guzzle/guzzle/issues",
  781. "source": "https://github.com/guzzle/guzzle/tree/6.5.8"
  782. },
  783. "funding": [
  784. {
  785. "url": "https://github.com/GrahamCampbell",
  786. "type": "github"
  787. },
  788. {
  789. "url": "https://github.com/Nyholm",
  790. "type": "github"
  791. },
  792. {
  793. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  794. "type": "tidelift"
  795. }
  796. ],
  797. "time": "2022-06-20T22:16:07+00:00"
  798. },
  799. {
  800. "name": "guzzlehttp/promises",
  801. "version": "dev-master",
  802. "source": {
  803. "type": "git",
  804. "url": "https://github.com/guzzle/promises.git",
  805. "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da"
  806. },
  807. "dist": {
  808. "type": "zip",
  809. "url": "https://api.github.com/repos/guzzle/promises/zipball/fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
  810. "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
  811. "shasum": "",
  812. "mirrors": [
  813. {
  814. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  815. "preferred": true
  816. }
  817. ]
  818. },
  819. "require": {
  820. "php": ">=5.5"
  821. },
  822. "require-dev": {
  823. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  824. },
  825. "default-branch": true,
  826. "type": "library",
  827. "extra": {
  828. "branch-alias": {
  829. "dev-master": "1.5-dev"
  830. }
  831. },
  832. "autoload": {
  833. "files": [
  834. "src/functions_include.php"
  835. ],
  836. "psr-4": {
  837. "GuzzleHttp\\Promise\\": "src/"
  838. }
  839. },
  840. "notification-url": "https://packagist.org/downloads/",
  841. "license": [
  842. "MIT"
  843. ],
  844. "authors": [
  845. {
  846. "name": "Graham Campbell",
  847. "email": "hello@gjcampbell.co.uk",
  848. "homepage": "https://github.com/GrahamCampbell"
  849. },
  850. {
  851. "name": "Michael Dowling",
  852. "email": "mtdowling@gmail.com",
  853. "homepage": "https://github.com/mtdowling"
  854. },
  855. {
  856. "name": "Tobias Nyholm",
  857. "email": "tobias.nyholm@gmail.com",
  858. "homepage": "https://github.com/Nyholm"
  859. },
  860. {
  861. "name": "Tobias Schultze",
  862. "email": "webmaster@tubo-world.de",
  863. "homepage": "https://github.com/Tobion"
  864. }
  865. ],
  866. "description": "Guzzle promises library",
  867. "keywords": [
  868. "promise"
  869. ],
  870. "support": {
  871. "issues": "https://github.com/guzzle/promises/issues",
  872. "source": "https://github.com/guzzle/promises/tree/1.5.1"
  873. },
  874. "funding": [
  875. {
  876. "url": "https://github.com/GrahamCampbell",
  877. "type": "github"
  878. },
  879. {
  880. "url": "https://github.com/Nyholm",
  881. "type": "github"
  882. },
  883. {
  884. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  885. "type": "tidelift"
  886. }
  887. ],
  888. "time": "2021-10-22T20:56:57+00:00"
  889. },
  890. {
  891. "name": "guzzlehttp/psr7",
  892. "version": "1.x-dev",
  893. "source": {
  894. "type": "git",
  895. "url": "https://github.com/guzzle/psr7.git",
  896. "reference": "e98e3e6d4f86621a9b75f623996e6bbdeb4b9318"
  897. },
  898. "dist": {
  899. "type": "zip",
  900. "url": "https://api.github.com/repos/guzzle/psr7/zipball/e98e3e6d4f86621a9b75f623996e6bbdeb4b9318",
  901. "reference": "e98e3e6d4f86621a9b75f623996e6bbdeb4b9318",
  902. "shasum": "",
  903. "mirrors": [
  904. {
  905. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  906. "preferred": true
  907. }
  908. ]
  909. },
  910. "require": {
  911. "php": ">=5.4.0",
  912. "psr/http-message": "~1.0",
  913. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  914. },
  915. "provide": {
  916. "psr/http-message-implementation": "1.0"
  917. },
  918. "require-dev": {
  919. "ext-zlib": "*",
  920. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  921. },
  922. "suggest": {
  923. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  924. },
  925. "type": "library",
  926. "extra": {
  927. "branch-alias": {
  928. "dev-master": "1.9-dev"
  929. }
  930. },
  931. "autoload": {
  932. "files": [
  933. "src/functions_include.php"
  934. ],
  935. "psr-4": {
  936. "GuzzleHttp\\Psr7\\": "src/"
  937. }
  938. },
  939. "notification-url": "https://packagist.org/downloads/",
  940. "license": [
  941. "MIT"
  942. ],
  943. "authors": [
  944. {
  945. "name": "Graham Campbell",
  946. "email": "hello@gjcampbell.co.uk",
  947. "homepage": "https://github.com/GrahamCampbell"
  948. },
  949. {
  950. "name": "Michael Dowling",
  951. "email": "mtdowling@gmail.com",
  952. "homepage": "https://github.com/mtdowling"
  953. },
  954. {
  955. "name": "George Mponos",
  956. "email": "gmponos@gmail.com",
  957. "homepage": "https://github.com/gmponos"
  958. },
  959. {
  960. "name": "Tobias Nyholm",
  961. "email": "tobias.nyholm@gmail.com",
  962. "homepage": "https://github.com/Nyholm"
  963. },
  964. {
  965. "name": "Márk Sági-Kazár",
  966. "email": "mark.sagikazar@gmail.com",
  967. "homepage": "https://github.com/sagikazarmark"
  968. },
  969. {
  970. "name": "Tobias Schultze",
  971. "email": "webmaster@tubo-world.de",
  972. "homepage": "https://github.com/Tobion"
  973. }
  974. ],
  975. "description": "PSR-7 message implementation that also provides common utility methods",
  976. "keywords": [
  977. "http",
  978. "message",
  979. "psr-7",
  980. "request",
  981. "response",
  982. "stream",
  983. "uri",
  984. "url"
  985. ],
  986. "support": {
  987. "issues": "https://github.com/guzzle/psr7/issues",
  988. "source": "https://github.com/guzzle/psr7/tree/1.9.0"
  989. },
  990. "funding": [
  991. {
  992. "url": "https://github.com/GrahamCampbell",
  993. "type": "github"
  994. },
  995. {
  996. "url": "https://github.com/Nyholm",
  997. "type": "github"
  998. },
  999. {
  1000. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1001. "type": "tidelift"
  1002. }
  1003. ],
  1004. "time": "2022-06-20T21:43:03+00:00"
  1005. },
  1006. {
  1007. "name": "hollisho/yii2-redis-pub-sub",
  1008. "version": "dev-master",
  1009. "source": {
  1010. "type": "git",
  1011. "url": "https://github.com/hollisho/yii2-redis-pub-sub.git",
  1012. "reference": "d19daa3c6928bb28aca180a8b77e952ef435d41b"
  1013. },
  1014. "dist": {
  1015. "type": "zip",
  1016. "url": "https://api.github.com/repos/hollisho/yii2-redis-pub-sub/zipball/d19daa3c6928bb28aca180a8b77e952ef435d41b",
  1017. "reference": "d19daa3c6928bb28aca180a8b77e952ef435d41b",
  1018. "shasum": "",
  1019. "mirrors": [
  1020. {
  1021. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1022. "preferred": true
  1023. }
  1024. ]
  1025. },
  1026. "require": {
  1027. "php": ">=5.4.0"
  1028. },
  1029. "type": "library",
  1030. "autoload": {
  1031. "psr-4": {
  1032. "hollisho\\redis_pub_sub\\": "src/"
  1033. }
  1034. },
  1035. "notification-url": "https://packagist.org/downloads/",
  1036. "license": [
  1037. "MIT"
  1038. ],
  1039. "authors": [
  1040. {
  1041. "name": "Hollis Ho",
  1042. "email": "he_wenzhi@126.com"
  1043. }
  1044. ],
  1045. "description": "Yii2 Redis pub/sub(Publish,Subscribe)",
  1046. "time": "2018-11-22T10:56:17+00:00"
  1047. },
  1048. {
  1049. "name": "imagine/imagine",
  1050. "version": "1.2.3",
  1051. "source": {
  1052. "type": "git",
  1053. "url": "https://github.com/php-imagine/Imagine.git",
  1054. "reference": "cb2361e5bb4410b681462d8e4f912bc5dabf84ab"
  1055. },
  1056. "dist": {
  1057. "type": "zip",
  1058. "url": "https://api.github.com/repos/php-imagine/Imagine/zipball/cb2361e5bb4410b681462d8e4f912bc5dabf84ab",
  1059. "reference": "cb2361e5bb4410b681462d8e4f912bc5dabf84ab",
  1060. "shasum": "",
  1061. "mirrors": [
  1062. {
  1063. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1064. "preferred": true
  1065. }
  1066. ]
  1067. },
  1068. "require": {
  1069. "php": ">=5.3.2"
  1070. },
  1071. "require-dev": {
  1072. "friendsofphp/php-cs-fixer": "2.2.*",
  1073. "phpunit/phpunit": "^4.8 || ^5.7 || ^6.5 || ^7.5 || ^8.4"
  1074. },
  1075. "suggest": {
  1076. "ext-gd": "to use the GD implementation",
  1077. "ext-gmagick": "to use the Gmagick implementation",
  1078. "ext-imagick": "to use the Imagick implementation"
  1079. },
  1080. "type": "library",
  1081. "extra": {
  1082. "branch-alias": {
  1083. "dev-develop": "0.7-dev"
  1084. }
  1085. },
  1086. "autoload": {
  1087. "psr-4": {
  1088. "Imagine\\": "src/"
  1089. }
  1090. },
  1091. "notification-url": "https://packagist.org/downloads/",
  1092. "license": [
  1093. "MIT"
  1094. ],
  1095. "authors": [
  1096. {
  1097. "name": "Bulat Shakirzyanov",
  1098. "email": "mallluhuct@gmail.com",
  1099. "homepage": "http://avalanche123.com"
  1100. }
  1101. ],
  1102. "description": "Image processing for PHP 5.3",
  1103. "homepage": "http://imagine.readthedocs.org/",
  1104. "keywords": [
  1105. "drawing",
  1106. "graphics",
  1107. "image manipulation",
  1108. "image processing"
  1109. ],
  1110. "time": "2019-12-04T09:55:33+00:00"
  1111. },
  1112. {
  1113. "name": "lcobucci/jwt",
  1114. "version": "3.3.0",
  1115. "source": {
  1116. "type": "git",
  1117. "url": "https://github.com/lcobucci/jwt.git",
  1118. "reference": "8866a58fa866f6872f2a6ea0e04ad56480f0f440"
  1119. },
  1120. "dist": {
  1121. "type": "zip",
  1122. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/8866a58fa866f6872f2a6ea0e04ad56480f0f440",
  1123. "reference": "8866a58fa866f6872f2a6ea0e04ad56480f0f440",
  1124. "shasum": "",
  1125. "mirrors": [
  1126. {
  1127. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1128. "preferred": true
  1129. }
  1130. ]
  1131. },
  1132. "require": {
  1133. "ext-mbstring": "*",
  1134. "ext-openssl": "*",
  1135. "php": "^5.6 || ^7.0"
  1136. },
  1137. "require-dev": {
  1138. "mikey179/vfsstream": "~1.5",
  1139. "phpmd/phpmd": "~2.2",
  1140. "phpunit/php-invoker": "~1.1",
  1141. "phpunit/phpunit": "^5.7 || ^7.3",
  1142. "squizlabs/php_codesniffer": "~2.3"
  1143. },
  1144. "type": "library",
  1145. "extra": {
  1146. "branch-alias": {
  1147. "dev-master": "3.1-dev"
  1148. }
  1149. },
  1150. "autoload": {
  1151. "psr-4": {
  1152. "Lcobucci\\JWT\\": "src"
  1153. }
  1154. },
  1155. "notification-url": "https://packagist.org/downloads/",
  1156. "license": [
  1157. "BSD-3-Clause"
  1158. ],
  1159. "authors": [
  1160. {
  1161. "name": "Luís Otávio Cobucci Oblonczyk",
  1162. "email": "lcobucci@gmail.com",
  1163. "role": "Developer"
  1164. }
  1165. ],
  1166. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  1167. "keywords": [
  1168. "JWS",
  1169. "jwt"
  1170. ],
  1171. "time": "2019-05-22T09:44:23+00:00"
  1172. },
  1173. {
  1174. "name": "linslin/yii2-curl",
  1175. "version": "1.0.11",
  1176. "source": {
  1177. "type": "git",
  1178. "url": "https://github.com/linslin/Yii2-Curl.git",
  1179. "reference": "0384d175c594a6b76c4eeb91eb3804e24eb867b3"
  1180. },
  1181. "dist": {
  1182. "type": "zip",
  1183. "url": "https://api.github.com/repos/linslin/Yii2-Curl/zipball/0384d175c594a6b76c4eeb91eb3804e24eb867b3",
  1184. "reference": "0384d175c594a6b76c4eeb91eb3804e24eb867b3",
  1185. "shasum": "",
  1186. "mirrors": [
  1187. {
  1188. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1189. "preferred": true
  1190. }
  1191. ]
  1192. },
  1193. "require": {
  1194. "ext-curl": "*",
  1195. "yiisoft/yii2": "*"
  1196. },
  1197. "type": "yii2-extension",
  1198. "autoload": {
  1199. "psr-4": {
  1200. "linslin\\yii2\\curl\\": ""
  1201. }
  1202. },
  1203. "notification-url": "https://packagist.org/downloads/",
  1204. "license": [
  1205. "MIT"
  1206. ],
  1207. "authors": [
  1208. {
  1209. "name": "Nils Gajsek",
  1210. "email": "info@linslin.org"
  1211. }
  1212. ],
  1213. "description": "Easy and nice cURL extension with RESTful support for Yii2",
  1214. "keywords": [
  1215. " curl",
  1216. "extension",
  1217. "restful",
  1218. "yii2"
  1219. ],
  1220. "time": "2017-01-17T11:11:37+00:00"
  1221. },
  1222. {
  1223. "name": "mikemadisonweb/yii2-rabbitmq",
  1224. "version": "dev-master",
  1225. "source": {
  1226. "type": "git",
  1227. "url": "https://github.com/mikemadisonweb/yii2-rabbitmq.git",
  1228. "reference": "f6a42a6d2a74d583bd0f4e25b01572094506f8d4"
  1229. },
  1230. "dist": {
  1231. "type": "zip",
  1232. "url": "https://api.github.com/repos/mikemadisonweb/yii2-rabbitmq/zipball/f6a42a6d2a74d583bd0f4e25b01572094506f8d4",
  1233. "reference": "f6a42a6d2a74d583bd0f4e25b01572094506f8d4",
  1234. "shasum": "",
  1235. "mirrors": [
  1236. {
  1237. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1238. "preferred": true
  1239. }
  1240. ]
  1241. },
  1242. "require": {
  1243. "php": "^7.1||^8.0",
  1244. "php-amqplib/php-amqplib": "^3.1",
  1245. "yiisoft/yii2": "^2.0.43"
  1246. },
  1247. "require-dev": {
  1248. "php-coveralls/php-coveralls": "^2.5",
  1249. "phpunit/phpunit": "^9.5.10"
  1250. },
  1251. "default-branch": true,
  1252. "type": "yii2-extension",
  1253. "extra": {
  1254. "bootstrap": "mikemadisonweb\\rabbitmq\\DependencyInjection"
  1255. },
  1256. "autoload": {
  1257. "psr-4": {
  1258. "mikemadisonweb\\rabbitmq\\": ""
  1259. }
  1260. },
  1261. "notification-url": "https://packagist.org/downloads/",
  1262. "license": [
  1263. "MIT"
  1264. ],
  1265. "authors": [
  1266. {
  1267. "name": "Mikhail Bakulin",
  1268. "email": "mikemadweb@gmail.com"
  1269. }
  1270. ],
  1271. "description": "Wrapper based on php-amqplib to incorporate messaging in your Yii2 application via RabbitMQ. Inspired by RabbitMqBundle for Symfony 2, really awesome package.",
  1272. "keywords": [
  1273. "AMQP",
  1274. "distributed systems",
  1275. "extension",
  1276. "message queue",
  1277. "rabbitmq",
  1278. "yii2"
  1279. ],
  1280. "support": {
  1281. "issues": "https://github.com/mikemadisonweb/yii2-rabbitmq/issues",
  1282. "source": "https://github.com/mikemadisonweb/yii2-rabbitmq/tree/2.5.0"
  1283. },
  1284. "time": "2021-11-24T09:25:38+00:00"
  1285. },
  1286. {
  1287. "name": "mtdowling/jmespath.php",
  1288. "version": "2.5.x-dev",
  1289. "source": {
  1290. "type": "git",
  1291. "url": "https://github.com/jmespath/jmespath.php.git",
  1292. "reference": "52168cb9472de06979613d365c7f1ab8798be895"
  1293. },
  1294. "dist": {
  1295. "type": "zip",
  1296. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/52168cb9472de06979613d365c7f1ab8798be895",
  1297. "reference": "52168cb9472de06979613d365c7f1ab8798be895",
  1298. "shasum": "",
  1299. "mirrors": [
  1300. {
  1301. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1302. "preferred": true
  1303. }
  1304. ]
  1305. },
  1306. "require": {
  1307. "php": ">=5.4.0",
  1308. "symfony/polyfill-mbstring": "^1.4"
  1309. },
  1310. "require-dev": {
  1311. "composer/xdebug-handler": "^1.2",
  1312. "phpunit/phpunit": "^4.8.36|^7.5.15"
  1313. },
  1314. "bin": [
  1315. "bin/jp.php"
  1316. ],
  1317. "type": "library",
  1318. "extra": {
  1319. "branch-alias": {
  1320. "dev-master": "2.5-dev"
  1321. }
  1322. },
  1323. "autoload": {
  1324. "psr-4": {
  1325. "JmesPath\\": "src/"
  1326. },
  1327. "files": [
  1328. "src/JmesPath.php"
  1329. ]
  1330. },
  1331. "notification-url": "https://packagist.org/downloads/",
  1332. "license": [
  1333. "MIT"
  1334. ],
  1335. "authors": [
  1336. {
  1337. "name": "Michael Dowling",
  1338. "email": "mtdowling@gmail.com",
  1339. "homepage": "https://github.com/mtdowling"
  1340. }
  1341. ],
  1342. "description": "Declaratively specify how to extract elements from a JSON document",
  1343. "keywords": [
  1344. "json",
  1345. "jsonpath"
  1346. ],
  1347. "time": "2019-12-30T18:03:34+00:00"
  1348. },
  1349. {
  1350. "name": "overtrue/chinese-calendar",
  1351. "version": "dev-master",
  1352. "source": {
  1353. "type": "git",
  1354. "url": "https://github.com/overtrue/chinese-calendar.git",
  1355. "reference": "8c88d876e6ab3cffd4b6316944a6c743e2fdf5f0"
  1356. },
  1357. "dist": {
  1358. "type": "zip",
  1359. "url": "https://api.github.com/repos/overtrue/chinese-calendar/zipball/8c88d876e6ab3cffd4b6316944a6c743e2fdf5f0",
  1360. "reference": "8c88d876e6ab3cffd4b6316944a6c743e2fdf5f0",
  1361. "shasum": "",
  1362. "mirrors": [
  1363. {
  1364. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1365. "preferred": true
  1366. }
  1367. ]
  1368. },
  1369. "require": {
  1370. "php": ">=5.5.9"
  1371. },
  1372. "require-dev": {
  1373. "phpunit/phpunit": "^6.0"
  1374. },
  1375. "default-branch": true,
  1376. "type": "library",
  1377. "autoload": {
  1378. "psr-4": {
  1379. "Overtrue\\ChineseCalendar\\": "src"
  1380. }
  1381. },
  1382. "notification-url": "https://packagist.org/downloads/",
  1383. "license": [
  1384. "MIT"
  1385. ],
  1386. "authors": [
  1387. {
  1388. "name": "overtrue",
  1389. "email": "anzhengchao@gmail.com"
  1390. }
  1391. ],
  1392. "description": "中国农历转换与查询工具",
  1393. "keywords": [
  1394. "Chinese",
  1395. "calendar",
  1396. "lunar",
  1397. "lunar2solar",
  1398. "solar",
  1399. "solar2lunar"
  1400. ],
  1401. "support": {
  1402. "issues": "https://github.com/overtrue/chinese-calendar/issues",
  1403. "source": "https://github.com/overtrue/chinese-calendar/tree/master"
  1404. },
  1405. "time": "2023-01-29T01:59:28+00:00"
  1406. },
  1407. {
  1408. "name": "overtrue/pinyin",
  1409. "version": "4.0.7",
  1410. "source": {
  1411. "type": "git",
  1412. "url": "https://github.com/overtrue/pinyin.git",
  1413. "reference": "083de406907d42df2e0feaaeb83f1a3c2e0095eb"
  1414. },
  1415. "dist": {
  1416. "type": "zip",
  1417. "url": "https://api.github.com/repos/overtrue/pinyin/zipball/083de406907d42df2e0feaaeb83f1a3c2e0095eb",
  1418. "reference": "083de406907d42df2e0feaaeb83f1a3c2e0095eb",
  1419. "shasum": "",
  1420. "mirrors": [
  1421. {
  1422. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1423. "preferred": true
  1424. }
  1425. ]
  1426. },
  1427. "require": {
  1428. "php": ">=7.1"
  1429. },
  1430. "require-dev": {
  1431. "brainmaestro/composer-git-hooks": "^2.7",
  1432. "friendsofphp/php-cs-fixer": "^2.16",
  1433. "phpunit/phpunit": "~8.0"
  1434. },
  1435. "type": "library",
  1436. "extra": {
  1437. "hooks": {
  1438. "pre-commit": [
  1439. "composer test",
  1440. "composer fix-style"
  1441. ],
  1442. "pre-push": [
  1443. "composer test",
  1444. "composer check-style"
  1445. ]
  1446. }
  1447. },
  1448. "autoload": {
  1449. "psr-4": {
  1450. "Overtrue\\Pinyin\\": "src/"
  1451. },
  1452. "files": [
  1453. "src/const.php"
  1454. ]
  1455. },
  1456. "notification-url": "https://packagist.org/downloads/",
  1457. "license": [
  1458. "MIT"
  1459. ],
  1460. "authors": [
  1461. {
  1462. "name": "overtrue",
  1463. "email": "anzhengchao@gmail.com",
  1464. "homepage": "http://github.com/overtrue"
  1465. }
  1466. ],
  1467. "description": "Chinese to pinyin translator.",
  1468. "homepage": "https://github.com/overtrue/pinyin",
  1469. "keywords": [
  1470. "Chinese",
  1471. "Pinyin",
  1472. "cn2pinyin"
  1473. ],
  1474. "time": "2021-04-16T11:13:48+00:00"
  1475. },
  1476. {
  1477. "name": "paragonie/random_compat",
  1478. "version": "dev-master",
  1479. "source": {
  1480. "type": "git",
  1481. "url": "https://github.com/paragonie/random_compat.git",
  1482. "reference": "bf95de2af7feb426f91eee6c66d6ad8661c38e29"
  1483. },
  1484. "dist": {
  1485. "type": "zip",
  1486. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/bf95de2af7feb426f91eee6c66d6ad8661c38e29",
  1487. "reference": "bf95de2af7feb426f91eee6c66d6ad8661c38e29",
  1488. "shasum": "",
  1489. "mirrors": [
  1490. {
  1491. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1492. "preferred": true
  1493. }
  1494. ]
  1495. },
  1496. "require": {
  1497. "php": ">=5.2.0"
  1498. },
  1499. "require-dev": {
  1500. "phpunit/phpunit": "*"
  1501. },
  1502. "suggest": {
  1503. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  1504. },
  1505. "default-branch": true,
  1506. "type": "library",
  1507. "autoload": {
  1508. "files": [
  1509. "lib/random.php"
  1510. ]
  1511. },
  1512. "notification-url": "https://packagist.org/downloads/",
  1513. "license": [
  1514. "MIT"
  1515. ],
  1516. "authors": [
  1517. {
  1518. "name": "Paragon Initiative Enterprises",
  1519. "email": "security@paragonie.com",
  1520. "homepage": "https://paragonie.com"
  1521. }
  1522. ],
  1523. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  1524. "keywords": [
  1525. "csprng",
  1526. "polyfill",
  1527. "pseudorandom",
  1528. "random"
  1529. ],
  1530. "support": {
  1531. "email": "info@paragonie.com",
  1532. "issues": "https://github.com/paragonie/random_compat/issues",
  1533. "source": "https://github.com/paragonie/random_compat"
  1534. },
  1535. "time": "2024-09-10T09:24:43+00:00"
  1536. },
  1537. {
  1538. "name": "php-amqplib/php-amqplib",
  1539. "version": "v3.5.4",
  1540. "source": {
  1541. "type": "git",
  1542. "url": "https://github.com/php-amqplib/php-amqplib.git",
  1543. "reference": "1aecbd182b35eb039667c50d7d92d71f105be779"
  1544. },
  1545. "dist": {
  1546. "type": "zip",
  1547. "url": "https://api.github.com/repos/php-amqplib/php-amqplib/zipball/1aecbd182b35eb039667c50d7d92d71f105be779",
  1548. "reference": "1aecbd182b35eb039667c50d7d92d71f105be779",
  1549. "shasum": "",
  1550. "mirrors": [
  1551. {
  1552. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1553. "preferred": true
  1554. }
  1555. ]
  1556. },
  1557. "require": {
  1558. "ext-mbstring": "*",
  1559. "ext-sockets": "*",
  1560. "php": "^7.1||^8.0",
  1561. "phpseclib/phpseclib": "^2.0|^3.0"
  1562. },
  1563. "conflict": {
  1564. "php": "7.4.0 - 7.4.1"
  1565. },
  1566. "replace": {
  1567. "videlalvaro/php-amqplib": "self.version"
  1568. },
  1569. "require-dev": {
  1570. "ext-curl": "*",
  1571. "nategood/httpful": "^0.2.20",
  1572. "phpunit/phpunit": "^7.5|^9.5",
  1573. "squizlabs/php_codesniffer": "^3.6"
  1574. },
  1575. "type": "library",
  1576. "extra": {
  1577. "branch-alias": {
  1578. "dev-master": "3.0-dev"
  1579. }
  1580. },
  1581. "autoload": {
  1582. "psr-4": {
  1583. "PhpAmqpLib\\": "PhpAmqpLib/"
  1584. }
  1585. },
  1586. "notification-url": "https://packagist.org/downloads/",
  1587. "license": [
  1588. "LGPL-2.1-or-later"
  1589. ],
  1590. "authors": [
  1591. {
  1592. "name": "Alvaro Videla",
  1593. "role": "Original Maintainer"
  1594. },
  1595. {
  1596. "name": "Raúl Araya",
  1597. "email": "nubeiro@gmail.com",
  1598. "role": "Maintainer"
  1599. },
  1600. {
  1601. "name": "Luke Bakken",
  1602. "email": "luke@bakken.io",
  1603. "role": "Maintainer"
  1604. },
  1605. {
  1606. "name": "Ramūnas Dronga",
  1607. "email": "github@ramuno.lt",
  1608. "role": "Maintainer"
  1609. }
  1610. ],
  1611. "description": "Formerly videlalvaro/php-amqplib. This library is a pure PHP implementation of the AMQP protocol. It's been tested against RabbitMQ.",
  1612. "homepage": "https://github.com/php-amqplib/php-amqplib/",
  1613. "keywords": [
  1614. "message",
  1615. "queue",
  1616. "rabbitmq"
  1617. ],
  1618. "support": {
  1619. "issues": "https://github.com/php-amqplib/php-amqplib/issues",
  1620. "source": "https://github.com/php-amqplib/php-amqplib/tree/v3.5.4"
  1621. },
  1622. "time": "2023-07-01T11:25:08+00:00"
  1623. },
  1624. {
  1625. "name": "phpoffice/phpexcel",
  1626. "version": "1.8.x-dev",
  1627. "source": {
  1628. "type": "git",
  1629. "url": "https://github.com/PHPOffice/PHPExcel.git",
  1630. "reference": "39534e3dd376041d0d50a4714e73375bf45b692b"
  1631. },
  1632. "dist": {
  1633. "type": "zip",
  1634. "url": "https://api.github.com/repos/PHPOffice/PHPExcel/zipball/39534e3dd376041d0d50a4714e73375bf45b692b",
  1635. "reference": "39534e3dd376041d0d50a4714e73375bf45b692b",
  1636. "shasum": "",
  1637. "mirrors": [
  1638. {
  1639. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1640. "preferred": true
  1641. }
  1642. ]
  1643. },
  1644. "require": {
  1645. "ext-mbstring": "*",
  1646. "ext-xml": "*",
  1647. "ext-xmlwriter": "*",
  1648. "php": "^5.2|^7.0"
  1649. },
  1650. "require-dev": {
  1651. "squizlabs/php_codesniffer": "2.*"
  1652. },
  1653. "type": "library",
  1654. "autoload": {
  1655. "psr-0": {
  1656. "PHPExcel": "Classes/"
  1657. }
  1658. },
  1659. "notification-url": "https://packagist.org/downloads/",
  1660. "license": [
  1661. "LGPL-2.1"
  1662. ],
  1663. "authors": [
  1664. {
  1665. "name": "Maarten Balliauw",
  1666. "homepage": "http://blog.maartenballiauw.be"
  1667. },
  1668. {
  1669. "name": "Erik Tilt"
  1670. },
  1671. {
  1672. "name": "Franck Lefevre",
  1673. "homepage": "http://rootslabs.net"
  1674. },
  1675. {
  1676. "name": "Mark Baker",
  1677. "homepage": "http://markbakeruk.net"
  1678. }
  1679. ],
  1680. "description": "PHPExcel - OpenXML - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  1681. "homepage": "https://github.com/PHPOffice/PHPExcel",
  1682. "keywords": [
  1683. "OpenXML",
  1684. "excel",
  1685. "php",
  1686. "spreadsheet",
  1687. "xls",
  1688. "xlsx"
  1689. ],
  1690. "abandoned": "phpoffice/phpspreadsheet",
  1691. "time": "2019-01-02T01:38:47+00:00"
  1692. },
  1693. {
  1694. "name": "phpoption/phpoption",
  1695. "version": "dev-master",
  1696. "source": {
  1697. "type": "git",
  1698. "url": "https://github.com/schmittjoh/php-option.git",
  1699. "reference": "2f6af23c6ff2bcd32ebd969e118e5a3b57d649dc"
  1700. },
  1701. "dist": {
  1702. "type": "zip",
  1703. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/2f6af23c6ff2bcd32ebd969e118e5a3b57d649dc",
  1704. "reference": "2f6af23c6ff2bcd32ebd969e118e5a3b57d649dc",
  1705. "shasum": "",
  1706. "mirrors": [
  1707. {
  1708. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1709. "preferred": true
  1710. }
  1711. ]
  1712. },
  1713. "require": {
  1714. "php": ">=5.3.0"
  1715. },
  1716. "require-dev": {
  1717. "phpunit/phpunit": "^4.7|^5.0"
  1718. },
  1719. "type": "library",
  1720. "extra": {
  1721. "branch-alias": {
  1722. "dev-master": "1.6-dev"
  1723. }
  1724. },
  1725. "autoload": {
  1726. "psr-0": {
  1727. "PhpOption\\": "src/"
  1728. }
  1729. },
  1730. "notification-url": "https://packagist.org/downloads/",
  1731. "license": [
  1732. "Apache-2.0"
  1733. ],
  1734. "authors": [
  1735. {
  1736. "name": "Johannes M. Schmitt",
  1737. "email": "schmittjoh@gmail.com"
  1738. }
  1739. ],
  1740. "description": "Option Type for PHP",
  1741. "keywords": [
  1742. "language",
  1743. "option",
  1744. "php",
  1745. "type"
  1746. ],
  1747. "time": "2019-11-10T15:06:50+00:00"
  1748. },
  1749. {
  1750. "name": "phpseclib/phpseclib",
  1751. "version": "2.0.x-dev",
  1752. "source": {
  1753. "type": "git",
  1754. "url": "https://github.com/phpseclib/phpseclib.git",
  1755. "reference": "c28b12137088c95e43d0b1adb35322ef47163a2d"
  1756. },
  1757. "dist": {
  1758. "type": "zip",
  1759. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/c28b12137088c95e43d0b1adb35322ef47163a2d",
  1760. "reference": "c28b12137088c95e43d0b1adb35322ef47163a2d",
  1761. "shasum": "",
  1762. "mirrors": [
  1763. {
  1764. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1765. "preferred": true
  1766. }
  1767. ]
  1768. },
  1769. "require": {
  1770. "php": ">=5.3.3"
  1771. },
  1772. "require-dev": {
  1773. "phing/phing": "~2.7",
  1774. "phpunit/phpunit": "^4.8.35|^5.7|^6.0|^9.4",
  1775. "squizlabs/php_codesniffer": "~2.0"
  1776. },
  1777. "suggest": {
  1778. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  1779. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  1780. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  1781. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations.",
  1782. "ext-xml": "Install the XML extension to load XML formatted public keys."
  1783. },
  1784. "type": "library",
  1785. "autoload": {
  1786. "files": [
  1787. "phpseclib/bootstrap.php"
  1788. ],
  1789. "psr-4": {
  1790. "phpseclib\\": "phpseclib/"
  1791. }
  1792. },
  1793. "notification-url": "https://packagist.org/downloads/",
  1794. "license": [
  1795. "MIT"
  1796. ],
  1797. "authors": [
  1798. {
  1799. "name": "Jim Wigginton",
  1800. "email": "terrafrost@php.net",
  1801. "role": "Lead Developer"
  1802. },
  1803. {
  1804. "name": "Patrick Monnerat",
  1805. "email": "pm@datasphere.ch",
  1806. "role": "Developer"
  1807. },
  1808. {
  1809. "name": "Andreas Fischer",
  1810. "email": "bantu@phpbb.com",
  1811. "role": "Developer"
  1812. },
  1813. {
  1814. "name": "Hans-Jürgen Petrich",
  1815. "email": "petrich@tronic-media.com",
  1816. "role": "Developer"
  1817. },
  1818. {
  1819. "name": "Graham Campbell",
  1820. "email": "graham@alt-three.com",
  1821. "role": "Developer"
  1822. }
  1823. ],
  1824. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  1825. "homepage": "http://phpseclib.sourceforge.net",
  1826. "keywords": [
  1827. "BigInteger",
  1828. "aes",
  1829. "asn.1",
  1830. "asn1",
  1831. "blowfish",
  1832. "crypto",
  1833. "cryptography",
  1834. "encryption",
  1835. "rsa",
  1836. "security",
  1837. "sftp",
  1838. "signature",
  1839. "signing",
  1840. "ssh",
  1841. "twofish",
  1842. "x.509",
  1843. "x509"
  1844. ],
  1845. "support": {
  1846. "issues": "https://github.com/phpseclib/phpseclib/issues",
  1847. "source": "https://github.com/phpseclib/phpseclib/tree/2.0"
  1848. },
  1849. "funding": [
  1850. {
  1851. "url": "https://github.com/terrafrost",
  1852. "type": "github"
  1853. },
  1854. {
  1855. "url": "https://www.patreon.com/phpseclib",
  1856. "type": "patreon"
  1857. },
  1858. {
  1859. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  1860. "type": "tidelift"
  1861. }
  1862. ],
  1863. "time": "2025-05-30T13:51:00+00:00"
  1864. },
  1865. {
  1866. "name": "picqer/php-barcode-generator",
  1867. "version": "v0.3",
  1868. "source": {
  1869. "type": "git",
  1870. "url": "https://github.com/picqer/php-barcode-generator.git",
  1871. "reference": "2e4d5b1f7f04fdb348d0721ada65963dac6f0c0c"
  1872. },
  1873. "dist": {
  1874. "type": "zip",
  1875. "url": "https://api.github.com/repos/picqer/php-barcode-generator/zipball/2e4d5b1f7f04fdb348d0721ada65963dac6f0c0c",
  1876. "reference": "2e4d5b1f7f04fdb348d0721ada65963dac6f0c0c",
  1877. "shasum": "",
  1878. "mirrors": [
  1879. {
  1880. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1881. "preferred": true
  1882. }
  1883. ]
  1884. },
  1885. "require": {
  1886. "php": ">=5.4.0"
  1887. },
  1888. "require-dev": {
  1889. "phpunit/phpunit": "^5.3"
  1890. },
  1891. "type": "library",
  1892. "autoload": {
  1893. "psr-4": {
  1894. "Picqer\\Barcode\\": "src"
  1895. }
  1896. },
  1897. "notification-url": "https://packagist.org/downloads/",
  1898. "license": [
  1899. "LGPLv3"
  1900. ],
  1901. "authors": [
  1902. {
  1903. "name": "Nicola Asuni",
  1904. "email": "info@tecnick.com",
  1905. "homepage": "http://nicolaasuni.tecnick.com"
  1906. },
  1907. {
  1908. "name": "Casper Bakker",
  1909. "email": "info@picqer.com"
  1910. }
  1911. ],
  1912. "description": "An easy to use, non-bloated, barcode generator in PHP. Creates SVG, PNG, JPG and HTML images from the most used 1D barcode standards.",
  1913. "homepage": "http://github.com/picqer/php-barcode-generator",
  1914. "keywords": [
  1915. "CODABAR",
  1916. "Code11",
  1917. "Code93",
  1918. "EAN13",
  1919. "KIX",
  1920. "KIXCODE",
  1921. "MSI",
  1922. "POSTNET",
  1923. "Pharma",
  1924. "Standard 2 of 5",
  1925. "barcode",
  1926. "barcode generator",
  1927. "code128",
  1928. "code39",
  1929. "ean",
  1930. "html",
  1931. "jpeg",
  1932. "jpg",
  1933. "php",
  1934. "png",
  1935. "svg",
  1936. "upc"
  1937. ],
  1938. "time": "2019-01-12T09:29:34+00:00"
  1939. },
  1940. {
  1941. "name": "psr/http-message",
  1942. "version": "1.0.1",
  1943. "source": {
  1944. "type": "git",
  1945. "url": "https://github.com/php-fig/http-message.git",
  1946. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  1947. },
  1948. "dist": {
  1949. "type": "zip",
  1950. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  1951. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  1952. "shasum": "",
  1953. "mirrors": [
  1954. {
  1955. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1956. "preferred": true
  1957. }
  1958. ]
  1959. },
  1960. "require": {
  1961. "php": ">=5.3.0"
  1962. },
  1963. "type": "library",
  1964. "extra": {
  1965. "branch-alias": {
  1966. "dev-master": "1.0.x-dev"
  1967. }
  1968. },
  1969. "autoload": {
  1970. "psr-4": {
  1971. "Psr\\Http\\Message\\": "src/"
  1972. }
  1973. },
  1974. "notification-url": "https://packagist.org/downloads/",
  1975. "license": [
  1976. "MIT"
  1977. ],
  1978. "authors": [
  1979. {
  1980. "name": "PHP-FIG",
  1981. "homepage": "http://www.php-fig.org/"
  1982. }
  1983. ],
  1984. "description": "Common interface for HTTP messages",
  1985. "homepage": "https://github.com/php-fig/http-message",
  1986. "keywords": [
  1987. "http",
  1988. "http-message",
  1989. "psr",
  1990. "psr-7",
  1991. "request",
  1992. "response"
  1993. ],
  1994. "support": {
  1995. "source": "https://github.com/php-fig/http-message/tree/master"
  1996. },
  1997. "time": "2016-08-06T14:39:51+00:00"
  1998. },
  1999. {
  2000. "name": "pwf0112/wxcrypt",
  2001. "version": "dev-master",
  2002. "source": {
  2003. "type": "git",
  2004. "url": "https://github.com/pwf0112/wxcrypt.git",
  2005. "reference": "4756b3cfb9e4b812d42acc381582485f21abe831"
  2006. },
  2007. "dist": {
  2008. "type": "zip",
  2009. "url": "https://api.github.com/repos/pwf0112/wxcrypt/zipball/4756b3cfb9e4b812d42acc381582485f21abe831",
  2010. "reference": "4756b3cfb9e4b812d42acc381582485f21abe831",
  2011. "shasum": "",
  2012. "mirrors": [
  2013. {
  2014. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2015. "preferred": true
  2016. }
  2017. ]
  2018. },
  2019. "require": {
  2020. "php": ">=5.5.9"
  2021. },
  2022. "require-dev": {
  2023. "phpunit/phpunit": "~4.0"
  2024. },
  2025. "type": "library",
  2026. "autoload": {
  2027. "psr-4": {
  2028. "WxCrypt\\": "src/"
  2029. }
  2030. },
  2031. "notification-url": "https://packagist.org/downloads/",
  2032. "license": [
  2033. "MIT"
  2034. ],
  2035. "authors": [
  2036. {
  2037. "name": "彭未峰",
  2038. "email": "pwf0112@163.com"
  2039. }
  2040. ],
  2041. "description": "微信企业号接入文档Laravel改装",
  2042. "keywords": [
  2043. "企业号",
  2044. "回调接入",
  2045. "微信",
  2046. "消息加密",
  2047. "消息解密"
  2048. ],
  2049. "time": "2016-10-27T08:11:14+00:00"
  2050. },
  2051. {
  2052. "name": "ralouphie/getallheaders",
  2053. "version": "3.0.3",
  2054. "source": {
  2055. "type": "git",
  2056. "url": "https://github.com/ralouphie/getallheaders.git",
  2057. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  2058. },
  2059. "dist": {
  2060. "type": "zip",
  2061. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  2062. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  2063. "shasum": "",
  2064. "mirrors": [
  2065. {
  2066. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2067. "preferred": true
  2068. }
  2069. ]
  2070. },
  2071. "require": {
  2072. "php": ">=5.6"
  2073. },
  2074. "require-dev": {
  2075. "php-coveralls/php-coveralls": "^2.1",
  2076. "phpunit/phpunit": "^5 || ^6.5"
  2077. },
  2078. "type": "library",
  2079. "autoload": {
  2080. "files": [
  2081. "src/getallheaders.php"
  2082. ]
  2083. },
  2084. "notification-url": "https://packagist.org/downloads/",
  2085. "license": [
  2086. "MIT"
  2087. ],
  2088. "authors": [
  2089. {
  2090. "name": "Ralph Khattar",
  2091. "email": "ralph.khattar@gmail.com"
  2092. }
  2093. ],
  2094. "description": "A polyfill for getallheaders.",
  2095. "support": {
  2096. "issues": "https://github.com/ralouphie/getallheaders/issues",
  2097. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  2098. },
  2099. "time": "2019-03-08T08:55:37+00:00"
  2100. },
  2101. {
  2102. "name": "shishaoqi/meituan-flash-purchase",
  2103. "version": "v1.1.0",
  2104. "source": {
  2105. "type": "git",
  2106. "url": "https://github.com/shishaoqi/meituan-flash-purchase.git",
  2107. "reference": "23a571d7696b8a8bb3fc4922a26b1a7cc8e12afe"
  2108. },
  2109. "dist": {
  2110. "type": "zip",
  2111. "url": "https://api.github.com/repos/shishaoqi/meituan-flash-purchase/zipball/23a571d7696b8a8bb3fc4922a26b1a7cc8e12afe",
  2112. "reference": "23a571d7696b8a8bb3fc4922a26b1a7cc8e12afe",
  2113. "shasum": "",
  2114. "mirrors": [
  2115. {
  2116. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2117. "preferred": true
  2118. }
  2119. ]
  2120. },
  2121. "require": {
  2122. "guzzlehttp/guzzle": ">=6.5",
  2123. "php": ">=5.6"
  2124. },
  2125. "require-dev": {
  2126. "phpunit/phpunit": "^7.5.20"
  2127. },
  2128. "type": "library",
  2129. "autoload": {
  2130. "psr-4": {
  2131. "Shishaoqi\\MeituanFlashPurchase\\": "src"
  2132. }
  2133. },
  2134. "notification-url": "https://packagist.org/downloads/",
  2135. "license": [
  2136. "MIT"
  2137. ],
  2138. "authors": [
  2139. {
  2140. "name": "shishaoqi",
  2141. "email": "shishaoqi0928@gmail.com"
  2142. }
  2143. ],
  2144. "description": "美团外卖开放平台PHP SDK,更准确的说是美团闪购 SDK",
  2145. "support": {
  2146. "source": "https://github.com/shishaoqi/meituan-flash-purchase/tree/v1.1.0"
  2147. },
  2148. "time": "2022-07-11T09:40:52+00:00"
  2149. },
  2150. {
  2151. "name": "swiftmailer/swiftmailer",
  2152. "version": "5.x-dev",
  2153. "source": {
  2154. "type": "git",
  2155. "url": "https://github.com/swiftmailer/swiftmailer.git",
  2156. "reference": "181b89f18a90f8925ef805f950d47a7190e9b950"
  2157. },
  2158. "dist": {
  2159. "type": "zip",
  2160. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/181b89f18a90f8925ef805f950d47a7190e9b950",
  2161. "reference": "181b89f18a90f8925ef805f950d47a7190e9b950",
  2162. "shasum": "",
  2163. "mirrors": [
  2164. {
  2165. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2166. "preferred": true
  2167. }
  2168. ]
  2169. },
  2170. "require": {
  2171. "php": ">=5.3.3"
  2172. },
  2173. "require-dev": {
  2174. "mockery/mockery": "~0.9.1",
  2175. "symfony/phpunit-bridge": "~3.2"
  2176. },
  2177. "type": "library",
  2178. "extra": {
  2179. "branch-alias": {
  2180. "dev-master": "5.4-dev"
  2181. }
  2182. },
  2183. "autoload": {
  2184. "files": [
  2185. "lib/swift_required.php"
  2186. ]
  2187. },
  2188. "notification-url": "https://packagist.org/downloads/",
  2189. "license": [
  2190. "MIT"
  2191. ],
  2192. "authors": [
  2193. {
  2194. "name": "Chris Corbyn"
  2195. },
  2196. {
  2197. "name": "Fabien Potencier",
  2198. "email": "fabien@symfony.com"
  2199. }
  2200. ],
  2201. "description": "Swiftmailer, free feature-rich PHP mailer",
  2202. "homepage": "https://swiftmailer.symfony.com",
  2203. "keywords": [
  2204. "email",
  2205. "mail",
  2206. "mailer"
  2207. ],
  2208. "abandoned": "symfony/mailer",
  2209. "time": "2018-07-31T09:26:32+00:00"
  2210. },
  2211. {
  2212. "name": "symfony/polyfill-ctype",
  2213. "version": "dev-master",
  2214. "source": {
  2215. "type": "git",
  2216. "url": "https://github.com/symfony/polyfill-ctype.git",
  2217. "reference": "550ebaac289296ce228a706d0867afc34687e3f4"
  2218. },
  2219. "dist": {
  2220. "type": "zip",
  2221. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/550ebaac289296ce228a706d0867afc34687e3f4",
  2222. "reference": "550ebaac289296ce228a706d0867afc34687e3f4",
  2223. "shasum": "",
  2224. "mirrors": [
  2225. {
  2226. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2227. "preferred": true
  2228. }
  2229. ]
  2230. },
  2231. "require": {
  2232. "php": ">=5.3.3"
  2233. },
  2234. "suggest": {
  2235. "ext-ctype": "For best performance"
  2236. },
  2237. "type": "library",
  2238. "extra": {
  2239. "branch-alias": {
  2240. "dev-master": "1.12-dev"
  2241. }
  2242. },
  2243. "autoload": {
  2244. "psr-4": {
  2245. "Symfony\\Polyfill\\Ctype\\": ""
  2246. },
  2247. "files": [
  2248. "bootstrap.php"
  2249. ]
  2250. },
  2251. "notification-url": "https://packagist.org/downloads/",
  2252. "license": [
  2253. "MIT"
  2254. ],
  2255. "authors": [
  2256. {
  2257. "name": "Gert de Pagter",
  2258. "email": "BackEndTea@gmail.com"
  2259. },
  2260. {
  2261. "name": "Symfony Community",
  2262. "homepage": "https://symfony.com/contributors"
  2263. }
  2264. ],
  2265. "description": "Symfony polyfill for ctype functions",
  2266. "homepage": "https://symfony.com",
  2267. "keywords": [
  2268. "compatibility",
  2269. "ctype",
  2270. "polyfill",
  2271. "portable"
  2272. ],
  2273. "time": "2019-08-06T08:03:45+00:00"
  2274. },
  2275. {
  2276. "name": "symfony/polyfill-intl-idn",
  2277. "version": "dev-main",
  2278. "source": {
  2279. "type": "git",
  2280. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  2281. "reference": "59a8d271f00dd0e4c2e518104cc7963f655a1aa8"
  2282. },
  2283. "dist": {
  2284. "type": "zip",
  2285. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/59a8d271f00dd0e4c2e518104cc7963f655a1aa8",
  2286. "reference": "59a8d271f00dd0e4c2e518104cc7963f655a1aa8",
  2287. "shasum": "",
  2288. "mirrors": [
  2289. {
  2290. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2291. "preferred": true
  2292. }
  2293. ]
  2294. },
  2295. "require": {
  2296. "php": ">=7.1",
  2297. "symfony/polyfill-intl-normalizer": "^1.10",
  2298. "symfony/polyfill-php72": "^1.10"
  2299. },
  2300. "suggest": {
  2301. "ext-intl": "For best performance"
  2302. },
  2303. "default-branch": true,
  2304. "type": "library",
  2305. "extra": {
  2306. "branch-alias": {
  2307. "dev-main": "1.26-dev"
  2308. },
  2309. "thanks": {
  2310. "name": "symfony/polyfill",
  2311. "url": "https://github.com/symfony/polyfill"
  2312. }
  2313. },
  2314. "autoload": {
  2315. "files": [
  2316. "bootstrap.php"
  2317. ],
  2318. "psr-4": {
  2319. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  2320. }
  2321. },
  2322. "notification-url": "https://packagist.org/downloads/",
  2323. "license": [
  2324. "MIT"
  2325. ],
  2326. "authors": [
  2327. {
  2328. "name": "Laurent Bassin",
  2329. "email": "laurent@bassin.info"
  2330. },
  2331. {
  2332. "name": "Trevor Rowbotham",
  2333. "email": "trevor.rowbotham@pm.me"
  2334. },
  2335. {
  2336. "name": "Symfony Community",
  2337. "homepage": "https://symfony.com/contributors"
  2338. }
  2339. ],
  2340. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  2341. "homepage": "https://symfony.com",
  2342. "keywords": [
  2343. "compatibility",
  2344. "idn",
  2345. "intl",
  2346. "polyfill",
  2347. "portable",
  2348. "shim"
  2349. ],
  2350. "support": {
  2351. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.26.0"
  2352. },
  2353. "funding": [
  2354. {
  2355. "url": "https://symfony.com/sponsor",
  2356. "type": "custom"
  2357. },
  2358. {
  2359. "url": "https://github.com/fabpot",
  2360. "type": "github"
  2361. },
  2362. {
  2363. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2364. "type": "tidelift"
  2365. }
  2366. ],
  2367. "time": "2022-05-24T11:49:31+00:00"
  2368. },
  2369. {
  2370. "name": "symfony/polyfill-intl-normalizer",
  2371. "version": "dev-main",
  2372. "source": {
  2373. "type": "git",
  2374. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  2375. "reference": "219aa369ceff116e673852dce47c3a41794c14bd"
  2376. },
  2377. "dist": {
  2378. "type": "zip",
  2379. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/219aa369ceff116e673852dce47c3a41794c14bd",
  2380. "reference": "219aa369ceff116e673852dce47c3a41794c14bd",
  2381. "shasum": "",
  2382. "mirrors": [
  2383. {
  2384. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2385. "preferred": true
  2386. }
  2387. ]
  2388. },
  2389. "require": {
  2390. "php": ">=7.1"
  2391. },
  2392. "suggest": {
  2393. "ext-intl": "For best performance"
  2394. },
  2395. "default-branch": true,
  2396. "type": "library",
  2397. "extra": {
  2398. "branch-alias": {
  2399. "dev-main": "1.26-dev"
  2400. },
  2401. "thanks": {
  2402. "name": "symfony/polyfill",
  2403. "url": "https://github.com/symfony/polyfill"
  2404. }
  2405. },
  2406. "autoload": {
  2407. "files": [
  2408. "bootstrap.php"
  2409. ],
  2410. "psr-4": {
  2411. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  2412. },
  2413. "classmap": [
  2414. "Resources/stubs"
  2415. ]
  2416. },
  2417. "notification-url": "https://packagist.org/downloads/",
  2418. "license": [
  2419. "MIT"
  2420. ],
  2421. "authors": [
  2422. {
  2423. "name": "Nicolas Grekas",
  2424. "email": "p@tchwork.com"
  2425. },
  2426. {
  2427. "name": "Symfony Community",
  2428. "homepage": "https://symfony.com/contributors"
  2429. }
  2430. ],
  2431. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  2432. "homepage": "https://symfony.com",
  2433. "keywords": [
  2434. "compatibility",
  2435. "intl",
  2436. "normalizer",
  2437. "polyfill",
  2438. "portable",
  2439. "shim"
  2440. ],
  2441. "support": {
  2442. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.26.0"
  2443. },
  2444. "funding": [
  2445. {
  2446. "url": "https://symfony.com/sponsor",
  2447. "type": "custom"
  2448. },
  2449. {
  2450. "url": "https://github.com/fabpot",
  2451. "type": "github"
  2452. },
  2453. {
  2454. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2455. "type": "tidelift"
  2456. }
  2457. ],
  2458. "time": "2022-05-24T11:49:31+00:00"
  2459. },
  2460. {
  2461. "name": "symfony/polyfill-mbstring",
  2462. "version": "dev-main",
  2463. "source": {
  2464. "type": "git",
  2465. "url": "https://github.com/symfony/polyfill-mbstring.git",
  2466. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e"
  2467. },
  2468. "dist": {
  2469. "type": "zip",
  2470. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  2471. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  2472. "shasum": "",
  2473. "mirrors": [
  2474. {
  2475. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2476. "preferred": true
  2477. }
  2478. ]
  2479. },
  2480. "require": {
  2481. "php": ">=7.1"
  2482. },
  2483. "provide": {
  2484. "ext-mbstring": "*"
  2485. },
  2486. "suggest": {
  2487. "ext-mbstring": "For best performance"
  2488. },
  2489. "default-branch": true,
  2490. "type": "library",
  2491. "extra": {
  2492. "branch-alias": {
  2493. "dev-main": "1.26-dev"
  2494. },
  2495. "thanks": {
  2496. "name": "symfony/polyfill",
  2497. "url": "https://github.com/symfony/polyfill"
  2498. }
  2499. },
  2500. "autoload": {
  2501. "files": [
  2502. "bootstrap.php"
  2503. ],
  2504. "psr-4": {
  2505. "Symfony\\Polyfill\\Mbstring\\": ""
  2506. }
  2507. },
  2508. "notification-url": "https://packagist.org/downloads/",
  2509. "license": [
  2510. "MIT"
  2511. ],
  2512. "authors": [
  2513. {
  2514. "name": "Nicolas Grekas",
  2515. "email": "p@tchwork.com"
  2516. },
  2517. {
  2518. "name": "Symfony Community",
  2519. "homepage": "https://symfony.com/contributors"
  2520. }
  2521. ],
  2522. "description": "Symfony polyfill for the Mbstring extension",
  2523. "homepage": "https://symfony.com",
  2524. "keywords": [
  2525. "compatibility",
  2526. "mbstring",
  2527. "polyfill",
  2528. "portable",
  2529. "shim"
  2530. ],
  2531. "support": {
  2532. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.26.0"
  2533. },
  2534. "funding": [
  2535. {
  2536. "url": "https://symfony.com/sponsor",
  2537. "type": "custom"
  2538. },
  2539. {
  2540. "url": "https://github.com/fabpot",
  2541. "type": "github"
  2542. },
  2543. {
  2544. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2545. "type": "tidelift"
  2546. }
  2547. ],
  2548. "time": "2022-05-24T11:49:31+00:00"
  2549. },
  2550. {
  2551. "name": "symfony/polyfill-php72",
  2552. "version": "dev-main",
  2553. "source": {
  2554. "type": "git",
  2555. "url": "https://github.com/symfony/polyfill-php72.git",
  2556. "reference": "bf44a9fd41feaac72b074de600314a93e2ae78e2"
  2557. },
  2558. "dist": {
  2559. "type": "zip",
  2560. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/bf44a9fd41feaac72b074de600314a93e2ae78e2",
  2561. "reference": "bf44a9fd41feaac72b074de600314a93e2ae78e2",
  2562. "shasum": "",
  2563. "mirrors": [
  2564. {
  2565. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2566. "preferred": true
  2567. }
  2568. ]
  2569. },
  2570. "require": {
  2571. "php": ">=7.1"
  2572. },
  2573. "default-branch": true,
  2574. "type": "library",
  2575. "extra": {
  2576. "branch-alias": {
  2577. "dev-main": "1.26-dev"
  2578. },
  2579. "thanks": {
  2580. "name": "symfony/polyfill",
  2581. "url": "https://github.com/symfony/polyfill"
  2582. }
  2583. },
  2584. "autoload": {
  2585. "files": [
  2586. "bootstrap.php"
  2587. ],
  2588. "psr-4": {
  2589. "Symfony\\Polyfill\\Php72\\": ""
  2590. }
  2591. },
  2592. "notification-url": "https://packagist.org/downloads/",
  2593. "license": [
  2594. "MIT"
  2595. ],
  2596. "authors": [
  2597. {
  2598. "name": "Nicolas Grekas",
  2599. "email": "p@tchwork.com"
  2600. },
  2601. {
  2602. "name": "Symfony Community",
  2603. "homepage": "https://symfony.com/contributors"
  2604. }
  2605. ],
  2606. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  2607. "homepage": "https://symfony.com",
  2608. "keywords": [
  2609. "compatibility",
  2610. "polyfill",
  2611. "portable",
  2612. "shim"
  2613. ],
  2614. "support": {
  2615. "source": "https://github.com/symfony/polyfill-php72/tree/v1.26.0"
  2616. },
  2617. "funding": [
  2618. {
  2619. "url": "https://symfony.com/sponsor",
  2620. "type": "custom"
  2621. },
  2622. {
  2623. "url": "https://github.com/fabpot",
  2624. "type": "github"
  2625. },
  2626. {
  2627. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2628. "type": "tidelift"
  2629. }
  2630. ],
  2631. "time": "2022-05-24T11:49:31+00:00"
  2632. },
  2633. {
  2634. "name": "vlucas/phpdotenv",
  2635. "version": "dev-master",
  2636. "source": {
  2637. "type": "git",
  2638. "url": "https://github.com/vlucas/phpdotenv.git",
  2639. "reference": "e9b60fd90d7cf5037d34f62e6ffc6e07e89eb2dc"
  2640. },
  2641. "dist": {
  2642. "type": "zip",
  2643. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/e9b60fd90d7cf5037d34f62e6ffc6e07e89eb2dc",
  2644. "reference": "e9b60fd90d7cf5037d34f62e6ffc6e07e89eb2dc",
  2645. "shasum": "",
  2646. "mirrors": [
  2647. {
  2648. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2649. "preferred": true
  2650. }
  2651. ]
  2652. },
  2653. "require": {
  2654. "php": "^5.4 || ^7.0",
  2655. "phpoption/phpoption": "^1.5",
  2656. "symfony/polyfill-ctype": "^1.9"
  2657. },
  2658. "require-dev": {
  2659. "phpunit/phpunit": "^4.8.35 || ^5.0 || ^6.0 || ^7.0"
  2660. },
  2661. "type": "library",
  2662. "extra": {
  2663. "branch-alias": {
  2664. "dev-master": "4.0-dev"
  2665. }
  2666. },
  2667. "autoload": {
  2668. "psr-4": {
  2669. "Dotenv\\": "src/"
  2670. }
  2671. },
  2672. "notification-url": "https://packagist.org/downloads/",
  2673. "license": [
  2674. "BSD-3-Clause"
  2675. ],
  2676. "authors": [
  2677. {
  2678. "name": "Graham Campbell",
  2679. "email": "graham@alt-three.com",
  2680. "homepage": "https://gjcampbell.co.uk/"
  2681. },
  2682. {
  2683. "name": "Vance Lucas",
  2684. "email": "vance@vancelucas.com",
  2685. "homepage": "https://vancelucas.com/"
  2686. }
  2687. ],
  2688. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  2689. "keywords": [
  2690. "dotenv",
  2691. "env",
  2692. "environment"
  2693. ],
  2694. "time": "2019-11-04T22:18:38+00:00"
  2695. },
  2696. {
  2697. "name": "workerman/gatewayclient",
  2698. "version": "v3.0.13",
  2699. "source": {
  2700. "type": "git",
  2701. "url": "https://github.com/walkor/GatewayClient.git",
  2702. "reference": "6f4e76f38947be5cabca2c6fee367151f248d949"
  2703. },
  2704. "dist": {
  2705. "type": "zip",
  2706. "url": "https://api.github.com/repos/walkor/GatewayClient/zipball/6f4e76f38947be5cabca2c6fee367151f248d949",
  2707. "reference": "6f4e76f38947be5cabca2c6fee367151f248d949",
  2708. "shasum": "",
  2709. "mirrors": [
  2710. {
  2711. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2712. "preferred": true
  2713. }
  2714. ]
  2715. },
  2716. "type": "library",
  2717. "autoload": {
  2718. "psr-4": {
  2719. "GatewayClient\\": "./"
  2720. }
  2721. },
  2722. "notification-url": "https://packagist.org/downloads/",
  2723. "license": [
  2724. "MIT"
  2725. ],
  2726. "homepage": "http://www.workerman.net",
  2727. "time": "2018-09-15T03:03:50+00:00"
  2728. },
  2729. {
  2730. "name": "yiier/yii2-aliyun-oss",
  2731. "version": "dev-master",
  2732. "source": {
  2733. "type": "git",
  2734. "url": "https://github.com/yiier/yii2-aliyun-oss.git",
  2735. "reference": "ce1587cd58466cdf3a593f78532a210f2645f76a"
  2736. },
  2737. "dist": {
  2738. "type": "zip",
  2739. "url": "https://api.github.com/repos/yiier/yii2-aliyun-oss/zipball/ce1587cd58466cdf3a593f78532a210f2645f76a",
  2740. "reference": "ce1587cd58466cdf3a593f78532a210f2645f76a",
  2741. "shasum": "",
  2742. "mirrors": [
  2743. {
  2744. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2745. "preferred": true
  2746. }
  2747. ]
  2748. },
  2749. "require": {
  2750. "aliyuncs/oss-sdk-php": ">2.0",
  2751. "yiisoft/yii2": "*"
  2752. },
  2753. "type": "yii2-extension",
  2754. "autoload": {
  2755. "psr-4": {
  2756. "yiier\\AliyunOSS\\": ""
  2757. }
  2758. },
  2759. "notification-url": "https://packagist.org/downloads/",
  2760. "license": [
  2761. "BSD-3-Clause"
  2762. ],
  2763. "authors": [
  2764. {
  2765. "name": "forecho",
  2766. "email": "caizhenghai@gmail.com"
  2767. }
  2768. ],
  2769. "description": "Yii2 阿里云 OSS",
  2770. "keywords": [
  2771. "AliyunOSS",
  2772. "extension",
  2773. "oss",
  2774. "yii2"
  2775. ],
  2776. "time": "2020-06-08T06:35:54+00:00"
  2777. },
  2778. {
  2779. "name": "yiisoft/yii2",
  2780. "version": "2.0.49.x-dev",
  2781. "source": {
  2782. "type": "git",
  2783. "url": "https://github.com/yiisoft/yii2-framework.git",
  2784. "reference": "deec9b7330a09e06ab9e002c8718a8b478524dda"
  2785. },
  2786. "dist": {
  2787. "type": "zip",
  2788. "url": "https://api.github.com/repos/yiisoft/yii2-framework/zipball/deec9b7330a09e06ab9e002c8718a8b478524dda",
  2789. "reference": "deec9b7330a09e06ab9e002c8718a8b478524dda",
  2790. "shasum": "",
  2791. "mirrors": [
  2792. {
  2793. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2794. "preferred": true
  2795. }
  2796. ]
  2797. },
  2798. "require": {
  2799. "bower-asset/inputmask": "~3.2.2 | ~3.3.5",
  2800. "bower-asset/jquery": "3.7.*@stable | 3.6.*@stable | 3.5.*@stable | 3.4.*@stable | 3.3.*@stable | 3.2.*@stable | 3.1.*@stable | 2.2.*@stable | 2.1.*@stable | 1.11.*@stable | 1.12.*@stable",
  2801. "bower-asset/punycode": "1.3.*",
  2802. "bower-asset/yii2-pjax": "~2.0.1",
  2803. "cebe/markdown": "~1.0.0 | ~1.1.0 | ~1.2.0",
  2804. "ext-ctype": "*",
  2805. "ext-mbstring": "*",
  2806. "ezyang/htmlpurifier": "^4.6",
  2807. "lib-pcre": "*",
  2808. "paragonie/random_compat": ">=1",
  2809. "php": ">=5.4.0",
  2810. "yiisoft/yii2-composer": "~2.0.4"
  2811. },
  2812. "bin": [
  2813. "yii"
  2814. ],
  2815. "type": "library",
  2816. "extra": {
  2817. "branch-alias": {
  2818. "dev-master": "2.0.x-dev"
  2819. }
  2820. },
  2821. "autoload": {
  2822. "psr-4": {
  2823. "yii\\": ""
  2824. }
  2825. },
  2826. "notification-url": "https://packagist.org/downloads/",
  2827. "license": [
  2828. "BSD-3-Clause"
  2829. ],
  2830. "authors": [
  2831. {
  2832. "name": "Qiang Xue",
  2833. "email": "qiang.xue@gmail.com",
  2834. "homepage": "https://www.yiiframework.com/",
  2835. "role": "Founder and project lead"
  2836. },
  2837. {
  2838. "name": "Alexander Makarov",
  2839. "email": "sam@rmcreative.ru",
  2840. "homepage": "https://rmcreative.ru/",
  2841. "role": "Core framework development"
  2842. },
  2843. {
  2844. "name": "Maurizio Domba",
  2845. "homepage": "http://mdomba.info/",
  2846. "role": "Core framework development"
  2847. },
  2848. {
  2849. "name": "Carsten Brandt",
  2850. "email": "mail@cebe.cc",
  2851. "homepage": "https://www.cebe.cc/",
  2852. "role": "Core framework development"
  2853. },
  2854. {
  2855. "name": "Timur Ruziev",
  2856. "email": "resurtm@gmail.com",
  2857. "homepage": "http://resurtm.com/",
  2858. "role": "Core framework development"
  2859. },
  2860. {
  2861. "name": "Paul Klimov",
  2862. "email": "klimov.paul@gmail.com",
  2863. "role": "Core framework development"
  2864. },
  2865. {
  2866. "name": "Dmitry Naumenko",
  2867. "email": "d.naumenko.a@gmail.com",
  2868. "role": "Core framework development"
  2869. },
  2870. {
  2871. "name": "Boudewijn Vahrmeijer",
  2872. "email": "info@dynasource.eu",
  2873. "homepage": "http://dynasource.eu",
  2874. "role": "Core framework development"
  2875. }
  2876. ],
  2877. "description": "Yii PHP Framework Version 2",
  2878. "homepage": "https://www.yiiframework.com/",
  2879. "keywords": [
  2880. "framework",
  2881. "yii2"
  2882. ],
  2883. "support": {
  2884. "forum": "https://forum.yiiframework.com/",
  2885. "irc": "ircs://irc.libera.chat:6697/yii",
  2886. "issues": "https://github.com/yiisoft/yii2/issues?state=open",
  2887. "source": "https://github.com/yiisoft/yii2",
  2888. "wiki": "https://www.yiiframework.com/wiki"
  2889. },
  2890. "funding": [
  2891. {
  2892. "url": "https://github.com/yiisoft",
  2893. "type": "github"
  2894. },
  2895. {
  2896. "url": "https://opencollective.com/yiisoft",
  2897. "type": "open_collective"
  2898. },
  2899. {
  2900. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2",
  2901. "type": "tidelift"
  2902. }
  2903. ],
  2904. "time": "2024-06-10T20:26:16+00:00"
  2905. },
  2906. {
  2907. "name": "yiisoft/yii2-bootstrap",
  2908. "version": "dev-master",
  2909. "source": {
  2910. "type": "git",
  2911. "url": "https://github.com/yiisoft/yii2-bootstrap.git",
  2912. "reference": "454552b7a90e2a803def733e4d1f612b850158da"
  2913. },
  2914. "dist": {
  2915. "type": "zip",
  2916. "url": "https://api.github.com/repos/yiisoft/yii2-bootstrap/zipball/454552b7a90e2a803def733e4d1f612b850158da",
  2917. "reference": "454552b7a90e2a803def733e4d1f612b850158da",
  2918. "shasum": "",
  2919. "mirrors": [
  2920. {
  2921. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2922. "preferred": true
  2923. }
  2924. ]
  2925. },
  2926. "require": {
  2927. "bower-asset/bootstrap": "3.4.* | 3.3.* | 3.2.* | 3.1.*",
  2928. "yiisoft/yii2": "~2.0.6"
  2929. },
  2930. "require-dev": {
  2931. "phpunit/phpunit": "<7"
  2932. },
  2933. "type": "yii2-extension",
  2934. "extra": {
  2935. "branch-alias": {
  2936. "dev-master": "2.0.x-dev"
  2937. }
  2938. },
  2939. "autoload": {
  2940. "psr-4": {
  2941. "yii\\bootstrap\\": "src"
  2942. }
  2943. },
  2944. "notification-url": "https://packagist.org/downloads/",
  2945. "license": [
  2946. "BSD-3-Clause"
  2947. ],
  2948. "authors": [
  2949. {
  2950. "name": "Paul Klimov",
  2951. "email": "klimov.paul@gmail.com"
  2952. },
  2953. {
  2954. "name": "Alexander Makarov",
  2955. "email": "sam@rmcreative.ru",
  2956. "homepage": "http://rmcreative.ru/"
  2957. },
  2958. {
  2959. "name": "Antonio Ramirez",
  2960. "email": "amigo.cobos@gmail.com"
  2961. },
  2962. {
  2963. "name": "Qiang Xue",
  2964. "email": "qiang.xue@gmail.com",
  2965. "homepage": "http://www.yiiframework.com/"
  2966. }
  2967. ],
  2968. "description": "The Twitter Bootstrap extension for the Yii framework",
  2969. "keywords": [
  2970. "bootstrap",
  2971. "yii2"
  2972. ],
  2973. "time": "2019-02-17T13:23:56+00:00"
  2974. },
  2975. {
  2976. "name": "yiisoft/yii2-composer",
  2977. "version": "dev-master",
  2978. "source": {
  2979. "type": "git",
  2980. "url": "https://github.com/yiisoft/yii2-composer.git",
  2981. "reference": "b684b01ecb119c8287721def726a0e24fec2fef2"
  2982. },
  2983. "dist": {
  2984. "type": "zip",
  2985. "url": "https://api.github.com/repos/yiisoft/yii2-composer/zipball/b684b01ecb119c8287721def726a0e24fec2fef2",
  2986. "reference": "b684b01ecb119c8287721def726a0e24fec2fef2",
  2987. "shasum": "",
  2988. "mirrors": [
  2989. {
  2990. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2991. "preferred": true
  2992. }
  2993. ]
  2994. },
  2995. "require": {
  2996. "composer-plugin-api": "^1.0 | ^2.0"
  2997. },
  2998. "require-dev": {
  2999. "composer/composer": "^1.0 | ^2.0@dev",
  3000. "phpunit/phpunit": "<7"
  3001. },
  3002. "default-branch": true,
  3003. "type": "composer-plugin",
  3004. "extra": {
  3005. "class": "yii\\composer\\Plugin",
  3006. "branch-alias": {
  3007. "dev-master": "2.0.x-dev"
  3008. }
  3009. },
  3010. "autoload": {
  3011. "psr-4": {
  3012. "yii\\composer\\": ""
  3013. }
  3014. },
  3015. "notification-url": "https://packagist.org/downloads/",
  3016. "license": [
  3017. "BSD-3-Clause"
  3018. ],
  3019. "authors": [
  3020. {
  3021. "name": "Qiang Xue",
  3022. "email": "qiang.xue@gmail.com"
  3023. },
  3024. {
  3025. "name": "Carsten Brandt",
  3026. "email": "mail@cebe.cc"
  3027. }
  3028. ],
  3029. "description": "The composer plugin for Yii extension installer",
  3030. "keywords": [
  3031. "composer",
  3032. "extension installer",
  3033. "yii2"
  3034. ],
  3035. "support": {
  3036. "forum": "https://www.yiiframework.com/forum/",
  3037. "irc": "ircs://irc.libera.chat:6697/yii",
  3038. "issues": "https://github.com/yiisoft/yii2-composer/issues",
  3039. "source": "https://github.com/yiisoft/yii2-composer",
  3040. "wiki": "https://www.yiiframework.com/wiki/"
  3041. },
  3042. "funding": [
  3043. {
  3044. "url": "https://github.com/yiisoft",
  3045. "type": "github"
  3046. },
  3047. {
  3048. "url": "https://opencollective.com/yiisoft",
  3049. "type": "open_collective"
  3050. },
  3051. {
  3052. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2-composer",
  3053. "type": "tidelift"
  3054. }
  3055. ],
  3056. "time": "2025-02-13T20:59:36+00:00"
  3057. },
  3058. {
  3059. "name": "yiisoft/yii2-imagine",
  3060. "version": "dev-master",
  3061. "source": {
  3062. "type": "git",
  3063. "url": "https://github.com/yiisoft/yii2-imagine.git",
  3064. "reference": "21d3df6f100410a40a163f849d311faf138b88b8"
  3065. },
  3066. "dist": {
  3067. "type": "zip",
  3068. "url": "https://api.github.com/repos/yiisoft/yii2-imagine/zipball/21d3df6f100410a40a163f849d311faf138b88b8",
  3069. "reference": "21d3df6f100410a40a163f849d311faf138b88b8",
  3070. "shasum": "",
  3071. "mirrors": [
  3072. {
  3073. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3074. "preferred": true
  3075. }
  3076. ]
  3077. },
  3078. "require": {
  3079. "imagine/imagine": "^0.6 | ^0.7 | ^1.0",
  3080. "yiisoft/yii2": "~2.0.0"
  3081. },
  3082. "require-dev": {
  3083. "phpunit/phpunit": "<7"
  3084. },
  3085. "type": "yii2-extension",
  3086. "extra": {
  3087. "branch-alias": {
  3088. "dev-master": "2.0.x-dev"
  3089. }
  3090. },
  3091. "autoload": {
  3092. "psr-4": {
  3093. "yii\\imagine\\": "src"
  3094. }
  3095. },
  3096. "notification-url": "https://packagist.org/downloads/",
  3097. "license": [
  3098. "BSD-3-Clause"
  3099. ],
  3100. "authors": [
  3101. {
  3102. "name": "Antonio Ramirez",
  3103. "email": "amigo.cobos@gmail.com"
  3104. }
  3105. ],
  3106. "description": "The Imagine integration for the Yii framework",
  3107. "keywords": [
  3108. "helper",
  3109. "image",
  3110. "imagine",
  3111. "yii2"
  3112. ],
  3113. "time": "2019-12-06T16:12:49+00:00"
  3114. },
  3115. {
  3116. "name": "yiisoft/yii2-redis",
  3117. "version": "2.0.6",
  3118. "source": {
  3119. "type": "git",
  3120. "url": "https://github.com/yiisoft/yii2-redis.git",
  3121. "reference": "5dc55d5187923219e9db86d149d56acf1f5a6ee8"
  3122. },
  3123. "dist": {
  3124. "type": "zip",
  3125. "url": "https://api.github.com/repos/yiisoft/yii2-redis/zipball/5dc55d5187923219e9db86d149d56acf1f5a6ee8",
  3126. "reference": "5dc55d5187923219e9db86d149d56acf1f5a6ee8",
  3127. "shasum": "",
  3128. "mirrors": [
  3129. {
  3130. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3131. "preferred": true
  3132. }
  3133. ]
  3134. },
  3135. "require": {
  3136. "yiisoft/yii2": "~2.0.11"
  3137. },
  3138. "type": "yii2-extension",
  3139. "extra": {
  3140. "branch-alias": {
  3141. "dev-master": "2.0.x-dev"
  3142. }
  3143. },
  3144. "autoload": {
  3145. "psr-4": {
  3146. "yii\\redis\\": ""
  3147. }
  3148. },
  3149. "notification-url": "https://packagist.org/downloads/",
  3150. "license": [
  3151. "BSD-3-Clause"
  3152. ],
  3153. "authors": [
  3154. {
  3155. "name": "Carsten Brandt",
  3156. "email": "mail@cebe.cc"
  3157. }
  3158. ],
  3159. "description": "Redis Cache, Session and ActiveRecord for the Yii framework",
  3160. "keywords": [
  3161. "active-record",
  3162. "cache",
  3163. "redis",
  3164. "session",
  3165. "yii2"
  3166. ],
  3167. "time": "2017-04-05T13:42:11+00:00"
  3168. },
  3169. {
  3170. "name": "yiisoft/yii2-swiftmailer",
  3171. "version": "2.0.7",
  3172. "source": {
  3173. "type": "git",
  3174. "url": "https://github.com/yiisoft/yii2-swiftmailer.git",
  3175. "reference": "8a03a62cbcb82e7697d3002eb43a8d2637f566ec"
  3176. },
  3177. "dist": {
  3178. "type": "zip",
  3179. "url": "https://api.github.com/repos/yiisoft/yii2-swiftmailer/zipball/8a03a62cbcb82e7697d3002eb43a8d2637f566ec",
  3180. "reference": "8a03a62cbcb82e7697d3002eb43a8d2637f566ec",
  3181. "shasum": "",
  3182. "mirrors": [
  3183. {
  3184. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3185. "preferred": true
  3186. }
  3187. ]
  3188. },
  3189. "require": {
  3190. "swiftmailer/swiftmailer": "~5.0",
  3191. "yiisoft/yii2": "~2.0.4"
  3192. },
  3193. "type": "yii2-extension",
  3194. "extra": {
  3195. "branch-alias": {
  3196. "dev-master": "2.0.x-dev"
  3197. }
  3198. },
  3199. "autoload": {
  3200. "psr-4": {
  3201. "yii\\swiftmailer\\": ""
  3202. }
  3203. },
  3204. "notification-url": "https://packagist.org/downloads/",
  3205. "license": [
  3206. "BSD-3-Clause"
  3207. ],
  3208. "authors": [
  3209. {
  3210. "name": "Paul Klimov",
  3211. "email": "klimov.paul@gmail.com"
  3212. }
  3213. ],
  3214. "description": "The SwiftMailer integration for the Yii framework",
  3215. "keywords": [
  3216. "email",
  3217. "mail",
  3218. "mailer",
  3219. "swift",
  3220. "swiftmailer",
  3221. "yii2"
  3222. ],
  3223. "time": "2017-05-01T08:29:00+00:00"
  3224. }
  3225. ],
  3226. "packages-dev": [
  3227. {
  3228. "name": "bower-asset/typeahead.js",
  3229. "version": "v0.11.1",
  3230. "source": {
  3231. "type": "git",
  3232. "url": "https://github.com/twitter/typeahead.js.git",
  3233. "reference": "588440f66559714280628a4f9799f0c4eb880a4a"
  3234. },
  3235. "dist": {
  3236. "type": "zip",
  3237. "url": "https://api.github.com/repos/twitter/typeahead.js/zipball/588440f66559714280628a4f9799f0c4eb880a4a",
  3238. "reference": "588440f66559714280628a4f9799f0c4eb880a4a",
  3239. "shasum": ""
  3240. },
  3241. "require": {
  3242. "bower-asset/jquery": ">=1.7"
  3243. },
  3244. "require-dev": {
  3245. "bower-asset/jasmine-ajax": "~1.3.1",
  3246. "bower-asset/jasmine-jquery": "~1.5.2",
  3247. "bower-asset/jquery": "~1.7"
  3248. },
  3249. "type": "bower-asset-library",
  3250. "extra": {
  3251. "bower-asset-main": "dist/typeahead.bundle.js"
  3252. }
  3253. },
  3254. {
  3255. "name": "doctrine/instantiator",
  3256. "version": "1.5.x-dev",
  3257. "source": {
  3258. "type": "git",
  3259. "url": "https://github.com/doctrine/instantiator.git",
  3260. "reference": "12be2483e1f0e850b353e26869e4e6c038459501"
  3261. },
  3262. "dist": {
  3263. "type": "zip",
  3264. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/12be2483e1f0e850b353e26869e4e6c038459501",
  3265. "reference": "12be2483e1f0e850b353e26869e4e6c038459501",
  3266. "shasum": "",
  3267. "mirrors": [
  3268. {
  3269. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3270. "preferred": true
  3271. }
  3272. ]
  3273. },
  3274. "require": {
  3275. "php": "^7.1 || ^8.0"
  3276. },
  3277. "require-dev": {
  3278. "doctrine/coding-standard": "^9 || ^12",
  3279. "ext-pdo": "*",
  3280. "ext-phar": "*",
  3281. "phpbench/phpbench": "^0.16 || ^1",
  3282. "phpstan/phpstan": "^1.4",
  3283. "phpstan/phpstan-phpunit": "^1",
  3284. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6",
  3285. "vimeo/psalm": "^4.30 || ^5.4"
  3286. },
  3287. "type": "library",
  3288. "autoload": {
  3289. "psr-4": {
  3290. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  3291. }
  3292. },
  3293. "notification-url": "https://packagist.org/downloads/",
  3294. "license": [
  3295. "MIT"
  3296. ],
  3297. "authors": [
  3298. {
  3299. "name": "Marco Pivetta",
  3300. "email": "ocramius@gmail.com",
  3301. "homepage": "https://ocramius.github.io/"
  3302. }
  3303. ],
  3304. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  3305. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  3306. "keywords": [
  3307. "constructor",
  3308. "instantiate"
  3309. ],
  3310. "support": {
  3311. "issues": "https://github.com/doctrine/instantiator/issues",
  3312. "source": "https://github.com/doctrine/instantiator/tree/1.5.x"
  3313. },
  3314. "funding": [
  3315. {
  3316. "url": "https://www.doctrine-project.org/sponsorship.html",
  3317. "type": "custom"
  3318. },
  3319. {
  3320. "url": "https://www.patreon.com/phpdoctrine",
  3321. "type": "patreon"
  3322. },
  3323. {
  3324. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  3325. "type": "tidelift"
  3326. }
  3327. ],
  3328. "time": "2023-12-09T14:16:53+00:00"
  3329. },
  3330. {
  3331. "name": "fzaninotto/faker",
  3332. "version": "dev-master",
  3333. "source": {
  3334. "type": "git",
  3335. "url": "https://github.com/fzaninotto/Faker.git",
  3336. "reference": "fb218ada627f7c750c6e0e41cae486d2db48e911"
  3337. },
  3338. "dist": {
  3339. "type": "zip",
  3340. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/fb218ada627f7c750c6e0e41cae486d2db48e911",
  3341. "reference": "fb218ada627f7c750c6e0e41cae486d2db48e911",
  3342. "shasum": "",
  3343. "mirrors": [
  3344. {
  3345. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3346. "preferred": true
  3347. }
  3348. ]
  3349. },
  3350. "require": {
  3351. "php": "^5.3.3 || ^7.0"
  3352. },
  3353. "require-dev": {
  3354. "ext-intl": "*",
  3355. "phpunit/phpunit": "^4.8.35 || ^5.7",
  3356. "squizlabs/php_codesniffer": "^1.5"
  3357. },
  3358. "type": "library",
  3359. "extra": {
  3360. "branch-alias": {
  3361. "dev-master": "1.9-dev"
  3362. }
  3363. },
  3364. "autoload": {
  3365. "psr-4": {
  3366. "Faker\\": "src/Faker/"
  3367. }
  3368. },
  3369. "notification-url": "https://packagist.org/downloads/",
  3370. "license": [
  3371. "MIT"
  3372. ],
  3373. "authors": [
  3374. {
  3375. "name": "François Zaninotto"
  3376. }
  3377. ],
  3378. "description": "Faker is a PHP library that generates fake data for you.",
  3379. "keywords": [
  3380. "data",
  3381. "faker",
  3382. "fixtures"
  3383. ],
  3384. "abandoned": true,
  3385. "time": "2019-04-16T09:48:34+00:00"
  3386. },
  3387. {
  3388. "name": "myclabs/deep-copy",
  3389. "version": "1.x-dev",
  3390. "source": {
  3391. "type": "git",
  3392. "url": "https://github.com/myclabs/DeepCopy.git",
  3393. "reference": "faed855a7b5f4d4637717c2b3863e277116beb36"
  3394. },
  3395. "dist": {
  3396. "type": "zip",
  3397. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/faed855a7b5f4d4637717c2b3863e277116beb36",
  3398. "reference": "faed855a7b5f4d4637717c2b3863e277116beb36",
  3399. "shasum": "",
  3400. "mirrors": [
  3401. {
  3402. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3403. "preferred": true
  3404. }
  3405. ]
  3406. },
  3407. "require": {
  3408. "php": "^7.1 || ^8.0"
  3409. },
  3410. "conflict": {
  3411. "doctrine/collections": "<1.6.8",
  3412. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  3413. },
  3414. "require-dev": {
  3415. "doctrine/collections": "^1.6.8",
  3416. "doctrine/common": "^2.13.3 || ^3.2.2",
  3417. "phpspec/prophecy": "^1.10",
  3418. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  3419. },
  3420. "default-branch": true,
  3421. "type": "library",
  3422. "autoload": {
  3423. "files": [
  3424. "src/DeepCopy/deep_copy.php"
  3425. ],
  3426. "psr-4": {
  3427. "DeepCopy\\": "src/DeepCopy/"
  3428. }
  3429. },
  3430. "notification-url": "https://packagist.org/downloads/",
  3431. "license": [
  3432. "MIT"
  3433. ],
  3434. "description": "Create deep copies (clones) of your objects",
  3435. "keywords": [
  3436. "clone",
  3437. "copy",
  3438. "duplicate",
  3439. "object",
  3440. "object graph"
  3441. ],
  3442. "support": {
  3443. "issues": "https://github.com/myclabs/DeepCopy/issues",
  3444. "source": "https://github.com/myclabs/DeepCopy/tree/1.13.3"
  3445. },
  3446. "funding": [
  3447. {
  3448. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  3449. "type": "tidelift"
  3450. }
  3451. ],
  3452. "time": "2025-07-05T12:25:42+00:00"
  3453. },
  3454. {
  3455. "name": "phar-io/manifest",
  3456. "version": "1.0.3",
  3457. "source": {
  3458. "type": "git",
  3459. "url": "https://github.com/phar-io/manifest.git",
  3460. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4"
  3461. },
  3462. "dist": {
  3463. "type": "zip",
  3464. "url": "https://api.github.com/repos/phar-io/manifest/zipball/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  3465. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  3466. "shasum": "",
  3467. "mirrors": [
  3468. {
  3469. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3470. "preferred": true
  3471. }
  3472. ]
  3473. },
  3474. "require": {
  3475. "ext-dom": "*",
  3476. "ext-phar": "*",
  3477. "phar-io/version": "^2.0",
  3478. "php": "^5.6 || ^7.0"
  3479. },
  3480. "type": "library",
  3481. "extra": {
  3482. "branch-alias": {
  3483. "dev-master": "1.0.x-dev"
  3484. }
  3485. },
  3486. "autoload": {
  3487. "classmap": [
  3488. "src/"
  3489. ]
  3490. },
  3491. "notification-url": "https://packagist.org/downloads/",
  3492. "license": [
  3493. "BSD-3-Clause"
  3494. ],
  3495. "authors": [
  3496. {
  3497. "name": "Arne Blankerts",
  3498. "email": "arne@blankerts.de",
  3499. "role": "Developer"
  3500. },
  3501. {
  3502. "name": "Sebastian Heuer",
  3503. "email": "sebastian@phpeople.de",
  3504. "role": "Developer"
  3505. },
  3506. {
  3507. "name": "Sebastian Bergmann",
  3508. "email": "sebastian@phpunit.de",
  3509. "role": "Developer"
  3510. }
  3511. ],
  3512. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  3513. "support": {
  3514. "issues": "https://github.com/phar-io/manifest/issues",
  3515. "source": "https://github.com/phar-io/manifest/tree/master"
  3516. },
  3517. "time": "2018-07-08T19:23:20+00:00"
  3518. },
  3519. {
  3520. "name": "phar-io/version",
  3521. "version": "2.0.1",
  3522. "source": {
  3523. "type": "git",
  3524. "url": "https://github.com/phar-io/version.git",
  3525. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6"
  3526. },
  3527. "dist": {
  3528. "type": "zip",
  3529. "url": "https://api.github.com/repos/phar-io/version/zipball/45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  3530. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  3531. "shasum": "",
  3532. "mirrors": [
  3533. {
  3534. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3535. "preferred": true
  3536. }
  3537. ]
  3538. },
  3539. "require": {
  3540. "php": "^5.6 || ^7.0"
  3541. },
  3542. "type": "library",
  3543. "autoload": {
  3544. "classmap": [
  3545. "src/"
  3546. ]
  3547. },
  3548. "notification-url": "https://packagist.org/downloads/",
  3549. "license": [
  3550. "BSD-3-Clause"
  3551. ],
  3552. "authors": [
  3553. {
  3554. "name": "Arne Blankerts",
  3555. "email": "arne@blankerts.de",
  3556. "role": "Developer"
  3557. },
  3558. {
  3559. "name": "Sebastian Heuer",
  3560. "email": "sebastian@phpeople.de",
  3561. "role": "Developer"
  3562. },
  3563. {
  3564. "name": "Sebastian Bergmann",
  3565. "email": "sebastian@phpunit.de",
  3566. "role": "Developer"
  3567. }
  3568. ],
  3569. "description": "Library for handling version information and constraints",
  3570. "support": {
  3571. "issues": "https://github.com/phar-io/version/issues",
  3572. "source": "https://github.com/phar-io/version/tree/master"
  3573. },
  3574. "time": "2018-07-08T19:19:57+00:00"
  3575. },
  3576. {
  3577. "name": "phpdocumentor/reflection-common",
  3578. "version": "2.0.0",
  3579. "source": {
  3580. "type": "git",
  3581. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  3582. "reference": "63a995caa1ca9e5590304cd845c15ad6d482a62a"
  3583. },
  3584. "dist": {
  3585. "type": "zip",
  3586. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/63a995caa1ca9e5590304cd845c15ad6d482a62a",
  3587. "reference": "63a995caa1ca9e5590304cd845c15ad6d482a62a",
  3588. "shasum": "",
  3589. "mirrors": [
  3590. {
  3591. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3592. "preferred": true
  3593. }
  3594. ]
  3595. },
  3596. "require": {
  3597. "php": ">=7.1"
  3598. },
  3599. "require-dev": {
  3600. "phpunit/phpunit": "~6"
  3601. },
  3602. "type": "library",
  3603. "extra": {
  3604. "branch-alias": {
  3605. "dev-master": "2.x-dev"
  3606. }
  3607. },
  3608. "autoload": {
  3609. "psr-4": {
  3610. "phpDocumentor\\Reflection\\": "src/"
  3611. }
  3612. },
  3613. "notification-url": "https://packagist.org/downloads/",
  3614. "license": [
  3615. "MIT"
  3616. ],
  3617. "authors": [
  3618. {
  3619. "name": "Jaap van Otterdijk",
  3620. "email": "opensource@ijaap.nl"
  3621. }
  3622. ],
  3623. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  3624. "homepage": "http://www.phpdoc.org",
  3625. "keywords": [
  3626. "FQSEN",
  3627. "phpDocumentor",
  3628. "phpdoc",
  3629. "reflection",
  3630. "static analysis"
  3631. ],
  3632. "support": {
  3633. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  3634. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.0.0"
  3635. },
  3636. "time": "2018-08-07T13:53:10+00:00"
  3637. },
  3638. {
  3639. "name": "phpdocumentor/reflection-docblock",
  3640. "version": "5.0.0-alpha5",
  3641. "source": {
  3642. "type": "git",
  3643. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  3644. "reference": "8fcadfe5f85c38705151c9ab23b4781f23e6a70e"
  3645. },
  3646. "dist": {
  3647. "type": "zip",
  3648. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/8fcadfe5f85c38705151c9ab23b4781f23e6a70e",
  3649. "reference": "8fcadfe5f85c38705151c9ab23b4781f23e6a70e",
  3650. "shasum": "",
  3651. "mirrors": [
  3652. {
  3653. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3654. "preferred": true
  3655. }
  3656. ]
  3657. },
  3658. "require": {
  3659. "php": ">=7.1",
  3660. "phpdocumentor/type-resolver": "^0",
  3661. "webmozart/assert": "^1"
  3662. },
  3663. "require-dev": {
  3664. "doctrine/instantiator": "^1",
  3665. "mockery/mockery": "^1"
  3666. },
  3667. "type": "library",
  3668. "extra": {
  3669. "branch-alias": {
  3670. "dev-master": "5.x-dev"
  3671. }
  3672. },
  3673. "autoload": {
  3674. "psr-4": {
  3675. "phpDocumentor\\Reflection\\": "src"
  3676. }
  3677. },
  3678. "notification-url": "https://packagist.org/downloads/",
  3679. "license": [
  3680. "MIT"
  3681. ],
  3682. "authors": [
  3683. {
  3684. "name": "Mike van Riel",
  3685. "email": "me@mikevanriel.com"
  3686. }
  3687. ],
  3688. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  3689. "support": {
  3690. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  3691. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/master"
  3692. },
  3693. "time": "2019-06-15T20:45:01+00:00"
  3694. },
  3695. {
  3696. "name": "phpdocumentor/type-resolver",
  3697. "version": "0.7.x-dev",
  3698. "source": {
  3699. "type": "git",
  3700. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  3701. "reference": "e424cdf9bbab5bccdede5f123f706083b11bcef9"
  3702. },
  3703. "dist": {
  3704. "type": "zip",
  3705. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/e424cdf9bbab5bccdede5f123f706083b11bcef9",
  3706. "reference": "e424cdf9bbab5bccdede5f123f706083b11bcef9",
  3707. "shasum": "",
  3708. "mirrors": [
  3709. {
  3710. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3711. "preferred": true
  3712. }
  3713. ]
  3714. },
  3715. "require": {
  3716. "php": ">=7.1",
  3717. "phpdocumentor/reflection-common": "~2.0.0-beta1"
  3718. },
  3719. "require-dev": {
  3720. "mockery/mockery": "~1",
  3721. "phpunit/phpunit": "~6"
  3722. },
  3723. "type": "library",
  3724. "extra": {
  3725. "branch-alias": {
  3726. "dev-master": "0.x-dev"
  3727. }
  3728. },
  3729. "autoload": {
  3730. "psr-4": {
  3731. "phpDocumentor\\Reflection\\": "src"
  3732. }
  3733. },
  3734. "notification-url": "https://packagist.org/downloads/",
  3735. "license": [
  3736. "MIT"
  3737. ],
  3738. "authors": [
  3739. {
  3740. "name": "Mike van Riel",
  3741. "email": "me@mikevanriel.com"
  3742. }
  3743. ],
  3744. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  3745. "support": {
  3746. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  3747. "source": "https://github.com/phpDocumentor/TypeResolver/tree/0.7.x"
  3748. },
  3749. "time": "2019-12-20T14:34:12+00:00"
  3750. },
  3751. {
  3752. "name": "phpspec/php-diff",
  3753. "version": "dev-master",
  3754. "source": {
  3755. "type": "git",
  3756. "url": "https://github.com/phpspec/php-diff.git",
  3757. "reference": "0464787bfa7cd13576c5a1e318709768798bec6a"
  3758. },
  3759. "dist": {
  3760. "type": "zip",
  3761. "url": "https://api.github.com/repos/phpspec/php-diff/zipball/0464787bfa7cd13576c5a1e318709768798bec6a",
  3762. "reference": "0464787bfa7cd13576c5a1e318709768798bec6a",
  3763. "shasum": "",
  3764. "mirrors": [
  3765. {
  3766. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3767. "preferred": true
  3768. }
  3769. ]
  3770. },
  3771. "type": "library",
  3772. "extra": {
  3773. "branch-alias": {
  3774. "dev-master": "1.0.x-dev"
  3775. }
  3776. },
  3777. "autoload": {
  3778. "psr-0": {
  3779. "Diff": "lib/"
  3780. }
  3781. },
  3782. "notification-url": "https://packagist.org/downloads/",
  3783. "license": [
  3784. "BSD-3-Clause"
  3785. ],
  3786. "authors": [
  3787. {
  3788. "name": "Chris Boulton",
  3789. "homepage": "http://github.com/chrisboulton"
  3790. }
  3791. ],
  3792. "description": "A comprehensive library for generating differences between two hashable objects (strings or arrays).",
  3793. "time": "2016-04-07T12:29:16+00:00"
  3794. },
  3795. {
  3796. "name": "phpspec/prophecy",
  3797. "version": "v1.10.3",
  3798. "source": {
  3799. "type": "git",
  3800. "url": "https://github.com/phpspec/prophecy.git",
  3801. "reference": "451c3cd1418cf640de218914901e51b064abb093"
  3802. },
  3803. "dist": {
  3804. "type": "zip",
  3805. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/451c3cd1418cf640de218914901e51b064abb093",
  3806. "reference": "451c3cd1418cf640de218914901e51b064abb093",
  3807. "shasum": "",
  3808. "mirrors": [
  3809. {
  3810. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3811. "preferred": true
  3812. }
  3813. ]
  3814. },
  3815. "require": {
  3816. "doctrine/instantiator": "^1.0.2",
  3817. "php": "^5.3|^7.0",
  3818. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0|^5.0",
  3819. "sebastian/comparator": "^1.2.3|^2.0|^3.0|^4.0",
  3820. "sebastian/recursion-context": "^1.0|^2.0|^3.0|^4.0"
  3821. },
  3822. "require-dev": {
  3823. "phpspec/phpspec": "^2.5 || ^3.2",
  3824. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  3825. },
  3826. "type": "library",
  3827. "extra": {
  3828. "branch-alias": {
  3829. "dev-master": "1.10.x-dev"
  3830. }
  3831. },
  3832. "autoload": {
  3833. "psr-4": {
  3834. "Prophecy\\": "src/Prophecy"
  3835. }
  3836. },
  3837. "notification-url": "https://packagist.org/downloads/",
  3838. "license": [
  3839. "MIT"
  3840. ],
  3841. "authors": [
  3842. {
  3843. "name": "Konstantin Kudryashov",
  3844. "email": "ever.zet@gmail.com",
  3845. "homepage": "http://everzet.com"
  3846. },
  3847. {
  3848. "name": "Marcello Duarte",
  3849. "email": "marcello.duarte@gmail.com"
  3850. }
  3851. ],
  3852. "description": "Highly opinionated mocking framework for PHP 5.3+",
  3853. "homepage": "https://github.com/phpspec/prophecy",
  3854. "keywords": [
  3855. "Double",
  3856. "Dummy",
  3857. "fake",
  3858. "mock",
  3859. "spy",
  3860. "stub"
  3861. ],
  3862. "support": {
  3863. "issues": "https://github.com/phpspec/prophecy/issues",
  3864. "source": "https://github.com/phpspec/prophecy/tree/v1.10.3"
  3865. },
  3866. "time": "2020-03-05T15:02:03+00:00"
  3867. },
  3868. {
  3869. "name": "phpunit/php-code-coverage",
  3870. "version": "6.1.4",
  3871. "source": {
  3872. "type": "git",
  3873. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  3874. "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d"
  3875. },
  3876. "dist": {
  3877. "type": "zip",
  3878. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/807e6013b00af69b6c5d9ceb4282d0393dbb9d8d",
  3879. "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d",
  3880. "shasum": "",
  3881. "mirrors": [
  3882. {
  3883. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3884. "preferred": true
  3885. }
  3886. ]
  3887. },
  3888. "require": {
  3889. "ext-dom": "*",
  3890. "ext-xmlwriter": "*",
  3891. "php": "^7.1",
  3892. "phpunit/php-file-iterator": "^2.0",
  3893. "phpunit/php-text-template": "^1.2.1",
  3894. "phpunit/php-token-stream": "^3.0",
  3895. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  3896. "sebastian/environment": "^3.1 || ^4.0",
  3897. "sebastian/version": "^2.0.1",
  3898. "theseer/tokenizer": "^1.1"
  3899. },
  3900. "require-dev": {
  3901. "phpunit/phpunit": "^7.0"
  3902. },
  3903. "suggest": {
  3904. "ext-xdebug": "^2.6.0"
  3905. },
  3906. "type": "library",
  3907. "extra": {
  3908. "branch-alias": {
  3909. "dev-master": "6.1-dev"
  3910. }
  3911. },
  3912. "autoload": {
  3913. "classmap": [
  3914. "src/"
  3915. ]
  3916. },
  3917. "notification-url": "https://packagist.org/downloads/",
  3918. "license": [
  3919. "BSD-3-Clause"
  3920. ],
  3921. "authors": [
  3922. {
  3923. "name": "Sebastian Bergmann",
  3924. "email": "sebastian@phpunit.de",
  3925. "role": "lead"
  3926. }
  3927. ],
  3928. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  3929. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  3930. "keywords": [
  3931. "coverage",
  3932. "testing",
  3933. "xunit"
  3934. ],
  3935. "support": {
  3936. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  3937. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/master"
  3938. },
  3939. "time": "2018-10-31T16:06:48+00:00"
  3940. },
  3941. {
  3942. "name": "phpunit/php-file-iterator",
  3943. "version": "2.0.x-dev",
  3944. "source": {
  3945. "type": "git",
  3946. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  3947. "reference": "69deeb8664f611f156a924154985fbd4911eb36b"
  3948. },
  3949. "dist": {
  3950. "type": "zip",
  3951. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/69deeb8664f611f156a924154985fbd4911eb36b",
  3952. "reference": "69deeb8664f611f156a924154985fbd4911eb36b",
  3953. "shasum": "",
  3954. "mirrors": [
  3955. {
  3956. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3957. "preferred": true
  3958. }
  3959. ]
  3960. },
  3961. "require": {
  3962. "php": ">=7.1"
  3963. },
  3964. "require-dev": {
  3965. "phpunit/phpunit": "^8.5"
  3966. },
  3967. "type": "library",
  3968. "extra": {
  3969. "branch-alias": {
  3970. "dev-master": "2.0.x-dev"
  3971. }
  3972. },
  3973. "autoload": {
  3974. "classmap": [
  3975. "src/"
  3976. ]
  3977. },
  3978. "notification-url": "https://packagist.org/downloads/",
  3979. "license": [
  3980. "BSD-3-Clause"
  3981. ],
  3982. "authors": [
  3983. {
  3984. "name": "Sebastian Bergmann",
  3985. "email": "sebastian@phpunit.de",
  3986. "role": "lead"
  3987. }
  3988. ],
  3989. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  3990. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  3991. "keywords": [
  3992. "filesystem",
  3993. "iterator"
  3994. ],
  3995. "support": {
  3996. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  3997. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/2.0.6"
  3998. },
  3999. "funding": [
  4000. {
  4001. "url": "https://github.com/sebastianbergmann",
  4002. "type": "github"
  4003. }
  4004. ],
  4005. "time": "2024-03-01T13:39:50+00:00"
  4006. },
  4007. {
  4008. "name": "phpunit/php-text-template",
  4009. "version": "1.2.1",
  4010. "source": {
  4011. "type": "git",
  4012. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  4013. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  4014. },
  4015. "dist": {
  4016. "type": "zip",
  4017. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  4018. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  4019. "shasum": "",
  4020. "mirrors": [
  4021. {
  4022. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4023. "preferred": true
  4024. }
  4025. ]
  4026. },
  4027. "require": {
  4028. "php": ">=5.3.3"
  4029. },
  4030. "type": "library",
  4031. "autoload": {
  4032. "classmap": [
  4033. "src/"
  4034. ]
  4035. },
  4036. "notification-url": "https://packagist.org/downloads/",
  4037. "license": [
  4038. "BSD-3-Clause"
  4039. ],
  4040. "authors": [
  4041. {
  4042. "name": "Sebastian Bergmann",
  4043. "email": "sebastian@phpunit.de",
  4044. "role": "lead"
  4045. }
  4046. ],
  4047. "description": "Simple template engine.",
  4048. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  4049. "keywords": [
  4050. "template"
  4051. ],
  4052. "support": {
  4053. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  4054. "source": "https://github.com/sebastianbergmann/php-text-template/tree/1.2.1"
  4055. },
  4056. "time": "2015-06-21T13:50:34+00:00"
  4057. },
  4058. {
  4059. "name": "phpunit/php-timer",
  4060. "version": "2.1.x-dev",
  4061. "source": {
  4062. "type": "git",
  4063. "url": "https://github.com/sebastianbergmann/php-timer.git",
  4064. "reference": "a691211e94ff39a34811abd521c31bd5b305b0bb"
  4065. },
  4066. "dist": {
  4067. "type": "zip",
  4068. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/a691211e94ff39a34811abd521c31bd5b305b0bb",
  4069. "reference": "a691211e94ff39a34811abd521c31bd5b305b0bb",
  4070. "shasum": "",
  4071. "mirrors": [
  4072. {
  4073. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4074. "preferred": true
  4075. }
  4076. ]
  4077. },
  4078. "require": {
  4079. "php": ">=7.1"
  4080. },
  4081. "require-dev": {
  4082. "phpunit/phpunit": "^8.5"
  4083. },
  4084. "type": "library",
  4085. "extra": {
  4086. "branch-alias": {
  4087. "dev-master": "2.1-dev"
  4088. }
  4089. },
  4090. "autoload": {
  4091. "classmap": [
  4092. "src/"
  4093. ]
  4094. },
  4095. "notification-url": "https://packagist.org/downloads/",
  4096. "license": [
  4097. "BSD-3-Clause"
  4098. ],
  4099. "authors": [
  4100. {
  4101. "name": "Sebastian Bergmann",
  4102. "email": "sebastian@phpunit.de",
  4103. "role": "lead"
  4104. }
  4105. ],
  4106. "description": "Utility class for timing",
  4107. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  4108. "keywords": [
  4109. "timer"
  4110. ],
  4111. "support": {
  4112. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  4113. "source": "https://github.com/sebastianbergmann/php-timer/tree/2.1.4"
  4114. },
  4115. "funding": [
  4116. {
  4117. "url": "https://github.com/sebastianbergmann",
  4118. "type": "github"
  4119. }
  4120. ],
  4121. "time": "2024-03-01T13:42:41+00:00"
  4122. },
  4123. {
  4124. "name": "phpunit/php-token-stream",
  4125. "version": "3.1.x-dev",
  4126. "source": {
  4127. "type": "git",
  4128. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  4129. "reference": "9c1da83261628cb24b6a6df371b6e312b3954768"
  4130. },
  4131. "dist": {
  4132. "type": "zip",
  4133. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/9c1da83261628cb24b6a6df371b6e312b3954768",
  4134. "reference": "9c1da83261628cb24b6a6df371b6e312b3954768",
  4135. "shasum": "",
  4136. "mirrors": [
  4137. {
  4138. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4139. "preferred": true
  4140. }
  4141. ]
  4142. },
  4143. "require": {
  4144. "ext-tokenizer": "*",
  4145. "php": ">=7.1"
  4146. },
  4147. "require-dev": {
  4148. "phpunit/phpunit": "^7.0"
  4149. },
  4150. "type": "library",
  4151. "extra": {
  4152. "branch-alias": {
  4153. "dev-master": "3.1-dev"
  4154. }
  4155. },
  4156. "autoload": {
  4157. "classmap": [
  4158. "src/"
  4159. ]
  4160. },
  4161. "notification-url": "https://packagist.org/downloads/",
  4162. "license": [
  4163. "BSD-3-Clause"
  4164. ],
  4165. "authors": [
  4166. {
  4167. "name": "Sebastian Bergmann",
  4168. "email": "sebastian@phpunit.de"
  4169. }
  4170. ],
  4171. "description": "Wrapper around PHP's tokenizer extension.",
  4172. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  4173. "keywords": [
  4174. "tokenizer"
  4175. ],
  4176. "support": {
  4177. "issues": "https://github.com/sebastianbergmann/php-token-stream/issues",
  4178. "source": "https://github.com/sebastianbergmann/php-token-stream/tree/3.1"
  4179. },
  4180. "funding": [
  4181. {
  4182. "url": "https://github.com/sebastianbergmann",
  4183. "type": "github"
  4184. }
  4185. ],
  4186. "abandoned": true,
  4187. "time": "2021-07-26T12:15:06+00:00"
  4188. },
  4189. {
  4190. "name": "phpunit/phpunit",
  4191. "version": "7.5.20",
  4192. "source": {
  4193. "type": "git",
  4194. "url": "https://github.com/sebastianbergmann/phpunit.git",
  4195. "reference": "9467db479d1b0487c99733bb1e7944d32deded2c"
  4196. },
  4197. "dist": {
  4198. "type": "zip",
  4199. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/9467db479d1b0487c99733bb1e7944d32deded2c",
  4200. "reference": "9467db479d1b0487c99733bb1e7944d32deded2c",
  4201. "shasum": "",
  4202. "mirrors": [
  4203. {
  4204. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4205. "preferred": true
  4206. }
  4207. ]
  4208. },
  4209. "require": {
  4210. "doctrine/instantiator": "^1.1",
  4211. "ext-dom": "*",
  4212. "ext-json": "*",
  4213. "ext-libxml": "*",
  4214. "ext-mbstring": "*",
  4215. "ext-xml": "*",
  4216. "myclabs/deep-copy": "^1.7",
  4217. "phar-io/manifest": "^1.0.2",
  4218. "phar-io/version": "^2.0",
  4219. "php": "^7.1",
  4220. "phpspec/prophecy": "^1.7",
  4221. "phpunit/php-code-coverage": "^6.0.7",
  4222. "phpunit/php-file-iterator": "^2.0.1",
  4223. "phpunit/php-text-template": "^1.2.1",
  4224. "phpunit/php-timer": "^2.1",
  4225. "sebastian/comparator": "^3.0",
  4226. "sebastian/diff": "^3.0",
  4227. "sebastian/environment": "^4.0",
  4228. "sebastian/exporter": "^3.1",
  4229. "sebastian/global-state": "^2.0",
  4230. "sebastian/object-enumerator": "^3.0.3",
  4231. "sebastian/resource-operations": "^2.0",
  4232. "sebastian/version": "^2.0.1"
  4233. },
  4234. "conflict": {
  4235. "phpunit/phpunit-mock-objects": "*"
  4236. },
  4237. "require-dev": {
  4238. "ext-pdo": "*"
  4239. },
  4240. "suggest": {
  4241. "ext-soap": "*",
  4242. "ext-xdebug": "*",
  4243. "phpunit/php-invoker": "^2.0"
  4244. },
  4245. "bin": [
  4246. "phpunit"
  4247. ],
  4248. "type": "library",
  4249. "extra": {
  4250. "branch-alias": {
  4251. "dev-master": "7.5-dev"
  4252. }
  4253. },
  4254. "autoload": {
  4255. "classmap": [
  4256. "src/"
  4257. ]
  4258. },
  4259. "notification-url": "https://packagist.org/downloads/",
  4260. "license": [
  4261. "BSD-3-Clause"
  4262. ],
  4263. "authors": [
  4264. {
  4265. "name": "Sebastian Bergmann",
  4266. "email": "sebastian@phpunit.de",
  4267. "role": "lead"
  4268. }
  4269. ],
  4270. "description": "The PHP Unit Testing framework.",
  4271. "homepage": "https://phpunit.de/",
  4272. "keywords": [
  4273. "phpunit",
  4274. "testing",
  4275. "xunit"
  4276. ],
  4277. "support": {
  4278. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  4279. "source": "https://github.com/sebastianbergmann/phpunit/tree/7.5.20"
  4280. },
  4281. "time": "2020-01-08T08:45:45+00:00"
  4282. },
  4283. {
  4284. "name": "sebastian/code-unit-reverse-lookup",
  4285. "version": "1.0.x-dev",
  4286. "source": {
  4287. "type": "git",
  4288. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  4289. "reference": "92a1a52e86d34cde6caa54f1b5ffa9fda18e5d54"
  4290. },
  4291. "dist": {
  4292. "type": "zip",
  4293. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/92a1a52e86d34cde6caa54f1b5ffa9fda18e5d54",
  4294. "reference": "92a1a52e86d34cde6caa54f1b5ffa9fda18e5d54",
  4295. "shasum": "",
  4296. "mirrors": [
  4297. {
  4298. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4299. "preferred": true
  4300. }
  4301. ]
  4302. },
  4303. "require": {
  4304. "php": ">=5.6"
  4305. },
  4306. "require-dev": {
  4307. "phpunit/phpunit": "^8.5"
  4308. },
  4309. "type": "library",
  4310. "extra": {
  4311. "branch-alias": {
  4312. "dev-master": "1.0.x-dev"
  4313. }
  4314. },
  4315. "autoload": {
  4316. "classmap": [
  4317. "src/"
  4318. ]
  4319. },
  4320. "notification-url": "https://packagist.org/downloads/",
  4321. "license": [
  4322. "BSD-3-Clause"
  4323. ],
  4324. "authors": [
  4325. {
  4326. "name": "Sebastian Bergmann",
  4327. "email": "sebastian@phpunit.de"
  4328. }
  4329. ],
  4330. "description": "Looks up which function or method a line of code belongs to",
  4331. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  4332. "support": {
  4333. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  4334. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/1.0.3"
  4335. },
  4336. "funding": [
  4337. {
  4338. "url": "https://github.com/sebastianbergmann",
  4339. "type": "github"
  4340. }
  4341. ],
  4342. "time": "2024-03-01T13:45:45+00:00"
  4343. },
  4344. {
  4345. "name": "sebastian/comparator",
  4346. "version": "3.0.x-dev",
  4347. "source": {
  4348. "type": "git",
  4349. "url": "https://github.com/sebastianbergmann/comparator.git",
  4350. "reference": "4b3c947888c81708b20fb081bb653a2ba68f989a"
  4351. },
  4352. "dist": {
  4353. "type": "zip",
  4354. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/4b3c947888c81708b20fb081bb653a2ba68f989a",
  4355. "reference": "4b3c947888c81708b20fb081bb653a2ba68f989a",
  4356. "shasum": "",
  4357. "mirrors": [
  4358. {
  4359. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4360. "preferred": true
  4361. }
  4362. ]
  4363. },
  4364. "require": {
  4365. "php": ">=7.1",
  4366. "sebastian/diff": "^3.0",
  4367. "sebastian/exporter": "^3.1"
  4368. },
  4369. "require-dev": {
  4370. "phpunit/phpunit": "^8.5"
  4371. },
  4372. "type": "library",
  4373. "extra": {
  4374. "branch-alias": {
  4375. "dev-master": "3.0-dev"
  4376. }
  4377. },
  4378. "autoload": {
  4379. "classmap": [
  4380. "src/"
  4381. ]
  4382. },
  4383. "notification-url": "https://packagist.org/downloads/",
  4384. "license": [
  4385. "BSD-3-Clause"
  4386. ],
  4387. "authors": [
  4388. {
  4389. "name": "Sebastian Bergmann",
  4390. "email": "sebastian@phpunit.de"
  4391. },
  4392. {
  4393. "name": "Jeff Welch",
  4394. "email": "whatthejeff@gmail.com"
  4395. },
  4396. {
  4397. "name": "Volker Dusch",
  4398. "email": "github@wallbash.com"
  4399. },
  4400. {
  4401. "name": "Bernhard Schussek",
  4402. "email": "bschussek@2bepublished.at"
  4403. }
  4404. ],
  4405. "description": "Provides the functionality to compare PHP values for equality",
  4406. "homepage": "https://github.com/sebastianbergmann/comparator",
  4407. "keywords": [
  4408. "comparator",
  4409. "compare",
  4410. "equality"
  4411. ],
  4412. "support": {
  4413. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  4414. "source": "https://github.com/sebastianbergmann/comparator/tree/3.0.6"
  4415. },
  4416. "funding": [
  4417. {
  4418. "url": "https://github.com/sebastianbergmann",
  4419. "type": "github"
  4420. },
  4421. {
  4422. "url": "https://liberapay.com/sebastianbergmann",
  4423. "type": "liberapay"
  4424. },
  4425. {
  4426. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  4427. "type": "thanks_dev"
  4428. },
  4429. {
  4430. "url": "https://tidelift.com/funding/github/packagist/sebastian/comparator",
  4431. "type": "tidelift"
  4432. }
  4433. ],
  4434. "time": "2025-08-10T05:29:24+00:00"
  4435. },
  4436. {
  4437. "name": "sebastian/diff",
  4438. "version": "3.0.x-dev",
  4439. "source": {
  4440. "type": "git",
  4441. "url": "https://github.com/sebastianbergmann/diff.git",
  4442. "reference": "98ff311ca519c3aa73ccd3de053bdb377171d7b6"
  4443. },
  4444. "dist": {
  4445. "type": "zip",
  4446. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/98ff311ca519c3aa73ccd3de053bdb377171d7b6",
  4447. "reference": "98ff311ca519c3aa73ccd3de053bdb377171d7b6",
  4448. "shasum": "",
  4449. "mirrors": [
  4450. {
  4451. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4452. "preferred": true
  4453. }
  4454. ]
  4455. },
  4456. "require": {
  4457. "php": ">=7.1"
  4458. },
  4459. "require-dev": {
  4460. "phpunit/phpunit": "^7.5 || ^8.0",
  4461. "symfony/process": "^2 || ^3.3 || ^4"
  4462. },
  4463. "type": "library",
  4464. "extra": {
  4465. "branch-alias": {
  4466. "dev-master": "3.0-dev"
  4467. }
  4468. },
  4469. "autoload": {
  4470. "classmap": [
  4471. "src/"
  4472. ]
  4473. },
  4474. "notification-url": "https://packagist.org/downloads/",
  4475. "license": [
  4476. "BSD-3-Clause"
  4477. ],
  4478. "authors": [
  4479. {
  4480. "name": "Sebastian Bergmann",
  4481. "email": "sebastian@phpunit.de"
  4482. },
  4483. {
  4484. "name": "Kore Nordmann",
  4485. "email": "mail@kore-nordmann.de"
  4486. }
  4487. ],
  4488. "description": "Diff implementation",
  4489. "homepage": "https://github.com/sebastianbergmann/diff",
  4490. "keywords": [
  4491. "diff",
  4492. "udiff",
  4493. "unidiff",
  4494. "unified diff"
  4495. ],
  4496. "support": {
  4497. "issues": "https://github.com/sebastianbergmann/diff/issues",
  4498. "source": "https://github.com/sebastianbergmann/diff/tree/3.0.6"
  4499. },
  4500. "funding": [
  4501. {
  4502. "url": "https://github.com/sebastianbergmann",
  4503. "type": "github"
  4504. }
  4505. ],
  4506. "time": "2024-03-02T06:16:36+00:00"
  4507. },
  4508. {
  4509. "name": "sebastian/environment",
  4510. "version": "4.2.x-dev",
  4511. "source": {
  4512. "type": "git",
  4513. "url": "https://github.com/sebastianbergmann/environment.git",
  4514. "reference": "56932f6049a0482853056ffd617c91ffcc754205"
  4515. },
  4516. "dist": {
  4517. "type": "zip",
  4518. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/56932f6049a0482853056ffd617c91ffcc754205",
  4519. "reference": "56932f6049a0482853056ffd617c91ffcc754205",
  4520. "shasum": "",
  4521. "mirrors": [
  4522. {
  4523. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4524. "preferred": true
  4525. }
  4526. ]
  4527. },
  4528. "require": {
  4529. "php": ">=7.1"
  4530. },
  4531. "require-dev": {
  4532. "phpunit/phpunit": "^7.5"
  4533. },
  4534. "suggest": {
  4535. "ext-posix": "*"
  4536. },
  4537. "type": "library",
  4538. "extra": {
  4539. "branch-alias": {
  4540. "dev-master": "4.2-dev"
  4541. }
  4542. },
  4543. "autoload": {
  4544. "classmap": [
  4545. "src/"
  4546. ]
  4547. },
  4548. "notification-url": "https://packagist.org/downloads/",
  4549. "license": [
  4550. "BSD-3-Clause"
  4551. ],
  4552. "authors": [
  4553. {
  4554. "name": "Sebastian Bergmann",
  4555. "email": "sebastian@phpunit.de"
  4556. }
  4557. ],
  4558. "description": "Provides functionality to handle HHVM/PHP environments",
  4559. "homepage": "http://www.github.com/sebastianbergmann/environment",
  4560. "keywords": [
  4561. "Xdebug",
  4562. "environment",
  4563. "hhvm"
  4564. ],
  4565. "support": {
  4566. "issues": "https://github.com/sebastianbergmann/environment/issues",
  4567. "source": "https://github.com/sebastianbergmann/environment/tree/4.2.5"
  4568. },
  4569. "funding": [
  4570. {
  4571. "url": "https://github.com/sebastianbergmann",
  4572. "type": "github"
  4573. }
  4574. ],
  4575. "time": "2024-03-01T13:49:59+00:00"
  4576. },
  4577. {
  4578. "name": "sebastian/exporter",
  4579. "version": "3.1.5",
  4580. "source": {
  4581. "type": "git",
  4582. "url": "https://github.com/sebastianbergmann/exporter.git",
  4583. "reference": "73a9676f2833b9a7c36968f9d882589cd75511e6"
  4584. },
  4585. "dist": {
  4586. "type": "zip",
  4587. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/73a9676f2833b9a7c36968f9d882589cd75511e6",
  4588. "reference": "73a9676f2833b9a7c36968f9d882589cd75511e6",
  4589. "shasum": "",
  4590. "mirrors": [
  4591. {
  4592. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4593. "preferred": true
  4594. }
  4595. ]
  4596. },
  4597. "require": {
  4598. "php": ">=7.0",
  4599. "sebastian/recursion-context": "^3.0"
  4600. },
  4601. "require-dev": {
  4602. "ext-mbstring": "*",
  4603. "phpunit/phpunit": "^8.5"
  4604. },
  4605. "type": "library",
  4606. "extra": {
  4607. "branch-alias": {
  4608. "dev-master": "3.1.x-dev"
  4609. }
  4610. },
  4611. "autoload": {
  4612. "classmap": [
  4613. "src/"
  4614. ]
  4615. },
  4616. "notification-url": "https://packagist.org/downloads/",
  4617. "license": [
  4618. "BSD-3-Clause"
  4619. ],
  4620. "authors": [
  4621. {
  4622. "name": "Sebastian Bergmann",
  4623. "email": "sebastian@phpunit.de"
  4624. },
  4625. {
  4626. "name": "Jeff Welch",
  4627. "email": "whatthejeff@gmail.com"
  4628. },
  4629. {
  4630. "name": "Volker Dusch",
  4631. "email": "github@wallbash.com"
  4632. },
  4633. {
  4634. "name": "Adam Harvey",
  4635. "email": "aharvey@php.net"
  4636. },
  4637. {
  4638. "name": "Bernhard Schussek",
  4639. "email": "bschussek@gmail.com"
  4640. }
  4641. ],
  4642. "description": "Provides the functionality to export PHP variables for visualization",
  4643. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  4644. "keywords": [
  4645. "export",
  4646. "exporter"
  4647. ],
  4648. "support": {
  4649. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  4650. "source": "https://github.com/sebastianbergmann/exporter/tree/3.1.5"
  4651. },
  4652. "funding": [
  4653. {
  4654. "url": "https://github.com/sebastianbergmann",
  4655. "type": "github"
  4656. }
  4657. ],
  4658. "time": "2022-09-14T06:00:17+00:00"
  4659. },
  4660. {
  4661. "name": "sebastian/global-state",
  4662. "version": "2.0.0",
  4663. "source": {
  4664. "type": "git",
  4665. "url": "https://github.com/sebastianbergmann/global-state.git",
  4666. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  4667. },
  4668. "dist": {
  4669. "type": "zip",
  4670. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  4671. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  4672. "shasum": "",
  4673. "mirrors": [
  4674. {
  4675. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4676. "preferred": true
  4677. }
  4678. ]
  4679. },
  4680. "require": {
  4681. "php": "^7.0"
  4682. },
  4683. "require-dev": {
  4684. "phpunit/phpunit": "^6.0"
  4685. },
  4686. "suggest": {
  4687. "ext-uopz": "*"
  4688. },
  4689. "type": "library",
  4690. "extra": {
  4691. "branch-alias": {
  4692. "dev-master": "2.0-dev"
  4693. }
  4694. },
  4695. "autoload": {
  4696. "classmap": [
  4697. "src/"
  4698. ]
  4699. },
  4700. "notification-url": "https://packagist.org/downloads/",
  4701. "license": [
  4702. "BSD-3-Clause"
  4703. ],
  4704. "authors": [
  4705. {
  4706. "name": "Sebastian Bergmann",
  4707. "email": "sebastian@phpunit.de"
  4708. }
  4709. ],
  4710. "description": "Snapshotting of global state",
  4711. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  4712. "keywords": [
  4713. "global state"
  4714. ],
  4715. "support": {
  4716. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  4717. "source": "https://github.com/sebastianbergmann/global-state/tree/2.0.0"
  4718. },
  4719. "time": "2017-04-27T15:39:26+00:00"
  4720. },
  4721. {
  4722. "name": "sebastian/object-enumerator",
  4723. "version": "3.0.x-dev",
  4724. "source": {
  4725. "type": "git",
  4726. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  4727. "reference": "ac5b293dba925751b808e02923399fb44ff0d541"
  4728. },
  4729. "dist": {
  4730. "type": "zip",
  4731. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/ac5b293dba925751b808e02923399fb44ff0d541",
  4732. "reference": "ac5b293dba925751b808e02923399fb44ff0d541",
  4733. "shasum": "",
  4734. "mirrors": [
  4735. {
  4736. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4737. "preferred": true
  4738. }
  4739. ]
  4740. },
  4741. "require": {
  4742. "php": ">=7.0",
  4743. "sebastian/object-reflector": "^1.1.1",
  4744. "sebastian/recursion-context": "^3.0"
  4745. },
  4746. "require-dev": {
  4747. "phpunit/phpunit": "^6.0"
  4748. },
  4749. "type": "library",
  4750. "extra": {
  4751. "branch-alias": {
  4752. "dev-master": "3.0.x-dev"
  4753. }
  4754. },
  4755. "autoload": {
  4756. "classmap": [
  4757. "src/"
  4758. ]
  4759. },
  4760. "notification-url": "https://packagist.org/downloads/",
  4761. "license": [
  4762. "BSD-3-Clause"
  4763. ],
  4764. "authors": [
  4765. {
  4766. "name": "Sebastian Bergmann",
  4767. "email": "sebastian@phpunit.de"
  4768. }
  4769. ],
  4770. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  4771. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  4772. "support": {
  4773. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  4774. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/3.0.5"
  4775. },
  4776. "funding": [
  4777. {
  4778. "url": "https://github.com/sebastianbergmann",
  4779. "type": "github"
  4780. }
  4781. ],
  4782. "time": "2024-03-01T13:54:02+00:00"
  4783. },
  4784. {
  4785. "name": "sebastian/object-reflector",
  4786. "version": "1.1.x-dev",
  4787. "source": {
  4788. "type": "git",
  4789. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  4790. "reference": "1d439c229e61f244ff1f211e5c99737f90c67def"
  4791. },
  4792. "dist": {
  4793. "type": "zip",
  4794. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/1d439c229e61f244ff1f211e5c99737f90c67def",
  4795. "reference": "1d439c229e61f244ff1f211e5c99737f90c67def",
  4796. "shasum": "",
  4797. "mirrors": [
  4798. {
  4799. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4800. "preferred": true
  4801. }
  4802. ]
  4803. },
  4804. "require": {
  4805. "php": ">=7.0"
  4806. },
  4807. "require-dev": {
  4808. "phpunit/phpunit": "^6.0"
  4809. },
  4810. "type": "library",
  4811. "extra": {
  4812. "branch-alias": {
  4813. "dev-master": "1.1-dev"
  4814. }
  4815. },
  4816. "autoload": {
  4817. "classmap": [
  4818. "src/"
  4819. ]
  4820. },
  4821. "notification-url": "https://packagist.org/downloads/",
  4822. "license": [
  4823. "BSD-3-Clause"
  4824. ],
  4825. "authors": [
  4826. {
  4827. "name": "Sebastian Bergmann",
  4828. "email": "sebastian@phpunit.de"
  4829. }
  4830. ],
  4831. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  4832. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  4833. "support": {
  4834. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  4835. "source": "https://github.com/sebastianbergmann/object-reflector/tree/1.1.3"
  4836. },
  4837. "funding": [
  4838. {
  4839. "url": "https://github.com/sebastianbergmann",
  4840. "type": "github"
  4841. }
  4842. ],
  4843. "time": "2024-03-01T13:56:04+00:00"
  4844. },
  4845. {
  4846. "name": "sebastian/recursion-context",
  4847. "version": "3.0.x-dev",
  4848. "source": {
  4849. "type": "git",
  4850. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  4851. "reference": "8fe7e75986a9d24b4cceae847314035df7703a5a"
  4852. },
  4853. "dist": {
  4854. "type": "zip",
  4855. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/8fe7e75986a9d24b4cceae847314035df7703a5a",
  4856. "reference": "8fe7e75986a9d24b4cceae847314035df7703a5a",
  4857. "shasum": "",
  4858. "mirrors": [
  4859. {
  4860. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4861. "preferred": true
  4862. }
  4863. ]
  4864. },
  4865. "require": {
  4866. "php": ">=7.0"
  4867. },
  4868. "require-dev": {
  4869. "phpunit/phpunit": "^6.0"
  4870. },
  4871. "type": "library",
  4872. "extra": {
  4873. "branch-alias": {
  4874. "dev-master": "3.0.x-dev"
  4875. }
  4876. },
  4877. "autoload": {
  4878. "classmap": [
  4879. "src/"
  4880. ]
  4881. },
  4882. "notification-url": "https://packagist.org/downloads/",
  4883. "license": [
  4884. "BSD-3-Clause"
  4885. ],
  4886. "authors": [
  4887. {
  4888. "name": "Sebastian Bergmann",
  4889. "email": "sebastian@phpunit.de"
  4890. },
  4891. {
  4892. "name": "Jeff Welch",
  4893. "email": "whatthejeff@gmail.com"
  4894. },
  4895. {
  4896. "name": "Adam Harvey",
  4897. "email": "aharvey@php.net"
  4898. }
  4899. ],
  4900. "description": "Provides functionality to recursively process PHP variables",
  4901. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  4902. "support": {
  4903. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  4904. "source": "https://github.com/sebastianbergmann/recursion-context/tree/3.0.3"
  4905. },
  4906. "funding": [
  4907. {
  4908. "url": "https://github.com/sebastianbergmann",
  4909. "type": "github"
  4910. },
  4911. {
  4912. "url": "https://liberapay.com/sebastianbergmann",
  4913. "type": "liberapay"
  4914. },
  4915. {
  4916. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  4917. "type": "thanks_dev"
  4918. },
  4919. {
  4920. "url": "https://tidelift.com/funding/github/packagist/sebastian/recursion-context",
  4921. "type": "tidelift"
  4922. }
  4923. ],
  4924. "time": "2025-08-10T05:25:53+00:00"
  4925. },
  4926. {
  4927. "name": "sebastian/resource-operations",
  4928. "version": "2.0.x-dev",
  4929. "source": {
  4930. "type": "git",
  4931. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  4932. "reference": "72a7f7674d053d548003b16ff5a106e7e0e06eee"
  4933. },
  4934. "dist": {
  4935. "type": "zip",
  4936. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/72a7f7674d053d548003b16ff5a106e7e0e06eee",
  4937. "reference": "72a7f7674d053d548003b16ff5a106e7e0e06eee",
  4938. "shasum": "",
  4939. "mirrors": [
  4940. {
  4941. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4942. "preferred": true
  4943. }
  4944. ]
  4945. },
  4946. "require": {
  4947. "php": ">=7.1"
  4948. },
  4949. "type": "library",
  4950. "extra": {
  4951. "branch-alias": {
  4952. "dev-master": "2.0-dev"
  4953. }
  4954. },
  4955. "autoload": {
  4956. "classmap": [
  4957. "src/"
  4958. ]
  4959. },
  4960. "notification-url": "https://packagist.org/downloads/",
  4961. "license": [
  4962. "BSD-3-Clause"
  4963. ],
  4964. "authors": [
  4965. {
  4966. "name": "Sebastian Bergmann",
  4967. "email": "sebastian@phpunit.de"
  4968. }
  4969. ],
  4970. "description": "Provides a list of PHP built-in functions that operate on resources",
  4971. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  4972. "support": {
  4973. "source": "https://github.com/sebastianbergmann/resource-operations/tree/2.0.3"
  4974. },
  4975. "funding": [
  4976. {
  4977. "url": "https://github.com/sebastianbergmann",
  4978. "type": "github"
  4979. }
  4980. ],
  4981. "time": "2024-03-01T13:59:09+00:00"
  4982. },
  4983. {
  4984. "name": "sebastian/version",
  4985. "version": "2.0.1",
  4986. "source": {
  4987. "type": "git",
  4988. "url": "https://github.com/sebastianbergmann/version.git",
  4989. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  4990. },
  4991. "dist": {
  4992. "type": "zip",
  4993. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  4994. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  4995. "shasum": "",
  4996. "mirrors": [
  4997. {
  4998. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4999. "preferred": true
  5000. }
  5001. ]
  5002. },
  5003. "require": {
  5004. "php": ">=5.6"
  5005. },
  5006. "type": "library",
  5007. "extra": {
  5008. "branch-alias": {
  5009. "dev-master": "2.0.x-dev"
  5010. }
  5011. },
  5012. "autoload": {
  5013. "classmap": [
  5014. "src/"
  5015. ]
  5016. },
  5017. "notification-url": "https://packagist.org/downloads/",
  5018. "license": [
  5019. "BSD-3-Clause"
  5020. ],
  5021. "authors": [
  5022. {
  5023. "name": "Sebastian Bergmann",
  5024. "email": "sebastian@phpunit.de",
  5025. "role": "lead"
  5026. }
  5027. ],
  5028. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  5029. "homepage": "https://github.com/sebastianbergmann/version",
  5030. "support": {
  5031. "issues": "https://github.com/sebastianbergmann/version/issues",
  5032. "source": "https://github.com/sebastianbergmann/version/tree/master"
  5033. },
  5034. "time": "2016-10-03T07:35:21+00:00"
  5035. },
  5036. {
  5037. "name": "symfony/var-dumper",
  5038. "version": "3.4.x-dev",
  5039. "source": {
  5040. "type": "git",
  5041. "url": "https://github.com/symfony/var-dumper.git",
  5042. "reference": "e463ad286cb2c56527c56bfff9e1aa7bb471c04e"
  5043. },
  5044. "dist": {
  5045. "type": "zip",
  5046. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/e463ad286cb2c56527c56bfff9e1aa7bb471c04e",
  5047. "reference": "e463ad286cb2c56527c56bfff9e1aa7bb471c04e",
  5048. "shasum": "",
  5049. "mirrors": [
  5050. {
  5051. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5052. "preferred": true
  5053. }
  5054. ]
  5055. },
  5056. "require": {
  5057. "php": "^5.5.9|>=7.0.8",
  5058. "symfony/polyfill-mbstring": "~1.0"
  5059. },
  5060. "conflict": {
  5061. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  5062. },
  5063. "require-dev": {
  5064. "ext-iconv": "*",
  5065. "twig/twig": "~1.34|~2.4"
  5066. },
  5067. "suggest": {
  5068. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  5069. "ext-intl": "To show region name in time zone dump",
  5070. "ext-symfony_debug": ""
  5071. },
  5072. "type": "library",
  5073. "extra": {
  5074. "branch-alias": {
  5075. "dev-master": "3.4-dev"
  5076. }
  5077. },
  5078. "autoload": {
  5079. "files": [
  5080. "Resources/functions/dump.php"
  5081. ],
  5082. "psr-4": {
  5083. "Symfony\\Component\\VarDumper\\": ""
  5084. },
  5085. "exclude-from-classmap": [
  5086. "/Tests/"
  5087. ]
  5088. },
  5089. "notification-url": "https://packagist.org/downloads/",
  5090. "license": [
  5091. "MIT"
  5092. ],
  5093. "authors": [
  5094. {
  5095. "name": "Nicolas Grekas",
  5096. "email": "p@tchwork.com"
  5097. },
  5098. {
  5099. "name": "Symfony Community",
  5100. "homepage": "https://symfony.com/contributors"
  5101. }
  5102. ],
  5103. "description": "Symfony mechanism for exploring and dumping PHP variables",
  5104. "homepage": "https://symfony.com",
  5105. "keywords": [
  5106. "debug",
  5107. "dump"
  5108. ],
  5109. "time": "2019-04-11T09:48:14+00:00"
  5110. },
  5111. {
  5112. "name": "theseer/tokenizer",
  5113. "version": "1.1.3",
  5114. "source": {
  5115. "type": "git",
  5116. "url": "https://github.com/theseer/tokenizer.git",
  5117. "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9"
  5118. },
  5119. "dist": {
  5120. "type": "zip",
  5121. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/11336f6f84e16a720dae9d8e6ed5019efa85a0f9",
  5122. "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9",
  5123. "shasum": "",
  5124. "mirrors": [
  5125. {
  5126. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5127. "preferred": true
  5128. }
  5129. ]
  5130. },
  5131. "require": {
  5132. "ext-dom": "*",
  5133. "ext-tokenizer": "*",
  5134. "ext-xmlwriter": "*",
  5135. "php": "^7.0"
  5136. },
  5137. "type": "library",
  5138. "autoload": {
  5139. "classmap": [
  5140. "src/"
  5141. ]
  5142. },
  5143. "notification-url": "https://packagist.org/downloads/",
  5144. "license": [
  5145. "BSD-3-Clause"
  5146. ],
  5147. "authors": [
  5148. {
  5149. "name": "Arne Blankerts",
  5150. "email": "arne@blankerts.de",
  5151. "role": "Developer"
  5152. }
  5153. ],
  5154. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  5155. "support": {
  5156. "issues": "https://github.com/theseer/tokenizer/issues",
  5157. "source": "https://github.com/theseer/tokenizer/tree/master"
  5158. },
  5159. "time": "2019-06-13T22:48:21+00:00"
  5160. },
  5161. {
  5162. "name": "webmozart/assert",
  5163. "version": "1.9.1",
  5164. "source": {
  5165. "type": "git",
  5166. "url": "https://github.com/webmozarts/assert.git",
  5167. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389"
  5168. },
  5169. "dist": {
  5170. "type": "zip",
  5171. "url": "https://api.github.com/repos/webmozarts/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389",
  5172. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389",
  5173. "shasum": "",
  5174. "mirrors": [
  5175. {
  5176. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5177. "preferred": true
  5178. }
  5179. ]
  5180. },
  5181. "require": {
  5182. "php": "^5.3.3 || ^7.0 || ^8.0",
  5183. "symfony/polyfill-ctype": "^1.8"
  5184. },
  5185. "conflict": {
  5186. "phpstan/phpstan": "<0.12.20",
  5187. "vimeo/psalm": "<3.9.1"
  5188. },
  5189. "require-dev": {
  5190. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  5191. },
  5192. "type": "library",
  5193. "autoload": {
  5194. "psr-4": {
  5195. "Webmozart\\Assert\\": "src/"
  5196. }
  5197. },
  5198. "notification-url": "https://packagist.org/downloads/",
  5199. "license": [
  5200. "MIT"
  5201. ],
  5202. "authors": [
  5203. {
  5204. "name": "Bernhard Schussek",
  5205. "email": "bschussek@gmail.com"
  5206. }
  5207. ],
  5208. "description": "Assertions to validate method input/output with nice error messages.",
  5209. "keywords": [
  5210. "assert",
  5211. "check",
  5212. "validate"
  5213. ],
  5214. "support": {
  5215. "issues": "https://github.com/webmozarts/assert/issues",
  5216. "source": "https://github.com/webmozarts/assert/tree/1.9.1"
  5217. },
  5218. "time": "2020-07-08T17:02:28+00:00"
  5219. },
  5220. {
  5221. "name": "yiisoft/yii2-codeception",
  5222. "version": "dev-master",
  5223. "source": {
  5224. "type": "git",
  5225. "url": "https://github.com/yiisoft/yii2-codeception.git",
  5226. "reference": "c7d1509498c349179940a8d2b9c6d078e8054b90"
  5227. },
  5228. "dist": {
  5229. "type": "zip",
  5230. "url": "https://api.github.com/repos/yiisoft/yii2-codeception/zipball/c7d1509498c349179940a8d2b9c6d078e8054b90",
  5231. "reference": "c7d1509498c349179940a8d2b9c6d078e8054b90",
  5232. "shasum": "",
  5233. "mirrors": [
  5234. {
  5235. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5236. "preferred": true
  5237. }
  5238. ]
  5239. },
  5240. "require": {
  5241. "yiisoft/yii2": ">=2.0.4"
  5242. },
  5243. "type": "yii2-extension",
  5244. "extra": {
  5245. "branch-alias": {
  5246. "dev-master": "2.0.x-dev"
  5247. }
  5248. },
  5249. "autoload": {
  5250. "psr-4": {
  5251. "yii\\codeception\\": ""
  5252. }
  5253. },
  5254. "notification-url": "https://packagist.org/downloads/",
  5255. "license": [
  5256. "BSD-3-Clause"
  5257. ],
  5258. "authors": [
  5259. {
  5260. "name": "Mark Jebri",
  5261. "email": "mark.github@yandex.ru"
  5262. }
  5263. ],
  5264. "description": "The Codeception integration for the Yii framework",
  5265. "keywords": [
  5266. "codeception",
  5267. "yii2"
  5268. ],
  5269. "abandoned": "codeception/codeception",
  5270. "time": "2018-04-26T18:21:40+00:00"
  5271. },
  5272. {
  5273. "name": "yiisoft/yii2-debug",
  5274. "version": "2.0.12",
  5275. "source": {
  5276. "type": "git",
  5277. "url": "https://github.com/yiisoft/yii2-debug.git",
  5278. "reference": "93082f46d3568b4431a26f264e0d16a12c42bd50"
  5279. },
  5280. "dist": {
  5281. "type": "zip",
  5282. "url": "https://api.github.com/repos/yiisoft/yii2-debug/zipball/93082f46d3568b4431a26f264e0d16a12c42bd50",
  5283. "reference": "93082f46d3568b4431a26f264e0d16a12c42bd50",
  5284. "shasum": "",
  5285. "mirrors": [
  5286. {
  5287. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5288. "preferred": true
  5289. }
  5290. ]
  5291. },
  5292. "require": {
  5293. "yiisoft/yii2": "~2.0.11",
  5294. "yiisoft/yii2-bootstrap": "~2.0.0"
  5295. },
  5296. "type": "yii2-extension",
  5297. "extra": {
  5298. "branch-alias": {
  5299. "dev-master": "2.0.x-dev"
  5300. }
  5301. },
  5302. "autoload": {
  5303. "psr-4": {
  5304. "yii\\debug\\": ""
  5305. }
  5306. },
  5307. "notification-url": "https://packagist.org/downloads/",
  5308. "license": [
  5309. "BSD-3-Clause"
  5310. ],
  5311. "authors": [
  5312. {
  5313. "name": "Qiang Xue",
  5314. "email": "qiang.xue@gmail.com"
  5315. }
  5316. ],
  5317. "description": "The debugger extension for the Yii framework",
  5318. "keywords": [
  5319. "debug",
  5320. "debugger",
  5321. "yii2"
  5322. ],
  5323. "time": "2017-10-09T20:30:01+00:00"
  5324. },
  5325. {
  5326. "name": "yiisoft/yii2-faker",
  5327. "version": "dev-master",
  5328. "source": {
  5329. "type": "git",
  5330. "url": "https://github.com/yiisoft/yii2-faker.git",
  5331. "reference": "2f548188b2961f097c08623214f5190e3cf2f1ac"
  5332. },
  5333. "dist": {
  5334. "type": "zip",
  5335. "url": "https://api.github.com/repos/yiisoft/yii2-faker/zipball/2f548188b2961f097c08623214f5190e3cf2f1ac",
  5336. "reference": "2f548188b2961f097c08623214f5190e3cf2f1ac",
  5337. "shasum": "",
  5338. "mirrors": [
  5339. {
  5340. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5341. "preferred": true
  5342. }
  5343. ]
  5344. },
  5345. "require": {
  5346. "fzaninotto/faker": "~1.4",
  5347. "yiisoft/yii2": "~2.0.0"
  5348. },
  5349. "require-dev": {
  5350. "phpunit/phpunit": "<7"
  5351. },
  5352. "type": "yii2-extension",
  5353. "extra": {
  5354. "branch-alias": {
  5355. "dev-master": "2.0.x-dev"
  5356. }
  5357. },
  5358. "autoload": {
  5359. "psr-4": {
  5360. "yii\\faker\\": "src"
  5361. }
  5362. },
  5363. "notification-url": "https://packagist.org/downloads/",
  5364. "license": [
  5365. "BSD-3-Clause"
  5366. ],
  5367. "authors": [
  5368. {
  5369. "name": "Mark Jebri",
  5370. "email": "mark.github@yandex.ru"
  5371. }
  5372. ],
  5373. "description": "Fixture generator. The Faker integration for the Yii framework.",
  5374. "keywords": [
  5375. "Fixture",
  5376. "faker",
  5377. "yii2"
  5378. ],
  5379. "time": "2019-02-18T10:24:17+00:00"
  5380. },
  5381. {
  5382. "name": "yiisoft/yii2-gii",
  5383. "version": "2.0.5",
  5384. "source": {
  5385. "type": "git",
  5386. "url": "https://github.com/yiisoft/yii2-gii.git",
  5387. "reference": "1bd6df6804ca077ec022587905a0d43eb286f507"
  5388. },
  5389. "dist": {
  5390. "type": "zip",
  5391. "url": "https://api.github.com/repos/yiisoft/yii2-gii/zipball/1bd6df6804ca077ec022587905a0d43eb286f507",
  5392. "reference": "1bd6df6804ca077ec022587905a0d43eb286f507",
  5393. "shasum": "",
  5394. "mirrors": [
  5395. {
  5396. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5397. "preferred": true
  5398. }
  5399. ]
  5400. },
  5401. "require": {
  5402. "bower-asset/typeahead.js": "0.10.* | ~0.11.0",
  5403. "phpspec/php-diff": ">=1.0.2",
  5404. "yiisoft/yii2": ">=2.0.4",
  5405. "yiisoft/yii2-bootstrap": "~2.0"
  5406. },
  5407. "type": "yii2-extension",
  5408. "extra": {
  5409. "branch-alias": {
  5410. "dev-master": "2.0.x-dev"
  5411. },
  5412. "asset-installer-paths": {
  5413. "npm-asset-library": "vendor/npm",
  5414. "bower-asset-library": "vendor/bower"
  5415. }
  5416. },
  5417. "autoload": {
  5418. "psr-4": {
  5419. "yii\\gii\\": ""
  5420. }
  5421. },
  5422. "notification-url": "https://packagist.org/downloads/",
  5423. "license": [
  5424. "BSD-3-Clause"
  5425. ],
  5426. "authors": [
  5427. {
  5428. "name": "Qiang Xue",
  5429. "email": "qiang.xue@gmail.com"
  5430. }
  5431. ],
  5432. "description": "The Gii extension for the Yii framework",
  5433. "keywords": [
  5434. "code generator",
  5435. "gii",
  5436. "yii2"
  5437. ],
  5438. "time": "2016-03-18T14:09:46+00:00"
  5439. }
  5440. ],
  5441. "aliases": [],
  5442. "minimum-stability": "dev",
  5443. "stability-flags": {
  5444. "hollisho/yii2-redis-pub-sub": 20,
  5445. "phpoption/phpoption": 20,
  5446. "alibabacloud/client": 20,
  5447. "baidu/aip-sdk": 20,
  5448. "getuilaboratory/getui-pushapi-php-client-v2": 20,
  5449. "overtrue/chinese-calendar": 20,
  5450. "mikemadisonweb/yii2-rabbitmq": 20
  5451. },
  5452. "prefer-stable": false,
  5453. "prefer-lowest": false,
  5454. "platform": {
  5455. "php": ">=7.0"
  5456. },
  5457. "platform-dev": [],
  5458. "plugin-api-version": "2.2.0"
  5459. }