composer.lock 200 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642
  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": "8219b844209b3fb0e9efca958470469c",
  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": "phpoffice/phpexcel",
  2607. "version": "1.8.2",
  2608. "source": {
  2609. "type": "git",
  2610. "url": "https://github.com/PHPOffice/PHPExcel.git",
  2611. "reference": "1441011fb7ecdd8cc689878f54f8b58a6805f870"
  2612. },
  2613. "dist": {
  2614. "type": "zip",
  2615. "url": "https://api.github.com/repos/PHPOffice/PHPExcel/zipball/1441011fb7ecdd8cc689878f54f8b58a6805f870",
  2616. "reference": "1441011fb7ecdd8cc689878f54f8b58a6805f870",
  2617. "shasum": ""
  2618. },
  2619. "require": {
  2620. "ext-mbstring": "*",
  2621. "ext-xml": "*",
  2622. "ext-xmlwriter": "*",
  2623. "php": "^5.2|^7.0"
  2624. },
  2625. "require-dev": {
  2626. "squizlabs/php_codesniffer": "2.*"
  2627. },
  2628. "type": "library",
  2629. "autoload": {
  2630. "psr-0": {
  2631. "PHPExcel": "Classes/"
  2632. }
  2633. },
  2634. "notification-url": "https://packagist.org/downloads/",
  2635. "license": [
  2636. "LGPL-2.1"
  2637. ],
  2638. "authors": [
  2639. {
  2640. "name": "Maarten Balliauw",
  2641. "homepage": "http://blog.maartenballiauw.be"
  2642. },
  2643. {
  2644. "name": "Erik Tilt"
  2645. },
  2646. {
  2647. "name": "Franck Lefevre",
  2648. "homepage": "http://rootslabs.net"
  2649. },
  2650. {
  2651. "name": "Mark Baker",
  2652. "homepage": "http://markbakeruk.net"
  2653. }
  2654. ],
  2655. "description": "PHPExcel - OpenXML - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  2656. "homepage": "https://github.com/PHPOffice/PHPExcel",
  2657. "keywords": [
  2658. "OpenXML",
  2659. "excel",
  2660. "php",
  2661. "spreadsheet",
  2662. "xls",
  2663. "xlsx"
  2664. ],
  2665. "support": {
  2666. "issues": "https://github.com/PHPOffice/PHPExcel/issues",
  2667. "source": "https://github.com/PHPOffice/PHPExcel/tree/master"
  2668. },
  2669. "abandoned": "phpoffice/phpspreadsheet",
  2670. "time": "2018-11-22T23:07:24+00:00"
  2671. },
  2672. {
  2673. "name": "phpoffice/phpspreadsheet",
  2674. "version": "1.18.0",
  2675. "source": {
  2676. "type": "git",
  2677. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  2678. "reference": "418cd304e8e6b417ea79c3b29126a25dc4b1170c"
  2679. },
  2680. "dist": {
  2681. "type": "zip",
  2682. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/418cd304e8e6b417ea79c3b29126a25dc4b1170c",
  2683. "reference": "418cd304e8e6b417ea79c3b29126a25dc4b1170c",
  2684. "shasum": ""
  2685. },
  2686. "require": {
  2687. "ext-ctype": "*",
  2688. "ext-dom": "*",
  2689. "ext-fileinfo": "*",
  2690. "ext-gd": "*",
  2691. "ext-iconv": "*",
  2692. "ext-libxml": "*",
  2693. "ext-mbstring": "*",
  2694. "ext-simplexml": "*",
  2695. "ext-xml": "*",
  2696. "ext-xmlreader": "*",
  2697. "ext-xmlwriter": "*",
  2698. "ext-zip": "*",
  2699. "ext-zlib": "*",
  2700. "ezyang/htmlpurifier": "^4.13",
  2701. "maennchen/zipstream-php": "^2.1",
  2702. "markbaker/complex": "^2.0",
  2703. "markbaker/matrix": "^2.0",
  2704. "php": "^7.2 || ^8.0",
  2705. "psr/http-client": "^1.0",
  2706. "psr/http-factory": "^1.0",
  2707. "psr/simple-cache": "^1.0"
  2708. },
  2709. "require-dev": {
  2710. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  2711. "dompdf/dompdf": "^1.0",
  2712. "friendsofphp/php-cs-fixer": "^2.18",
  2713. "jpgraph/jpgraph": "^4.0",
  2714. "mpdf/mpdf": "^8.0",
  2715. "phpcompatibility/php-compatibility": "^9.3",
  2716. "phpstan/phpstan": "^0.12.82",
  2717. "phpstan/phpstan-phpunit": "^0.12.18",
  2718. "phpunit/phpunit": "^8.5",
  2719. "squizlabs/php_codesniffer": "^3.5",
  2720. "tecnickcom/tcpdf": "^6.3"
  2721. },
  2722. "suggest": {
  2723. "dompdf/dompdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)",
  2724. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  2725. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  2726. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)"
  2727. },
  2728. "type": "library",
  2729. "autoload": {
  2730. "psr-4": {
  2731. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  2732. }
  2733. },
  2734. "notification-url": "https://packagist.org/downloads/",
  2735. "license": [
  2736. "MIT"
  2737. ],
  2738. "authors": [
  2739. {
  2740. "name": "Maarten Balliauw",
  2741. "homepage": "https://blog.maartenballiauw.be"
  2742. },
  2743. {
  2744. "name": "Mark Baker",
  2745. "homepage": "https://markbakeruk.net"
  2746. },
  2747. {
  2748. "name": "Franck Lefevre",
  2749. "homepage": "https://rootslabs.net"
  2750. },
  2751. {
  2752. "name": "Erik Tilt"
  2753. },
  2754. {
  2755. "name": "Adrien Crivelli"
  2756. }
  2757. ],
  2758. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  2759. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  2760. "keywords": [
  2761. "OpenXML",
  2762. "excel",
  2763. "gnumeric",
  2764. "ods",
  2765. "php",
  2766. "spreadsheet",
  2767. "xls",
  2768. "xlsx"
  2769. ],
  2770. "support": {
  2771. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  2772. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.18.0"
  2773. },
  2774. "time": "2021-05-31T18:21:15+00:00"
  2775. },
  2776. {
  2777. "name": "phpseclib/phpseclib",
  2778. "version": "3.0.10",
  2779. "source": {
  2780. "type": "git",
  2781. "url": "https://github.com/phpseclib/phpseclib.git",
  2782. "reference": "62fcc5a94ac83b1506f52d7558d828617fac9187"
  2783. },
  2784. "dist": {
  2785. "type": "zip",
  2786. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/62fcc5a94ac83b1506f52d7558d828617fac9187",
  2787. "reference": "62fcc5a94ac83b1506f52d7558d828617fac9187",
  2788. "shasum": ""
  2789. },
  2790. "require": {
  2791. "paragonie/constant_time_encoding": "^1|^2",
  2792. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  2793. "php": ">=5.6.1"
  2794. },
  2795. "require-dev": {
  2796. "phing/phing": "~2.7",
  2797. "phpunit/phpunit": "^5.7|^6.0|^9.4",
  2798. "squizlabs/php_codesniffer": "~2.0"
  2799. },
  2800. "suggest": {
  2801. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  2802. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  2803. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  2804. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  2805. },
  2806. "type": "library",
  2807. "autoload": {
  2808. "files": [
  2809. "phpseclib/bootstrap.php"
  2810. ],
  2811. "psr-4": {
  2812. "phpseclib3\\": "phpseclib/"
  2813. }
  2814. },
  2815. "notification-url": "https://packagist.org/downloads/",
  2816. "license": [
  2817. "MIT"
  2818. ],
  2819. "authors": [
  2820. {
  2821. "name": "Jim Wigginton",
  2822. "email": "terrafrost@php.net",
  2823. "role": "Lead Developer"
  2824. },
  2825. {
  2826. "name": "Patrick Monnerat",
  2827. "email": "pm@datasphere.ch",
  2828. "role": "Developer"
  2829. },
  2830. {
  2831. "name": "Andreas Fischer",
  2832. "email": "bantu@phpbb.com",
  2833. "role": "Developer"
  2834. },
  2835. {
  2836. "name": "Hans-Jürgen Petrich",
  2837. "email": "petrich@tronic-media.com",
  2838. "role": "Developer"
  2839. },
  2840. {
  2841. "name": "Graham Campbell",
  2842. "email": "graham@alt-three.com",
  2843. "role": "Developer"
  2844. }
  2845. ],
  2846. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  2847. "homepage": "http://phpseclib.sourceforge.net",
  2848. "keywords": [
  2849. "BigInteger",
  2850. "aes",
  2851. "asn.1",
  2852. "asn1",
  2853. "blowfish",
  2854. "crypto",
  2855. "cryptography",
  2856. "encryption",
  2857. "rsa",
  2858. "security",
  2859. "sftp",
  2860. "signature",
  2861. "signing",
  2862. "ssh",
  2863. "twofish",
  2864. "x.509",
  2865. "x509"
  2866. ],
  2867. "support": {
  2868. "issues": "https://github.com/phpseclib/phpseclib/issues",
  2869. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.10"
  2870. },
  2871. "funding": [
  2872. {
  2873. "url": "https://github.com/terrafrost",
  2874. "type": "github"
  2875. },
  2876. {
  2877. "url": "https://www.patreon.com/phpseclib",
  2878. "type": "patreon"
  2879. },
  2880. {
  2881. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  2882. "type": "tidelift"
  2883. }
  2884. ],
  2885. "time": "2021-08-16T04:24:45+00:00"
  2886. },
  2887. {
  2888. "name": "pimple/pimple",
  2889. "version": "v3.4.0",
  2890. "source": {
  2891. "type": "git",
  2892. "url": "https://github.com/silexphp/Pimple.git",
  2893. "reference": "86406047271859ffc13424a048541f4531f53601"
  2894. },
  2895. "dist": {
  2896. "type": "zip",
  2897. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/86406047271859ffc13424a048541f4531f53601",
  2898. "reference": "86406047271859ffc13424a048541f4531f53601",
  2899. "shasum": ""
  2900. },
  2901. "require": {
  2902. "php": ">=7.2.5",
  2903. "psr/container": "^1.1"
  2904. },
  2905. "require-dev": {
  2906. "symfony/phpunit-bridge": "^5.0"
  2907. },
  2908. "type": "library",
  2909. "extra": {
  2910. "branch-alias": {
  2911. "dev-master": "3.4.x-dev"
  2912. }
  2913. },
  2914. "autoload": {
  2915. "psr-0": {
  2916. "Pimple": "src/"
  2917. }
  2918. },
  2919. "notification-url": "https://packagist.org/downloads/",
  2920. "license": [
  2921. "MIT"
  2922. ],
  2923. "authors": [
  2924. {
  2925. "name": "Fabien Potencier",
  2926. "email": "fabien@symfony.com"
  2927. }
  2928. ],
  2929. "description": "Pimple, a simple Dependency Injection Container",
  2930. "homepage": "https://pimple.symfony.com",
  2931. "keywords": [
  2932. "container",
  2933. "dependency injection"
  2934. ],
  2935. "support": {
  2936. "source": "https://github.com/silexphp/Pimple/tree/v3.4.0"
  2937. },
  2938. "time": "2021-03-06T08:28:00+00:00"
  2939. },
  2940. {
  2941. "name": "psr/cache",
  2942. "version": "1.0.1",
  2943. "source": {
  2944. "type": "git",
  2945. "url": "https://github.com/php-fig/cache.git",
  2946. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  2947. },
  2948. "dist": {
  2949. "type": "zip",
  2950. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  2951. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  2952. "shasum": ""
  2953. },
  2954. "require": {
  2955. "php": ">=5.3.0"
  2956. },
  2957. "type": "library",
  2958. "extra": {
  2959. "branch-alias": {
  2960. "dev-master": "1.0.x-dev"
  2961. }
  2962. },
  2963. "autoload": {
  2964. "psr-4": {
  2965. "Psr\\Cache\\": "src/"
  2966. }
  2967. },
  2968. "notification-url": "https://packagist.org/downloads/",
  2969. "license": [
  2970. "MIT"
  2971. ],
  2972. "authors": [
  2973. {
  2974. "name": "PHP-FIG",
  2975. "homepage": "http://www.php-fig.org/"
  2976. }
  2977. ],
  2978. "description": "Common interface for caching libraries",
  2979. "keywords": [
  2980. "cache",
  2981. "psr",
  2982. "psr-6"
  2983. ],
  2984. "support": {
  2985. "source": "https://github.com/php-fig/cache/tree/master"
  2986. },
  2987. "time": "2016-08-06T20:24:11+00:00"
  2988. },
  2989. {
  2990. "name": "psr/container",
  2991. "version": "1.1.1",
  2992. "source": {
  2993. "type": "git",
  2994. "url": "https://github.com/php-fig/container.git",
  2995. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
  2996. },
  2997. "dist": {
  2998. "type": "zip",
  2999. "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
  3000. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
  3001. "shasum": ""
  3002. },
  3003. "require": {
  3004. "php": ">=7.2.0"
  3005. },
  3006. "type": "library",
  3007. "autoload": {
  3008. "psr-4": {
  3009. "Psr\\Container\\": "src/"
  3010. }
  3011. },
  3012. "notification-url": "https://packagist.org/downloads/",
  3013. "license": [
  3014. "MIT"
  3015. ],
  3016. "authors": [
  3017. {
  3018. "name": "PHP-FIG",
  3019. "homepage": "https://www.php-fig.org/"
  3020. }
  3021. ],
  3022. "description": "Common Container Interface (PHP FIG PSR-11)",
  3023. "homepage": "https://github.com/php-fig/container",
  3024. "keywords": [
  3025. "PSR-11",
  3026. "container",
  3027. "container-interface",
  3028. "container-interop",
  3029. "psr"
  3030. ],
  3031. "support": {
  3032. "issues": "https://github.com/php-fig/container/issues",
  3033. "source": "https://github.com/php-fig/container/tree/1.1.1"
  3034. },
  3035. "time": "2021-03-05T17:36:06+00:00"
  3036. },
  3037. {
  3038. "name": "psr/http-client",
  3039. "version": "1.0.1",
  3040. "source": {
  3041. "type": "git",
  3042. "url": "https://github.com/php-fig/http-client.git",
  3043. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  3044. },
  3045. "dist": {
  3046. "type": "zip",
  3047. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3048. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3049. "shasum": ""
  3050. },
  3051. "require": {
  3052. "php": "^7.0 || ^8.0",
  3053. "psr/http-message": "^1.0"
  3054. },
  3055. "type": "library",
  3056. "extra": {
  3057. "branch-alias": {
  3058. "dev-master": "1.0.x-dev"
  3059. }
  3060. },
  3061. "autoload": {
  3062. "psr-4": {
  3063. "Psr\\Http\\Client\\": "src/"
  3064. }
  3065. },
  3066. "notification-url": "https://packagist.org/downloads/",
  3067. "license": [
  3068. "MIT"
  3069. ],
  3070. "authors": [
  3071. {
  3072. "name": "PHP-FIG",
  3073. "homepage": "http://www.php-fig.org/"
  3074. }
  3075. ],
  3076. "description": "Common interface for HTTP clients",
  3077. "homepage": "https://github.com/php-fig/http-client",
  3078. "keywords": [
  3079. "http",
  3080. "http-client",
  3081. "psr",
  3082. "psr-18"
  3083. ],
  3084. "support": {
  3085. "source": "https://github.com/php-fig/http-client/tree/master"
  3086. },
  3087. "time": "2020-06-29T06:28:15+00:00"
  3088. },
  3089. {
  3090. "name": "psr/http-factory",
  3091. "version": "1.0.1",
  3092. "source": {
  3093. "type": "git",
  3094. "url": "https://github.com/php-fig/http-factory.git",
  3095. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  3096. },
  3097. "dist": {
  3098. "type": "zip",
  3099. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  3100. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  3101. "shasum": ""
  3102. },
  3103. "require": {
  3104. "php": ">=7.0.0",
  3105. "psr/http-message": "^1.0"
  3106. },
  3107. "type": "library",
  3108. "extra": {
  3109. "branch-alias": {
  3110. "dev-master": "1.0.x-dev"
  3111. }
  3112. },
  3113. "autoload": {
  3114. "psr-4": {
  3115. "Psr\\Http\\Message\\": "src/"
  3116. }
  3117. },
  3118. "notification-url": "https://packagist.org/downloads/",
  3119. "license": [
  3120. "MIT"
  3121. ],
  3122. "authors": [
  3123. {
  3124. "name": "PHP-FIG",
  3125. "homepage": "http://www.php-fig.org/"
  3126. }
  3127. ],
  3128. "description": "Common interfaces for PSR-7 HTTP message factories",
  3129. "keywords": [
  3130. "factory",
  3131. "http",
  3132. "message",
  3133. "psr",
  3134. "psr-17",
  3135. "psr-7",
  3136. "request",
  3137. "response"
  3138. ],
  3139. "support": {
  3140. "source": "https://github.com/php-fig/http-factory/tree/master"
  3141. },
  3142. "time": "2019-04-30T12:38:16+00:00"
  3143. },
  3144. {
  3145. "name": "psr/http-message",
  3146. "version": "1.0.1",
  3147. "source": {
  3148. "type": "git",
  3149. "url": "https://github.com/php-fig/http-message.git",
  3150. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  3151. },
  3152. "dist": {
  3153. "type": "zip",
  3154. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  3155. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  3156. "shasum": ""
  3157. },
  3158. "require": {
  3159. "php": ">=5.3.0"
  3160. },
  3161. "type": "library",
  3162. "extra": {
  3163. "branch-alias": {
  3164. "dev-master": "1.0.x-dev"
  3165. }
  3166. },
  3167. "autoload": {
  3168. "psr-4": {
  3169. "Psr\\Http\\Message\\": "src/"
  3170. }
  3171. },
  3172. "notification-url": "https://packagist.org/downloads/",
  3173. "license": [
  3174. "MIT"
  3175. ],
  3176. "authors": [
  3177. {
  3178. "name": "PHP-FIG",
  3179. "homepage": "http://www.php-fig.org/"
  3180. }
  3181. ],
  3182. "description": "Common interface for HTTP messages",
  3183. "homepage": "https://github.com/php-fig/http-message",
  3184. "keywords": [
  3185. "http",
  3186. "http-message",
  3187. "psr",
  3188. "psr-7",
  3189. "request",
  3190. "response"
  3191. ],
  3192. "support": {
  3193. "source": "https://github.com/php-fig/http-message/tree/master"
  3194. },
  3195. "time": "2016-08-06T14:39:51+00:00"
  3196. },
  3197. {
  3198. "name": "psr/log",
  3199. "version": "1.1.4",
  3200. "source": {
  3201. "type": "git",
  3202. "url": "https://github.com/php-fig/log.git",
  3203. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  3204. },
  3205. "dist": {
  3206. "type": "zip",
  3207. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  3208. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  3209. "shasum": ""
  3210. },
  3211. "require": {
  3212. "php": ">=5.3.0"
  3213. },
  3214. "type": "library",
  3215. "extra": {
  3216. "branch-alias": {
  3217. "dev-master": "1.1.x-dev"
  3218. }
  3219. },
  3220. "autoload": {
  3221. "psr-4": {
  3222. "Psr\\Log\\": "Psr/Log/"
  3223. }
  3224. },
  3225. "notification-url": "https://packagist.org/downloads/",
  3226. "license": [
  3227. "MIT"
  3228. ],
  3229. "authors": [
  3230. {
  3231. "name": "PHP-FIG",
  3232. "homepage": "https://www.php-fig.org/"
  3233. }
  3234. ],
  3235. "description": "Common interface for logging libraries",
  3236. "homepage": "https://github.com/php-fig/log",
  3237. "keywords": [
  3238. "log",
  3239. "psr",
  3240. "psr-3"
  3241. ],
  3242. "support": {
  3243. "source": "https://github.com/php-fig/log/tree/1.1.4"
  3244. },
  3245. "time": "2021-05-03T11:20:27+00:00"
  3246. },
  3247. {
  3248. "name": "psr/simple-cache",
  3249. "version": "1.0.1",
  3250. "source": {
  3251. "type": "git",
  3252. "url": "https://github.com/php-fig/simple-cache.git",
  3253. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  3254. },
  3255. "dist": {
  3256. "type": "zip",
  3257. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3258. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3259. "shasum": ""
  3260. },
  3261. "require": {
  3262. "php": ">=5.3.0"
  3263. },
  3264. "type": "library",
  3265. "extra": {
  3266. "branch-alias": {
  3267. "dev-master": "1.0.x-dev"
  3268. }
  3269. },
  3270. "autoload": {
  3271. "psr-4": {
  3272. "Psr\\SimpleCache\\": "src/"
  3273. }
  3274. },
  3275. "notification-url": "https://packagist.org/downloads/",
  3276. "license": [
  3277. "MIT"
  3278. ],
  3279. "authors": [
  3280. {
  3281. "name": "PHP-FIG",
  3282. "homepage": "http://www.php-fig.org/"
  3283. }
  3284. ],
  3285. "description": "Common interfaces for simple caching",
  3286. "keywords": [
  3287. "cache",
  3288. "caching",
  3289. "psr",
  3290. "psr-16",
  3291. "simple-cache"
  3292. ],
  3293. "support": {
  3294. "source": "https://github.com/php-fig/simple-cache/tree/master"
  3295. },
  3296. "time": "2017-10-23T01:57:42+00:00"
  3297. },
  3298. {
  3299. "name": "qcloud/cos-sdk-v5",
  3300. "version": "v1.3.5",
  3301. "source": {
  3302. "type": "git",
  3303. "url": "https://github.com/tencentyun/cos-php-sdk-v5.git",
  3304. "reference": "e67ad8143695192ee206bcbcafc78c08da92c621"
  3305. },
  3306. "dist": {
  3307. "type": "zip",
  3308. "url": "https://api.github.com/repos/tencentyun/cos-php-sdk-v5/zipball/e67ad8143695192ee206bcbcafc78c08da92c621",
  3309. "reference": "e67ad8143695192ee206bcbcafc78c08da92c621",
  3310. "shasum": ""
  3311. },
  3312. "require": {
  3313. "guzzlehttp/guzzle": "~6.3",
  3314. "guzzlehttp/guzzle-services": "~1.1",
  3315. "php": ">=5.3.0"
  3316. },
  3317. "type": "library",
  3318. "autoload": {
  3319. "psr-4": {
  3320. "Qcloud\\Cos\\": "src/Qcloud/Cos/"
  3321. },
  3322. "files": [
  3323. "src/Qcloud/Cos/Common.php"
  3324. ]
  3325. },
  3326. "notification-url": "https://packagist.org/downloads/",
  3327. "license": [
  3328. "MIT"
  3329. ],
  3330. "authors": [
  3331. {
  3332. "name": "yaozongyou",
  3333. "email": "yaozongyou@vip.qq.com"
  3334. },
  3335. {
  3336. "name": "lewzylu",
  3337. "email": "327874225@qq.com"
  3338. }
  3339. ],
  3340. "description": "PHP SDK for QCloud COS",
  3341. "keywords": [
  3342. "cos",
  3343. "php",
  3344. "qcloud"
  3345. ],
  3346. "support": {
  3347. "issues": "https://github.com/tencentyun/cos-php-sdk-v5/issues",
  3348. "source": "https://github.com/tencentyun/cos-php-sdk-v5/tree/v2.2.0"
  3349. },
  3350. "time": "2021-05-18T12:47:31+00:00"
  3351. },
  3352. {
  3353. "name": "qiniu/php-sdk",
  3354. "version": "v7.4.0",
  3355. "source": {
  3356. "type": "git",
  3357. "url": "https://github.com/qiniu/php-sdk.git",
  3358. "reference": "1c6bc89166e524a40ee42bf516fb99ffc6401c82"
  3359. },
  3360. "dist": {
  3361. "type": "zip",
  3362. "url": "https://api.github.com/repos/qiniu/php-sdk/zipball/1c6bc89166e524a40ee42bf516fb99ffc6401c82",
  3363. "reference": "1c6bc89166e524a40ee42bf516fb99ffc6401c82",
  3364. "shasum": ""
  3365. },
  3366. "require": {
  3367. "php": ">=5.3.3"
  3368. },
  3369. "require-dev": {
  3370. "phpunit/phpunit": "~4.0",
  3371. "squizlabs/php_codesniffer": "~3.6"
  3372. },
  3373. "type": "library",
  3374. "autoload": {
  3375. "psr-4": {
  3376. "Qiniu\\": "src/Qiniu"
  3377. },
  3378. "files": [
  3379. "src/Qiniu/functions.php"
  3380. ]
  3381. },
  3382. "notification-url": "https://packagist.org/downloads/",
  3383. "license": [
  3384. "MIT"
  3385. ],
  3386. "authors": [
  3387. {
  3388. "name": "Qiniu",
  3389. "email": "sdk@qiniu.com",
  3390. "homepage": "http://www.qiniu.com"
  3391. }
  3392. ],
  3393. "description": "Qiniu Resource (Cloud) Storage SDK for PHP",
  3394. "homepage": "http://developer.qiniu.com/",
  3395. "keywords": [
  3396. "cloud",
  3397. "qiniu",
  3398. "sdk",
  3399. "storage"
  3400. ],
  3401. "support": {
  3402. "issues": "https://github.com/qiniu/php-sdk/issues",
  3403. "source": "https://github.com/qiniu/php-sdk/tree/v7.4.0"
  3404. },
  3405. "time": "2021-07-19T07:41:36+00:00"
  3406. },
  3407. {
  3408. "name": "ralouphie/getallheaders",
  3409. "version": "3.0.3",
  3410. "source": {
  3411. "type": "git",
  3412. "url": "https://github.com/ralouphie/getallheaders.git",
  3413. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  3414. },
  3415. "dist": {
  3416. "type": "zip",
  3417. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  3418. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  3419. "shasum": ""
  3420. },
  3421. "require": {
  3422. "php": ">=5.6"
  3423. },
  3424. "require-dev": {
  3425. "php-coveralls/php-coveralls": "^2.1",
  3426. "phpunit/phpunit": "^5 || ^6.5"
  3427. },
  3428. "type": "library",
  3429. "autoload": {
  3430. "files": [
  3431. "src/getallheaders.php"
  3432. ]
  3433. },
  3434. "notification-url": "https://packagist.org/downloads/",
  3435. "license": [
  3436. "MIT"
  3437. ],
  3438. "authors": [
  3439. {
  3440. "name": "Ralph Khattar",
  3441. "email": "ralph.khattar@gmail.com"
  3442. }
  3443. ],
  3444. "description": "A polyfill for getallheaders.",
  3445. "support": {
  3446. "issues": "https://github.com/ralouphie/getallheaders/issues",
  3447. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  3448. },
  3449. "time": "2019-03-08T08:55:37+00:00"
  3450. },
  3451. {
  3452. "name": "stechstudio/backoff",
  3453. "version": "1.2",
  3454. "source": {
  3455. "type": "git",
  3456. "url": "https://github.com/stechstudio/backoff.git",
  3457. "reference": "816e46107a6be2e1072ba0ff2cb26034872dfa49"
  3458. },
  3459. "dist": {
  3460. "type": "zip",
  3461. "url": "https://api.github.com/repos/stechstudio/backoff/zipball/816e46107a6be2e1072ba0ff2cb26034872dfa49",
  3462. "reference": "816e46107a6be2e1072ba0ff2cb26034872dfa49",
  3463. "shasum": ""
  3464. },
  3465. "require-dev": {
  3466. "phpunit/phpunit": "5.5.*"
  3467. },
  3468. "type": "library",
  3469. "autoload": {
  3470. "psr-4": {
  3471. "STS\\Backoff\\": "src"
  3472. },
  3473. "files": [
  3474. "src/helpers.php"
  3475. ]
  3476. },
  3477. "notification-url": "https://packagist.org/downloads/",
  3478. "license": [
  3479. "MIT"
  3480. ],
  3481. "authors": [
  3482. {
  3483. "name": "Joseph Szobody",
  3484. "email": "joseph@stechstudio.com"
  3485. }
  3486. ],
  3487. "description": "PHP library providing retry functionality with multiple backoff strategies and jitter support",
  3488. "support": {
  3489. "issues": "https://github.com/stechstudio/backoff/issues",
  3490. "source": "https://github.com/stechstudio/backoff/tree/1.2"
  3491. },
  3492. "time": "2020-12-26T14:57:10+00:00"
  3493. },
  3494. {
  3495. "name": "swoole/ide-helper",
  3496. "version": "4.7.1",
  3497. "source": {
  3498. "type": "git",
  3499. "url": "https://github.com/swoole/ide-helper.git",
  3500. "reference": "918a98b5b264425fdb59461d9bbd7f9b504ead71"
  3501. },
  3502. "dist": {
  3503. "type": "zip",
  3504. "url": "https://api.github.com/repos/swoole/ide-helper/zipball/918a98b5b264425fdb59461d9bbd7f9b504ead71",
  3505. "reference": "918a98b5b264425fdb59461d9bbd7f9b504ead71",
  3506. "shasum": ""
  3507. },
  3508. "require-dev": {
  3509. "guzzlehttp/guzzle": "~6.5.0",
  3510. "laminas/laminas-code": "~3.4.0",
  3511. "squizlabs/php_codesniffer": "~3.5.0",
  3512. "symfony/filesystem": "~4.0"
  3513. },
  3514. "type": "library",
  3515. "notification-url": "https://packagist.org/downloads/",
  3516. "license": [
  3517. "Apache-2.0"
  3518. ],
  3519. "authors": [
  3520. {
  3521. "name": "Team Swoole",
  3522. "email": "team@swoole.com"
  3523. }
  3524. ],
  3525. "description": "IDE help files for Swoole.",
  3526. "support": {
  3527. "issues": "https://github.com/swoole/ide-helper/issues",
  3528. "source": "https://github.com/swoole/ide-helper/tree/4.7.1"
  3529. },
  3530. "funding": [
  3531. {
  3532. "url": "https://gitee.com/swoole/swoole?donate=true",
  3533. "type": "custom"
  3534. },
  3535. {
  3536. "url": "https://github.com/swoole",
  3537. "type": "github"
  3538. }
  3539. ],
  3540. "time": "2021-08-19T17:25:57+00:00"
  3541. },
  3542. {
  3543. "name": "symfony/deprecation-contracts",
  3544. "version": "v2.4.0",
  3545. "source": {
  3546. "type": "git",
  3547. "url": "https://github.com/symfony/deprecation-contracts.git",
  3548. "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627"
  3549. },
  3550. "dist": {
  3551. "type": "zip",
  3552. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5f38c8804a9e97d23e0c8d63341088cd8a22d627",
  3553. "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627",
  3554. "shasum": ""
  3555. },
  3556. "require": {
  3557. "php": ">=7.1"
  3558. },
  3559. "type": "library",
  3560. "extra": {
  3561. "branch-alias": {
  3562. "dev-main": "2.4-dev"
  3563. },
  3564. "thanks": {
  3565. "name": "symfony/contracts",
  3566. "url": "https://github.com/symfony/contracts"
  3567. }
  3568. },
  3569. "autoload": {
  3570. "files": [
  3571. "function.php"
  3572. ]
  3573. },
  3574. "notification-url": "https://packagist.org/downloads/",
  3575. "license": [
  3576. "MIT"
  3577. ],
  3578. "authors": [
  3579. {
  3580. "name": "Nicolas Grekas",
  3581. "email": "p@tchwork.com"
  3582. },
  3583. {
  3584. "name": "Symfony Community",
  3585. "homepage": "https://symfony.com/contributors"
  3586. }
  3587. ],
  3588. "description": "A generic function and convention to trigger deprecation notices",
  3589. "homepage": "https://symfony.com",
  3590. "support": {
  3591. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.4.0"
  3592. },
  3593. "funding": [
  3594. {
  3595. "url": "https://symfony.com/sponsor",
  3596. "type": "custom"
  3597. },
  3598. {
  3599. "url": "https://github.com/fabpot",
  3600. "type": "github"
  3601. },
  3602. {
  3603. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3604. "type": "tidelift"
  3605. }
  3606. ],
  3607. "time": "2021-03-23T23:28:01+00:00"
  3608. },
  3609. {
  3610. "name": "symfony/event-dispatcher",
  3611. "version": "v2.8.52",
  3612. "source": {
  3613. "type": "git",
  3614. "url": "https://github.com/symfony/event-dispatcher.git",
  3615. "reference": "a77e974a5fecb4398833b0709210e3d5e334ffb0"
  3616. },
  3617. "dist": {
  3618. "type": "zip",
  3619. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/a77e974a5fecb4398833b0709210e3d5e334ffb0",
  3620. "reference": "a77e974a5fecb4398833b0709210e3d5e334ffb0",
  3621. "shasum": ""
  3622. },
  3623. "require": {
  3624. "php": ">=5.3.9"
  3625. },
  3626. "require-dev": {
  3627. "psr/log": "~1.0",
  3628. "symfony/config": "^2.0.5|~3.0.0",
  3629. "symfony/dependency-injection": "~2.6|~3.0.0",
  3630. "symfony/expression-language": "~2.6|~3.0.0",
  3631. "symfony/stopwatch": "~2.3|~3.0.0"
  3632. },
  3633. "suggest": {
  3634. "symfony/dependency-injection": "",
  3635. "symfony/http-kernel": ""
  3636. },
  3637. "type": "library",
  3638. "extra": {
  3639. "branch-alias": {
  3640. "dev-master": "2.8-dev"
  3641. }
  3642. },
  3643. "autoload": {
  3644. "psr-4": {
  3645. "Symfony\\Component\\EventDispatcher\\": ""
  3646. },
  3647. "exclude-from-classmap": [
  3648. "/Tests/"
  3649. ]
  3650. },
  3651. "notification-url": "https://packagist.org/downloads/",
  3652. "license": [
  3653. "MIT"
  3654. ],
  3655. "authors": [
  3656. {
  3657. "name": "Fabien Potencier",
  3658. "email": "fabien@symfony.com"
  3659. },
  3660. {
  3661. "name": "Symfony Community",
  3662. "homepage": "https://symfony.com/contributors"
  3663. }
  3664. ],
  3665. "description": "Symfony EventDispatcher Component",
  3666. "homepage": "https://symfony.com",
  3667. "support": {
  3668. "source": "https://github.com/symfony/event-dispatcher/tree/v2.8.50"
  3669. },
  3670. "time": "2018-11-21T14:20:20+00:00"
  3671. },
  3672. {
  3673. "name": "symfony/finder",
  3674. "version": "v5.3.4",
  3675. "source": {
  3676. "type": "git",
  3677. "url": "https://github.com/symfony/finder.git",
  3678. "reference": "17f50e06018baec41551a71a15731287dbaab186"
  3679. },
  3680. "dist": {
  3681. "type": "zip",
  3682. "url": "https://api.github.com/repos/symfony/finder/zipball/17f50e06018baec41551a71a15731287dbaab186",
  3683. "reference": "17f50e06018baec41551a71a15731287dbaab186",
  3684. "shasum": ""
  3685. },
  3686. "require": {
  3687. "php": ">=7.2.5",
  3688. "symfony/polyfill-php80": "^1.16"
  3689. },
  3690. "type": "library",
  3691. "autoload": {
  3692. "psr-4": {
  3693. "Symfony\\Component\\Finder\\": ""
  3694. },
  3695. "exclude-from-classmap": [
  3696. "/Tests/"
  3697. ]
  3698. },
  3699. "notification-url": "https://packagist.org/downloads/",
  3700. "license": [
  3701. "MIT"
  3702. ],
  3703. "authors": [
  3704. {
  3705. "name": "Fabien Potencier",
  3706. "email": "fabien@symfony.com"
  3707. },
  3708. {
  3709. "name": "Symfony Community",
  3710. "homepage": "https://symfony.com/contributors"
  3711. }
  3712. ],
  3713. "description": "Finds files and directories via an intuitive fluent interface",
  3714. "homepage": "https://symfony.com",
  3715. "support": {
  3716. "source": "https://github.com/symfony/finder/tree/v5.3.4"
  3717. },
  3718. "funding": [
  3719. {
  3720. "url": "https://symfony.com/sponsor",
  3721. "type": "custom"
  3722. },
  3723. {
  3724. "url": "https://github.com/fabpot",
  3725. "type": "github"
  3726. },
  3727. {
  3728. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3729. "type": "tidelift"
  3730. }
  3731. ],
  3732. "time": "2021-07-23T15:54:19+00:00"
  3733. },
  3734. {
  3735. "name": "symfony/http-foundation",
  3736. "version": "v3.4.47",
  3737. "source": {
  3738. "type": "git",
  3739. "url": "https://github.com/symfony/http-foundation.git",
  3740. "reference": "b9885fcce6fe494201da4f70a9309770e9d13dc8"
  3741. },
  3742. "dist": {
  3743. "type": "zip",
  3744. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/b9885fcce6fe494201da4f70a9309770e9d13dc8",
  3745. "reference": "b9885fcce6fe494201da4f70a9309770e9d13dc8",
  3746. "shasum": ""
  3747. },
  3748. "require": {
  3749. "php": "^5.5.9|>=7.0.8",
  3750. "symfony/polyfill-mbstring": "~1.1",
  3751. "symfony/polyfill-php70": "~1.6"
  3752. },
  3753. "require-dev": {
  3754. "symfony/expression-language": "~2.8|~3.0|~4.0"
  3755. },
  3756. "type": "library",
  3757. "autoload": {
  3758. "psr-4": {
  3759. "Symfony\\Component\\HttpFoundation\\": ""
  3760. },
  3761. "exclude-from-classmap": [
  3762. "/Tests/"
  3763. ]
  3764. },
  3765. "notification-url": "https://packagist.org/downloads/",
  3766. "license": [
  3767. "MIT"
  3768. ],
  3769. "authors": [
  3770. {
  3771. "name": "Fabien Potencier",
  3772. "email": "fabien@symfony.com"
  3773. },
  3774. {
  3775. "name": "Symfony Community",
  3776. "homepage": "https://symfony.com/contributors"
  3777. }
  3778. ],
  3779. "description": "Symfony HttpFoundation Component",
  3780. "homepage": "https://symfony.com",
  3781. "support": {
  3782. "source": "https://github.com/symfony/http-foundation/tree/v3.4.47"
  3783. },
  3784. "funding": [
  3785. {
  3786. "url": "https://symfony.com/sponsor",
  3787. "type": "custom"
  3788. },
  3789. {
  3790. "url": "https://github.com/fabpot",
  3791. "type": "github"
  3792. },
  3793. {
  3794. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3795. "type": "tidelift"
  3796. }
  3797. ],
  3798. "time": "2020-10-24T10:57:07+00:00"
  3799. },
  3800. {
  3801. "name": "symfony/options-resolver",
  3802. "version": "v5.3.4",
  3803. "source": {
  3804. "type": "git",
  3805. "url": "https://github.com/symfony/options-resolver.git",
  3806. "reference": "a603e5701bd6e305cfc777a8b50bf081ef73105e"
  3807. },
  3808. "dist": {
  3809. "type": "zip",
  3810. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/a603e5701bd6e305cfc777a8b50bf081ef73105e",
  3811. "reference": "a603e5701bd6e305cfc777a8b50bf081ef73105e",
  3812. "shasum": ""
  3813. },
  3814. "require": {
  3815. "php": ">=7.2.5",
  3816. "symfony/deprecation-contracts": "^2.1",
  3817. "symfony/polyfill-php73": "~1.0",
  3818. "symfony/polyfill-php80": "^1.16"
  3819. },
  3820. "type": "library",
  3821. "autoload": {
  3822. "psr-4": {
  3823. "Symfony\\Component\\OptionsResolver\\": ""
  3824. },
  3825. "exclude-from-classmap": [
  3826. "/Tests/"
  3827. ]
  3828. },
  3829. "notification-url": "https://packagist.org/downloads/",
  3830. "license": [
  3831. "MIT"
  3832. ],
  3833. "authors": [
  3834. {
  3835. "name": "Fabien Potencier",
  3836. "email": "fabien@symfony.com"
  3837. },
  3838. {
  3839. "name": "Symfony Community",
  3840. "homepage": "https://symfony.com/contributors"
  3841. }
  3842. ],
  3843. "description": "Provides an improved replacement for the array_replace PHP function",
  3844. "homepage": "https://symfony.com",
  3845. "keywords": [
  3846. "config",
  3847. "configuration",
  3848. "options"
  3849. ],
  3850. "support": {
  3851. "source": "https://github.com/symfony/options-resolver/tree/v5.3.4"
  3852. },
  3853. "funding": [
  3854. {
  3855. "url": "https://symfony.com/sponsor",
  3856. "type": "custom"
  3857. },
  3858. {
  3859. "url": "https://github.com/fabpot",
  3860. "type": "github"
  3861. },
  3862. {
  3863. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3864. "type": "tidelift"
  3865. }
  3866. ],
  3867. "time": "2021-07-23T15:55:36+00:00"
  3868. },
  3869. {
  3870. "name": "symfony/polyfill-ctype",
  3871. "version": "v1.23.0",
  3872. "source": {
  3873. "type": "git",
  3874. "url": "https://github.com/symfony/polyfill-ctype.git",
  3875. "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce"
  3876. },
  3877. "dist": {
  3878. "type": "zip",
  3879. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/46cd95797e9df938fdd2b03693b5fca5e64b01ce",
  3880. "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce",
  3881. "shasum": ""
  3882. },
  3883. "require": {
  3884. "php": ">=7.1"
  3885. },
  3886. "suggest": {
  3887. "ext-ctype": "For best performance"
  3888. },
  3889. "type": "library",
  3890. "extra": {
  3891. "branch-alias": {
  3892. "dev-main": "1.23-dev"
  3893. },
  3894. "thanks": {
  3895. "name": "symfony/polyfill",
  3896. "url": "https://github.com/symfony/polyfill"
  3897. }
  3898. },
  3899. "autoload": {
  3900. "psr-4": {
  3901. "Symfony\\Polyfill\\Ctype\\": ""
  3902. },
  3903. "files": [
  3904. "bootstrap.php"
  3905. ]
  3906. },
  3907. "notification-url": "https://packagist.org/downloads/",
  3908. "license": [
  3909. "MIT"
  3910. ],
  3911. "authors": [
  3912. {
  3913. "name": "Gert de Pagter",
  3914. "email": "BackEndTea@gmail.com"
  3915. },
  3916. {
  3917. "name": "Symfony Community",
  3918. "homepage": "https://symfony.com/contributors"
  3919. }
  3920. ],
  3921. "description": "Symfony polyfill for ctype functions",
  3922. "homepage": "https://symfony.com",
  3923. "keywords": [
  3924. "compatibility",
  3925. "ctype",
  3926. "polyfill",
  3927. "portable"
  3928. ],
  3929. "support": {
  3930. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.23.0"
  3931. },
  3932. "funding": [
  3933. {
  3934. "url": "https://symfony.com/sponsor",
  3935. "type": "custom"
  3936. },
  3937. {
  3938. "url": "https://github.com/fabpot",
  3939. "type": "github"
  3940. },
  3941. {
  3942. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3943. "type": "tidelift"
  3944. }
  3945. ],
  3946. "time": "2021-02-19T12:13:01+00:00"
  3947. },
  3948. {
  3949. "name": "symfony/polyfill-intl-grapheme",
  3950. "version": "v1.23.1",
  3951. "source": {
  3952. "type": "git",
  3953. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  3954. "reference": "16880ba9c5ebe3642d1995ab866db29270b36535"
  3955. },
  3956. "dist": {
  3957. "type": "zip",
  3958. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/16880ba9c5ebe3642d1995ab866db29270b36535",
  3959. "reference": "16880ba9c5ebe3642d1995ab866db29270b36535",
  3960. "shasum": ""
  3961. },
  3962. "require": {
  3963. "php": ">=7.1"
  3964. },
  3965. "suggest": {
  3966. "ext-intl": "For best performance"
  3967. },
  3968. "type": "library",
  3969. "extra": {
  3970. "branch-alias": {
  3971. "dev-main": "1.23-dev"
  3972. },
  3973. "thanks": {
  3974. "name": "symfony/polyfill",
  3975. "url": "https://github.com/symfony/polyfill"
  3976. }
  3977. },
  3978. "autoload": {
  3979. "psr-4": {
  3980. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  3981. },
  3982. "files": [
  3983. "bootstrap.php"
  3984. ]
  3985. },
  3986. "notification-url": "https://packagist.org/downloads/",
  3987. "license": [
  3988. "MIT"
  3989. ],
  3990. "authors": [
  3991. {
  3992. "name": "Nicolas Grekas",
  3993. "email": "p@tchwork.com"
  3994. },
  3995. {
  3996. "name": "Symfony Community",
  3997. "homepage": "https://symfony.com/contributors"
  3998. }
  3999. ],
  4000. "description": "Symfony polyfill for intl's grapheme_* functions",
  4001. "homepage": "https://symfony.com",
  4002. "keywords": [
  4003. "compatibility",
  4004. "grapheme",
  4005. "intl",
  4006. "polyfill",
  4007. "portable",
  4008. "shim"
  4009. ],
  4010. "support": {
  4011. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.23.1"
  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-05-27T12:26:48+00:00"
  4028. },
  4029. {
  4030. "name": "symfony/polyfill-intl-idn",
  4031. "version": "v1.23.0",
  4032. "source": {
  4033. "type": "git",
  4034. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  4035. "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65"
  4036. },
  4037. "dist": {
  4038. "type": "zip",
  4039. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/65bd267525e82759e7d8c4e8ceea44f398838e65",
  4040. "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65",
  4041. "shasum": ""
  4042. },
  4043. "require": {
  4044. "php": ">=7.1",
  4045. "symfony/polyfill-intl-normalizer": "^1.10",
  4046. "symfony/polyfill-php72": "^1.10"
  4047. },
  4048. "suggest": {
  4049. "ext-intl": "For best performance"
  4050. },
  4051. "type": "library",
  4052. "extra": {
  4053. "branch-alias": {
  4054. "dev-main": "1.23-dev"
  4055. },
  4056. "thanks": {
  4057. "name": "symfony/polyfill",
  4058. "url": "https://github.com/symfony/polyfill"
  4059. }
  4060. },
  4061. "autoload": {
  4062. "psr-4": {
  4063. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  4064. },
  4065. "files": [
  4066. "bootstrap.php"
  4067. ]
  4068. },
  4069. "notification-url": "https://packagist.org/downloads/",
  4070. "license": [
  4071. "MIT"
  4072. ],
  4073. "authors": [
  4074. {
  4075. "name": "Laurent Bassin",
  4076. "email": "laurent@bassin.info"
  4077. },
  4078. {
  4079. "name": "Trevor Rowbotham",
  4080. "email": "trevor.rowbotham@pm.me"
  4081. },
  4082. {
  4083. "name": "Symfony Community",
  4084. "homepage": "https://symfony.com/contributors"
  4085. }
  4086. ],
  4087. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  4088. "homepage": "https://symfony.com",
  4089. "keywords": [
  4090. "compatibility",
  4091. "idn",
  4092. "intl",
  4093. "polyfill",
  4094. "portable",
  4095. "shim"
  4096. ],
  4097. "support": {
  4098. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.23.0"
  4099. },
  4100. "funding": [
  4101. {
  4102. "url": "https://symfony.com/sponsor",
  4103. "type": "custom"
  4104. },
  4105. {
  4106. "url": "https://github.com/fabpot",
  4107. "type": "github"
  4108. },
  4109. {
  4110. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4111. "type": "tidelift"
  4112. }
  4113. ],
  4114. "time": "2021-05-27T09:27:20+00:00"
  4115. },
  4116. {
  4117. "name": "symfony/polyfill-intl-normalizer",
  4118. "version": "v1.23.0",
  4119. "source": {
  4120. "type": "git",
  4121. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  4122. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8"
  4123. },
  4124. "dist": {
  4125. "type": "zip",
  4126. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8590a5f561694770bdcd3f9b5c69dde6945028e8",
  4127. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8",
  4128. "shasum": ""
  4129. },
  4130. "require": {
  4131. "php": ">=7.1"
  4132. },
  4133. "suggest": {
  4134. "ext-intl": "For best performance"
  4135. },
  4136. "type": "library",
  4137. "extra": {
  4138. "branch-alias": {
  4139. "dev-main": "1.23-dev"
  4140. },
  4141. "thanks": {
  4142. "name": "symfony/polyfill",
  4143. "url": "https://github.com/symfony/polyfill"
  4144. }
  4145. },
  4146. "autoload": {
  4147. "psr-4": {
  4148. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  4149. },
  4150. "files": [
  4151. "bootstrap.php"
  4152. ],
  4153. "classmap": [
  4154. "Resources/stubs"
  4155. ]
  4156. },
  4157. "notification-url": "https://packagist.org/downloads/",
  4158. "license": [
  4159. "MIT"
  4160. ],
  4161. "authors": [
  4162. {
  4163. "name": "Nicolas Grekas",
  4164. "email": "p@tchwork.com"
  4165. },
  4166. {
  4167. "name": "Symfony Community",
  4168. "homepage": "https://symfony.com/contributors"
  4169. }
  4170. ],
  4171. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  4172. "homepage": "https://symfony.com",
  4173. "keywords": [
  4174. "compatibility",
  4175. "intl",
  4176. "normalizer",
  4177. "polyfill",
  4178. "portable",
  4179. "shim"
  4180. ],
  4181. "support": {
  4182. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.23.0"
  4183. },
  4184. "funding": [
  4185. {
  4186. "url": "https://symfony.com/sponsor",
  4187. "type": "custom"
  4188. },
  4189. {
  4190. "url": "https://github.com/fabpot",
  4191. "type": "github"
  4192. },
  4193. {
  4194. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4195. "type": "tidelift"
  4196. }
  4197. ],
  4198. "time": "2021-02-19T12:13:01+00:00"
  4199. },
  4200. {
  4201. "name": "symfony/polyfill-mbstring",
  4202. "version": "v1.23.1",
  4203. "source": {
  4204. "type": "git",
  4205. "url": "https://github.com/symfony/polyfill-mbstring.git",
  4206. "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6"
  4207. },
  4208. "dist": {
  4209. "type": "zip",
  4210. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9174a3d80210dca8daa7f31fec659150bbeabfc6",
  4211. "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6",
  4212. "shasum": ""
  4213. },
  4214. "require": {
  4215. "php": ">=7.1"
  4216. },
  4217. "suggest": {
  4218. "ext-mbstring": "For best performance"
  4219. },
  4220. "type": "library",
  4221. "extra": {
  4222. "branch-alias": {
  4223. "dev-main": "1.23-dev"
  4224. },
  4225. "thanks": {
  4226. "name": "symfony/polyfill",
  4227. "url": "https://github.com/symfony/polyfill"
  4228. }
  4229. },
  4230. "autoload": {
  4231. "psr-4": {
  4232. "Symfony\\Polyfill\\Mbstring\\": ""
  4233. },
  4234. "files": [
  4235. "bootstrap.php"
  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 the Mbstring extension",
  4253. "homepage": "https://symfony.com",
  4254. "keywords": [
  4255. "compatibility",
  4256. "mbstring",
  4257. "polyfill",
  4258. "portable",
  4259. "shim"
  4260. ],
  4261. "support": {
  4262. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.23.1"
  4263. },
  4264. "funding": [
  4265. {
  4266. "url": "https://symfony.com/sponsor",
  4267. "type": "custom"
  4268. },
  4269. {
  4270. "url": "https://github.com/fabpot",
  4271. "type": "github"
  4272. },
  4273. {
  4274. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4275. "type": "tidelift"
  4276. }
  4277. ],
  4278. "time": "2021-05-27T12:26:48+00:00"
  4279. },
  4280. {
  4281. "name": "symfony/polyfill-php70",
  4282. "version": "v1.20.0",
  4283. "source": {
  4284. "type": "git",
  4285. "url": "https://github.com/symfony/polyfill-php70.git",
  4286. "reference": "5f03a781d984aae42cebd18e7912fa80f02ee644"
  4287. },
  4288. "dist": {
  4289. "type": "zip",
  4290. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/5f03a781d984aae42cebd18e7912fa80f02ee644",
  4291. "reference": "5f03a781d984aae42cebd18e7912fa80f02ee644",
  4292. "shasum": ""
  4293. },
  4294. "require": {
  4295. "php": ">=7.1"
  4296. },
  4297. "type": "metapackage",
  4298. "extra": {
  4299. "branch-alias": {
  4300. "dev-main": "1.20-dev"
  4301. },
  4302. "thanks": {
  4303. "name": "symfony/polyfill",
  4304. "url": "https://github.com/symfony/polyfill"
  4305. }
  4306. },
  4307. "notification-url": "https://packagist.org/downloads/",
  4308. "license": [
  4309. "MIT"
  4310. ],
  4311. "authors": [
  4312. {
  4313. "name": "Nicolas Grekas",
  4314. "email": "p@tchwork.com"
  4315. },
  4316. {
  4317. "name": "Symfony Community",
  4318. "homepage": "https://symfony.com/contributors"
  4319. }
  4320. ],
  4321. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  4322. "homepage": "https://symfony.com",
  4323. "keywords": [
  4324. "compatibility",
  4325. "polyfill",
  4326. "portable",
  4327. "shim"
  4328. ],
  4329. "support": {
  4330. "source": "https://github.com/symfony/polyfill-php70/tree/v1.20.0"
  4331. },
  4332. "funding": [
  4333. {
  4334. "url": "https://symfony.com/sponsor",
  4335. "type": "custom"
  4336. },
  4337. {
  4338. "url": "https://github.com/fabpot",
  4339. "type": "github"
  4340. },
  4341. {
  4342. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4343. "type": "tidelift"
  4344. }
  4345. ],
  4346. "time": "2020-10-23T14:02:19+00:00"
  4347. },
  4348. {
  4349. "name": "symfony/polyfill-php72",
  4350. "version": "v1.23.0",
  4351. "source": {
  4352. "type": "git",
  4353. "url": "https://github.com/symfony/polyfill-php72.git",
  4354. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976"
  4355. },
  4356. "dist": {
  4357. "type": "zip",
  4358. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/9a142215a36a3888e30d0a9eeea9766764e96976",
  4359. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976",
  4360. "shasum": ""
  4361. },
  4362. "require": {
  4363. "php": ">=7.1"
  4364. },
  4365. "type": "library",
  4366. "extra": {
  4367. "branch-alias": {
  4368. "dev-main": "1.23-dev"
  4369. },
  4370. "thanks": {
  4371. "name": "symfony/polyfill",
  4372. "url": "https://github.com/symfony/polyfill"
  4373. }
  4374. },
  4375. "autoload": {
  4376. "psr-4": {
  4377. "Symfony\\Polyfill\\Php72\\": ""
  4378. },
  4379. "files": [
  4380. "bootstrap.php"
  4381. ]
  4382. },
  4383. "notification-url": "https://packagist.org/downloads/",
  4384. "license": [
  4385. "MIT"
  4386. ],
  4387. "authors": [
  4388. {
  4389. "name": "Nicolas Grekas",
  4390. "email": "p@tchwork.com"
  4391. },
  4392. {
  4393. "name": "Symfony Community",
  4394. "homepage": "https://symfony.com/contributors"
  4395. }
  4396. ],
  4397. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  4398. "homepage": "https://symfony.com",
  4399. "keywords": [
  4400. "compatibility",
  4401. "polyfill",
  4402. "portable",
  4403. "shim"
  4404. ],
  4405. "support": {
  4406. "source": "https://github.com/symfony/polyfill-php72/tree/v1.23.0"
  4407. },
  4408. "funding": [
  4409. {
  4410. "url": "https://symfony.com/sponsor",
  4411. "type": "custom"
  4412. },
  4413. {
  4414. "url": "https://github.com/fabpot",
  4415. "type": "github"
  4416. },
  4417. {
  4418. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4419. "type": "tidelift"
  4420. }
  4421. ],
  4422. "time": "2021-05-27T09:17:38+00:00"
  4423. },
  4424. {
  4425. "name": "symfony/polyfill-php73",
  4426. "version": "v1.23.0",
  4427. "source": {
  4428. "type": "git",
  4429. "url": "https://github.com/symfony/polyfill-php73.git",
  4430. "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010"
  4431. },
  4432. "dist": {
  4433. "type": "zip",
  4434. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fba8933c384d6476ab14fb7b8526e5287ca7e010",
  4435. "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010",
  4436. "shasum": ""
  4437. },
  4438. "require": {
  4439. "php": ">=7.1"
  4440. },
  4441. "type": "library",
  4442. "extra": {
  4443. "branch-alias": {
  4444. "dev-main": "1.23-dev"
  4445. },
  4446. "thanks": {
  4447. "name": "symfony/polyfill",
  4448. "url": "https://github.com/symfony/polyfill"
  4449. }
  4450. },
  4451. "autoload": {
  4452. "psr-4": {
  4453. "Symfony\\Polyfill\\Php73\\": ""
  4454. },
  4455. "files": [
  4456. "bootstrap.php"
  4457. ],
  4458. "classmap": [
  4459. "Resources/stubs"
  4460. ]
  4461. },
  4462. "notification-url": "https://packagist.org/downloads/",
  4463. "license": [
  4464. "MIT"
  4465. ],
  4466. "authors": [
  4467. {
  4468. "name": "Nicolas Grekas",
  4469. "email": "p@tchwork.com"
  4470. },
  4471. {
  4472. "name": "Symfony Community",
  4473. "homepage": "https://symfony.com/contributors"
  4474. }
  4475. ],
  4476. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  4477. "homepage": "https://symfony.com",
  4478. "keywords": [
  4479. "compatibility",
  4480. "polyfill",
  4481. "portable",
  4482. "shim"
  4483. ],
  4484. "support": {
  4485. "source": "https://github.com/symfony/polyfill-php73/tree/v1.23.0"
  4486. },
  4487. "funding": [
  4488. {
  4489. "url": "https://symfony.com/sponsor",
  4490. "type": "custom"
  4491. },
  4492. {
  4493. "url": "https://github.com/fabpot",
  4494. "type": "github"
  4495. },
  4496. {
  4497. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4498. "type": "tidelift"
  4499. }
  4500. ],
  4501. "time": "2021-02-19T12:13:01+00:00"
  4502. },
  4503. {
  4504. "name": "symfony/polyfill-php80",
  4505. "version": "v1.23.1",
  4506. "source": {
  4507. "type": "git",
  4508. "url": "https://github.com/symfony/polyfill-php80.git",
  4509. "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be"
  4510. },
  4511. "dist": {
  4512. "type": "zip",
  4513. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/1100343ed1a92e3a38f9ae122fc0eb21602547be",
  4514. "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be",
  4515. "shasum": ""
  4516. },
  4517. "require": {
  4518. "php": ">=7.1"
  4519. },
  4520. "type": "library",
  4521. "extra": {
  4522. "branch-alias": {
  4523. "dev-main": "1.23-dev"
  4524. },
  4525. "thanks": {
  4526. "name": "symfony/polyfill",
  4527. "url": "https://github.com/symfony/polyfill"
  4528. }
  4529. },
  4530. "autoload": {
  4531. "psr-4": {
  4532. "Symfony\\Polyfill\\Php80\\": ""
  4533. },
  4534. "files": [
  4535. "bootstrap.php"
  4536. ],
  4537. "classmap": [
  4538. "Resources/stubs"
  4539. ]
  4540. },
  4541. "notification-url": "https://packagist.org/downloads/",
  4542. "license": [
  4543. "MIT"
  4544. ],
  4545. "authors": [
  4546. {
  4547. "name": "Ion Bazan",
  4548. "email": "ion.bazan@gmail.com"
  4549. },
  4550. {
  4551. "name": "Nicolas Grekas",
  4552. "email": "p@tchwork.com"
  4553. },
  4554. {
  4555. "name": "Symfony Community",
  4556. "homepage": "https://symfony.com/contributors"
  4557. }
  4558. ],
  4559. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  4560. "homepage": "https://symfony.com",
  4561. "keywords": [
  4562. "compatibility",
  4563. "polyfill",
  4564. "portable",
  4565. "shim"
  4566. ],
  4567. "support": {
  4568. "source": "https://github.com/symfony/polyfill-php80/tree/v1.23.1"
  4569. },
  4570. "funding": [
  4571. {
  4572. "url": "https://symfony.com/sponsor",
  4573. "type": "custom"
  4574. },
  4575. {
  4576. "url": "https://github.com/fabpot",
  4577. "type": "github"
  4578. },
  4579. {
  4580. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4581. "type": "tidelift"
  4582. }
  4583. ],
  4584. "time": "2021-07-28T13:41:28+00:00"
  4585. },
  4586. {
  4587. "name": "symfony/process",
  4588. "version": "v4.4.27",
  4589. "source": {
  4590. "type": "git",
  4591. "url": "https://github.com/symfony/process.git",
  4592. "reference": "0b7dc5599ac4aa6d7b936c8f7d10abae64f6cf7f"
  4593. },
  4594. "dist": {
  4595. "type": "zip",
  4596. "url": "https://api.github.com/repos/symfony/process/zipball/0b7dc5599ac4aa6d7b936c8f7d10abae64f6cf7f",
  4597. "reference": "0b7dc5599ac4aa6d7b936c8f7d10abae64f6cf7f",
  4598. "shasum": ""
  4599. },
  4600. "require": {
  4601. "php": ">=7.1.3",
  4602. "symfony/polyfill-php80": "^1.16"
  4603. },
  4604. "type": "library",
  4605. "autoload": {
  4606. "psr-4": {
  4607. "Symfony\\Component\\Process\\": ""
  4608. },
  4609. "exclude-from-classmap": [
  4610. "/Tests/"
  4611. ]
  4612. },
  4613. "notification-url": "https://packagist.org/downloads/",
  4614. "license": [
  4615. "MIT"
  4616. ],
  4617. "authors": [
  4618. {
  4619. "name": "Fabien Potencier",
  4620. "email": "fabien@symfony.com"
  4621. },
  4622. {
  4623. "name": "Symfony Community",
  4624. "homepage": "https://symfony.com/contributors"
  4625. }
  4626. ],
  4627. "description": "Executes commands in sub-processes",
  4628. "homepage": "https://symfony.com",
  4629. "support": {
  4630. "source": "https://github.com/symfony/process/tree/v4.4.27"
  4631. },
  4632. "funding": [
  4633. {
  4634. "url": "https://symfony.com/sponsor",
  4635. "type": "custom"
  4636. },
  4637. {
  4638. "url": "https://github.com/fabpot",
  4639. "type": "github"
  4640. },
  4641. {
  4642. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4643. "type": "tidelift"
  4644. }
  4645. ],
  4646. "time": "2021-07-23T15:41:52+00:00"
  4647. },
  4648. {
  4649. "name": "symfony/property-access",
  4650. "version": "v5.3.4",
  4651. "source": {
  4652. "type": "git",
  4653. "url": "https://github.com/symfony/property-access.git",
  4654. "reference": "098681253076af7070df7d9debe5f75733eea189"
  4655. },
  4656. "dist": {
  4657. "type": "zip",
  4658. "url": "https://api.github.com/repos/symfony/property-access/zipball/098681253076af7070df7d9debe5f75733eea189",
  4659. "reference": "098681253076af7070df7d9debe5f75733eea189",
  4660. "shasum": ""
  4661. },
  4662. "require": {
  4663. "php": ">=7.2.5",
  4664. "symfony/deprecation-contracts": "^2.1",
  4665. "symfony/polyfill-php80": "^1.16",
  4666. "symfony/property-info": "^5.2"
  4667. },
  4668. "require-dev": {
  4669. "symfony/cache": "^4.4|^5.0"
  4670. },
  4671. "suggest": {
  4672. "psr/cache-implementation": "To cache access methods."
  4673. },
  4674. "type": "library",
  4675. "autoload": {
  4676. "psr-4": {
  4677. "Symfony\\Component\\PropertyAccess\\": ""
  4678. },
  4679. "exclude-from-classmap": [
  4680. "/Tests/"
  4681. ]
  4682. },
  4683. "notification-url": "https://packagist.org/downloads/",
  4684. "license": [
  4685. "MIT"
  4686. ],
  4687. "authors": [
  4688. {
  4689. "name": "Fabien Potencier",
  4690. "email": "fabien@symfony.com"
  4691. },
  4692. {
  4693. "name": "Symfony Community",
  4694. "homepage": "https://symfony.com/contributors"
  4695. }
  4696. ],
  4697. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  4698. "homepage": "https://symfony.com",
  4699. "keywords": [
  4700. "access",
  4701. "array",
  4702. "extraction",
  4703. "index",
  4704. "injection",
  4705. "object",
  4706. "property",
  4707. "property path",
  4708. "reflection"
  4709. ],
  4710. "support": {
  4711. "source": "https://github.com/symfony/property-access/tree/v5.3.4"
  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-21T12:40:44+00:00"
  4728. },
  4729. {
  4730. "name": "symfony/property-info",
  4731. "version": "v5.3.4",
  4732. "source": {
  4733. "type": "git",
  4734. "url": "https://github.com/symfony/property-info.git",
  4735. "reference": "0f42009150679a7a256eb6ee106401af5d974ed2"
  4736. },
  4737. "dist": {
  4738. "type": "zip",
  4739. "url": "https://api.github.com/repos/symfony/property-info/zipball/0f42009150679a7a256eb6ee106401af5d974ed2",
  4740. "reference": "0f42009150679a7a256eb6ee106401af5d974ed2",
  4741. "shasum": ""
  4742. },
  4743. "require": {
  4744. "php": ">=7.2.5",
  4745. "symfony/deprecation-contracts": "^2.1",
  4746. "symfony/polyfill-php80": "^1.16",
  4747. "symfony/string": "^5.1"
  4748. },
  4749. "conflict": {
  4750. "phpdocumentor/reflection-docblock": "<3.2.2",
  4751. "phpdocumentor/type-resolver": "<1.4.0",
  4752. "symfony/dependency-injection": "<4.4"
  4753. },
  4754. "require-dev": {
  4755. "doctrine/annotations": "^1.10.4",
  4756. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  4757. "symfony/cache": "^4.4|^5.0",
  4758. "symfony/dependency-injection": "^4.4|^5.0",
  4759. "symfony/serializer": "^4.4|^5.0"
  4760. },
  4761. "suggest": {
  4762. "phpdocumentor/reflection-docblock": "To use the PHPDoc",
  4763. "psr/cache-implementation": "To cache results",
  4764. "symfony/doctrine-bridge": "To use Doctrine metadata",
  4765. "symfony/serializer": "To use Serializer metadata"
  4766. },
  4767. "type": "library",
  4768. "autoload": {
  4769. "psr-4": {
  4770. "Symfony\\Component\\PropertyInfo\\": ""
  4771. },
  4772. "exclude-from-classmap": [
  4773. "/Tests/"
  4774. ]
  4775. },
  4776. "notification-url": "https://packagist.org/downloads/",
  4777. "license": [
  4778. "MIT"
  4779. ],
  4780. "authors": [
  4781. {
  4782. "name": "Kévin Dunglas",
  4783. "email": "dunglas@gmail.com"
  4784. },
  4785. {
  4786. "name": "Symfony Community",
  4787. "homepage": "https://symfony.com/contributors"
  4788. }
  4789. ],
  4790. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  4791. "homepage": "https://symfony.com",
  4792. "keywords": [
  4793. "doctrine",
  4794. "phpdoc",
  4795. "property",
  4796. "symfony",
  4797. "type",
  4798. "validator"
  4799. ],
  4800. "support": {
  4801. "source": "https://github.com/symfony/property-info/tree/v5.3.4"
  4802. },
  4803. "funding": [
  4804. {
  4805. "url": "https://symfony.com/sponsor",
  4806. "type": "custom"
  4807. },
  4808. {
  4809. "url": "https://github.com/fabpot",
  4810. "type": "github"
  4811. },
  4812. {
  4813. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4814. "type": "tidelift"
  4815. }
  4816. ],
  4817. "time": "2021-07-21T12:40:44+00:00"
  4818. },
  4819. {
  4820. "name": "symfony/psr-http-message-bridge",
  4821. "version": "v1.2.0",
  4822. "source": {
  4823. "type": "git",
  4824. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  4825. "reference": "9ab9d71f97d5c7d35a121a7fb69f74fee95cd0ad"
  4826. },
  4827. "dist": {
  4828. "type": "zip",
  4829. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/9ab9d71f97d5c7d35a121a7fb69f74fee95cd0ad",
  4830. "reference": "9ab9d71f97d5c7d35a121a7fb69f74fee95cd0ad",
  4831. "shasum": ""
  4832. },
  4833. "require": {
  4834. "php": "^7.1",
  4835. "psr/http-message": "^1.0",
  4836. "symfony/http-foundation": "^3.4 || ^4.0"
  4837. },
  4838. "require-dev": {
  4839. "nyholm/psr7": "^1.1",
  4840. "symfony/phpunit-bridge": "^3.4.20 || ^4.0",
  4841. "zendframework/zend-diactoros": "^1.4.1 || ^2.0"
  4842. },
  4843. "suggest": {
  4844. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  4845. },
  4846. "type": "symfony-bridge",
  4847. "extra": {
  4848. "branch-alias": {
  4849. "dev-master": "1.2-dev"
  4850. }
  4851. },
  4852. "autoload": {
  4853. "psr-4": {
  4854. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  4855. },
  4856. "exclude-from-classmap": [
  4857. "/Tests/"
  4858. ]
  4859. },
  4860. "notification-url": "https://packagist.org/downloads/",
  4861. "license": [
  4862. "MIT"
  4863. ],
  4864. "authors": [
  4865. {
  4866. "name": "Symfony Community",
  4867. "homepage": "http://symfony.com/contributors"
  4868. },
  4869. {
  4870. "name": "Fabien Potencier",
  4871. "email": "fabien@symfony.com"
  4872. }
  4873. ],
  4874. "description": "PSR HTTP message bridge",
  4875. "homepage": "http://symfony.com",
  4876. "keywords": [
  4877. "http",
  4878. "http-message",
  4879. "psr-17",
  4880. "psr-7"
  4881. ],
  4882. "support": {
  4883. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  4884. "source": "https://github.com/symfony/psr-http-message-bridge/tree/master"
  4885. },
  4886. "time": "2019-03-11T18:22:33+00:00"
  4887. },
  4888. {
  4889. "name": "symfony/string",
  4890. "version": "v5.3.3",
  4891. "source": {
  4892. "type": "git",
  4893. "url": "https://github.com/symfony/string.git",
  4894. "reference": "bd53358e3eccec6a670b5f33ab680d8dbe1d4ae1"
  4895. },
  4896. "dist": {
  4897. "type": "zip",
  4898. "url": "https://api.github.com/repos/symfony/string/zipball/bd53358e3eccec6a670b5f33ab680d8dbe1d4ae1",
  4899. "reference": "bd53358e3eccec6a670b5f33ab680d8dbe1d4ae1",
  4900. "shasum": ""
  4901. },
  4902. "require": {
  4903. "php": ">=7.2.5",
  4904. "symfony/polyfill-ctype": "~1.8",
  4905. "symfony/polyfill-intl-grapheme": "~1.0",
  4906. "symfony/polyfill-intl-normalizer": "~1.0",
  4907. "symfony/polyfill-mbstring": "~1.0",
  4908. "symfony/polyfill-php80": "~1.15"
  4909. },
  4910. "require-dev": {
  4911. "symfony/error-handler": "^4.4|^5.0",
  4912. "symfony/http-client": "^4.4|^5.0",
  4913. "symfony/translation-contracts": "^1.1|^2",
  4914. "symfony/var-exporter": "^4.4|^5.0"
  4915. },
  4916. "type": "library",
  4917. "autoload": {
  4918. "psr-4": {
  4919. "Symfony\\Component\\String\\": ""
  4920. },
  4921. "files": [
  4922. "Resources/functions.php"
  4923. ],
  4924. "exclude-from-classmap": [
  4925. "/Tests/"
  4926. ]
  4927. },
  4928. "notification-url": "https://packagist.org/downloads/",
  4929. "license": [
  4930. "MIT"
  4931. ],
  4932. "authors": [
  4933. {
  4934. "name": "Nicolas Grekas",
  4935. "email": "p@tchwork.com"
  4936. },
  4937. {
  4938. "name": "Symfony Community",
  4939. "homepage": "https://symfony.com/contributors"
  4940. }
  4941. ],
  4942. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  4943. "homepage": "https://symfony.com",
  4944. "keywords": [
  4945. "grapheme",
  4946. "i18n",
  4947. "string",
  4948. "unicode",
  4949. "utf-8",
  4950. "utf8"
  4951. ],
  4952. "support": {
  4953. "source": "https://github.com/symfony/string/tree/v5.3.3"
  4954. },
  4955. "funding": [
  4956. {
  4957. "url": "https://symfony.com/sponsor",
  4958. "type": "custom"
  4959. },
  4960. {
  4961. "url": "https://github.com/fabpot",
  4962. "type": "github"
  4963. },
  4964. {
  4965. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4966. "type": "tidelift"
  4967. }
  4968. ],
  4969. "time": "2021-06-27T11:44:38+00:00"
  4970. },
  4971. {
  4972. "name": "symfony/translation",
  4973. "version": "v5.3.4",
  4974. "source": {
  4975. "type": "git",
  4976. "url": "https://github.com/symfony/translation.git",
  4977. "reference": "d89ad7292932c2699cbe4af98d72c5c6bbc504c1"
  4978. },
  4979. "dist": {
  4980. "type": "zip",
  4981. "url": "https://api.github.com/repos/symfony/translation/zipball/d89ad7292932c2699cbe4af98d72c5c6bbc504c1",
  4982. "reference": "d89ad7292932c2699cbe4af98d72c5c6bbc504c1",
  4983. "shasum": ""
  4984. },
  4985. "require": {
  4986. "php": ">=7.2.5",
  4987. "symfony/deprecation-contracts": "^2.1",
  4988. "symfony/polyfill-mbstring": "~1.0",
  4989. "symfony/polyfill-php80": "^1.16",
  4990. "symfony/translation-contracts": "^2.3"
  4991. },
  4992. "conflict": {
  4993. "symfony/config": "<4.4",
  4994. "symfony/dependency-injection": "<5.0",
  4995. "symfony/http-kernel": "<5.0",
  4996. "symfony/twig-bundle": "<5.0",
  4997. "symfony/yaml": "<4.4"
  4998. },
  4999. "provide": {
  5000. "symfony/translation-implementation": "2.3"
  5001. },
  5002. "require-dev": {
  5003. "psr/log": "^1|^2|^3",
  5004. "symfony/config": "^4.4|^5.0",
  5005. "symfony/console": "^4.4|^5.0",
  5006. "symfony/dependency-injection": "^5.0",
  5007. "symfony/finder": "^4.4|^5.0",
  5008. "symfony/http-kernel": "^5.0",
  5009. "symfony/intl": "^4.4|^5.0",
  5010. "symfony/polyfill-intl-icu": "^1.21",
  5011. "symfony/service-contracts": "^1.1.2|^2",
  5012. "symfony/yaml": "^4.4|^5.0"
  5013. },
  5014. "suggest": {
  5015. "psr/log-implementation": "To use logging capability in translator",
  5016. "symfony/config": "",
  5017. "symfony/yaml": ""
  5018. },
  5019. "type": "library",
  5020. "autoload": {
  5021. "files": [
  5022. "Resources/functions.php"
  5023. ],
  5024. "psr-4": {
  5025. "Symfony\\Component\\Translation\\": ""
  5026. },
  5027. "exclude-from-classmap": [
  5028. "/Tests/"
  5029. ]
  5030. },
  5031. "notification-url": "https://packagist.org/downloads/",
  5032. "license": [
  5033. "MIT"
  5034. ],
  5035. "authors": [
  5036. {
  5037. "name": "Fabien Potencier",
  5038. "email": "fabien@symfony.com"
  5039. },
  5040. {
  5041. "name": "Symfony Community",
  5042. "homepage": "https://symfony.com/contributors"
  5043. }
  5044. ],
  5045. "description": "Provides tools to internationalize your application",
  5046. "homepage": "https://symfony.com",
  5047. "support": {
  5048. "source": "https://github.com/symfony/translation/tree/v5.3.4"
  5049. },
  5050. "funding": [
  5051. {
  5052. "url": "https://symfony.com/sponsor",
  5053. "type": "custom"
  5054. },
  5055. {
  5056. "url": "https://github.com/fabpot",
  5057. "type": "github"
  5058. },
  5059. {
  5060. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5061. "type": "tidelift"
  5062. }
  5063. ],
  5064. "time": "2021-07-25T09:39:16+00:00"
  5065. },
  5066. {
  5067. "name": "symfony/translation-contracts",
  5068. "version": "v2.4.0",
  5069. "source": {
  5070. "type": "git",
  5071. "url": "https://github.com/symfony/translation-contracts.git",
  5072. "reference": "95c812666f3e91db75385749fe219c5e494c7f95"
  5073. },
  5074. "dist": {
  5075. "type": "zip",
  5076. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/95c812666f3e91db75385749fe219c5e494c7f95",
  5077. "reference": "95c812666f3e91db75385749fe219c5e494c7f95",
  5078. "shasum": ""
  5079. },
  5080. "require": {
  5081. "php": ">=7.2.5"
  5082. },
  5083. "suggest": {
  5084. "symfony/translation-implementation": ""
  5085. },
  5086. "type": "library",
  5087. "extra": {
  5088. "branch-alias": {
  5089. "dev-main": "2.4-dev"
  5090. },
  5091. "thanks": {
  5092. "name": "symfony/contracts",
  5093. "url": "https://github.com/symfony/contracts"
  5094. }
  5095. },
  5096. "autoload": {
  5097. "psr-4": {
  5098. "Symfony\\Contracts\\Translation\\": ""
  5099. }
  5100. },
  5101. "notification-url": "https://packagist.org/downloads/",
  5102. "license": [
  5103. "MIT"
  5104. ],
  5105. "authors": [
  5106. {
  5107. "name": "Nicolas Grekas",
  5108. "email": "p@tchwork.com"
  5109. },
  5110. {
  5111. "name": "Symfony Community",
  5112. "homepage": "https://symfony.com/contributors"
  5113. }
  5114. ],
  5115. "description": "Generic abstractions related to translation",
  5116. "homepage": "https://symfony.com",
  5117. "keywords": [
  5118. "abstractions",
  5119. "contracts",
  5120. "decoupling",
  5121. "interfaces",
  5122. "interoperability",
  5123. "standards"
  5124. ],
  5125. "support": {
  5126. "source": "https://github.com/symfony/translation-contracts/tree/v2.4.0"
  5127. },
  5128. "funding": [
  5129. {
  5130. "url": "https://symfony.com/sponsor",
  5131. "type": "custom"
  5132. },
  5133. {
  5134. "url": "https://github.com/fabpot",
  5135. "type": "github"
  5136. },
  5137. {
  5138. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5139. "type": "tidelift"
  5140. }
  5141. ],
  5142. "time": "2021-03-23T23:28:01+00:00"
  5143. },
  5144. {
  5145. "name": "topthink/framework",
  5146. "version": "v6.0.9",
  5147. "source": {
  5148. "type": "git",
  5149. "url": "https://github.com/top-think/framework.git",
  5150. "reference": "0b5fb453f0e533de3af3a1ab6a202510b61be617"
  5151. },
  5152. "dist": {
  5153. "type": "zip",
  5154. "url": "https://api.github.com/repos/top-think/framework/zipball/0b5fb453f0e533de3af3a1ab6a202510b61be617",
  5155. "reference": "0b5fb453f0e533de3af3a1ab6a202510b61be617",
  5156. "shasum": ""
  5157. },
  5158. "require": {
  5159. "ext-json": "*",
  5160. "ext-mbstring": "*",
  5161. "league/flysystem": "^1.1.4",
  5162. "league/flysystem-cached-adapter": "^1.0",
  5163. "php": ">=7.2.5",
  5164. "psr/container": "~1.0",
  5165. "psr/log": "~1.0",
  5166. "psr/simple-cache": "^1.0",
  5167. "topthink/think-helper": "^3.1.1",
  5168. "topthink/think-orm": "^2.0"
  5169. },
  5170. "require-dev": {
  5171. "mikey179/vfsstream": "^1.6",
  5172. "mockery/mockery": "^1.2",
  5173. "phpunit/phpunit": "^7.0"
  5174. },
  5175. "type": "library",
  5176. "autoload": {
  5177. "files": [],
  5178. "psr-4": {
  5179. "think\\": "src/think/"
  5180. }
  5181. },
  5182. "notification-url": "https://packagist.org/downloads/",
  5183. "license": [
  5184. "Apache-2.0"
  5185. ],
  5186. "authors": [
  5187. {
  5188. "name": "liu21st",
  5189. "email": "liu21st@gmail.com"
  5190. },
  5191. {
  5192. "name": "yunwuxin",
  5193. "email": "448901948@qq.com"
  5194. }
  5195. ],
  5196. "description": "The ThinkPHP Framework.",
  5197. "homepage": "http://thinkphp.cn/",
  5198. "keywords": [
  5199. "framework",
  5200. "orm",
  5201. "thinkphp"
  5202. ],
  5203. "support": {
  5204. "issues": "https://github.com/top-think/framework/issues",
  5205. "source": "https://github.com/top-think/framework/tree/v6.0.9"
  5206. },
  5207. "time": "2021-07-22T03:24:49+00:00"
  5208. },
  5209. {
  5210. "name": "topthink/think-helper",
  5211. "version": "v3.1.5",
  5212. "source": {
  5213. "type": "git",
  5214. "url": "https://github.com/top-think/think-helper.git",
  5215. "reference": "f98e3ad44acd27ae85a4d923b1bdfd16c6d8d905"
  5216. },
  5217. "dist": {
  5218. "type": "zip",
  5219. "url": "https://api.github.com/repos/top-think/think-helper/zipball/f98e3ad44acd27ae85a4d923b1bdfd16c6d8d905",
  5220. "reference": "f98e3ad44acd27ae85a4d923b1bdfd16c6d8d905",
  5221. "shasum": ""
  5222. },
  5223. "require": {
  5224. "php": ">=7.1.0"
  5225. },
  5226. "type": "library",
  5227. "autoload": {
  5228. "psr-4": {
  5229. "think\\": "src"
  5230. },
  5231. "files": [
  5232. "src/helper.php"
  5233. ]
  5234. },
  5235. "notification-url": "https://packagist.org/downloads/",
  5236. "license": [
  5237. "Apache-2.0"
  5238. ],
  5239. "authors": [
  5240. {
  5241. "name": "yunwuxin",
  5242. "email": "448901948@qq.com"
  5243. }
  5244. ],
  5245. "description": "The ThinkPHP6 Helper Package",
  5246. "support": {
  5247. "issues": "https://github.com/top-think/think-helper/issues",
  5248. "source": "https://github.com/top-think/think-helper/tree/v3.1.5"
  5249. },
  5250. "time": "2021-06-21T06:17:31+00:00"
  5251. },
  5252. {
  5253. "name": "topthink/think-image",
  5254. "version": "v1.0.7",
  5255. "source": {
  5256. "type": "git",
  5257. "url": "https://github.com/top-think/think-image.git",
  5258. "reference": "8586cf47f117481c6d415b20f7dedf62e79d5512"
  5259. },
  5260. "dist": {
  5261. "type": "zip",
  5262. "url": "https://api.github.com/repos/top-think/think-image/zipball/8586cf47f117481c6d415b20f7dedf62e79d5512",
  5263. "reference": "8586cf47f117481c6d415b20f7dedf62e79d5512",
  5264. "shasum": ""
  5265. },
  5266. "require": {
  5267. "ext-gd": "*"
  5268. },
  5269. "require-dev": {
  5270. "phpunit/phpunit": "4.8.*",
  5271. "topthink/framework": "^5.0"
  5272. },
  5273. "type": "library",
  5274. "autoload": {
  5275. "psr-4": {
  5276. "think\\": "src"
  5277. }
  5278. },
  5279. "notification-url": "https://packagist.org/downloads/",
  5280. "license": [
  5281. "Apache-2.0"
  5282. ],
  5283. "authors": [
  5284. {
  5285. "name": "yunwuxin",
  5286. "email": "448901948@qq.com"
  5287. }
  5288. ],
  5289. "description": "The ThinkPHP5 Image Package",
  5290. "support": {
  5291. "issues": "https://github.com/top-think/think-image/issues",
  5292. "source": "https://github.com/top-think/think-image/tree/master"
  5293. },
  5294. "time": "2016-09-29T06:05:43+00:00"
  5295. },
  5296. {
  5297. "name": "topthink/think-orm",
  5298. "version": "v2.0.44",
  5299. "source": {
  5300. "type": "git",
  5301. "url": "https://github.com/top-think/think-orm.git",
  5302. "reference": "5d3d5c1ebf8bfccf34bacd90edb42989b16ea409"
  5303. },
  5304. "dist": {
  5305. "type": "zip",
  5306. "url": "https://api.github.com/repos/top-think/think-orm/zipball/5d3d5c1ebf8bfccf34bacd90edb42989b16ea409",
  5307. "reference": "5d3d5c1ebf8bfccf34bacd90edb42989b16ea409",
  5308. "shasum": ""
  5309. },
  5310. "require": {
  5311. "ext-json": "*",
  5312. "ext-pdo": "*",
  5313. "php": ">=7.1.0",
  5314. "psr/log": "~1.0",
  5315. "psr/simple-cache": "^1.0",
  5316. "topthink/think-helper": "^3.1"
  5317. },
  5318. "require-dev": {
  5319. "phpunit/phpunit": "^7|^8|^9.5"
  5320. },
  5321. "type": "library",
  5322. "autoload": {
  5323. "psr-4": {
  5324. "think\\": "src"
  5325. },
  5326. "files": [
  5327. "stubs/load_stubs.php"
  5328. ]
  5329. },
  5330. "notification-url": "https://packagist.org/downloads/",
  5331. "license": [
  5332. "Apache-2.0"
  5333. ],
  5334. "authors": [
  5335. {
  5336. "name": "liu21st",
  5337. "email": "liu21st@gmail.com"
  5338. }
  5339. ],
  5340. "description": "think orm",
  5341. "keywords": [
  5342. "database",
  5343. "orm"
  5344. ],
  5345. "support": {
  5346. "issues": "https://github.com/top-think/think-orm/issues",
  5347. "source": "https://github.com/top-think/think-orm/tree/v2.0.44"
  5348. },
  5349. "time": "2021-07-21T02:22:31+00:00"
  5350. },
  5351. {
  5352. "name": "topthink/think-queue",
  5353. "version": "v3.0.6",
  5354. "source": {
  5355. "type": "git",
  5356. "url": "https://github.com/top-think/think-queue.git",
  5357. "reference": "a9f81126bdd52d036461e0c6556592dd478c8728"
  5358. },
  5359. "dist": {
  5360. "type": "zip",
  5361. "url": "https://api.github.com/repos/top-think/think-queue/zipball/a9f81126bdd52d036461e0c6556592dd478c8728",
  5362. "reference": "a9f81126bdd52d036461e0c6556592dd478c8728",
  5363. "shasum": ""
  5364. },
  5365. "require": {
  5366. "ext-json": "*",
  5367. "nesbot/carbon": "^2.16",
  5368. "symfony/process": "^4.2",
  5369. "topthink/framework": "^6.0"
  5370. },
  5371. "require-dev": {
  5372. "mockery/mockery": "^1.2",
  5373. "phpunit/phpunit": "^6.2",
  5374. "topthink/think-migration": "^3.0.0"
  5375. },
  5376. "type": "library",
  5377. "extra": {
  5378. "think": {
  5379. "services": [
  5380. "think\\queue\\Service"
  5381. ],
  5382. "config": {
  5383. "queue": "src/config.php"
  5384. }
  5385. }
  5386. },
  5387. "autoload": {
  5388. "psr-4": {
  5389. "think\\": "src"
  5390. },
  5391. "files": [
  5392. "src/common.php"
  5393. ]
  5394. },
  5395. "notification-url": "https://packagist.org/downloads/",
  5396. "license": [
  5397. "Apache-2.0"
  5398. ],
  5399. "authors": [
  5400. {
  5401. "name": "yunwuxin",
  5402. "email": "448901948@qq.com"
  5403. }
  5404. ],
  5405. "description": "The ThinkPHP6 Queue Package",
  5406. "support": {
  5407. "issues": "https://github.com/top-think/think-queue/issues",
  5408. "source": "https://github.com/top-think/think-queue/tree/v3.0.6"
  5409. },
  5410. "time": "2021-06-24T18:03:45+00:00"
  5411. },
  5412. {
  5413. "name": "topthink/think-swoole",
  5414. "version": "v3.1.3",
  5415. "source": {
  5416. "type": "git",
  5417. "url": "https://github.com/top-think/think-swoole.git",
  5418. "reference": "df78b1f6eb6cd8f45f49ab7b0d4cc65595181504"
  5419. },
  5420. "dist": {
  5421. "type": "zip",
  5422. "url": "https://api.github.com/repos/top-think/think-swoole/zipball/df78b1f6eb6cd8f45f49ab7b0d4cc65595181504",
  5423. "reference": "df78b1f6eb6cd8f45f49ab7b0d4cc65595181504",
  5424. "shasum": ""
  5425. },
  5426. "require": {
  5427. "ext-json": "*",
  5428. "ext-swoole": ">=4.4.8",
  5429. "nette/php-generator": "^3.2",
  5430. "open-smf/connection-pool": "~1.0",
  5431. "php": ">7.1",
  5432. "stechstudio/backoff": "^1.2",
  5433. "swoole/ide-helper": "^4.3",
  5434. "symfony/finder": "^4.3.2|^5.1",
  5435. "topthink/framework": "^6.0"
  5436. },
  5437. "require-dev": {
  5438. "symfony/var-dumper": "^4.3|^5.1",
  5439. "topthink/think-queue": "^3.0",
  5440. "topthink/think-tracing": "^1.0"
  5441. },
  5442. "type": "library",
  5443. "extra": {
  5444. "think": {
  5445. "services": [
  5446. "think\\swoole\\Service"
  5447. ],
  5448. "config": {
  5449. "swoole": "src/config/swoole.php"
  5450. }
  5451. }
  5452. },
  5453. "autoload": {
  5454. "psr-4": {
  5455. "think\\swoole\\": "src"
  5456. },
  5457. "files": [
  5458. "src/helpers.php"
  5459. ]
  5460. },
  5461. "notification-url": "https://packagist.org/downloads/",
  5462. "license": [
  5463. "Apache-2.0"
  5464. ],
  5465. "authors": [
  5466. {
  5467. "name": "liu21st",
  5468. "email": "liu21st@gmail.com"
  5469. }
  5470. ],
  5471. "description": "Swoole extend for thinkphp",
  5472. "support": {
  5473. "issues": "https://github.com/top-think/think-swoole/issues",
  5474. "source": "https://github.com/top-think/think-swoole/tree/v3.1.3"
  5475. },
  5476. "time": "2021-04-29T10:48:04+00:00"
  5477. },
  5478. {
  5479. "name": "xaboy/form-builder",
  5480. "version": "2.0.19",
  5481. "source": {
  5482. "type": "git",
  5483. "url": "https://github.com/xaboy/form-builder.git",
  5484. "reference": "5cf3f5435a63954c1d11ba82c3cd4cfe3d145acf"
  5485. },
  5486. "dist": {
  5487. "type": "zip",
  5488. "url": "https://api.github.com/repos/xaboy/form-builder/zipball/5cf3f5435a63954c1d11ba82c3cd4cfe3d145acf",
  5489. "reference": "5cf3f5435a63954c1d11ba82c3cd4cfe3d145acf",
  5490. "shasum": ""
  5491. },
  5492. "require": {
  5493. "doctrine/annotations": "^1.2.7",
  5494. "ext-json": "*",
  5495. "php": ">=5.4.0",
  5496. "symfony/http-foundation": ">=2.6"
  5497. },
  5498. "type": "library",
  5499. "autoload": {
  5500. "psr-4": {
  5501. "FormBuilder\\": "./src/"
  5502. }
  5503. },
  5504. "notification-url": "https://packagist.org/downloads/",
  5505. "license": [
  5506. "MIT"
  5507. ],
  5508. "authors": [
  5509. {
  5510. "name": "xaboy",
  5511. "email": "xaboy2005@qq.com"
  5512. }
  5513. ],
  5514. "description": "PHP表单生成器,快速生成现代化的form表单。包含复选框、单选框、输入框、下拉选择框等元素以及,省市区三级联动,时间选择,日期选择,颜色选择,文件/图片上传等功能。",
  5515. "homepage": "https://github.com/xaboy/form-builder",
  5516. "keywords": [
  5517. "dynamic-form",
  5518. "element-ui",
  5519. "form",
  5520. "form-create",
  5521. "form-generator",
  5522. "iview"
  5523. ],
  5524. "support": {
  5525. "issues": "https://github.com/xaboy/form-builder/issues",
  5526. "source": "https://github.com/xaboy/form-builder"
  5527. },
  5528. "time": "2021-02-25T03:51:14+00:00"
  5529. }
  5530. ],
  5531. "packages-dev": [
  5532. {
  5533. "name": "symfony/var-dumper",
  5534. "version": "v4.4.27",
  5535. "source": {
  5536. "type": "git",
  5537. "url": "https://github.com/symfony/var-dumper.git",
  5538. "reference": "391d6d0e7a06ab54eb7c38fab29b8d174471b3ba"
  5539. },
  5540. "dist": {
  5541. "type": "zip",
  5542. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/391d6d0e7a06ab54eb7c38fab29b8d174471b3ba",
  5543. "reference": "391d6d0e7a06ab54eb7c38fab29b8d174471b3ba",
  5544. "shasum": ""
  5545. },
  5546. "require": {
  5547. "php": ">=7.1.3",
  5548. "symfony/polyfill-mbstring": "~1.0",
  5549. "symfony/polyfill-php72": "~1.5",
  5550. "symfony/polyfill-php80": "^1.16"
  5551. },
  5552. "conflict": {
  5553. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  5554. "symfony/console": "<3.4"
  5555. },
  5556. "require-dev": {
  5557. "ext-iconv": "*",
  5558. "symfony/console": "^3.4|^4.0|^5.0",
  5559. "symfony/process": "^4.4|^5.0",
  5560. "twig/twig": "^1.43|^2.13|^3.0.4"
  5561. },
  5562. "suggest": {
  5563. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  5564. "ext-intl": "To show region name in time zone dump",
  5565. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  5566. },
  5567. "bin": [
  5568. "Resources/bin/var-dump-server"
  5569. ],
  5570. "type": "library",
  5571. "autoload": {
  5572. "files": [
  5573. "Resources/functions/dump.php"
  5574. ],
  5575. "psr-4": {
  5576. "Symfony\\Component\\VarDumper\\": ""
  5577. },
  5578. "exclude-from-classmap": [
  5579. "/Tests/"
  5580. ]
  5581. },
  5582. "notification-url": "https://packagist.org/downloads/",
  5583. "license": [
  5584. "MIT"
  5585. ],
  5586. "authors": [
  5587. {
  5588. "name": "Nicolas Grekas",
  5589. "email": "p@tchwork.com"
  5590. },
  5591. {
  5592. "name": "Symfony Community",
  5593. "homepage": "https://symfony.com/contributors"
  5594. }
  5595. ],
  5596. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  5597. "homepage": "https://symfony.com",
  5598. "keywords": [
  5599. "debug",
  5600. "dump"
  5601. ],
  5602. "support": {
  5603. "source": "https://github.com/symfony/var-dumper/tree/v4.4.27"
  5604. },
  5605. "funding": [
  5606. {
  5607. "url": "https://symfony.com/sponsor",
  5608. "type": "custom"
  5609. },
  5610. {
  5611. "url": "https://github.com/fabpot",
  5612. "type": "github"
  5613. },
  5614. {
  5615. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5616. "type": "tidelift"
  5617. }
  5618. ],
  5619. "time": "2021-07-23T15:41:52+00:00"
  5620. }
  5621. ],
  5622. "aliases": [],
  5623. "minimum-stability": "stable",
  5624. "stability-flags": [],
  5625. "prefer-stable": false,
  5626. "prefer-lowest": false,
  5627. "platform": {
  5628. "php": ">=7.1.0",
  5629. "ext-json": "*",
  5630. "ext-openssl": "*",
  5631. "ext-gd": "*",
  5632. "ext-redis": "*",
  5633. "ext-pdo": "*",
  5634. "ext-curl": "*",
  5635. "ext-bcmath": "*",
  5636. "ext-mbstring": "*",
  5637. "ext-swoole": "^4.4.0"
  5638. },
  5639. "platform-dev": [],
  5640. "plugin-api-version": "2.6.0"
  5641. }