composer.lock 72 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055
  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": "6ec0a4e0754dfca55bd807e6bfbafd18",
  8. "packages": [
  9. {
  10. "name": "doctrine/collections",
  11. "version": "2.2.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/doctrine/collections.git",
  15. "reference": "420480fc085bc65f3c956af13abe8e7546f94813"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/doctrine/collections/zipball/420480fc085bc65f3c956af13abe8e7546f94813",
  20. "reference": "420480fc085bc65f3c956af13abe8e7546f94813",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "doctrine/deprecations": "^1",
  25. "php": "^8.1"
  26. },
  27. "require-dev": {
  28. "doctrine/coding-standard": "^12",
  29. "ext-json": "*",
  30. "phpstan/phpstan": "^1.8",
  31. "phpstan/phpstan-phpunit": "^1.0",
  32. "phpunit/phpunit": "^10.5",
  33. "vimeo/psalm": "^5.11"
  34. },
  35. "type": "library",
  36. "autoload": {
  37. "psr-4": {
  38. "Doctrine\\Common\\Collections\\": "src"
  39. }
  40. },
  41. "notification-url": "https://packagist.org/downloads/",
  42. "license": [
  43. "MIT"
  44. ],
  45. "authors": [
  46. {
  47. "name": "Guilherme Blanco",
  48. "email": "guilhermeblanco@gmail.com"
  49. },
  50. {
  51. "name": "Roman Borschel",
  52. "email": "roman@code-factory.org"
  53. },
  54. {
  55. "name": "Benjamin Eberlei",
  56. "email": "kontakt@beberlei.de"
  57. },
  58. {
  59. "name": "Jonathan Wage",
  60. "email": "jonwage@gmail.com"
  61. },
  62. {
  63. "name": "Johannes Schmitt",
  64. "email": "schmittjoh@gmail.com"
  65. }
  66. ],
  67. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  68. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  69. "keywords": [
  70. "array",
  71. "collections",
  72. "iterators",
  73. "php"
  74. ],
  75. "support": {
  76. "issues": "https://github.com/doctrine/collections/issues",
  77. "source": "https://github.com/doctrine/collections/tree/2.2.1"
  78. },
  79. "funding": [
  80. {
  81. "url": "https://www.doctrine-project.org/sponsorship.html",
  82. "type": "custom"
  83. },
  84. {
  85. "url": "https://www.patreon.com/phpdoctrine",
  86. "type": "patreon"
  87. },
  88. {
  89. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcollections",
  90. "type": "tidelift"
  91. }
  92. ],
  93. "time": "2024-03-05T22:28:45+00:00"
  94. },
  95. {
  96. "name": "doctrine/dbal",
  97. "version": "4.0.1",
  98. "source": {
  99. "type": "git",
  100. "url": "https://github.com/doctrine/dbal.git",
  101. "reference": "9e588fe1f38a443cb17de6b86b803d9e028e2156"
  102. },
  103. "dist": {
  104. "type": "zip",
  105. "url": "https://api.github.com/repos/doctrine/dbal/zipball/9e588fe1f38a443cb17de6b86b803d9e028e2156",
  106. "reference": "9e588fe1f38a443cb17de6b86b803d9e028e2156",
  107. "shasum": ""
  108. },
  109. "require": {
  110. "doctrine/deprecations": "^0.5.3|^1",
  111. "php": "^8.1",
  112. "psr/cache": "^1|^2|^3",
  113. "psr/log": "^1|^2|^3"
  114. },
  115. "require-dev": {
  116. "doctrine/coding-standard": "12.0.0",
  117. "fig/log-test": "^1",
  118. "jetbrains/phpstorm-stubs": "2023.2",
  119. "phpstan/phpstan": "1.10.58",
  120. "phpstan/phpstan-phpunit": "1.3.15",
  121. "phpstan/phpstan-strict-rules": "^1.5",
  122. "phpunit/phpunit": "10.5.9",
  123. "psalm/plugin-phpunit": "0.18.4",
  124. "slevomat/coding-standard": "8.13.1",
  125. "squizlabs/php_codesniffer": "3.9.0",
  126. "symfony/cache": "^6.3.8|^7.0",
  127. "symfony/console": "^5.4|^6.3|^7.0",
  128. "vimeo/psalm": "5.21.1"
  129. },
  130. "suggest": {
  131. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  132. },
  133. "type": "library",
  134. "autoload": {
  135. "psr-4": {
  136. "Doctrine\\DBAL\\": "src"
  137. }
  138. },
  139. "notification-url": "https://packagist.org/downloads/",
  140. "license": [
  141. "MIT"
  142. ],
  143. "authors": [
  144. {
  145. "name": "Guilherme Blanco",
  146. "email": "guilhermeblanco@gmail.com"
  147. },
  148. {
  149. "name": "Roman Borschel",
  150. "email": "roman@code-factory.org"
  151. },
  152. {
  153. "name": "Benjamin Eberlei",
  154. "email": "kontakt@beberlei.de"
  155. },
  156. {
  157. "name": "Jonathan Wage",
  158. "email": "jonwage@gmail.com"
  159. }
  160. ],
  161. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  162. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  163. "keywords": [
  164. "abstraction",
  165. "database",
  166. "db2",
  167. "dbal",
  168. "mariadb",
  169. "mssql",
  170. "mysql",
  171. "oci8",
  172. "oracle",
  173. "pdo",
  174. "pgsql",
  175. "postgresql",
  176. "queryobject",
  177. "sasql",
  178. "sql",
  179. "sqlite",
  180. "sqlserver",
  181. "sqlsrv"
  182. ],
  183. "support": {
  184. "issues": "https://github.com/doctrine/dbal/issues",
  185. "source": "https://github.com/doctrine/dbal/tree/4.0.1"
  186. },
  187. "funding": [
  188. {
  189. "url": "https://www.doctrine-project.org/sponsorship.html",
  190. "type": "custom"
  191. },
  192. {
  193. "url": "https://www.patreon.com/phpdoctrine",
  194. "type": "patreon"
  195. },
  196. {
  197. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  198. "type": "tidelift"
  199. }
  200. ],
  201. "time": "2024-03-03T15:59:11+00:00"
  202. },
  203. {
  204. "name": "doctrine/deprecations",
  205. "version": "1.1.3",
  206. "source": {
  207. "type": "git",
  208. "url": "https://github.com/doctrine/deprecations.git",
  209. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab"
  210. },
  211. "dist": {
  212. "type": "zip",
  213. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  214. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  215. "shasum": ""
  216. },
  217. "require": {
  218. "php": "^7.1 || ^8.0"
  219. },
  220. "require-dev": {
  221. "doctrine/coding-standard": "^9",
  222. "phpstan/phpstan": "1.4.10 || 1.10.15",
  223. "phpstan/phpstan-phpunit": "^1.0",
  224. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  225. "psalm/plugin-phpunit": "0.18.4",
  226. "psr/log": "^1 || ^2 || ^3",
  227. "vimeo/psalm": "4.30.0 || 5.12.0"
  228. },
  229. "suggest": {
  230. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  231. },
  232. "type": "library",
  233. "autoload": {
  234. "psr-4": {
  235. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  236. }
  237. },
  238. "notification-url": "https://packagist.org/downloads/",
  239. "license": [
  240. "MIT"
  241. ],
  242. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  243. "homepage": "https://www.doctrine-project.org/",
  244. "support": {
  245. "issues": "https://github.com/doctrine/deprecations/issues",
  246. "source": "https://github.com/doctrine/deprecations/tree/1.1.3"
  247. },
  248. "time": "2024-01-30T19:34:25+00:00"
  249. },
  250. {
  251. "name": "doctrine/event-manager",
  252. "version": "2.0.0",
  253. "source": {
  254. "type": "git",
  255. "url": "https://github.com/doctrine/event-manager.git",
  256. "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32"
  257. },
  258. "dist": {
  259. "type": "zip",
  260. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/750671534e0241a7c50ea5b43f67e23eb5c96f32",
  261. "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32",
  262. "shasum": ""
  263. },
  264. "require": {
  265. "php": "^8.1"
  266. },
  267. "conflict": {
  268. "doctrine/common": "<2.9"
  269. },
  270. "require-dev": {
  271. "doctrine/coding-standard": "^10",
  272. "phpstan/phpstan": "^1.8.8",
  273. "phpunit/phpunit": "^9.5",
  274. "vimeo/psalm": "^4.28"
  275. },
  276. "type": "library",
  277. "autoload": {
  278. "psr-4": {
  279. "Doctrine\\Common\\": "src"
  280. }
  281. },
  282. "notification-url": "https://packagist.org/downloads/",
  283. "license": [
  284. "MIT"
  285. ],
  286. "authors": [
  287. {
  288. "name": "Guilherme Blanco",
  289. "email": "guilhermeblanco@gmail.com"
  290. },
  291. {
  292. "name": "Roman Borschel",
  293. "email": "roman@code-factory.org"
  294. },
  295. {
  296. "name": "Benjamin Eberlei",
  297. "email": "kontakt@beberlei.de"
  298. },
  299. {
  300. "name": "Jonathan Wage",
  301. "email": "jonwage@gmail.com"
  302. },
  303. {
  304. "name": "Johannes Schmitt",
  305. "email": "schmittjoh@gmail.com"
  306. },
  307. {
  308. "name": "Marco Pivetta",
  309. "email": "ocramius@gmail.com"
  310. }
  311. ],
  312. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  313. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  314. "keywords": [
  315. "event",
  316. "event dispatcher",
  317. "event manager",
  318. "event system",
  319. "events"
  320. ],
  321. "support": {
  322. "issues": "https://github.com/doctrine/event-manager/issues",
  323. "source": "https://github.com/doctrine/event-manager/tree/2.0.0"
  324. },
  325. "funding": [
  326. {
  327. "url": "https://www.doctrine-project.org/sponsorship.html",
  328. "type": "custom"
  329. },
  330. {
  331. "url": "https://www.patreon.com/phpdoctrine",
  332. "type": "patreon"
  333. },
  334. {
  335. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  336. "type": "tidelift"
  337. }
  338. ],
  339. "time": "2022-10-12T20:59:15+00:00"
  340. },
  341. {
  342. "name": "doctrine/inflector",
  343. "version": "2.0.10",
  344. "source": {
  345. "type": "git",
  346. "url": "https://github.com/doctrine/inflector.git",
  347. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  348. },
  349. "dist": {
  350. "type": "zip",
  351. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  352. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  353. "shasum": ""
  354. },
  355. "require": {
  356. "php": "^7.2 || ^8.0"
  357. },
  358. "require-dev": {
  359. "doctrine/coding-standard": "^11.0",
  360. "phpstan/phpstan": "^1.8",
  361. "phpstan/phpstan-phpunit": "^1.1",
  362. "phpstan/phpstan-strict-rules": "^1.3",
  363. "phpunit/phpunit": "^8.5 || ^9.5",
  364. "vimeo/psalm": "^4.25 || ^5.4"
  365. },
  366. "type": "library",
  367. "autoload": {
  368. "psr-4": {
  369. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  370. }
  371. },
  372. "notification-url": "https://packagist.org/downloads/",
  373. "license": [
  374. "MIT"
  375. ],
  376. "authors": [
  377. {
  378. "name": "Guilherme Blanco",
  379. "email": "guilhermeblanco@gmail.com"
  380. },
  381. {
  382. "name": "Roman Borschel",
  383. "email": "roman@code-factory.org"
  384. },
  385. {
  386. "name": "Benjamin Eberlei",
  387. "email": "kontakt@beberlei.de"
  388. },
  389. {
  390. "name": "Jonathan Wage",
  391. "email": "jonwage@gmail.com"
  392. },
  393. {
  394. "name": "Johannes Schmitt",
  395. "email": "schmittjoh@gmail.com"
  396. }
  397. ],
  398. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  399. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  400. "keywords": [
  401. "inflection",
  402. "inflector",
  403. "lowercase",
  404. "manipulation",
  405. "php",
  406. "plural",
  407. "singular",
  408. "strings",
  409. "uppercase",
  410. "words"
  411. ],
  412. "support": {
  413. "issues": "https://github.com/doctrine/inflector/issues",
  414. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  415. },
  416. "funding": [
  417. {
  418. "url": "https://www.doctrine-project.org/sponsorship.html",
  419. "type": "custom"
  420. },
  421. {
  422. "url": "https://www.patreon.com/phpdoctrine",
  423. "type": "patreon"
  424. },
  425. {
  426. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  427. "type": "tidelift"
  428. }
  429. ],
  430. "time": "2024-02-18T20:23:39+00:00"
  431. },
  432. {
  433. "name": "doctrine/instantiator",
  434. "version": "2.0.0",
  435. "source": {
  436. "type": "git",
  437. "url": "https://github.com/doctrine/instantiator.git",
  438. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0"
  439. },
  440. "dist": {
  441. "type": "zip",
  442. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  443. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  444. "shasum": ""
  445. },
  446. "require": {
  447. "php": "^8.1"
  448. },
  449. "require-dev": {
  450. "doctrine/coding-standard": "^11",
  451. "ext-pdo": "*",
  452. "ext-phar": "*",
  453. "phpbench/phpbench": "^1.2",
  454. "phpstan/phpstan": "^1.9.4",
  455. "phpstan/phpstan-phpunit": "^1.3",
  456. "phpunit/phpunit": "^9.5.27",
  457. "vimeo/psalm": "^5.4"
  458. },
  459. "type": "library",
  460. "autoload": {
  461. "psr-4": {
  462. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  463. }
  464. },
  465. "notification-url": "https://packagist.org/downloads/",
  466. "license": [
  467. "MIT"
  468. ],
  469. "authors": [
  470. {
  471. "name": "Marco Pivetta",
  472. "email": "ocramius@gmail.com",
  473. "homepage": "https://ocramius.github.io/"
  474. }
  475. ],
  476. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  477. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  478. "keywords": [
  479. "constructor",
  480. "instantiate"
  481. ],
  482. "support": {
  483. "issues": "https://github.com/doctrine/instantiator/issues",
  484. "source": "https://github.com/doctrine/instantiator/tree/2.0.0"
  485. },
  486. "funding": [
  487. {
  488. "url": "https://www.doctrine-project.org/sponsorship.html",
  489. "type": "custom"
  490. },
  491. {
  492. "url": "https://www.patreon.com/phpdoctrine",
  493. "type": "patreon"
  494. },
  495. {
  496. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  497. "type": "tidelift"
  498. }
  499. ],
  500. "time": "2022-12-30T00:23:10+00:00"
  501. },
  502. {
  503. "name": "doctrine/lexer",
  504. "version": "3.0.1",
  505. "source": {
  506. "type": "git",
  507. "url": "https://github.com/doctrine/lexer.git",
  508. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  509. },
  510. "dist": {
  511. "type": "zip",
  512. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  513. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  514. "shasum": ""
  515. },
  516. "require": {
  517. "php": "^8.1"
  518. },
  519. "require-dev": {
  520. "doctrine/coding-standard": "^12",
  521. "phpstan/phpstan": "^1.10",
  522. "phpunit/phpunit": "^10.5",
  523. "psalm/plugin-phpunit": "^0.18.3",
  524. "vimeo/psalm": "^5.21"
  525. },
  526. "type": "library",
  527. "autoload": {
  528. "psr-4": {
  529. "Doctrine\\Common\\Lexer\\": "src"
  530. }
  531. },
  532. "notification-url": "https://packagist.org/downloads/",
  533. "license": [
  534. "MIT"
  535. ],
  536. "authors": [
  537. {
  538. "name": "Guilherme Blanco",
  539. "email": "guilhermeblanco@gmail.com"
  540. },
  541. {
  542. "name": "Roman Borschel",
  543. "email": "roman@code-factory.org"
  544. },
  545. {
  546. "name": "Johannes Schmitt",
  547. "email": "schmittjoh@gmail.com"
  548. }
  549. ],
  550. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  551. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  552. "keywords": [
  553. "annotations",
  554. "docblock",
  555. "lexer",
  556. "parser",
  557. "php"
  558. ],
  559. "support": {
  560. "issues": "https://github.com/doctrine/lexer/issues",
  561. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  562. },
  563. "funding": [
  564. {
  565. "url": "https://www.doctrine-project.org/sponsorship.html",
  566. "type": "custom"
  567. },
  568. {
  569. "url": "https://www.patreon.com/phpdoctrine",
  570. "type": "patreon"
  571. },
  572. {
  573. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  574. "type": "tidelift"
  575. }
  576. ],
  577. "time": "2024-02-05T11:56:58+00:00"
  578. },
  579. {
  580. "name": "doctrine/orm",
  581. "version": "3.1.1",
  582. "source": {
  583. "type": "git",
  584. "url": "https://github.com/doctrine/orm.git",
  585. "reference": "9c560713925ac5859342e6ff370c4c997acf2fd4"
  586. },
  587. "dist": {
  588. "type": "zip",
  589. "url": "https://api.github.com/repos/doctrine/orm/zipball/9c560713925ac5859342e6ff370c4c997acf2fd4",
  590. "reference": "9c560713925ac5859342e6ff370c4c997acf2fd4",
  591. "shasum": ""
  592. },
  593. "require": {
  594. "composer-runtime-api": "^2",
  595. "doctrine/collections": "^2.2",
  596. "doctrine/dbal": "^3.8.2 || ^4",
  597. "doctrine/deprecations": "^0.5.3 || ^1",
  598. "doctrine/event-manager": "^1.2 || ^2",
  599. "doctrine/inflector": "^1.4 || ^2.0",
  600. "doctrine/instantiator": "^1.3 || ^2",
  601. "doctrine/lexer": "^3",
  602. "doctrine/persistence": "^3.3.1",
  603. "ext-ctype": "*",
  604. "php": "^8.1",
  605. "psr/cache": "^1 || ^2 || ^3",
  606. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  607. "symfony/var-exporter": "^6.3.9 || ^7.0"
  608. },
  609. "require-dev": {
  610. "doctrine/coding-standard": "^12.0",
  611. "phpbench/phpbench": "^1.0",
  612. "phpstan/phpstan": "1.10.59",
  613. "phpunit/phpunit": "^10.4.0",
  614. "psr/log": "^1 || ^2 || ^3",
  615. "squizlabs/php_codesniffer": "3.7.2",
  616. "symfony/cache": "^5.4 || ^6.2 || ^7.0",
  617. "vimeo/psalm": "5.22.2"
  618. },
  619. "suggest": {
  620. "ext-dom": "Provides support for XSD validation for XML mapping files",
  621. "symfony/cache": "Provides cache support for Setup Tool with doctrine/cache 2.0"
  622. },
  623. "type": "library",
  624. "autoload": {
  625. "psr-4": {
  626. "Doctrine\\ORM\\": "src"
  627. }
  628. },
  629. "notification-url": "https://packagist.org/downloads/",
  630. "license": [
  631. "MIT"
  632. ],
  633. "authors": [
  634. {
  635. "name": "Guilherme Blanco",
  636. "email": "guilhermeblanco@gmail.com"
  637. },
  638. {
  639. "name": "Roman Borschel",
  640. "email": "roman@code-factory.org"
  641. },
  642. {
  643. "name": "Benjamin Eberlei",
  644. "email": "kontakt@beberlei.de"
  645. },
  646. {
  647. "name": "Jonathan Wage",
  648. "email": "jonwage@gmail.com"
  649. },
  650. {
  651. "name": "Marco Pivetta",
  652. "email": "ocramius@gmail.com"
  653. }
  654. ],
  655. "description": "Object-Relational-Mapper for PHP",
  656. "homepage": "https://www.doctrine-project.org/projects/orm.html",
  657. "keywords": [
  658. "database",
  659. "orm"
  660. ],
  661. "support": {
  662. "issues": "https://github.com/doctrine/orm/issues",
  663. "source": "https://github.com/doctrine/orm/tree/3.1.1"
  664. },
  665. "time": "2024-03-21T11:37:52+00:00"
  666. },
  667. {
  668. "name": "doctrine/persistence",
  669. "version": "3.3.2",
  670. "source": {
  671. "type": "git",
  672. "url": "https://github.com/doctrine/persistence.git",
  673. "reference": "477da35bd0255e032826f440b94b3e37f2d56f42"
  674. },
  675. "dist": {
  676. "type": "zip",
  677. "url": "https://api.github.com/repos/doctrine/persistence/zipball/477da35bd0255e032826f440b94b3e37f2d56f42",
  678. "reference": "477da35bd0255e032826f440b94b3e37f2d56f42",
  679. "shasum": ""
  680. },
  681. "require": {
  682. "doctrine/event-manager": "^1 || ^2",
  683. "php": "^7.2 || ^8.0",
  684. "psr/cache": "^1.0 || ^2.0 || ^3.0"
  685. },
  686. "conflict": {
  687. "doctrine/common": "<2.10"
  688. },
  689. "require-dev": {
  690. "composer/package-versions-deprecated": "^1.11",
  691. "doctrine/coding-standard": "^11",
  692. "doctrine/common": "^3.0",
  693. "phpstan/phpstan": "1.9.4",
  694. "phpstan/phpstan-phpunit": "^1",
  695. "phpstan/phpstan-strict-rules": "^1.1",
  696. "phpunit/phpunit": "^8.5 || ^9.5",
  697. "symfony/cache": "^4.4 || ^5.4 || ^6.0",
  698. "vimeo/psalm": "4.30.0 || 5.3.0"
  699. },
  700. "type": "library",
  701. "autoload": {
  702. "psr-4": {
  703. "Doctrine\\Persistence\\": "src/Persistence"
  704. }
  705. },
  706. "notification-url": "https://packagist.org/downloads/",
  707. "license": [
  708. "MIT"
  709. ],
  710. "authors": [
  711. {
  712. "name": "Guilherme Blanco",
  713. "email": "guilhermeblanco@gmail.com"
  714. },
  715. {
  716. "name": "Roman Borschel",
  717. "email": "roman@code-factory.org"
  718. },
  719. {
  720. "name": "Benjamin Eberlei",
  721. "email": "kontakt@beberlei.de"
  722. },
  723. {
  724. "name": "Jonathan Wage",
  725. "email": "jonwage@gmail.com"
  726. },
  727. {
  728. "name": "Johannes Schmitt",
  729. "email": "schmittjoh@gmail.com"
  730. },
  731. {
  732. "name": "Marco Pivetta",
  733. "email": "ocramius@gmail.com"
  734. }
  735. ],
  736. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  737. "homepage": "https://www.doctrine-project.org/projects/persistence.html",
  738. "keywords": [
  739. "mapper",
  740. "object",
  741. "odm",
  742. "orm",
  743. "persistence"
  744. ],
  745. "support": {
  746. "issues": "https://github.com/doctrine/persistence/issues",
  747. "source": "https://github.com/doctrine/persistence/tree/3.3.2"
  748. },
  749. "funding": [
  750. {
  751. "url": "https://www.doctrine-project.org/sponsorship.html",
  752. "type": "custom"
  753. },
  754. {
  755. "url": "https://www.patreon.com/phpdoctrine",
  756. "type": "patreon"
  757. },
  758. {
  759. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  760. "type": "tidelift"
  761. }
  762. ],
  763. "time": "2024-03-12T14:54:36+00:00"
  764. },
  765. {
  766. "name": "graham-campbell/result-type",
  767. "version": "v1.1.2",
  768. "source": {
  769. "type": "git",
  770. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  771. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862"
  772. },
  773. "dist": {
  774. "type": "zip",
  775. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/fbd48bce38f73f8a4ec8583362e732e4095e5862",
  776. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862",
  777. "shasum": ""
  778. },
  779. "require": {
  780. "php": "^7.2.5 || ^8.0",
  781. "phpoption/phpoption": "^1.9.2"
  782. },
  783. "require-dev": {
  784. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  785. },
  786. "type": "library",
  787. "autoload": {
  788. "psr-4": {
  789. "GrahamCampbell\\ResultType\\": "src/"
  790. }
  791. },
  792. "notification-url": "https://packagist.org/downloads/",
  793. "license": [
  794. "MIT"
  795. ],
  796. "authors": [
  797. {
  798. "name": "Graham Campbell",
  799. "email": "hello@gjcampbell.co.uk",
  800. "homepage": "https://github.com/GrahamCampbell"
  801. }
  802. ],
  803. "description": "An Implementation Of The Result Type",
  804. "keywords": [
  805. "Graham Campbell",
  806. "GrahamCampbell",
  807. "Result Type",
  808. "Result-Type",
  809. "result"
  810. ],
  811. "support": {
  812. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  813. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.2"
  814. },
  815. "funding": [
  816. {
  817. "url": "https://github.com/GrahamCampbell",
  818. "type": "github"
  819. },
  820. {
  821. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  822. "type": "tidelift"
  823. }
  824. ],
  825. "time": "2023-11-12T22:16:48+00:00"
  826. },
  827. {
  828. "name": "phpoption/phpoption",
  829. "version": "1.9.2",
  830. "source": {
  831. "type": "git",
  832. "url": "https://github.com/schmittjoh/php-option.git",
  833. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820"
  834. },
  835. "dist": {
  836. "type": "zip",
  837. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/80735db690fe4fc5c76dfa7f9b770634285fa820",
  838. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820",
  839. "shasum": ""
  840. },
  841. "require": {
  842. "php": "^7.2.5 || ^8.0"
  843. },
  844. "require-dev": {
  845. "bamarni/composer-bin-plugin": "^1.8.2",
  846. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  847. },
  848. "type": "library",
  849. "extra": {
  850. "bamarni-bin": {
  851. "bin-links": true,
  852. "forward-command": true
  853. },
  854. "branch-alias": {
  855. "dev-master": "1.9-dev"
  856. }
  857. },
  858. "autoload": {
  859. "psr-4": {
  860. "PhpOption\\": "src/PhpOption/"
  861. }
  862. },
  863. "notification-url": "https://packagist.org/downloads/",
  864. "license": [
  865. "Apache-2.0"
  866. ],
  867. "authors": [
  868. {
  869. "name": "Johannes M. Schmitt",
  870. "email": "schmittjoh@gmail.com",
  871. "homepage": "https://github.com/schmittjoh"
  872. },
  873. {
  874. "name": "Graham Campbell",
  875. "email": "hello@gjcampbell.co.uk",
  876. "homepage": "https://github.com/GrahamCampbell"
  877. }
  878. ],
  879. "description": "Option Type for PHP",
  880. "keywords": [
  881. "language",
  882. "option",
  883. "php",
  884. "type"
  885. ],
  886. "support": {
  887. "issues": "https://github.com/schmittjoh/php-option/issues",
  888. "source": "https://github.com/schmittjoh/php-option/tree/1.9.2"
  889. },
  890. "funding": [
  891. {
  892. "url": "https://github.com/GrahamCampbell",
  893. "type": "github"
  894. },
  895. {
  896. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  897. "type": "tidelift"
  898. }
  899. ],
  900. "time": "2023-11-12T21:59:55+00:00"
  901. },
  902. {
  903. "name": "psr/cache",
  904. "version": "3.0.0",
  905. "source": {
  906. "type": "git",
  907. "url": "https://github.com/php-fig/cache.git",
  908. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  909. },
  910. "dist": {
  911. "type": "zip",
  912. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  913. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  914. "shasum": ""
  915. },
  916. "require": {
  917. "php": ">=8.0.0"
  918. },
  919. "type": "library",
  920. "extra": {
  921. "branch-alias": {
  922. "dev-master": "1.0.x-dev"
  923. }
  924. },
  925. "autoload": {
  926. "psr-4": {
  927. "Psr\\Cache\\": "src/"
  928. }
  929. },
  930. "notification-url": "https://packagist.org/downloads/",
  931. "license": [
  932. "MIT"
  933. ],
  934. "authors": [
  935. {
  936. "name": "PHP-FIG",
  937. "homepage": "https://www.php-fig.org/"
  938. }
  939. ],
  940. "description": "Common interface for caching libraries",
  941. "keywords": [
  942. "cache",
  943. "psr",
  944. "psr-6"
  945. ],
  946. "support": {
  947. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  948. },
  949. "time": "2021-02-03T23:26:27+00:00"
  950. },
  951. {
  952. "name": "psr/container",
  953. "version": "2.0.2",
  954. "source": {
  955. "type": "git",
  956. "url": "https://github.com/php-fig/container.git",
  957. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  958. },
  959. "dist": {
  960. "type": "zip",
  961. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  962. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  963. "shasum": ""
  964. },
  965. "require": {
  966. "php": ">=7.4.0"
  967. },
  968. "type": "library",
  969. "extra": {
  970. "branch-alias": {
  971. "dev-master": "2.0.x-dev"
  972. }
  973. },
  974. "autoload": {
  975. "psr-4": {
  976. "Psr\\Container\\": "src/"
  977. }
  978. },
  979. "notification-url": "https://packagist.org/downloads/",
  980. "license": [
  981. "MIT"
  982. ],
  983. "authors": [
  984. {
  985. "name": "PHP-FIG",
  986. "homepage": "https://www.php-fig.org/"
  987. }
  988. ],
  989. "description": "Common Container Interface (PHP FIG PSR-11)",
  990. "homepage": "https://github.com/php-fig/container",
  991. "keywords": [
  992. "PSR-11",
  993. "container",
  994. "container-interface",
  995. "container-interop",
  996. "psr"
  997. ],
  998. "support": {
  999. "issues": "https://github.com/php-fig/container/issues",
  1000. "source": "https://github.com/php-fig/container/tree/2.0.2"
  1001. },
  1002. "time": "2021-11-05T16:47:00+00:00"
  1003. },
  1004. {
  1005. "name": "psr/log",
  1006. "version": "3.0.0",
  1007. "source": {
  1008. "type": "git",
  1009. "url": "https://github.com/php-fig/log.git",
  1010. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  1011. },
  1012. "dist": {
  1013. "type": "zip",
  1014. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  1015. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  1016. "shasum": ""
  1017. },
  1018. "require": {
  1019. "php": ">=8.0.0"
  1020. },
  1021. "type": "library",
  1022. "extra": {
  1023. "branch-alias": {
  1024. "dev-master": "3.x-dev"
  1025. }
  1026. },
  1027. "autoload": {
  1028. "psr-4": {
  1029. "Psr\\Log\\": "src"
  1030. }
  1031. },
  1032. "notification-url": "https://packagist.org/downloads/",
  1033. "license": [
  1034. "MIT"
  1035. ],
  1036. "authors": [
  1037. {
  1038. "name": "PHP-FIG",
  1039. "homepage": "https://www.php-fig.org/"
  1040. }
  1041. ],
  1042. "description": "Common interface for logging libraries",
  1043. "homepage": "https://github.com/php-fig/log",
  1044. "keywords": [
  1045. "log",
  1046. "psr",
  1047. "psr-3"
  1048. ],
  1049. "support": {
  1050. "source": "https://github.com/php-fig/log/tree/3.0.0"
  1051. },
  1052. "time": "2021-07-14T16:46:02+00:00"
  1053. },
  1054. {
  1055. "name": "symfony/cache",
  1056. "version": "v7.0.6",
  1057. "source": {
  1058. "type": "git",
  1059. "url": "https://github.com/symfony/cache.git",
  1060. "reference": "2d0d3f92c74c445410d05374908b03e0a1131e2b"
  1061. },
  1062. "dist": {
  1063. "type": "zip",
  1064. "url": "https://api.github.com/repos/symfony/cache/zipball/2d0d3f92c74c445410d05374908b03e0a1131e2b",
  1065. "reference": "2d0d3f92c74c445410d05374908b03e0a1131e2b",
  1066. "shasum": ""
  1067. },
  1068. "require": {
  1069. "php": ">=8.2",
  1070. "psr/cache": "^2.0|^3.0",
  1071. "psr/log": "^1.1|^2|^3",
  1072. "symfony/cache-contracts": "^2.5|^3",
  1073. "symfony/service-contracts": "^2.5|^3",
  1074. "symfony/var-exporter": "^6.4|^7.0"
  1075. },
  1076. "conflict": {
  1077. "doctrine/dbal": "<3.6",
  1078. "symfony/dependency-injection": "<6.4",
  1079. "symfony/http-kernel": "<6.4",
  1080. "symfony/var-dumper": "<6.4"
  1081. },
  1082. "provide": {
  1083. "psr/cache-implementation": "2.0|3.0",
  1084. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  1085. "symfony/cache-implementation": "1.1|2.0|3.0"
  1086. },
  1087. "require-dev": {
  1088. "cache/integration-tests": "dev-master",
  1089. "doctrine/dbal": "^3.6|^4",
  1090. "predis/predis": "^1.1|^2.0",
  1091. "psr/simple-cache": "^1.0|^2.0|^3.0",
  1092. "symfony/config": "^6.4|^7.0",
  1093. "symfony/dependency-injection": "^6.4|^7.0",
  1094. "symfony/filesystem": "^6.4|^7.0",
  1095. "symfony/http-kernel": "^6.4|^7.0",
  1096. "symfony/messenger": "^6.4|^7.0",
  1097. "symfony/var-dumper": "^6.4|^7.0"
  1098. },
  1099. "type": "library",
  1100. "autoload": {
  1101. "psr-4": {
  1102. "Symfony\\Component\\Cache\\": ""
  1103. },
  1104. "classmap": [
  1105. "Traits/ValueWrapper.php"
  1106. ],
  1107. "exclude-from-classmap": [
  1108. "/Tests/"
  1109. ]
  1110. },
  1111. "notification-url": "https://packagist.org/downloads/",
  1112. "license": [
  1113. "MIT"
  1114. ],
  1115. "authors": [
  1116. {
  1117. "name": "Nicolas Grekas",
  1118. "email": "p@tchwork.com"
  1119. },
  1120. {
  1121. "name": "Symfony Community",
  1122. "homepage": "https://symfony.com/contributors"
  1123. }
  1124. ],
  1125. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  1126. "homepage": "https://symfony.com",
  1127. "keywords": [
  1128. "caching",
  1129. "psr6"
  1130. ],
  1131. "support": {
  1132. "source": "https://github.com/symfony/cache/tree/v7.0.6"
  1133. },
  1134. "funding": [
  1135. {
  1136. "url": "https://symfony.com/sponsor",
  1137. "type": "custom"
  1138. },
  1139. {
  1140. "url": "https://github.com/fabpot",
  1141. "type": "github"
  1142. },
  1143. {
  1144. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1145. "type": "tidelift"
  1146. }
  1147. ],
  1148. "time": "2024-03-27T19:55:25+00:00"
  1149. },
  1150. {
  1151. "name": "symfony/cache-contracts",
  1152. "version": "v3.4.2",
  1153. "source": {
  1154. "type": "git",
  1155. "url": "https://github.com/symfony/cache-contracts.git",
  1156. "reference": "2c9db6509a1b21dad229606897639d3284f54b2a"
  1157. },
  1158. "dist": {
  1159. "type": "zip",
  1160. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/2c9db6509a1b21dad229606897639d3284f54b2a",
  1161. "reference": "2c9db6509a1b21dad229606897639d3284f54b2a",
  1162. "shasum": ""
  1163. },
  1164. "require": {
  1165. "php": ">=8.1",
  1166. "psr/cache": "^3.0"
  1167. },
  1168. "type": "library",
  1169. "extra": {
  1170. "branch-alias": {
  1171. "dev-main": "3.4-dev"
  1172. },
  1173. "thanks": {
  1174. "name": "symfony/contracts",
  1175. "url": "https://github.com/symfony/contracts"
  1176. }
  1177. },
  1178. "autoload": {
  1179. "psr-4": {
  1180. "Symfony\\Contracts\\Cache\\": ""
  1181. }
  1182. },
  1183. "notification-url": "https://packagist.org/downloads/",
  1184. "license": [
  1185. "MIT"
  1186. ],
  1187. "authors": [
  1188. {
  1189. "name": "Nicolas Grekas",
  1190. "email": "p@tchwork.com"
  1191. },
  1192. {
  1193. "name": "Symfony Community",
  1194. "homepage": "https://symfony.com/contributors"
  1195. }
  1196. ],
  1197. "description": "Generic abstractions related to caching",
  1198. "homepage": "https://symfony.com",
  1199. "keywords": [
  1200. "abstractions",
  1201. "contracts",
  1202. "decoupling",
  1203. "interfaces",
  1204. "interoperability",
  1205. "standards"
  1206. ],
  1207. "support": {
  1208. "source": "https://github.com/symfony/cache-contracts/tree/v3.4.2"
  1209. },
  1210. "funding": [
  1211. {
  1212. "url": "https://symfony.com/sponsor",
  1213. "type": "custom"
  1214. },
  1215. {
  1216. "url": "https://github.com/fabpot",
  1217. "type": "github"
  1218. },
  1219. {
  1220. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1221. "type": "tidelift"
  1222. }
  1223. ],
  1224. "time": "2024-01-23T14:51:35+00:00"
  1225. },
  1226. {
  1227. "name": "symfony/console",
  1228. "version": "v7.0.6",
  1229. "source": {
  1230. "type": "git",
  1231. "url": "https://github.com/symfony/console.git",
  1232. "reference": "fde915cd8e7eb99b3d531d3d5c09531429c3f9e5"
  1233. },
  1234. "dist": {
  1235. "type": "zip",
  1236. "url": "https://api.github.com/repos/symfony/console/zipball/fde915cd8e7eb99b3d531d3d5c09531429c3f9e5",
  1237. "reference": "fde915cd8e7eb99b3d531d3d5c09531429c3f9e5",
  1238. "shasum": ""
  1239. },
  1240. "require": {
  1241. "php": ">=8.2",
  1242. "symfony/polyfill-mbstring": "~1.0",
  1243. "symfony/service-contracts": "^2.5|^3",
  1244. "symfony/string": "^6.4|^7.0"
  1245. },
  1246. "conflict": {
  1247. "symfony/dependency-injection": "<6.4",
  1248. "symfony/dotenv": "<6.4",
  1249. "symfony/event-dispatcher": "<6.4",
  1250. "symfony/lock": "<6.4",
  1251. "symfony/process": "<6.4"
  1252. },
  1253. "provide": {
  1254. "psr/log-implementation": "1.0|2.0|3.0"
  1255. },
  1256. "require-dev": {
  1257. "psr/log": "^1|^2|^3",
  1258. "symfony/config": "^6.4|^7.0",
  1259. "symfony/dependency-injection": "^6.4|^7.0",
  1260. "symfony/event-dispatcher": "^6.4|^7.0",
  1261. "symfony/http-foundation": "^6.4|^7.0",
  1262. "symfony/http-kernel": "^6.4|^7.0",
  1263. "symfony/lock": "^6.4|^7.0",
  1264. "symfony/messenger": "^6.4|^7.0",
  1265. "symfony/process": "^6.4|^7.0",
  1266. "symfony/stopwatch": "^6.4|^7.0",
  1267. "symfony/var-dumper": "^6.4|^7.0"
  1268. },
  1269. "type": "library",
  1270. "autoload": {
  1271. "psr-4": {
  1272. "Symfony\\Component\\Console\\": ""
  1273. },
  1274. "exclude-from-classmap": [
  1275. "/Tests/"
  1276. ]
  1277. },
  1278. "notification-url": "https://packagist.org/downloads/",
  1279. "license": [
  1280. "MIT"
  1281. ],
  1282. "authors": [
  1283. {
  1284. "name": "Fabien Potencier",
  1285. "email": "fabien@symfony.com"
  1286. },
  1287. {
  1288. "name": "Symfony Community",
  1289. "homepage": "https://symfony.com/contributors"
  1290. }
  1291. ],
  1292. "description": "Eases the creation of beautiful and testable command line interfaces",
  1293. "homepage": "https://symfony.com",
  1294. "keywords": [
  1295. "cli",
  1296. "command-line",
  1297. "console",
  1298. "terminal"
  1299. ],
  1300. "support": {
  1301. "source": "https://github.com/symfony/console/tree/v7.0.6"
  1302. },
  1303. "funding": [
  1304. {
  1305. "url": "https://symfony.com/sponsor",
  1306. "type": "custom"
  1307. },
  1308. {
  1309. "url": "https://github.com/fabpot",
  1310. "type": "github"
  1311. },
  1312. {
  1313. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1314. "type": "tidelift"
  1315. }
  1316. ],
  1317. "time": "2024-04-01T11:04:53+00:00"
  1318. },
  1319. {
  1320. "name": "symfony/polyfill-ctype",
  1321. "version": "v1.29.0",
  1322. "source": {
  1323. "type": "git",
  1324. "url": "https://github.com/symfony/polyfill-ctype.git",
  1325. "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4"
  1326. },
  1327. "dist": {
  1328. "type": "zip",
  1329. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ef4d7e442ca910c4764bce785146269b30cb5fc4",
  1330. "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4",
  1331. "shasum": ""
  1332. },
  1333. "require": {
  1334. "php": ">=7.1"
  1335. },
  1336. "provide": {
  1337. "ext-ctype": "*"
  1338. },
  1339. "suggest": {
  1340. "ext-ctype": "For best performance"
  1341. },
  1342. "type": "library",
  1343. "extra": {
  1344. "thanks": {
  1345. "name": "symfony/polyfill",
  1346. "url": "https://github.com/symfony/polyfill"
  1347. }
  1348. },
  1349. "autoload": {
  1350. "files": [
  1351. "bootstrap.php"
  1352. ],
  1353. "psr-4": {
  1354. "Symfony\\Polyfill\\Ctype\\": ""
  1355. }
  1356. },
  1357. "notification-url": "https://packagist.org/downloads/",
  1358. "license": [
  1359. "MIT"
  1360. ],
  1361. "authors": [
  1362. {
  1363. "name": "Gert de Pagter",
  1364. "email": "BackEndTea@gmail.com"
  1365. },
  1366. {
  1367. "name": "Symfony Community",
  1368. "homepage": "https://symfony.com/contributors"
  1369. }
  1370. ],
  1371. "description": "Symfony polyfill for ctype functions",
  1372. "homepage": "https://symfony.com",
  1373. "keywords": [
  1374. "compatibility",
  1375. "ctype",
  1376. "polyfill",
  1377. "portable"
  1378. ],
  1379. "support": {
  1380. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.29.0"
  1381. },
  1382. "funding": [
  1383. {
  1384. "url": "https://symfony.com/sponsor",
  1385. "type": "custom"
  1386. },
  1387. {
  1388. "url": "https://github.com/fabpot",
  1389. "type": "github"
  1390. },
  1391. {
  1392. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1393. "type": "tidelift"
  1394. }
  1395. ],
  1396. "time": "2024-01-29T20:11:03+00:00"
  1397. },
  1398. {
  1399. "name": "symfony/polyfill-intl-grapheme",
  1400. "version": "v1.29.0",
  1401. "source": {
  1402. "type": "git",
  1403. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  1404. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f"
  1405. },
  1406. "dist": {
  1407. "type": "zip",
  1408. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  1409. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  1410. "shasum": ""
  1411. },
  1412. "require": {
  1413. "php": ">=7.1"
  1414. },
  1415. "suggest": {
  1416. "ext-intl": "For best performance"
  1417. },
  1418. "type": "library",
  1419. "extra": {
  1420. "thanks": {
  1421. "name": "symfony/polyfill",
  1422. "url": "https://github.com/symfony/polyfill"
  1423. }
  1424. },
  1425. "autoload": {
  1426. "files": [
  1427. "bootstrap.php"
  1428. ],
  1429. "psr-4": {
  1430. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  1431. }
  1432. },
  1433. "notification-url": "https://packagist.org/downloads/",
  1434. "license": [
  1435. "MIT"
  1436. ],
  1437. "authors": [
  1438. {
  1439. "name": "Nicolas Grekas",
  1440. "email": "p@tchwork.com"
  1441. },
  1442. {
  1443. "name": "Symfony Community",
  1444. "homepage": "https://symfony.com/contributors"
  1445. }
  1446. ],
  1447. "description": "Symfony polyfill for intl's grapheme_* functions",
  1448. "homepage": "https://symfony.com",
  1449. "keywords": [
  1450. "compatibility",
  1451. "grapheme",
  1452. "intl",
  1453. "polyfill",
  1454. "portable",
  1455. "shim"
  1456. ],
  1457. "support": {
  1458. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.29.0"
  1459. },
  1460. "funding": [
  1461. {
  1462. "url": "https://symfony.com/sponsor",
  1463. "type": "custom"
  1464. },
  1465. {
  1466. "url": "https://github.com/fabpot",
  1467. "type": "github"
  1468. },
  1469. {
  1470. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1471. "type": "tidelift"
  1472. }
  1473. ],
  1474. "time": "2024-01-29T20:11:03+00:00"
  1475. },
  1476. {
  1477. "name": "symfony/polyfill-intl-normalizer",
  1478. "version": "v1.29.0",
  1479. "source": {
  1480. "type": "git",
  1481. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  1482. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d"
  1483. },
  1484. "dist": {
  1485. "type": "zip",
  1486. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/bc45c394692b948b4d383a08d7753968bed9a83d",
  1487. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d",
  1488. "shasum": ""
  1489. },
  1490. "require": {
  1491. "php": ">=7.1"
  1492. },
  1493. "suggest": {
  1494. "ext-intl": "For best performance"
  1495. },
  1496. "type": "library",
  1497. "extra": {
  1498. "thanks": {
  1499. "name": "symfony/polyfill",
  1500. "url": "https://github.com/symfony/polyfill"
  1501. }
  1502. },
  1503. "autoload": {
  1504. "files": [
  1505. "bootstrap.php"
  1506. ],
  1507. "psr-4": {
  1508. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  1509. },
  1510. "classmap": [
  1511. "Resources/stubs"
  1512. ]
  1513. },
  1514. "notification-url": "https://packagist.org/downloads/",
  1515. "license": [
  1516. "MIT"
  1517. ],
  1518. "authors": [
  1519. {
  1520. "name": "Nicolas Grekas",
  1521. "email": "p@tchwork.com"
  1522. },
  1523. {
  1524. "name": "Symfony Community",
  1525. "homepage": "https://symfony.com/contributors"
  1526. }
  1527. ],
  1528. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  1529. "homepage": "https://symfony.com",
  1530. "keywords": [
  1531. "compatibility",
  1532. "intl",
  1533. "normalizer",
  1534. "polyfill",
  1535. "portable",
  1536. "shim"
  1537. ],
  1538. "support": {
  1539. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.29.0"
  1540. },
  1541. "funding": [
  1542. {
  1543. "url": "https://symfony.com/sponsor",
  1544. "type": "custom"
  1545. },
  1546. {
  1547. "url": "https://github.com/fabpot",
  1548. "type": "github"
  1549. },
  1550. {
  1551. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1552. "type": "tidelift"
  1553. }
  1554. ],
  1555. "time": "2024-01-29T20:11:03+00:00"
  1556. },
  1557. {
  1558. "name": "symfony/polyfill-mbstring",
  1559. "version": "v1.29.0",
  1560. "source": {
  1561. "type": "git",
  1562. "url": "https://github.com/symfony/polyfill-mbstring.git",
  1563. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec"
  1564. },
  1565. "dist": {
  1566. "type": "zip",
  1567. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  1568. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  1569. "shasum": ""
  1570. },
  1571. "require": {
  1572. "php": ">=7.1"
  1573. },
  1574. "provide": {
  1575. "ext-mbstring": "*"
  1576. },
  1577. "suggest": {
  1578. "ext-mbstring": "For best performance"
  1579. },
  1580. "type": "library",
  1581. "extra": {
  1582. "thanks": {
  1583. "name": "symfony/polyfill",
  1584. "url": "https://github.com/symfony/polyfill"
  1585. }
  1586. },
  1587. "autoload": {
  1588. "files": [
  1589. "bootstrap.php"
  1590. ],
  1591. "psr-4": {
  1592. "Symfony\\Polyfill\\Mbstring\\": ""
  1593. }
  1594. },
  1595. "notification-url": "https://packagist.org/downloads/",
  1596. "license": [
  1597. "MIT"
  1598. ],
  1599. "authors": [
  1600. {
  1601. "name": "Nicolas Grekas",
  1602. "email": "p@tchwork.com"
  1603. },
  1604. {
  1605. "name": "Symfony Community",
  1606. "homepage": "https://symfony.com/contributors"
  1607. }
  1608. ],
  1609. "description": "Symfony polyfill for the Mbstring extension",
  1610. "homepage": "https://symfony.com",
  1611. "keywords": [
  1612. "compatibility",
  1613. "mbstring",
  1614. "polyfill",
  1615. "portable",
  1616. "shim"
  1617. ],
  1618. "support": {
  1619. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.29.0"
  1620. },
  1621. "funding": [
  1622. {
  1623. "url": "https://symfony.com/sponsor",
  1624. "type": "custom"
  1625. },
  1626. {
  1627. "url": "https://github.com/fabpot",
  1628. "type": "github"
  1629. },
  1630. {
  1631. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1632. "type": "tidelift"
  1633. }
  1634. ],
  1635. "time": "2024-01-29T20:11:03+00:00"
  1636. },
  1637. {
  1638. "name": "symfony/polyfill-php80",
  1639. "version": "v1.29.0",
  1640. "source": {
  1641. "type": "git",
  1642. "url": "https://github.com/symfony/polyfill-php80.git",
  1643. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b"
  1644. },
  1645. "dist": {
  1646. "type": "zip",
  1647. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  1648. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  1649. "shasum": ""
  1650. },
  1651. "require": {
  1652. "php": ">=7.1"
  1653. },
  1654. "type": "library",
  1655. "extra": {
  1656. "thanks": {
  1657. "name": "symfony/polyfill",
  1658. "url": "https://github.com/symfony/polyfill"
  1659. }
  1660. },
  1661. "autoload": {
  1662. "files": [
  1663. "bootstrap.php"
  1664. ],
  1665. "psr-4": {
  1666. "Symfony\\Polyfill\\Php80\\": ""
  1667. },
  1668. "classmap": [
  1669. "Resources/stubs"
  1670. ]
  1671. },
  1672. "notification-url": "https://packagist.org/downloads/",
  1673. "license": [
  1674. "MIT"
  1675. ],
  1676. "authors": [
  1677. {
  1678. "name": "Ion Bazan",
  1679. "email": "ion.bazan@gmail.com"
  1680. },
  1681. {
  1682. "name": "Nicolas Grekas",
  1683. "email": "p@tchwork.com"
  1684. },
  1685. {
  1686. "name": "Symfony Community",
  1687. "homepage": "https://symfony.com/contributors"
  1688. }
  1689. ],
  1690. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  1691. "homepage": "https://symfony.com",
  1692. "keywords": [
  1693. "compatibility",
  1694. "polyfill",
  1695. "portable",
  1696. "shim"
  1697. ],
  1698. "support": {
  1699. "source": "https://github.com/symfony/polyfill-php80/tree/v1.29.0"
  1700. },
  1701. "funding": [
  1702. {
  1703. "url": "https://symfony.com/sponsor",
  1704. "type": "custom"
  1705. },
  1706. {
  1707. "url": "https://github.com/fabpot",
  1708. "type": "github"
  1709. },
  1710. {
  1711. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1712. "type": "tidelift"
  1713. }
  1714. ],
  1715. "time": "2024-01-29T20:11:03+00:00"
  1716. },
  1717. {
  1718. "name": "symfony/service-contracts",
  1719. "version": "v3.4.2",
  1720. "source": {
  1721. "type": "git",
  1722. "url": "https://github.com/symfony/service-contracts.git",
  1723. "reference": "11bbf19a0fb7b36345861e85c5768844c552906e"
  1724. },
  1725. "dist": {
  1726. "type": "zip",
  1727. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/11bbf19a0fb7b36345861e85c5768844c552906e",
  1728. "reference": "11bbf19a0fb7b36345861e85c5768844c552906e",
  1729. "shasum": ""
  1730. },
  1731. "require": {
  1732. "php": ">=8.1",
  1733. "psr/container": "^1.1|^2.0"
  1734. },
  1735. "conflict": {
  1736. "ext-psr": "<1.1|>=2"
  1737. },
  1738. "type": "library",
  1739. "extra": {
  1740. "branch-alias": {
  1741. "dev-main": "3.4-dev"
  1742. },
  1743. "thanks": {
  1744. "name": "symfony/contracts",
  1745. "url": "https://github.com/symfony/contracts"
  1746. }
  1747. },
  1748. "autoload": {
  1749. "psr-4": {
  1750. "Symfony\\Contracts\\Service\\": ""
  1751. },
  1752. "exclude-from-classmap": [
  1753. "/Test/"
  1754. ]
  1755. },
  1756. "notification-url": "https://packagist.org/downloads/",
  1757. "license": [
  1758. "MIT"
  1759. ],
  1760. "authors": [
  1761. {
  1762. "name": "Nicolas Grekas",
  1763. "email": "p@tchwork.com"
  1764. },
  1765. {
  1766. "name": "Symfony Community",
  1767. "homepage": "https://symfony.com/contributors"
  1768. }
  1769. ],
  1770. "description": "Generic abstractions related to writing services",
  1771. "homepage": "https://symfony.com",
  1772. "keywords": [
  1773. "abstractions",
  1774. "contracts",
  1775. "decoupling",
  1776. "interfaces",
  1777. "interoperability",
  1778. "standards"
  1779. ],
  1780. "support": {
  1781. "source": "https://github.com/symfony/service-contracts/tree/v3.4.2"
  1782. },
  1783. "funding": [
  1784. {
  1785. "url": "https://symfony.com/sponsor",
  1786. "type": "custom"
  1787. },
  1788. {
  1789. "url": "https://github.com/fabpot",
  1790. "type": "github"
  1791. },
  1792. {
  1793. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1794. "type": "tidelift"
  1795. }
  1796. ],
  1797. "time": "2023-12-19T21:51:00+00:00"
  1798. },
  1799. {
  1800. "name": "symfony/string",
  1801. "version": "v7.0.4",
  1802. "source": {
  1803. "type": "git",
  1804. "url": "https://github.com/symfony/string.git",
  1805. "reference": "f5832521b998b0bec40bee688ad5de98d4cf111b"
  1806. },
  1807. "dist": {
  1808. "type": "zip",
  1809. "url": "https://api.github.com/repos/symfony/string/zipball/f5832521b998b0bec40bee688ad5de98d4cf111b",
  1810. "reference": "f5832521b998b0bec40bee688ad5de98d4cf111b",
  1811. "shasum": ""
  1812. },
  1813. "require": {
  1814. "php": ">=8.2",
  1815. "symfony/polyfill-ctype": "~1.8",
  1816. "symfony/polyfill-intl-grapheme": "~1.0",
  1817. "symfony/polyfill-intl-normalizer": "~1.0",
  1818. "symfony/polyfill-mbstring": "~1.0"
  1819. },
  1820. "conflict": {
  1821. "symfony/translation-contracts": "<2.5"
  1822. },
  1823. "require-dev": {
  1824. "symfony/error-handler": "^6.4|^7.0",
  1825. "symfony/http-client": "^6.4|^7.0",
  1826. "symfony/intl": "^6.4|^7.0",
  1827. "symfony/translation-contracts": "^2.5|^3.0",
  1828. "symfony/var-exporter": "^6.4|^7.0"
  1829. },
  1830. "type": "library",
  1831. "autoload": {
  1832. "files": [
  1833. "Resources/functions.php"
  1834. ],
  1835. "psr-4": {
  1836. "Symfony\\Component\\String\\": ""
  1837. },
  1838. "exclude-from-classmap": [
  1839. "/Tests/"
  1840. ]
  1841. },
  1842. "notification-url": "https://packagist.org/downloads/",
  1843. "license": [
  1844. "MIT"
  1845. ],
  1846. "authors": [
  1847. {
  1848. "name": "Nicolas Grekas",
  1849. "email": "p@tchwork.com"
  1850. },
  1851. {
  1852. "name": "Symfony Community",
  1853. "homepage": "https://symfony.com/contributors"
  1854. }
  1855. ],
  1856. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  1857. "homepage": "https://symfony.com",
  1858. "keywords": [
  1859. "grapheme",
  1860. "i18n",
  1861. "string",
  1862. "unicode",
  1863. "utf-8",
  1864. "utf8"
  1865. ],
  1866. "support": {
  1867. "source": "https://github.com/symfony/string/tree/v7.0.4"
  1868. },
  1869. "funding": [
  1870. {
  1871. "url": "https://symfony.com/sponsor",
  1872. "type": "custom"
  1873. },
  1874. {
  1875. "url": "https://github.com/fabpot",
  1876. "type": "github"
  1877. },
  1878. {
  1879. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1880. "type": "tidelift"
  1881. }
  1882. ],
  1883. "time": "2024-02-01T13:17:36+00:00"
  1884. },
  1885. {
  1886. "name": "symfony/var-exporter",
  1887. "version": "v7.0.6",
  1888. "source": {
  1889. "type": "git",
  1890. "url": "https://github.com/symfony/var-exporter.git",
  1891. "reference": "c74c568d2a15a1d407cf40d61ea82bc2d521e27b"
  1892. },
  1893. "dist": {
  1894. "type": "zip",
  1895. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/c74c568d2a15a1d407cf40d61ea82bc2d521e27b",
  1896. "reference": "c74c568d2a15a1d407cf40d61ea82bc2d521e27b",
  1897. "shasum": ""
  1898. },
  1899. "require": {
  1900. "php": ">=8.2"
  1901. },
  1902. "require-dev": {
  1903. "symfony/property-access": "^6.4|^7.0",
  1904. "symfony/serializer": "^6.4|^7.0",
  1905. "symfony/var-dumper": "^6.4|^7.0"
  1906. },
  1907. "type": "library",
  1908. "autoload": {
  1909. "psr-4": {
  1910. "Symfony\\Component\\VarExporter\\": ""
  1911. },
  1912. "exclude-from-classmap": [
  1913. "/Tests/"
  1914. ]
  1915. },
  1916. "notification-url": "https://packagist.org/downloads/",
  1917. "license": [
  1918. "MIT"
  1919. ],
  1920. "authors": [
  1921. {
  1922. "name": "Nicolas Grekas",
  1923. "email": "p@tchwork.com"
  1924. },
  1925. {
  1926. "name": "Symfony Community",
  1927. "homepage": "https://symfony.com/contributors"
  1928. }
  1929. ],
  1930. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  1931. "homepage": "https://symfony.com",
  1932. "keywords": [
  1933. "clone",
  1934. "construct",
  1935. "export",
  1936. "hydrate",
  1937. "instantiate",
  1938. "lazy-loading",
  1939. "proxy",
  1940. "serialize"
  1941. ],
  1942. "support": {
  1943. "source": "https://github.com/symfony/var-exporter/tree/v7.0.6"
  1944. },
  1945. "funding": [
  1946. {
  1947. "url": "https://symfony.com/sponsor",
  1948. "type": "custom"
  1949. },
  1950. {
  1951. "url": "https://github.com/fabpot",
  1952. "type": "github"
  1953. },
  1954. {
  1955. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1956. "type": "tidelift"
  1957. }
  1958. ],
  1959. "time": "2024-03-20T21:25:22+00:00"
  1960. },
  1961. {
  1962. "name": "vlucas/phpdotenv",
  1963. "version": "v5.6.0",
  1964. "source": {
  1965. "type": "git",
  1966. "url": "https://github.com/vlucas/phpdotenv.git",
  1967. "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4"
  1968. },
  1969. "dist": {
  1970. "type": "zip",
  1971. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4",
  1972. "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4",
  1973. "shasum": ""
  1974. },
  1975. "require": {
  1976. "ext-pcre": "*",
  1977. "graham-campbell/result-type": "^1.1.2",
  1978. "php": "^7.2.5 || ^8.0",
  1979. "phpoption/phpoption": "^1.9.2",
  1980. "symfony/polyfill-ctype": "^1.24",
  1981. "symfony/polyfill-mbstring": "^1.24",
  1982. "symfony/polyfill-php80": "^1.24"
  1983. },
  1984. "require-dev": {
  1985. "bamarni/composer-bin-plugin": "^1.8.2",
  1986. "ext-filter": "*",
  1987. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  1988. },
  1989. "suggest": {
  1990. "ext-filter": "Required to use the boolean validator."
  1991. },
  1992. "type": "library",
  1993. "extra": {
  1994. "bamarni-bin": {
  1995. "bin-links": true,
  1996. "forward-command": true
  1997. },
  1998. "branch-alias": {
  1999. "dev-master": "5.6-dev"
  2000. }
  2001. },
  2002. "autoload": {
  2003. "psr-4": {
  2004. "Dotenv\\": "src/"
  2005. }
  2006. },
  2007. "notification-url": "https://packagist.org/downloads/",
  2008. "license": [
  2009. "BSD-3-Clause"
  2010. ],
  2011. "authors": [
  2012. {
  2013. "name": "Graham Campbell",
  2014. "email": "hello@gjcampbell.co.uk",
  2015. "homepage": "https://github.com/GrahamCampbell"
  2016. },
  2017. {
  2018. "name": "Vance Lucas",
  2019. "email": "vance@vancelucas.com",
  2020. "homepage": "https://github.com/vlucas"
  2021. }
  2022. ],
  2023. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  2024. "keywords": [
  2025. "dotenv",
  2026. "env",
  2027. "environment"
  2028. ],
  2029. "support": {
  2030. "issues": "https://github.com/vlucas/phpdotenv/issues",
  2031. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.0"
  2032. },
  2033. "funding": [
  2034. {
  2035. "url": "https://github.com/GrahamCampbell",
  2036. "type": "github"
  2037. },
  2038. {
  2039. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  2040. "type": "tidelift"
  2041. }
  2042. ],
  2043. "time": "2023-11-12T22:43:29+00:00"
  2044. }
  2045. ],
  2046. "packages-dev": [],
  2047. "aliases": [],
  2048. "minimum-stability": "stable",
  2049. "stability-flags": [],
  2050. "prefer-stable": false,
  2051. "prefer-lowest": false,
  2052. "platform": [],
  2053. "platform-dev": [],
  2054. "plugin-api-version": "2.3.0"
  2055. }