installed.json 137 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840
  1. {
  2. "packages": [
  3. {
  4. "name": "adbario/php-dot-notation",
  5. "version": "2.5.0",
  6. "version_normalized": "2.5.0.0",
  7. "source": {
  8. "type": "git",
  9. "url": "https://github.com/adbario/php-dot-notation.git",
  10. "reference": "081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae"
  11. },
  12. "dist": {
  13. "type": "zip",
  14. "url": "https://api.github.com/repos/adbario/php-dot-notation/zipball/081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae",
  15. "reference": "081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae",
  16. "shasum": "",
  17. "mirrors": [
  18. {
  19. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  20. "preferred": true
  21. }
  22. ]
  23. },
  24. "require": {
  25. "ext-json": "*",
  26. "php": "^5.5 || ^7.0 || ^8.0"
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "^4.8|^5.7|^6.6|^7.5|^8.5|^9.5",
  30. "squizlabs/php_codesniffer": "^3.6"
  31. },
  32. "time": "2022-10-14T20:31:46+00:00",
  33. "type": "library",
  34. "installation-source": "dist",
  35. "autoload": {
  36. "files": [
  37. "src/helpers.php"
  38. ],
  39. "psr-4": {
  40. "Adbar\\": "src"
  41. }
  42. },
  43. "notification-url": "https://packagist.org/downloads/",
  44. "license": [
  45. "MIT"
  46. ],
  47. "authors": [
  48. {
  49. "name": "Riku Särkinen",
  50. "email": "riku@adbar.io"
  51. }
  52. ],
  53. "description": "PHP dot notation access to arrays",
  54. "homepage": "https://github.com/adbario/php-dot-notation",
  55. "keywords": [
  56. "ArrayAccess",
  57. "dotnotation"
  58. ],
  59. "support": {
  60. "issues": "https://github.com/adbario/php-dot-notation/issues",
  61. "source": "https://github.com/adbario/php-dot-notation/tree/2.5.0"
  62. },
  63. "install-path": "../adbario/php-dot-notation"
  64. },
  65. {
  66. "name": "alibabacloud/credentials",
  67. "version": "1.1.4",
  68. "version_normalized": "1.1.4.0",
  69. "source": {
  70. "type": "git",
  71. "url": "https://github.com/aliyun/credentials-php.git",
  72. "reference": "e79d4151ad8924c0cf79d4fe0ec151b8d7663a25"
  73. },
  74. "dist": {
  75. "type": "zip",
  76. "url": "https://api.github.com/repos/aliyun/credentials-php/zipball/e79d4151ad8924c0cf79d4fe0ec151b8d7663a25",
  77. "reference": "e79d4151ad8924c0cf79d4fe0ec151b8d7663a25",
  78. "shasum": "",
  79. "mirrors": [
  80. {
  81. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  82. "preferred": true
  83. }
  84. ]
  85. },
  86. "require": {
  87. "adbario/php-dot-notation": "^2.2",
  88. "alibabacloud/tea": "^3.0",
  89. "ext-curl": "*",
  90. "ext-json": "*",
  91. "ext-libxml": "*",
  92. "ext-mbstring": "*",
  93. "ext-openssl": "*",
  94. "ext-simplexml": "*",
  95. "ext-xmlwriter": "*",
  96. "guzzlehttp/guzzle": "^6.3|^7.0",
  97. "php": ">=5.6"
  98. },
  99. "require-dev": {
  100. "composer/composer": "^1.8",
  101. "drupal/coder": "^8.3",
  102. "ext-dom": "*",
  103. "ext-pcre": "*",
  104. "ext-sockets": "*",
  105. "ext-spl": "*",
  106. "mikey179/vfsstream": "^1.6",
  107. "monolog/monolog": "^1.24",
  108. "phpunit/phpunit": "^4.8.35|^5.4.3",
  109. "psr/cache": "^1.0",
  110. "symfony/dotenv": "^3.4",
  111. "symfony/var-dumper": "^3.4"
  112. },
  113. "suggest": {
  114. "ext-sockets": "To use client-side monitoring"
  115. },
  116. "time": "2021-06-08T10:49:34+00:00",
  117. "type": "library",
  118. "installation-source": "dist",
  119. "autoload": {
  120. "psr-4": {
  121. "AlibabaCloud\\Credentials\\": "src"
  122. }
  123. },
  124. "notification-url": "https://packagist.org/downloads/",
  125. "license": [
  126. "Apache-2.0"
  127. ],
  128. "authors": [
  129. {
  130. "name": "Alibaba Cloud SDK",
  131. "email": "sdk-team@alibabacloud.com",
  132. "homepage": "http://www.alibabacloud.com"
  133. }
  134. ],
  135. "description": "Alibaba Cloud Credentials for PHP",
  136. "homepage": "https://www.alibabacloud.com/",
  137. "keywords": [
  138. "alibaba",
  139. "alibabacloud",
  140. "aliyun",
  141. "client",
  142. "cloud",
  143. "credentials",
  144. "library",
  145. "sdk",
  146. "tool"
  147. ],
  148. "support": {
  149. "issues": "https://github.com/aliyun/credentials-php/issues",
  150. "source": "https://github.com/aliyun/credentials-php"
  151. },
  152. "install-path": "../alibabacloud/credentials"
  153. },
  154. {
  155. "name": "alibabacloud/darabonba-openapi",
  156. "version": "0.2.9",
  157. "version_normalized": "0.2.9.0",
  158. "source": {
  159. "type": "git",
  160. "url": "https://github.com/alibabacloud-sdk-php/darabonba-openapi.git",
  161. "reference": "4cdfc36615f345786d668dfbaf68d9a301b6dbe2"
  162. },
  163. "dist": {
  164. "type": "zip",
  165. "url": "https://api.github.com/repos/alibabacloud-sdk-php/darabonba-openapi/zipball/4cdfc36615f345786d668dfbaf68d9a301b6dbe2",
  166. "reference": "4cdfc36615f345786d668dfbaf68d9a301b6dbe2",
  167. "shasum": "",
  168. "mirrors": [
  169. {
  170. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  171. "preferred": true
  172. }
  173. ]
  174. },
  175. "require": {
  176. "alibabacloud/credentials": "^1.1",
  177. "alibabacloud/gateway-spi": "^1",
  178. "alibabacloud/openapi-util": "^0.1.10|^0.2.1",
  179. "alibabacloud/tea-utils": "^0.2.17",
  180. "alibabacloud/tea-xml": "^0.2",
  181. "php": ">5.5"
  182. },
  183. "time": "2023-02-06T12:02:21+00:00",
  184. "type": "library",
  185. "installation-source": "dist",
  186. "autoload": {
  187. "psr-4": {
  188. "Darabonba\\OpenApi\\": "src"
  189. }
  190. },
  191. "notification-url": "https://packagist.org/downloads/",
  192. "license": [
  193. "Apache-2.0"
  194. ],
  195. "authors": [
  196. {
  197. "name": "Alibaba Cloud SDK",
  198. "email": "sdk-team@alibabacloud.com"
  199. }
  200. ],
  201. "description": "Alibaba Cloud OpenApi Client",
  202. "support": {
  203. "issues": "https://github.com/alibabacloud-sdk-php/darabonba-openapi/issues",
  204. "source": "https://github.com/alibabacloud-sdk-php/darabonba-openapi/tree/0.2.9"
  205. },
  206. "install-path": "../alibabacloud/darabonba-openapi"
  207. },
  208. {
  209. "name": "alibabacloud/dysmsapi-20170525",
  210. "version": "2.0.20",
  211. "version_normalized": "2.0.20.0",
  212. "source": {
  213. "type": "git",
  214. "url": "https://github.com/alibabacloud-sdk-php/Dysmsapi-20170525.git",
  215. "reference": "83a4f839060ca95a016d37d6f147f8af2adc8a12"
  216. },
  217. "dist": {
  218. "type": "zip",
  219. "url": "https://api.github.com/repos/alibabacloud-sdk-php/Dysmsapi-20170525/zipball/83a4f839060ca95a016d37d6f147f8af2adc8a12",
  220. "reference": "83a4f839060ca95a016d37d6f147f8af2adc8a12",
  221. "shasum": "",
  222. "mirrors": [
  223. {
  224. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  225. "preferred": true
  226. }
  227. ]
  228. },
  229. "require": {
  230. "alibabacloud/darabonba-openapi": "^0.2.5",
  231. "alibabacloud/endpoint-util": "^0.1.0",
  232. "alibabacloud/openapi-util": "^0.1.10",
  233. "alibabacloud/tea-utils": "^0.2.16",
  234. "php": ">5.5"
  235. },
  236. "time": "2022-09-29T08:45:21+00:00",
  237. "type": "library",
  238. "installation-source": "dist",
  239. "autoload": {
  240. "psr-4": {
  241. "AlibabaCloud\\SDK\\Dysmsapi\\V20170525\\": "src"
  242. }
  243. },
  244. "notification-url": "https://packagist.org/downloads/",
  245. "license": [
  246. "Apache-2.0"
  247. ],
  248. "authors": [
  249. {
  250. "name": "Alibaba Cloud SDK",
  251. "email": "sdk-team@alibabacloud.com"
  252. }
  253. ],
  254. "description": "Alibaba Cloud Dysmsapi (20170525) SDK Library for PHP",
  255. "support": {
  256. "source": "https://github.com/alibabacloud-sdk-php/Dysmsapi-20170525/tree/2.0.20"
  257. },
  258. "install-path": "../alibabacloud/dysmsapi-20170525"
  259. },
  260. {
  261. "name": "alibabacloud/endpoint-util",
  262. "version": "0.1.1",
  263. "version_normalized": "0.1.1.0",
  264. "source": {
  265. "type": "git",
  266. "url": "https://github.com/alibabacloud-sdk-php/endpoint-util.git",
  267. "reference": "f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5"
  268. },
  269. "dist": {
  270. "type": "zip",
  271. "url": "https://api.github.com/repos/alibabacloud-sdk-php/endpoint-util/zipball/f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5",
  272. "reference": "f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5",
  273. "shasum": "",
  274. "mirrors": [
  275. {
  276. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  277. "preferred": true
  278. }
  279. ]
  280. },
  281. "require": {
  282. "php": ">5.5"
  283. },
  284. "require-dev": {
  285. "phpunit/phpunit": "^4.8.35|^5.4.3"
  286. },
  287. "time": "2020-06-04T10:57:15+00:00",
  288. "type": "library",
  289. "installation-source": "dist",
  290. "autoload": {
  291. "psr-4": {
  292. "AlibabaCloud\\Endpoint\\": "src"
  293. }
  294. },
  295. "notification-url": "https://packagist.org/downloads/",
  296. "license": [
  297. "Apache-2.0"
  298. ],
  299. "authors": [
  300. {
  301. "name": "Alibaba Cloud SDK",
  302. "email": "sdk-team@alibabacloud.com"
  303. }
  304. ],
  305. "description": "Alibaba Cloud Endpoint Library for PHP",
  306. "support": {
  307. "source": "https://github.com/alibabacloud-sdk-php/endpoint-util/tree/0.1.1"
  308. },
  309. "install-path": "../alibabacloud/endpoint-util"
  310. },
  311. {
  312. "name": "alibabacloud/gateway-spi",
  313. "version": "1.0.0",
  314. "version_normalized": "1.0.0.0",
  315. "source": {
  316. "type": "git",
  317. "url": "https://github.com/alibabacloud-sdk-php/alibabacloud-gateway-spi.git",
  318. "reference": "7440f77750c329d8ab252db1d1d967314ccd1fcb"
  319. },
  320. "dist": {
  321. "type": "zip",
  322. "url": "https://api.github.com/repos/alibabacloud-sdk-php/alibabacloud-gateway-spi/zipball/7440f77750c329d8ab252db1d1d967314ccd1fcb",
  323. "reference": "7440f77750c329d8ab252db1d1d967314ccd1fcb",
  324. "shasum": "",
  325. "mirrors": [
  326. {
  327. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  328. "preferred": true
  329. }
  330. ]
  331. },
  332. "require": {
  333. "alibabacloud/credentials": "^1.1",
  334. "php": ">5.5"
  335. },
  336. "time": "2022-07-14T05:31:35+00:00",
  337. "type": "library",
  338. "installation-source": "dist",
  339. "autoload": {
  340. "psr-4": {
  341. "Darabonba\\GatewaySpi\\": "src"
  342. }
  343. },
  344. "notification-url": "https://packagist.org/downloads/",
  345. "license": [
  346. "Apache-2.0"
  347. ],
  348. "authors": [
  349. {
  350. "name": "Alibaba Cloud SDK",
  351. "email": "sdk-team@alibabacloud.com"
  352. }
  353. ],
  354. "description": "Alibaba Cloud Gateway SPI Client",
  355. "support": {
  356. "source": "https://github.com/alibabacloud-sdk-php/alibabacloud-gateway-spi/tree/1.0.0"
  357. },
  358. "install-path": "../alibabacloud/gateway-spi"
  359. },
  360. {
  361. "name": "alibabacloud/openapi-util",
  362. "version": "0.1.13",
  363. "version_normalized": "0.1.13.0",
  364. "source": {
  365. "type": "git",
  366. "url": "https://github.com/alibabacloud-sdk-php/openapi-util.git",
  367. "reference": "870e59984f05e104aa303c85b8214e339ba0a0ac"
  368. },
  369. "dist": {
  370. "type": "zip",
  371. "url": "https://api.github.com/repos/alibabacloud-sdk-php/openapi-util/zipball/870e59984f05e104aa303c85b8214e339ba0a0ac",
  372. "reference": "870e59984f05e104aa303c85b8214e339ba0a0ac",
  373. "shasum": "",
  374. "mirrors": [
  375. {
  376. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  377. "preferred": true
  378. }
  379. ]
  380. },
  381. "require": {
  382. "alibabacloud/tea": "^3.1",
  383. "alibabacloud/tea-utils": "^0.2",
  384. "lizhichao/one-sm": "^1.5",
  385. "php": ">5.5"
  386. },
  387. "require-dev": {
  388. "phpunit/phpunit": "*"
  389. },
  390. "time": "2022-11-06T05:49:55+00:00",
  391. "type": "library",
  392. "installation-source": "dist",
  393. "autoload": {
  394. "psr-4": {
  395. "AlibabaCloud\\OpenApiUtil\\": "src"
  396. }
  397. },
  398. "notification-url": "https://packagist.org/downloads/",
  399. "license": [
  400. "Apache-2.0"
  401. ],
  402. "authors": [
  403. {
  404. "name": "Alibaba Cloud SDK",
  405. "email": "sdk-team@alibabacloud.com"
  406. }
  407. ],
  408. "description": "Alibaba Cloud OpenApi Util",
  409. "support": {
  410. "issues": "https://github.com/alibabacloud-sdk-php/openapi-util/issues",
  411. "source": "https://github.com/alibabacloud-sdk-php/openapi-util/tree/0.2.0"
  412. },
  413. "install-path": "../alibabacloud/openapi-util"
  414. },
  415. {
  416. "name": "alibabacloud/tea",
  417. "version": "3.1.24",
  418. "version_normalized": "3.1.24.0",
  419. "source": {
  420. "type": "git",
  421. "url": "https://github.com/aliyun/tea-php.git",
  422. "reference": "bb33395f47db3847d1940d6eb8ba1e56cd0623cb"
  423. },
  424. "dist": {
  425. "type": "zip",
  426. "url": "https://api.github.com/repos/aliyun/tea-php/zipball/bb33395f47db3847d1940d6eb8ba1e56cd0623cb",
  427. "reference": "bb33395f47db3847d1940d6eb8ba1e56cd0623cb",
  428. "shasum": "",
  429. "mirrors": [
  430. {
  431. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  432. "preferred": true
  433. }
  434. ]
  435. },
  436. "require": {
  437. "adbario/php-dot-notation": "^2.3",
  438. "ext-curl": "*",
  439. "ext-json": "*",
  440. "ext-libxml": "*",
  441. "ext-mbstring": "*",
  442. "ext-openssl": "*",
  443. "ext-simplexml": "*",
  444. "ext-xmlwriter": "*",
  445. "guzzlehttp/guzzle": "^6.3|^7.0",
  446. "php": ">=5.5"
  447. },
  448. "require-dev": {
  449. "phpunit/phpunit": "*",
  450. "symfony/dotenv": "^3.4",
  451. "symfony/var-dumper": "^3.4"
  452. },
  453. "suggest": {
  454. "ext-sockets": "To use client-side monitoring"
  455. },
  456. "time": "2022-07-18T11:27:29+00:00",
  457. "type": "library",
  458. "installation-source": "dist",
  459. "autoload": {
  460. "psr-4": {
  461. "AlibabaCloud\\Tea\\": "src"
  462. }
  463. },
  464. "notification-url": "https://packagist.org/downloads/",
  465. "license": [
  466. "Apache-2.0"
  467. ],
  468. "authors": [
  469. {
  470. "name": "Alibaba Cloud SDK",
  471. "email": "sdk-team@alibabacloud.com",
  472. "homepage": "http://www.alibabacloud.com"
  473. }
  474. ],
  475. "description": "Client of Tea for PHP",
  476. "homepage": "https://www.alibabacloud.com/",
  477. "keywords": [
  478. "alibabacloud",
  479. "client",
  480. "cloud",
  481. "tea"
  482. ],
  483. "support": {
  484. "issues": "https://github.com/aliyun/tea-php/issues",
  485. "source": "https://github.com/aliyun/tea-php"
  486. },
  487. "install-path": "../alibabacloud/tea"
  488. },
  489. {
  490. "name": "alibabacloud/tea-utils",
  491. "version": "0.2.17",
  492. "version_normalized": "0.2.17.0",
  493. "source": {
  494. "type": "git",
  495. "url": "https://github.com/alibabacloud-sdk-php/tea-utils.git",
  496. "reference": "dad2f3e1791998d573ef2d9ebad01e7e0f053866"
  497. },
  498. "dist": {
  499. "type": "zip",
  500. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-utils/zipball/dad2f3e1791998d573ef2d9ebad01e7e0f053866",
  501. "reference": "dad2f3e1791998d573ef2d9ebad01e7e0f053866",
  502. "shasum": "",
  503. "mirrors": [
  504. {
  505. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  506. "preferred": true
  507. }
  508. ]
  509. },
  510. "require": {
  511. "alibabacloud/tea": "^3.1",
  512. "php": ">5.5"
  513. },
  514. "time": "2022-11-16T09:28:02+00:00",
  515. "type": "library",
  516. "installation-source": "dist",
  517. "autoload": {
  518. "psr-4": {
  519. "AlibabaCloud\\Tea\\Utils\\": "src"
  520. }
  521. },
  522. "notification-url": "https://packagist.org/downloads/",
  523. "license": [
  524. "Apache-2.0"
  525. ],
  526. "authors": [
  527. {
  528. "name": "Alibaba Cloud SDK",
  529. "email": "sdk-team@alibabacloud.com"
  530. }
  531. ],
  532. "description": "Alibaba Cloud Tea Utils for PHP",
  533. "support": {
  534. "issues": "https://github.com/aliyun/tea-util/issues",
  535. "source": "https://github.com/aliyun/tea-util"
  536. },
  537. "install-path": "../alibabacloud/tea-utils"
  538. },
  539. {
  540. "name": "alibabacloud/tea-xml",
  541. "version": "0.2.3",
  542. "version_normalized": "0.2.3.0",
  543. "source": {
  544. "type": "git",
  545. "url": "https://github.com/alibabacloud-sdk-php/tea-xml.git",
  546. "reference": "4bd2303d71c968cb7ae4e487c5fa3023aed3ff3b"
  547. },
  548. "dist": {
  549. "type": "zip",
  550. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-xml/zipball/4bd2303d71c968cb7ae4e487c5fa3023aed3ff3b",
  551. "reference": "4bd2303d71c968cb7ae4e487c5fa3023aed3ff3b",
  552. "shasum": "",
  553. "mirrors": [
  554. {
  555. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  556. "preferred": true
  557. }
  558. ]
  559. },
  560. "require": {
  561. "php": ">5.5"
  562. },
  563. "require-dev": {
  564. "phpunit/phpunit": "^4.8.35|^5.4.3",
  565. "symfony/var-dumper": "*"
  566. },
  567. "time": "2021-12-08T06:43:00+00:00",
  568. "type": "library",
  569. "installation-source": "dist",
  570. "autoload": {
  571. "psr-4": {
  572. "AlibabaCloud\\Tea\\XML\\": "src"
  573. }
  574. },
  575. "notification-url": "https://packagist.org/downloads/",
  576. "license": [
  577. "Apache-2.0"
  578. ],
  579. "authors": [
  580. {
  581. "name": "Alibaba Cloud SDK",
  582. "email": "sdk-team@alibabacloud.com"
  583. }
  584. ],
  585. "description": "Alibaba Cloud Tea XML Library for PHP",
  586. "support": {
  587. "source": "https://github.com/alibabacloud-sdk-php/tea-xml/tree/0.2.3"
  588. },
  589. "install-path": "../alibabacloud/tea-xml"
  590. },
  591. {
  592. "name": "aliyuncs/oss-sdk-php",
  593. "version": "v2.3.0",
  594. "version_normalized": "2.3.0.0",
  595. "source": {
  596. "type": "git",
  597. "url": "https://github.com/aliyun/aliyun-oss-php-sdk.git",
  598. "reference": "e69f57916678458642ac9d2fd341ae78a56996c8"
  599. },
  600. "dist": {
  601. "type": "zip",
  602. "url": "https://api.github.com/repos/aliyun/aliyun-oss-php-sdk/zipball/e69f57916678458642ac9d2fd341ae78a56996c8",
  603. "reference": "e69f57916678458642ac9d2fd341ae78a56996c8",
  604. "shasum": "",
  605. "mirrors": [
  606. {
  607. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  608. "preferred": true
  609. }
  610. ]
  611. },
  612. "require": {
  613. "php": ">=5.3"
  614. },
  615. "require-dev": {
  616. "phpunit/phpunit": "~4.0",
  617. "satooshi/php-coveralls": "~1.0"
  618. },
  619. "time": "2018-01-08T06:59:35+00:00",
  620. "type": "library",
  621. "installation-source": "dist",
  622. "autoload": {
  623. "psr-4": {
  624. "OSS\\": "src/OSS"
  625. }
  626. },
  627. "notification-url": "https://packagist.org/downloads/",
  628. "license": [
  629. "MIT"
  630. ],
  631. "authors": [
  632. {
  633. "name": "Aliyuncs",
  634. "homepage": "http://www.aliyun.com"
  635. }
  636. ],
  637. "description": "Aliyun OSS SDK for PHP",
  638. "homepage": "http://www.aliyun.com/product/oss/",
  639. "install-path": "../aliyuncs/oss-sdk-php"
  640. },
  641. {
  642. "name": "dh2y/think-qrcode",
  643. "version": "2.0",
  644. "version_normalized": "2.0.0.0",
  645. "source": {
  646. "type": "git",
  647. "url": "https://github.com/cinaofdai/think-qrcode.git",
  648. "reference": "977d032afa27b1852f5fc5441fad2497f6db7ff5"
  649. },
  650. "dist": {
  651. "type": "zip",
  652. "url": "https://api.github.com/repos/cinaofdai/think-qrcode/zipball/977d032afa27b1852f5fc5441fad2497f6db7ff5",
  653. "reference": "977d032afa27b1852f5fc5441fad2497f6db7ff5",
  654. "shasum": "",
  655. "mirrors": [
  656. {
  657. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  658. "preferred": true
  659. }
  660. ]
  661. },
  662. "require": {
  663. "php": ">=5.4.0"
  664. },
  665. "time": "2019-07-10T02:57:29+00:00",
  666. "type": "library",
  667. "installation-source": "dist",
  668. "autoload": {
  669. "psr-4": {
  670. "dh2y\\qrcode\\": "src/"
  671. }
  672. },
  673. "notification-url": "https://packagist.org/downloads/",
  674. "license": [
  675. "MIT"
  676. ],
  677. "authors": [
  678. {
  679. "name": "dh2y",
  680. "email": "xiaodai54_long@163.com"
  681. }
  682. ],
  683. "description": "qrcode for thinkphp5",
  684. "homepage": "https://github.com/cinaofdai/think-qrcode",
  685. "install-path": "../dh2y/think-qrcode"
  686. },
  687. {
  688. "name": "doctrine/cache",
  689. "version": "v1.4.4",
  690. "version_normalized": "1.4.4.0",
  691. "source": {
  692. "type": "git",
  693. "url": "https://github.com/doctrine/cache.git",
  694. "reference": "6433826dd02c9e5be8a127320dc13e7e6625d020"
  695. },
  696. "dist": {
  697. "type": "zip",
  698. "url": "https://api.github.com/repos/doctrine/cache/zipball/6433826dd02c9e5be8a127320dc13e7e6625d020",
  699. "reference": "6433826dd02c9e5be8a127320dc13e7e6625d020",
  700. "shasum": "",
  701. "mirrors": [
  702. {
  703. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  704. "preferred": true
  705. }
  706. ]
  707. },
  708. "require": {
  709. "php": ">=5.3.2"
  710. },
  711. "conflict": {
  712. "doctrine/common": ">2.2,<2.4"
  713. },
  714. "require-dev": {
  715. "phpunit/phpunit": ">=3.7",
  716. "predis/predis": "~1.0",
  717. "satooshi/php-coveralls": "~0.6"
  718. },
  719. "time": "2015-11-02T18:33:51+00:00",
  720. "type": "library",
  721. "extra": {
  722. "branch-alias": {
  723. "dev-master": "1.5.x-dev"
  724. }
  725. },
  726. "installation-source": "dist",
  727. "autoload": {
  728. "psr-0": {
  729. "Doctrine\\Common\\Cache\\": "lib/"
  730. }
  731. },
  732. "notification-url": "https://packagist.org/downloads/",
  733. "license": [
  734. "MIT"
  735. ],
  736. "authors": [
  737. {
  738. "name": "Roman Borschel",
  739. "email": "roman@code-factory.org"
  740. },
  741. {
  742. "name": "Benjamin Eberlei",
  743. "email": "kontakt@beberlei.de"
  744. },
  745. {
  746. "name": "Guilherme Blanco",
  747. "email": "guilhermeblanco@gmail.com"
  748. },
  749. {
  750. "name": "Jonathan Wage",
  751. "email": "jonwage@gmail.com"
  752. },
  753. {
  754. "name": "Johannes Schmitt",
  755. "email": "schmittjoh@gmail.com"
  756. }
  757. ],
  758. "description": "Caching library offering an object-oriented API for many cache backends",
  759. "homepage": "http://www.doctrine-project.org",
  760. "keywords": [
  761. "cache",
  762. "caching"
  763. ],
  764. "install-path": "../doctrine/cache"
  765. },
  766. {
  767. "name": "firebase/php-jwt",
  768. "version": "v5.0.0",
  769. "version_normalized": "5.0.0.0",
  770. "source": {
  771. "type": "git",
  772. "url": "https://github.com/firebase/php-jwt.git",
  773. "reference": "9984a4d3a32ae7673d6971ea00bae9d0a1abba0e"
  774. },
  775. "dist": {
  776. "type": "zip",
  777. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/9984a4d3a32ae7673d6971ea00bae9d0a1abba0e",
  778. "reference": "9984a4d3a32ae7673d6971ea00bae9d0a1abba0e",
  779. "shasum": "",
  780. "mirrors": [
  781. {
  782. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  783. "preferred": true
  784. }
  785. ]
  786. },
  787. "require": {
  788. "php": ">=5.3.0"
  789. },
  790. "require-dev": {
  791. "phpunit/phpunit": " 4.8.35"
  792. },
  793. "time": "2017-06-27T22:17:23+00:00",
  794. "type": "library",
  795. "installation-source": "dist",
  796. "autoload": {
  797. "psr-4": {
  798. "Firebase\\JWT\\": "src"
  799. }
  800. },
  801. "notification-url": "https://packagist.org/downloads/",
  802. "license": [
  803. "BSD-3-Clause"
  804. ],
  805. "authors": [
  806. {
  807. "name": "Neuman Vong",
  808. "email": "neuman+pear@twilio.com",
  809. "role": "Developer"
  810. },
  811. {
  812. "name": "Anant Narayanan",
  813. "email": "anant@php.net",
  814. "role": "Developer"
  815. }
  816. ],
  817. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  818. "homepage": "https://github.com/firebase/php-jwt",
  819. "install-path": "../firebase/php-jwt"
  820. },
  821. {
  822. "name": "guzzle/guzzle",
  823. "version": "v3.9.3",
  824. "version_normalized": "3.9.3.0",
  825. "source": {
  826. "type": "git",
  827. "url": "https://github.com/guzzle/guzzle3.git",
  828. "reference": "0645b70d953bc1c067bbc8d5bc53194706b628d9"
  829. },
  830. "dist": {
  831. "type": "zip",
  832. "url": "https://api.github.com/repos/guzzle/guzzle3/zipball/0645b70d953bc1c067bbc8d5bc53194706b628d9",
  833. "reference": "0645b70d953bc1c067bbc8d5bc53194706b628d9",
  834. "shasum": "",
  835. "mirrors": [
  836. {
  837. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  838. "preferred": true
  839. }
  840. ]
  841. },
  842. "require": {
  843. "ext-curl": "*",
  844. "php": ">=5.3.3",
  845. "symfony/event-dispatcher": "~2.1"
  846. },
  847. "replace": {
  848. "guzzle/batch": "self.version",
  849. "guzzle/cache": "self.version",
  850. "guzzle/common": "self.version",
  851. "guzzle/http": "self.version",
  852. "guzzle/inflection": "self.version",
  853. "guzzle/iterator": "self.version",
  854. "guzzle/log": "self.version",
  855. "guzzle/parser": "self.version",
  856. "guzzle/plugin": "self.version",
  857. "guzzle/plugin-async": "self.version",
  858. "guzzle/plugin-backoff": "self.version",
  859. "guzzle/plugin-cache": "self.version",
  860. "guzzle/plugin-cookie": "self.version",
  861. "guzzle/plugin-curlauth": "self.version",
  862. "guzzle/plugin-error-response": "self.version",
  863. "guzzle/plugin-history": "self.version",
  864. "guzzle/plugin-log": "self.version",
  865. "guzzle/plugin-md5": "self.version",
  866. "guzzle/plugin-mock": "self.version",
  867. "guzzle/plugin-oauth": "self.version",
  868. "guzzle/service": "self.version",
  869. "guzzle/stream": "self.version"
  870. },
  871. "require-dev": {
  872. "doctrine/cache": "~1.3",
  873. "monolog/monolog": "~1.0",
  874. "phpunit/phpunit": "3.7.*",
  875. "psr/log": "~1.0",
  876. "symfony/class-loader": "~2.1",
  877. "zendframework/zend-cache": "2.*,<2.3",
  878. "zendframework/zend-log": "2.*,<2.3"
  879. },
  880. "suggest": {
  881. "guzzlehttp/guzzle": "Guzzle 5 has moved to a new package name. The package you have installed, Guzzle 3, is deprecated."
  882. },
  883. "time": "2015-03-18T18:23:50+00:00",
  884. "type": "library",
  885. "extra": {
  886. "branch-alias": {
  887. "dev-master": "3.9-dev"
  888. }
  889. },
  890. "installation-source": "dist",
  891. "autoload": {
  892. "psr-0": {
  893. "Guzzle": "src/",
  894. "Guzzle\\Tests": "tests/"
  895. }
  896. },
  897. "notification-url": "https://packagist.org/downloads/",
  898. "license": [
  899. "MIT"
  900. ],
  901. "authors": [
  902. {
  903. "name": "Michael Dowling",
  904. "email": "mtdowling@gmail.com",
  905. "homepage": "https://github.com/mtdowling"
  906. },
  907. {
  908. "name": "Guzzle Community",
  909. "homepage": "https://github.com/guzzle/guzzle/contributors"
  910. }
  911. ],
  912. "description": "PHP HTTP client. This library is deprecated in favor of https://packagist.org/packages/guzzlehttp/guzzle",
  913. "homepage": "http://guzzlephp.org/",
  914. "keywords": [
  915. "client",
  916. "curl",
  917. "framework",
  918. "http",
  919. "http client",
  920. "rest",
  921. "web service"
  922. ],
  923. "abandoned": "guzzlehttp/guzzle",
  924. "install-path": "../guzzle/guzzle"
  925. },
  926. {
  927. "name": "guzzlehttp/guzzle",
  928. "version": "6.3.3",
  929. "version_normalized": "6.3.3.0",
  930. "source": {
  931. "type": "git",
  932. "url": "https://github.com/guzzle/guzzle.git",
  933. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba"
  934. },
  935. "dist": {
  936. "type": "zip",
  937. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  938. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  939. "shasum": "",
  940. "mirrors": [
  941. {
  942. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  943. "preferred": true
  944. }
  945. ]
  946. },
  947. "require": {
  948. "guzzlehttp/promises": "^1.0",
  949. "guzzlehttp/psr7": "^1.4",
  950. "php": ">=5.5"
  951. },
  952. "require-dev": {
  953. "ext-curl": "*",
  954. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  955. "psr/log": "^1.0"
  956. },
  957. "suggest": {
  958. "psr/log": "Required for using the Log middleware"
  959. },
  960. "time": "2018-04-22T15:46:56+00:00",
  961. "type": "library",
  962. "extra": {
  963. "branch-alias": {
  964. "dev-master": "6.3-dev"
  965. }
  966. },
  967. "installation-source": "dist",
  968. "autoload": {
  969. "files": [
  970. "src/functions_include.php"
  971. ],
  972. "psr-4": {
  973. "GuzzleHttp\\": "src/"
  974. }
  975. },
  976. "notification-url": "https://packagist.org/downloads/",
  977. "license": [
  978. "MIT"
  979. ],
  980. "authors": [
  981. {
  982. "name": "Michael Dowling",
  983. "email": "mtdowling@gmail.com",
  984. "homepage": "https://github.com/mtdowling"
  985. }
  986. ],
  987. "description": "Guzzle is a PHP HTTP client library",
  988. "homepage": "http://guzzlephp.org/",
  989. "keywords": [
  990. "client",
  991. "curl",
  992. "framework",
  993. "http",
  994. "http client",
  995. "rest",
  996. "web service"
  997. ],
  998. "install-path": "../guzzlehttp/guzzle"
  999. },
  1000. {
  1001. "name": "guzzlehttp/promises",
  1002. "version": "v1.3.1",
  1003. "version_normalized": "1.3.1.0",
  1004. "source": {
  1005. "type": "git",
  1006. "url": "https://github.com/guzzle/promises.git",
  1007. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  1008. },
  1009. "dist": {
  1010. "type": "zip",
  1011. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  1012. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  1013. "shasum": "",
  1014. "mirrors": [
  1015. {
  1016. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1017. "preferred": true
  1018. }
  1019. ]
  1020. },
  1021. "require": {
  1022. "php": ">=5.5.0"
  1023. },
  1024. "require-dev": {
  1025. "phpunit/phpunit": "^4.0"
  1026. },
  1027. "time": "2016-12-20T10:07:11+00:00",
  1028. "type": "library",
  1029. "extra": {
  1030. "branch-alias": {
  1031. "dev-master": "1.4-dev"
  1032. }
  1033. },
  1034. "installation-source": "dist",
  1035. "autoload": {
  1036. "psr-4": {
  1037. "GuzzleHttp\\Promise\\": "src/"
  1038. },
  1039. "files": [
  1040. "src/functions_include.php"
  1041. ]
  1042. },
  1043. "notification-url": "https://packagist.org/downloads/",
  1044. "license": [
  1045. "MIT"
  1046. ],
  1047. "authors": [
  1048. {
  1049. "name": "Michael Dowling",
  1050. "email": "mtdowling@gmail.com",
  1051. "homepage": "https://github.com/mtdowling"
  1052. }
  1053. ],
  1054. "description": "Guzzle promises library",
  1055. "keywords": [
  1056. "promise"
  1057. ],
  1058. "install-path": "../guzzlehttp/promises"
  1059. },
  1060. {
  1061. "name": "guzzlehttp/psr7",
  1062. "version": "1.5.2",
  1063. "version_normalized": "1.5.2.0",
  1064. "source": {
  1065. "type": "git",
  1066. "url": "https://github.com/guzzle/psr7.git",
  1067. "reference": "9f83dded91781a01c63574e387eaa769be769115"
  1068. },
  1069. "dist": {
  1070. "type": "zip",
  1071. "url": "https://api.github.com/repos/guzzle/psr7/zipball/9f83dded91781a01c63574e387eaa769be769115",
  1072. "reference": "9f83dded91781a01c63574e387eaa769be769115",
  1073. "shasum": "",
  1074. "mirrors": [
  1075. {
  1076. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1077. "preferred": true
  1078. }
  1079. ]
  1080. },
  1081. "require": {
  1082. "php": ">=5.4.0",
  1083. "psr/http-message": "~1.0",
  1084. "ralouphie/getallheaders": "^2.0.5"
  1085. },
  1086. "provide": {
  1087. "psr/http-message-implementation": "1.0"
  1088. },
  1089. "require-dev": {
  1090. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  1091. },
  1092. "time": "2018-12-04T20:46:45+00:00",
  1093. "type": "library",
  1094. "extra": {
  1095. "branch-alias": {
  1096. "dev-master": "1.5-dev"
  1097. }
  1098. },
  1099. "installation-source": "dist",
  1100. "autoload": {
  1101. "psr-4": {
  1102. "GuzzleHttp\\Psr7\\": "src/"
  1103. },
  1104. "files": [
  1105. "src/functions_include.php"
  1106. ]
  1107. },
  1108. "notification-url": "https://packagist.org/downloads/",
  1109. "license": [
  1110. "MIT"
  1111. ],
  1112. "authors": [
  1113. {
  1114. "name": "Michael Dowling",
  1115. "email": "mtdowling@gmail.com",
  1116. "homepage": "https://github.com/mtdowling"
  1117. },
  1118. {
  1119. "name": "Tobias Schultze",
  1120. "homepage": "https://github.com/Tobion"
  1121. }
  1122. ],
  1123. "description": "PSR-7 message implementation that also provides common utility methods",
  1124. "keywords": [
  1125. "http",
  1126. "message",
  1127. "psr-7",
  1128. "request",
  1129. "response",
  1130. "stream",
  1131. "uri",
  1132. "url"
  1133. ],
  1134. "install-path": "../guzzlehttp/psr7"
  1135. },
  1136. {
  1137. "name": "league/flysystem",
  1138. "version": "1.0.57",
  1139. "version_normalized": "1.0.57.0",
  1140. "source": {
  1141. "type": "git",
  1142. "url": "https://github.com/thephpleague/flysystem.git",
  1143. "reference": "0e9db7f0b96b9f12dcf6f65bc34b72b1a30ea55a"
  1144. },
  1145. "dist": {
  1146. "type": "zip",
  1147. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/0e9db7f0b96b9f12dcf6f65bc34b72b1a30ea55a",
  1148. "reference": "0e9db7f0b96b9f12dcf6f65bc34b72b1a30ea55a",
  1149. "shasum": "",
  1150. "mirrors": [
  1151. {
  1152. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1153. "preferred": true
  1154. }
  1155. ]
  1156. },
  1157. "require": {
  1158. "ext-fileinfo": "*",
  1159. "php": ">=5.5.9"
  1160. },
  1161. "conflict": {
  1162. "league/flysystem-sftp": "<1.0.6"
  1163. },
  1164. "require-dev": {
  1165. "phpspec/phpspec": "^3.4",
  1166. "phpunit/phpunit": "^5.7.10"
  1167. },
  1168. "suggest": {
  1169. "ext-fileinfo": "Required for MimeType",
  1170. "ext-ftp": "Allows you to use FTP server storage",
  1171. "ext-openssl": "Allows you to use FTPS server storage",
  1172. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  1173. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  1174. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  1175. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  1176. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  1177. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  1178. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  1179. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  1180. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  1181. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  1182. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  1183. },
  1184. "time": "2019-10-16T21:01:05+00:00",
  1185. "type": "library",
  1186. "extra": {
  1187. "branch-alias": {
  1188. "dev-master": "1.1-dev"
  1189. }
  1190. },
  1191. "installation-source": "dist",
  1192. "autoload": {
  1193. "psr-4": {
  1194. "League\\Flysystem\\": "src/"
  1195. }
  1196. },
  1197. "notification-url": "https://packagist.org/downloads/",
  1198. "license": [
  1199. "MIT"
  1200. ],
  1201. "authors": [
  1202. {
  1203. "name": "Frank de Jonge",
  1204. "email": "info@frenky.net"
  1205. }
  1206. ],
  1207. "description": "Filesystem abstraction: Many filesystems, one API.",
  1208. "keywords": [
  1209. "Cloud Files",
  1210. "WebDAV",
  1211. "abstraction",
  1212. "aws",
  1213. "cloud",
  1214. "copy.com",
  1215. "dropbox",
  1216. "file systems",
  1217. "files",
  1218. "filesystem",
  1219. "filesystems",
  1220. "ftp",
  1221. "rackspace",
  1222. "remote",
  1223. "s3",
  1224. "sftp",
  1225. "storage"
  1226. ],
  1227. "install-path": "../league/flysystem"
  1228. },
  1229. {
  1230. "name": "league/flysystem-cached-adapter",
  1231. "version": "1.0.9",
  1232. "version_normalized": "1.0.9.0",
  1233. "source": {
  1234. "type": "git",
  1235. "url": "https://github.com/thephpleague/flysystem-cached-adapter.git",
  1236. "reference": "08ef74e9be88100807a3b92cc9048a312bf01d6f"
  1237. },
  1238. "dist": {
  1239. "type": "zip",
  1240. "url": "https://api.github.com/repos/thephpleague/flysystem-cached-adapter/zipball/08ef74e9be88100807a3b92cc9048a312bf01d6f",
  1241. "reference": "08ef74e9be88100807a3b92cc9048a312bf01d6f",
  1242. "shasum": "",
  1243. "mirrors": [
  1244. {
  1245. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1246. "preferred": true
  1247. }
  1248. ]
  1249. },
  1250. "require": {
  1251. "league/flysystem": "~1.0",
  1252. "psr/cache": "^1.0.0"
  1253. },
  1254. "require-dev": {
  1255. "mockery/mockery": "~0.9",
  1256. "phpspec/phpspec": "^3.4",
  1257. "phpunit/phpunit": "^5.7",
  1258. "predis/predis": "~1.0",
  1259. "tedivm/stash": "~0.12"
  1260. },
  1261. "suggest": {
  1262. "ext-phpredis": "Pure C implemented extension for PHP"
  1263. },
  1264. "time": "2018-07-09T20:51:04+00:00",
  1265. "type": "library",
  1266. "installation-source": "dist",
  1267. "autoload": {
  1268. "psr-4": {
  1269. "League\\Flysystem\\Cached\\": "src/"
  1270. }
  1271. },
  1272. "notification-url": "https://packagist.org/downloads/",
  1273. "license": [
  1274. "MIT"
  1275. ],
  1276. "authors": [
  1277. {
  1278. "name": "frankdejonge",
  1279. "email": "info@frenky.net"
  1280. }
  1281. ],
  1282. "description": "An adapter decorator to enable meta-data caching.",
  1283. "install-path": "../league/flysystem-cached-adapter"
  1284. },
  1285. {
  1286. "name": "lizhichao/one-sm",
  1287. "version": "1.10",
  1288. "version_normalized": "1.10.0.0",
  1289. "source": {
  1290. "type": "git",
  1291. "url": "https://github.com/lizhichao/sm.git",
  1292. "reference": "687a012a44a5bfd4d9143a0234e1060543be455a"
  1293. },
  1294. "dist": {
  1295. "type": "zip",
  1296. "url": "https://api.github.com/repos/lizhichao/sm/zipball/687a012a44a5bfd4d9143a0234e1060543be455a",
  1297. "reference": "687a012a44a5bfd4d9143a0234e1060543be455a",
  1298. "shasum": "",
  1299. "mirrors": [
  1300. {
  1301. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1302. "preferred": true
  1303. }
  1304. ]
  1305. },
  1306. "require": {
  1307. "php": ">=5.6"
  1308. },
  1309. "time": "2021-05-26T06:19:22+00:00",
  1310. "type": "library",
  1311. "installation-source": "dist",
  1312. "autoload": {
  1313. "psr-4": {
  1314. "OneSm\\": "src/"
  1315. }
  1316. },
  1317. "notification-url": "https://packagist.org/downloads/",
  1318. "license": [
  1319. "Apache-2.0"
  1320. ],
  1321. "authors": [
  1322. {
  1323. "name": "tanszhe",
  1324. "email": "1018595261@qq.com"
  1325. }
  1326. ],
  1327. "description": "国密sm3",
  1328. "keywords": [
  1329. "php",
  1330. "sm3"
  1331. ],
  1332. "support": {
  1333. "issues": "https://github.com/lizhichao/sm/issues",
  1334. "source": "https://github.com/lizhichao/sm/tree/1.10"
  1335. },
  1336. "funding": [
  1337. {
  1338. "url": "https://www.vicsdf.com/img/w.jpg",
  1339. "type": "custom"
  1340. },
  1341. {
  1342. "url": "https://www.vicsdf.com/img/z.jpg",
  1343. "type": "custom"
  1344. }
  1345. ],
  1346. "install-path": "../lizhichao/one-sm"
  1347. },
  1348. {
  1349. "name": "monolog/monolog",
  1350. "version": "1.24.0",
  1351. "version_normalized": "1.24.0.0",
  1352. "source": {
  1353. "type": "git",
  1354. "url": "https://github.com/Seldaek/monolog.git",
  1355. "reference": "bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266"
  1356. },
  1357. "dist": {
  1358. "type": "zip",
  1359. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266",
  1360. "reference": "bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266",
  1361. "shasum": "",
  1362. "mirrors": [
  1363. {
  1364. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1365. "preferred": true
  1366. }
  1367. ]
  1368. },
  1369. "require": {
  1370. "php": ">=5.3.0",
  1371. "psr/log": "~1.0"
  1372. },
  1373. "provide": {
  1374. "psr/log-implementation": "1.0.0"
  1375. },
  1376. "require-dev": {
  1377. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1378. "doctrine/couchdb": "~1.0@dev",
  1379. "graylog2/gelf-php": "~1.0",
  1380. "jakub-onderka/php-parallel-lint": "0.9",
  1381. "php-amqplib/php-amqplib": "~2.4",
  1382. "php-console/php-console": "^3.1.3",
  1383. "phpunit/phpunit": "~4.5",
  1384. "phpunit/phpunit-mock-objects": "2.3.0",
  1385. "ruflin/elastica": ">=0.90 <3.0",
  1386. "sentry/sentry": "^0.13",
  1387. "swiftmailer/swiftmailer": "^5.3|^6.0"
  1388. },
  1389. "suggest": {
  1390. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1391. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1392. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1393. "ext-mongo": "Allow sending log messages to a MongoDB server",
  1394. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1395. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  1396. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1397. "php-console/php-console": "Allow sending log messages to Google Chrome",
  1398. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1399. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  1400. "sentry/sentry": "Allow sending log messages to a Sentry server"
  1401. },
  1402. "time": "2018-11-05T09:00:11+00:00",
  1403. "type": "library",
  1404. "extra": {
  1405. "branch-alias": {
  1406. "dev-master": "2.0.x-dev"
  1407. }
  1408. },
  1409. "installation-source": "dist",
  1410. "autoload": {
  1411. "psr-4": {
  1412. "Monolog\\": "src/Monolog"
  1413. }
  1414. },
  1415. "notification-url": "https://packagist.org/downloads/",
  1416. "license": [
  1417. "MIT"
  1418. ],
  1419. "authors": [
  1420. {
  1421. "name": "Jordi Boggiano",
  1422. "email": "j.boggiano@seld.be",
  1423. "homepage": "http://seld.be"
  1424. }
  1425. ],
  1426. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1427. "homepage": "http://github.com/Seldaek/monolog",
  1428. "keywords": [
  1429. "log",
  1430. "logging",
  1431. "psr-3"
  1432. ],
  1433. "install-path": "../monolog/monolog"
  1434. },
  1435. {
  1436. "name": "nesbot/carbon",
  1437. "version": "2.20.0",
  1438. "version_normalized": "2.20.0.0",
  1439. "source": {
  1440. "type": "git",
  1441. "url": "https://github.com/briannesbitt/Carbon.git",
  1442. "reference": "bc671b896c276795fad8426b0aa24e8ade0f2498"
  1443. },
  1444. "dist": {
  1445. "type": "zip",
  1446. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/bc671b896c276795fad8426b0aa24e8ade0f2498",
  1447. "reference": "bc671b896c276795fad8426b0aa24e8ade0f2498",
  1448. "shasum": "",
  1449. "mirrors": [
  1450. {
  1451. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1452. "preferred": true
  1453. }
  1454. ]
  1455. },
  1456. "require": {
  1457. "ext-json": "*",
  1458. "php": "^7.1.8 || ^8.0",
  1459. "symfony/translation": "^3.4 || ^4.0"
  1460. },
  1461. "require-dev": {
  1462. "friendsofphp/php-cs-fixer": "^2.14 || ^3.0",
  1463. "kylekatarnls/multi-tester": "^1.1",
  1464. "phpmd/phpmd": "^2.6",
  1465. "phpstan/phpstan": "^0.11",
  1466. "phpunit/phpunit": "^7.5 || ^8.0",
  1467. "squizlabs/php_codesniffer": "^3.4"
  1468. },
  1469. "time": "2019-06-25T10:00:57+00:00",
  1470. "type": "library",
  1471. "extra": {
  1472. "laravel": {
  1473. "providers": [
  1474. "Carbon\\Laravel\\ServiceProvider"
  1475. ]
  1476. }
  1477. },
  1478. "installation-source": "dist",
  1479. "autoload": {
  1480. "psr-4": {
  1481. "Carbon\\": "src/Carbon/"
  1482. }
  1483. },
  1484. "notification-url": "https://packagist.org/downloads/",
  1485. "license": [
  1486. "MIT"
  1487. ],
  1488. "authors": [
  1489. {
  1490. "name": "Brian Nesbitt",
  1491. "email": "brian@nesbot.com",
  1492. "homepage": "http://nesbot.com"
  1493. }
  1494. ],
  1495. "description": "A simple API extension for DateTime.",
  1496. "homepage": "http://carbon.nesbot.com",
  1497. "keywords": [
  1498. "date",
  1499. "datetime",
  1500. "time"
  1501. ],
  1502. "install-path": "../nesbot/carbon"
  1503. },
  1504. {
  1505. "name": "opis/closure",
  1506. "version": "3.4.1",
  1507. "version_normalized": "3.4.1.0",
  1508. "source": {
  1509. "type": "git",
  1510. "url": "https://github.com/opis/closure.git",
  1511. "reference": "e79f851749c3caa836d7ccc01ede5828feb762c7"
  1512. },
  1513. "dist": {
  1514. "type": "zip",
  1515. "url": "https://api.github.com/repos/opis/closure/zipball/e79f851749c3caa836d7ccc01ede5828feb762c7",
  1516. "reference": "e79f851749c3caa836d7ccc01ede5828feb762c7",
  1517. "shasum": "",
  1518. "mirrors": [
  1519. {
  1520. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1521. "preferred": true
  1522. }
  1523. ]
  1524. },
  1525. "require": {
  1526. "php": "^5.4 || ^7.0"
  1527. },
  1528. "require-dev": {
  1529. "jeremeamia/superclosure": "^2.0",
  1530. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  1531. },
  1532. "time": "2019-10-19T18:38:51+00:00",
  1533. "type": "library",
  1534. "extra": {
  1535. "branch-alias": {
  1536. "dev-master": "3.3.x-dev"
  1537. }
  1538. },
  1539. "installation-source": "dist",
  1540. "autoload": {
  1541. "psr-4": {
  1542. "Opis\\Closure\\": "src/"
  1543. },
  1544. "files": [
  1545. "functions.php"
  1546. ]
  1547. },
  1548. "notification-url": "https://packagist.org/downloads/",
  1549. "license": [
  1550. "MIT"
  1551. ],
  1552. "authors": [
  1553. {
  1554. "name": "Marius Sarca",
  1555. "email": "marius.sarca@gmail.com"
  1556. },
  1557. {
  1558. "name": "Sorin Sarca",
  1559. "email": "sarca_sorin@hotmail.com"
  1560. }
  1561. ],
  1562. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  1563. "homepage": "https://opis.io/closure",
  1564. "keywords": [
  1565. "anonymous functions",
  1566. "closure",
  1567. "function",
  1568. "serializable",
  1569. "serialization",
  1570. "serialize"
  1571. ],
  1572. "install-path": "../opis/closure"
  1573. },
  1574. {
  1575. "name": "overtrue/pinyin",
  1576. "version": "4.0.6",
  1577. "version_normalized": "4.0.6.0",
  1578. "source": {
  1579. "type": "git",
  1580. "url": "https://github.com/overtrue/pinyin.git",
  1581. "reference": "9836dae1783bcf5934508a2abe32eca9ea5ee15d"
  1582. },
  1583. "dist": {
  1584. "type": "zip",
  1585. "url": "https://api.github.com/repos/overtrue/pinyin/zipball/9836dae1783bcf5934508a2abe32eca9ea5ee15d",
  1586. "reference": "9836dae1783bcf5934508a2abe32eca9ea5ee15d",
  1587. "shasum": "",
  1588. "mirrors": [
  1589. {
  1590. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1591. "preferred": true
  1592. }
  1593. ]
  1594. },
  1595. "require": {
  1596. "php": ">=7.1"
  1597. },
  1598. "require-dev": {
  1599. "brainmaestro/composer-git-hooks": "^2.7",
  1600. "friendsofphp/php-cs-fixer": "^2.16",
  1601. "phpunit/phpunit": "~8.0"
  1602. },
  1603. "time": "2020-04-13T08:53:30+00:00",
  1604. "type": "library",
  1605. "extra": {
  1606. "hooks": {
  1607. "pre-commit": [
  1608. "composer test",
  1609. "composer fix-style"
  1610. ],
  1611. "pre-push": [
  1612. "composer test",
  1613. "composer check-style"
  1614. ]
  1615. }
  1616. },
  1617. "installation-source": "dist",
  1618. "autoload": {
  1619. "psr-4": {
  1620. "Overtrue\\Pinyin\\": "src/"
  1621. },
  1622. "files": [
  1623. "src/const.php"
  1624. ]
  1625. },
  1626. "notification-url": "https://packagist.org/downloads/",
  1627. "license": [
  1628. "MIT"
  1629. ],
  1630. "authors": [
  1631. {
  1632. "name": "overtrue",
  1633. "email": "anzhengchao@gmail.com",
  1634. "homepage": "http://github.com/overtrue"
  1635. }
  1636. ],
  1637. "description": "Chinese to pinyin translator.",
  1638. "homepage": "https://github.com/overtrue/pinyin",
  1639. "keywords": [
  1640. "Chinese",
  1641. "Pinyin",
  1642. "cn2pinyin"
  1643. ],
  1644. "install-path": "../overtrue/pinyin"
  1645. },
  1646. {
  1647. "name": "overtrue/socialite",
  1648. "version": "1.3.0",
  1649. "version_normalized": "1.3.0.0",
  1650. "source": {
  1651. "type": "git",
  1652. "url": "https://github.com/overtrue/socialite.git",
  1653. "reference": "fda55f0acef43a144799b1957a8f93d9f5deffce"
  1654. },
  1655. "dist": {
  1656. "type": "zip",
  1657. "url": "https://api.github.com/repos/overtrue/socialite/zipball/fda55f0acef43a144799b1957a8f93d9f5deffce",
  1658. "reference": "fda55f0acef43a144799b1957a8f93d9f5deffce",
  1659. "shasum": "",
  1660. "mirrors": [
  1661. {
  1662. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1663. "preferred": true
  1664. }
  1665. ]
  1666. },
  1667. "require": {
  1668. "guzzlehttp/guzzle": "~5.0|~6.0",
  1669. "php": ">=5.4.0",
  1670. "symfony/http-foundation": "~2.6|~2.7|~2.8|~3.0"
  1671. },
  1672. "require-dev": {
  1673. "mockery/mockery": "~0.9",
  1674. "phpunit/phpunit": "~4.0"
  1675. },
  1676. "time": "2017-08-04T06:28:22+00:00",
  1677. "type": "library",
  1678. "installation-source": "dist",
  1679. "autoload": {
  1680. "psr-4": {
  1681. "Overtrue\\Socialite\\": "src/"
  1682. }
  1683. },
  1684. "notification-url": "https://packagist.org/downloads/",
  1685. "license": [
  1686. "MIT"
  1687. ],
  1688. "authors": [
  1689. {
  1690. "name": "overtrue",
  1691. "email": "anzhengchao@gmail.com"
  1692. }
  1693. ],
  1694. "description": "A collection of OAuth 2 packages that extracts from laravel/socialite.",
  1695. "keywords": [
  1696. "login",
  1697. "oauth",
  1698. "qq",
  1699. "social",
  1700. "wechat",
  1701. "weibo"
  1702. ],
  1703. "install-path": "../overtrue/socialite"
  1704. },
  1705. {
  1706. "name": "overtrue/wechat",
  1707. "version": "3.3.33",
  1708. "version_normalized": "3.3.33.0",
  1709. "source": {
  1710. "type": "git",
  1711. "url": "https://github.com/w7corp/easywechat.git",
  1712. "reference": "78e5476df330754040d1c400d0bca640d5b77cb7"
  1713. },
  1714. "dist": {
  1715. "type": "zip",
  1716. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/78e5476df330754040d1c400d0bca640d5b77cb7",
  1717. "reference": "78e5476df330754040d1c400d0bca640d5b77cb7",
  1718. "shasum": "",
  1719. "mirrors": [
  1720. {
  1721. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1722. "preferred": true
  1723. }
  1724. ]
  1725. },
  1726. "require": {
  1727. "doctrine/cache": "1.4.*",
  1728. "ext-openssl": "*",
  1729. "guzzlehttp/guzzle": "~6.2",
  1730. "monolog/monolog": "^1.17",
  1731. "overtrue/socialite": "^1.0.25",
  1732. "php": ">=5.5.0",
  1733. "pimple/pimple": "~3.0",
  1734. "symfony/http-foundation": "~2.6|~2.7|~2.8|~3.0",
  1735. "symfony/psr-http-message-bridge": "~0.3|^1.0"
  1736. },
  1737. "require-dev": {
  1738. "mockery/mockery": "^0.9.9",
  1739. "overtrue/phplint": "dev-master",
  1740. "phpunit/phpunit": "~4.0"
  1741. },
  1742. "time": "2018-10-17T12:27:27+00:00",
  1743. "type": "library",
  1744. "installation-source": "dist",
  1745. "autoload": {
  1746. "psr-4": {
  1747. "EasyWeChat\\": "src/"
  1748. },
  1749. "files": [
  1750. "src/Payment/helpers.php"
  1751. ]
  1752. },
  1753. "notification-url": "https://packagist.org/downloads/",
  1754. "license": [
  1755. "MIT"
  1756. ],
  1757. "authors": [
  1758. {
  1759. "name": "overtrue",
  1760. "email": "anzhengchao@gmail.com"
  1761. }
  1762. ],
  1763. "description": "微信SDK",
  1764. "keywords": [
  1765. "sdk",
  1766. "wechat",
  1767. "weixin",
  1768. "weixin-sdk"
  1769. ],
  1770. "install-path": "../overtrue/wechat"
  1771. },
  1772. {
  1773. "name": "paragonie/random_compat",
  1774. "version": "v9.99.99",
  1775. "version_normalized": "9.99.99.0",
  1776. "source": {
  1777. "type": "git",
  1778. "url": "https://github.com/paragonie/random_compat.git",
  1779. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
  1780. },
  1781. "dist": {
  1782. "type": "zip",
  1783. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  1784. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  1785. "shasum": "",
  1786. "mirrors": [
  1787. {
  1788. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1789. "preferred": true
  1790. }
  1791. ]
  1792. },
  1793. "require": {
  1794. "php": "^7"
  1795. },
  1796. "require-dev": {
  1797. "phpunit/phpunit": "4.*|5.*",
  1798. "vimeo/psalm": "^1"
  1799. },
  1800. "suggest": {
  1801. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  1802. },
  1803. "time": "2018-07-02T15:55:56+00:00",
  1804. "type": "library",
  1805. "installation-source": "dist",
  1806. "notification-url": "https://packagist.org/downloads/",
  1807. "license": [
  1808. "MIT"
  1809. ],
  1810. "authors": [
  1811. {
  1812. "name": "Paragon Initiative Enterprises",
  1813. "email": "security@paragonie.com",
  1814. "homepage": "https://paragonie.com"
  1815. }
  1816. ],
  1817. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  1818. "keywords": [
  1819. "csprng",
  1820. "polyfill",
  1821. "pseudorandom",
  1822. "random"
  1823. ],
  1824. "install-path": "../paragonie/random_compat"
  1825. },
  1826. {
  1827. "name": "phpoffice/phpexcel",
  1828. "version": "1.8.2",
  1829. "version_normalized": "1.8.2.0",
  1830. "source": {
  1831. "type": "git",
  1832. "url": "https://github.com/PHPOffice/PHPExcel.git",
  1833. "reference": "1441011fb7ecdd8cc689878f54f8b58a6805f870"
  1834. },
  1835. "dist": {
  1836. "type": "zip",
  1837. "url": "https://api.github.com/repos/PHPOffice/PHPExcel/zipball/1441011fb7ecdd8cc689878f54f8b58a6805f870",
  1838. "reference": "1441011fb7ecdd8cc689878f54f8b58a6805f870",
  1839. "shasum": "",
  1840. "mirrors": [
  1841. {
  1842. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1843. "preferred": true
  1844. }
  1845. ]
  1846. },
  1847. "require": {
  1848. "ext-mbstring": "*",
  1849. "ext-xml": "*",
  1850. "ext-xmlwriter": "*",
  1851. "php": "^5.2|^7.0"
  1852. },
  1853. "require-dev": {
  1854. "squizlabs/php_codesniffer": "2.*"
  1855. },
  1856. "time": "2018-11-22T23:07:24+00:00",
  1857. "type": "library",
  1858. "installation-source": "dist",
  1859. "autoload": {
  1860. "psr-0": {
  1861. "PHPExcel": "Classes/"
  1862. }
  1863. },
  1864. "notification-url": "https://packagist.org/downloads/",
  1865. "license": [
  1866. "LGPL-2.1"
  1867. ],
  1868. "authors": [
  1869. {
  1870. "name": "Maarten Balliauw",
  1871. "homepage": "http://blog.maartenballiauw.be"
  1872. },
  1873. {
  1874. "name": "Erik Tilt"
  1875. },
  1876. {
  1877. "name": "Franck Lefevre",
  1878. "homepage": "http://rootslabs.net"
  1879. },
  1880. {
  1881. "name": "Mark Baker",
  1882. "homepage": "http://markbakeruk.net"
  1883. }
  1884. ],
  1885. "description": "PHPExcel - OpenXML - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  1886. "homepage": "https://github.com/PHPOffice/PHPExcel",
  1887. "keywords": [
  1888. "OpenXML",
  1889. "excel",
  1890. "php",
  1891. "spreadsheet",
  1892. "xls",
  1893. "xlsx"
  1894. ],
  1895. "abandoned": "phpoffice/phpspreadsheet",
  1896. "install-path": "../phpoffice/phpexcel"
  1897. },
  1898. {
  1899. "name": "pimple/pimple",
  1900. "version": "v3.2.3",
  1901. "version_normalized": "3.2.3.0",
  1902. "source": {
  1903. "type": "git",
  1904. "url": "https://github.com/silexphp/Pimple.git",
  1905. "reference": "9e403941ef9d65d20cba7d54e29fe906db42cf32"
  1906. },
  1907. "dist": {
  1908. "type": "zip",
  1909. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/9e403941ef9d65d20cba7d54e29fe906db42cf32",
  1910. "reference": "9e403941ef9d65d20cba7d54e29fe906db42cf32",
  1911. "shasum": "",
  1912. "mirrors": [
  1913. {
  1914. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1915. "preferred": true
  1916. }
  1917. ]
  1918. },
  1919. "require": {
  1920. "php": ">=5.3.0",
  1921. "psr/container": "^1.0"
  1922. },
  1923. "require-dev": {
  1924. "symfony/phpunit-bridge": "^3.2"
  1925. },
  1926. "time": "2018-01-21T07:42:36+00:00",
  1927. "type": "library",
  1928. "extra": {
  1929. "branch-alias": {
  1930. "dev-master": "3.2.x-dev"
  1931. }
  1932. },
  1933. "installation-source": "dist",
  1934. "autoload": {
  1935. "psr-0": {
  1936. "Pimple": "src/"
  1937. }
  1938. },
  1939. "notification-url": "https://packagist.org/downloads/",
  1940. "license": [
  1941. "MIT"
  1942. ],
  1943. "authors": [
  1944. {
  1945. "name": "Fabien Potencier",
  1946. "email": "fabien@symfony.com"
  1947. }
  1948. ],
  1949. "description": "Pimple, a simple Dependency Injection Container",
  1950. "homepage": "http://pimple.sensiolabs.org",
  1951. "keywords": [
  1952. "container",
  1953. "dependency injection"
  1954. ],
  1955. "install-path": "../pimple/pimple"
  1956. },
  1957. {
  1958. "name": "psr/cache",
  1959. "version": "1.0.1",
  1960. "version_normalized": "1.0.1.0",
  1961. "source": {
  1962. "type": "git",
  1963. "url": "https://github.com/php-fig/cache.git",
  1964. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  1965. },
  1966. "dist": {
  1967. "type": "zip",
  1968. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  1969. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  1970. "shasum": "",
  1971. "mirrors": [
  1972. {
  1973. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1974. "preferred": true
  1975. }
  1976. ]
  1977. },
  1978. "require": {
  1979. "php": ">=5.3.0"
  1980. },
  1981. "time": "2016-08-06T20:24:11+00:00",
  1982. "type": "library",
  1983. "extra": {
  1984. "branch-alias": {
  1985. "dev-master": "1.0.x-dev"
  1986. }
  1987. },
  1988. "installation-source": "dist",
  1989. "autoload": {
  1990. "psr-4": {
  1991. "Psr\\Cache\\": "src/"
  1992. }
  1993. },
  1994. "notification-url": "https://packagist.org/downloads/",
  1995. "license": [
  1996. "MIT"
  1997. ],
  1998. "authors": [
  1999. {
  2000. "name": "PHP-FIG",
  2001. "homepage": "http://www.php-fig.org/"
  2002. }
  2003. ],
  2004. "description": "Common interface for caching libraries",
  2005. "keywords": [
  2006. "cache",
  2007. "psr",
  2008. "psr-6"
  2009. ],
  2010. "install-path": "../psr/cache"
  2011. },
  2012. {
  2013. "name": "psr/container",
  2014. "version": "1.0.0",
  2015. "version_normalized": "1.0.0.0",
  2016. "source": {
  2017. "type": "git",
  2018. "url": "https://github.com/php-fig/container.git",
  2019. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  2020. },
  2021. "dist": {
  2022. "type": "zip",
  2023. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  2024. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  2025. "shasum": "",
  2026. "mirrors": [
  2027. {
  2028. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2029. "preferred": true
  2030. }
  2031. ]
  2032. },
  2033. "require": {
  2034. "php": ">=5.3.0"
  2035. },
  2036. "time": "2017-02-14T16:28:37+00:00",
  2037. "type": "library",
  2038. "extra": {
  2039. "branch-alias": {
  2040. "dev-master": "1.0.x-dev"
  2041. }
  2042. },
  2043. "installation-source": "dist",
  2044. "autoload": {
  2045. "psr-4": {
  2046. "Psr\\Container\\": "src/"
  2047. }
  2048. },
  2049. "notification-url": "https://packagist.org/downloads/",
  2050. "license": [
  2051. "MIT"
  2052. ],
  2053. "authors": [
  2054. {
  2055. "name": "PHP-FIG",
  2056. "homepage": "http://www.php-fig.org/"
  2057. }
  2058. ],
  2059. "description": "Common Container Interface (PHP FIG PSR-11)",
  2060. "homepage": "https://github.com/php-fig/container",
  2061. "keywords": [
  2062. "PSR-11",
  2063. "container",
  2064. "container-interface",
  2065. "container-interop",
  2066. "psr"
  2067. ],
  2068. "install-path": "../psr/container"
  2069. },
  2070. {
  2071. "name": "psr/http-message",
  2072. "version": "1.0.1",
  2073. "version_normalized": "1.0.1.0",
  2074. "source": {
  2075. "type": "git",
  2076. "url": "https://github.com/php-fig/http-message.git",
  2077. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  2078. },
  2079. "dist": {
  2080. "type": "zip",
  2081. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  2082. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  2083. "shasum": "",
  2084. "mirrors": [
  2085. {
  2086. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2087. "preferred": true
  2088. }
  2089. ]
  2090. },
  2091. "require": {
  2092. "php": ">=5.3.0"
  2093. },
  2094. "time": "2016-08-06T14:39:51+00:00",
  2095. "type": "library",
  2096. "extra": {
  2097. "branch-alias": {
  2098. "dev-master": "1.0.x-dev"
  2099. }
  2100. },
  2101. "installation-source": "dist",
  2102. "autoload": {
  2103. "psr-4": {
  2104. "Psr\\Http\\Message\\": "src/"
  2105. }
  2106. },
  2107. "notification-url": "https://packagist.org/downloads/",
  2108. "license": [
  2109. "MIT"
  2110. ],
  2111. "authors": [
  2112. {
  2113. "name": "PHP-FIG",
  2114. "homepage": "http://www.php-fig.org/"
  2115. }
  2116. ],
  2117. "description": "Common interface for HTTP messages",
  2118. "homepage": "https://github.com/php-fig/http-message",
  2119. "keywords": [
  2120. "http",
  2121. "http-message",
  2122. "psr",
  2123. "psr-7",
  2124. "request",
  2125. "response"
  2126. ],
  2127. "install-path": "../psr/http-message"
  2128. },
  2129. {
  2130. "name": "psr/log",
  2131. "version": "1.1.2",
  2132. "version_normalized": "1.1.2.0",
  2133. "source": {
  2134. "type": "git",
  2135. "url": "https://github.com/php-fig/log.git",
  2136. "reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801"
  2137. },
  2138. "dist": {
  2139. "type": "zip",
  2140. "url": "https://api.github.com/repos/php-fig/log/zipball/446d54b4cb6bf489fc9d75f55843658e6f25d801",
  2141. "reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801",
  2142. "shasum": "",
  2143. "mirrors": [
  2144. {
  2145. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2146. "preferred": true
  2147. }
  2148. ]
  2149. },
  2150. "require": {
  2151. "php": ">=5.3.0"
  2152. },
  2153. "time": "2019-11-01T11:05:21+00:00",
  2154. "type": "library",
  2155. "extra": {
  2156. "branch-alias": {
  2157. "dev-master": "1.1.x-dev"
  2158. }
  2159. },
  2160. "installation-source": "dist",
  2161. "autoload": {
  2162. "psr-4": {
  2163. "Psr\\Log\\": "Psr/Log/"
  2164. }
  2165. },
  2166. "notification-url": "https://packagist.org/downloads/",
  2167. "license": [
  2168. "MIT"
  2169. ],
  2170. "authors": [
  2171. {
  2172. "name": "PHP-FIG",
  2173. "homepage": "http://www.php-fig.org/"
  2174. }
  2175. ],
  2176. "description": "Common interface for logging libraries",
  2177. "homepage": "https://github.com/php-fig/log",
  2178. "keywords": [
  2179. "log",
  2180. "psr",
  2181. "psr-3"
  2182. ],
  2183. "install-path": "../psr/log"
  2184. },
  2185. {
  2186. "name": "psr/simple-cache",
  2187. "version": "1.0.1",
  2188. "version_normalized": "1.0.1.0",
  2189. "source": {
  2190. "type": "git",
  2191. "url": "https://github.com/php-fig/simple-cache.git",
  2192. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  2193. },
  2194. "dist": {
  2195. "type": "zip",
  2196. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2197. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2198. "shasum": "",
  2199. "mirrors": [
  2200. {
  2201. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2202. "preferred": true
  2203. }
  2204. ]
  2205. },
  2206. "require": {
  2207. "php": ">=5.3.0"
  2208. },
  2209. "time": "2017-10-23T01:57:42+00:00",
  2210. "type": "library",
  2211. "extra": {
  2212. "branch-alias": {
  2213. "dev-master": "1.0.x-dev"
  2214. }
  2215. },
  2216. "installation-source": "dist",
  2217. "autoload": {
  2218. "psr-4": {
  2219. "Psr\\SimpleCache\\": "src/"
  2220. }
  2221. },
  2222. "notification-url": "https://packagist.org/downloads/",
  2223. "license": [
  2224. "MIT"
  2225. ],
  2226. "authors": [
  2227. {
  2228. "name": "PHP-FIG",
  2229. "homepage": "http://www.php-fig.org/"
  2230. }
  2231. ],
  2232. "description": "Common interfaces for simple caching",
  2233. "keywords": [
  2234. "cache",
  2235. "caching",
  2236. "psr",
  2237. "psr-16",
  2238. "simple-cache"
  2239. ],
  2240. "install-path": "../psr/simple-cache"
  2241. },
  2242. {
  2243. "name": "qcloud/cos-sdk-v5",
  2244. "version": "v1.3.3",
  2245. "version_normalized": "1.3.3.0",
  2246. "source": {
  2247. "type": "git",
  2248. "url": "https://github.com/tencentyun/cos-php-sdk-v5.git",
  2249. "reference": "cd1b9cefa04521eaf125a82eb53552d9a87aae4d"
  2250. },
  2251. "dist": {
  2252. "type": "zip",
  2253. "url": "https://api.github.com/repos/tencentyun/cos-php-sdk-v5/zipball/cd1b9cefa04521eaf125a82eb53552d9a87aae4d",
  2254. "reference": "cd1b9cefa04521eaf125a82eb53552d9a87aae4d",
  2255. "shasum": "",
  2256. "mirrors": [
  2257. {
  2258. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2259. "preferred": true
  2260. }
  2261. ]
  2262. },
  2263. "require": {
  2264. "guzzle/guzzle": "~3.7",
  2265. "php": ">=5.3.0"
  2266. },
  2267. "time": "2019-08-07T10:15:47+00:00",
  2268. "type": "library",
  2269. "installation-source": "dist",
  2270. "autoload": {
  2271. "psr-0": {
  2272. "Qcloud\\Cos\\": "src/"
  2273. }
  2274. },
  2275. "notification-url": "https://packagist.org/downloads/",
  2276. "license": [
  2277. "MIT"
  2278. ],
  2279. "authors": [
  2280. {
  2281. "name": "yaozongyou",
  2282. "email": "yaozongyou@vip.qq.com"
  2283. },
  2284. {
  2285. "name": "lewzylu",
  2286. "email": "327874225@qq.com"
  2287. }
  2288. ],
  2289. "description": "PHP SDK for QCloud COS",
  2290. "keywords": [
  2291. "cos",
  2292. "php",
  2293. "qcloud"
  2294. ],
  2295. "install-path": "../qcloud/cos-sdk-v5"
  2296. },
  2297. {
  2298. "name": "qiniu/php-sdk",
  2299. "version": "v7.2.9",
  2300. "version_normalized": "7.2.9.0",
  2301. "source": {
  2302. "type": "git",
  2303. "url": "https://github.com/qiniu/php-sdk.git",
  2304. "reference": "afe7d8715d8a688b1d8d8cdf031240d2363dad90"
  2305. },
  2306. "dist": {
  2307. "type": "zip",
  2308. "url": "https://api.github.com/repos/qiniu/php-sdk/zipball/afe7d8715d8a688b1d8d8cdf031240d2363dad90",
  2309. "reference": "afe7d8715d8a688b1d8d8cdf031240d2363dad90",
  2310. "shasum": "",
  2311. "mirrors": [
  2312. {
  2313. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2314. "preferred": true
  2315. }
  2316. ]
  2317. },
  2318. "require": {
  2319. "php": ">=5.3.3"
  2320. },
  2321. "require-dev": {
  2322. "phpunit/phpunit": "~4.0",
  2323. "squizlabs/php_codesniffer": "~2.3"
  2324. },
  2325. "time": "2019-07-09T07:55:07+00:00",
  2326. "type": "library",
  2327. "installation-source": "dist",
  2328. "autoload": {
  2329. "psr-4": {
  2330. "Qiniu\\": "src/Qiniu"
  2331. },
  2332. "files": [
  2333. "src/Qiniu/functions.php"
  2334. ]
  2335. },
  2336. "notification-url": "https://packagist.org/downloads/",
  2337. "license": [
  2338. "MIT"
  2339. ],
  2340. "authors": [
  2341. {
  2342. "name": "Qiniu",
  2343. "email": "sdk@qiniu.com",
  2344. "homepage": "http://www.qiniu.com"
  2345. }
  2346. ],
  2347. "description": "Qiniu Resource (Cloud) Storage SDK for PHP",
  2348. "homepage": "http://developer.qiniu.com/",
  2349. "keywords": [
  2350. "cloud",
  2351. "qiniu",
  2352. "sdk",
  2353. "storage"
  2354. ],
  2355. "install-path": "../qiniu/php-sdk"
  2356. },
  2357. {
  2358. "name": "ralouphie/getallheaders",
  2359. "version": "2.0.5",
  2360. "version_normalized": "2.0.5.0",
  2361. "source": {
  2362. "type": "git",
  2363. "url": "https://github.com/ralouphie/getallheaders.git",
  2364. "reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa"
  2365. },
  2366. "dist": {
  2367. "type": "zip",
  2368. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/5601c8a83fbba7ef674a7369456d12f1e0d0eafa",
  2369. "reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa",
  2370. "shasum": "",
  2371. "mirrors": [
  2372. {
  2373. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2374. "preferred": true
  2375. }
  2376. ]
  2377. },
  2378. "require": {
  2379. "php": ">=5.3"
  2380. },
  2381. "require-dev": {
  2382. "phpunit/phpunit": "~3.7.0",
  2383. "satooshi/php-coveralls": ">=1.0"
  2384. },
  2385. "time": "2016-02-11T07:05:27+00:00",
  2386. "type": "library",
  2387. "installation-source": "dist",
  2388. "autoload": {
  2389. "files": [
  2390. "src/getallheaders.php"
  2391. ]
  2392. },
  2393. "notification-url": "https://packagist.org/downloads/",
  2394. "license": [
  2395. "MIT"
  2396. ],
  2397. "authors": [
  2398. {
  2399. "name": "Ralph Khattar",
  2400. "email": "ralph.khattar@gmail.com"
  2401. }
  2402. ],
  2403. "description": "A polyfill for getallheaders.",
  2404. "install-path": "../ralouphie/getallheaders"
  2405. },
  2406. {
  2407. "name": "spatie/macroable",
  2408. "version": "1.0.0",
  2409. "version_normalized": "1.0.0.0",
  2410. "source": {
  2411. "type": "git",
  2412. "url": "https://github.com/spatie/macroable.git",
  2413. "reference": "74b0d189ce75142f1706aad834d5a428dfc7c3c3"
  2414. },
  2415. "dist": {
  2416. "type": "zip",
  2417. "url": "https://api.github.com/repos/spatie/macroable/zipball/74b0d189ce75142f1706aad834d5a428dfc7c3c3",
  2418. "reference": "74b0d189ce75142f1706aad834d5a428dfc7c3c3",
  2419. "shasum": "",
  2420. "mirrors": [
  2421. {
  2422. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2423. "preferred": true
  2424. }
  2425. ]
  2426. },
  2427. "require": {
  2428. "php": "^7.0"
  2429. },
  2430. "require-dev": {
  2431. "phpunit/phpunit": "^6.3"
  2432. },
  2433. "time": "2017-09-18T09:51:20+00:00",
  2434. "type": "library",
  2435. "installation-source": "dist",
  2436. "autoload": {
  2437. "psr-4": {
  2438. "Spatie\\Macroable\\": "src"
  2439. }
  2440. },
  2441. "notification-url": "https://packagist.org/downloads/",
  2442. "license": [
  2443. "MIT"
  2444. ],
  2445. "authors": [
  2446. {
  2447. "name": "Freek Van der Herten",
  2448. "email": "freek@spatie.be",
  2449. "homepage": "https://spatie.be",
  2450. "role": "Developer"
  2451. }
  2452. ],
  2453. "description": "A trait to dynamically add methods to a class",
  2454. "homepage": "https://github.com/spatie/macroable",
  2455. "keywords": [
  2456. "macroable",
  2457. "spatie"
  2458. ],
  2459. "install-path": "../spatie/macroable"
  2460. },
  2461. {
  2462. "name": "symfony/event-dispatcher",
  2463. "version": "v2.8.50",
  2464. "version_normalized": "2.8.50.0",
  2465. "source": {
  2466. "type": "git",
  2467. "url": "https://github.com/symfony/event-dispatcher.git",
  2468. "reference": "a77e974a5fecb4398833b0709210e3d5e334ffb0"
  2469. },
  2470. "dist": {
  2471. "type": "zip",
  2472. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/a77e974a5fecb4398833b0709210e3d5e334ffb0",
  2473. "reference": "a77e974a5fecb4398833b0709210e3d5e334ffb0",
  2474. "shasum": "",
  2475. "mirrors": [
  2476. {
  2477. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2478. "preferred": true
  2479. }
  2480. ]
  2481. },
  2482. "require": {
  2483. "php": ">=5.3.9"
  2484. },
  2485. "require-dev": {
  2486. "psr/log": "~1.0",
  2487. "symfony/config": "^2.0.5|~3.0.0",
  2488. "symfony/dependency-injection": "~2.6|~3.0.0",
  2489. "symfony/expression-language": "~2.6|~3.0.0",
  2490. "symfony/stopwatch": "~2.3|~3.0.0"
  2491. },
  2492. "suggest": {
  2493. "symfony/dependency-injection": "",
  2494. "symfony/http-kernel": ""
  2495. },
  2496. "time": "2018-11-21T14:20:20+00:00",
  2497. "type": "library",
  2498. "extra": {
  2499. "branch-alias": {
  2500. "dev-master": "2.8-dev"
  2501. }
  2502. },
  2503. "installation-source": "dist",
  2504. "autoload": {
  2505. "psr-4": {
  2506. "Symfony\\Component\\EventDispatcher\\": ""
  2507. },
  2508. "exclude-from-classmap": [
  2509. "/Tests/"
  2510. ]
  2511. },
  2512. "notification-url": "https://packagist.org/downloads/",
  2513. "license": [
  2514. "MIT"
  2515. ],
  2516. "authors": [
  2517. {
  2518. "name": "Fabien Potencier",
  2519. "email": "fabien@symfony.com"
  2520. },
  2521. {
  2522. "name": "Symfony Community",
  2523. "homepage": "https://symfony.com/contributors"
  2524. }
  2525. ],
  2526. "description": "Symfony EventDispatcher Component",
  2527. "homepage": "https://symfony.com",
  2528. "install-path": "../symfony/event-dispatcher"
  2529. },
  2530. {
  2531. "name": "symfony/http-foundation",
  2532. "version": "v3.4.28",
  2533. "version_normalized": "3.4.28.0",
  2534. "source": {
  2535. "type": "git",
  2536. "url": "https://github.com/symfony/http-foundation.git",
  2537. "reference": "677ae5e892b081e71a665bfa7dd90fe61800c00e"
  2538. },
  2539. "dist": {
  2540. "type": "zip",
  2541. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/677ae5e892b081e71a665bfa7dd90fe61800c00e",
  2542. "reference": "677ae5e892b081e71a665bfa7dd90fe61800c00e",
  2543. "shasum": "",
  2544. "mirrors": [
  2545. {
  2546. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2547. "preferred": true
  2548. }
  2549. ]
  2550. },
  2551. "require": {
  2552. "php": "^5.5.9|>=7.0.8",
  2553. "symfony/polyfill-mbstring": "~1.1",
  2554. "symfony/polyfill-php70": "~1.6"
  2555. },
  2556. "require-dev": {
  2557. "symfony/expression-language": "~2.8|~3.0|~4.0"
  2558. },
  2559. "time": "2019-05-27T05:50:24+00:00",
  2560. "type": "library",
  2561. "extra": {
  2562. "branch-alias": {
  2563. "dev-master": "3.4-dev"
  2564. }
  2565. },
  2566. "installation-source": "dist",
  2567. "autoload": {
  2568. "psr-4": {
  2569. "Symfony\\Component\\HttpFoundation\\": ""
  2570. },
  2571. "exclude-from-classmap": [
  2572. "/Tests/"
  2573. ]
  2574. },
  2575. "notification-url": "https://packagist.org/downloads/",
  2576. "license": [
  2577. "MIT"
  2578. ],
  2579. "authors": [
  2580. {
  2581. "name": "Fabien Potencier",
  2582. "email": "fabien@symfony.com"
  2583. },
  2584. {
  2585. "name": "Symfony Community",
  2586. "homepage": "https://symfony.com/contributors"
  2587. }
  2588. ],
  2589. "description": "Symfony HttpFoundation Component",
  2590. "homepage": "https://symfony.com",
  2591. "install-path": "../symfony/http-foundation"
  2592. },
  2593. {
  2594. "name": "symfony/polyfill-mbstring",
  2595. "version": "v1.11.0",
  2596. "version_normalized": "1.11.0.0",
  2597. "source": {
  2598. "type": "git",
  2599. "url": "https://github.com/symfony/polyfill-mbstring.git",
  2600. "reference": "fe5e94c604826c35a32fa832f35bd036b6799609"
  2601. },
  2602. "dist": {
  2603. "type": "zip",
  2604. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fe5e94c604826c35a32fa832f35bd036b6799609",
  2605. "reference": "fe5e94c604826c35a32fa832f35bd036b6799609",
  2606. "shasum": "",
  2607. "mirrors": [
  2608. {
  2609. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2610. "preferred": true
  2611. }
  2612. ]
  2613. },
  2614. "require": {
  2615. "php": ">=5.3.3"
  2616. },
  2617. "suggest": {
  2618. "ext-mbstring": "For best performance"
  2619. },
  2620. "time": "2019-02-06T07:57:58+00:00",
  2621. "type": "library",
  2622. "extra": {
  2623. "branch-alias": {
  2624. "dev-master": "1.11-dev"
  2625. }
  2626. },
  2627. "installation-source": "dist",
  2628. "autoload": {
  2629. "psr-4": {
  2630. "Symfony\\Polyfill\\Mbstring\\": ""
  2631. },
  2632. "files": [
  2633. "bootstrap.php"
  2634. ]
  2635. },
  2636. "notification-url": "https://packagist.org/downloads/",
  2637. "license": [
  2638. "MIT"
  2639. ],
  2640. "authors": [
  2641. {
  2642. "name": "Nicolas Grekas",
  2643. "email": "p@tchwork.com"
  2644. },
  2645. {
  2646. "name": "Symfony Community",
  2647. "homepage": "https://symfony.com/contributors"
  2648. }
  2649. ],
  2650. "description": "Symfony polyfill for the Mbstring extension",
  2651. "homepage": "https://symfony.com",
  2652. "keywords": [
  2653. "compatibility",
  2654. "mbstring",
  2655. "polyfill",
  2656. "portable",
  2657. "shim"
  2658. ],
  2659. "install-path": "../symfony/polyfill-mbstring"
  2660. },
  2661. {
  2662. "name": "symfony/polyfill-php70",
  2663. "version": "v1.11.0",
  2664. "version_normalized": "1.11.0.0",
  2665. "source": {
  2666. "type": "git",
  2667. "url": "https://github.com/symfony/polyfill-php70.git",
  2668. "reference": "bc4858fb611bda58719124ca079baff854149c89"
  2669. },
  2670. "dist": {
  2671. "type": "zip",
  2672. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/bc4858fb611bda58719124ca079baff854149c89",
  2673. "reference": "bc4858fb611bda58719124ca079baff854149c89",
  2674. "shasum": "",
  2675. "mirrors": [
  2676. {
  2677. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2678. "preferred": true
  2679. }
  2680. ]
  2681. },
  2682. "require": {
  2683. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  2684. "php": ">=5.3.3"
  2685. },
  2686. "time": "2019-02-06T07:57:58+00:00",
  2687. "type": "library",
  2688. "extra": {
  2689. "branch-alias": {
  2690. "dev-master": "1.11-dev"
  2691. }
  2692. },
  2693. "installation-source": "dist",
  2694. "autoload": {
  2695. "psr-4": {
  2696. "Symfony\\Polyfill\\Php70\\": ""
  2697. },
  2698. "files": [
  2699. "bootstrap.php"
  2700. ],
  2701. "classmap": [
  2702. "Resources/stubs"
  2703. ]
  2704. },
  2705. "notification-url": "https://packagist.org/downloads/",
  2706. "license": [
  2707. "MIT"
  2708. ],
  2709. "authors": [
  2710. {
  2711. "name": "Nicolas Grekas",
  2712. "email": "p@tchwork.com"
  2713. },
  2714. {
  2715. "name": "Symfony Community",
  2716. "homepage": "https://symfony.com/contributors"
  2717. }
  2718. ],
  2719. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  2720. "homepage": "https://symfony.com",
  2721. "keywords": [
  2722. "compatibility",
  2723. "polyfill",
  2724. "portable",
  2725. "shim"
  2726. ],
  2727. "install-path": "../symfony/polyfill-php70"
  2728. },
  2729. {
  2730. "name": "symfony/polyfill-php72",
  2731. "version": "v1.11.0",
  2732. "version_normalized": "1.11.0.0",
  2733. "source": {
  2734. "type": "git",
  2735. "url": "https://github.com/symfony/polyfill-php72.git",
  2736. "reference": "ab50dcf166d5f577978419edd37aa2bb8eabce0c"
  2737. },
  2738. "dist": {
  2739. "type": "zip",
  2740. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/ab50dcf166d5f577978419edd37aa2bb8eabce0c",
  2741. "reference": "ab50dcf166d5f577978419edd37aa2bb8eabce0c",
  2742. "shasum": "",
  2743. "mirrors": [
  2744. {
  2745. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2746. "preferred": true
  2747. }
  2748. ]
  2749. },
  2750. "require": {
  2751. "php": ">=5.3.3"
  2752. },
  2753. "time": "2019-02-06T07:57:58+00:00",
  2754. "type": "library",
  2755. "extra": {
  2756. "branch-alias": {
  2757. "dev-master": "1.11-dev"
  2758. }
  2759. },
  2760. "installation-source": "dist",
  2761. "autoload": {
  2762. "psr-4": {
  2763. "Symfony\\Polyfill\\Php72\\": ""
  2764. },
  2765. "files": [
  2766. "bootstrap.php"
  2767. ]
  2768. },
  2769. "notification-url": "https://packagist.org/downloads/",
  2770. "license": [
  2771. "MIT"
  2772. ],
  2773. "authors": [
  2774. {
  2775. "name": "Nicolas Grekas",
  2776. "email": "p@tchwork.com"
  2777. },
  2778. {
  2779. "name": "Symfony Community",
  2780. "homepage": "https://symfony.com/contributors"
  2781. }
  2782. ],
  2783. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  2784. "homepage": "https://symfony.com",
  2785. "keywords": [
  2786. "compatibility",
  2787. "polyfill",
  2788. "portable",
  2789. "shim"
  2790. ],
  2791. "install-path": "../symfony/polyfill-php72"
  2792. },
  2793. {
  2794. "name": "symfony/process",
  2795. "version": "v4.3.2",
  2796. "version_normalized": "4.3.2.0",
  2797. "source": {
  2798. "type": "git",
  2799. "url": "https://github.com/symfony/process.git",
  2800. "reference": "856d35814cf287480465bb7a6c413bb7f5f5e69c"
  2801. },
  2802. "dist": {
  2803. "type": "zip",
  2804. "url": "https://api.github.com/repos/symfony/process/zipball/856d35814cf287480465bb7a6c413bb7f5f5e69c",
  2805. "reference": "856d35814cf287480465bb7a6c413bb7f5f5e69c",
  2806. "shasum": "",
  2807. "mirrors": [
  2808. {
  2809. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2810. "preferred": true
  2811. }
  2812. ]
  2813. },
  2814. "require": {
  2815. "php": "^7.1.3"
  2816. },
  2817. "time": "2019-05-30T16:10:05+00:00",
  2818. "type": "library",
  2819. "extra": {
  2820. "branch-alias": {
  2821. "dev-master": "4.3-dev"
  2822. }
  2823. },
  2824. "installation-source": "dist",
  2825. "autoload": {
  2826. "psr-4": {
  2827. "Symfony\\Component\\Process\\": ""
  2828. },
  2829. "exclude-from-classmap": [
  2830. "/Tests/"
  2831. ]
  2832. },
  2833. "notification-url": "https://packagist.org/downloads/",
  2834. "license": [
  2835. "MIT"
  2836. ],
  2837. "authors": [
  2838. {
  2839. "name": "Fabien Potencier",
  2840. "email": "fabien@symfony.com"
  2841. },
  2842. {
  2843. "name": "Symfony Community",
  2844. "homepage": "https://symfony.com/contributors"
  2845. }
  2846. ],
  2847. "description": "Symfony Process Component",
  2848. "homepage": "https://symfony.com",
  2849. "install-path": "../symfony/process"
  2850. },
  2851. {
  2852. "name": "symfony/psr-http-message-bridge",
  2853. "version": "v1.2.0",
  2854. "version_normalized": "1.2.0.0",
  2855. "source": {
  2856. "type": "git",
  2857. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  2858. "reference": "9ab9d71f97d5c7d35a121a7fb69f74fee95cd0ad"
  2859. },
  2860. "dist": {
  2861. "type": "zip",
  2862. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/9ab9d71f97d5c7d35a121a7fb69f74fee95cd0ad",
  2863. "reference": "9ab9d71f97d5c7d35a121a7fb69f74fee95cd0ad",
  2864. "shasum": "",
  2865. "mirrors": [
  2866. {
  2867. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2868. "preferred": true
  2869. }
  2870. ]
  2871. },
  2872. "require": {
  2873. "php": "^7.1",
  2874. "psr/http-message": "^1.0",
  2875. "symfony/http-foundation": "^3.4 || ^4.0"
  2876. },
  2877. "require-dev": {
  2878. "nyholm/psr7": "^1.1",
  2879. "symfony/phpunit-bridge": "^3.4.20 || ^4.0",
  2880. "zendframework/zend-diactoros": "^1.4.1 || ^2.0"
  2881. },
  2882. "suggest": {
  2883. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  2884. },
  2885. "time": "2019-03-11T18:22:33+00:00",
  2886. "type": "symfony-bridge",
  2887. "extra": {
  2888. "branch-alias": {
  2889. "dev-master": "1.2-dev"
  2890. }
  2891. },
  2892. "installation-source": "dist",
  2893. "autoload": {
  2894. "psr-4": {
  2895. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  2896. },
  2897. "exclude-from-classmap": [
  2898. "/Tests/"
  2899. ]
  2900. },
  2901. "notification-url": "https://packagist.org/downloads/",
  2902. "license": [
  2903. "MIT"
  2904. ],
  2905. "authors": [
  2906. {
  2907. "name": "Symfony Community",
  2908. "homepage": "http://symfony.com/contributors"
  2909. },
  2910. {
  2911. "name": "Fabien Potencier",
  2912. "email": "fabien@symfony.com"
  2913. }
  2914. ],
  2915. "description": "PSR HTTP message bridge",
  2916. "homepage": "http://symfony.com",
  2917. "keywords": [
  2918. "http",
  2919. "http-message",
  2920. "psr-17",
  2921. "psr-7"
  2922. ],
  2923. "install-path": "../symfony/psr-http-message-bridge"
  2924. },
  2925. {
  2926. "name": "symfony/translation",
  2927. "version": "v4.3.2",
  2928. "version_normalized": "4.3.2.0",
  2929. "source": {
  2930. "type": "git",
  2931. "url": "https://github.com/symfony/translation.git",
  2932. "reference": "934ab1d18545149e012aa898cf02e9f23790f7a0"
  2933. },
  2934. "dist": {
  2935. "type": "zip",
  2936. "url": "https://api.github.com/repos/symfony/translation/zipball/934ab1d18545149e012aa898cf02e9f23790f7a0",
  2937. "reference": "934ab1d18545149e012aa898cf02e9f23790f7a0",
  2938. "shasum": "",
  2939. "mirrors": [
  2940. {
  2941. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2942. "preferred": true
  2943. }
  2944. ]
  2945. },
  2946. "require": {
  2947. "php": "^7.1.3",
  2948. "symfony/polyfill-mbstring": "~1.0",
  2949. "symfony/translation-contracts": "^1.1.2"
  2950. },
  2951. "conflict": {
  2952. "symfony/config": "<3.4",
  2953. "symfony/dependency-injection": "<3.4",
  2954. "symfony/yaml": "<3.4"
  2955. },
  2956. "provide": {
  2957. "symfony/translation-implementation": "1.0"
  2958. },
  2959. "require-dev": {
  2960. "psr/log": "~1.0",
  2961. "symfony/config": "~3.4|~4.0",
  2962. "symfony/console": "~3.4|~4.0",
  2963. "symfony/dependency-injection": "~3.4|~4.0",
  2964. "symfony/finder": "~2.8|~3.0|~4.0",
  2965. "symfony/http-kernel": "~3.4|~4.0",
  2966. "symfony/intl": "~3.4|~4.0",
  2967. "symfony/service-contracts": "^1.1.2",
  2968. "symfony/var-dumper": "~3.4|~4.0",
  2969. "symfony/yaml": "~3.4|~4.0"
  2970. },
  2971. "suggest": {
  2972. "psr/log-implementation": "To use logging capability in translator",
  2973. "symfony/config": "",
  2974. "symfony/yaml": ""
  2975. },
  2976. "time": "2019-06-13T11:03:18+00:00",
  2977. "type": "library",
  2978. "extra": {
  2979. "branch-alias": {
  2980. "dev-master": "4.3-dev"
  2981. }
  2982. },
  2983. "installation-source": "dist",
  2984. "autoload": {
  2985. "psr-4": {
  2986. "Symfony\\Component\\Translation\\": ""
  2987. },
  2988. "exclude-from-classmap": [
  2989. "/Tests/"
  2990. ]
  2991. },
  2992. "notification-url": "https://packagist.org/downloads/",
  2993. "license": [
  2994. "MIT"
  2995. ],
  2996. "authors": [
  2997. {
  2998. "name": "Fabien Potencier",
  2999. "email": "fabien@symfony.com"
  3000. },
  3001. {
  3002. "name": "Symfony Community",
  3003. "homepage": "https://symfony.com/contributors"
  3004. }
  3005. ],
  3006. "description": "Symfony Translation Component",
  3007. "homepage": "https://symfony.com",
  3008. "install-path": "../symfony/translation"
  3009. },
  3010. {
  3011. "name": "symfony/translation-contracts",
  3012. "version": "v1.1.5",
  3013. "version_normalized": "1.1.5.0",
  3014. "source": {
  3015. "type": "git",
  3016. "url": "https://github.com/symfony/translation-contracts.git",
  3017. "reference": "cb4b18ad7b92a26e83b65dde940fab78339e6f3c"
  3018. },
  3019. "dist": {
  3020. "type": "zip",
  3021. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/cb4b18ad7b92a26e83b65dde940fab78339e6f3c",
  3022. "reference": "cb4b18ad7b92a26e83b65dde940fab78339e6f3c",
  3023. "shasum": "",
  3024. "mirrors": [
  3025. {
  3026. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3027. "preferred": true
  3028. }
  3029. ]
  3030. },
  3031. "require": {
  3032. "php": "^7.1.3"
  3033. },
  3034. "suggest": {
  3035. "symfony/translation-implementation": ""
  3036. },
  3037. "time": "2019-06-13T11:15:36+00:00",
  3038. "type": "library",
  3039. "extra": {
  3040. "branch-alias": {
  3041. "dev-master": "1.1-dev"
  3042. }
  3043. },
  3044. "installation-source": "dist",
  3045. "autoload": {
  3046. "psr-4": {
  3047. "Symfony\\Contracts\\Translation\\": ""
  3048. }
  3049. },
  3050. "notification-url": "https://packagist.org/downloads/",
  3051. "license": [
  3052. "MIT"
  3053. ],
  3054. "authors": [
  3055. {
  3056. "name": "Nicolas Grekas",
  3057. "email": "p@tchwork.com"
  3058. },
  3059. {
  3060. "name": "Symfony Community",
  3061. "homepage": "https://symfony.com/contributors"
  3062. }
  3063. ],
  3064. "description": "Generic abstractions related to translation",
  3065. "homepage": "https://symfony.com",
  3066. "keywords": [
  3067. "abstractions",
  3068. "contracts",
  3069. "decoupling",
  3070. "interfaces",
  3071. "interoperability",
  3072. "standards"
  3073. ],
  3074. "install-path": "../symfony/translation-contracts"
  3075. },
  3076. {
  3077. "name": "symfony/var-dumper",
  3078. "version": "v4.3.1",
  3079. "version_normalized": "4.3.1.0",
  3080. "source": {
  3081. "type": "git",
  3082. "url": "https://github.com/symfony/var-dumper.git",
  3083. "reference": "f974f448154928d2b5fb7c412bd23b81d063f34b"
  3084. },
  3085. "dist": {
  3086. "type": "zip",
  3087. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/f974f448154928d2b5fb7c412bd23b81d063f34b",
  3088. "reference": "f974f448154928d2b5fb7c412bd23b81d063f34b",
  3089. "shasum": "",
  3090. "mirrors": [
  3091. {
  3092. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3093. "preferred": true
  3094. }
  3095. ]
  3096. },
  3097. "require": {
  3098. "php": "^7.1.3",
  3099. "symfony/polyfill-mbstring": "~1.0",
  3100. "symfony/polyfill-php72": "~1.5"
  3101. },
  3102. "conflict": {
  3103. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  3104. "symfony/console": "<3.4"
  3105. },
  3106. "require-dev": {
  3107. "ext-iconv": "*",
  3108. "symfony/console": "~3.4|~4.0",
  3109. "symfony/process": "~3.4|~4.0",
  3110. "twig/twig": "~1.34|~2.4"
  3111. },
  3112. "suggest": {
  3113. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  3114. "ext-intl": "To show region name in time zone dump",
  3115. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  3116. },
  3117. "time": "2019-06-05T02:08:12+00:00",
  3118. "bin": [
  3119. "Resources/bin/var-dump-server"
  3120. ],
  3121. "type": "library",
  3122. "extra": {
  3123. "branch-alias": {
  3124. "dev-master": "4.3-dev"
  3125. }
  3126. },
  3127. "installation-source": "dist",
  3128. "autoload": {
  3129. "files": [
  3130. "Resources/functions/dump.php"
  3131. ],
  3132. "psr-4": {
  3133. "Symfony\\Component\\VarDumper\\": ""
  3134. },
  3135. "exclude-from-classmap": [
  3136. "/Tests/"
  3137. ]
  3138. },
  3139. "notification-url": "https://packagist.org/downloads/",
  3140. "license": [
  3141. "MIT"
  3142. ],
  3143. "authors": [
  3144. {
  3145. "name": "Nicolas Grekas",
  3146. "email": "p@tchwork.com"
  3147. },
  3148. {
  3149. "name": "Symfony Community",
  3150. "homepage": "https://symfony.com/contributors"
  3151. }
  3152. ],
  3153. "description": "Symfony mechanism for exploring and dumping PHP variables",
  3154. "homepage": "https://symfony.com",
  3155. "keywords": [
  3156. "debug",
  3157. "dump"
  3158. ],
  3159. "install-path": "../symfony/var-dumper"
  3160. },
  3161. {
  3162. "name": "topthink/framework",
  3163. "version": "v6.0.0",
  3164. "version_normalized": "6.0.0.0",
  3165. "source": {
  3166. "type": "git",
  3167. "url": "https://github.com/top-think/framework.git",
  3168. "reference": "79c555aab0313d1a33ddcdb3c395f2c47f37f597"
  3169. },
  3170. "dist": {
  3171. "type": "zip",
  3172. "url": "https://api.github.com/repos/top-think/framework/zipball/79c555aab0313d1a33ddcdb3c395f2c47f37f597",
  3173. "reference": "79c555aab0313d1a33ddcdb3c395f2c47f37f597",
  3174. "shasum": "",
  3175. "mirrors": [
  3176. {
  3177. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3178. "preferred": true
  3179. }
  3180. ]
  3181. },
  3182. "require": {
  3183. "ext-json": "*",
  3184. "ext-mbstring": "*",
  3185. "league/flysystem": "^1.0",
  3186. "league/flysystem-cached-adapter": "^1.0",
  3187. "opis/closure": "^3.1",
  3188. "php": ">=7.1.0",
  3189. "psr/container": "~1.0",
  3190. "psr/log": "~1.0",
  3191. "psr/simple-cache": "^1.0",
  3192. "topthink/think-helper": "^3.1.1",
  3193. "topthink/think-orm": "^2.0"
  3194. },
  3195. "require-dev": {
  3196. "mikey179/vfsstream": "^1.6",
  3197. "mockery/mockery": "^1.2",
  3198. "phpunit/phpunit": "^7.0"
  3199. },
  3200. "time": "2019-10-23T23:28:43+00:00",
  3201. "type": "library",
  3202. "installation-source": "dist",
  3203. "autoload": {
  3204. "files": [],
  3205. "psr-4": {
  3206. "think\\": "src/think/"
  3207. }
  3208. },
  3209. "notification-url": "https://packagist.org/downloads/",
  3210. "license": [
  3211. "Apache-2.0"
  3212. ],
  3213. "authors": [
  3214. {
  3215. "name": "liu21st",
  3216. "email": "liu21st@gmail.com"
  3217. },
  3218. {
  3219. "name": "yunwuxin",
  3220. "email": "448901948@qq.com"
  3221. }
  3222. ],
  3223. "description": "The ThinkPHP Framework.",
  3224. "homepage": "http://thinkphp.cn/",
  3225. "keywords": [
  3226. "framework",
  3227. "orm",
  3228. "thinkphp"
  3229. ],
  3230. "install-path": "../topthink/framework"
  3231. },
  3232. {
  3233. "name": "topthink/think-captcha",
  3234. "version": "v3.0.1",
  3235. "version_normalized": "3.0.1.0",
  3236. "source": {
  3237. "type": "git",
  3238. "url": "https://github.com/top-think/think-captcha.git",
  3239. "reference": "9fc0c627d773f6a54a8dd142ebf358f746557a48"
  3240. },
  3241. "dist": {
  3242. "type": "zip",
  3243. "url": "https://api.github.com/repos/top-think/think-captcha/zipball/9fc0c627d773f6a54a8dd142ebf358f746557a48",
  3244. "reference": "9fc0c627d773f6a54a8dd142ebf358f746557a48",
  3245. "shasum": "",
  3246. "mirrors": [
  3247. {
  3248. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3249. "preferred": true
  3250. }
  3251. ]
  3252. },
  3253. "require": {
  3254. "topthink/framework": "^6.0.0"
  3255. },
  3256. "time": "2019-06-06T07:16:01+00:00",
  3257. "type": "library",
  3258. "extra": {
  3259. "think": {
  3260. "services": [
  3261. "think\\captcha\\CaptchaService"
  3262. ]
  3263. }
  3264. },
  3265. "installation-source": "dist",
  3266. "autoload": {
  3267. "psr-4": {
  3268. "think\\captcha\\": "src/"
  3269. },
  3270. "files": [
  3271. "src/helper.php"
  3272. ]
  3273. },
  3274. "notification-url": "https://packagist.org/downloads/",
  3275. "license": [
  3276. "Apache-2.0"
  3277. ],
  3278. "authors": [
  3279. {
  3280. "name": "yunwuxin",
  3281. "email": "448901948@qq.com"
  3282. }
  3283. ],
  3284. "description": "captcha package for thinkphp",
  3285. "install-path": "../topthink/think-captcha"
  3286. },
  3287. {
  3288. "name": "topthink/think-factory",
  3289. "version": "v1.0.1",
  3290. "version_normalized": "1.0.1.0",
  3291. "source": {
  3292. "type": "git",
  3293. "url": "https://github.com/top-think/think-factory.git",
  3294. "reference": "b8080a6472aae1cff47ceb8c30feec3c2835364b"
  3295. },
  3296. "dist": {
  3297. "type": "zip",
  3298. "url": "https://api.github.com/repos/top-think/think-factory/zipball/b8080a6472aae1cff47ceb8c30feec3c2835364b",
  3299. "reference": "b8080a6472aae1cff47ceb8c30feec3c2835364b",
  3300. "shasum": "",
  3301. "mirrors": [
  3302. {
  3303. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3304. "preferred": true
  3305. }
  3306. ]
  3307. },
  3308. "require": {
  3309. "topthink/framework": "^6.0.0",
  3310. "topthink/think-helper": "^3.0.0"
  3311. },
  3312. "time": "2019-04-15T06:55:28+00:00",
  3313. "type": "library",
  3314. "installation-source": "dist",
  3315. "autoload": {
  3316. "psr-4": {
  3317. "think\\": "src"
  3318. }
  3319. },
  3320. "notification-url": "https://packagist.org/downloads/",
  3321. "license": [
  3322. "Apache-2.0"
  3323. ],
  3324. "authors": [
  3325. {
  3326. "name": "yunwuxin",
  3327. "email": "448901948@qq.com"
  3328. }
  3329. ],
  3330. "abandoned": true,
  3331. "install-path": "../topthink/think-factory"
  3332. },
  3333. {
  3334. "name": "topthink/think-helper",
  3335. "version": "v3.1.3",
  3336. "version_normalized": "3.1.3.0",
  3337. "source": {
  3338. "type": "git",
  3339. "url": "https://github.com/top-think/think-helper.git",
  3340. "reference": "4d85dfd3778623bbb1de3648f1dcd0c82f4439f4"
  3341. },
  3342. "dist": {
  3343. "type": "zip",
  3344. "url": "https://api.github.com/repos/top-think/think-helper/zipball/4d85dfd3778623bbb1de3648f1dcd0c82f4439f4",
  3345. "reference": "4d85dfd3778623bbb1de3648f1dcd0c82f4439f4",
  3346. "shasum": "",
  3347. "mirrors": [
  3348. {
  3349. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3350. "preferred": true
  3351. }
  3352. ]
  3353. },
  3354. "require": {
  3355. "php": ">=7.1.0"
  3356. },
  3357. "time": "2019-09-30T02:36:48+00:00",
  3358. "type": "library",
  3359. "installation-source": "dist",
  3360. "autoload": {
  3361. "psr-4": {
  3362. "think\\": "src"
  3363. },
  3364. "files": [
  3365. "src/helper.php"
  3366. ]
  3367. },
  3368. "notification-url": "https://packagist.org/downloads/",
  3369. "license": [
  3370. "Apache-2.0"
  3371. ],
  3372. "authors": [
  3373. {
  3374. "name": "yunwuxin",
  3375. "email": "448901948@qq.com"
  3376. }
  3377. ],
  3378. "description": "The ThinkPHP6 Helper Package",
  3379. "install-path": "../topthink/think-helper"
  3380. },
  3381. {
  3382. "name": "topthink/think-image",
  3383. "version": "v1.0.7",
  3384. "version_normalized": "1.0.7.0",
  3385. "source": {
  3386. "type": "git",
  3387. "url": "https://github.com/top-think/think-image.git",
  3388. "reference": "8586cf47f117481c6d415b20f7dedf62e79d5512"
  3389. },
  3390. "dist": {
  3391. "type": "zip",
  3392. "url": "https://api.github.com/repos/top-think/think-image/zipball/8586cf47f117481c6d415b20f7dedf62e79d5512",
  3393. "reference": "8586cf47f117481c6d415b20f7dedf62e79d5512",
  3394. "shasum": "",
  3395. "mirrors": [
  3396. {
  3397. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3398. "preferred": true
  3399. }
  3400. ]
  3401. },
  3402. "require": {
  3403. "ext-gd": "*"
  3404. },
  3405. "require-dev": {
  3406. "phpunit/phpunit": "4.8.*",
  3407. "topthink/framework": "^5.0"
  3408. },
  3409. "time": "2016-09-29T06:05:43+00:00",
  3410. "type": "library",
  3411. "installation-source": "dist",
  3412. "autoload": {
  3413. "psr-4": {
  3414. "think\\": "src"
  3415. }
  3416. },
  3417. "notification-url": "https://packagist.org/downloads/",
  3418. "license": [
  3419. "Apache-2.0"
  3420. ],
  3421. "authors": [
  3422. {
  3423. "name": "yunwuxin",
  3424. "email": "448901948@qq.com"
  3425. }
  3426. ],
  3427. "description": "The ThinkPHP5 Image Package",
  3428. "install-path": "../topthink/think-image"
  3429. },
  3430. {
  3431. "name": "topthink/think-multi-app",
  3432. "version": "v1.0.11",
  3433. "version_normalized": "1.0.11.0",
  3434. "source": {
  3435. "type": "git",
  3436. "url": "https://github.com/top-think/think-multi-app.git",
  3437. "reference": "215f4a6bb88e53ad41b448c61957336eb55ce6f9"
  3438. },
  3439. "dist": {
  3440. "type": "zip",
  3441. "url": "https://api.github.com/repos/top-think/think-multi-app/zipball/215f4a6bb88e53ad41b448c61957336eb55ce6f9",
  3442. "reference": "215f4a6bb88e53ad41b448c61957336eb55ce6f9",
  3443. "shasum": "",
  3444. "mirrors": [
  3445. {
  3446. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3447. "preferred": true
  3448. }
  3449. ]
  3450. },
  3451. "require": {
  3452. "php": ">=7.1.0",
  3453. "topthink/framework": "^6.0.0"
  3454. },
  3455. "time": "2019-10-29T06:34:59+00:00",
  3456. "type": "library",
  3457. "extra": {
  3458. "think": {
  3459. "services": [
  3460. "think\\app\\Service"
  3461. ]
  3462. }
  3463. },
  3464. "installation-source": "dist",
  3465. "autoload": {
  3466. "psr-4": {
  3467. "think\\app\\": "src"
  3468. }
  3469. },
  3470. "notification-url": "https://packagist.org/downloads/",
  3471. "license": [
  3472. "Apache-2.0"
  3473. ],
  3474. "authors": [
  3475. {
  3476. "name": "liu21st",
  3477. "email": "liu21st@gmail.com"
  3478. }
  3479. ],
  3480. "description": "thinkphp6 multi app support",
  3481. "install-path": "../topthink/think-multi-app"
  3482. },
  3483. {
  3484. "name": "topthink/think-orm",
  3485. "version": "v2.0.27",
  3486. "version_normalized": "2.0.27.0",
  3487. "source": {
  3488. "type": "git",
  3489. "url": "https://github.com/top-think/think-orm.git",
  3490. "reference": "02affaaccade2cdd8bbb2d2f5d15e46113e6eb50"
  3491. },
  3492. "dist": {
  3493. "type": "zip",
  3494. "url": "https://api.github.com/repos/top-think/think-orm/zipball/02affaaccade2cdd8bbb2d2f5d15e46113e6eb50",
  3495. "reference": "02affaaccade2cdd8bbb2d2f5d15e46113e6eb50",
  3496. "shasum": "",
  3497. "mirrors": [
  3498. {
  3499. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3500. "preferred": true
  3501. }
  3502. ]
  3503. },
  3504. "require": {
  3505. "ext-json": "*",
  3506. "php": ">=7.1.0",
  3507. "psr/log": "~1.0",
  3508. "psr/simple-cache": "^1.0",
  3509. "topthink/think-helper": "^3.1"
  3510. },
  3511. "time": "2019-10-23T02:16:50+00:00",
  3512. "type": "library",
  3513. "installation-source": "dist",
  3514. "autoload": {
  3515. "psr-4": {
  3516. "think\\": "src"
  3517. },
  3518. "files": []
  3519. },
  3520. "notification-url": "https://packagist.org/downloads/",
  3521. "license": [
  3522. "Apache-2.0"
  3523. ],
  3524. "authors": [
  3525. {
  3526. "name": "liu21st",
  3527. "email": "liu21st@gmail.com"
  3528. }
  3529. ],
  3530. "description": "think orm",
  3531. "keywords": [
  3532. "database",
  3533. "orm"
  3534. ],
  3535. "install-path": "../topthink/think-orm"
  3536. },
  3537. {
  3538. "name": "topthink/think-queue",
  3539. "version": "v3.0.2",
  3540. "version_normalized": "3.0.2.0",
  3541. "source": {
  3542. "type": "git",
  3543. "url": "https://github.com/top-think/think-queue.git",
  3544. "reference": "c34b983abce9427fca7e30ac983b75041f436ad0"
  3545. },
  3546. "dist": {
  3547. "type": "zip",
  3548. "url": "https://api.github.com/repos/top-think/think-queue/zipball/c34b983abce9427fca7e30ac983b75041f436ad0",
  3549. "reference": "c34b983abce9427fca7e30ac983b75041f436ad0",
  3550. "shasum": "",
  3551. "mirrors": [
  3552. {
  3553. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3554. "preferred": true
  3555. }
  3556. ]
  3557. },
  3558. "require": {
  3559. "nesbot/carbon": "^2.16",
  3560. "symfony/process": "^4.2",
  3561. "topthink/framework": "^6.0.0",
  3562. "topthink/think-factory": "^1.0.0",
  3563. "topthink/think-helper": "^3.0.4"
  3564. },
  3565. "require-dev": {
  3566. "mockery/mockery": "^1.2",
  3567. "phpunit/phpunit": "^6.2",
  3568. "topthink/think-migration": "^3.0.0"
  3569. },
  3570. "time": "2019-06-06T10:41:07+00:00",
  3571. "type": "library",
  3572. "extra": {
  3573. "think": {
  3574. "services": [
  3575. "think\\queue\\Service"
  3576. ],
  3577. "config": {
  3578. "queue": "src/config.php"
  3579. }
  3580. }
  3581. },
  3582. "installation-source": "dist",
  3583. "autoload": {
  3584. "psr-4": {
  3585. "think\\": "src"
  3586. },
  3587. "files": [
  3588. "src/common.php"
  3589. ]
  3590. },
  3591. "notification-url": "https://packagist.org/downloads/",
  3592. "license": [
  3593. "Apache-2.0"
  3594. ],
  3595. "authors": [
  3596. {
  3597. "name": "yunwuxin",
  3598. "email": "448901948@qq.com"
  3599. }
  3600. ],
  3601. "description": "The ThinkPHP5 Queue Package",
  3602. "install-path": "../topthink/think-queue"
  3603. },
  3604. {
  3605. "name": "topthink/think-template",
  3606. "version": "v2.0.7",
  3607. "version_normalized": "2.0.7.0",
  3608. "source": {
  3609. "type": "git",
  3610. "url": "https://github.com/top-think/think-template.git",
  3611. "reference": "e98bdbb4a4c94b442f17dfceba81e0134d4fbd19"
  3612. },
  3613. "dist": {
  3614. "type": "zip",
  3615. "url": "https://api.github.com/repos/top-think/think-template/zipball/e98bdbb4a4c94b442f17dfceba81e0134d4fbd19",
  3616. "reference": "e98bdbb4a4c94b442f17dfceba81e0134d4fbd19",
  3617. "shasum": "",
  3618. "mirrors": [
  3619. {
  3620. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3621. "preferred": true
  3622. }
  3623. ]
  3624. },
  3625. "require": {
  3626. "php": ">=7.1.0",
  3627. "psr/simple-cache": "^1.0"
  3628. },
  3629. "time": "2019-09-20T15:31:04+00:00",
  3630. "type": "library",
  3631. "installation-source": "dist",
  3632. "autoload": {
  3633. "psr-4": {
  3634. "think\\": "src"
  3635. }
  3636. },
  3637. "notification-url": "https://packagist.org/downloads/",
  3638. "license": [
  3639. "Apache-2.0"
  3640. ],
  3641. "authors": [
  3642. {
  3643. "name": "liu21st",
  3644. "email": "liu21st@gmail.com"
  3645. }
  3646. ],
  3647. "description": "the php template engine",
  3648. "install-path": "../topthink/think-template"
  3649. },
  3650. {
  3651. "name": "topthink/think-view",
  3652. "version": "v1.0.13",
  3653. "version_normalized": "1.0.13.0",
  3654. "source": {
  3655. "type": "git",
  3656. "url": "https://github.com/top-think/think-view.git",
  3657. "reference": "90803b73f781db5d42619082c4597afc58b2d4c5"
  3658. },
  3659. "dist": {
  3660. "type": "zip",
  3661. "url": "https://api.github.com/repos/top-think/think-view/zipball/90803b73f781db5d42619082c4597afc58b2d4c5",
  3662. "reference": "90803b73f781db5d42619082c4597afc58b2d4c5",
  3663. "shasum": "",
  3664. "mirrors": [
  3665. {
  3666. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3667. "preferred": true
  3668. }
  3669. ]
  3670. },
  3671. "require": {
  3672. "php": ">=7.1.0",
  3673. "topthink/think-template": "^2.0"
  3674. },
  3675. "time": "2019-10-07T12:23:10+00:00",
  3676. "type": "library",
  3677. "installation-source": "dist",
  3678. "autoload": {
  3679. "psr-4": {
  3680. "think\\view\\driver\\": "src"
  3681. }
  3682. },
  3683. "notification-url": "https://packagist.org/downloads/",
  3684. "license": [
  3685. "Apache-2.0"
  3686. ],
  3687. "authors": [
  3688. {
  3689. "name": "liu21st",
  3690. "email": "liu21st@gmail.com"
  3691. }
  3692. ],
  3693. "description": "thinkphp template driver",
  3694. "install-path": "../topthink/think-view"
  3695. },
  3696. {
  3697. "name": "workerman/channel",
  3698. "version": "v1.0.5",
  3699. "version_normalized": "1.0.5.0",
  3700. "source": {
  3701. "type": "git",
  3702. "url": "https://github.com/walkor/Channel.git",
  3703. "reference": "0836a9a413c6e8425ee36307d95e2e49cc380f50"
  3704. },
  3705. "dist": {
  3706. "type": "zip",
  3707. "url": "https://api.github.com/repos/walkor/Channel/zipball/0836a9a413c6e8425ee36307d95e2e49cc380f50",
  3708. "reference": "0836a9a413c6e8425ee36307d95e2e49cc380f50",
  3709. "shasum": "",
  3710. "mirrors": [
  3711. {
  3712. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3713. "preferred": true
  3714. }
  3715. ]
  3716. },
  3717. "require": {
  3718. "workerman/workerman": ">=3.3.0"
  3719. },
  3720. "time": "2018-07-02T02:42:37+00:00",
  3721. "type": "library",
  3722. "installation-source": "dist",
  3723. "autoload": {
  3724. "psr-4": {
  3725. "Channel\\": "./src"
  3726. }
  3727. },
  3728. "notification-url": "https://packagist.org/downloads/",
  3729. "license": [
  3730. "MIT"
  3731. ],
  3732. "homepage": "http://www.workerman.net",
  3733. "install-path": "../workerman/channel"
  3734. },
  3735. {
  3736. "name": "workerman/workerman",
  3737. "version": "v3.5.19",
  3738. "version_normalized": "3.5.19.0",
  3739. "source": {
  3740. "type": "git",
  3741. "url": "https://github.com/walkor/Workerman.git",
  3742. "reference": "4e5c24073b431fd950287efbfb5cc9b4c0fc7367"
  3743. },
  3744. "dist": {
  3745. "type": "zip",
  3746. "url": "https://api.github.com/repos/walkor/Workerman/zipball/4e5c24073b431fd950287efbfb5cc9b4c0fc7367",
  3747. "reference": "4e5c24073b431fd950287efbfb5cc9b4c0fc7367",
  3748. "shasum": "",
  3749. "mirrors": [
  3750. {
  3751. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3752. "preferred": true
  3753. }
  3754. ]
  3755. },
  3756. "require": {
  3757. "php": ">=5.3"
  3758. },
  3759. "suggest": {
  3760. "ext-event": "For better performance. "
  3761. },
  3762. "time": "2019-04-05T10:35:31+00:00",
  3763. "type": "library",
  3764. "installation-source": "dist",
  3765. "autoload": {
  3766. "psr-4": {
  3767. "Workerman\\": "./"
  3768. }
  3769. },
  3770. "notification-url": "https://packagist.org/downloads/",
  3771. "license": [
  3772. "MIT"
  3773. ],
  3774. "authors": [
  3775. {
  3776. "name": "walkor",
  3777. "email": "walkor@workerman.net",
  3778. "homepage": "http://www.workerman.net",
  3779. "role": "Developer"
  3780. }
  3781. ],
  3782. "description": "An asynchronous event driven PHP framework for easily building fast, scalable network applications.",
  3783. "homepage": "http://www.workerman.net",
  3784. "keywords": [
  3785. "asynchronous",
  3786. "event-loop"
  3787. ],
  3788. "install-path": "../workerman/workerman"
  3789. },
  3790. {
  3791. "name": "xaboy/form-builder",
  3792. "version": "1.2.10",
  3793. "version_normalized": "1.2.10.0",
  3794. "source": {
  3795. "type": "git",
  3796. "url": "https://github.com/xaboy/form-builder.git",
  3797. "reference": "198c5f066499eef8b005f5d504fcb6120fa3ac04"
  3798. },
  3799. "dist": {
  3800. "type": "zip",
  3801. "url": "https://api.github.com/repos/xaboy/form-builder/zipball/198c5f066499eef8b005f5d504fcb6120fa3ac04",
  3802. "reference": "198c5f066499eef8b005f5d504fcb6120fa3ac04",
  3803. "shasum": "",
  3804. "mirrors": [
  3805. {
  3806. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3807. "preferred": true
  3808. }
  3809. ]
  3810. },
  3811. "require": {
  3812. "ext-json": "*",
  3813. "php": ">=5.4.0"
  3814. },
  3815. "time": "2019-08-26T09:34:17+00:00",
  3816. "type": "library",
  3817. "installation-source": "dist",
  3818. "autoload": {
  3819. "psr-4": {
  3820. "FormBuilder\\": "./src/"
  3821. }
  3822. },
  3823. "notification-url": "https://packagist.org/downloads/",
  3824. "license": [
  3825. "MIT"
  3826. ],
  3827. "authors": [
  3828. {
  3829. "name": "xaboy",
  3830. "email": "xaboy2005@qq.com"
  3831. }
  3832. ],
  3833. "description": "PHP表单生成器,快速生成现代化的form表单。包含复选框、单选框、输入框、下拉选择框等元素以及,省市区三级联动,时间选择,日期选择,颜色选择,文件/图片上传等功能。",
  3834. "homepage": "https://github.com/xaboy/form-builder",
  3835. "install-path": "../xaboy/form-builder"
  3836. }
  3837. ],
  3838. "dev": true,
  3839. "dev-package-names": []
  3840. }