composer.lock 205 KB

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