installed.json 92 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619
  1. {
  2. "packages": [
  3. {
  4. "name": "alchemy/binary-driver",
  5. "version": "v2.0.0",
  6. "version_normalized": "2.0.0.0",
  7. "source": {
  8. "type": "git",
  9. "url": "https://github.com/alchemy-fr/BinaryDriver.git",
  10. "reference": "6ccde0e19e81e54da77b08da1a176d43e089f3a3"
  11. },
  12. "dist": {
  13. "type": "zip",
  14. "url": "https://api.github.com/repos/alchemy-fr/BinaryDriver/zipball/6ccde0e19e81e54da77b08da1a176d43e089f3a3",
  15. "reference": "6ccde0e19e81e54da77b08da1a176d43e089f3a3",
  16. "shasum": ""
  17. },
  18. "require": {
  19. "evenement/evenement": "^2.0|^1.0",
  20. "monolog/monolog": "^1.3",
  21. "php": ">=5.5",
  22. "psr/log": "^1.0",
  23. "symfony/process": "^2.3|^3.0|^4.0"
  24. },
  25. "require-dev": {
  26. "phpunit/phpunit": "^4.0|^5.0"
  27. },
  28. "time": "2018-08-06T10:18:33+00:00",
  29. "type": "library",
  30. "installation-source": "dist",
  31. "autoload": {
  32. "psr-0": {
  33. "Alchemy": "src"
  34. }
  35. },
  36. "notification-url": "https://packagist.org/downloads/",
  37. "license": [
  38. "MIT"
  39. ],
  40. "authors": [
  41. {
  42. "name": "Romain Neutron",
  43. "email": "imprec@gmail.com",
  44. "homepage": "http://www.lickmychip.com/"
  45. },
  46. {
  47. "name": "Phraseanet Team",
  48. "email": "info@alchemy.fr",
  49. "homepage": "http://www.phraseanet.com/"
  50. },
  51. {
  52. "name": "Nicolas Le Goff",
  53. "email": "legoff.n@gmail.com"
  54. },
  55. {
  56. "name": "Jens Hausdorf",
  57. "email": "mail@jens-hausdorf.de",
  58. "homepage": "https://jens-hausdorf.de",
  59. "role": "Maintainer"
  60. }
  61. ],
  62. "description": "A set of tools to build binary drivers",
  63. "keywords": [
  64. "binary",
  65. "driver"
  66. ],
  67. "install-path": "../alchemy/binary-driver"
  68. },
  69. {
  70. "name": "evenement/evenement",
  71. "version": "v2.1.0",
  72. "version_normalized": "2.1.0.0",
  73. "source": {
  74. "type": "git",
  75. "url": "https://github.com/igorw/evenement.git",
  76. "reference": "6ba9a777870ab49f417e703229d53931ed40fd7a"
  77. },
  78. "dist": {
  79. "type": "zip",
  80. "url": "https://api.github.com/repos/igorw/evenement/zipball/6ba9a777870ab49f417e703229d53931ed40fd7a",
  81. "reference": "6ba9a777870ab49f417e703229d53931ed40fd7a",
  82. "shasum": ""
  83. },
  84. "require": {
  85. "php": ">=5.4.0"
  86. },
  87. "require-dev": {
  88. "phpunit/phpunit": "^6.0||^5.7||^4.8.35"
  89. },
  90. "time": "2017-07-17T17:39:19+00:00",
  91. "type": "library",
  92. "extra": {
  93. "branch-alias": {
  94. "dev-master": "2.0-dev"
  95. }
  96. },
  97. "installation-source": "dist",
  98. "autoload": {
  99. "psr-0": {
  100. "Evenement": "src"
  101. }
  102. },
  103. "notification-url": "https://packagist.org/downloads/",
  104. "license": [
  105. "MIT"
  106. ],
  107. "authors": [
  108. {
  109. "name": "Igor Wiedler",
  110. "email": "igor@wiedler.ch"
  111. }
  112. ],
  113. "description": "Événement is a very simple event dispatching library for PHP",
  114. "keywords": [
  115. "event-dispatcher",
  116. "event-emitter"
  117. ],
  118. "install-path": "../evenement/evenement"
  119. },
  120. {
  121. "name": "firebase/php-jwt",
  122. "version": "v5.1.0",
  123. "version_normalized": "5.1.0.0",
  124. "source": {
  125. "type": "git",
  126. "url": "https://github.com/firebase/php-jwt.git",
  127. "reference": "4566062c68f76f43d44f1643f4970fe89757d4c6"
  128. },
  129. "dist": {
  130. "type": "zip",
  131. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/4566062c68f76f43d44f1643f4970fe89757d4c6",
  132. "reference": "4566062c68f76f43d44f1643f4970fe89757d4c6",
  133. "shasum": ""
  134. },
  135. "require": {
  136. "php": ">=5.3.0"
  137. },
  138. "require-dev": {
  139. "phpunit/phpunit": "^4.8|^5"
  140. },
  141. "time": "2020-02-24T23:15:03+00:00",
  142. "type": "library",
  143. "installation-source": "dist",
  144. "autoload": {
  145. "psr-4": {
  146. "Firebase\\JWT\\": "src"
  147. }
  148. },
  149. "notification-url": "https://packagist.org/downloads/",
  150. "license": [
  151. "BSD-3-Clause"
  152. ],
  153. "authors": [
  154. {
  155. "name": "Neuman Vong",
  156. "email": "neuman+pear@twilio.com",
  157. "role": "Developer"
  158. },
  159. {
  160. "name": "Anant Narayanan",
  161. "email": "anant@php.net",
  162. "role": "Developer"
  163. }
  164. ],
  165. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  166. "homepage": "https://github.com/firebase/php-jwt",
  167. "install-path": "../firebase/php-jwt"
  168. },
  169. {
  170. "name": "guzzlehttp/guzzle",
  171. "version": "7.5.0",
  172. "version_normalized": "7.5.0.0",
  173. "source": {
  174. "type": "git",
  175. "url": "https://github.com/guzzle/guzzle.git",
  176. "reference": "b50a2a1251152e43f6a37f0fa053e730a67d25ba"
  177. },
  178. "dist": {
  179. "type": "zip",
  180. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/b50a2a1251152e43f6a37f0fa053e730a67d25ba",
  181. "reference": "b50a2a1251152e43f6a37f0fa053e730a67d25ba",
  182. "shasum": "",
  183. "mirrors": [
  184. {
  185. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  186. "preferred": true
  187. }
  188. ]
  189. },
  190. "require": {
  191. "ext-json": "*",
  192. "guzzlehttp/promises": "^1.5",
  193. "guzzlehttp/psr7": "^1.9 || ^2.4",
  194. "php": "^7.2.5 || ^8.0",
  195. "psr/http-client": "^1.0",
  196. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  197. },
  198. "provide": {
  199. "psr/http-client-implementation": "1.0"
  200. },
  201. "require-dev": {
  202. "bamarni/composer-bin-plugin": "^1.8.1",
  203. "ext-curl": "*",
  204. "php-http/client-integration-tests": "^3.0",
  205. "phpunit/phpunit": "^8.5.29 || ^9.5.23",
  206. "psr/log": "^1.1 || ^2.0 || ^3.0"
  207. },
  208. "suggest": {
  209. "ext-curl": "Required for CURL handler support",
  210. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  211. "psr/log": "Required for using the Log middleware"
  212. },
  213. "time": "2022-08-28T15:39:27+00:00",
  214. "type": "library",
  215. "extra": {
  216. "bamarni-bin": {
  217. "bin-links": true,
  218. "forward-command": false
  219. },
  220. "branch-alias": {
  221. "dev-master": "7.5-dev"
  222. }
  223. },
  224. "installation-source": "dist",
  225. "autoload": {
  226. "files": [
  227. "src/functions_include.php"
  228. ],
  229. "psr-4": {
  230. "GuzzleHttp\\": "src/"
  231. }
  232. },
  233. "notification-url": "https://packagist.org/downloads/",
  234. "license": [
  235. "MIT"
  236. ],
  237. "authors": [
  238. {
  239. "name": "Graham Campbell",
  240. "email": "hello@gjcampbell.co.uk",
  241. "homepage": "https://github.com/GrahamCampbell"
  242. },
  243. {
  244. "name": "Michael Dowling",
  245. "email": "mtdowling@gmail.com",
  246. "homepage": "https://github.com/mtdowling"
  247. },
  248. {
  249. "name": "Jeremy Lindblom",
  250. "email": "jeremeamia@gmail.com",
  251. "homepage": "https://github.com/jeremeamia"
  252. },
  253. {
  254. "name": "George Mponos",
  255. "email": "gmponos@gmail.com",
  256. "homepage": "https://github.com/gmponos"
  257. },
  258. {
  259. "name": "Tobias Nyholm",
  260. "email": "tobias.nyholm@gmail.com",
  261. "homepage": "https://github.com/Nyholm"
  262. },
  263. {
  264. "name": "Márk Sági-Kazár",
  265. "email": "mark.sagikazar@gmail.com",
  266. "homepage": "https://github.com/sagikazarmark"
  267. },
  268. {
  269. "name": "Tobias Schultze",
  270. "email": "webmaster@tubo-world.de",
  271. "homepage": "https://github.com/Tobion"
  272. }
  273. ],
  274. "description": "Guzzle is a PHP HTTP client library",
  275. "keywords": [
  276. "client",
  277. "curl",
  278. "framework",
  279. "http",
  280. "http client",
  281. "psr-18",
  282. "psr-7",
  283. "rest",
  284. "web service"
  285. ],
  286. "support": {
  287. "issues": "https://github.com/guzzle/guzzle/issues",
  288. "source": "https://github.com/guzzle/guzzle/tree/7.5.0"
  289. },
  290. "funding": [
  291. {
  292. "url": "https://github.com/GrahamCampbell",
  293. "type": "github"
  294. },
  295. {
  296. "url": "https://github.com/Nyholm",
  297. "type": "github"
  298. },
  299. {
  300. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  301. "type": "tidelift"
  302. }
  303. ],
  304. "install-path": "../guzzlehttp/guzzle"
  305. },
  306. {
  307. "name": "guzzlehttp/promises",
  308. "version": "1.5.2",
  309. "version_normalized": "1.5.2.0",
  310. "source": {
  311. "type": "git",
  312. "url": "https://github.com/guzzle/promises.git",
  313. "reference": "b94b2807d85443f9719887892882d0329d1e2598"
  314. },
  315. "dist": {
  316. "type": "zip",
  317. "url": "https://api.github.com/repos/guzzle/promises/zipball/b94b2807d85443f9719887892882d0329d1e2598",
  318. "reference": "b94b2807d85443f9719887892882d0329d1e2598",
  319. "shasum": "",
  320. "mirrors": [
  321. {
  322. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  323. "preferred": true
  324. }
  325. ]
  326. },
  327. "require": {
  328. "php": ">=5.5"
  329. },
  330. "require-dev": {
  331. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  332. },
  333. "time": "2022-08-28T14:55:35+00:00",
  334. "type": "library",
  335. "extra": {
  336. "branch-alias": {
  337. "dev-master": "1.5-dev"
  338. }
  339. },
  340. "installation-source": "dist",
  341. "autoload": {
  342. "files": [
  343. "src/functions_include.php"
  344. ],
  345. "psr-4": {
  346. "GuzzleHttp\\Promise\\": "src/"
  347. }
  348. },
  349. "notification-url": "https://packagist.org/downloads/",
  350. "license": [
  351. "MIT"
  352. ],
  353. "authors": [
  354. {
  355. "name": "Graham Campbell",
  356. "email": "hello@gjcampbell.co.uk",
  357. "homepage": "https://github.com/GrahamCampbell"
  358. },
  359. {
  360. "name": "Michael Dowling",
  361. "email": "mtdowling@gmail.com",
  362. "homepage": "https://github.com/mtdowling"
  363. },
  364. {
  365. "name": "Tobias Nyholm",
  366. "email": "tobias.nyholm@gmail.com",
  367. "homepage": "https://github.com/Nyholm"
  368. },
  369. {
  370. "name": "Tobias Schultze",
  371. "email": "webmaster@tubo-world.de",
  372. "homepage": "https://github.com/Tobion"
  373. }
  374. ],
  375. "description": "Guzzle promises library",
  376. "keywords": [
  377. "promise"
  378. ],
  379. "support": {
  380. "issues": "https://github.com/guzzle/promises/issues",
  381. "source": "https://github.com/guzzle/promises/tree/1.5.2"
  382. },
  383. "funding": [
  384. {
  385. "url": "https://github.com/GrahamCampbell",
  386. "type": "github"
  387. },
  388. {
  389. "url": "https://github.com/Nyholm",
  390. "type": "github"
  391. },
  392. {
  393. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  394. "type": "tidelift"
  395. }
  396. ],
  397. "install-path": "../guzzlehttp/promises"
  398. },
  399. {
  400. "name": "guzzlehttp/psr7",
  401. "version": "2.4.1",
  402. "version_normalized": "2.4.1.0",
  403. "source": {
  404. "type": "git",
  405. "url": "https://github.com/guzzle/psr7.git",
  406. "reference": "69568e4293f4fa993f3b0e51c9723e1e17c41379"
  407. },
  408. "dist": {
  409. "type": "zip",
  410. "url": "https://api.github.com/repos/guzzle/psr7/zipball/69568e4293f4fa993f3b0e51c9723e1e17c41379",
  411. "reference": "69568e4293f4fa993f3b0e51c9723e1e17c41379",
  412. "shasum": "",
  413. "mirrors": [
  414. {
  415. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  416. "preferred": true
  417. }
  418. ]
  419. },
  420. "require": {
  421. "php": "^7.2.5 || ^8.0",
  422. "psr/http-factory": "^1.0",
  423. "psr/http-message": "^1.0",
  424. "ralouphie/getallheaders": "^3.0"
  425. },
  426. "provide": {
  427. "psr/http-factory-implementation": "1.0",
  428. "psr/http-message-implementation": "1.0"
  429. },
  430. "require-dev": {
  431. "bamarni/composer-bin-plugin": "^1.8.1",
  432. "http-interop/http-factory-tests": "^0.9",
  433. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  434. },
  435. "suggest": {
  436. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  437. },
  438. "time": "2022-08-28T14:45:39+00:00",
  439. "type": "library",
  440. "extra": {
  441. "bamarni-bin": {
  442. "bin-links": true,
  443. "forward-command": false
  444. },
  445. "branch-alias": {
  446. "dev-master": "2.4-dev"
  447. }
  448. },
  449. "installation-source": "dist",
  450. "autoload": {
  451. "psr-4": {
  452. "GuzzleHttp\\Psr7\\": "src/"
  453. }
  454. },
  455. "notification-url": "https://packagist.org/downloads/",
  456. "license": [
  457. "MIT"
  458. ],
  459. "authors": [
  460. {
  461. "name": "Graham Campbell",
  462. "email": "hello@gjcampbell.co.uk",
  463. "homepage": "https://github.com/GrahamCampbell"
  464. },
  465. {
  466. "name": "Michael Dowling",
  467. "email": "mtdowling@gmail.com",
  468. "homepage": "https://github.com/mtdowling"
  469. },
  470. {
  471. "name": "George Mponos",
  472. "email": "gmponos@gmail.com",
  473. "homepage": "https://github.com/gmponos"
  474. },
  475. {
  476. "name": "Tobias Nyholm",
  477. "email": "tobias.nyholm@gmail.com",
  478. "homepage": "https://github.com/Nyholm"
  479. },
  480. {
  481. "name": "Márk Sági-Kazár",
  482. "email": "mark.sagikazar@gmail.com",
  483. "homepage": "https://github.com/sagikazarmark"
  484. },
  485. {
  486. "name": "Tobias Schultze",
  487. "email": "webmaster@tubo-world.de",
  488. "homepage": "https://github.com/Tobion"
  489. },
  490. {
  491. "name": "Márk Sági-Kazár",
  492. "email": "mark.sagikazar@gmail.com",
  493. "homepage": "https://sagikazarmark.hu"
  494. }
  495. ],
  496. "description": "PSR-7 message implementation that also provides common utility methods",
  497. "keywords": [
  498. "http",
  499. "message",
  500. "psr-7",
  501. "request",
  502. "response",
  503. "stream",
  504. "uri",
  505. "url"
  506. ],
  507. "support": {
  508. "issues": "https://github.com/guzzle/psr7/issues",
  509. "source": "https://github.com/guzzle/psr7/tree/2.4.1"
  510. },
  511. "funding": [
  512. {
  513. "url": "https://github.com/GrahamCampbell",
  514. "type": "github"
  515. },
  516. {
  517. "url": "https://github.com/Nyholm",
  518. "type": "github"
  519. },
  520. {
  521. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  522. "type": "tidelift"
  523. }
  524. ],
  525. "install-path": "../guzzlehttp/psr7"
  526. },
  527. {
  528. "name": "guzzlehttp/uri-template",
  529. "version": "v1.0.1",
  530. "version_normalized": "1.0.1.0",
  531. "source": {
  532. "type": "git",
  533. "url": "https://github.com/guzzle/uri-template.git",
  534. "reference": "b945d74a55a25a949158444f09ec0d3c120d69e2"
  535. },
  536. "dist": {
  537. "type": "zip",
  538. "url": "https://api.github.com/repos/guzzle/uri-template/zipball/b945d74a55a25a949158444f09ec0d3c120d69e2",
  539. "reference": "b945d74a55a25a949158444f09ec0d3c120d69e2",
  540. "shasum": "",
  541. "mirrors": [
  542. {
  543. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  544. "preferred": true
  545. }
  546. ]
  547. },
  548. "require": {
  549. "php": "^7.2.5 || ^8.0",
  550. "symfony/polyfill-php80": "^1.17"
  551. },
  552. "require-dev": {
  553. "phpunit/phpunit": "^8.5.19 || ^9.5.8",
  554. "uri-template/tests": "1.0.0"
  555. },
  556. "time": "2021-10-07T12:57:01+00:00",
  557. "type": "library",
  558. "extra": {
  559. "branch-alias": {
  560. "dev-master": "1.0-dev"
  561. }
  562. },
  563. "installation-source": "dist",
  564. "autoload": {
  565. "psr-4": {
  566. "GuzzleHttp\\UriTemplate\\": "src"
  567. }
  568. },
  569. "notification-url": "https://packagist.org/downloads/",
  570. "license": [
  571. "MIT"
  572. ],
  573. "authors": [
  574. {
  575. "name": "Graham Campbell",
  576. "email": "hello@gjcampbell.co.uk",
  577. "homepage": "https://github.com/GrahamCampbell"
  578. },
  579. {
  580. "name": "Michael Dowling",
  581. "email": "mtdowling@gmail.com",
  582. "homepage": "https://github.com/mtdowling"
  583. },
  584. {
  585. "name": "George Mponos",
  586. "email": "gmponos@gmail.com",
  587. "homepage": "https://github.com/gmponos"
  588. },
  589. {
  590. "name": "Tobias Nyholm",
  591. "email": "tobias.nyholm@gmail.com",
  592. "homepage": "https://github.com/Nyholm"
  593. }
  594. ],
  595. "description": "A polyfill class for uri_template of PHP",
  596. "keywords": [
  597. "guzzlehttp",
  598. "uri-template"
  599. ],
  600. "support": {
  601. "issues": "https://github.com/guzzle/uri-template/issues",
  602. "source": "https://github.com/guzzle/uri-template/tree/v1.0.1"
  603. },
  604. "funding": [
  605. {
  606. "url": "https://github.com/GrahamCampbell",
  607. "type": "github"
  608. },
  609. {
  610. "url": "https://github.com/Nyholm",
  611. "type": "github"
  612. },
  613. {
  614. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
  615. "type": "tidelift"
  616. }
  617. ],
  618. "install-path": "../guzzlehttp/uri-template"
  619. },
  620. {
  621. "name": "league/flysystem",
  622. "version": "1.0.46",
  623. "version_normalized": "1.0.46.0",
  624. "source": {
  625. "type": "git",
  626. "url": "https://github.com/thephpleague/flysystem.git",
  627. "reference": "f3e0d925c18b92cf3ce84ea5cc58d62a1762a2b2"
  628. },
  629. "dist": {
  630. "type": "zip",
  631. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/f3e0d925c18b92cf3ce84ea5cc58d62a1762a2b2",
  632. "reference": "f3e0d925c18b92cf3ce84ea5cc58d62a1762a2b2",
  633. "shasum": ""
  634. },
  635. "require": {
  636. "php": ">=5.5.9"
  637. },
  638. "conflict": {
  639. "league/flysystem-sftp": "<1.0.6"
  640. },
  641. "require-dev": {
  642. "ext-fileinfo": "*",
  643. "phpspec/phpspec": "^3.4",
  644. "phpunit/phpunit": "^5.7.10"
  645. },
  646. "suggest": {
  647. "ext-fileinfo": "Required for MimeType",
  648. "ext-ftp": "Allows you to use FTP server storage",
  649. "ext-openssl": "Allows you to use FTPS server storage",
  650. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  651. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  652. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  653. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  654. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  655. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  656. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  657. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  658. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  659. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  660. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  661. },
  662. "time": "2018-08-22T07:45:22+00:00",
  663. "type": "library",
  664. "extra": {
  665. "branch-alias": {
  666. "dev-master": "1.1-dev"
  667. }
  668. },
  669. "installation-source": "dist",
  670. "autoload": {
  671. "psr-4": {
  672. "League\\Flysystem\\": "src/"
  673. }
  674. },
  675. "notification-url": "https://packagist.org/downloads/",
  676. "license": [
  677. "MIT"
  678. ],
  679. "authors": [
  680. {
  681. "name": "Frank de Jonge",
  682. "email": "info@frenky.net"
  683. }
  684. ],
  685. "description": "Filesystem abstraction: Many filesystems, one API.",
  686. "keywords": [
  687. "Cloud Files",
  688. "WebDAV",
  689. "abstraction",
  690. "aws",
  691. "cloud",
  692. "copy.com",
  693. "dropbox",
  694. "file systems",
  695. "files",
  696. "filesystem",
  697. "filesystems",
  698. "ftp",
  699. "rackspace",
  700. "remote",
  701. "s3",
  702. "sftp",
  703. "storage"
  704. ],
  705. "install-path": "../league/flysystem"
  706. },
  707. {
  708. "name": "league/flysystem-cached-adapter",
  709. "version": "1.0.9",
  710. "version_normalized": "1.0.9.0",
  711. "source": {
  712. "type": "git",
  713. "url": "https://github.com/thephpleague/flysystem-cached-adapter.git",
  714. "reference": "08ef74e9be88100807a3b92cc9048a312bf01d6f"
  715. },
  716. "dist": {
  717. "type": "zip",
  718. "url": "https://api.github.com/repos/thephpleague/flysystem-cached-adapter/zipball/08ef74e9be88100807a3b92cc9048a312bf01d6f",
  719. "reference": "08ef74e9be88100807a3b92cc9048a312bf01d6f",
  720. "shasum": ""
  721. },
  722. "require": {
  723. "league/flysystem": "~1.0",
  724. "psr/cache": "^1.0.0"
  725. },
  726. "require-dev": {
  727. "mockery/mockery": "~0.9",
  728. "phpspec/phpspec": "^3.4",
  729. "phpunit/phpunit": "^5.7",
  730. "predis/predis": "~1.0",
  731. "tedivm/stash": "~0.12"
  732. },
  733. "suggest": {
  734. "ext-phpredis": "Pure C implemented extension for PHP"
  735. },
  736. "time": "2018-07-09T20:51:04+00:00",
  737. "type": "library",
  738. "installation-source": "dist",
  739. "autoload": {
  740. "psr-4": {
  741. "League\\Flysystem\\Cached\\": "src/"
  742. }
  743. },
  744. "notification-url": "https://packagist.org/downloads/",
  745. "license": [
  746. "MIT"
  747. ],
  748. "authors": [
  749. {
  750. "name": "frankdejonge",
  751. "email": "info@frenky.net"
  752. }
  753. ],
  754. "description": "An adapter decorator to enable meta-data caching.",
  755. "install-path": "../league/flysystem-cached-adapter"
  756. },
  757. {
  758. "name": "lizhichao/one-sm",
  759. "version": "1.10",
  760. "version_normalized": "1.10.0.0",
  761. "source": {
  762. "type": "git",
  763. "url": "https://github.com/lizhichao/sm.git",
  764. "reference": "687a012a44a5bfd4d9143a0234e1060543be455a"
  765. },
  766. "dist": {
  767. "type": "zip",
  768. "url": "https://api.github.com/repos/lizhichao/sm/zipball/687a012a44a5bfd4d9143a0234e1060543be455a",
  769. "reference": "687a012a44a5bfd4d9143a0234e1060543be455a",
  770. "shasum": "",
  771. "mirrors": [
  772. {
  773. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  774. "preferred": true
  775. }
  776. ]
  777. },
  778. "require": {
  779. "php": ">=5.6"
  780. },
  781. "time": "2021-05-26T06:19:22+00:00",
  782. "type": "library",
  783. "installation-source": "dist",
  784. "autoload": {
  785. "psr-4": {
  786. "OneSm\\": "src/"
  787. }
  788. },
  789. "notification-url": "https://packagist.org/downloads/",
  790. "license": [
  791. "Apache-2.0"
  792. ],
  793. "authors": [
  794. {
  795. "name": "tanszhe",
  796. "email": "1018595261@qq.com"
  797. }
  798. ],
  799. "description": "国密sm3",
  800. "keywords": [
  801. "php",
  802. "sm3"
  803. ],
  804. "support": {
  805. "issues": "https://github.com/lizhichao/sm/issues",
  806. "source": "https://github.com/lizhichao/sm/tree/1.10"
  807. },
  808. "funding": [
  809. {
  810. "url": "https://www.vicsdf.com/img/w.jpg",
  811. "type": "custom"
  812. },
  813. {
  814. "url": "https://www.vicsdf.com/img/z.jpg",
  815. "type": "custom"
  816. }
  817. ],
  818. "install-path": "../lizhichao/one-sm"
  819. },
  820. {
  821. "name": "monolog/monolog",
  822. "version": "1.25.5",
  823. "version_normalized": "1.25.5.0",
  824. "source": {
  825. "type": "git",
  826. "url": "https://github.com/Seldaek/monolog.git",
  827. "reference": "1817faadd1846cd08be9a49e905dc68823bc38c0"
  828. },
  829. "dist": {
  830. "type": "zip",
  831. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/1817faadd1846cd08be9a49e905dc68823bc38c0",
  832. "reference": "1817faadd1846cd08be9a49e905dc68823bc38c0",
  833. "shasum": ""
  834. },
  835. "require": {
  836. "php": ">=5.3.0",
  837. "psr/log": "~1.0"
  838. },
  839. "provide": {
  840. "psr/log-implementation": "1.0.0"
  841. },
  842. "require-dev": {
  843. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  844. "doctrine/couchdb": "~1.0@dev",
  845. "graylog2/gelf-php": "~1.0",
  846. "php-amqplib/php-amqplib": "~2.4",
  847. "php-console/php-console": "^3.1.3",
  848. "php-parallel-lint/php-parallel-lint": "^1.0",
  849. "phpunit/phpunit": "~4.5",
  850. "ruflin/elastica": ">=0.90 <3.0",
  851. "sentry/sentry": "^0.13",
  852. "swiftmailer/swiftmailer": "^5.3|^6.0"
  853. },
  854. "suggest": {
  855. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  856. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  857. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  858. "ext-mongo": "Allow sending log messages to a MongoDB server",
  859. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  860. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  861. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  862. "php-console/php-console": "Allow sending log messages to Google Chrome",
  863. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  864. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  865. "sentry/sentry": "Allow sending log messages to a Sentry server"
  866. },
  867. "time": "2020-07-23T08:35:51+00:00",
  868. "type": "library",
  869. "extra": {
  870. "branch-alias": {
  871. "dev-master": "2.0.x-dev"
  872. }
  873. },
  874. "installation-source": "dist",
  875. "autoload": {
  876. "psr-4": {
  877. "Monolog\\": "src/Monolog"
  878. }
  879. },
  880. "notification-url": "https://packagist.org/downloads/",
  881. "license": [
  882. "MIT"
  883. ],
  884. "authors": [
  885. {
  886. "name": "Jordi Boggiano",
  887. "email": "j.boggiano@seld.be",
  888. "homepage": "http://seld.be"
  889. }
  890. ],
  891. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  892. "homepage": "http://github.com/Seldaek/monolog",
  893. "keywords": [
  894. "log",
  895. "logging",
  896. "psr-3"
  897. ],
  898. "install-path": "../monolog/monolog"
  899. },
  900. {
  901. "name": "neutron/temporary-filesystem",
  902. "version": "2.3.0",
  903. "version_normalized": "2.3.0.0",
  904. "source": {
  905. "type": "git",
  906. "url": "https://github.com/romainneutron/Temporary-Filesystem.git",
  907. "reference": "694aa3885f653dd429584e825ffbab79441d285f"
  908. },
  909. "dist": {
  910. "type": "zip",
  911. "url": "https://api.github.com/repos/romainneutron/Temporary-Filesystem/zipball/694aa3885f653dd429584e825ffbab79441d285f",
  912. "reference": "694aa3885f653dd429584e825ffbab79441d285f",
  913. "shasum": ""
  914. },
  915. "require": {
  916. "php": "^5.6 || ^7.0",
  917. "symfony/filesystem": "^2.3 || ^3.0 || ^4.0"
  918. },
  919. "require-dev": {
  920. "phpunit/phpunit": "^5.0"
  921. },
  922. "time": "2018-02-07T21:11:57+00:00",
  923. "type": "library",
  924. "installation-source": "dist",
  925. "autoload": {
  926. "psr-0": {
  927. "Neutron": "src"
  928. }
  929. },
  930. "notification-url": "https://packagist.org/downloads/",
  931. "license": [
  932. "MIT"
  933. ],
  934. "authors": [
  935. {
  936. "name": "Romain Neutron",
  937. "email": "imprec@gmail.com"
  938. }
  939. ],
  940. "description": "Symfony filesystem extension to handle temporary files",
  941. "install-path": "../neutron/temporary-filesystem"
  942. },
  943. {
  944. "name": "opis/closure",
  945. "version": "3.5.1",
  946. "version_normalized": "3.5.1.0",
  947. "source": {
  948. "type": "git",
  949. "url": "https://github.com/opis/closure.git",
  950. "reference": "93ebc5712cdad8d5f489b500c59d122df2e53969"
  951. },
  952. "dist": {
  953. "type": "zip",
  954. "url": "https://api.github.com/repos/opis/closure/zipball/93ebc5712cdad8d5f489b500c59d122df2e53969",
  955. "reference": "93ebc5712cdad8d5f489b500c59d122df2e53969",
  956. "shasum": ""
  957. },
  958. "require": {
  959. "php": "^5.4 || ^7.0"
  960. },
  961. "require-dev": {
  962. "jeremeamia/superclosure": "^2.0",
  963. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  964. },
  965. "time": "2019-11-29T22:36:02+00:00",
  966. "type": "library",
  967. "extra": {
  968. "branch-alias": {
  969. "dev-master": "3.5.x-dev"
  970. }
  971. },
  972. "installation-source": "dist",
  973. "autoload": {
  974. "psr-4": {
  975. "Opis\\Closure\\": "src/"
  976. },
  977. "files": [
  978. "functions.php"
  979. ]
  980. },
  981. "notification-url": "https://packagist.org/downloads/",
  982. "license": [
  983. "MIT"
  984. ],
  985. "authors": [
  986. {
  987. "name": "Marius Sarca",
  988. "email": "marius.sarca@gmail.com"
  989. },
  990. {
  991. "name": "Sorin Sarca",
  992. "email": "sarca_sorin@hotmail.com"
  993. }
  994. ],
  995. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  996. "homepage": "https://opis.io/closure",
  997. "keywords": [
  998. "anonymous functions",
  999. "closure",
  1000. "function",
  1001. "serializable",
  1002. "serialization",
  1003. "serialize"
  1004. ],
  1005. "install-path": "../opis/closure"
  1006. },
  1007. {
  1008. "name": "php-ffmpeg/php-ffmpeg",
  1009. "version": "v1.x-dev",
  1010. "version_normalized": "1.9999999.9999999.9999999-dev",
  1011. "source": {
  1012. "type": "git",
  1013. "url": "https://github.com/PHP-FFMpeg/PHP-FFMpeg.git",
  1014. "reference": "8006deb04ff9136ec84405c420554093a519c47e"
  1015. },
  1016. "dist": {
  1017. "type": "zip",
  1018. "url": "https://api.github.com/repos/PHP-FFMpeg/PHP-FFMpeg/zipball/8006deb04ff9136ec84405c420554093a519c47e",
  1019. "reference": "8006deb04ff9136ec84405c420554093a519c47e",
  1020. "shasum": ""
  1021. },
  1022. "require": {
  1023. "alchemy/binary-driver": "^2.0",
  1024. "evenement/evenement": "^2.0",
  1025. "neutron/temporary-filesystem": "2.3",
  1026. "php": "^7.1",
  1027. "sabre/cache": "^1.0"
  1028. },
  1029. "require-dev": {
  1030. "phpunit/phpunit": "^6.5",
  1031. "squizlabs/php_codesniffer": "^3.3"
  1032. },
  1033. "suggest": {
  1034. "php-ffmpeg/extras": "A compilation of common audio & video drivers for PHP-FFMpeg"
  1035. },
  1036. "time": "2018-09-15T10:52:25+00:00",
  1037. "type": "library",
  1038. "installation-source": "dist",
  1039. "autoload": {
  1040. "psr-0": {
  1041. "FFMpeg\\": "src"
  1042. }
  1043. },
  1044. "notification-url": "https://packagist.org/downloads/",
  1045. "license": [
  1046. "MIT"
  1047. ],
  1048. "authors": [
  1049. {
  1050. "name": "Romain Neutron",
  1051. "email": "imprec@gmail.com",
  1052. "homepage": "http://www.lickmychip.com/"
  1053. },
  1054. {
  1055. "name": "Phraseanet Team",
  1056. "email": "info@alchemy.fr",
  1057. "homepage": "http://www.phraseanet.com/"
  1058. },
  1059. {
  1060. "name": "Patrik Karisch",
  1061. "email": "patrik@karisch.guru",
  1062. "homepage": "http://www.karisch.guru"
  1063. },
  1064. {
  1065. "name": "Romain Biard",
  1066. "email": "romain.biard@gmail.com",
  1067. "homepage": "https://www.strime.io/"
  1068. },
  1069. {
  1070. "name": "Jens Hausdorf",
  1071. "email": "hello@jens-hausdorf.de",
  1072. "homepage": "https://jens-hausdorf.de",
  1073. "role": "Maintainer"
  1074. }
  1075. ],
  1076. "description": "FFMpeg PHP, an Object Oriented library to communicate with AVconv / ffmpeg",
  1077. "keywords": [
  1078. "audio",
  1079. "audio processing",
  1080. "ffmpeg",
  1081. "ffprobe",
  1082. "video",
  1083. "video processing"
  1084. ],
  1085. "install-path": "../php-ffmpeg/php-ffmpeg"
  1086. },
  1087. {
  1088. "name": "phpoffice/phpexcel",
  1089. "version": "1.8.2",
  1090. "version_normalized": "1.8.2.0",
  1091. "source": {
  1092. "type": "git",
  1093. "url": "https://github.com/PHPOffice/PHPExcel.git",
  1094. "reference": "1441011fb7ecdd8cc689878f54f8b58a6805f870"
  1095. },
  1096. "dist": {
  1097. "type": "zip",
  1098. "url": "https://api.github.com/repos/PHPOffice/PHPExcel/zipball/1441011fb7ecdd8cc689878f54f8b58a6805f870",
  1099. "reference": "1441011fb7ecdd8cc689878f54f8b58a6805f870",
  1100. "shasum": ""
  1101. },
  1102. "require": {
  1103. "ext-mbstring": "*",
  1104. "ext-xml": "*",
  1105. "ext-xmlwriter": "*",
  1106. "php": "^5.2|^7.0"
  1107. },
  1108. "require-dev": {
  1109. "squizlabs/php_codesniffer": "2.*"
  1110. },
  1111. "time": "2018-11-22T23:07:24+00:00",
  1112. "type": "library",
  1113. "installation-source": "dist",
  1114. "autoload": {
  1115. "psr-0": {
  1116. "PHPExcel": "Classes/"
  1117. }
  1118. },
  1119. "notification-url": "https://packagist.org/downloads/",
  1120. "license": [
  1121. "LGPL-2.1"
  1122. ],
  1123. "authors": [
  1124. {
  1125. "name": "Maarten Balliauw",
  1126. "homepage": "http://blog.maartenballiauw.be"
  1127. },
  1128. {
  1129. "name": "Erik Tilt"
  1130. },
  1131. {
  1132. "name": "Franck Lefevre",
  1133. "homepage": "http://rootslabs.net"
  1134. },
  1135. {
  1136. "name": "Mark Baker",
  1137. "homepage": "http://markbakeruk.net"
  1138. }
  1139. ],
  1140. "description": "PHPExcel - OpenXML - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  1141. "homepage": "https://github.com/PHPOffice/PHPExcel",
  1142. "keywords": [
  1143. "OpenXML",
  1144. "excel",
  1145. "php",
  1146. "spreadsheet",
  1147. "xls",
  1148. "xlsx"
  1149. ],
  1150. "abandoned": "phpoffice/phpspreadsheet",
  1151. "install-path": "../phpoffice/phpexcel"
  1152. },
  1153. {
  1154. "name": "psr/cache",
  1155. "version": "1.0.1",
  1156. "version_normalized": "1.0.1.0",
  1157. "source": {
  1158. "type": "git",
  1159. "url": "https://github.com/php-fig/cache.git",
  1160. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  1161. },
  1162. "dist": {
  1163. "type": "zip",
  1164. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  1165. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  1166. "shasum": ""
  1167. },
  1168. "require": {
  1169. "php": ">=5.3.0"
  1170. },
  1171. "time": "2016-08-06T20:24:11+00:00",
  1172. "type": "library",
  1173. "extra": {
  1174. "branch-alias": {
  1175. "dev-master": "1.0.x-dev"
  1176. }
  1177. },
  1178. "installation-source": "dist",
  1179. "autoload": {
  1180. "psr-4": {
  1181. "Psr\\Cache\\": "src/"
  1182. }
  1183. },
  1184. "notification-url": "https://packagist.org/downloads/",
  1185. "license": [
  1186. "MIT"
  1187. ],
  1188. "authors": [
  1189. {
  1190. "name": "PHP-FIG",
  1191. "homepage": "http://www.php-fig.org/"
  1192. }
  1193. ],
  1194. "description": "Common interface for caching libraries",
  1195. "keywords": [
  1196. "cache",
  1197. "psr",
  1198. "psr-6"
  1199. ],
  1200. "install-path": "../psr/cache"
  1201. },
  1202. {
  1203. "name": "psr/container",
  1204. "version": "1.0.0",
  1205. "version_normalized": "1.0.0.0",
  1206. "source": {
  1207. "type": "git",
  1208. "url": "https://github.com/php-fig/container.git",
  1209. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  1210. },
  1211. "dist": {
  1212. "type": "zip",
  1213. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1214. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1215. "shasum": ""
  1216. },
  1217. "require": {
  1218. "php": ">=5.3.0"
  1219. },
  1220. "time": "2017-02-14T16:28:37+00:00",
  1221. "type": "library",
  1222. "extra": {
  1223. "branch-alias": {
  1224. "dev-master": "1.0.x-dev"
  1225. }
  1226. },
  1227. "installation-source": "dist",
  1228. "autoload": {
  1229. "psr-4": {
  1230. "Psr\\Container\\": "src/"
  1231. }
  1232. },
  1233. "notification-url": "https://packagist.org/downloads/",
  1234. "license": [
  1235. "MIT"
  1236. ],
  1237. "authors": [
  1238. {
  1239. "name": "PHP-FIG",
  1240. "homepage": "http://www.php-fig.org/"
  1241. }
  1242. ],
  1243. "description": "Common Container Interface (PHP FIG PSR-11)",
  1244. "homepage": "https://github.com/php-fig/container",
  1245. "keywords": [
  1246. "PSR-11",
  1247. "container",
  1248. "container-interface",
  1249. "container-interop",
  1250. "psr"
  1251. ],
  1252. "install-path": "../psr/container"
  1253. },
  1254. {
  1255. "name": "psr/http-client",
  1256. "version": "1.0.1",
  1257. "version_normalized": "1.0.1.0",
  1258. "source": {
  1259. "type": "git",
  1260. "url": "https://github.com/php-fig/http-client.git",
  1261. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  1262. },
  1263. "dist": {
  1264. "type": "zip",
  1265. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  1266. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  1267. "shasum": "",
  1268. "mirrors": [
  1269. {
  1270. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1271. "preferred": true
  1272. }
  1273. ]
  1274. },
  1275. "require": {
  1276. "php": "^7.0 || ^8.0",
  1277. "psr/http-message": "^1.0"
  1278. },
  1279. "time": "2020-06-29T06:28:15+00:00",
  1280. "type": "library",
  1281. "extra": {
  1282. "branch-alias": {
  1283. "dev-master": "1.0.x-dev"
  1284. }
  1285. },
  1286. "installation-source": "dist",
  1287. "autoload": {
  1288. "psr-4": {
  1289. "Psr\\Http\\Client\\": "src/"
  1290. }
  1291. },
  1292. "notification-url": "https://packagist.org/downloads/",
  1293. "license": [
  1294. "MIT"
  1295. ],
  1296. "authors": [
  1297. {
  1298. "name": "PHP-FIG",
  1299. "homepage": "http://www.php-fig.org/"
  1300. }
  1301. ],
  1302. "description": "Common interface for HTTP clients",
  1303. "homepage": "https://github.com/php-fig/http-client",
  1304. "keywords": [
  1305. "http",
  1306. "http-client",
  1307. "psr",
  1308. "psr-18"
  1309. ],
  1310. "support": {
  1311. "source": "https://github.com/php-fig/http-client/tree/master"
  1312. },
  1313. "install-path": "../psr/http-client"
  1314. },
  1315. {
  1316. "name": "psr/http-factory",
  1317. "version": "1.0.1",
  1318. "version_normalized": "1.0.1.0",
  1319. "source": {
  1320. "type": "git",
  1321. "url": "https://github.com/php-fig/http-factory.git",
  1322. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  1323. },
  1324. "dist": {
  1325. "type": "zip",
  1326. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  1327. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  1328. "shasum": "",
  1329. "mirrors": [
  1330. {
  1331. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1332. "preferred": true
  1333. }
  1334. ]
  1335. },
  1336. "require": {
  1337. "php": ">=7.0.0",
  1338. "psr/http-message": "^1.0"
  1339. },
  1340. "time": "2019-04-30T12:38:16+00:00",
  1341. "type": "library",
  1342. "extra": {
  1343. "branch-alias": {
  1344. "dev-master": "1.0.x-dev"
  1345. }
  1346. },
  1347. "installation-source": "dist",
  1348. "autoload": {
  1349. "psr-4": {
  1350. "Psr\\Http\\Message\\": "src/"
  1351. }
  1352. },
  1353. "notification-url": "https://packagist.org/downloads/",
  1354. "license": [
  1355. "MIT"
  1356. ],
  1357. "authors": [
  1358. {
  1359. "name": "PHP-FIG",
  1360. "homepage": "http://www.php-fig.org/"
  1361. }
  1362. ],
  1363. "description": "Common interfaces for PSR-7 HTTP message factories",
  1364. "keywords": [
  1365. "factory",
  1366. "http",
  1367. "message",
  1368. "psr",
  1369. "psr-17",
  1370. "psr-7",
  1371. "request",
  1372. "response"
  1373. ],
  1374. "support": {
  1375. "source": "https://github.com/php-fig/http-factory/tree/master"
  1376. },
  1377. "install-path": "../psr/http-factory"
  1378. },
  1379. {
  1380. "name": "psr/http-message",
  1381. "version": "1.0.1",
  1382. "version_normalized": "1.0.1.0",
  1383. "source": {
  1384. "type": "git",
  1385. "url": "https://github.com/php-fig/http-message.git",
  1386. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  1387. },
  1388. "dist": {
  1389. "type": "zip",
  1390. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  1391. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  1392. "shasum": "",
  1393. "mirrors": [
  1394. {
  1395. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1396. "preferred": true
  1397. }
  1398. ]
  1399. },
  1400. "require": {
  1401. "php": ">=5.3.0"
  1402. },
  1403. "time": "2016-08-06T14:39:51+00:00",
  1404. "type": "library",
  1405. "extra": {
  1406. "branch-alias": {
  1407. "dev-master": "1.0.x-dev"
  1408. }
  1409. },
  1410. "installation-source": "dist",
  1411. "autoload": {
  1412. "psr-4": {
  1413. "Psr\\Http\\Message\\": "src/"
  1414. }
  1415. },
  1416. "notification-url": "https://packagist.org/downloads/",
  1417. "license": [
  1418. "MIT"
  1419. ],
  1420. "authors": [
  1421. {
  1422. "name": "PHP-FIG",
  1423. "homepage": "http://www.php-fig.org/"
  1424. }
  1425. ],
  1426. "description": "Common interface for HTTP messages",
  1427. "homepage": "https://github.com/php-fig/http-message",
  1428. "keywords": [
  1429. "http",
  1430. "http-message",
  1431. "psr",
  1432. "psr-7",
  1433. "request",
  1434. "response"
  1435. ],
  1436. "support": {
  1437. "source": "https://github.com/php-fig/http-message/tree/master"
  1438. },
  1439. "install-path": "../psr/http-message"
  1440. },
  1441. {
  1442. "name": "psr/log",
  1443. "version": "1.1.2",
  1444. "version_normalized": "1.1.2.0",
  1445. "source": {
  1446. "type": "git",
  1447. "url": "https://github.com/php-fig/log.git",
  1448. "reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801"
  1449. },
  1450. "dist": {
  1451. "type": "zip",
  1452. "url": "https://api.github.com/repos/php-fig/log/zipball/446d54b4cb6bf489fc9d75f55843658e6f25d801",
  1453. "reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801",
  1454. "shasum": ""
  1455. },
  1456. "require": {
  1457. "php": ">=5.3.0"
  1458. },
  1459. "time": "2019-11-01T11:05:21+00:00",
  1460. "type": "library",
  1461. "extra": {
  1462. "branch-alias": {
  1463. "dev-master": "1.1.x-dev"
  1464. }
  1465. },
  1466. "installation-source": "dist",
  1467. "autoload": {
  1468. "psr-4": {
  1469. "Psr\\Log\\": "Psr/Log/"
  1470. }
  1471. },
  1472. "notification-url": "https://packagist.org/downloads/",
  1473. "license": [
  1474. "MIT"
  1475. ],
  1476. "authors": [
  1477. {
  1478. "name": "PHP-FIG",
  1479. "homepage": "http://www.php-fig.org/"
  1480. }
  1481. ],
  1482. "description": "Common interface for logging libraries",
  1483. "homepage": "https://github.com/php-fig/log",
  1484. "keywords": [
  1485. "log",
  1486. "psr",
  1487. "psr-3"
  1488. ],
  1489. "install-path": "../psr/log"
  1490. },
  1491. {
  1492. "name": "psr/simple-cache",
  1493. "version": "1.0.1",
  1494. "version_normalized": "1.0.1.0",
  1495. "source": {
  1496. "type": "git",
  1497. "url": "https://github.com/php-fig/simple-cache.git",
  1498. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  1499. },
  1500. "dist": {
  1501. "type": "zip",
  1502. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1503. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1504. "shasum": ""
  1505. },
  1506. "require": {
  1507. "php": ">=5.3.0"
  1508. },
  1509. "time": "2017-10-23T01:57:42+00:00",
  1510. "type": "library",
  1511. "extra": {
  1512. "branch-alias": {
  1513. "dev-master": "1.0.x-dev"
  1514. }
  1515. },
  1516. "installation-source": "dist",
  1517. "autoload": {
  1518. "psr-4": {
  1519. "Psr\\SimpleCache\\": "src/"
  1520. }
  1521. },
  1522. "notification-url": "https://packagist.org/downloads/",
  1523. "license": [
  1524. "MIT"
  1525. ],
  1526. "authors": [
  1527. {
  1528. "name": "PHP-FIG",
  1529. "homepage": "http://www.php-fig.org/"
  1530. }
  1531. ],
  1532. "description": "Common interfaces for simple caching",
  1533. "keywords": [
  1534. "cache",
  1535. "caching",
  1536. "psr",
  1537. "psr-16",
  1538. "simple-cache"
  1539. ],
  1540. "install-path": "../psr/simple-cache"
  1541. },
  1542. {
  1543. "name": "ralouphie/getallheaders",
  1544. "version": "3.0.3",
  1545. "version_normalized": "3.0.3.0",
  1546. "source": {
  1547. "type": "git",
  1548. "url": "https://github.com/ralouphie/getallheaders.git",
  1549. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  1550. },
  1551. "dist": {
  1552. "type": "zip",
  1553. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  1554. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  1555. "shasum": "",
  1556. "mirrors": [
  1557. {
  1558. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1559. "preferred": true
  1560. }
  1561. ]
  1562. },
  1563. "require": {
  1564. "php": ">=5.6"
  1565. },
  1566. "require-dev": {
  1567. "php-coveralls/php-coveralls": "^2.1",
  1568. "phpunit/phpunit": "^5 || ^6.5"
  1569. },
  1570. "time": "2019-03-08T08:55:37+00:00",
  1571. "type": "library",
  1572. "installation-source": "dist",
  1573. "autoload": {
  1574. "files": [
  1575. "src/getallheaders.php"
  1576. ]
  1577. },
  1578. "notification-url": "https://packagist.org/downloads/",
  1579. "license": [
  1580. "MIT"
  1581. ],
  1582. "authors": [
  1583. {
  1584. "name": "Ralph Khattar",
  1585. "email": "ralph.khattar@gmail.com"
  1586. }
  1587. ],
  1588. "description": "A polyfill for getallheaders.",
  1589. "support": {
  1590. "issues": "https://github.com/ralouphie/getallheaders/issues",
  1591. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  1592. },
  1593. "install-path": "../ralouphie/getallheaders"
  1594. },
  1595. {
  1596. "name": "sabre/cache",
  1597. "version": "1.0.1",
  1598. "version_normalized": "1.0.1.0",
  1599. "source": {
  1600. "type": "git",
  1601. "url": "https://github.com/sabre-io/cache.git",
  1602. "reference": "8da140b1aa2cdb70d053c46e821c0e86a11abd6b"
  1603. },
  1604. "dist": {
  1605. "type": "zip",
  1606. "url": "https://api.github.com/repos/sabre-io/cache/zipball/8da140b1aa2cdb70d053c46e821c0e86a11abd6b",
  1607. "reference": "8da140b1aa2cdb70d053c46e821c0e86a11abd6b",
  1608. "shasum": ""
  1609. },
  1610. "require": {
  1611. "php": ">=7.0",
  1612. "psr/simple-cache": "^1.0"
  1613. },
  1614. "provide": {
  1615. "psr/simple-cache-implementation": "~1.0"
  1616. },
  1617. "require-dev": {
  1618. "phpunit/phpunit": ">=6.2.4",
  1619. "sabre/cs": "~1.0.0"
  1620. },
  1621. "time": "2019-07-19T09:34:00+00:00",
  1622. "type": "library",
  1623. "installation-source": "dist",
  1624. "autoload": {
  1625. "psr-4": {
  1626. "Sabre\\Cache\\": "lib/"
  1627. }
  1628. },
  1629. "notification-url": "https://packagist.org/downloads/",
  1630. "license": [
  1631. "BSD-3-Clause"
  1632. ],
  1633. "authors": [
  1634. {
  1635. "name": "Evert Pot",
  1636. "email": "me@evertpot.com",
  1637. "homepage": "https://evertpot.com/",
  1638. "role": "Developer"
  1639. }
  1640. ],
  1641. "description": "Simple cache abstraction layer implementing PSR-16",
  1642. "homepage": "http://sabre.io/dav/",
  1643. "keywords": [
  1644. "apc",
  1645. "apcu",
  1646. "cache",
  1647. "memcache",
  1648. "memcached",
  1649. "psr-16",
  1650. "sabre",
  1651. "simple-cache"
  1652. ],
  1653. "install-path": "../sabre/cache"
  1654. },
  1655. {
  1656. "name": "symfony/deprecation-contracts",
  1657. "version": "v2.5.2",
  1658. "version_normalized": "2.5.2.0",
  1659. "source": {
  1660. "type": "git",
  1661. "url": "https://github.com/symfony/deprecation-contracts.git",
  1662. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66"
  1663. },
  1664. "dist": {
  1665. "type": "zip",
  1666. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  1667. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  1668. "shasum": "",
  1669. "mirrors": [
  1670. {
  1671. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1672. "preferred": true
  1673. }
  1674. ]
  1675. },
  1676. "require": {
  1677. "php": ">=7.1"
  1678. },
  1679. "time": "2022-01-02T09:53:40+00:00",
  1680. "type": "library",
  1681. "extra": {
  1682. "branch-alias": {
  1683. "dev-main": "2.5-dev"
  1684. },
  1685. "thanks": {
  1686. "name": "symfony/contracts",
  1687. "url": "https://github.com/symfony/contracts"
  1688. }
  1689. },
  1690. "installation-source": "dist",
  1691. "autoload": {
  1692. "files": [
  1693. "function.php"
  1694. ]
  1695. },
  1696. "notification-url": "https://packagist.org/downloads/",
  1697. "license": [
  1698. "MIT"
  1699. ],
  1700. "authors": [
  1701. {
  1702. "name": "Nicolas Grekas",
  1703. "email": "p@tchwork.com"
  1704. },
  1705. {
  1706. "name": "Symfony Community",
  1707. "homepage": "https://symfony.com/contributors"
  1708. }
  1709. ],
  1710. "description": "A generic function and convention to trigger deprecation notices",
  1711. "homepage": "https://symfony.com",
  1712. "support": {
  1713. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.2"
  1714. },
  1715. "funding": [
  1716. {
  1717. "url": "https://symfony.com/sponsor",
  1718. "type": "custom"
  1719. },
  1720. {
  1721. "url": "https://github.com/fabpot",
  1722. "type": "github"
  1723. },
  1724. {
  1725. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1726. "type": "tidelift"
  1727. }
  1728. ],
  1729. "install-path": "../symfony/deprecation-contracts"
  1730. },
  1731. {
  1732. "name": "symfony/filesystem",
  1733. "version": "v4.4.11",
  1734. "version_normalized": "4.4.11.0",
  1735. "source": {
  1736. "type": "git",
  1737. "url": "https://github.com/symfony/filesystem.git",
  1738. "reference": "b27f491309db5757816db672b256ea2e03677d30"
  1739. },
  1740. "dist": {
  1741. "type": "zip",
  1742. "url": "https://api.github.com/repos/symfony/filesystem/zipball/b27f491309db5757816db672b256ea2e03677d30",
  1743. "reference": "b27f491309db5757816db672b256ea2e03677d30",
  1744. "shasum": ""
  1745. },
  1746. "require": {
  1747. "php": ">=7.1.3",
  1748. "symfony/polyfill-ctype": "~1.8"
  1749. },
  1750. "time": "2020-05-30T18:50:54+00:00",
  1751. "type": "library",
  1752. "extra": {
  1753. "branch-alias": {
  1754. "dev-master": "4.4-dev"
  1755. }
  1756. },
  1757. "installation-source": "dist",
  1758. "autoload": {
  1759. "psr-4": {
  1760. "Symfony\\Component\\Filesystem\\": ""
  1761. },
  1762. "exclude-from-classmap": [
  1763. "/Tests/"
  1764. ]
  1765. },
  1766. "notification-url": "https://packagist.org/downloads/",
  1767. "license": [
  1768. "MIT"
  1769. ],
  1770. "authors": [
  1771. {
  1772. "name": "Fabien Potencier",
  1773. "email": "fabien@symfony.com"
  1774. },
  1775. {
  1776. "name": "Symfony Community",
  1777. "homepage": "https://symfony.com/contributors"
  1778. }
  1779. ],
  1780. "description": "Symfony Filesystem Component",
  1781. "homepage": "https://symfony.com",
  1782. "install-path": "../symfony/filesystem"
  1783. },
  1784. {
  1785. "name": "symfony/polyfill-ctype",
  1786. "version": "v1.18.1",
  1787. "version_normalized": "1.18.1.0",
  1788. "source": {
  1789. "type": "git",
  1790. "url": "https://github.com/symfony/polyfill-ctype.git",
  1791. "reference": "1c302646f6efc070cd46856e600e5e0684d6b454"
  1792. },
  1793. "dist": {
  1794. "type": "zip",
  1795. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/1c302646f6efc070cd46856e600e5e0684d6b454",
  1796. "reference": "1c302646f6efc070cd46856e600e5e0684d6b454",
  1797. "shasum": ""
  1798. },
  1799. "require": {
  1800. "php": ">=5.3.3"
  1801. },
  1802. "suggest": {
  1803. "ext-ctype": "For best performance"
  1804. },
  1805. "time": "2020-07-14T12:35:20+00:00",
  1806. "type": "library",
  1807. "extra": {
  1808. "branch-alias": {
  1809. "dev-master": "1.18-dev"
  1810. },
  1811. "thanks": {
  1812. "name": "symfony/polyfill",
  1813. "url": "https://github.com/symfony/polyfill"
  1814. }
  1815. },
  1816. "installation-source": "dist",
  1817. "autoload": {
  1818. "psr-4": {
  1819. "Symfony\\Polyfill\\Ctype\\": ""
  1820. },
  1821. "files": [
  1822. "bootstrap.php"
  1823. ]
  1824. },
  1825. "notification-url": "https://packagist.org/downloads/",
  1826. "license": [
  1827. "MIT"
  1828. ],
  1829. "authors": [
  1830. {
  1831. "name": "Gert de Pagter",
  1832. "email": "BackEndTea@gmail.com"
  1833. },
  1834. {
  1835. "name": "Symfony Community",
  1836. "homepage": "https://symfony.com/contributors"
  1837. }
  1838. ],
  1839. "description": "Symfony polyfill for ctype functions",
  1840. "homepage": "https://symfony.com",
  1841. "keywords": [
  1842. "compatibility",
  1843. "ctype",
  1844. "polyfill",
  1845. "portable"
  1846. ],
  1847. "install-path": "../symfony/polyfill-ctype"
  1848. },
  1849. {
  1850. "name": "symfony/polyfill-mbstring",
  1851. "version": "v1.14.0",
  1852. "version_normalized": "1.14.0.0",
  1853. "source": {
  1854. "type": "git",
  1855. "url": "https://github.com/symfony/polyfill-mbstring.git",
  1856. "reference": "34094cfa9abe1f0f14f48f490772db7a775559f2"
  1857. },
  1858. "dist": {
  1859. "type": "zip",
  1860. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/34094cfa9abe1f0f14f48f490772db7a775559f2",
  1861. "reference": "34094cfa9abe1f0f14f48f490772db7a775559f2",
  1862. "shasum": ""
  1863. },
  1864. "require": {
  1865. "php": ">=5.3.3"
  1866. },
  1867. "suggest": {
  1868. "ext-mbstring": "For best performance"
  1869. },
  1870. "time": "2020-01-13T11:15:53+00:00",
  1871. "type": "library",
  1872. "extra": {
  1873. "branch-alias": {
  1874. "dev-master": "1.14-dev"
  1875. }
  1876. },
  1877. "installation-source": "dist",
  1878. "autoload": {
  1879. "psr-4": {
  1880. "Symfony\\Polyfill\\Mbstring\\": ""
  1881. },
  1882. "files": [
  1883. "bootstrap.php"
  1884. ]
  1885. },
  1886. "notification-url": "https://packagist.org/downloads/",
  1887. "license": [
  1888. "MIT"
  1889. ],
  1890. "authors": [
  1891. {
  1892. "name": "Nicolas Grekas",
  1893. "email": "p@tchwork.com"
  1894. },
  1895. {
  1896. "name": "Symfony Community",
  1897. "homepage": "https://symfony.com/contributors"
  1898. }
  1899. ],
  1900. "description": "Symfony polyfill for the Mbstring extension",
  1901. "homepage": "https://symfony.com",
  1902. "keywords": [
  1903. "compatibility",
  1904. "mbstring",
  1905. "polyfill",
  1906. "portable",
  1907. "shim"
  1908. ],
  1909. "install-path": "../symfony/polyfill-mbstring"
  1910. },
  1911. {
  1912. "name": "symfony/polyfill-php72",
  1913. "version": "v1.14.0",
  1914. "version_normalized": "1.14.0.0",
  1915. "source": {
  1916. "type": "git",
  1917. "url": "https://github.com/symfony/polyfill-php72.git",
  1918. "reference": "46ecacf4751dd0dc81e4f6bf01dbf9da1dc1dadf"
  1919. },
  1920. "dist": {
  1921. "type": "zip",
  1922. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/46ecacf4751dd0dc81e4f6bf01dbf9da1dc1dadf",
  1923. "reference": "46ecacf4751dd0dc81e4f6bf01dbf9da1dc1dadf",
  1924. "shasum": ""
  1925. },
  1926. "require": {
  1927. "php": ">=5.3.3"
  1928. },
  1929. "time": "2020-01-13T11:15:53+00:00",
  1930. "type": "library",
  1931. "extra": {
  1932. "branch-alias": {
  1933. "dev-master": "1.14-dev"
  1934. }
  1935. },
  1936. "installation-source": "dist",
  1937. "autoload": {
  1938. "psr-4": {
  1939. "Symfony\\Polyfill\\Php72\\": ""
  1940. },
  1941. "files": [
  1942. "bootstrap.php"
  1943. ]
  1944. },
  1945. "notification-url": "https://packagist.org/downloads/",
  1946. "license": [
  1947. "MIT"
  1948. ],
  1949. "authors": [
  1950. {
  1951. "name": "Nicolas Grekas",
  1952. "email": "p@tchwork.com"
  1953. },
  1954. {
  1955. "name": "Symfony Community",
  1956. "homepage": "https://symfony.com/contributors"
  1957. }
  1958. ],
  1959. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  1960. "homepage": "https://symfony.com",
  1961. "keywords": [
  1962. "compatibility",
  1963. "polyfill",
  1964. "portable",
  1965. "shim"
  1966. ],
  1967. "install-path": "../symfony/polyfill-php72"
  1968. },
  1969. {
  1970. "name": "symfony/polyfill-php80",
  1971. "version": "v1.26.0",
  1972. "version_normalized": "1.26.0.0",
  1973. "source": {
  1974. "type": "git",
  1975. "url": "https://github.com/symfony/polyfill-php80.git",
  1976. "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace"
  1977. },
  1978. "dist": {
  1979. "type": "zip",
  1980. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/cfa0ae98841b9e461207c13ab093d76b0fa7bace",
  1981. "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace",
  1982. "shasum": "",
  1983. "mirrors": [
  1984. {
  1985. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1986. "preferred": true
  1987. }
  1988. ]
  1989. },
  1990. "require": {
  1991. "php": ">=7.1"
  1992. },
  1993. "time": "2022-05-10T07:21:04+00:00",
  1994. "type": "library",
  1995. "extra": {
  1996. "branch-alias": {
  1997. "dev-main": "1.26-dev"
  1998. },
  1999. "thanks": {
  2000. "name": "symfony/polyfill",
  2001. "url": "https://github.com/symfony/polyfill"
  2002. }
  2003. },
  2004. "installation-source": "dist",
  2005. "autoload": {
  2006. "files": [
  2007. "bootstrap.php"
  2008. ],
  2009. "psr-4": {
  2010. "Symfony\\Polyfill\\Php80\\": ""
  2011. },
  2012. "classmap": [
  2013. "Resources/stubs"
  2014. ]
  2015. },
  2016. "notification-url": "https://packagist.org/downloads/",
  2017. "license": [
  2018. "MIT"
  2019. ],
  2020. "authors": [
  2021. {
  2022. "name": "Ion Bazan",
  2023. "email": "ion.bazan@gmail.com"
  2024. },
  2025. {
  2026. "name": "Nicolas Grekas",
  2027. "email": "p@tchwork.com"
  2028. },
  2029. {
  2030. "name": "Symfony Community",
  2031. "homepage": "https://symfony.com/contributors"
  2032. }
  2033. ],
  2034. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  2035. "homepage": "https://symfony.com",
  2036. "keywords": [
  2037. "compatibility",
  2038. "polyfill",
  2039. "portable",
  2040. "shim"
  2041. ],
  2042. "support": {
  2043. "source": "https://github.com/symfony/polyfill-php80/tree/v1.26.0"
  2044. },
  2045. "funding": [
  2046. {
  2047. "url": "https://symfony.com/sponsor",
  2048. "type": "custom"
  2049. },
  2050. {
  2051. "url": "https://github.com/fabpot",
  2052. "type": "github"
  2053. },
  2054. {
  2055. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2056. "type": "tidelift"
  2057. }
  2058. ],
  2059. "install-path": "../symfony/polyfill-php80"
  2060. },
  2061. {
  2062. "name": "symfony/process",
  2063. "version": "v4.4.11",
  2064. "version_normalized": "4.4.11.0",
  2065. "source": {
  2066. "type": "git",
  2067. "url": "https://github.com/symfony/process.git",
  2068. "reference": "65e70bab62f3da7089a8d4591fb23fbacacb3479"
  2069. },
  2070. "dist": {
  2071. "type": "zip",
  2072. "url": "https://api.github.com/repos/symfony/process/zipball/65e70bab62f3da7089a8d4591fb23fbacacb3479",
  2073. "reference": "65e70bab62f3da7089a8d4591fb23fbacacb3479",
  2074. "shasum": ""
  2075. },
  2076. "require": {
  2077. "php": ">=7.1.3"
  2078. },
  2079. "time": "2020-07-23T08:31:43+00:00",
  2080. "type": "library",
  2081. "extra": {
  2082. "branch-alias": {
  2083. "dev-master": "4.4-dev"
  2084. }
  2085. },
  2086. "installation-source": "dist",
  2087. "autoload": {
  2088. "psr-4": {
  2089. "Symfony\\Component\\Process\\": ""
  2090. },
  2091. "exclude-from-classmap": [
  2092. "/Tests/"
  2093. ]
  2094. },
  2095. "notification-url": "https://packagist.org/downloads/",
  2096. "license": [
  2097. "MIT"
  2098. ],
  2099. "authors": [
  2100. {
  2101. "name": "Fabien Potencier",
  2102. "email": "fabien@symfony.com"
  2103. },
  2104. {
  2105. "name": "Symfony Community",
  2106. "homepage": "https://symfony.com/contributors"
  2107. }
  2108. ],
  2109. "description": "Symfony Process Component",
  2110. "homepage": "https://symfony.com",
  2111. "install-path": "../symfony/process"
  2112. },
  2113. {
  2114. "name": "symfony/var-dumper",
  2115. "version": "v4.4.5",
  2116. "version_normalized": "4.4.5.0",
  2117. "source": {
  2118. "type": "git",
  2119. "url": "https://github.com/symfony/var-dumper.git",
  2120. "reference": "2572839911702b0405479410ea7a1334bfab0b96"
  2121. },
  2122. "dist": {
  2123. "type": "zip",
  2124. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/2572839911702b0405479410ea7a1334bfab0b96",
  2125. "reference": "2572839911702b0405479410ea7a1334bfab0b96",
  2126. "shasum": ""
  2127. },
  2128. "require": {
  2129. "php": "^7.1.3",
  2130. "symfony/polyfill-mbstring": "~1.0",
  2131. "symfony/polyfill-php72": "~1.5"
  2132. },
  2133. "conflict": {
  2134. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  2135. "symfony/console": "<3.4"
  2136. },
  2137. "require-dev": {
  2138. "ext-iconv": "*",
  2139. "symfony/console": "^3.4|^4.0|^5.0",
  2140. "symfony/process": "^4.4|^5.0",
  2141. "twig/twig": "^1.34|^2.4|^3.0"
  2142. },
  2143. "suggest": {
  2144. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  2145. "ext-intl": "To show region name in time zone dump",
  2146. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  2147. },
  2148. "time": "2020-02-24T13:10:00+00:00",
  2149. "bin": [
  2150. "Resources/bin/var-dump-server"
  2151. ],
  2152. "type": "library",
  2153. "extra": {
  2154. "branch-alias": {
  2155. "dev-master": "4.4-dev"
  2156. }
  2157. },
  2158. "installation-source": "dist",
  2159. "autoload": {
  2160. "files": [
  2161. "Resources/functions/dump.php"
  2162. ],
  2163. "psr-4": {
  2164. "Symfony\\Component\\VarDumper\\": ""
  2165. },
  2166. "exclude-from-classmap": [
  2167. "/Tests/"
  2168. ]
  2169. },
  2170. "notification-url": "https://packagist.org/downloads/",
  2171. "license": [
  2172. "MIT"
  2173. ],
  2174. "authors": [
  2175. {
  2176. "name": "Nicolas Grekas",
  2177. "email": "p@tchwork.com"
  2178. },
  2179. {
  2180. "name": "Symfony Community",
  2181. "homepage": "https://symfony.com/contributors"
  2182. }
  2183. ],
  2184. "description": "Symfony mechanism for exploring and dumping PHP variables",
  2185. "homepage": "https://symfony.com",
  2186. "keywords": [
  2187. "debug",
  2188. "dump"
  2189. ],
  2190. "install-path": "../symfony/var-dumper"
  2191. },
  2192. {
  2193. "name": "topthink/framework",
  2194. "version": "6.0.x-dev",
  2195. "version_normalized": "6.0.9999999.9999999-dev",
  2196. "source": {
  2197. "type": "git",
  2198. "url": "https://github.com/top-think/framework.git",
  2199. "reference": "198445bc3e2b082ee8b95db0b94cf38300bfb624"
  2200. },
  2201. "dist": {
  2202. "type": "zip",
  2203. "url": "https://api.github.com/repos/top-think/framework/zipball/198445bc3e2b082ee8b95db0b94cf38300bfb624",
  2204. "reference": "198445bc3e2b082ee8b95db0b94cf38300bfb624",
  2205. "shasum": ""
  2206. },
  2207. "require": {
  2208. "ext-json": "*",
  2209. "ext-mbstring": "*",
  2210. "league/flysystem": "^1.0",
  2211. "league/flysystem-cached-adapter": "^1.0",
  2212. "opis/closure": "^3.1",
  2213. "php": ">=7.1.0",
  2214. "psr/container": "~1.0",
  2215. "psr/log": "~1.0",
  2216. "psr/simple-cache": "^1.0",
  2217. "topthink/think-helper": "^3.1.1",
  2218. "topthink/think-orm": "^2.0"
  2219. },
  2220. "require-dev": {
  2221. "mikey179/vfsstream": "^1.6",
  2222. "mockery/mockery": "^1.2",
  2223. "phpunit/phpunit": "^7.0"
  2224. },
  2225. "time": "2020-03-01T13:33:21+00:00",
  2226. "type": "library",
  2227. "installation-source": "dist",
  2228. "autoload": {
  2229. "files": [],
  2230. "psr-4": {
  2231. "think\\": "src/think/"
  2232. }
  2233. },
  2234. "notification-url": "https://packagist.org/downloads/",
  2235. "license": [
  2236. "Apache-2.0"
  2237. ],
  2238. "authors": [
  2239. {
  2240. "name": "liu21st",
  2241. "email": "liu21st@gmail.com"
  2242. },
  2243. {
  2244. "name": "yunwuxin",
  2245. "email": "448901948@qq.com"
  2246. }
  2247. ],
  2248. "description": "The ThinkPHP Framework.",
  2249. "homepage": "http://thinkphp.cn/",
  2250. "keywords": [
  2251. "framework",
  2252. "orm",
  2253. "thinkphp"
  2254. ],
  2255. "install-path": "../topthink/framework"
  2256. },
  2257. {
  2258. "name": "topthink/think-captcha",
  2259. "version": "v3.0.2",
  2260. "version_normalized": "3.0.2.0",
  2261. "source": {
  2262. "type": "git",
  2263. "url": "https://github.com/top-think/think-captcha.git",
  2264. "reference": "0b4305da19e118cefd934007875a8112f9352f01"
  2265. },
  2266. "dist": {
  2267. "type": "zip",
  2268. "url": "https://api.github.com/repos/top-think/think-captcha/zipball/0b4305da19e118cefd934007875a8112f9352f01",
  2269. "reference": "0b4305da19e118cefd934007875a8112f9352f01",
  2270. "shasum": ""
  2271. },
  2272. "require": {
  2273. "topthink/framework": "^6.0.0"
  2274. },
  2275. "time": "2019-10-03T07:45:11+00:00",
  2276. "type": "library",
  2277. "extra": {
  2278. "think": {
  2279. "services": [
  2280. "think\\captcha\\CaptchaService"
  2281. ],
  2282. "config": {
  2283. "captcha": "src/config.php"
  2284. }
  2285. }
  2286. },
  2287. "installation-source": "dist",
  2288. "autoload": {
  2289. "psr-4": {
  2290. "think\\captcha\\": "src/"
  2291. },
  2292. "files": [
  2293. "src/helper.php"
  2294. ]
  2295. },
  2296. "notification-url": "https://packagist.org/downloads/",
  2297. "license": [
  2298. "Apache-2.0"
  2299. ],
  2300. "authors": [
  2301. {
  2302. "name": "yunwuxin",
  2303. "email": "448901948@qq.com"
  2304. }
  2305. ],
  2306. "description": "captcha package for thinkphp",
  2307. "install-path": "../topthink/think-captcha"
  2308. },
  2309. {
  2310. "name": "topthink/think-helper",
  2311. "version": "v3.1.3",
  2312. "version_normalized": "3.1.3.0",
  2313. "source": {
  2314. "type": "git",
  2315. "url": "https://github.com/top-think/think-helper.git",
  2316. "reference": "4d85dfd3778623bbb1de3648f1dcd0c82f4439f4"
  2317. },
  2318. "dist": {
  2319. "type": "zip",
  2320. "url": "https://api.github.com/repos/top-think/think-helper/zipball/4d85dfd3778623bbb1de3648f1dcd0c82f4439f4",
  2321. "reference": "4d85dfd3778623bbb1de3648f1dcd0c82f4439f4",
  2322. "shasum": ""
  2323. },
  2324. "require": {
  2325. "php": ">=7.1.0"
  2326. },
  2327. "time": "2019-09-30T02:36:48+00:00",
  2328. "type": "library",
  2329. "installation-source": "dist",
  2330. "autoload": {
  2331. "psr-4": {
  2332. "think\\": "src"
  2333. },
  2334. "files": [
  2335. "src/helper.php"
  2336. ]
  2337. },
  2338. "notification-url": "https://packagist.org/downloads/",
  2339. "license": [
  2340. "Apache-2.0"
  2341. ],
  2342. "authors": [
  2343. {
  2344. "name": "yunwuxin",
  2345. "email": "448901948@qq.com"
  2346. }
  2347. ],
  2348. "description": "The ThinkPHP6 Helper Package",
  2349. "install-path": "../topthink/think-helper"
  2350. },
  2351. {
  2352. "name": "topthink/think-multi-app",
  2353. "version": "v1.0.14",
  2354. "version_normalized": "1.0.14.0",
  2355. "source": {
  2356. "type": "git",
  2357. "url": "https://github.com/top-think/think-multi-app.git",
  2358. "reference": "ccaad7c2d33f42cb1cc2a78d6610aaec02cea4c3"
  2359. },
  2360. "dist": {
  2361. "type": "zip",
  2362. "url": "https://api.github.com/repos/top-think/think-multi-app/zipball/ccaad7c2d33f42cb1cc2a78d6610aaec02cea4c3",
  2363. "reference": "ccaad7c2d33f42cb1cc2a78d6610aaec02cea4c3",
  2364. "shasum": "",
  2365. "mirrors": [
  2366. {
  2367. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2368. "preferred": true
  2369. }
  2370. ]
  2371. },
  2372. "require": {
  2373. "php": ">=7.1.0",
  2374. "topthink/framework": "^6.0.0"
  2375. },
  2376. "time": "2020-07-12T13:50:37+00:00",
  2377. "type": "library",
  2378. "extra": {
  2379. "think": {
  2380. "services": [
  2381. "think\\app\\Service"
  2382. ]
  2383. }
  2384. },
  2385. "installation-source": "dist",
  2386. "autoload": {
  2387. "psr-4": {
  2388. "think\\app\\": "src"
  2389. }
  2390. },
  2391. "notification-url": "https://packagist.org/downloads/",
  2392. "license": [
  2393. "Apache-2.0"
  2394. ],
  2395. "authors": [
  2396. {
  2397. "name": "liu21st",
  2398. "email": "liu21st@gmail.com"
  2399. }
  2400. ],
  2401. "description": "thinkphp6 multi app support",
  2402. "support": {
  2403. "issues": "https://github.com/top-think/think-multi-app/issues",
  2404. "source": "https://github.com/top-think/think-multi-app/tree/master"
  2405. },
  2406. "install-path": "../topthink/think-multi-app"
  2407. },
  2408. {
  2409. "name": "topthink/think-orm",
  2410. "version": "2.0.x-dev",
  2411. "version_normalized": "2.0.9999999.9999999-dev",
  2412. "source": {
  2413. "type": "git",
  2414. "url": "https://github.com/top-think/think-orm.git",
  2415. "reference": "f2007ddb2f4de2fbd0e966a7b52a5a408272c2e2"
  2416. },
  2417. "dist": {
  2418. "type": "zip",
  2419. "url": "https://api.github.com/repos/top-think/think-orm/zipball/f2007ddb2f4de2fbd0e966a7b52a5a408272c2e2",
  2420. "reference": "f2007ddb2f4de2fbd0e966a7b52a5a408272c2e2",
  2421. "shasum": ""
  2422. },
  2423. "require": {
  2424. "ext-json": "*",
  2425. "php": ">=7.1.0",
  2426. "psr/log": "~1.0",
  2427. "psr/simple-cache": "^1.0",
  2428. "topthink/think-helper": "^3.1"
  2429. },
  2430. "time": "2020-02-09T13:39:32+00:00",
  2431. "type": "library",
  2432. "installation-source": "dist",
  2433. "autoload": {
  2434. "psr-4": {
  2435. "think\\": "src"
  2436. },
  2437. "files": []
  2438. },
  2439. "notification-url": "https://packagist.org/downloads/",
  2440. "license": [
  2441. "Apache-2.0"
  2442. ],
  2443. "authors": [
  2444. {
  2445. "name": "liu21st",
  2446. "email": "liu21st@gmail.com"
  2447. }
  2448. ],
  2449. "description": "think orm",
  2450. "keywords": [
  2451. "database",
  2452. "orm"
  2453. ],
  2454. "install-path": "../topthink/think-orm"
  2455. },
  2456. {
  2457. "name": "topthink/think-template",
  2458. "version": "v2.0.7",
  2459. "version_normalized": "2.0.7.0",
  2460. "source": {
  2461. "type": "git",
  2462. "url": "https://github.com/top-think/think-template.git",
  2463. "reference": "e98bdbb4a4c94b442f17dfceba81e0134d4fbd19"
  2464. },
  2465. "dist": {
  2466. "type": "zip",
  2467. "url": "https://api.github.com/repos/top-think/think-template/zipball/e98bdbb4a4c94b442f17dfceba81e0134d4fbd19",
  2468. "reference": "e98bdbb4a4c94b442f17dfceba81e0134d4fbd19",
  2469. "shasum": ""
  2470. },
  2471. "require": {
  2472. "php": ">=7.1.0",
  2473. "psr/simple-cache": "^1.0"
  2474. },
  2475. "time": "2019-09-20T15:31:04+00:00",
  2476. "type": "library",
  2477. "installation-source": "dist",
  2478. "autoload": {
  2479. "psr-4": {
  2480. "think\\": "src"
  2481. }
  2482. },
  2483. "notification-url": "https://packagist.org/downloads/",
  2484. "license": [
  2485. "Apache-2.0"
  2486. ],
  2487. "authors": [
  2488. {
  2489. "name": "liu21st",
  2490. "email": "liu21st@gmail.com"
  2491. }
  2492. ],
  2493. "description": "the php template engine",
  2494. "install-path": "../topthink/think-template"
  2495. },
  2496. {
  2497. "name": "topthink/think-view",
  2498. "version": "v1.0.14",
  2499. "version_normalized": "1.0.14.0",
  2500. "source": {
  2501. "type": "git",
  2502. "url": "https://github.com/top-think/think-view.git",
  2503. "reference": "edce0ae2c9551ab65f9e94a222604b0dead3576d"
  2504. },
  2505. "dist": {
  2506. "type": "zip",
  2507. "url": "https://api.github.com/repos/top-think/think-view/zipball/edce0ae2c9551ab65f9e94a222604b0dead3576d",
  2508. "reference": "edce0ae2c9551ab65f9e94a222604b0dead3576d",
  2509. "shasum": ""
  2510. },
  2511. "require": {
  2512. "php": ">=7.1.0",
  2513. "topthink/think-template": "^2.0"
  2514. },
  2515. "time": "2019-11-06T11:40:13+00:00",
  2516. "type": "library",
  2517. "installation-source": "dist",
  2518. "autoload": {
  2519. "psr-4": {
  2520. "think\\view\\driver\\": "src"
  2521. }
  2522. },
  2523. "notification-url": "https://packagist.org/downloads/",
  2524. "license": [
  2525. "Apache-2.0"
  2526. ],
  2527. "authors": [
  2528. {
  2529. "name": "liu21st",
  2530. "email": "liu21st@gmail.com"
  2531. }
  2532. ],
  2533. "description": "thinkphp template driver",
  2534. "install-path": "../topthink/think-view"
  2535. },
  2536. {
  2537. "name": "wechatpay/wechatpay",
  2538. "version": "1.4.6",
  2539. "version_normalized": "1.4.6.0",
  2540. "source": {
  2541. "type": "git",
  2542. "url": "https://github.com/wechatpay-apiv3/wechatpay-php.git",
  2543. "reference": "edbdb6bb19e0818b0576043b265ff1b1e188d668"
  2544. },
  2545. "dist": {
  2546. "type": "zip",
  2547. "url": "https://api.github.com/repos/wechatpay-apiv3/wechatpay-php/zipball/edbdb6bb19e0818b0576043b265ff1b1e188d668",
  2548. "reference": "edbdb6bb19e0818b0576043b265ff1b1e188d668",
  2549. "shasum": "",
  2550. "mirrors": [
  2551. {
  2552. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2553. "preferred": true
  2554. }
  2555. ]
  2556. },
  2557. "require": {
  2558. "ext-curl": "*",
  2559. "ext-libxml": "*",
  2560. "ext-openssl": "*",
  2561. "ext-simplexml": "*",
  2562. "guzzlehttp/guzzle": "^6.5 || ^7.0",
  2563. "guzzlehttp/uri-template": "^0.2 || ^1.0",
  2564. "php": ">=7.1.2"
  2565. },
  2566. "require-dev": {
  2567. "phpstan/phpstan": "^0.12.89 || ^1.0",
  2568. "phpunit/phpunit": "^7.5 || ^8.5.16 || ^9.3.5"
  2569. },
  2570. "time": "2022-08-19T09:14:39+00:00",
  2571. "bin": [
  2572. "bin/CertificateDownloader.php"
  2573. ],
  2574. "type": "library",
  2575. "installation-source": "dist",
  2576. "autoload": {
  2577. "psr-4": {
  2578. "WeChatPay\\": "src/"
  2579. }
  2580. },
  2581. "notification-url": "https://packagist.org/downloads/",
  2582. "license": [
  2583. "Apache-2.0"
  2584. ],
  2585. "authors": [
  2586. {
  2587. "name": "James ZHANG",
  2588. "homepage": "https://github.com/TheNorthMemory"
  2589. },
  2590. {
  2591. "name": "WeChatPay Community",
  2592. "homepage": "https://developers.weixin.qq.com/community/pay"
  2593. }
  2594. ],
  2595. "description": "[A]Sync Chainable WeChatPay v2&v3's OpenAPI SDK for PHP",
  2596. "homepage": "https://pay.weixin.qq.com/",
  2597. "keywords": [
  2598. "AES-GCM",
  2599. "aes-ecb",
  2600. "openapi-chainable",
  2601. "rsa-oaep",
  2602. "wechatpay",
  2603. "xml-builder",
  2604. "xml-parser"
  2605. ],
  2606. "support": {
  2607. "issues": "https://github.com/wechatpay-apiv3/wechatpay-php/issues",
  2608. "source": "https://github.com/wechatpay-apiv3/wechatpay-php/tree/v1.4.6"
  2609. },
  2610. "install-path": "../wechatpay/wechatpay"
  2611. }
  2612. ],
  2613. "dev": true,
  2614. "dev-package-names": [
  2615. "symfony/polyfill-mbstring",
  2616. "symfony/polyfill-php72",
  2617. "symfony/var-dumper"
  2618. ]
  2619. }