composer.lock 194 KB

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