composer.lock 204 KB

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