composer.lock 192 KB

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