composer.lock 89 KB

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