composer.lock 69 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962
  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": "d7d83bfd6485ea191b69499186363d1f",
  8. "packages": [],
  9. "packages-dev": [
  10. {
  11. "name": "dealerdirect/phpcodesniffer-composer-installer",
  12. "version": "dev-master",
  13. "source": {
  14. "type": "git",
  15. "url": "https://github.com/PHPCSStandards/composer-installer.git",
  16. "reference": "cd79216fba0b4000cd27062a5953dbd82e908c12"
  17. },
  18. "dist": {
  19. "type": "zip",
  20. "url": "https://api.github.com/repos/PHPCSStandards/composer-installer/zipball/cd79216fba0b4000cd27062a5953dbd82e908c12",
  21. "reference": "cd79216fba0b4000cd27062a5953dbd82e908c12",
  22. "shasum": ""
  23. },
  24. "require": {
  25. "composer-plugin-api": "^1.0 || ^2.0",
  26. "php": ">=5.4",
  27. "squizlabs/php_codesniffer": "^2.0 || ^3.1.0 || ^4.0"
  28. },
  29. "require-dev": {
  30. "composer/composer": "*",
  31. "ext-json": "*",
  32. "ext-zip": "*",
  33. "php-parallel-lint/php-parallel-lint": "^1.3.1",
  34. "phpcompatibility/php-compatibility": "^9.0",
  35. "yoast/phpunit-polyfills": "^1.0"
  36. },
  37. "default-branch": true,
  38. "type": "composer-plugin",
  39. "extra": {
  40. "class": "PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin"
  41. },
  42. "autoload": {
  43. "psr-4": {
  44. "PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\": "src/"
  45. }
  46. },
  47. "notification-url": "https://packagist.org/downloads/",
  48. "license": [
  49. "MIT"
  50. ],
  51. "authors": [
  52. {
  53. "name": "Franck Nijhof",
  54. "email": "franck.nijhof@dealerdirect.com",
  55. "homepage": "http://www.frenck.nl",
  56. "role": "Developer / IT Manager"
  57. },
  58. {
  59. "name": "Contributors",
  60. "homepage": "https://github.com/PHPCSStandards/composer-installer/graphs/contributors"
  61. }
  62. ],
  63. "description": "PHP_CodeSniffer Standards Composer Installer Plugin",
  64. "homepage": "http://www.dealerdirect.com",
  65. "keywords": [
  66. "PHPCodeSniffer",
  67. "PHP_CodeSniffer",
  68. "code quality",
  69. "codesniffer",
  70. "composer",
  71. "installer",
  72. "phpcbf",
  73. "phpcs",
  74. "plugin",
  75. "qa",
  76. "quality",
  77. "standard",
  78. "standards",
  79. "style guide",
  80. "stylecheck",
  81. "tests"
  82. ],
  83. "support": {
  84. "issues": "https://github.com/PHPCSStandards/composer-installer/issues",
  85. "source": "https://github.com/PHPCSStandards/composer-installer"
  86. },
  87. "time": "2022-11-16T08:42:42+00:00"
  88. },
  89. {
  90. "name": "doctrine/instantiator",
  91. "version": "1.5.x-dev",
  92. "source": {
  93. "type": "git",
  94. "url": "https://github.com/doctrine/instantiator.git",
  95. "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc"
  96. },
  97. "dist": {
  98. "type": "zip",
  99. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/10dcfce151b967d20fde1b34ae6640712c3891bc",
  100. "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc",
  101. "shasum": ""
  102. },
  103. "require": {
  104. "php": "^7.1 || ^8.0"
  105. },
  106. "require-dev": {
  107. "doctrine/coding-standard": "^9",
  108. "ext-pdo": "*",
  109. "ext-phar": "*",
  110. "phpbench/phpbench": "^0.16 || ^1",
  111. "phpstan/phpstan": "^1.4",
  112. "phpstan/phpstan-phpunit": "^1",
  113. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  114. "vimeo/psalm": "^4.22"
  115. },
  116. "type": "library",
  117. "autoload": {
  118. "psr-4": {
  119. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  120. }
  121. },
  122. "notification-url": "https://packagist.org/downloads/",
  123. "license": [
  124. "MIT"
  125. ],
  126. "authors": [
  127. {
  128. "name": "Marco Pivetta",
  129. "email": "ocramius@gmail.com",
  130. "homepage": "https://ocramius.github.io/"
  131. }
  132. ],
  133. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  134. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  135. "keywords": [
  136. "constructor",
  137. "instantiate"
  138. ],
  139. "support": {
  140. "issues": "https://github.com/doctrine/instantiator/issues",
  141. "source": "https://github.com/doctrine/instantiator/tree/1.4.x"
  142. },
  143. "funding": [
  144. {
  145. "url": "https://www.doctrine-project.org/sponsorship.html",
  146. "type": "custom"
  147. },
  148. {
  149. "url": "https://www.patreon.com/phpdoctrine",
  150. "type": "patreon"
  151. },
  152. {
  153. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  154. "type": "tidelift"
  155. }
  156. ],
  157. "time": "2022-03-03T08:28:38+00:00"
  158. },
  159. {
  160. "name": "myclabs/deep-copy",
  161. "version": "1.x-dev",
  162. "source": {
  163. "type": "git",
  164. "url": "https://github.com/myclabs/DeepCopy.git",
  165. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614"
  166. },
  167. "dist": {
  168. "type": "zip",
  169. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/14daed4296fae74d9e3201d2c4925d1acb7aa614",
  170. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614",
  171. "shasum": ""
  172. },
  173. "require": {
  174. "php": "^7.1 || ^8.0"
  175. },
  176. "conflict": {
  177. "doctrine/collections": "<1.6.8",
  178. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  179. },
  180. "require-dev": {
  181. "doctrine/collections": "^1.6.8",
  182. "doctrine/common": "^2.13.3 || ^3.2.2",
  183. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  184. },
  185. "default-branch": true,
  186. "type": "library",
  187. "autoload": {
  188. "files": [
  189. "src/DeepCopy/deep_copy.php"
  190. ],
  191. "psr-4": {
  192. "DeepCopy\\": "src/DeepCopy/"
  193. }
  194. },
  195. "notification-url": "https://packagist.org/downloads/",
  196. "license": [
  197. "MIT"
  198. ],
  199. "description": "Create deep copies (clones) of your objects",
  200. "keywords": [
  201. "clone",
  202. "copy",
  203. "duplicate",
  204. "object",
  205. "object graph"
  206. ],
  207. "support": {
  208. "issues": "https://github.com/myclabs/DeepCopy/issues",
  209. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.0"
  210. },
  211. "funding": [
  212. {
  213. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  214. "type": "tidelift"
  215. }
  216. ],
  217. "time": "2022-03-03T13:19:32+00:00"
  218. },
  219. {
  220. "name": "nikic/php-parser",
  221. "version": "4.x-dev",
  222. "source": {
  223. "type": "git",
  224. "url": "https://github.com/nikic/PHP-Parser.git",
  225. "reference": "1df465cd901414affcf9a04ef041cf3aedad73b1"
  226. },
  227. "dist": {
  228. "type": "zip",
  229. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/1df465cd901414affcf9a04ef041cf3aedad73b1",
  230. "reference": "1df465cd901414affcf9a04ef041cf3aedad73b1",
  231. "shasum": ""
  232. },
  233. "require": {
  234. "ext-tokenizer": "*",
  235. "php": ">=7.0"
  236. },
  237. "require-dev": {
  238. "ircmaxell/php-yacc": "^0.0.7",
  239. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  240. },
  241. "default-branch": true,
  242. "bin": [
  243. "bin/php-parse"
  244. ],
  245. "type": "library",
  246. "extra": {
  247. "branch-alias": {
  248. "dev-master": "4.9-dev"
  249. }
  250. },
  251. "autoload": {
  252. "psr-4": {
  253. "PhpParser\\": "lib/PhpParser"
  254. }
  255. },
  256. "notification-url": "https://packagist.org/downloads/",
  257. "license": [
  258. "BSD-3-Clause"
  259. ],
  260. "authors": [
  261. {
  262. "name": "Nikita Popov"
  263. }
  264. ],
  265. "description": "A PHP parser written in PHP",
  266. "keywords": [
  267. "parser",
  268. "php"
  269. ],
  270. "support": {
  271. "issues": "https://github.com/nikic/PHP-Parser/issues",
  272. "source": "https://github.com/nikic/PHP-Parser/tree/4.x"
  273. },
  274. "time": "2022-11-13T15:33:17+00:00"
  275. },
  276. {
  277. "name": "phar-io/manifest",
  278. "version": "dev-master",
  279. "source": {
  280. "type": "git",
  281. "url": "https://github.com/phar-io/manifest.git",
  282. "reference": "36d8a21e851a9512db2b086dc5ac2c61308f0138"
  283. },
  284. "dist": {
  285. "type": "zip",
  286. "url": "https://api.github.com/repos/phar-io/manifest/zipball/36d8a21e851a9512db2b086dc5ac2c61308f0138",
  287. "reference": "36d8a21e851a9512db2b086dc5ac2c61308f0138",
  288. "shasum": ""
  289. },
  290. "require": {
  291. "ext-dom": "*",
  292. "ext-libxml": "*",
  293. "ext-phar": "*",
  294. "ext-xmlwriter": "*",
  295. "phar-io/version": "^3.0.1",
  296. "php": "^7.2 || ^8.0"
  297. },
  298. "default-branch": true,
  299. "type": "library",
  300. "extra": {
  301. "branch-alias": {
  302. "dev-master": "2.0.x-dev"
  303. }
  304. },
  305. "autoload": {
  306. "classmap": [
  307. "src/"
  308. ]
  309. },
  310. "notification-url": "https://packagist.org/downloads/",
  311. "license": [
  312. "BSD-3-Clause"
  313. ],
  314. "authors": [
  315. {
  316. "name": "Arne Blankerts",
  317. "email": "arne@blankerts.de",
  318. "role": "Developer"
  319. },
  320. {
  321. "name": "Sebastian Heuer",
  322. "email": "sebastian@phpeople.de",
  323. "role": "Developer"
  324. },
  325. {
  326. "name": "Sebastian Bergmann",
  327. "email": "sebastian@phpunit.de",
  328. "role": "Developer"
  329. }
  330. ],
  331. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  332. "support": {
  333. "issues": "https://github.com/phar-io/manifest/issues",
  334. "source": "https://github.com/phar-io/manifest/tree/master"
  335. },
  336. "funding": [
  337. {
  338. "url": "https://github.com/theseer",
  339. "type": "github"
  340. }
  341. ],
  342. "time": "2022-02-21T19:55:33+00:00"
  343. },
  344. {
  345. "name": "phar-io/version",
  346. "version": "3.2.1",
  347. "source": {
  348. "type": "git",
  349. "url": "https://github.com/phar-io/version.git",
  350. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  351. },
  352. "dist": {
  353. "type": "zip",
  354. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  355. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  356. "shasum": ""
  357. },
  358. "require": {
  359. "php": "^7.2 || ^8.0"
  360. },
  361. "type": "library",
  362. "autoload": {
  363. "classmap": [
  364. "src/"
  365. ]
  366. },
  367. "notification-url": "https://packagist.org/downloads/",
  368. "license": [
  369. "BSD-3-Clause"
  370. ],
  371. "authors": [
  372. {
  373. "name": "Arne Blankerts",
  374. "email": "arne@blankerts.de",
  375. "role": "Developer"
  376. },
  377. {
  378. "name": "Sebastian Heuer",
  379. "email": "sebastian@phpeople.de",
  380. "role": "Developer"
  381. },
  382. {
  383. "name": "Sebastian Bergmann",
  384. "email": "sebastian@phpunit.de",
  385. "role": "Developer"
  386. }
  387. ],
  388. "description": "Library for handling version information and constraints",
  389. "support": {
  390. "issues": "https://github.com/phar-io/version/issues",
  391. "source": "https://github.com/phar-io/version/tree/3.2.1"
  392. },
  393. "time": "2022-02-21T01:04:05+00:00"
  394. },
  395. {
  396. "name": "phpcompatibility/php-compatibility",
  397. "version": "9.3.5",
  398. "source": {
  399. "type": "git",
  400. "url": "https://github.com/PHPCompatibility/PHPCompatibility.git",
  401. "reference": "9fb324479acf6f39452e0655d2429cc0d3914243"
  402. },
  403. "dist": {
  404. "type": "zip",
  405. "url": "https://api.github.com/repos/PHPCompatibility/PHPCompatibility/zipball/9fb324479acf6f39452e0655d2429cc0d3914243",
  406. "reference": "9fb324479acf6f39452e0655d2429cc0d3914243",
  407. "shasum": ""
  408. },
  409. "require": {
  410. "php": ">=5.3",
  411. "squizlabs/php_codesniffer": "^2.3 || ^3.0.2"
  412. },
  413. "conflict": {
  414. "squizlabs/php_codesniffer": "2.6.2"
  415. },
  416. "require-dev": {
  417. "phpunit/phpunit": "~4.5 || ^5.0 || ^6.0 || ^7.0"
  418. },
  419. "suggest": {
  420. "dealerdirect/phpcodesniffer-composer-installer": "^0.5 || This Composer plugin will sort out the PHPCS 'installed_paths' automatically.",
  421. "roave/security-advisories": "dev-master || Helps prevent installing dependencies with known security issues."
  422. },
  423. "type": "phpcodesniffer-standard",
  424. "notification-url": "https://packagist.org/downloads/",
  425. "license": [
  426. "LGPL-3.0-or-later"
  427. ],
  428. "authors": [
  429. {
  430. "name": "Wim Godden",
  431. "homepage": "https://github.com/wimg",
  432. "role": "lead"
  433. },
  434. {
  435. "name": "Juliette Reinders Folmer",
  436. "homepage": "https://github.com/jrfnl",
  437. "role": "lead"
  438. },
  439. {
  440. "name": "Contributors",
  441. "homepage": "https://github.com/PHPCompatibility/PHPCompatibility/graphs/contributors"
  442. }
  443. ],
  444. "description": "A set of sniffs for PHP_CodeSniffer that checks for PHP cross-version compatibility.",
  445. "homepage": "http://techblog.wimgodden.be/tag/codesniffer/",
  446. "keywords": [
  447. "compatibility",
  448. "phpcs",
  449. "standards"
  450. ],
  451. "support": {
  452. "issues": "https://github.com/PHPCompatibility/PHPCompatibility/issues",
  453. "source": "https://github.com/PHPCompatibility/PHPCompatibility"
  454. },
  455. "time": "2019-12-27T09:44:58+00:00"
  456. },
  457. {
  458. "name": "phpunit/php-code-coverage",
  459. "version": "9.2.x-dev",
  460. "source": {
  461. "type": "git",
  462. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  463. "reference": "5797d42f4735077b43816ec6a6fdfa7a1ad551c1"
  464. },
  465. "dist": {
  466. "type": "zip",
  467. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/5797d42f4735077b43816ec6a6fdfa7a1ad551c1",
  468. "reference": "5797d42f4735077b43816ec6a6fdfa7a1ad551c1",
  469. "shasum": ""
  470. },
  471. "require": {
  472. "ext-dom": "*",
  473. "ext-libxml": "*",
  474. "ext-xmlwriter": "*",
  475. "nikic/php-parser": "^4.14",
  476. "php": ">=7.3",
  477. "phpunit/php-file-iterator": "^3.0.3",
  478. "phpunit/php-text-template": "^2.0.2",
  479. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  480. "sebastian/complexity": "^2.0",
  481. "sebastian/environment": "^5.1.2",
  482. "sebastian/lines-of-code": "^1.0.3",
  483. "sebastian/version": "^3.0.1",
  484. "theseer/tokenizer": "^1.2.0"
  485. },
  486. "require-dev": {
  487. "phpunit/phpunit": "^9.3"
  488. },
  489. "suggest": {
  490. "ext-pcov": "*",
  491. "ext-xdebug": "*"
  492. },
  493. "type": "library",
  494. "extra": {
  495. "branch-alias": {
  496. "dev-master": "9.2-dev"
  497. }
  498. },
  499. "autoload": {
  500. "classmap": [
  501. "src/"
  502. ]
  503. },
  504. "notification-url": "https://packagist.org/downloads/",
  505. "license": [
  506. "BSD-3-Clause"
  507. ],
  508. "authors": [
  509. {
  510. "name": "Sebastian Bergmann",
  511. "email": "sebastian@phpunit.de",
  512. "role": "lead"
  513. }
  514. ],
  515. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  516. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  517. "keywords": [
  518. "coverage",
  519. "testing",
  520. "xunit"
  521. ],
  522. "support": {
  523. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  524. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2"
  525. },
  526. "funding": [
  527. {
  528. "url": "https://github.com/sebastianbergmann",
  529. "type": "github"
  530. }
  531. ],
  532. "time": "2022-11-30T19:01:11+00:00"
  533. },
  534. {
  535. "name": "phpunit/php-file-iterator",
  536. "version": "3.0.x-dev",
  537. "source": {
  538. "type": "git",
  539. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  540. "reference": "38b24367e1b340aa78b96d7cab042942d917bb84"
  541. },
  542. "dist": {
  543. "type": "zip",
  544. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/38b24367e1b340aa78b96d7cab042942d917bb84",
  545. "reference": "38b24367e1b340aa78b96d7cab042942d917bb84",
  546. "shasum": ""
  547. },
  548. "require": {
  549. "php": ">=7.3"
  550. },
  551. "require-dev": {
  552. "phpunit/phpunit": "^9.3"
  553. },
  554. "type": "library",
  555. "extra": {
  556. "branch-alias": {
  557. "dev-master": "3.0-dev"
  558. }
  559. },
  560. "autoload": {
  561. "classmap": [
  562. "src/"
  563. ]
  564. },
  565. "notification-url": "https://packagist.org/downloads/",
  566. "license": [
  567. "BSD-3-Clause"
  568. ],
  569. "authors": [
  570. {
  571. "name": "Sebastian Bergmann",
  572. "email": "sebastian@phpunit.de",
  573. "role": "lead"
  574. }
  575. ],
  576. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  577. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  578. "keywords": [
  579. "filesystem",
  580. "iterator"
  581. ],
  582. "support": {
  583. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  584. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0"
  585. },
  586. "funding": [
  587. {
  588. "url": "https://github.com/sebastianbergmann",
  589. "type": "github"
  590. }
  591. ],
  592. "time": "2022-02-11T16:23:04+00:00"
  593. },
  594. {
  595. "name": "phpunit/php-invoker",
  596. "version": "3.1.1",
  597. "source": {
  598. "type": "git",
  599. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  600. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  601. },
  602. "dist": {
  603. "type": "zip",
  604. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  605. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  606. "shasum": ""
  607. },
  608. "require": {
  609. "php": ">=7.3"
  610. },
  611. "require-dev": {
  612. "ext-pcntl": "*",
  613. "phpunit/phpunit": "^9.3"
  614. },
  615. "suggest": {
  616. "ext-pcntl": "*"
  617. },
  618. "type": "library",
  619. "extra": {
  620. "branch-alias": {
  621. "dev-master": "3.1-dev"
  622. }
  623. },
  624. "autoload": {
  625. "classmap": [
  626. "src/"
  627. ]
  628. },
  629. "notification-url": "https://packagist.org/downloads/",
  630. "license": [
  631. "BSD-3-Clause"
  632. ],
  633. "authors": [
  634. {
  635. "name": "Sebastian Bergmann",
  636. "email": "sebastian@phpunit.de",
  637. "role": "lead"
  638. }
  639. ],
  640. "description": "Invoke callables with a timeout",
  641. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  642. "keywords": [
  643. "process"
  644. ],
  645. "support": {
  646. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  647. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  648. },
  649. "funding": [
  650. {
  651. "url": "https://github.com/sebastianbergmann",
  652. "type": "github"
  653. }
  654. ],
  655. "time": "2020-09-28T05:58:55+00:00"
  656. },
  657. {
  658. "name": "phpunit/php-text-template",
  659. "version": "2.0.4",
  660. "source": {
  661. "type": "git",
  662. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  663. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  664. },
  665. "dist": {
  666. "type": "zip",
  667. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  668. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  669. "shasum": ""
  670. },
  671. "require": {
  672. "php": ">=7.3"
  673. },
  674. "require-dev": {
  675. "phpunit/phpunit": "^9.3"
  676. },
  677. "type": "library",
  678. "extra": {
  679. "branch-alias": {
  680. "dev-master": "2.0-dev"
  681. }
  682. },
  683. "autoload": {
  684. "classmap": [
  685. "src/"
  686. ]
  687. },
  688. "notification-url": "https://packagist.org/downloads/",
  689. "license": [
  690. "BSD-3-Clause"
  691. ],
  692. "authors": [
  693. {
  694. "name": "Sebastian Bergmann",
  695. "email": "sebastian@phpunit.de",
  696. "role": "lead"
  697. }
  698. ],
  699. "description": "Simple template engine.",
  700. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  701. "keywords": [
  702. "template"
  703. ],
  704. "support": {
  705. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  706. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  707. },
  708. "funding": [
  709. {
  710. "url": "https://github.com/sebastianbergmann",
  711. "type": "github"
  712. }
  713. ],
  714. "time": "2020-10-26T05:33:50+00:00"
  715. },
  716. {
  717. "name": "phpunit/php-timer",
  718. "version": "5.0.3",
  719. "source": {
  720. "type": "git",
  721. "url": "https://github.com/sebastianbergmann/php-timer.git",
  722. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  723. },
  724. "dist": {
  725. "type": "zip",
  726. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  727. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  728. "shasum": ""
  729. },
  730. "require": {
  731. "php": ">=7.3"
  732. },
  733. "require-dev": {
  734. "phpunit/phpunit": "^9.3"
  735. },
  736. "type": "library",
  737. "extra": {
  738. "branch-alias": {
  739. "dev-master": "5.0-dev"
  740. }
  741. },
  742. "autoload": {
  743. "classmap": [
  744. "src/"
  745. ]
  746. },
  747. "notification-url": "https://packagist.org/downloads/",
  748. "license": [
  749. "BSD-3-Clause"
  750. ],
  751. "authors": [
  752. {
  753. "name": "Sebastian Bergmann",
  754. "email": "sebastian@phpunit.de",
  755. "role": "lead"
  756. }
  757. ],
  758. "description": "Utility class for timing",
  759. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  760. "keywords": [
  761. "timer"
  762. ],
  763. "support": {
  764. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  765. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  766. },
  767. "funding": [
  768. {
  769. "url": "https://github.com/sebastianbergmann",
  770. "type": "github"
  771. }
  772. ],
  773. "time": "2020-10-26T13:16:10+00:00"
  774. },
  775. {
  776. "name": "phpunit/phpunit",
  777. "version": "9.5.x-dev",
  778. "source": {
  779. "type": "git",
  780. "url": "https://github.com/sebastianbergmann/phpunit.git",
  781. "reference": "c5d354261e4dac18b0c0ec0f60d47857567cb344"
  782. },
  783. "dist": {
  784. "type": "zip",
  785. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/c5d354261e4dac18b0c0ec0f60d47857567cb344",
  786. "reference": "c5d354261e4dac18b0c0ec0f60d47857567cb344",
  787. "shasum": ""
  788. },
  789. "require": {
  790. "doctrine/instantiator": "^1.3.1",
  791. "ext-dom": "*",
  792. "ext-json": "*",
  793. "ext-libxml": "*",
  794. "ext-mbstring": "*",
  795. "ext-xml": "*",
  796. "ext-xmlwriter": "*",
  797. "myclabs/deep-copy": "^1.10.1",
  798. "phar-io/manifest": "^2.0.3",
  799. "phar-io/version": "^3.0.2",
  800. "php": ">=7.3",
  801. "phpunit/php-code-coverage": "^9.2.13",
  802. "phpunit/php-file-iterator": "^3.0.5",
  803. "phpunit/php-invoker": "^3.1.1",
  804. "phpunit/php-text-template": "^2.0.3",
  805. "phpunit/php-timer": "^5.0.2",
  806. "sebastian/cli-parser": "^1.0.1",
  807. "sebastian/code-unit": "^1.0.6",
  808. "sebastian/comparator": "^4.0.8",
  809. "sebastian/diff": "^4.0.3",
  810. "sebastian/environment": "^5.1.3",
  811. "sebastian/exporter": "^4.0.5",
  812. "sebastian/global-state": "^5.0.1",
  813. "sebastian/object-enumerator": "^4.0.3",
  814. "sebastian/resource-operations": "^3.0.3",
  815. "sebastian/type": "^3.2",
  816. "sebastian/version": "^3.0.2"
  817. },
  818. "suggest": {
  819. "ext-soap": "*",
  820. "ext-xdebug": "*"
  821. },
  822. "bin": [
  823. "phpunit"
  824. ],
  825. "type": "library",
  826. "extra": {
  827. "branch-alias": {
  828. "dev-master": "9.5-dev"
  829. }
  830. },
  831. "autoload": {
  832. "files": [
  833. "src/Framework/Assert/Functions.php"
  834. ],
  835. "classmap": [
  836. "src/"
  837. ]
  838. },
  839. "notification-url": "https://packagist.org/downloads/",
  840. "license": [
  841. "BSD-3-Clause"
  842. ],
  843. "authors": [
  844. {
  845. "name": "Sebastian Bergmann",
  846. "email": "sebastian@phpunit.de",
  847. "role": "lead"
  848. }
  849. ],
  850. "description": "The PHP Unit Testing framework.",
  851. "homepage": "https://phpunit.de/",
  852. "keywords": [
  853. "phpunit",
  854. "testing",
  855. "xunit"
  856. ],
  857. "support": {
  858. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  859. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5"
  860. },
  861. "funding": [
  862. {
  863. "url": "https://phpunit.de/sponsors.html",
  864. "type": "custom"
  865. },
  866. {
  867. "url": "https://github.com/sebastianbergmann",
  868. "type": "github"
  869. },
  870. {
  871. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  872. "type": "tidelift"
  873. }
  874. ],
  875. "time": "2022-12-02T10:48:04+00:00"
  876. },
  877. {
  878. "name": "sebastian/cli-parser",
  879. "version": "1.0.1",
  880. "source": {
  881. "type": "git",
  882. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  883. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  884. },
  885. "dist": {
  886. "type": "zip",
  887. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  888. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  889. "shasum": ""
  890. },
  891. "require": {
  892. "php": ">=7.3"
  893. },
  894. "require-dev": {
  895. "phpunit/phpunit": "^9.3"
  896. },
  897. "type": "library",
  898. "extra": {
  899. "branch-alias": {
  900. "dev-master": "1.0-dev"
  901. }
  902. },
  903. "autoload": {
  904. "classmap": [
  905. "src/"
  906. ]
  907. },
  908. "notification-url": "https://packagist.org/downloads/",
  909. "license": [
  910. "BSD-3-Clause"
  911. ],
  912. "authors": [
  913. {
  914. "name": "Sebastian Bergmann",
  915. "email": "sebastian@phpunit.de",
  916. "role": "lead"
  917. }
  918. ],
  919. "description": "Library for parsing CLI options",
  920. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  921. "support": {
  922. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  923. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  924. },
  925. "funding": [
  926. {
  927. "url": "https://github.com/sebastianbergmann",
  928. "type": "github"
  929. }
  930. ],
  931. "time": "2020-09-28T06:08:49+00:00"
  932. },
  933. {
  934. "name": "sebastian/code-unit",
  935. "version": "1.0.8",
  936. "source": {
  937. "type": "git",
  938. "url": "https://github.com/sebastianbergmann/code-unit.git",
  939. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  940. },
  941. "dist": {
  942. "type": "zip",
  943. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  944. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  945. "shasum": ""
  946. },
  947. "require": {
  948. "php": ">=7.3"
  949. },
  950. "require-dev": {
  951. "phpunit/phpunit": "^9.3"
  952. },
  953. "type": "library",
  954. "extra": {
  955. "branch-alias": {
  956. "dev-master": "1.0-dev"
  957. }
  958. },
  959. "autoload": {
  960. "classmap": [
  961. "src/"
  962. ]
  963. },
  964. "notification-url": "https://packagist.org/downloads/",
  965. "license": [
  966. "BSD-3-Clause"
  967. ],
  968. "authors": [
  969. {
  970. "name": "Sebastian Bergmann",
  971. "email": "sebastian@phpunit.de",
  972. "role": "lead"
  973. }
  974. ],
  975. "description": "Collection of value objects that represent the PHP code units",
  976. "homepage": "https://github.com/sebastianbergmann/code-unit",
  977. "support": {
  978. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  979. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  980. },
  981. "funding": [
  982. {
  983. "url": "https://github.com/sebastianbergmann",
  984. "type": "github"
  985. }
  986. ],
  987. "time": "2020-10-26T13:08:54+00:00"
  988. },
  989. {
  990. "name": "sebastian/code-unit-reverse-lookup",
  991. "version": "2.0.3",
  992. "source": {
  993. "type": "git",
  994. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  995. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  996. },
  997. "dist": {
  998. "type": "zip",
  999. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  1000. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  1001. "shasum": ""
  1002. },
  1003. "require": {
  1004. "php": ">=7.3"
  1005. },
  1006. "require-dev": {
  1007. "phpunit/phpunit": "^9.3"
  1008. },
  1009. "type": "library",
  1010. "extra": {
  1011. "branch-alias": {
  1012. "dev-master": "2.0-dev"
  1013. }
  1014. },
  1015. "autoload": {
  1016. "classmap": [
  1017. "src/"
  1018. ]
  1019. },
  1020. "notification-url": "https://packagist.org/downloads/",
  1021. "license": [
  1022. "BSD-3-Clause"
  1023. ],
  1024. "authors": [
  1025. {
  1026. "name": "Sebastian Bergmann",
  1027. "email": "sebastian@phpunit.de"
  1028. }
  1029. ],
  1030. "description": "Looks up which function or method a line of code belongs to",
  1031. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  1032. "support": {
  1033. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  1034. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  1035. },
  1036. "funding": [
  1037. {
  1038. "url": "https://github.com/sebastianbergmann",
  1039. "type": "github"
  1040. }
  1041. ],
  1042. "time": "2020-09-28T05:30:19+00:00"
  1043. },
  1044. {
  1045. "name": "sebastian/comparator",
  1046. "version": "4.0.x-dev",
  1047. "source": {
  1048. "type": "git",
  1049. "url": "https://github.com/sebastianbergmann/comparator.git",
  1050. "reference": "b247957a1c8dc81a671770f74b479c0a78a818f1"
  1051. },
  1052. "dist": {
  1053. "type": "zip",
  1054. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/b247957a1c8dc81a671770f74b479c0a78a818f1",
  1055. "reference": "b247957a1c8dc81a671770f74b479c0a78a818f1",
  1056. "shasum": ""
  1057. },
  1058. "require": {
  1059. "php": ">=7.3",
  1060. "sebastian/diff": "^4.0",
  1061. "sebastian/exporter": "^4.0"
  1062. },
  1063. "require-dev": {
  1064. "phpunit/phpunit": "^9.3"
  1065. },
  1066. "type": "library",
  1067. "extra": {
  1068. "branch-alias": {
  1069. "dev-master": "4.0-dev"
  1070. }
  1071. },
  1072. "autoload": {
  1073. "classmap": [
  1074. "src/"
  1075. ]
  1076. },
  1077. "notification-url": "https://packagist.org/downloads/",
  1078. "license": [
  1079. "BSD-3-Clause"
  1080. ],
  1081. "authors": [
  1082. {
  1083. "name": "Sebastian Bergmann",
  1084. "email": "sebastian@phpunit.de"
  1085. },
  1086. {
  1087. "name": "Jeff Welch",
  1088. "email": "whatthejeff@gmail.com"
  1089. },
  1090. {
  1091. "name": "Volker Dusch",
  1092. "email": "github@wallbash.com"
  1093. },
  1094. {
  1095. "name": "Bernhard Schussek",
  1096. "email": "bschussek@2bepublished.at"
  1097. }
  1098. ],
  1099. "description": "Provides the functionality to compare PHP values for equality",
  1100. "homepage": "https://github.com/sebastianbergmann/comparator",
  1101. "keywords": [
  1102. "comparator",
  1103. "compare",
  1104. "equality"
  1105. ],
  1106. "support": {
  1107. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  1108. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0"
  1109. },
  1110. "funding": [
  1111. {
  1112. "url": "https://github.com/sebastianbergmann",
  1113. "type": "github"
  1114. }
  1115. ],
  1116. "time": "2022-09-14T12:46:14+00:00"
  1117. },
  1118. {
  1119. "name": "sebastian/complexity",
  1120. "version": "2.0.2",
  1121. "source": {
  1122. "type": "git",
  1123. "url": "https://github.com/sebastianbergmann/complexity.git",
  1124. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  1125. },
  1126. "dist": {
  1127. "type": "zip",
  1128. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  1129. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  1130. "shasum": ""
  1131. },
  1132. "require": {
  1133. "nikic/php-parser": "^4.7",
  1134. "php": ">=7.3"
  1135. },
  1136. "require-dev": {
  1137. "phpunit/phpunit": "^9.3"
  1138. },
  1139. "type": "library",
  1140. "extra": {
  1141. "branch-alias": {
  1142. "dev-master": "2.0-dev"
  1143. }
  1144. },
  1145. "autoload": {
  1146. "classmap": [
  1147. "src/"
  1148. ]
  1149. },
  1150. "notification-url": "https://packagist.org/downloads/",
  1151. "license": [
  1152. "BSD-3-Clause"
  1153. ],
  1154. "authors": [
  1155. {
  1156. "name": "Sebastian Bergmann",
  1157. "email": "sebastian@phpunit.de",
  1158. "role": "lead"
  1159. }
  1160. ],
  1161. "description": "Library for calculating the complexity of PHP code units",
  1162. "homepage": "https://github.com/sebastianbergmann/complexity",
  1163. "support": {
  1164. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  1165. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  1166. },
  1167. "funding": [
  1168. {
  1169. "url": "https://github.com/sebastianbergmann",
  1170. "type": "github"
  1171. }
  1172. ],
  1173. "time": "2020-10-26T15:52:27+00:00"
  1174. },
  1175. {
  1176. "name": "sebastian/diff",
  1177. "version": "4.0.4",
  1178. "source": {
  1179. "type": "git",
  1180. "url": "https://github.com/sebastianbergmann/diff.git",
  1181. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  1182. },
  1183. "dist": {
  1184. "type": "zip",
  1185. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  1186. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  1187. "shasum": ""
  1188. },
  1189. "require": {
  1190. "php": ">=7.3"
  1191. },
  1192. "require-dev": {
  1193. "phpunit/phpunit": "^9.3",
  1194. "symfony/process": "^4.2 || ^5"
  1195. },
  1196. "type": "library",
  1197. "extra": {
  1198. "branch-alias": {
  1199. "dev-master": "4.0-dev"
  1200. }
  1201. },
  1202. "autoload": {
  1203. "classmap": [
  1204. "src/"
  1205. ]
  1206. },
  1207. "notification-url": "https://packagist.org/downloads/",
  1208. "license": [
  1209. "BSD-3-Clause"
  1210. ],
  1211. "authors": [
  1212. {
  1213. "name": "Sebastian Bergmann",
  1214. "email": "sebastian@phpunit.de"
  1215. },
  1216. {
  1217. "name": "Kore Nordmann",
  1218. "email": "mail@kore-nordmann.de"
  1219. }
  1220. ],
  1221. "description": "Diff implementation",
  1222. "homepage": "https://github.com/sebastianbergmann/diff",
  1223. "keywords": [
  1224. "diff",
  1225. "udiff",
  1226. "unidiff",
  1227. "unified diff"
  1228. ],
  1229. "support": {
  1230. "issues": "https://github.com/sebastianbergmann/diff/issues",
  1231. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  1232. },
  1233. "funding": [
  1234. {
  1235. "url": "https://github.com/sebastianbergmann",
  1236. "type": "github"
  1237. }
  1238. ],
  1239. "time": "2020-10-26T13:10:38+00:00"
  1240. },
  1241. {
  1242. "name": "sebastian/environment",
  1243. "version": "5.1.x-dev",
  1244. "source": {
  1245. "type": "git",
  1246. "url": "https://github.com/sebastianbergmann/environment.git",
  1247. "reference": "3fade0c8462024d0426a00dc1ad0a2fda0df733f"
  1248. },
  1249. "dist": {
  1250. "type": "zip",
  1251. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/3fade0c8462024d0426a00dc1ad0a2fda0df733f",
  1252. "reference": "3fade0c8462024d0426a00dc1ad0a2fda0df733f",
  1253. "shasum": ""
  1254. },
  1255. "require": {
  1256. "php": ">=7.3"
  1257. },
  1258. "require-dev": {
  1259. "phpunit/phpunit": "^9.3"
  1260. },
  1261. "suggest": {
  1262. "ext-posix": "*"
  1263. },
  1264. "type": "library",
  1265. "extra": {
  1266. "branch-alias": {
  1267. "dev-master": "5.1-dev"
  1268. }
  1269. },
  1270. "autoload": {
  1271. "classmap": [
  1272. "src/"
  1273. ]
  1274. },
  1275. "notification-url": "https://packagist.org/downloads/",
  1276. "license": [
  1277. "BSD-3-Clause"
  1278. ],
  1279. "authors": [
  1280. {
  1281. "name": "Sebastian Bergmann",
  1282. "email": "sebastian@phpunit.de"
  1283. }
  1284. ],
  1285. "description": "Provides functionality to handle HHVM/PHP environments",
  1286. "homepage": "http://www.github.com/sebastianbergmann/environment",
  1287. "keywords": [
  1288. "Xdebug",
  1289. "environment",
  1290. "hhvm"
  1291. ],
  1292. "support": {
  1293. "issues": "https://github.com/sebastianbergmann/environment/issues",
  1294. "source": "https://github.com/sebastianbergmann/environment/tree/5.1"
  1295. },
  1296. "funding": [
  1297. {
  1298. "url": "https://github.com/sebastianbergmann",
  1299. "type": "github"
  1300. }
  1301. ],
  1302. "time": "2022-04-14T11:24:33+00:00"
  1303. },
  1304. {
  1305. "name": "sebastian/exporter",
  1306. "version": "4.0.x-dev",
  1307. "source": {
  1308. "type": "git",
  1309. "url": "https://github.com/sebastianbergmann/exporter.git",
  1310. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d"
  1311. },
  1312. "dist": {
  1313. "type": "zip",
  1314. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  1315. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  1316. "shasum": ""
  1317. },
  1318. "require": {
  1319. "php": ">=7.3",
  1320. "sebastian/recursion-context": "^4.0"
  1321. },
  1322. "require-dev": {
  1323. "ext-mbstring": "*",
  1324. "phpunit/phpunit": "^9.3"
  1325. },
  1326. "type": "library",
  1327. "extra": {
  1328. "branch-alias": {
  1329. "dev-master": "4.0-dev"
  1330. }
  1331. },
  1332. "autoload": {
  1333. "classmap": [
  1334. "src/"
  1335. ]
  1336. },
  1337. "notification-url": "https://packagist.org/downloads/",
  1338. "license": [
  1339. "BSD-3-Clause"
  1340. ],
  1341. "authors": [
  1342. {
  1343. "name": "Sebastian Bergmann",
  1344. "email": "sebastian@phpunit.de"
  1345. },
  1346. {
  1347. "name": "Jeff Welch",
  1348. "email": "whatthejeff@gmail.com"
  1349. },
  1350. {
  1351. "name": "Volker Dusch",
  1352. "email": "github@wallbash.com"
  1353. },
  1354. {
  1355. "name": "Adam Harvey",
  1356. "email": "aharvey@php.net"
  1357. },
  1358. {
  1359. "name": "Bernhard Schussek",
  1360. "email": "bschussek@gmail.com"
  1361. }
  1362. ],
  1363. "description": "Provides the functionality to export PHP variables for visualization",
  1364. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  1365. "keywords": [
  1366. "export",
  1367. "exporter"
  1368. ],
  1369. "support": {
  1370. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  1371. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0"
  1372. },
  1373. "funding": [
  1374. {
  1375. "url": "https://github.com/sebastianbergmann",
  1376. "type": "github"
  1377. }
  1378. ],
  1379. "time": "2022-09-14T06:03:37+00:00"
  1380. },
  1381. {
  1382. "name": "sebastian/global-state",
  1383. "version": "5.0.x-dev",
  1384. "source": {
  1385. "type": "git",
  1386. "url": "https://github.com/sebastianbergmann/global-state.git",
  1387. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2"
  1388. },
  1389. "dist": {
  1390. "type": "zip",
  1391. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  1392. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  1393. "shasum": ""
  1394. },
  1395. "require": {
  1396. "php": ">=7.3",
  1397. "sebastian/object-reflector": "^2.0",
  1398. "sebastian/recursion-context": "^4.0"
  1399. },
  1400. "require-dev": {
  1401. "ext-dom": "*",
  1402. "phpunit/phpunit": "^9.3"
  1403. },
  1404. "suggest": {
  1405. "ext-uopz": "*"
  1406. },
  1407. "type": "library",
  1408. "extra": {
  1409. "branch-alias": {
  1410. "dev-master": "5.0-dev"
  1411. }
  1412. },
  1413. "autoload": {
  1414. "classmap": [
  1415. "src/"
  1416. ]
  1417. },
  1418. "notification-url": "https://packagist.org/downloads/",
  1419. "license": [
  1420. "BSD-3-Clause"
  1421. ],
  1422. "authors": [
  1423. {
  1424. "name": "Sebastian Bergmann",
  1425. "email": "sebastian@phpunit.de"
  1426. }
  1427. ],
  1428. "description": "Snapshotting of global state",
  1429. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  1430. "keywords": [
  1431. "global state"
  1432. ],
  1433. "support": {
  1434. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  1435. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5"
  1436. },
  1437. "funding": [
  1438. {
  1439. "url": "https://github.com/sebastianbergmann",
  1440. "type": "github"
  1441. }
  1442. ],
  1443. "time": "2022-02-14T08:28:10+00:00"
  1444. },
  1445. {
  1446. "name": "sebastian/lines-of-code",
  1447. "version": "1.0.3",
  1448. "source": {
  1449. "type": "git",
  1450. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  1451. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  1452. },
  1453. "dist": {
  1454. "type": "zip",
  1455. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  1456. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  1457. "shasum": ""
  1458. },
  1459. "require": {
  1460. "nikic/php-parser": "^4.6",
  1461. "php": ">=7.3"
  1462. },
  1463. "require-dev": {
  1464. "phpunit/phpunit": "^9.3"
  1465. },
  1466. "type": "library",
  1467. "extra": {
  1468. "branch-alias": {
  1469. "dev-master": "1.0-dev"
  1470. }
  1471. },
  1472. "autoload": {
  1473. "classmap": [
  1474. "src/"
  1475. ]
  1476. },
  1477. "notification-url": "https://packagist.org/downloads/",
  1478. "license": [
  1479. "BSD-3-Clause"
  1480. ],
  1481. "authors": [
  1482. {
  1483. "name": "Sebastian Bergmann",
  1484. "email": "sebastian@phpunit.de",
  1485. "role": "lead"
  1486. }
  1487. ],
  1488. "description": "Library for counting the lines of code in PHP source code",
  1489. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  1490. "support": {
  1491. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  1492. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  1493. },
  1494. "funding": [
  1495. {
  1496. "url": "https://github.com/sebastianbergmann",
  1497. "type": "github"
  1498. }
  1499. ],
  1500. "time": "2020-11-28T06:42:11+00:00"
  1501. },
  1502. {
  1503. "name": "sebastian/object-enumerator",
  1504. "version": "4.0.4",
  1505. "source": {
  1506. "type": "git",
  1507. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  1508. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  1509. },
  1510. "dist": {
  1511. "type": "zip",
  1512. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  1513. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  1514. "shasum": ""
  1515. },
  1516. "require": {
  1517. "php": ">=7.3",
  1518. "sebastian/object-reflector": "^2.0",
  1519. "sebastian/recursion-context": "^4.0"
  1520. },
  1521. "require-dev": {
  1522. "phpunit/phpunit": "^9.3"
  1523. },
  1524. "type": "library",
  1525. "extra": {
  1526. "branch-alias": {
  1527. "dev-master": "4.0-dev"
  1528. }
  1529. },
  1530. "autoload": {
  1531. "classmap": [
  1532. "src/"
  1533. ]
  1534. },
  1535. "notification-url": "https://packagist.org/downloads/",
  1536. "license": [
  1537. "BSD-3-Clause"
  1538. ],
  1539. "authors": [
  1540. {
  1541. "name": "Sebastian Bergmann",
  1542. "email": "sebastian@phpunit.de"
  1543. }
  1544. ],
  1545. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  1546. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  1547. "support": {
  1548. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  1549. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  1550. },
  1551. "funding": [
  1552. {
  1553. "url": "https://github.com/sebastianbergmann",
  1554. "type": "github"
  1555. }
  1556. ],
  1557. "time": "2020-10-26T13:12:34+00:00"
  1558. },
  1559. {
  1560. "name": "sebastian/object-reflector",
  1561. "version": "2.0.4",
  1562. "source": {
  1563. "type": "git",
  1564. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  1565. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  1566. },
  1567. "dist": {
  1568. "type": "zip",
  1569. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  1570. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  1571. "shasum": ""
  1572. },
  1573. "require": {
  1574. "php": ">=7.3"
  1575. },
  1576. "require-dev": {
  1577. "phpunit/phpunit": "^9.3"
  1578. },
  1579. "type": "library",
  1580. "extra": {
  1581. "branch-alias": {
  1582. "dev-master": "2.0-dev"
  1583. }
  1584. },
  1585. "autoload": {
  1586. "classmap": [
  1587. "src/"
  1588. ]
  1589. },
  1590. "notification-url": "https://packagist.org/downloads/",
  1591. "license": [
  1592. "BSD-3-Clause"
  1593. ],
  1594. "authors": [
  1595. {
  1596. "name": "Sebastian Bergmann",
  1597. "email": "sebastian@phpunit.de"
  1598. }
  1599. ],
  1600. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  1601. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  1602. "support": {
  1603. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  1604. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  1605. },
  1606. "funding": [
  1607. {
  1608. "url": "https://github.com/sebastianbergmann",
  1609. "type": "github"
  1610. }
  1611. ],
  1612. "time": "2020-10-26T13:14:26+00:00"
  1613. },
  1614. {
  1615. "name": "sebastian/recursion-context",
  1616. "version": "4.0.x-dev",
  1617. "source": {
  1618. "type": "git",
  1619. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  1620. "reference": "e3a614438af7f71eaa6fc8e406be8a3aa5c34595"
  1621. },
  1622. "dist": {
  1623. "type": "zip",
  1624. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e3a614438af7f71eaa6fc8e406be8a3aa5c34595",
  1625. "reference": "e3a614438af7f71eaa6fc8e406be8a3aa5c34595",
  1626. "shasum": ""
  1627. },
  1628. "require": {
  1629. "php": ">=7.3"
  1630. },
  1631. "require-dev": {
  1632. "phpunit/phpunit": "^9.3"
  1633. },
  1634. "type": "library",
  1635. "extra": {
  1636. "branch-alias": {
  1637. "dev-master": "4.0-dev"
  1638. }
  1639. },
  1640. "autoload": {
  1641. "classmap": [
  1642. "src/"
  1643. ]
  1644. },
  1645. "notification-url": "https://packagist.org/downloads/",
  1646. "license": [
  1647. "BSD-3-Clause"
  1648. ],
  1649. "authors": [
  1650. {
  1651. "name": "Sebastian Bergmann",
  1652. "email": "sebastian@phpunit.de"
  1653. },
  1654. {
  1655. "name": "Jeff Welch",
  1656. "email": "whatthejeff@gmail.com"
  1657. },
  1658. {
  1659. "name": "Adam Harvey",
  1660. "email": "aharvey@php.net"
  1661. }
  1662. ],
  1663. "description": "Provides functionality to recursively process PHP variables",
  1664. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  1665. "support": {
  1666. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  1667. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0"
  1668. },
  1669. "funding": [
  1670. {
  1671. "url": "https://github.com/sebastianbergmann",
  1672. "type": "github"
  1673. }
  1674. ],
  1675. "time": "2022-07-30T08:13:09+00:00"
  1676. },
  1677. {
  1678. "name": "sebastian/resource-operations",
  1679. "version": "dev-main",
  1680. "source": {
  1681. "type": "git",
  1682. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  1683. "reference": "b7a390ae3651f7ba3675d8364bff396e87931554"
  1684. },
  1685. "dist": {
  1686. "type": "zip",
  1687. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/b7a390ae3651f7ba3675d8364bff396e87931554",
  1688. "reference": "b7a390ae3651f7ba3675d8364bff396e87931554",
  1689. "shasum": ""
  1690. },
  1691. "require": {
  1692. "php": ">=7.3"
  1693. },
  1694. "require-dev": {
  1695. "phpunit/phpunit": "^9.0"
  1696. },
  1697. "default-branch": true,
  1698. "type": "library",
  1699. "extra": {
  1700. "branch-alias": {
  1701. "dev-main": "3.0-dev"
  1702. }
  1703. },
  1704. "autoload": {
  1705. "classmap": [
  1706. "src/"
  1707. ]
  1708. },
  1709. "notification-url": "https://packagist.org/downloads/",
  1710. "license": [
  1711. "BSD-3-Clause"
  1712. ],
  1713. "authors": [
  1714. {
  1715. "name": "Sebastian Bergmann",
  1716. "email": "sebastian@phpunit.de"
  1717. }
  1718. ],
  1719. "description": "Provides a list of PHP built-in functions that operate on resources",
  1720. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  1721. "support": {
  1722. "source": "https://github.com/sebastianbergmann/resource-operations/tree/main"
  1723. },
  1724. "funding": [
  1725. {
  1726. "url": "https://github.com/sebastianbergmann",
  1727. "type": "github"
  1728. }
  1729. ],
  1730. "time": "2022-06-14T05:05:56+00:00"
  1731. },
  1732. {
  1733. "name": "sebastian/type",
  1734. "version": "3.2.x-dev",
  1735. "source": {
  1736. "type": "git",
  1737. "url": "https://github.com/sebastianbergmann/type.git",
  1738. "reference": "4d34b23933f255b0822758a44272222cac593eb4"
  1739. },
  1740. "dist": {
  1741. "type": "zip",
  1742. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/4d34b23933f255b0822758a44272222cac593eb4",
  1743. "reference": "4d34b23933f255b0822758a44272222cac593eb4",
  1744. "shasum": ""
  1745. },
  1746. "require": {
  1747. "php": ">=7.3"
  1748. },
  1749. "require-dev": {
  1750. "phpunit/phpunit": "^9.5"
  1751. },
  1752. "type": "library",
  1753. "extra": {
  1754. "branch-alias": {
  1755. "dev-master": "3.2-dev"
  1756. }
  1757. },
  1758. "autoload": {
  1759. "classmap": [
  1760. "src/"
  1761. ]
  1762. },
  1763. "notification-url": "https://packagist.org/downloads/",
  1764. "license": [
  1765. "BSD-3-Clause"
  1766. ],
  1767. "authors": [
  1768. {
  1769. "name": "Sebastian Bergmann",
  1770. "email": "sebastian@phpunit.de",
  1771. "role": "lead"
  1772. }
  1773. ],
  1774. "description": "Collection of value objects that represent the types of the PHP type system",
  1775. "homepage": "https://github.com/sebastianbergmann/type",
  1776. "support": {
  1777. "issues": "https://github.com/sebastianbergmann/type/issues",
  1778. "source": "https://github.com/sebastianbergmann/type/tree/3.2"
  1779. },
  1780. "funding": [
  1781. {
  1782. "url": "https://github.com/sebastianbergmann",
  1783. "type": "github"
  1784. }
  1785. ],
  1786. "time": "2022-10-01T05:56:17+00:00"
  1787. },
  1788. {
  1789. "name": "sebastian/version",
  1790. "version": "3.0.x-dev",
  1791. "source": {
  1792. "type": "git",
  1793. "url": "https://github.com/sebastianbergmann/version.git",
  1794. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  1795. },
  1796. "dist": {
  1797. "type": "zip",
  1798. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  1799. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  1800. "shasum": ""
  1801. },
  1802. "require": {
  1803. "php": ">=7.3"
  1804. },
  1805. "type": "library",
  1806. "extra": {
  1807. "branch-alias": {
  1808. "dev-master": "3.0-dev"
  1809. }
  1810. },
  1811. "autoload": {
  1812. "classmap": [
  1813. "src/"
  1814. ]
  1815. },
  1816. "notification-url": "https://packagist.org/downloads/",
  1817. "license": [
  1818. "BSD-3-Clause"
  1819. ],
  1820. "authors": [
  1821. {
  1822. "name": "Sebastian Bergmann",
  1823. "email": "sebastian@phpunit.de",
  1824. "role": "lead"
  1825. }
  1826. ],
  1827. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  1828. "homepage": "https://github.com/sebastianbergmann/version",
  1829. "support": {
  1830. "issues": "https://github.com/sebastianbergmann/version/issues",
  1831. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  1832. },
  1833. "funding": [
  1834. {
  1835. "url": "https://github.com/sebastianbergmann",
  1836. "type": "github"
  1837. }
  1838. ],
  1839. "time": "2020-09-28T06:39:44+00:00"
  1840. },
  1841. {
  1842. "name": "squizlabs/php_codesniffer",
  1843. "version": "dev-master",
  1844. "source": {
  1845. "type": "git",
  1846. "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
  1847. "reference": "cd5acaa651df870e8a3207926f236400361219e0"
  1848. },
  1849. "dist": {
  1850. "type": "zip",
  1851. "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/cd5acaa651df870e8a3207926f236400361219e0",
  1852. "reference": "cd5acaa651df870e8a3207926f236400361219e0",
  1853. "shasum": ""
  1854. },
  1855. "require": {
  1856. "ext-simplexml": "*",
  1857. "ext-tokenizer": "*",
  1858. "ext-xmlwriter": "*",
  1859. "php": ">=5.4.0"
  1860. },
  1861. "require-dev": {
  1862. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  1863. },
  1864. "default-branch": true,
  1865. "bin": [
  1866. "bin/phpcs",
  1867. "bin/phpcbf"
  1868. ],
  1869. "type": "library",
  1870. "extra": {
  1871. "branch-alias": {
  1872. "dev-master": "3.x-dev"
  1873. }
  1874. },
  1875. "notification-url": "https://packagist.org/downloads/",
  1876. "license": [
  1877. "BSD-3-Clause"
  1878. ],
  1879. "authors": [
  1880. {
  1881. "name": "Greg Sherwood",
  1882. "role": "lead"
  1883. }
  1884. ],
  1885. "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
  1886. "homepage": "https://github.com/squizlabs/PHP_CodeSniffer",
  1887. "keywords": [
  1888. "phpcs",
  1889. "standards",
  1890. "static analysis"
  1891. ],
  1892. "support": {
  1893. "issues": "https://github.com/squizlabs/PHP_CodeSniffer/issues",
  1894. "source": "https://github.com/squizlabs/PHP_CodeSniffer",
  1895. "wiki": "https://github.com/squizlabs/PHP_CodeSniffer/wiki"
  1896. },
  1897. "time": "2022-10-21T05:57:32+00:00"
  1898. },
  1899. {
  1900. "name": "theseer/tokenizer",
  1901. "version": "1.2.1",
  1902. "source": {
  1903. "type": "git",
  1904. "url": "https://github.com/theseer/tokenizer.git",
  1905. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  1906. },
  1907. "dist": {
  1908. "type": "zip",
  1909. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  1910. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  1911. "shasum": ""
  1912. },
  1913. "require": {
  1914. "ext-dom": "*",
  1915. "ext-tokenizer": "*",
  1916. "ext-xmlwriter": "*",
  1917. "php": "^7.2 || ^8.0"
  1918. },
  1919. "type": "library",
  1920. "autoload": {
  1921. "classmap": [
  1922. "src/"
  1923. ]
  1924. },
  1925. "notification-url": "https://packagist.org/downloads/",
  1926. "license": [
  1927. "BSD-3-Clause"
  1928. ],
  1929. "authors": [
  1930. {
  1931. "name": "Arne Blankerts",
  1932. "email": "arne@blankerts.de",
  1933. "role": "Developer"
  1934. }
  1935. ],
  1936. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  1937. "support": {
  1938. "issues": "https://github.com/theseer/tokenizer/issues",
  1939. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  1940. },
  1941. "funding": [
  1942. {
  1943. "url": "https://github.com/theseer",
  1944. "type": "github"
  1945. }
  1946. ],
  1947. "time": "2021-07-28T10:34:58+00:00"
  1948. }
  1949. ],
  1950. "aliases": [],
  1951. "minimum-stability": "dev",
  1952. "stability-flags": {
  1953. "dealerdirect/phpcodesniffer-composer-installer": 20
  1954. },
  1955. "prefer-stable": false,
  1956. "prefer-lowest": false,
  1957. "platform": {
  1958. "php": "^7.2 || ^8.0"
  1959. },
  1960. "platform-dev": [],
  1961. "plugin-api-version": "2.3.0"
  1962. }