installed.json 72 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040
  1. {
  2. "packages": [
  3. {
  4. "name": "guzzlehttp/guzzle",
  5. "version": "7.8.2",
  6. "version_normalized": "7.8.2.0",
  7. "source": {
  8. "type": "git",
  9. "url": "https://github.com/guzzle/guzzle.git",
  10. "reference": "f4152d9eb85c445fe1f992001d1748e8bec070d2"
  11. },
  12. "dist": {
  13. "type": "zip",
  14. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/f4152d9eb85c445fe1f992001d1748e8bec070d2",
  15. "reference": "f4152d9eb85c445fe1f992001d1748e8bec070d2",
  16. "shasum": ""
  17. },
  18. "require": {
  19. "ext-json": "*",
  20. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  21. "guzzlehttp/psr7": "^1.9.1 || ^2.6.3",
  22. "php": "^7.2.5 || ^8.0",
  23. "psr/http-client": "^1.0",
  24. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  25. },
  26. "provide": {
  27. "psr/http-client-implementation": "1.0"
  28. },
  29. "require-dev": {
  30. "bamarni/composer-bin-plugin": "^1.8.2",
  31. "ext-curl": "*",
  32. "guzzle/client-integration-tests": "3.0.2",
  33. "php-http/message-factory": "^1.1",
  34. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  35. "psr/log": "^1.1 || ^2.0 || ^3.0"
  36. },
  37. "suggest": {
  38. "ext-curl": "Required for CURL handler support",
  39. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  40. "psr/log": "Required for using the Log middleware"
  41. },
  42. "time": "2024-07-18T11:12:18+00:00",
  43. "type": "library",
  44. "extra": {
  45. "bamarni-bin": {
  46. "bin-links": true,
  47. "forward-command": false
  48. }
  49. },
  50. "installation-source": "dist",
  51. "autoload": {
  52. "files": [
  53. "src/functions_include.php"
  54. ],
  55. "psr-4": {
  56. "GuzzleHttp\\": "src/"
  57. }
  58. },
  59. "notification-url": "https://packagist.org/downloads/",
  60. "license": [
  61. "MIT"
  62. ],
  63. "authors": [
  64. {
  65. "name": "Graham Campbell",
  66. "email": "hello@gjcampbell.co.uk",
  67. "homepage": "https://github.com/GrahamCampbell"
  68. },
  69. {
  70. "name": "Michael Dowling",
  71. "email": "mtdowling@gmail.com",
  72. "homepage": "https://github.com/mtdowling"
  73. },
  74. {
  75. "name": "Jeremy Lindblom",
  76. "email": "jeremeamia@gmail.com",
  77. "homepage": "https://github.com/jeremeamia"
  78. },
  79. {
  80. "name": "George Mponos",
  81. "email": "gmponos@gmail.com",
  82. "homepage": "https://github.com/gmponos"
  83. },
  84. {
  85. "name": "Tobias Nyholm",
  86. "email": "tobias.nyholm@gmail.com",
  87. "homepage": "https://github.com/Nyholm"
  88. },
  89. {
  90. "name": "Márk Sági-Kazár",
  91. "email": "mark.sagikazar@gmail.com",
  92. "homepage": "https://github.com/sagikazarmark"
  93. },
  94. {
  95. "name": "Tobias Schultze",
  96. "email": "webmaster@tubo-world.de",
  97. "homepage": "https://github.com/Tobion"
  98. }
  99. ],
  100. "description": "Guzzle is a PHP HTTP client library",
  101. "keywords": [
  102. "client",
  103. "curl",
  104. "framework",
  105. "http",
  106. "http client",
  107. "psr-18",
  108. "psr-7",
  109. "rest",
  110. "web service"
  111. ],
  112. "support": {
  113. "issues": "https://github.com/guzzle/guzzle/issues",
  114. "source": "https://github.com/guzzle/guzzle/tree/7.8.2"
  115. },
  116. "funding": [
  117. {
  118. "url": "https://github.com/GrahamCampbell",
  119. "type": "github"
  120. },
  121. {
  122. "url": "https://github.com/Nyholm",
  123. "type": "github"
  124. },
  125. {
  126. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  127. "type": "tidelift"
  128. }
  129. ],
  130. "install-path": "../guzzlehttp/guzzle"
  131. },
  132. {
  133. "name": "guzzlehttp/promises",
  134. "version": "2.0.3",
  135. "version_normalized": "2.0.3.0",
  136. "source": {
  137. "type": "git",
  138. "url": "https://github.com/guzzle/promises.git",
  139. "reference": "6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8"
  140. },
  141. "dist": {
  142. "type": "zip",
  143. "url": "https://api.github.com/repos/guzzle/promises/zipball/6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8",
  144. "reference": "6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8",
  145. "shasum": ""
  146. },
  147. "require": {
  148. "php": "^7.2.5 || ^8.0"
  149. },
  150. "require-dev": {
  151. "bamarni/composer-bin-plugin": "^1.8.2",
  152. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  153. },
  154. "time": "2024-07-18T10:29:17+00:00",
  155. "type": "library",
  156. "extra": {
  157. "bamarni-bin": {
  158. "bin-links": true,
  159. "forward-command": false
  160. }
  161. },
  162. "installation-source": "dist",
  163. "autoload": {
  164. "psr-4": {
  165. "GuzzleHttp\\Promise\\": "src/"
  166. }
  167. },
  168. "notification-url": "https://packagist.org/downloads/",
  169. "license": [
  170. "MIT"
  171. ],
  172. "authors": [
  173. {
  174. "name": "Graham Campbell",
  175. "email": "hello@gjcampbell.co.uk",
  176. "homepage": "https://github.com/GrahamCampbell"
  177. },
  178. {
  179. "name": "Michael Dowling",
  180. "email": "mtdowling@gmail.com",
  181. "homepage": "https://github.com/mtdowling"
  182. },
  183. {
  184. "name": "Tobias Nyholm",
  185. "email": "tobias.nyholm@gmail.com",
  186. "homepage": "https://github.com/Nyholm"
  187. },
  188. {
  189. "name": "Tobias Schultze",
  190. "email": "webmaster@tubo-world.de",
  191. "homepage": "https://github.com/Tobion"
  192. }
  193. ],
  194. "description": "Guzzle promises library",
  195. "keywords": [
  196. "promise"
  197. ],
  198. "support": {
  199. "issues": "https://github.com/guzzle/promises/issues",
  200. "source": "https://github.com/guzzle/promises/tree/2.0.3"
  201. },
  202. "funding": [
  203. {
  204. "url": "https://github.com/GrahamCampbell",
  205. "type": "github"
  206. },
  207. {
  208. "url": "https://github.com/Nyholm",
  209. "type": "github"
  210. },
  211. {
  212. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  213. "type": "tidelift"
  214. }
  215. ],
  216. "install-path": "../guzzlehttp/promises"
  217. },
  218. {
  219. "name": "guzzlehttp/psr7",
  220. "version": "1.9.1",
  221. "version_normalized": "1.9.1.0",
  222. "source": {
  223. "type": "git",
  224. "url": "https://github.com/guzzle/psr7.git",
  225. "reference": "e4490cabc77465aaee90b20cfc9a770f8c04be6b"
  226. },
  227. "dist": {
  228. "type": "zip",
  229. "url": "https://api.github.com/repos/guzzle/psr7/zipball/e4490cabc77465aaee90b20cfc9a770f8c04be6b",
  230. "reference": "e4490cabc77465aaee90b20cfc9a770f8c04be6b",
  231. "shasum": ""
  232. },
  233. "require": {
  234. "php": ">=5.4.0",
  235. "psr/http-message": "~1.0",
  236. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  237. },
  238. "provide": {
  239. "psr/http-message-implementation": "1.0"
  240. },
  241. "require-dev": {
  242. "ext-zlib": "*",
  243. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  244. },
  245. "suggest": {
  246. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  247. },
  248. "time": "2023-04-17T16:00:37+00:00",
  249. "type": "library",
  250. "installation-source": "dist",
  251. "autoload": {
  252. "files": [
  253. "src/functions_include.php"
  254. ],
  255. "psr-4": {
  256. "GuzzleHttp\\Psr7\\": "src/"
  257. }
  258. },
  259. "notification-url": "https://packagist.org/downloads/",
  260. "license": [
  261. "MIT"
  262. ],
  263. "authors": [
  264. {
  265. "name": "Graham Campbell",
  266. "email": "hello@gjcampbell.co.uk",
  267. "homepage": "https://github.com/GrahamCampbell"
  268. },
  269. {
  270. "name": "Michael Dowling",
  271. "email": "mtdowling@gmail.com",
  272. "homepage": "https://github.com/mtdowling"
  273. },
  274. {
  275. "name": "George Mponos",
  276. "email": "gmponos@gmail.com",
  277. "homepage": "https://github.com/gmponos"
  278. },
  279. {
  280. "name": "Tobias Nyholm",
  281. "email": "tobias.nyholm@gmail.com",
  282. "homepage": "https://github.com/Nyholm"
  283. },
  284. {
  285. "name": "Márk Sági-Kazár",
  286. "email": "mark.sagikazar@gmail.com",
  287. "homepage": "https://github.com/sagikazarmark"
  288. },
  289. {
  290. "name": "Tobias Schultze",
  291. "email": "webmaster@tubo-world.de",
  292. "homepage": "https://github.com/Tobion"
  293. }
  294. ],
  295. "description": "PSR-7 message implementation that also provides common utility methods",
  296. "keywords": [
  297. "http",
  298. "message",
  299. "psr-7",
  300. "request",
  301. "response",
  302. "stream",
  303. "uri",
  304. "url"
  305. ],
  306. "support": {
  307. "issues": "https://github.com/guzzle/psr7/issues",
  308. "source": "https://github.com/guzzle/psr7/tree/1.9.1"
  309. },
  310. "funding": [
  311. {
  312. "url": "https://github.com/GrahamCampbell",
  313. "type": "github"
  314. },
  315. {
  316. "url": "https://github.com/Nyholm",
  317. "type": "github"
  318. },
  319. {
  320. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  321. "type": "tidelift"
  322. }
  323. ],
  324. "install-path": "../guzzlehttp/psr7"
  325. },
  326. {
  327. "name": "league/flysystem",
  328. "version": "2.5.0",
  329. "version_normalized": "2.5.0.0",
  330. "source": {
  331. "type": "git",
  332. "url": "https://github.com/thephpleague/flysystem.git",
  333. "reference": "8aaffb653c5777781b0f7f69a5d937baf7ab6cdb"
  334. },
  335. "dist": {
  336. "type": "zip",
  337. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/8aaffb653c5777781b0f7f69a5d937baf7ab6cdb",
  338. "reference": "8aaffb653c5777781b0f7f69a5d937baf7ab6cdb",
  339. "shasum": ""
  340. },
  341. "require": {
  342. "ext-json": "*",
  343. "league/mime-type-detection": "^1.0.0",
  344. "php": "^7.2 || ^8.0"
  345. },
  346. "conflict": {
  347. "guzzlehttp/ringphp": "<1.1.1"
  348. },
  349. "require-dev": {
  350. "async-aws/s3": "^1.5",
  351. "async-aws/simple-s3": "^1.0",
  352. "aws/aws-sdk-php": "^3.132.4",
  353. "composer/semver": "^3.0",
  354. "ext-fileinfo": "*",
  355. "ext-ftp": "*",
  356. "friendsofphp/php-cs-fixer": "^3.2",
  357. "google/cloud-storage": "^1.23",
  358. "phpseclib/phpseclib": "^2.0",
  359. "phpstan/phpstan": "^0.12.26",
  360. "phpunit/phpunit": "^8.5 || ^9.4",
  361. "sabre/dav": "^4.1"
  362. },
  363. "time": "2022-09-17T21:02:32+00:00",
  364. "type": "library",
  365. "installation-source": "dist",
  366. "autoload": {
  367. "psr-4": {
  368. "League\\Flysystem\\": "src"
  369. }
  370. },
  371. "notification-url": "https://packagist.org/downloads/",
  372. "license": [
  373. "MIT"
  374. ],
  375. "authors": [
  376. {
  377. "name": "Frank de Jonge",
  378. "email": "info@frankdejonge.nl"
  379. }
  380. ],
  381. "description": "File storage abstraction for PHP",
  382. "keywords": [
  383. "WebDAV",
  384. "aws",
  385. "cloud",
  386. "file",
  387. "files",
  388. "filesystem",
  389. "filesystems",
  390. "ftp",
  391. "s3",
  392. "sftp",
  393. "storage"
  394. ],
  395. "support": {
  396. "issues": "https://github.com/thephpleague/flysystem/issues",
  397. "source": "https://github.com/thephpleague/flysystem/tree/2.5.0"
  398. },
  399. "funding": [
  400. {
  401. "url": "https://ecologi.com/frankdejonge",
  402. "type": "custom"
  403. },
  404. {
  405. "url": "https://github.com/frankdejonge",
  406. "type": "github"
  407. },
  408. {
  409. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  410. "type": "tidelift"
  411. }
  412. ],
  413. "install-path": "../league/flysystem"
  414. },
  415. {
  416. "name": "league/mime-type-detection",
  417. "version": "1.15.0",
  418. "version_normalized": "1.15.0.0",
  419. "source": {
  420. "type": "git",
  421. "url": "https://github.com/thephpleague/mime-type-detection.git",
  422. "reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301"
  423. },
  424. "dist": {
  425. "type": "zip",
  426. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301",
  427. "reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301",
  428. "shasum": ""
  429. },
  430. "require": {
  431. "ext-fileinfo": "*",
  432. "php": "^7.4 || ^8.0"
  433. },
  434. "require-dev": {
  435. "friendsofphp/php-cs-fixer": "^3.2",
  436. "phpstan/phpstan": "^0.12.68",
  437. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  438. },
  439. "time": "2024-01-28T23:22:08+00:00",
  440. "type": "library",
  441. "installation-source": "dist",
  442. "autoload": {
  443. "psr-4": {
  444. "League\\MimeTypeDetection\\": "src"
  445. }
  446. },
  447. "notification-url": "https://packagist.org/downloads/",
  448. "license": [
  449. "MIT"
  450. ],
  451. "authors": [
  452. {
  453. "name": "Frank de Jonge",
  454. "email": "info@frankdejonge.nl"
  455. }
  456. ],
  457. "description": "Mime-type detection for Flysystem",
  458. "support": {
  459. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  460. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.15.0"
  461. },
  462. "funding": [
  463. {
  464. "url": "https://github.com/frankdejonge",
  465. "type": "github"
  466. },
  467. {
  468. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  469. "type": "tidelift"
  470. }
  471. ],
  472. "install-path": "../league/mime-type-detection"
  473. },
  474. {
  475. "name": "myclabs/php-enum",
  476. "version": "1.8.4",
  477. "version_normalized": "1.8.4.0",
  478. "source": {
  479. "type": "git",
  480. "url": "https://github.com/myclabs/php-enum.git",
  481. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483"
  482. },
  483. "dist": {
  484. "type": "zip",
  485. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/a867478eae49c9f59ece437ae7f9506bfaa27483",
  486. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483",
  487. "shasum": ""
  488. },
  489. "require": {
  490. "ext-json": "*",
  491. "php": "^7.3 || ^8.0"
  492. },
  493. "require-dev": {
  494. "phpunit/phpunit": "^9.5",
  495. "squizlabs/php_codesniffer": "1.*",
  496. "vimeo/psalm": "^4.6.2"
  497. },
  498. "time": "2022-08-04T09:53:51+00:00",
  499. "type": "library",
  500. "installation-source": "dist",
  501. "autoload": {
  502. "psr-4": {
  503. "MyCLabs\\Enum\\": "src/"
  504. },
  505. "classmap": [
  506. "stubs/Stringable.php"
  507. ]
  508. },
  509. "notification-url": "https://packagist.org/downloads/",
  510. "license": [
  511. "MIT"
  512. ],
  513. "authors": [
  514. {
  515. "name": "PHP Enum contributors",
  516. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  517. }
  518. ],
  519. "description": "PHP Enum implementation",
  520. "homepage": "http://github.com/myclabs/php-enum",
  521. "keywords": [
  522. "enum"
  523. ],
  524. "support": {
  525. "issues": "https://github.com/myclabs/php-enum/issues",
  526. "source": "https://github.com/myclabs/php-enum/tree/1.8.4"
  527. },
  528. "funding": [
  529. {
  530. "url": "https://github.com/mnapoli",
  531. "type": "github"
  532. },
  533. {
  534. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  535. "type": "tidelift"
  536. }
  537. ],
  538. "install-path": "../myclabs/php-enum"
  539. },
  540. {
  541. "name": "nette/mail",
  542. "version": "v3.1.11",
  543. "version_normalized": "3.1.11.0",
  544. "source": {
  545. "type": "git",
  546. "url": "https://github.com/nette/mail.git",
  547. "reference": "804d70278458452863a2d6be4c1d5bf5f91b3950"
  548. },
  549. "dist": {
  550. "type": "zip",
  551. "url": "https://api.github.com/repos/nette/mail/zipball/804d70278458452863a2d6be4c1d5bf5f91b3950",
  552. "reference": "804d70278458452863a2d6be4c1d5bf5f91b3950",
  553. "shasum": ""
  554. },
  555. "require": {
  556. "ext-iconv": "*",
  557. "nette/utils": "^3.1 || ~4.0.0",
  558. "php": "7.1 - 8.3"
  559. },
  560. "conflict": {
  561. "nette/di": "<3.0-stable"
  562. },
  563. "require-dev": {
  564. "nette/di": "^3.0.0",
  565. "nette/tester": "^2.0",
  566. "phpstan/phpstan-nette": "^0.12",
  567. "tracy/tracy": "^2.4"
  568. },
  569. "suggest": {
  570. "ext-fileinfo": "to detect type of attached files",
  571. "ext-openssl": "to use Nette\\Mail\\DkimSigner"
  572. },
  573. "time": "2023-11-02T23:18:58+00:00",
  574. "type": "library",
  575. "extra": {
  576. "branch-alias": {
  577. "dev-master": "3.1-dev"
  578. }
  579. },
  580. "installation-source": "dist",
  581. "autoload": {
  582. "classmap": [
  583. "src/"
  584. ]
  585. },
  586. "notification-url": "https://packagist.org/downloads/",
  587. "license": [
  588. "BSD-3-Clause",
  589. "GPL-2.0-only",
  590. "GPL-3.0-only"
  591. ],
  592. "authors": [
  593. {
  594. "name": "David Grudl",
  595. "homepage": "https://davidgrudl.com"
  596. },
  597. {
  598. "name": "Nette Community",
  599. "homepage": "https://nette.org/contributors"
  600. }
  601. ],
  602. "description": "📧 Nette Mail: handy email creation and transfer library for PHP with both text and MIME-compliant support.",
  603. "homepage": "https://nette.org",
  604. "keywords": [
  605. "mail",
  606. "mailer",
  607. "mime",
  608. "nette",
  609. "smtp"
  610. ],
  611. "support": {
  612. "issues": "https://github.com/nette/mail/issues",
  613. "source": "https://github.com/nette/mail/tree/v3.1.11"
  614. },
  615. "install-path": "../nette/mail"
  616. },
  617. {
  618. "name": "nette/utils",
  619. "version": "v3.2.10",
  620. "version_normalized": "3.2.10.0",
  621. "source": {
  622. "type": "git",
  623. "url": "https://github.com/nette/utils.git",
  624. "reference": "a4175c62652f2300c8017fb7e640f9ccb11648d2"
  625. },
  626. "dist": {
  627. "type": "zip",
  628. "url": "https://api.github.com/repos/nette/utils/zipball/a4175c62652f2300c8017fb7e640f9ccb11648d2",
  629. "reference": "a4175c62652f2300c8017fb7e640f9ccb11648d2",
  630. "shasum": ""
  631. },
  632. "require": {
  633. "php": ">=7.2 <8.4"
  634. },
  635. "conflict": {
  636. "nette/di": "<3.0.6"
  637. },
  638. "require-dev": {
  639. "jetbrains/phpstorm-attributes": "dev-master",
  640. "nette/tester": "~2.0",
  641. "phpstan/phpstan": "^1.0",
  642. "tracy/tracy": "^2.3"
  643. },
  644. "suggest": {
  645. "ext-gd": "to use Image",
  646. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  647. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  648. "ext-json": "to use Nette\\Utils\\Json",
  649. "ext-mbstring": "to use Strings::lower() etc...",
  650. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()",
  651. "ext-xml": "to use Strings::length() etc. when mbstring is not available"
  652. },
  653. "time": "2023-07-30T15:38:18+00:00",
  654. "type": "library",
  655. "extra": {
  656. "branch-alias": {
  657. "dev-master": "3.2-dev"
  658. }
  659. },
  660. "installation-source": "dist",
  661. "autoload": {
  662. "classmap": [
  663. "src/"
  664. ]
  665. },
  666. "notification-url": "https://packagist.org/downloads/",
  667. "license": [
  668. "BSD-3-Clause",
  669. "GPL-2.0-only",
  670. "GPL-3.0-only"
  671. ],
  672. "authors": [
  673. {
  674. "name": "David Grudl",
  675. "homepage": "https://davidgrudl.com"
  676. },
  677. {
  678. "name": "Nette Community",
  679. "homepage": "https://nette.org/contributors"
  680. }
  681. ],
  682. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  683. "homepage": "https://nette.org",
  684. "keywords": [
  685. "array",
  686. "core",
  687. "datetime",
  688. "images",
  689. "json",
  690. "nette",
  691. "paginator",
  692. "password",
  693. "slugify",
  694. "string",
  695. "unicode",
  696. "utf-8",
  697. "utility",
  698. "validation"
  699. ],
  700. "support": {
  701. "issues": "https://github.com/nette/utils/issues",
  702. "source": "https://github.com/nette/utils/tree/v3.2.10"
  703. },
  704. "install-path": "../nette/utils"
  705. },
  706. {
  707. "name": "paquettg/php-html-parser",
  708. "version": "3.1.1",
  709. "version_normalized": "3.1.1.0",
  710. "source": {
  711. "type": "git",
  712. "url": "https://github.com/paquettg/php-html-parser.git",
  713. "reference": "4e01a438ad5961cc2d7427eb9798d213c8a12629"
  714. },
  715. "dist": {
  716. "type": "zip",
  717. "url": "https://api.github.com/repos/paquettg/php-html-parser/zipball/4e01a438ad5961cc2d7427eb9798d213c8a12629",
  718. "reference": "4e01a438ad5961cc2d7427eb9798d213c8a12629",
  719. "shasum": ""
  720. },
  721. "require": {
  722. "ext-curl": "*",
  723. "ext-mbstring": "*",
  724. "ext-zlib": "*",
  725. "guzzlehttp/guzzle": "^7.0",
  726. "guzzlehttp/psr7": "^1.6",
  727. "myclabs/php-enum": "^1.7",
  728. "paquettg/string-encode": "~1.0.0",
  729. "php": ">=7.2",
  730. "php-http/httplug": "^2.1"
  731. },
  732. "require-dev": {
  733. "friendsofphp/php-cs-fixer": "^2.16",
  734. "infection/infection": "^0.13.4",
  735. "mockery/mockery": "^1.2",
  736. "phan/phan": "^2.4",
  737. "phpunit/phpunit": "^7.5.1"
  738. },
  739. "time": "2020-11-01T20:34:43+00:00",
  740. "type": "library",
  741. "installation-source": "dist",
  742. "autoload": {
  743. "psr-4": {
  744. "PHPHtmlParser\\": "src/PHPHtmlParser"
  745. }
  746. },
  747. "notification-url": "https://packagist.org/downloads/",
  748. "license": [
  749. "MIT"
  750. ],
  751. "authors": [
  752. {
  753. "name": "Gilles Paquette",
  754. "email": "paquettg@gmail.com",
  755. "homepage": "http://gillespaquette.ca"
  756. }
  757. ],
  758. "description": "An HTML DOM parser. It allows you to manipulate HTML. Find tags on an HTML page with selectors just like jQuery.",
  759. "homepage": "https://github.com/paquettg/php-html-parser",
  760. "keywords": [
  761. "dom",
  762. "html",
  763. "parser"
  764. ],
  765. "support": {
  766. "issues": "https://github.com/paquettg/php-html-parser/issues",
  767. "source": "https://github.com/paquettg/php-html-parser/tree/3.1.1"
  768. },
  769. "funding": [
  770. {
  771. "url": "https://tidelift.com/funding/github/packagist/paquettg/php-html-parser",
  772. "type": "tidelift"
  773. }
  774. ],
  775. "install-path": "../paquettg/php-html-parser"
  776. },
  777. {
  778. "name": "paquettg/string-encode",
  779. "version": "1.0.1",
  780. "version_normalized": "1.0.1.0",
  781. "source": {
  782. "type": "git",
  783. "url": "https://github.com/paquettg/string-encoder.git",
  784. "reference": "a8708e9fac9d5ddfc8fc2aac6004e2cd05d80fee"
  785. },
  786. "dist": {
  787. "type": "zip",
  788. "url": "https://api.github.com/repos/paquettg/string-encoder/zipball/a8708e9fac9d5ddfc8fc2aac6004e2cd05d80fee",
  789. "reference": "a8708e9fac9d5ddfc8fc2aac6004e2cd05d80fee",
  790. "shasum": ""
  791. },
  792. "require": {
  793. "php": ">=7.1"
  794. },
  795. "require-dev": {
  796. "phpunit/phpunit": "^7.5.1"
  797. },
  798. "time": "2018-12-21T02:25:09+00:00",
  799. "type": "library",
  800. "installation-source": "dist",
  801. "autoload": {
  802. "psr-0": {
  803. "stringEncode": "src/"
  804. }
  805. },
  806. "notification-url": "https://packagist.org/downloads/",
  807. "license": [
  808. "MIT"
  809. ],
  810. "authors": [
  811. {
  812. "name": "Gilles Paquette",
  813. "email": "paquettg@gmail.com",
  814. "homepage": "http://gillespaquette.ca"
  815. }
  816. ],
  817. "description": "Facilitating the process of altering string encoding in PHP.",
  818. "homepage": "https://github.com/paquettg/string-encoder",
  819. "keywords": [
  820. "charset",
  821. "encoding",
  822. "string"
  823. ],
  824. "support": {
  825. "issues": "https://github.com/paquettg/string-encoder/issues",
  826. "source": "https://github.com/paquettg/string-encoder/tree/1.0.1"
  827. },
  828. "install-path": "../paquettg/string-encode"
  829. },
  830. {
  831. "name": "php-http/httplug",
  832. "version": "2.4.0",
  833. "version_normalized": "2.4.0.0",
  834. "source": {
  835. "type": "git",
  836. "url": "https://github.com/php-http/httplug.git",
  837. "reference": "625ad742c360c8ac580fcc647a1541d29e257f67"
  838. },
  839. "dist": {
  840. "type": "zip",
  841. "url": "https://api.github.com/repos/php-http/httplug/zipball/625ad742c360c8ac580fcc647a1541d29e257f67",
  842. "reference": "625ad742c360c8ac580fcc647a1541d29e257f67",
  843. "shasum": ""
  844. },
  845. "require": {
  846. "php": "^7.1 || ^8.0",
  847. "php-http/promise": "^1.1",
  848. "psr/http-client": "^1.0",
  849. "psr/http-message": "^1.0 || ^2.0"
  850. },
  851. "require-dev": {
  852. "friends-of-phpspec/phpspec-code-coverage": "^4.1 || ^5.0 || ^6.0",
  853. "phpspec/phpspec": "^5.1 || ^6.0 || ^7.0"
  854. },
  855. "time": "2023-04-14T15:10:03+00:00",
  856. "type": "library",
  857. "installation-source": "dist",
  858. "autoload": {
  859. "psr-4": {
  860. "Http\\Client\\": "src/"
  861. }
  862. },
  863. "notification-url": "https://packagist.org/downloads/",
  864. "license": [
  865. "MIT"
  866. ],
  867. "authors": [
  868. {
  869. "name": "Eric GELOEN",
  870. "email": "geloen.eric@gmail.com"
  871. },
  872. {
  873. "name": "Márk Sági-Kazár",
  874. "email": "mark.sagikazar@gmail.com",
  875. "homepage": "https://sagikazarmark.hu"
  876. }
  877. ],
  878. "description": "HTTPlug, the HTTP client abstraction for PHP",
  879. "homepage": "http://httplug.io",
  880. "keywords": [
  881. "client",
  882. "http"
  883. ],
  884. "support": {
  885. "issues": "https://github.com/php-http/httplug/issues",
  886. "source": "https://github.com/php-http/httplug/tree/2.4.0"
  887. },
  888. "install-path": "../php-http/httplug"
  889. },
  890. {
  891. "name": "php-http/promise",
  892. "version": "1.3.1",
  893. "version_normalized": "1.3.1.0",
  894. "source": {
  895. "type": "git",
  896. "url": "https://github.com/php-http/promise.git",
  897. "reference": "fc85b1fba37c169a69a07ef0d5a8075770cc1f83"
  898. },
  899. "dist": {
  900. "type": "zip",
  901. "url": "https://api.github.com/repos/php-http/promise/zipball/fc85b1fba37c169a69a07ef0d5a8075770cc1f83",
  902. "reference": "fc85b1fba37c169a69a07ef0d5a8075770cc1f83",
  903. "shasum": ""
  904. },
  905. "require": {
  906. "php": "^7.1 || ^8.0"
  907. },
  908. "require-dev": {
  909. "friends-of-phpspec/phpspec-code-coverage": "^4.3.2 || ^6.3",
  910. "phpspec/phpspec": "^5.1.2 || ^6.2 || ^7.4"
  911. },
  912. "time": "2024-03-15T13:55:21+00:00",
  913. "type": "library",
  914. "installation-source": "dist",
  915. "autoload": {
  916. "psr-4": {
  917. "Http\\Promise\\": "src/"
  918. }
  919. },
  920. "notification-url": "https://packagist.org/downloads/",
  921. "license": [
  922. "MIT"
  923. ],
  924. "authors": [
  925. {
  926. "name": "Joel Wurtz",
  927. "email": "joel.wurtz@gmail.com"
  928. },
  929. {
  930. "name": "Márk Sági-Kazár",
  931. "email": "mark.sagikazar@gmail.com"
  932. }
  933. ],
  934. "description": "Promise used for asynchronous HTTP requests",
  935. "homepage": "http://httplug.io",
  936. "keywords": [
  937. "promise"
  938. ],
  939. "support": {
  940. "issues": "https://github.com/php-http/promise/issues",
  941. "source": "https://github.com/php-http/promise/tree/1.3.1"
  942. },
  943. "install-path": "../php-http/promise"
  944. },
  945. {
  946. "name": "psr/container",
  947. "version": "1.1.2",
  948. "version_normalized": "1.1.2.0",
  949. "source": {
  950. "type": "git",
  951. "url": "https://github.com/php-fig/container.git",
  952. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  953. },
  954. "dist": {
  955. "type": "zip",
  956. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  957. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  958. "shasum": ""
  959. },
  960. "require": {
  961. "php": ">=7.4.0"
  962. },
  963. "time": "2021-11-05T16:50:12+00:00",
  964. "type": "library",
  965. "installation-source": "dist",
  966. "autoload": {
  967. "psr-4": {
  968. "Psr\\Container\\": "src/"
  969. }
  970. },
  971. "notification-url": "https://packagist.org/downloads/",
  972. "license": [
  973. "MIT"
  974. ],
  975. "authors": [
  976. {
  977. "name": "PHP-FIG",
  978. "homepage": "https://www.php-fig.org/"
  979. }
  980. ],
  981. "description": "Common Container Interface (PHP FIG PSR-11)",
  982. "homepage": "https://github.com/php-fig/container",
  983. "keywords": [
  984. "PSR-11",
  985. "container",
  986. "container-interface",
  987. "container-interop",
  988. "psr"
  989. ],
  990. "support": {
  991. "issues": "https://github.com/php-fig/container/issues",
  992. "source": "https://github.com/php-fig/container/tree/1.1.2"
  993. },
  994. "install-path": "../psr/container"
  995. },
  996. {
  997. "name": "psr/http-client",
  998. "version": "1.0.3",
  999. "version_normalized": "1.0.3.0",
  1000. "source": {
  1001. "type": "git",
  1002. "url": "https://github.com/php-fig/http-client.git",
  1003. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  1004. },
  1005. "dist": {
  1006. "type": "zip",
  1007. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  1008. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  1009. "shasum": ""
  1010. },
  1011. "require": {
  1012. "php": "^7.0 || ^8.0",
  1013. "psr/http-message": "^1.0 || ^2.0"
  1014. },
  1015. "time": "2023-09-23T14:17:50+00:00",
  1016. "type": "library",
  1017. "extra": {
  1018. "branch-alias": {
  1019. "dev-master": "1.0.x-dev"
  1020. }
  1021. },
  1022. "installation-source": "dist",
  1023. "autoload": {
  1024. "psr-4": {
  1025. "Psr\\Http\\Client\\": "src/"
  1026. }
  1027. },
  1028. "notification-url": "https://packagist.org/downloads/",
  1029. "license": [
  1030. "MIT"
  1031. ],
  1032. "authors": [
  1033. {
  1034. "name": "PHP-FIG",
  1035. "homepage": "https://www.php-fig.org/"
  1036. }
  1037. ],
  1038. "description": "Common interface for HTTP clients",
  1039. "homepage": "https://github.com/php-fig/http-client",
  1040. "keywords": [
  1041. "http",
  1042. "http-client",
  1043. "psr",
  1044. "psr-18"
  1045. ],
  1046. "support": {
  1047. "source": "https://github.com/php-fig/http-client"
  1048. },
  1049. "install-path": "../psr/http-client"
  1050. },
  1051. {
  1052. "name": "psr/http-message",
  1053. "version": "1.1",
  1054. "version_normalized": "1.1.0.0",
  1055. "source": {
  1056. "type": "git",
  1057. "url": "https://github.com/php-fig/http-message.git",
  1058. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  1059. },
  1060. "dist": {
  1061. "type": "zip",
  1062. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  1063. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  1064. "shasum": ""
  1065. },
  1066. "require": {
  1067. "php": "^7.2 || ^8.0"
  1068. },
  1069. "time": "2023-04-04T09:50:52+00:00",
  1070. "type": "library",
  1071. "extra": {
  1072. "branch-alias": {
  1073. "dev-master": "1.1.x-dev"
  1074. }
  1075. },
  1076. "installation-source": "dist",
  1077. "autoload": {
  1078. "psr-4": {
  1079. "Psr\\Http\\Message\\": "src/"
  1080. }
  1081. },
  1082. "notification-url": "https://packagist.org/downloads/",
  1083. "license": [
  1084. "MIT"
  1085. ],
  1086. "authors": [
  1087. {
  1088. "name": "PHP-FIG",
  1089. "homepage": "http://www.php-fig.org/"
  1090. }
  1091. ],
  1092. "description": "Common interface for HTTP messages",
  1093. "homepage": "https://github.com/php-fig/http-message",
  1094. "keywords": [
  1095. "http",
  1096. "http-message",
  1097. "psr",
  1098. "psr-7",
  1099. "request",
  1100. "response"
  1101. ],
  1102. "support": {
  1103. "source": "https://github.com/php-fig/http-message/tree/1.1"
  1104. },
  1105. "install-path": "../psr/http-message"
  1106. },
  1107. {
  1108. "name": "psr/log",
  1109. "version": "1.1.4",
  1110. "version_normalized": "1.1.4.0",
  1111. "source": {
  1112. "type": "git",
  1113. "url": "https://github.com/php-fig/log.git",
  1114. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  1115. },
  1116. "dist": {
  1117. "type": "zip",
  1118. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  1119. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  1120. "shasum": ""
  1121. },
  1122. "require": {
  1123. "php": ">=5.3.0"
  1124. },
  1125. "time": "2021-05-03T11:20:27+00:00",
  1126. "type": "library",
  1127. "extra": {
  1128. "branch-alias": {
  1129. "dev-master": "1.1.x-dev"
  1130. }
  1131. },
  1132. "installation-source": "dist",
  1133. "autoload": {
  1134. "psr-4": {
  1135. "Psr\\Log\\": "Psr/Log/"
  1136. }
  1137. },
  1138. "notification-url": "https://packagist.org/downloads/",
  1139. "license": [
  1140. "MIT"
  1141. ],
  1142. "authors": [
  1143. {
  1144. "name": "PHP-FIG",
  1145. "homepage": "https://www.php-fig.org/"
  1146. }
  1147. ],
  1148. "description": "Common interface for logging libraries",
  1149. "homepage": "https://github.com/php-fig/log",
  1150. "keywords": [
  1151. "log",
  1152. "psr",
  1153. "psr-3"
  1154. ],
  1155. "support": {
  1156. "source": "https://github.com/php-fig/log/tree/1.1.4"
  1157. },
  1158. "install-path": "../psr/log"
  1159. },
  1160. {
  1161. "name": "psr/simple-cache",
  1162. "version": "1.0.1",
  1163. "version_normalized": "1.0.1.0",
  1164. "source": {
  1165. "type": "git",
  1166. "url": "https://github.com/php-fig/simple-cache.git",
  1167. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  1168. },
  1169. "dist": {
  1170. "type": "zip",
  1171. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1172. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1173. "shasum": ""
  1174. },
  1175. "require": {
  1176. "php": ">=5.3.0"
  1177. },
  1178. "time": "2017-10-23T01:57:42+00:00",
  1179. "type": "library",
  1180. "extra": {
  1181. "branch-alias": {
  1182. "dev-master": "1.0.x-dev"
  1183. }
  1184. },
  1185. "installation-source": "dist",
  1186. "autoload": {
  1187. "psr-4": {
  1188. "Psr\\SimpleCache\\": "src/"
  1189. }
  1190. },
  1191. "notification-url": "https://packagist.org/downloads/",
  1192. "license": [
  1193. "MIT"
  1194. ],
  1195. "authors": [
  1196. {
  1197. "name": "PHP-FIG",
  1198. "homepage": "http://www.php-fig.org/"
  1199. }
  1200. ],
  1201. "description": "Common interfaces for simple caching",
  1202. "keywords": [
  1203. "cache",
  1204. "caching",
  1205. "psr",
  1206. "psr-16",
  1207. "simple-cache"
  1208. ],
  1209. "support": {
  1210. "source": "https://github.com/php-fig/simple-cache/tree/master"
  1211. },
  1212. "install-path": "../psr/simple-cache"
  1213. },
  1214. {
  1215. "name": "ralouphie/getallheaders",
  1216. "version": "3.0.3",
  1217. "version_normalized": "3.0.3.0",
  1218. "source": {
  1219. "type": "git",
  1220. "url": "https://github.com/ralouphie/getallheaders.git",
  1221. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  1222. },
  1223. "dist": {
  1224. "type": "zip",
  1225. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  1226. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  1227. "shasum": ""
  1228. },
  1229. "require": {
  1230. "php": ">=5.6"
  1231. },
  1232. "require-dev": {
  1233. "php-coveralls/php-coveralls": "^2.1",
  1234. "phpunit/phpunit": "^5 || ^6.5"
  1235. },
  1236. "time": "2019-03-08T08:55:37+00:00",
  1237. "type": "library",
  1238. "installation-source": "dist",
  1239. "autoload": {
  1240. "files": [
  1241. "src/getallheaders.php"
  1242. ]
  1243. },
  1244. "notification-url": "https://packagist.org/downloads/",
  1245. "license": [
  1246. "MIT"
  1247. ],
  1248. "authors": [
  1249. {
  1250. "name": "Ralph Khattar",
  1251. "email": "ralph.khattar@gmail.com"
  1252. }
  1253. ],
  1254. "description": "A polyfill for getallheaders.",
  1255. "support": {
  1256. "issues": "https://github.com/ralouphie/getallheaders/issues",
  1257. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  1258. },
  1259. "install-path": "../ralouphie/getallheaders"
  1260. },
  1261. {
  1262. "name": "symfony/deprecation-contracts",
  1263. "version": "v2.5.3",
  1264. "version_normalized": "2.5.3.0",
  1265. "source": {
  1266. "type": "git",
  1267. "url": "https://github.com/symfony/deprecation-contracts.git",
  1268. "reference": "80d075412b557d41002320b96a096ca65aa2c98d"
  1269. },
  1270. "dist": {
  1271. "type": "zip",
  1272. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/80d075412b557d41002320b96a096ca65aa2c98d",
  1273. "reference": "80d075412b557d41002320b96a096ca65aa2c98d",
  1274. "shasum": ""
  1275. },
  1276. "require": {
  1277. "php": ">=7.1"
  1278. },
  1279. "time": "2023-01-24T14:02:46+00:00",
  1280. "type": "library",
  1281. "extra": {
  1282. "branch-alias": {
  1283. "dev-main": "2.5-dev"
  1284. },
  1285. "thanks": {
  1286. "name": "symfony/contracts",
  1287. "url": "https://github.com/symfony/contracts"
  1288. }
  1289. },
  1290. "installation-source": "dist",
  1291. "autoload": {
  1292. "files": [
  1293. "function.php"
  1294. ]
  1295. },
  1296. "notification-url": "https://packagist.org/downloads/",
  1297. "license": [
  1298. "MIT"
  1299. ],
  1300. "authors": [
  1301. {
  1302. "name": "Nicolas Grekas",
  1303. "email": "p@tchwork.com"
  1304. },
  1305. {
  1306. "name": "Symfony Community",
  1307. "homepage": "https://symfony.com/contributors"
  1308. }
  1309. ],
  1310. "description": "A generic function and convention to trigger deprecation notices",
  1311. "homepage": "https://symfony.com",
  1312. "support": {
  1313. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.3"
  1314. },
  1315. "funding": [
  1316. {
  1317. "url": "https://symfony.com/sponsor",
  1318. "type": "custom"
  1319. },
  1320. {
  1321. "url": "https://github.com/fabpot",
  1322. "type": "github"
  1323. },
  1324. {
  1325. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1326. "type": "tidelift"
  1327. }
  1328. ],
  1329. "install-path": "../symfony/deprecation-contracts"
  1330. },
  1331. {
  1332. "name": "symfony/polyfill-mbstring",
  1333. "version": "v1.30.0",
  1334. "version_normalized": "1.30.0.0",
  1335. "source": {
  1336. "type": "git",
  1337. "url": "https://github.com/symfony/polyfill-mbstring.git",
  1338. "reference": "fd22ab50000ef01661e2a31d850ebaa297f8e03c"
  1339. },
  1340. "dist": {
  1341. "type": "zip",
  1342. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fd22ab50000ef01661e2a31d850ebaa297f8e03c",
  1343. "reference": "fd22ab50000ef01661e2a31d850ebaa297f8e03c",
  1344. "shasum": ""
  1345. },
  1346. "require": {
  1347. "php": ">=7.1"
  1348. },
  1349. "provide": {
  1350. "ext-mbstring": "*"
  1351. },
  1352. "suggest": {
  1353. "ext-mbstring": "For best performance"
  1354. },
  1355. "time": "2024-06-19T12:30:46+00:00",
  1356. "type": "library",
  1357. "extra": {
  1358. "thanks": {
  1359. "name": "symfony/polyfill",
  1360. "url": "https://github.com/symfony/polyfill"
  1361. }
  1362. },
  1363. "installation-source": "dist",
  1364. "autoload": {
  1365. "files": [
  1366. "bootstrap.php"
  1367. ],
  1368. "psr-4": {
  1369. "Symfony\\Polyfill\\Mbstring\\": ""
  1370. }
  1371. },
  1372. "notification-url": "https://packagist.org/downloads/",
  1373. "license": [
  1374. "MIT"
  1375. ],
  1376. "authors": [
  1377. {
  1378. "name": "Nicolas Grekas",
  1379. "email": "p@tchwork.com"
  1380. },
  1381. {
  1382. "name": "Symfony Community",
  1383. "homepage": "https://symfony.com/contributors"
  1384. }
  1385. ],
  1386. "description": "Symfony polyfill for the Mbstring extension",
  1387. "homepage": "https://symfony.com",
  1388. "keywords": [
  1389. "compatibility",
  1390. "mbstring",
  1391. "polyfill",
  1392. "portable",
  1393. "shim"
  1394. ],
  1395. "support": {
  1396. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.30.0"
  1397. },
  1398. "funding": [
  1399. {
  1400. "url": "https://symfony.com/sponsor",
  1401. "type": "custom"
  1402. },
  1403. {
  1404. "url": "https://github.com/fabpot",
  1405. "type": "github"
  1406. },
  1407. {
  1408. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1409. "type": "tidelift"
  1410. }
  1411. ],
  1412. "install-path": "../symfony/polyfill-mbstring"
  1413. },
  1414. {
  1415. "name": "symfony/polyfill-php72",
  1416. "version": "v1.30.0",
  1417. "version_normalized": "1.30.0.0",
  1418. "source": {
  1419. "type": "git",
  1420. "url": "https://github.com/symfony/polyfill-php72.git",
  1421. "reference": "10112722600777e02d2745716b70c5db4ca70442"
  1422. },
  1423. "dist": {
  1424. "type": "zip",
  1425. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/10112722600777e02d2745716b70c5db4ca70442",
  1426. "reference": "10112722600777e02d2745716b70c5db4ca70442",
  1427. "shasum": ""
  1428. },
  1429. "require": {
  1430. "php": ">=7.1"
  1431. },
  1432. "time": "2024-06-19T12:30:46+00:00",
  1433. "type": "library",
  1434. "extra": {
  1435. "thanks": {
  1436. "name": "symfony/polyfill",
  1437. "url": "https://github.com/symfony/polyfill"
  1438. }
  1439. },
  1440. "installation-source": "dist",
  1441. "autoload": {
  1442. "files": [
  1443. "bootstrap.php"
  1444. ],
  1445. "psr-4": {
  1446. "Symfony\\Polyfill\\Php72\\": ""
  1447. }
  1448. },
  1449. "notification-url": "https://packagist.org/downloads/",
  1450. "license": [
  1451. "MIT"
  1452. ],
  1453. "authors": [
  1454. {
  1455. "name": "Nicolas Grekas",
  1456. "email": "p@tchwork.com"
  1457. },
  1458. {
  1459. "name": "Symfony Community",
  1460. "homepage": "https://symfony.com/contributors"
  1461. }
  1462. ],
  1463. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  1464. "homepage": "https://symfony.com",
  1465. "keywords": [
  1466. "compatibility",
  1467. "polyfill",
  1468. "portable",
  1469. "shim"
  1470. ],
  1471. "support": {
  1472. "source": "https://github.com/symfony/polyfill-php72/tree/v1.30.0"
  1473. },
  1474. "funding": [
  1475. {
  1476. "url": "https://symfony.com/sponsor",
  1477. "type": "custom"
  1478. },
  1479. {
  1480. "url": "https://github.com/fabpot",
  1481. "type": "github"
  1482. },
  1483. {
  1484. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1485. "type": "tidelift"
  1486. }
  1487. ],
  1488. "install-path": "../symfony/polyfill-php72"
  1489. },
  1490. {
  1491. "name": "symfony/polyfill-php80",
  1492. "version": "v1.30.0",
  1493. "version_normalized": "1.30.0.0",
  1494. "source": {
  1495. "type": "git",
  1496. "url": "https://github.com/symfony/polyfill-php80.git",
  1497. "reference": "77fa7995ac1b21ab60769b7323d600a991a90433"
  1498. },
  1499. "dist": {
  1500. "type": "zip",
  1501. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/77fa7995ac1b21ab60769b7323d600a991a90433",
  1502. "reference": "77fa7995ac1b21ab60769b7323d600a991a90433",
  1503. "shasum": ""
  1504. },
  1505. "require": {
  1506. "php": ">=7.1"
  1507. },
  1508. "time": "2024-05-31T15:07:36+00:00",
  1509. "type": "library",
  1510. "extra": {
  1511. "thanks": {
  1512. "name": "symfony/polyfill",
  1513. "url": "https://github.com/symfony/polyfill"
  1514. }
  1515. },
  1516. "installation-source": "dist",
  1517. "autoload": {
  1518. "files": [
  1519. "bootstrap.php"
  1520. ],
  1521. "psr-4": {
  1522. "Symfony\\Polyfill\\Php80\\": ""
  1523. },
  1524. "classmap": [
  1525. "Resources/stubs"
  1526. ]
  1527. },
  1528. "notification-url": "https://packagist.org/downloads/",
  1529. "license": [
  1530. "MIT"
  1531. ],
  1532. "authors": [
  1533. {
  1534. "name": "Ion Bazan",
  1535. "email": "ion.bazan@gmail.com"
  1536. },
  1537. {
  1538. "name": "Nicolas Grekas",
  1539. "email": "p@tchwork.com"
  1540. },
  1541. {
  1542. "name": "Symfony Community",
  1543. "homepage": "https://symfony.com/contributors"
  1544. }
  1545. ],
  1546. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  1547. "homepage": "https://symfony.com",
  1548. "keywords": [
  1549. "compatibility",
  1550. "polyfill",
  1551. "portable",
  1552. "shim"
  1553. ],
  1554. "support": {
  1555. "source": "https://github.com/symfony/polyfill-php80/tree/v1.30.0"
  1556. },
  1557. "funding": [
  1558. {
  1559. "url": "https://symfony.com/sponsor",
  1560. "type": "custom"
  1561. },
  1562. {
  1563. "url": "https://github.com/fabpot",
  1564. "type": "github"
  1565. },
  1566. {
  1567. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1568. "type": "tidelift"
  1569. }
  1570. ],
  1571. "install-path": "../symfony/polyfill-php80"
  1572. },
  1573. {
  1574. "name": "symfony/var-dumper",
  1575. "version": "v4.4.47",
  1576. "version_normalized": "4.4.47.0",
  1577. "source": {
  1578. "type": "git",
  1579. "url": "https://github.com/symfony/var-dumper.git",
  1580. "reference": "1069c7a3fca74578022fab6f81643248d02f8e63"
  1581. },
  1582. "dist": {
  1583. "type": "zip",
  1584. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/1069c7a3fca74578022fab6f81643248d02f8e63",
  1585. "reference": "1069c7a3fca74578022fab6f81643248d02f8e63",
  1586. "shasum": ""
  1587. },
  1588. "require": {
  1589. "php": ">=7.1.3",
  1590. "symfony/polyfill-mbstring": "~1.0",
  1591. "symfony/polyfill-php72": "~1.5",
  1592. "symfony/polyfill-php80": "^1.16"
  1593. },
  1594. "conflict": {
  1595. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  1596. "symfony/console": "<3.4"
  1597. },
  1598. "require-dev": {
  1599. "ext-iconv": "*",
  1600. "symfony/console": "^3.4|^4.0|^5.0",
  1601. "symfony/process": "^4.4|^5.0",
  1602. "twig/twig": "^1.43|^2.13|^3.0.4"
  1603. },
  1604. "suggest": {
  1605. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  1606. "ext-intl": "To show region name in time zone dump",
  1607. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  1608. },
  1609. "time": "2022-10-03T15:15:11+00:00",
  1610. "bin": [
  1611. "Resources/bin/var-dump-server"
  1612. ],
  1613. "type": "library",
  1614. "installation-source": "dist",
  1615. "autoload": {
  1616. "files": [
  1617. "Resources/functions/dump.php"
  1618. ],
  1619. "psr-4": {
  1620. "Symfony\\Component\\VarDumper\\": ""
  1621. },
  1622. "exclude-from-classmap": [
  1623. "/Tests/"
  1624. ]
  1625. },
  1626. "notification-url": "https://packagist.org/downloads/",
  1627. "license": [
  1628. "MIT"
  1629. ],
  1630. "authors": [
  1631. {
  1632. "name": "Nicolas Grekas",
  1633. "email": "p@tchwork.com"
  1634. },
  1635. {
  1636. "name": "Symfony Community",
  1637. "homepage": "https://symfony.com/contributors"
  1638. }
  1639. ],
  1640. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  1641. "homepage": "https://symfony.com",
  1642. "keywords": [
  1643. "debug",
  1644. "dump"
  1645. ],
  1646. "support": {
  1647. "source": "https://github.com/symfony/var-dumper/tree/v4.4.47"
  1648. },
  1649. "funding": [
  1650. {
  1651. "url": "https://symfony.com/sponsor",
  1652. "type": "custom"
  1653. },
  1654. {
  1655. "url": "https://github.com/fabpot",
  1656. "type": "github"
  1657. },
  1658. {
  1659. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1660. "type": "tidelift"
  1661. }
  1662. ],
  1663. "install-path": "../symfony/var-dumper"
  1664. },
  1665. {
  1666. "name": "topthink/framework",
  1667. "version": "v6.1.5",
  1668. "version_normalized": "6.1.5.0",
  1669. "source": {
  1670. "type": "git",
  1671. "url": "https://github.com/top-think/framework.git",
  1672. "reference": "57d1950a1844ef8d3098ea290032aeb92e2e32c3"
  1673. },
  1674. "dist": {
  1675. "type": "zip",
  1676. "url": "https://api.github.com/repos/top-think/framework/zipball/57d1950a1844ef8d3098ea290032aeb92e2e32c3",
  1677. "reference": "57d1950a1844ef8d3098ea290032aeb92e2e32c3",
  1678. "shasum": ""
  1679. },
  1680. "require": {
  1681. "ext-json": "*",
  1682. "ext-mbstring": "*",
  1683. "php": ">=7.2.5",
  1684. "psr/container": "~1.0",
  1685. "psr/http-message": "^1.0",
  1686. "psr/log": "~1.0",
  1687. "psr/simple-cache": "^1.0",
  1688. "topthink/think-helper": "^3.1.1",
  1689. "topthink/think-orm": "^2.0|^3.0"
  1690. },
  1691. "require-dev": {
  1692. "guzzlehttp/psr7": "^2.1.0",
  1693. "mikey179/vfsstream": "^1.6",
  1694. "mockery/mockery": "^1.2",
  1695. "phpunit/phpunit": "^7.0"
  1696. },
  1697. "time": "2024-04-16T02:01:19+00:00",
  1698. "type": "library",
  1699. "installation-source": "dist",
  1700. "autoload": {
  1701. "files": [],
  1702. "psr-4": {
  1703. "think\\": "src/think/"
  1704. }
  1705. },
  1706. "notification-url": "https://packagist.org/downloads/",
  1707. "license": [
  1708. "Apache-2.0"
  1709. ],
  1710. "authors": [
  1711. {
  1712. "name": "liu21st",
  1713. "email": "liu21st@gmail.com"
  1714. },
  1715. {
  1716. "name": "yunwuxin",
  1717. "email": "448901948@qq.com"
  1718. }
  1719. ],
  1720. "description": "The ThinkPHP Framework.",
  1721. "homepage": "http://thinkphp.cn/",
  1722. "keywords": [
  1723. "framework",
  1724. "orm",
  1725. "thinkphp"
  1726. ],
  1727. "support": {
  1728. "issues": "https://github.com/top-think/framework/issues",
  1729. "source": "https://github.com/top-think/framework/tree/v6.1.5"
  1730. },
  1731. "install-path": "../topthink/framework"
  1732. },
  1733. {
  1734. "name": "topthink/think-filesystem",
  1735. "version": "v2.0.2",
  1736. "version_normalized": "2.0.2.0",
  1737. "source": {
  1738. "type": "git",
  1739. "url": "https://github.com/top-think/think-filesystem.git",
  1740. "reference": "c08503232fcae0c3c7fefae5e6b5c841ffe09f2f"
  1741. },
  1742. "dist": {
  1743. "type": "zip",
  1744. "url": "https://api.github.com/repos/top-think/think-filesystem/zipball/c08503232fcae0c3c7fefae5e6b5c841ffe09f2f",
  1745. "reference": "c08503232fcae0c3c7fefae5e6b5c841ffe09f2f",
  1746. "shasum": ""
  1747. },
  1748. "require": {
  1749. "league/flysystem": "^2.0",
  1750. "topthink/framework": "^6.1|^8.0"
  1751. },
  1752. "require-dev": {
  1753. "mikey179/vfsstream": "^1.6",
  1754. "mockery/mockery": "^1.2",
  1755. "phpunit/phpunit": "^8.0"
  1756. },
  1757. "time": "2023-02-08T01:23:42+00:00",
  1758. "type": "library",
  1759. "installation-source": "dist",
  1760. "autoload": {
  1761. "psr-4": {
  1762. "think\\": "src"
  1763. }
  1764. },
  1765. "notification-url": "https://packagist.org/downloads/",
  1766. "license": [
  1767. "Apache-2.0"
  1768. ],
  1769. "authors": [
  1770. {
  1771. "name": "yunwuxin",
  1772. "email": "448901948@qq.com"
  1773. }
  1774. ],
  1775. "description": "The ThinkPHP6.1 Filesystem Package",
  1776. "support": {
  1777. "issues": "https://github.com/top-think/think-filesystem/issues",
  1778. "source": "https://github.com/top-think/think-filesystem/tree/v2.0.2"
  1779. },
  1780. "install-path": "../topthink/think-filesystem"
  1781. },
  1782. {
  1783. "name": "topthink/think-helper",
  1784. "version": "v3.1.8",
  1785. "version_normalized": "3.1.8.0",
  1786. "source": {
  1787. "type": "git",
  1788. "url": "https://github.com/top-think/think-helper.git",
  1789. "reference": "612eea76eec2a22f41b0e24be27f49454e4fd5f5"
  1790. },
  1791. "dist": {
  1792. "type": "zip",
  1793. "url": "https://api.github.com/repos/top-think/think-helper/zipball/612eea76eec2a22f41b0e24be27f49454e4fd5f5",
  1794. "reference": "612eea76eec2a22f41b0e24be27f49454e4fd5f5",
  1795. "shasum": ""
  1796. },
  1797. "require": {
  1798. "php": ">=7.1.0"
  1799. },
  1800. "require-dev": {
  1801. "phpunit/phpunit": "^9.5"
  1802. },
  1803. "time": "2024-08-26T15:07:58+00:00",
  1804. "type": "library",
  1805. "installation-source": "dist",
  1806. "autoload": {
  1807. "files": [
  1808. "src/helper.php"
  1809. ],
  1810. "psr-4": {
  1811. "think\\": "src"
  1812. }
  1813. },
  1814. "notification-url": "https://packagist.org/downloads/",
  1815. "license": [
  1816. "Apache-2.0"
  1817. ],
  1818. "authors": [
  1819. {
  1820. "name": "yunwuxin",
  1821. "email": "448901948@qq.com"
  1822. }
  1823. ],
  1824. "description": "The ThinkPHP6 Helper Package",
  1825. "support": {
  1826. "issues": "https://github.com/top-think/think-helper/issues",
  1827. "source": "https://github.com/top-think/think-helper/tree/v3.1.8"
  1828. },
  1829. "install-path": "../topthink/think-helper"
  1830. },
  1831. {
  1832. "name": "topthink/think-orm",
  1833. "version": "v2.0.61",
  1834. "version_normalized": "2.0.61.0",
  1835. "source": {
  1836. "type": "git",
  1837. "url": "https://github.com/top-think/think-orm.git",
  1838. "reference": "10528ebf4a5106b19c3bac9c6deae7a67ff49de6"
  1839. },
  1840. "dist": {
  1841. "type": "zip",
  1842. "url": "https://api.github.com/repos/top-think/think-orm/zipball/10528ebf4a5106b19c3bac9c6deae7a67ff49de6",
  1843. "reference": "10528ebf4a5106b19c3bac9c6deae7a67ff49de6",
  1844. "shasum": ""
  1845. },
  1846. "require": {
  1847. "ext-json": "*",
  1848. "ext-pdo": "*",
  1849. "php": ">=7.1.0",
  1850. "psr/log": "^1.0|^2.0",
  1851. "psr/simple-cache": "^1.0|^2.0",
  1852. "topthink/think-helper": "^3.1"
  1853. },
  1854. "require-dev": {
  1855. "phpunit/phpunit": "^7|^8|^9.5"
  1856. },
  1857. "time": "2023-04-20T14:27:51+00:00",
  1858. "type": "library",
  1859. "installation-source": "dist",
  1860. "autoload": {
  1861. "files": [
  1862. "stubs/load_stubs.php"
  1863. ],
  1864. "psr-4": {
  1865. "think\\": "src"
  1866. }
  1867. },
  1868. "notification-url": "https://packagist.org/downloads/",
  1869. "license": [
  1870. "Apache-2.0"
  1871. ],
  1872. "authors": [
  1873. {
  1874. "name": "liu21st",
  1875. "email": "liu21st@gmail.com"
  1876. }
  1877. ],
  1878. "description": "think orm",
  1879. "keywords": [
  1880. "database",
  1881. "orm"
  1882. ],
  1883. "support": {
  1884. "issues": "https://github.com/top-think/think-orm/issues",
  1885. "source": "https://github.com/top-think/think-orm/tree/v2.0.61"
  1886. },
  1887. "install-path": "../topthink/think-orm"
  1888. },
  1889. {
  1890. "name": "topthink/think-template",
  1891. "version": "v2.0.10",
  1892. "version_normalized": "2.0.10.0",
  1893. "source": {
  1894. "type": "git",
  1895. "url": "https://github.com/top-think/think-template.git",
  1896. "reference": "2b28c9f787c94f6c22312c9fe97dd3d926c03e1c"
  1897. },
  1898. "dist": {
  1899. "type": "zip",
  1900. "url": "https://api.github.com/repos/top-think/think-template/zipball/2b28c9f787c94f6c22312c9fe97dd3d926c03e1c",
  1901. "reference": "2b28c9f787c94f6c22312c9fe97dd3d926c03e1c",
  1902. "shasum": ""
  1903. },
  1904. "require": {
  1905. "php": ">=7.1.0",
  1906. "psr/simple-cache": "^1.0"
  1907. },
  1908. "time": "2024-08-12T05:48:57+00:00",
  1909. "type": "library",
  1910. "installation-source": "dist",
  1911. "autoload": {
  1912. "psr-4": {
  1913. "think\\": "src"
  1914. }
  1915. },
  1916. "notification-url": "https://packagist.org/downloads/",
  1917. "license": [
  1918. "Apache-2.0"
  1919. ],
  1920. "authors": [
  1921. {
  1922. "name": "liu21st",
  1923. "email": "liu21st@gmail.com"
  1924. }
  1925. ],
  1926. "description": "the php template engine",
  1927. "support": {
  1928. "issues": "https://github.com/top-think/think-template/issues",
  1929. "source": "https://github.com/top-think/think-template/tree/v2.0.10"
  1930. },
  1931. "install-path": "../topthink/think-template"
  1932. },
  1933. {
  1934. "name": "topthink/think-trace",
  1935. "version": "v1.6",
  1936. "version_normalized": "1.6.0.0",
  1937. "source": {
  1938. "type": "git",
  1939. "url": "https://github.com/top-think/think-trace.git",
  1940. "reference": "136cd5d97e8bdb780e4b5c1637c588ed7ca3e142"
  1941. },
  1942. "dist": {
  1943. "type": "zip",
  1944. "url": "https://api.github.com/repos/top-think/think-trace/zipball/136cd5d97e8bdb780e4b5c1637c588ed7ca3e142",
  1945. "reference": "136cd5d97e8bdb780e4b5c1637c588ed7ca3e142",
  1946. "shasum": ""
  1947. },
  1948. "require": {
  1949. "php": ">=7.1.0",
  1950. "topthink/framework": "^6.0|^8.0"
  1951. },
  1952. "time": "2023-02-07T08:36:32+00:00",
  1953. "type": "library",
  1954. "extra": {
  1955. "think": {
  1956. "services": [
  1957. "think\\trace\\Service"
  1958. ],
  1959. "config": {
  1960. "trace": "src/config.php"
  1961. }
  1962. }
  1963. },
  1964. "installation-source": "dist",
  1965. "autoload": {
  1966. "psr-4": {
  1967. "think\\trace\\": "src"
  1968. }
  1969. },
  1970. "notification-url": "https://packagist.org/downloads/",
  1971. "license": [
  1972. "Apache-2.0"
  1973. ],
  1974. "authors": [
  1975. {
  1976. "name": "liu21st",
  1977. "email": "liu21st@gmail.com"
  1978. }
  1979. ],
  1980. "description": "thinkphp debug trace",
  1981. "support": {
  1982. "issues": "https://github.com/top-think/think-trace/issues",
  1983. "source": "https://github.com/top-think/think-trace/tree/v1.6"
  1984. },
  1985. "install-path": "../topthink/think-trace"
  1986. },
  1987. {
  1988. "name": "topthink/think-view",
  1989. "version": "v1.0.14",
  1990. "version_normalized": "1.0.14.0",
  1991. "source": {
  1992. "type": "git",
  1993. "url": "https://github.com/top-think/think-view.git",
  1994. "reference": "edce0ae2c9551ab65f9e94a222604b0dead3576d"
  1995. },
  1996. "dist": {
  1997. "type": "zip",
  1998. "url": "https://api.github.com/repos/top-think/think-view/zipball/edce0ae2c9551ab65f9e94a222604b0dead3576d",
  1999. "reference": "edce0ae2c9551ab65f9e94a222604b0dead3576d",
  2000. "shasum": ""
  2001. },
  2002. "require": {
  2003. "php": ">=7.1.0",
  2004. "topthink/think-template": "^2.0"
  2005. },
  2006. "time": "2019-11-06T11:40:13+00:00",
  2007. "type": "library",
  2008. "installation-source": "dist",
  2009. "autoload": {
  2010. "psr-4": {
  2011. "think\\view\\driver\\": "src"
  2012. }
  2013. },
  2014. "notification-url": "https://packagist.org/downloads/",
  2015. "license": [
  2016. "Apache-2.0"
  2017. ],
  2018. "authors": [
  2019. {
  2020. "name": "liu21st",
  2021. "email": "liu21st@gmail.com"
  2022. }
  2023. ],
  2024. "description": "thinkphp template driver",
  2025. "support": {
  2026. "issues": "https://github.com/top-think/think-view/issues",
  2027. "source": "https://github.com/top-think/think-view/tree/v1.0.14"
  2028. },
  2029. "install-path": "../topthink/think-view"
  2030. }
  2031. ],
  2032. "dev": true,
  2033. "dev-package-names": [
  2034. "symfony/polyfill-mbstring",
  2035. "symfony/polyfill-php72",
  2036. "symfony/polyfill-php80",
  2037. "symfony/var-dumper",
  2038. "topthink/think-trace"
  2039. ]
  2040. }