composer.lock 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729
  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": "d94c4d92e45b3aac3c6d84e13b61402d",
  8. "packages": [
  9. {
  10. "name": "monolog/monolog",
  11. "version": "2.9.2",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/Seldaek/monolog.git",
  15. "reference": "437cb3628f4cf6042cc10ae97fc2b8472e48ca1f"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/437cb3628f4cf6042cc10ae97fc2b8472e48ca1f",
  20. "reference": "437cb3628f4cf6042cc10ae97fc2b8472e48ca1f",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": ">=7.2",
  25. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  26. },
  27. "provide": {
  28. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  29. },
  30. "require-dev": {
  31. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  32. "doctrine/couchdb": "~1.0@dev",
  33. "elasticsearch/elasticsearch": "^7 || ^8",
  34. "ext-json": "*",
  35. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  36. "guzzlehttp/guzzle": "^7.4",
  37. "guzzlehttp/psr7": "^2.2",
  38. "mongodb/mongodb": "^1.8",
  39. "php-amqplib/php-amqplib": "~2.4 || ^3",
  40. "phpspec/prophecy": "^1.15",
  41. "phpstan/phpstan": "^0.12.91",
  42. "phpunit/phpunit": "^8.5.14",
  43. "predis/predis": "^1.1 || ^2.0",
  44. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  45. "ruflin/elastica": "^7",
  46. "swiftmailer/swiftmailer": "^5.3|^6.0",
  47. "symfony/mailer": "^5.4 || ^6",
  48. "symfony/mime": "^5.4 || ^6"
  49. },
  50. "suggest": {
  51. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  52. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  53. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  54. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  55. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  56. "ext-mbstring": "Allow to work properly with unicode symbols",
  57. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  58. "ext-openssl": "Required to send log messages using SSL",
  59. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  60. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  61. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  62. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  63. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  64. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  65. },
  66. "type": "library",
  67. "extra": {
  68. "branch-alias": {
  69. "dev-main": "2.x-dev"
  70. }
  71. },
  72. "autoload": {
  73. "psr-4": {
  74. "Monolog\\": "src/Monolog"
  75. }
  76. },
  77. "notification-url": "https://packagist.org/downloads/",
  78. "license": [
  79. "MIT"
  80. ],
  81. "authors": [
  82. {
  83. "name": "Jordi Boggiano",
  84. "email": "[email protected]",
  85. "homepage": "https://seld.be"
  86. }
  87. ],
  88. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  89. "homepage": "https://github.com/Seldaek/monolog",
  90. "keywords": [
  91. "log",
  92. "logging",
  93. "psr-3"
  94. ],
  95. "support": {
  96. "issues": "https://github.com/Seldaek/monolog/issues",
  97. "source": "https://github.com/Seldaek/monolog/tree/2.9.2"
  98. },
  99. "funding": [
  100. {
  101. "url": "https://github.com/Seldaek",
  102. "type": "github"
  103. },
  104. {
  105. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  106. "type": "tidelift"
  107. }
  108. ],
  109. "time": "2023-10-27T15:25:26+00:00"
  110. },
  111. {
  112. "name": "nyholm/psr7",
  113. "version": "1.8.0",
  114. "source": {
  115. "type": "git",
  116. "url": "https://github.com/Nyholm/psr7.git",
  117. "reference": "3cb4d163b58589e47b35103e8e5e6a6a475b47be"
  118. },
  119. "dist": {
  120. "type": "zip",
  121. "url": "https://api.github.com/repos/Nyholm/psr7/zipball/3cb4d163b58589e47b35103e8e5e6a6a475b47be",
  122. "reference": "3cb4d163b58589e47b35103e8e5e6a6a475b47be",
  123. "shasum": ""
  124. },
  125. "require": {
  126. "php": ">=7.2",
  127. "psr/http-factory": "^1.0",
  128. "psr/http-message": "^1.1 || ^2.0"
  129. },
  130. "provide": {
  131. "php-http/message-factory-implementation": "1.0",
  132. "psr/http-factory-implementation": "1.0",
  133. "psr/http-message-implementation": "1.0"
  134. },
  135. "require-dev": {
  136. "http-interop/http-factory-tests": "^0.9",
  137. "php-http/message-factory": "^1.0",
  138. "php-http/psr7-integration-tests": "^1.0",
  139. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.4",
  140. "symfony/error-handler": "^4.4"
  141. },
  142. "type": "library",
  143. "extra": {
  144. "branch-alias": {
  145. "dev-master": "1.8-dev"
  146. }
  147. },
  148. "autoload": {
  149. "psr-4": {
  150. "Nyholm\\Psr7\\": "src/"
  151. }
  152. },
  153. "notification-url": "https://packagist.org/downloads/",
  154. "license": [
  155. "MIT"
  156. ],
  157. "authors": [
  158. {
  159. "name": "Tobias Nyholm",
  160. "email": "[email protected]"
  161. },
  162. {
  163. "name": "Martijn van der Ven",
  164. "email": "[email protected]"
  165. }
  166. ],
  167. "description": "A fast PHP7 implementation of PSR-7",
  168. "homepage": "https://tnyholm.se",
  169. "keywords": [
  170. "psr-17",
  171. "psr-7"
  172. ],
  173. "support": {
  174. "issues": "https://github.com/Nyholm/psr7/issues",
  175. "source": "https://github.com/Nyholm/psr7/tree/1.8.0"
  176. },
  177. "funding": [
  178. {
  179. "url": "https://github.com/Zegnat",
  180. "type": "github"
  181. },
  182. {
  183. "url": "https://github.com/nyholm",
  184. "type": "github"
  185. }
  186. ],
  187. "time": "2023-05-02T11:26:24+00:00"
  188. },
  189. {
  190. "name": "psr/container",
  191. "version": "2.0.2",
  192. "source": {
  193. "type": "git",
  194. "url": "https://github.com/php-fig/container.git",
  195. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  196. },
  197. "dist": {
  198. "type": "zip",
  199. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  200. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  201. "shasum": ""
  202. },
  203. "require": {
  204. "php": ">=7.4.0"
  205. },
  206. "type": "library",
  207. "extra": {
  208. "branch-alias": {
  209. "dev-master": "2.0.x-dev"
  210. }
  211. },
  212. "autoload": {
  213. "psr-4": {
  214. "Psr\\Container\\": "src/"
  215. }
  216. },
  217. "notification-url": "https://packagist.org/downloads/",
  218. "license": [
  219. "MIT"
  220. ],
  221. "authors": [
  222. {
  223. "name": "PHP-FIG",
  224. "homepage": "https://www.php-fig.org/"
  225. }
  226. ],
  227. "description": "Common Container Interface (PHP FIG PSR-11)",
  228. "homepage": "https://github.com/php-fig/container",
  229. "keywords": [
  230. "PSR-11",
  231. "container",
  232. "container-interface",
  233. "container-interop",
  234. "psr"
  235. ],
  236. "support": {
  237. "issues": "https://github.com/php-fig/container/issues",
  238. "source": "https://github.com/php-fig/container/tree/2.0.2"
  239. },
  240. "time": "2021-11-05T16:47:00+00:00"
  241. },
  242. {
  243. "name": "psr/http-factory",
  244. "version": "1.0.2",
  245. "source": {
  246. "type": "git",
  247. "url": "https://github.com/php-fig/http-factory.git",
  248. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  249. },
  250. "dist": {
  251. "type": "zip",
  252. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  253. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  254. "shasum": ""
  255. },
  256. "require": {
  257. "php": ">=7.0.0",
  258. "psr/http-message": "^1.0 || ^2.0"
  259. },
  260. "type": "library",
  261. "extra": {
  262. "branch-alias": {
  263. "dev-master": "1.0.x-dev"
  264. }
  265. },
  266. "autoload": {
  267. "psr-4": {
  268. "Psr\\Http\\Message\\": "src/"
  269. }
  270. },
  271. "notification-url": "https://packagist.org/downloads/",
  272. "license": [
  273. "MIT"
  274. ],
  275. "authors": [
  276. {
  277. "name": "PHP-FIG",
  278. "homepage": "https://www.php-fig.org/"
  279. }
  280. ],
  281. "description": "Common interfaces for PSR-7 HTTP message factories",
  282. "keywords": [
  283. "factory",
  284. "http",
  285. "message",
  286. "psr",
  287. "psr-17",
  288. "psr-7",
  289. "request",
  290. "response"
  291. ],
  292. "support": {
  293. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  294. },
  295. "time": "2023-04-10T20:10:41+00:00"
  296. },
  297. {
  298. "name": "psr/http-message",
  299. "version": "2.0",
  300. "source": {
  301. "type": "git",
  302. "url": "https://github.com/php-fig/http-message.git",
  303. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  304. },
  305. "dist": {
  306. "type": "zip",
  307. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  308. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  309. "shasum": ""
  310. },
  311. "require": {
  312. "php": "^7.2 || ^8.0"
  313. },
  314. "type": "library",
  315. "extra": {
  316. "branch-alias": {
  317. "dev-master": "2.0.x-dev"
  318. }
  319. },
  320. "autoload": {
  321. "psr-4": {
  322. "Psr\\Http\\Message\\": "src/"
  323. }
  324. },
  325. "notification-url": "https://packagist.org/downloads/",
  326. "license": [
  327. "MIT"
  328. ],
  329. "authors": [
  330. {
  331. "name": "PHP-FIG",
  332. "homepage": "https://www.php-fig.org/"
  333. }
  334. ],
  335. "description": "Common interface for HTTP messages",
  336. "homepage": "https://github.com/php-fig/http-message",
  337. "keywords": [
  338. "http",
  339. "http-message",
  340. "psr",
  341. "psr-7",
  342. "request",
  343. "response"
  344. ],
  345. "support": {
  346. "source": "https://github.com/php-fig/http-message/tree/2.0"
  347. },
  348. "time": "2023-04-04T09:54:51+00:00"
  349. },
  350. {
  351. "name": "psr/log",
  352. "version": "3.0.0",
  353. "source": {
  354. "type": "git",
  355. "url": "https://github.com/php-fig/log.git",
  356. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  357. },
  358. "dist": {
  359. "type": "zip",
  360. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  361. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  362. "shasum": ""
  363. },
  364. "require": {
  365. "php": ">=8.0.0"
  366. },
  367. "type": "library",
  368. "extra": {
  369. "branch-alias": {
  370. "dev-master": "3.x-dev"
  371. }
  372. },
  373. "autoload": {
  374. "psr-4": {
  375. "Psr\\Log\\": "src"
  376. }
  377. },
  378. "notification-url": "https://packagist.org/downloads/",
  379. "license": [
  380. "MIT"
  381. ],
  382. "authors": [
  383. {
  384. "name": "PHP-FIG",
  385. "homepage": "https://www.php-fig.org/"
  386. }
  387. ],
  388. "description": "Common interface for logging libraries",
  389. "homepage": "https://github.com/php-fig/log",
  390. "keywords": [
  391. "log",
  392. "psr",
  393. "psr-3"
  394. ],
  395. "support": {
  396. "source": "https://github.com/php-fig/log/tree/3.0.0"
  397. },
  398. "time": "2021-07-14T16:46:02+00:00"
  399. },
  400. {
  401. "name": "symfony/deprecation-contracts",
  402. "version": "v3.3.0",
  403. "source": {
  404. "type": "git",
  405. "url": "https://github.com/symfony/deprecation-contracts.git",
  406. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf"
  407. },
  408. "dist": {
  409. "type": "zip",
  410. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf",
  411. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf",
  412. "shasum": ""
  413. },
  414. "require": {
  415. "php": ">=8.1"
  416. },
  417. "type": "library",
  418. "extra": {
  419. "branch-alias": {
  420. "dev-main": "3.4-dev"
  421. },
  422. "thanks": {
  423. "name": "symfony/contracts",
  424. "url": "https://github.com/symfony/contracts"
  425. }
  426. },
  427. "autoload": {
  428. "files": [
  429. "function.php"
  430. ]
  431. },
  432. "notification-url": "https://packagist.org/downloads/",
  433. "license": [
  434. "MIT"
  435. ],
  436. "authors": [
  437. {
  438. "name": "Nicolas Grekas",
  439. "email": "[email protected]"
  440. },
  441. {
  442. "name": "Symfony Community",
  443. "homepage": "https://symfony.com/contributors"
  444. }
  445. ],
  446. "description": "A generic function and convention to trigger deprecation notices",
  447. "homepage": "https://symfony.com",
  448. "support": {
  449. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.3.0"
  450. },
  451. "funding": [
  452. {
  453. "url": "https://symfony.com/sponsor",
  454. "type": "custom"
  455. },
  456. {
  457. "url": "https://github.com/fabpot",
  458. "type": "github"
  459. },
  460. {
  461. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  462. "type": "tidelift"
  463. }
  464. ],
  465. "time": "2023-05-23T14:45:45+00:00"
  466. },
  467. {
  468. "name": "symfony/http-client",
  469. "version": "v6.3.7",
  470. "source": {
  471. "type": "git",
  472. "url": "https://github.com/symfony/http-client.git",
  473. "reference": "cd67fcaf4524ec6ae5d9b2d9497682d7ad3ce57d"
  474. },
  475. "dist": {
  476. "type": "zip",
  477. "url": "https://api.github.com/repos/symfony/http-client/zipball/cd67fcaf4524ec6ae5d9b2d9497682d7ad3ce57d",
  478. "reference": "cd67fcaf4524ec6ae5d9b2d9497682d7ad3ce57d",
  479. "shasum": ""
  480. },
  481. "require": {
  482. "php": ">=8.1",
  483. "psr/log": "^1|^2|^3",
  484. "symfony/deprecation-contracts": "^2.5|^3",
  485. "symfony/http-client-contracts": "^3",
  486. "symfony/service-contracts": "^2.5|^3"
  487. },
  488. "conflict": {
  489. "php-http/discovery": "<1.15",
  490. "symfony/http-foundation": "<6.3"
  491. },
  492. "provide": {
  493. "php-http/async-client-implementation": "*",
  494. "php-http/client-implementation": "*",
  495. "psr/http-client-implementation": "1.0",
  496. "symfony/http-client-implementation": "3.0"
  497. },
  498. "require-dev": {
  499. "amphp/amp": "^2.5",
  500. "amphp/http-client": "^4.2.1",
  501. "amphp/http-tunnel": "^1.0",
  502. "amphp/socket": "^1.1",
  503. "guzzlehttp/promises": "^1.4",
  504. "nyholm/psr7": "^1.0",
  505. "php-http/httplug": "^1.0|^2.0",
  506. "psr/http-client": "^1.0",
  507. "symfony/dependency-injection": "^5.4|^6.0",
  508. "symfony/http-kernel": "^5.4|^6.0",
  509. "symfony/process": "^5.4|^6.0",
  510. "symfony/stopwatch": "^5.4|^6.0"
  511. },
  512. "type": "library",
  513. "autoload": {
  514. "psr-4": {
  515. "Symfony\\Component\\HttpClient\\": ""
  516. },
  517. "exclude-from-classmap": [
  518. "/Tests/"
  519. ]
  520. },
  521. "notification-url": "https://packagist.org/downloads/",
  522. "license": [
  523. "MIT"
  524. ],
  525. "authors": [
  526. {
  527. "name": "Nicolas Grekas",
  528. "email": "[email protected]"
  529. },
  530. {
  531. "name": "Symfony Community",
  532. "homepage": "https://symfony.com/contributors"
  533. }
  534. ],
  535. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  536. "homepage": "https://symfony.com",
  537. "keywords": [
  538. "http"
  539. ],
  540. "support": {
  541. "source": "https://github.com/symfony/http-client/tree/v6.3.7"
  542. },
  543. "funding": [
  544. {
  545. "url": "https://symfony.com/sponsor",
  546. "type": "custom"
  547. },
  548. {
  549. "url": "https://github.com/fabpot",
  550. "type": "github"
  551. },
  552. {
  553. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  554. "type": "tidelift"
  555. }
  556. ],
  557. "time": "2023-10-29T12:41:36+00:00"
  558. },
  559. {
  560. "name": "symfony/http-client-contracts",
  561. "version": "v3.3.0",
  562. "source": {
  563. "type": "git",
  564. "url": "https://github.com/symfony/http-client-contracts.git",
  565. "reference": "3b66325d0176b4ec826bffab57c9037d759c31fb"
  566. },
  567. "dist": {
  568. "type": "zip",
  569. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/3b66325d0176b4ec826bffab57c9037d759c31fb",
  570. "reference": "3b66325d0176b4ec826bffab57c9037d759c31fb",
  571. "shasum": ""
  572. },
  573. "require": {
  574. "php": ">=8.1"
  575. },
  576. "type": "library",
  577. "extra": {
  578. "branch-alias": {
  579. "dev-main": "3.4-dev"
  580. },
  581. "thanks": {
  582. "name": "symfony/contracts",
  583. "url": "https://github.com/symfony/contracts"
  584. }
  585. },
  586. "autoload": {
  587. "psr-4": {
  588. "Symfony\\Contracts\\HttpClient\\": ""
  589. },
  590. "exclude-from-classmap": [
  591. "/Test/"
  592. ]
  593. },
  594. "notification-url": "https://packagist.org/downloads/",
  595. "license": [
  596. "MIT"
  597. ],
  598. "authors": [
  599. {
  600. "name": "Nicolas Grekas",
  601. "email": "[email protected]"
  602. },
  603. {
  604. "name": "Symfony Community",
  605. "homepage": "https://symfony.com/contributors"
  606. }
  607. ],
  608. "description": "Generic abstractions related to HTTP clients",
  609. "homepage": "https://symfony.com",
  610. "keywords": [
  611. "abstractions",
  612. "contracts",
  613. "decoupling",
  614. "interfaces",
  615. "interoperability",
  616. "standards"
  617. ],
  618. "support": {
  619. "source": "https://github.com/symfony/http-client-contracts/tree/v3.3.0"
  620. },
  621. "funding": [
  622. {
  623. "url": "https://symfony.com/sponsor",
  624. "type": "custom"
  625. },
  626. {
  627. "url": "https://github.com/fabpot",
  628. "type": "github"
  629. },
  630. {
  631. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  632. "type": "tidelift"
  633. }
  634. ],
  635. "time": "2023-05-23T14:45:45+00:00"
  636. },
  637. {
  638. "name": "symfony/service-contracts",
  639. "version": "v3.3.0",
  640. "source": {
  641. "type": "git",
  642. "url": "https://github.com/symfony/service-contracts.git",
  643. "reference": "40da9cc13ec349d9e4966ce18b5fbcd724ab10a4"
  644. },
  645. "dist": {
  646. "type": "zip",
  647. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/40da9cc13ec349d9e4966ce18b5fbcd724ab10a4",
  648. "reference": "40da9cc13ec349d9e4966ce18b5fbcd724ab10a4",
  649. "shasum": ""
  650. },
  651. "require": {
  652. "php": ">=8.1",
  653. "psr/container": "^2.0"
  654. },
  655. "conflict": {
  656. "ext-psr": "<1.1|>=2"
  657. },
  658. "type": "library",
  659. "extra": {
  660. "branch-alias": {
  661. "dev-main": "3.4-dev"
  662. },
  663. "thanks": {
  664. "name": "symfony/contracts",
  665. "url": "https://github.com/symfony/contracts"
  666. }
  667. },
  668. "autoload": {
  669. "psr-4": {
  670. "Symfony\\Contracts\\Service\\": ""
  671. },
  672. "exclude-from-classmap": [
  673. "/Test/"
  674. ]
  675. },
  676. "notification-url": "https://packagist.org/downloads/",
  677. "license": [
  678. "MIT"
  679. ],
  680. "authors": [
  681. {
  682. "name": "Nicolas Grekas",
  683. "email": "[email protected]"
  684. },
  685. {
  686. "name": "Symfony Community",
  687. "homepage": "https://symfony.com/contributors"
  688. }
  689. ],
  690. "description": "Generic abstractions related to writing services",
  691. "homepage": "https://symfony.com",
  692. "keywords": [
  693. "abstractions",
  694. "contracts",
  695. "decoupling",
  696. "interfaces",
  697. "interoperability",
  698. "standards"
  699. ],
  700. "support": {
  701. "source": "https://github.com/symfony/service-contracts/tree/v3.3.0"
  702. },
  703. "funding": [
  704. {
  705. "url": "https://symfony.com/sponsor",
  706. "type": "custom"
  707. },
  708. {
  709. "url": "https://github.com/fabpot",
  710. "type": "github"
  711. },
  712. {
  713. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  714. "type": "tidelift"
  715. }
  716. ],
  717. "time": "2023-05-23T14:45:45+00:00"
  718. }
  719. ],
  720. "packages-dev": [],
  721. "aliases": [],
  722. "minimum-stability": "stable",
  723. "stability-flags": [],
  724. "prefer-stable": false,
  725. "prefer-lowest": false,
  726. "platform": [],
  727. "platform-dev": [],
  728. "plugin-api-version": "2.6.0"
  729. }