composer.lock 97 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799
  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": "4f69067a150f3104f6fa800e576d5556",
  8. "packages": [
  9. {
  10. "name": "doctrine/cache",
  11. "version": "1.13.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/doctrine/cache.git",
  15. "reference": "56cd022adb5514472cb144c087393c1821911d09"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/doctrine/cache/zipball/56cd022adb5514472cb144c087393c1821911d09",
  20. "reference": "56cd022adb5514472cb144c087393c1821911d09",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "~7.1 || ^8.0"
  25. },
  26. "conflict": {
  27. "doctrine/common": ">2.2,<2.4"
  28. },
  29. "require-dev": {
  30. "alcaeus/mongo-php-adapter": "^1.1",
  31. "cache/integration-tests": "dev-master",
  32. "doctrine/coding-standard": "^9",
  33. "mongodb/mongodb": "^1.1",
  34. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  35. "predis/predis": "~1.0",
  36. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  37. "symfony/cache": "^4.4 || ^5.4 || ^6",
  38. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  39. },
  40. "suggest": {
  41. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  42. },
  43. "type": "library",
  44. "autoload": {
  45. "psr-4": {
  46. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  47. }
  48. },
  49. "notification-url": "https://packagist.org/downloads/",
  50. "license": [
  51. "MIT"
  52. ],
  53. "authors": [
  54. {
  55. "name": "Guilherme Blanco",
  56. "email": "guilhermeblanco@gmail.com"
  57. },
  58. {
  59. "name": "Roman Borschel",
  60. "email": "roman@code-factory.org"
  61. },
  62. {
  63. "name": "Benjamin Eberlei",
  64. "email": "kontakt@beberlei.de"
  65. },
  66. {
  67. "name": "Jonathan Wage",
  68. "email": "jonwage@gmail.com"
  69. },
  70. {
  71. "name": "Johannes Schmitt",
  72. "email": "schmittjoh@gmail.com"
  73. }
  74. ],
  75. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  76. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  77. "keywords": [
  78. "abstraction",
  79. "apcu",
  80. "cache",
  81. "caching",
  82. "couchdb",
  83. "memcached",
  84. "php",
  85. "redis",
  86. "xcache"
  87. ],
  88. "time": "2022-05-20T20:06:54+00:00"
  89. },
  90. {
  91. "name": "guzzlehttp/guzzle",
  92. "version": "7.4.5",
  93. "source": {
  94. "type": "git",
  95. "url": "https://github.com/guzzle/guzzle.git",
  96. "reference": "1dd98b0564cb3f6bd16ce683cb755f94c10fbd82"
  97. },
  98. "dist": {
  99. "type": "zip",
  100. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/1dd98b0564cb3f6bd16ce683cb755f94c10fbd82",
  101. "reference": "1dd98b0564cb3f6bd16ce683cb755f94c10fbd82",
  102. "shasum": ""
  103. },
  104. "require": {
  105. "ext-json": "*",
  106. "guzzlehttp/promises": "^1.5",
  107. "guzzlehttp/psr7": "^1.9 || ^2.4",
  108. "php": "^7.2.5 || ^8.0",
  109. "psr/http-client": "^1.0",
  110. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  111. },
  112. "provide": {
  113. "psr/http-client-implementation": "1.0"
  114. },
  115. "require-dev": {
  116. "bamarni/composer-bin-plugin": "^1.4.1",
  117. "ext-curl": "*",
  118. "php-http/client-integration-tests": "^3.0",
  119. "phpunit/phpunit": "^8.5.5 || ^9.3.5",
  120. "psr/log": "^1.1 || ^2.0 || ^3.0"
  121. },
  122. "suggest": {
  123. "ext-curl": "Required for CURL handler support",
  124. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  125. "psr/log": "Required for using the Log middleware"
  126. },
  127. "type": "library",
  128. "extra": {
  129. "branch-alias": {
  130. "dev-master": "7.4-dev"
  131. }
  132. },
  133. "autoload": {
  134. "files": [
  135. "src/functions_include.php"
  136. ],
  137. "psr-4": {
  138. "GuzzleHttp\\": "src/"
  139. }
  140. },
  141. "notification-url": "https://packagist.org/downloads/",
  142. "license": [
  143. "MIT"
  144. ],
  145. "authors": [
  146. {
  147. "name": "Graham Campbell",
  148. "email": "hello@gjcampbell.co.uk",
  149. "homepage": "https://github.com/GrahamCampbell"
  150. },
  151. {
  152. "name": "Michael Dowling",
  153. "email": "mtdowling@gmail.com",
  154. "homepage": "https://github.com/mtdowling"
  155. },
  156. {
  157. "name": "Jeremy Lindblom",
  158. "email": "jeremeamia@gmail.com",
  159. "homepage": "https://github.com/jeremeamia"
  160. },
  161. {
  162. "name": "George Mponos",
  163. "email": "gmponos@gmail.com",
  164. "homepage": "https://github.com/gmponos"
  165. },
  166. {
  167. "name": "Tobias Nyholm",
  168. "email": "tobias.nyholm@gmail.com",
  169. "homepage": "https://github.com/Nyholm"
  170. },
  171. {
  172. "name": "Márk Sági-Kazár",
  173. "email": "mark.sagikazar@gmail.com",
  174. "homepage": "https://github.com/sagikazarmark"
  175. },
  176. {
  177. "name": "Tobias Schultze",
  178. "email": "webmaster@tubo-world.de",
  179. "homepage": "https://github.com/Tobion"
  180. }
  181. ],
  182. "description": "Guzzle is a PHP HTTP client library",
  183. "keywords": [
  184. "client",
  185. "curl",
  186. "framework",
  187. "http",
  188. "http client",
  189. "psr-18",
  190. "psr-7",
  191. "rest",
  192. "web service"
  193. ],
  194. "time": "2022-06-20T22:16:13+00:00"
  195. },
  196. {
  197. "name": "guzzlehttp/promises",
  198. "version": "1.5.1",
  199. "source": {
  200. "type": "git",
  201. "url": "https://github.com/guzzle/promises.git",
  202. "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da"
  203. },
  204. "dist": {
  205. "type": "zip",
  206. "url": "https://api.github.com/repos/guzzle/promises/zipball/fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
  207. "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
  208. "shasum": ""
  209. },
  210. "require": {
  211. "php": ">=5.5"
  212. },
  213. "require-dev": {
  214. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  215. },
  216. "type": "library",
  217. "extra": {
  218. "branch-alias": {
  219. "dev-master": "1.5-dev"
  220. }
  221. },
  222. "autoload": {
  223. "files": [
  224. "src/functions_include.php"
  225. ],
  226. "psr-4": {
  227. "GuzzleHttp\\Promise\\": "src/"
  228. }
  229. },
  230. "notification-url": "https://packagist.org/downloads/",
  231. "license": [
  232. "MIT"
  233. ],
  234. "authors": [
  235. {
  236. "name": "Graham Campbell",
  237. "email": "hello@gjcampbell.co.uk",
  238. "homepage": "https://github.com/GrahamCampbell"
  239. },
  240. {
  241. "name": "Michael Dowling",
  242. "email": "mtdowling@gmail.com",
  243. "homepage": "https://github.com/mtdowling"
  244. },
  245. {
  246. "name": "Tobias Nyholm",
  247. "email": "tobias.nyholm@gmail.com",
  248. "homepage": "https://github.com/Nyholm"
  249. },
  250. {
  251. "name": "Tobias Schultze",
  252. "email": "webmaster@tubo-world.de",
  253. "homepage": "https://github.com/Tobion"
  254. }
  255. ],
  256. "description": "Guzzle promises library",
  257. "keywords": [
  258. "promise"
  259. ],
  260. "time": "2021-10-22T20:56:57+00:00"
  261. },
  262. {
  263. "name": "guzzlehttp/psr7",
  264. "version": "2.4.0",
  265. "source": {
  266. "type": "git",
  267. "url": "https://github.com/guzzle/psr7.git",
  268. "reference": "13388f00956b1503577598873fffb5ae994b5737"
  269. },
  270. "dist": {
  271. "type": "zip",
  272. "url": "https://api.github.com/repos/guzzle/psr7/zipball/13388f00956b1503577598873fffb5ae994b5737",
  273. "reference": "13388f00956b1503577598873fffb5ae994b5737",
  274. "shasum": ""
  275. },
  276. "require": {
  277. "php": "^7.2.5 || ^8.0",
  278. "psr/http-factory": "^1.0",
  279. "psr/http-message": "^1.0",
  280. "ralouphie/getallheaders": "^3.0"
  281. },
  282. "provide": {
  283. "psr/http-factory-implementation": "1.0",
  284. "psr/http-message-implementation": "1.0"
  285. },
  286. "require-dev": {
  287. "bamarni/composer-bin-plugin": "^1.4.1",
  288. "http-interop/http-factory-tests": "^0.9",
  289. "phpunit/phpunit": "^8.5.8 || ^9.3.10"
  290. },
  291. "suggest": {
  292. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  293. },
  294. "type": "library",
  295. "extra": {
  296. "branch-alias": {
  297. "dev-master": "2.4-dev"
  298. }
  299. },
  300. "autoload": {
  301. "psr-4": {
  302. "GuzzleHttp\\Psr7\\": "src/"
  303. }
  304. },
  305. "notification-url": "https://packagist.org/downloads/",
  306. "license": [
  307. "MIT"
  308. ],
  309. "authors": [
  310. {
  311. "name": "Graham Campbell",
  312. "email": "hello@gjcampbell.co.uk",
  313. "homepage": "https://github.com/GrahamCampbell"
  314. },
  315. {
  316. "name": "Michael Dowling",
  317. "email": "mtdowling@gmail.com",
  318. "homepage": "https://github.com/mtdowling"
  319. },
  320. {
  321. "name": "George Mponos",
  322. "email": "gmponos@gmail.com",
  323. "homepage": "https://github.com/gmponos"
  324. },
  325. {
  326. "name": "Tobias Nyholm",
  327. "email": "tobias.nyholm@gmail.com",
  328. "homepage": "https://github.com/Nyholm"
  329. },
  330. {
  331. "name": "Márk Sági-Kazár",
  332. "email": "mark.sagikazar@gmail.com",
  333. "homepage": "https://github.com/sagikazarmark"
  334. },
  335. {
  336. "name": "Tobias Schultze",
  337. "email": "webmaster@tubo-world.de",
  338. "homepage": "https://github.com/Tobion"
  339. },
  340. {
  341. "name": "Márk Sági-Kazár",
  342. "email": "mark.sagikazar@gmail.com",
  343. "homepage": "https://sagikazarmark.hu"
  344. }
  345. ],
  346. "description": "PSR-7 message implementation that also provides common utility methods",
  347. "keywords": [
  348. "http",
  349. "message",
  350. "psr-7",
  351. "request",
  352. "response",
  353. "stream",
  354. "uri",
  355. "url"
  356. ],
  357. "time": "2022-06-20T21:43:11+00:00"
  358. },
  359. {
  360. "name": "hanson/foundation-sdk",
  361. "version": "5.0.0",
  362. "source": {
  363. "type": "git",
  364. "url": "https://github.com/Hanson/foundation-sdk.git",
  365. "reference": "2d5ccfea67b977f83196ec82fa91403941ac41f1"
  366. },
  367. "dist": {
  368. "type": "zip",
  369. "url": "https://api.github.com/repos/Hanson/foundation-sdk/zipball/2d5ccfea67b977f83196ec82fa91403941ac41f1",
  370. "reference": "2d5ccfea67b977f83196ec82fa91403941ac41f1",
  371. "shasum": ""
  372. },
  373. "require": {
  374. "doctrine/cache": "^1.6",
  375. "ext-curl": "*",
  376. "guzzlehttp/guzzle": "^6.2|^7.0",
  377. "monolog/monolog": "^1.22|^2.0",
  378. "php": "^7.0",
  379. "pimple/pimple": "^3.0",
  380. "symfony/http-foundation": "^3.3|^4.0|^5.0"
  381. },
  382. "require-dev": {
  383. "phpunit/phpunit": "^9.3"
  384. },
  385. "type": "library",
  386. "autoload": {
  387. "psr-4": {
  388. "Hanson\\Foundation\\": "src/"
  389. }
  390. },
  391. "notification-url": "https://packagist.org/downloads/",
  392. "license": [
  393. "MIT"
  394. ],
  395. "authors": [
  396. {
  397. "name": "HanSon",
  398. "email": "h@hanc.cc"
  399. }
  400. ],
  401. "time": "2020-11-23T02:08:34+00:00"
  402. },
  403. {
  404. "name": "monolog/monolog",
  405. "version": "2.7.0",
  406. "source": {
  407. "type": "git",
  408. "url": "https://github.com/Seldaek/monolog.git",
  409. "reference": "5579edf28aee1190a798bfa5be8bc16c563bd524"
  410. },
  411. "dist": {
  412. "type": "zip",
  413. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/5579edf28aee1190a798bfa5be8bc16c563bd524",
  414. "reference": "5579edf28aee1190a798bfa5be8bc16c563bd524",
  415. "shasum": ""
  416. },
  417. "require": {
  418. "php": ">=7.2",
  419. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  420. },
  421. "provide": {
  422. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  423. },
  424. "require-dev": {
  425. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  426. "doctrine/couchdb": "~1.0@dev",
  427. "elasticsearch/elasticsearch": "^7 || ^8",
  428. "ext-json": "*",
  429. "graylog2/gelf-php": "^1.4.2",
  430. "guzzlehttp/guzzle": "^7.4",
  431. "guzzlehttp/psr7": "^2.2",
  432. "mongodb/mongodb": "^1.8",
  433. "php-amqplib/php-amqplib": "~2.4 || ^3",
  434. "php-console/php-console": "^3.1.3",
  435. "phpspec/prophecy": "^1.15",
  436. "phpstan/phpstan": "^0.12.91",
  437. "phpunit/phpunit": "^8.5.14",
  438. "predis/predis": "^1.1",
  439. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  440. "ruflin/elastica": "^7",
  441. "swiftmailer/swiftmailer": "^5.3|^6.0",
  442. "symfony/mailer": "^5.4 || ^6",
  443. "symfony/mime": "^5.4 || ^6"
  444. },
  445. "suggest": {
  446. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  447. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  448. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  449. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  450. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  451. "ext-mbstring": "Allow to work properly with unicode symbols",
  452. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  453. "ext-openssl": "Required to send log messages using SSL",
  454. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  455. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  456. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  457. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  458. "php-console/php-console": "Allow sending log messages to Google Chrome",
  459. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  460. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  461. },
  462. "type": "library",
  463. "extra": {
  464. "branch-alias": {
  465. "dev-main": "2.x-dev"
  466. }
  467. },
  468. "autoload": {
  469. "psr-4": {
  470. "Monolog\\": "src/Monolog"
  471. }
  472. },
  473. "notification-url": "https://packagist.org/downloads/",
  474. "license": [
  475. "MIT"
  476. ],
  477. "authors": [
  478. {
  479. "name": "Jordi Boggiano",
  480. "email": "j.boggiano@seld.be",
  481. "homepage": "https://seld.be"
  482. }
  483. ],
  484. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  485. "homepage": "https://github.com/Seldaek/monolog",
  486. "keywords": [
  487. "log",
  488. "logging",
  489. "psr-3"
  490. ],
  491. "time": "2022-06-09T08:59:12+00:00"
  492. },
  493. {
  494. "name": "pimple/pimple",
  495. "version": "v3.5.0",
  496. "source": {
  497. "type": "git",
  498. "url": "https://github.com/silexphp/Pimple.git",
  499. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed"
  500. },
  501. "dist": {
  502. "type": "zip",
  503. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  504. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  505. "shasum": ""
  506. },
  507. "require": {
  508. "php": ">=7.2.5",
  509. "psr/container": "^1.1 || ^2.0"
  510. },
  511. "require-dev": {
  512. "symfony/phpunit-bridge": "^5.4@dev"
  513. },
  514. "type": "library",
  515. "extra": {
  516. "branch-alias": {
  517. "dev-master": "3.4.x-dev"
  518. }
  519. },
  520. "autoload": {
  521. "psr-0": {
  522. "Pimple": "src/"
  523. }
  524. },
  525. "notification-url": "https://packagist.org/downloads/",
  526. "license": [
  527. "MIT"
  528. ],
  529. "authors": [
  530. {
  531. "name": "Fabien Potencier",
  532. "email": "fabien@symfony.com"
  533. }
  534. ],
  535. "description": "Pimple, a simple Dependency Injection Container",
  536. "homepage": "https://pimple.symfony.com",
  537. "keywords": [
  538. "container",
  539. "dependency injection"
  540. ],
  541. "time": "2021-10-28T11:13:42+00:00"
  542. },
  543. {
  544. "name": "psr/container",
  545. "version": "2.0.1",
  546. "source": {
  547. "type": "git",
  548. "url": "https://github.com/php-fig/container.git",
  549. "reference": "2ae37329ee82f91efadc282cc2d527fd6065a5ef"
  550. },
  551. "dist": {
  552. "type": "zip",
  553. "url": "https://api.github.com/repos/php-fig/container/zipball/2ae37329ee82f91efadc282cc2d527fd6065a5ef",
  554. "reference": "2ae37329ee82f91efadc282cc2d527fd6065a5ef",
  555. "shasum": ""
  556. },
  557. "require": {
  558. "php": ">=7.2.0"
  559. },
  560. "type": "library",
  561. "extra": {
  562. "branch-alias": {
  563. "dev-master": "2.0.x-dev"
  564. }
  565. },
  566. "autoload": {
  567. "psr-4": {
  568. "Psr\\Container\\": "src/"
  569. }
  570. },
  571. "notification-url": "https://packagist.org/downloads/",
  572. "license": [
  573. "MIT"
  574. ],
  575. "authors": [
  576. {
  577. "name": "PHP-FIG",
  578. "homepage": "https://www.php-fig.org/"
  579. }
  580. ],
  581. "description": "Common Container Interface (PHP FIG PSR-11)",
  582. "homepage": "https://github.com/php-fig/container",
  583. "keywords": [
  584. "PSR-11",
  585. "container",
  586. "container-interface",
  587. "container-interop",
  588. "psr"
  589. ],
  590. "time": "2021-03-24T13:40:57+00:00"
  591. },
  592. {
  593. "name": "psr/http-client",
  594. "version": "1.0.1",
  595. "source": {
  596. "type": "git",
  597. "url": "https://github.com/php-fig/http-client.git",
  598. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  599. },
  600. "dist": {
  601. "type": "zip",
  602. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  603. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  604. "shasum": ""
  605. },
  606. "require": {
  607. "php": "^7.0 || ^8.0",
  608. "psr/http-message": "^1.0"
  609. },
  610. "type": "library",
  611. "extra": {
  612. "branch-alias": {
  613. "dev-master": "1.0.x-dev"
  614. }
  615. },
  616. "autoload": {
  617. "psr-4": {
  618. "Psr\\Http\\Client\\": "src/"
  619. }
  620. },
  621. "notification-url": "https://packagist.org/downloads/",
  622. "license": [
  623. "MIT"
  624. ],
  625. "authors": [
  626. {
  627. "name": "PHP-FIG",
  628. "homepage": "http://www.php-fig.org/"
  629. }
  630. ],
  631. "description": "Common interface for HTTP clients",
  632. "homepage": "https://github.com/php-fig/http-client",
  633. "keywords": [
  634. "http",
  635. "http-client",
  636. "psr",
  637. "psr-18"
  638. ],
  639. "time": "2020-06-29T06:28:15+00:00"
  640. },
  641. {
  642. "name": "psr/http-factory",
  643. "version": "1.0.1",
  644. "source": {
  645. "type": "git",
  646. "url": "https://github.com/php-fig/http-factory.git",
  647. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  648. },
  649. "dist": {
  650. "type": "zip",
  651. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  652. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  653. "shasum": ""
  654. },
  655. "require": {
  656. "php": ">=7.0.0",
  657. "psr/http-message": "^1.0"
  658. },
  659. "type": "library",
  660. "extra": {
  661. "branch-alias": {
  662. "dev-master": "1.0.x-dev"
  663. }
  664. },
  665. "autoload": {
  666. "psr-4": {
  667. "Psr\\Http\\Message\\": "src/"
  668. }
  669. },
  670. "notification-url": "https://packagist.org/downloads/",
  671. "license": [
  672. "MIT"
  673. ],
  674. "authors": [
  675. {
  676. "name": "PHP-FIG",
  677. "homepage": "http://www.php-fig.org/"
  678. }
  679. ],
  680. "description": "Common interfaces for PSR-7 HTTP message factories",
  681. "keywords": [
  682. "factory",
  683. "http",
  684. "message",
  685. "psr",
  686. "psr-17",
  687. "psr-7",
  688. "request",
  689. "response"
  690. ],
  691. "time": "2019-04-30T12:38:16+00:00"
  692. },
  693. {
  694. "name": "psr/http-message",
  695. "version": "1.0.1",
  696. "source": {
  697. "type": "git",
  698. "url": "https://github.com/php-fig/http-message.git",
  699. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  700. },
  701. "dist": {
  702. "type": "zip",
  703. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  704. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  705. "shasum": ""
  706. },
  707. "require": {
  708. "php": ">=5.3.0"
  709. },
  710. "type": "library",
  711. "extra": {
  712. "branch-alias": {
  713. "dev-master": "1.0.x-dev"
  714. }
  715. },
  716. "autoload": {
  717. "psr-4": {
  718. "Psr\\Http\\Message\\": "src/"
  719. }
  720. },
  721. "notification-url": "https://packagist.org/downloads/",
  722. "license": [
  723. "MIT"
  724. ],
  725. "authors": [
  726. {
  727. "name": "PHP-FIG",
  728. "homepage": "http://www.php-fig.org/"
  729. }
  730. ],
  731. "description": "Common interface for HTTP messages",
  732. "homepage": "https://github.com/php-fig/http-message",
  733. "keywords": [
  734. "http",
  735. "http-message",
  736. "psr",
  737. "psr-7",
  738. "request",
  739. "response"
  740. ],
  741. "time": "2016-08-06T14:39:51+00:00"
  742. },
  743. {
  744. "name": "psr/log",
  745. "version": "1.1.4",
  746. "source": {
  747. "type": "git",
  748. "url": "https://github.com/php-fig/log.git",
  749. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  750. },
  751. "dist": {
  752. "type": "zip",
  753. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  754. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  755. "shasum": ""
  756. },
  757. "require": {
  758. "php": ">=5.3.0"
  759. },
  760. "type": "library",
  761. "extra": {
  762. "branch-alias": {
  763. "dev-master": "1.1.x-dev"
  764. }
  765. },
  766. "autoload": {
  767. "psr-4": {
  768. "Psr\\Log\\": "Psr/Log/"
  769. }
  770. },
  771. "notification-url": "https://packagist.org/downloads/",
  772. "license": [
  773. "MIT"
  774. ],
  775. "authors": [
  776. {
  777. "name": "PHP-FIG",
  778. "homepage": "https://www.php-fig.org/"
  779. }
  780. ],
  781. "description": "Common interface for logging libraries",
  782. "homepage": "https://github.com/php-fig/log",
  783. "keywords": [
  784. "log",
  785. "psr",
  786. "psr-3"
  787. ],
  788. "time": "2021-05-03T11:20:27+00:00"
  789. },
  790. {
  791. "name": "ralouphie/getallheaders",
  792. "version": "3.0.3",
  793. "source": {
  794. "type": "git",
  795. "url": "https://github.com/ralouphie/getallheaders.git",
  796. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  797. },
  798. "dist": {
  799. "type": "zip",
  800. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  801. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  802. "shasum": ""
  803. },
  804. "require": {
  805. "php": ">=5.6"
  806. },
  807. "require-dev": {
  808. "php-coveralls/php-coveralls": "^2.1",
  809. "phpunit/phpunit": "^5 || ^6.5"
  810. },
  811. "type": "library",
  812. "autoload": {
  813. "files": [
  814. "src/getallheaders.php"
  815. ]
  816. },
  817. "notification-url": "https://packagist.org/downloads/",
  818. "license": [
  819. "MIT"
  820. ],
  821. "authors": [
  822. {
  823. "name": "Ralph Khattar",
  824. "email": "ralph.khattar@gmail.com"
  825. }
  826. ],
  827. "description": "A polyfill for getallheaders.",
  828. "time": "2019-03-08T08:55:37+00:00"
  829. },
  830. {
  831. "name": "symfony/deprecation-contracts",
  832. "version": "v2.5.2",
  833. "source": {
  834. "type": "git",
  835. "url": "https://github.com/symfony/deprecation-contracts.git",
  836. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66"
  837. },
  838. "dist": {
  839. "type": "zip",
  840. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  841. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  842. "shasum": ""
  843. },
  844. "require": {
  845. "php": ">=7.1"
  846. },
  847. "type": "library",
  848. "extra": {
  849. "branch-alias": {
  850. "dev-main": "2.5-dev"
  851. },
  852. "thanks": {
  853. "name": "symfony/contracts",
  854. "url": "https://github.com/symfony/contracts"
  855. }
  856. },
  857. "autoload": {
  858. "files": [
  859. "function.php"
  860. ]
  861. },
  862. "notification-url": "https://packagist.org/downloads/",
  863. "license": [
  864. "MIT"
  865. ],
  866. "authors": [
  867. {
  868. "name": "Nicolas Grekas",
  869. "email": "p@tchwork.com"
  870. },
  871. {
  872. "name": "Symfony Community",
  873. "homepage": "https://symfony.com/contributors"
  874. }
  875. ],
  876. "description": "A generic function and convention to trigger deprecation notices",
  877. "homepage": "https://symfony.com",
  878. "time": "2022-01-02T09:53:40+00:00"
  879. },
  880. {
  881. "name": "symfony/http-foundation",
  882. "version": "v5.4.10",
  883. "source": {
  884. "type": "git",
  885. "url": "https://github.com/symfony/http-foundation.git",
  886. "reference": "e7793b7906f72a8cc51054fbca9dcff7a8af1c1e"
  887. },
  888. "dist": {
  889. "type": "zip",
  890. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/e7793b7906f72a8cc51054fbca9dcff7a8af1c1e",
  891. "reference": "e7793b7906f72a8cc51054fbca9dcff7a8af1c1e",
  892. "shasum": ""
  893. },
  894. "require": {
  895. "php": ">=7.2.5",
  896. "symfony/deprecation-contracts": "^2.1|^3",
  897. "symfony/polyfill-mbstring": "~1.1",
  898. "symfony/polyfill-php80": "^1.16"
  899. },
  900. "require-dev": {
  901. "predis/predis": "~1.0",
  902. "symfony/cache": "^4.4|^5.0|^6.0",
  903. "symfony/expression-language": "^4.4|^5.0|^6.0",
  904. "symfony/mime": "^4.4|^5.0|^6.0"
  905. },
  906. "suggest": {
  907. "symfony/mime": "To use the file extension guesser"
  908. },
  909. "type": "library",
  910. "autoload": {
  911. "psr-4": {
  912. "Symfony\\Component\\HttpFoundation\\": ""
  913. },
  914. "exclude-from-classmap": [
  915. "/Tests/"
  916. ]
  917. },
  918. "notification-url": "https://packagist.org/downloads/",
  919. "license": [
  920. "MIT"
  921. ],
  922. "authors": [
  923. {
  924. "name": "Fabien Potencier",
  925. "email": "fabien@symfony.com"
  926. },
  927. {
  928. "name": "Symfony Community",
  929. "homepage": "https://symfony.com/contributors"
  930. }
  931. ],
  932. "description": "Defines an object-oriented layer for the HTTP specification",
  933. "homepage": "https://symfony.com",
  934. "time": "2022-06-19T13:13:40+00:00"
  935. },
  936. {
  937. "name": "symfony/polyfill-mbstring",
  938. "version": "v1.26.0",
  939. "source": {
  940. "type": "git",
  941. "url": "https://github.com/symfony/polyfill-mbstring.git",
  942. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e"
  943. },
  944. "dist": {
  945. "type": "zip",
  946. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  947. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  948. "shasum": ""
  949. },
  950. "require": {
  951. "php": ">=7.1"
  952. },
  953. "provide": {
  954. "ext-mbstring": "*"
  955. },
  956. "suggest": {
  957. "ext-mbstring": "For best performance"
  958. },
  959. "type": "library",
  960. "extra": {
  961. "branch-alias": {
  962. "dev-main": "1.26-dev"
  963. },
  964. "thanks": {
  965. "name": "symfony/polyfill",
  966. "url": "https://github.com/symfony/polyfill"
  967. }
  968. },
  969. "autoload": {
  970. "files": [
  971. "bootstrap.php"
  972. ],
  973. "psr-4": {
  974. "Symfony\\Polyfill\\Mbstring\\": ""
  975. }
  976. },
  977. "notification-url": "https://packagist.org/downloads/",
  978. "license": [
  979. "MIT"
  980. ],
  981. "authors": [
  982. {
  983. "name": "Nicolas Grekas",
  984. "email": "p@tchwork.com"
  985. },
  986. {
  987. "name": "Symfony Community",
  988. "homepage": "https://symfony.com/contributors"
  989. }
  990. ],
  991. "description": "Symfony polyfill for the Mbstring extension",
  992. "homepage": "https://symfony.com",
  993. "keywords": [
  994. "compatibility",
  995. "mbstring",
  996. "polyfill",
  997. "portable",
  998. "shim"
  999. ],
  1000. "time": "2022-05-24T11:49:31+00:00"
  1001. },
  1002. {
  1003. "name": "symfony/polyfill-php80",
  1004. "version": "v1.26.0",
  1005. "source": {
  1006. "type": "git",
  1007. "url": "https://github.com/symfony/polyfill-php80.git",
  1008. "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace"
  1009. },
  1010. "dist": {
  1011. "type": "zip",
  1012. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/cfa0ae98841b9e461207c13ab093d76b0fa7bace",
  1013. "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace",
  1014. "shasum": ""
  1015. },
  1016. "require": {
  1017. "php": ">=7.1"
  1018. },
  1019. "type": "library",
  1020. "extra": {
  1021. "branch-alias": {
  1022. "dev-main": "1.26-dev"
  1023. },
  1024. "thanks": {
  1025. "name": "symfony/polyfill",
  1026. "url": "https://github.com/symfony/polyfill"
  1027. }
  1028. },
  1029. "autoload": {
  1030. "files": [
  1031. "bootstrap.php"
  1032. ],
  1033. "psr-4": {
  1034. "Symfony\\Polyfill\\Php80\\": ""
  1035. },
  1036. "classmap": [
  1037. "Resources/stubs"
  1038. ]
  1039. },
  1040. "notification-url": "https://packagist.org/downloads/",
  1041. "license": [
  1042. "MIT"
  1043. ],
  1044. "authors": [
  1045. {
  1046. "name": "Ion Bazan",
  1047. "email": "ion.bazan@gmail.com"
  1048. },
  1049. {
  1050. "name": "Nicolas Grekas",
  1051. "email": "p@tchwork.com"
  1052. },
  1053. {
  1054. "name": "Symfony Community",
  1055. "homepage": "https://symfony.com/contributors"
  1056. }
  1057. ],
  1058. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  1059. "homepage": "https://symfony.com",
  1060. "keywords": [
  1061. "compatibility",
  1062. "polyfill",
  1063. "portable",
  1064. "shim"
  1065. ],
  1066. "time": "2022-05-10T07:21:04+00:00"
  1067. }
  1068. ],
  1069. "packages-dev": [
  1070. {
  1071. "name": "doctrine/instantiator",
  1072. "version": "1.4.1",
  1073. "source": {
  1074. "type": "git",
  1075. "url": "https://github.com/doctrine/instantiator.git",
  1076. "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc"
  1077. },
  1078. "dist": {
  1079. "type": "zip",
  1080. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/10dcfce151b967d20fde1b34ae6640712c3891bc",
  1081. "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc",
  1082. "shasum": ""
  1083. },
  1084. "require": {
  1085. "php": "^7.1 || ^8.0"
  1086. },
  1087. "require-dev": {
  1088. "doctrine/coding-standard": "^9",
  1089. "ext-pdo": "*",
  1090. "ext-phar": "*",
  1091. "phpbench/phpbench": "^0.16 || ^1",
  1092. "phpstan/phpstan": "^1.4",
  1093. "phpstan/phpstan-phpunit": "^1",
  1094. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1095. "vimeo/psalm": "^4.22"
  1096. },
  1097. "type": "library",
  1098. "autoload": {
  1099. "psr-4": {
  1100. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  1101. }
  1102. },
  1103. "notification-url": "https://packagist.org/downloads/",
  1104. "license": [
  1105. "MIT"
  1106. ],
  1107. "authors": [
  1108. {
  1109. "name": "Marco Pivetta",
  1110. "email": "ocramius@gmail.com",
  1111. "homepage": "https://ocramius.github.io/"
  1112. }
  1113. ],
  1114. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  1115. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  1116. "keywords": [
  1117. "constructor",
  1118. "instantiate"
  1119. ],
  1120. "time": "2022-03-03T08:28:38+00:00"
  1121. },
  1122. {
  1123. "name": "myclabs/deep-copy",
  1124. "version": "1.11.0",
  1125. "source": {
  1126. "type": "git",
  1127. "url": "https://github.com/myclabs/DeepCopy.git",
  1128. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614"
  1129. },
  1130. "dist": {
  1131. "type": "zip",
  1132. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/14daed4296fae74d9e3201d2c4925d1acb7aa614",
  1133. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614",
  1134. "shasum": ""
  1135. },
  1136. "require": {
  1137. "php": "^7.1 || ^8.0"
  1138. },
  1139. "conflict": {
  1140. "doctrine/collections": "<1.6.8",
  1141. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  1142. },
  1143. "require-dev": {
  1144. "doctrine/collections": "^1.6.8",
  1145. "doctrine/common": "^2.13.3 || ^3.2.2",
  1146. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  1147. },
  1148. "type": "library",
  1149. "autoload": {
  1150. "files": [
  1151. "src/DeepCopy/deep_copy.php"
  1152. ],
  1153. "psr-4": {
  1154. "DeepCopy\\": "src/DeepCopy/"
  1155. }
  1156. },
  1157. "notification-url": "https://packagist.org/downloads/",
  1158. "license": [
  1159. "MIT"
  1160. ],
  1161. "description": "Create deep copies (clones) of your objects",
  1162. "keywords": [
  1163. "clone",
  1164. "copy",
  1165. "duplicate",
  1166. "object",
  1167. "object graph"
  1168. ],
  1169. "time": "2022-03-03T13:19:32+00:00"
  1170. },
  1171. {
  1172. "name": "nikic/php-parser",
  1173. "version": "v4.14.0",
  1174. "source": {
  1175. "type": "git",
  1176. "url": "https://github.com/nikic/PHP-Parser.git",
  1177. "reference": "34bea19b6e03d8153165d8f30bba4c3be86184c1"
  1178. },
  1179. "dist": {
  1180. "type": "zip",
  1181. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/34bea19b6e03d8153165d8f30bba4c3be86184c1",
  1182. "reference": "34bea19b6e03d8153165d8f30bba4c3be86184c1",
  1183. "shasum": ""
  1184. },
  1185. "require": {
  1186. "ext-tokenizer": "*",
  1187. "php": ">=7.0"
  1188. },
  1189. "require-dev": {
  1190. "ircmaxell/php-yacc": "^0.0.7",
  1191. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  1192. },
  1193. "bin": [
  1194. "bin/php-parse"
  1195. ],
  1196. "type": "library",
  1197. "extra": {
  1198. "branch-alias": {
  1199. "dev-master": "4.9-dev"
  1200. }
  1201. },
  1202. "autoload": {
  1203. "psr-4": {
  1204. "PhpParser\\": "lib/PhpParser"
  1205. }
  1206. },
  1207. "notification-url": "https://packagist.org/downloads/",
  1208. "license": [
  1209. "BSD-3-Clause"
  1210. ],
  1211. "authors": [
  1212. {
  1213. "name": "Nikita Popov"
  1214. }
  1215. ],
  1216. "description": "A PHP parser written in PHP",
  1217. "keywords": [
  1218. "parser",
  1219. "php"
  1220. ],
  1221. "time": "2022-05-31T20:59:12+00:00"
  1222. },
  1223. {
  1224. "name": "phar-io/manifest",
  1225. "version": "2.0.3",
  1226. "source": {
  1227. "type": "git",
  1228. "url": "https://github.com/phar-io/manifest.git",
  1229. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  1230. },
  1231. "dist": {
  1232. "type": "zip",
  1233. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  1234. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  1235. "shasum": ""
  1236. },
  1237. "require": {
  1238. "ext-dom": "*",
  1239. "ext-phar": "*",
  1240. "ext-xmlwriter": "*",
  1241. "phar-io/version": "^3.0.1",
  1242. "php": "^7.2 || ^8.0"
  1243. },
  1244. "type": "library",
  1245. "extra": {
  1246. "branch-alias": {
  1247. "dev-master": "2.0.x-dev"
  1248. }
  1249. },
  1250. "autoload": {
  1251. "classmap": [
  1252. "src/"
  1253. ]
  1254. },
  1255. "notification-url": "https://packagist.org/downloads/",
  1256. "license": [
  1257. "BSD-3-Clause"
  1258. ],
  1259. "authors": [
  1260. {
  1261. "name": "Arne Blankerts",
  1262. "email": "arne@blankerts.de",
  1263. "role": "Developer"
  1264. },
  1265. {
  1266. "name": "Sebastian Heuer",
  1267. "email": "sebastian@phpeople.de",
  1268. "role": "Developer"
  1269. },
  1270. {
  1271. "name": "Sebastian Bergmann",
  1272. "email": "sebastian@phpunit.de",
  1273. "role": "Developer"
  1274. }
  1275. ],
  1276. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  1277. "time": "2021-07-20T11:28:43+00:00"
  1278. },
  1279. {
  1280. "name": "phar-io/version",
  1281. "version": "3.2.1",
  1282. "source": {
  1283. "type": "git",
  1284. "url": "https://github.com/phar-io/version.git",
  1285. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  1286. },
  1287. "dist": {
  1288. "type": "zip",
  1289. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  1290. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  1291. "shasum": ""
  1292. },
  1293. "require": {
  1294. "php": "^7.2 || ^8.0"
  1295. },
  1296. "type": "library",
  1297. "autoload": {
  1298. "classmap": [
  1299. "src/"
  1300. ]
  1301. },
  1302. "notification-url": "https://packagist.org/downloads/",
  1303. "license": [
  1304. "BSD-3-Clause"
  1305. ],
  1306. "authors": [
  1307. {
  1308. "name": "Arne Blankerts",
  1309. "email": "arne@blankerts.de",
  1310. "role": "Developer"
  1311. },
  1312. {
  1313. "name": "Sebastian Heuer",
  1314. "email": "sebastian@phpeople.de",
  1315. "role": "Developer"
  1316. },
  1317. {
  1318. "name": "Sebastian Bergmann",
  1319. "email": "sebastian@phpunit.de",
  1320. "role": "Developer"
  1321. }
  1322. ],
  1323. "description": "Library for handling version information and constraints",
  1324. "time": "2022-02-21T01:04:05+00:00"
  1325. },
  1326. {
  1327. "name": "phpdocumentor/reflection-common",
  1328. "version": "2.2.0",
  1329. "source": {
  1330. "type": "git",
  1331. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  1332. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  1333. },
  1334. "dist": {
  1335. "type": "zip",
  1336. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  1337. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  1338. "shasum": ""
  1339. },
  1340. "require": {
  1341. "php": "^7.2 || ^8.0"
  1342. },
  1343. "type": "library",
  1344. "extra": {
  1345. "branch-alias": {
  1346. "dev-2.x": "2.x-dev"
  1347. }
  1348. },
  1349. "autoload": {
  1350. "psr-4": {
  1351. "phpDocumentor\\Reflection\\": "src/"
  1352. }
  1353. },
  1354. "notification-url": "https://packagist.org/downloads/",
  1355. "license": [
  1356. "MIT"
  1357. ],
  1358. "authors": [
  1359. {
  1360. "name": "Jaap van Otterdijk",
  1361. "email": "opensource@ijaap.nl"
  1362. }
  1363. ],
  1364. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  1365. "homepage": "http://www.phpdoc.org",
  1366. "keywords": [
  1367. "FQSEN",
  1368. "phpDocumentor",
  1369. "phpdoc",
  1370. "reflection",
  1371. "static analysis"
  1372. ],
  1373. "time": "2020-06-27T09:03:43+00:00"
  1374. },
  1375. {
  1376. "name": "phpdocumentor/reflection-docblock",
  1377. "version": "5.3.0",
  1378. "source": {
  1379. "type": "git",
  1380. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  1381. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170"
  1382. },
  1383. "dist": {
  1384. "type": "zip",
  1385. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170",
  1386. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170",
  1387. "shasum": ""
  1388. },
  1389. "require": {
  1390. "ext-filter": "*",
  1391. "php": "^7.2 || ^8.0",
  1392. "phpdocumentor/reflection-common": "^2.2",
  1393. "phpdocumentor/type-resolver": "^1.3",
  1394. "webmozart/assert": "^1.9.1"
  1395. },
  1396. "require-dev": {
  1397. "mockery/mockery": "~1.3.2",
  1398. "psalm/phar": "^4.8"
  1399. },
  1400. "type": "library",
  1401. "extra": {
  1402. "branch-alias": {
  1403. "dev-master": "5.x-dev"
  1404. }
  1405. },
  1406. "autoload": {
  1407. "psr-4": {
  1408. "phpDocumentor\\Reflection\\": "src"
  1409. }
  1410. },
  1411. "notification-url": "https://packagist.org/downloads/",
  1412. "license": [
  1413. "MIT"
  1414. ],
  1415. "authors": [
  1416. {
  1417. "name": "Mike van Riel",
  1418. "email": "me@mikevanriel.com"
  1419. },
  1420. {
  1421. "name": "Jaap van Otterdijk",
  1422. "email": "account@ijaap.nl"
  1423. }
  1424. ],
  1425. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  1426. "time": "2021-10-19T17:43:47+00:00"
  1427. },
  1428. {
  1429. "name": "phpdocumentor/type-resolver",
  1430. "version": "1.6.1",
  1431. "source": {
  1432. "type": "git",
  1433. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  1434. "reference": "77a32518733312af16a44300404e945338981de3"
  1435. },
  1436. "dist": {
  1437. "type": "zip",
  1438. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/77a32518733312af16a44300404e945338981de3",
  1439. "reference": "77a32518733312af16a44300404e945338981de3",
  1440. "shasum": ""
  1441. },
  1442. "require": {
  1443. "php": "^7.2 || ^8.0",
  1444. "phpdocumentor/reflection-common": "^2.0"
  1445. },
  1446. "require-dev": {
  1447. "ext-tokenizer": "*",
  1448. "psalm/phar": "^4.8"
  1449. },
  1450. "type": "library",
  1451. "extra": {
  1452. "branch-alias": {
  1453. "dev-1.x": "1.x-dev"
  1454. }
  1455. },
  1456. "autoload": {
  1457. "psr-4": {
  1458. "phpDocumentor\\Reflection\\": "src"
  1459. }
  1460. },
  1461. "notification-url": "https://packagist.org/downloads/",
  1462. "license": [
  1463. "MIT"
  1464. ],
  1465. "authors": [
  1466. {
  1467. "name": "Mike van Riel",
  1468. "email": "me@mikevanriel.com"
  1469. }
  1470. ],
  1471. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  1472. "time": "2022-03-15T21:29:03+00:00"
  1473. },
  1474. {
  1475. "name": "phpspec/prophecy",
  1476. "version": "v1.15.0",
  1477. "source": {
  1478. "type": "git",
  1479. "url": "https://github.com/phpspec/prophecy.git",
  1480. "reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13"
  1481. },
  1482. "dist": {
  1483. "type": "zip",
  1484. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/bbcd7380b0ebf3961ee21409db7b38bc31d69a13",
  1485. "reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13",
  1486. "shasum": ""
  1487. },
  1488. "require": {
  1489. "doctrine/instantiator": "^1.2",
  1490. "php": "^7.2 || ~8.0, <8.2",
  1491. "phpdocumentor/reflection-docblock": "^5.2",
  1492. "sebastian/comparator": "^3.0 || ^4.0",
  1493. "sebastian/recursion-context": "^3.0 || ^4.0"
  1494. },
  1495. "require-dev": {
  1496. "phpspec/phpspec": "^6.0 || ^7.0",
  1497. "phpunit/phpunit": "^8.0 || ^9.0"
  1498. },
  1499. "type": "library",
  1500. "extra": {
  1501. "branch-alias": {
  1502. "dev-master": "1.x-dev"
  1503. }
  1504. },
  1505. "autoload": {
  1506. "psr-4": {
  1507. "Prophecy\\": "src/Prophecy"
  1508. }
  1509. },
  1510. "notification-url": "https://packagist.org/downloads/",
  1511. "license": [
  1512. "MIT"
  1513. ],
  1514. "authors": [
  1515. {
  1516. "name": "Konstantin Kudryashov",
  1517. "email": "ever.zet@gmail.com",
  1518. "homepage": "http://everzet.com"
  1519. },
  1520. {
  1521. "name": "Marcello Duarte",
  1522. "email": "marcello.duarte@gmail.com"
  1523. }
  1524. ],
  1525. "description": "Highly opinionated mocking framework for PHP 5.3+",
  1526. "homepage": "https://github.com/phpspec/prophecy",
  1527. "keywords": [
  1528. "Double",
  1529. "Dummy",
  1530. "fake",
  1531. "mock",
  1532. "spy",
  1533. "stub"
  1534. ],
  1535. "time": "2021-12-08T12:19:24+00:00"
  1536. },
  1537. {
  1538. "name": "phpunit/php-code-coverage",
  1539. "version": "9.2.15",
  1540. "source": {
  1541. "type": "git",
  1542. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  1543. "reference": "2e9da11878c4202f97915c1cb4bb1ca318a63f5f"
  1544. },
  1545. "dist": {
  1546. "type": "zip",
  1547. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/2e9da11878c4202f97915c1cb4bb1ca318a63f5f",
  1548. "reference": "2e9da11878c4202f97915c1cb4bb1ca318a63f5f",
  1549. "shasum": ""
  1550. },
  1551. "require": {
  1552. "ext-dom": "*",
  1553. "ext-libxml": "*",
  1554. "ext-xmlwriter": "*",
  1555. "nikic/php-parser": "^4.13.0",
  1556. "php": ">=7.3",
  1557. "phpunit/php-file-iterator": "^3.0.3",
  1558. "phpunit/php-text-template": "^2.0.2",
  1559. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  1560. "sebastian/complexity": "^2.0",
  1561. "sebastian/environment": "^5.1.2",
  1562. "sebastian/lines-of-code": "^1.0.3",
  1563. "sebastian/version": "^3.0.1",
  1564. "theseer/tokenizer": "^1.2.0"
  1565. },
  1566. "require-dev": {
  1567. "phpunit/phpunit": "^9.3"
  1568. },
  1569. "suggest": {
  1570. "ext-pcov": "*",
  1571. "ext-xdebug": "*"
  1572. },
  1573. "type": "library",
  1574. "extra": {
  1575. "branch-alias": {
  1576. "dev-master": "9.2-dev"
  1577. }
  1578. },
  1579. "autoload": {
  1580. "classmap": [
  1581. "src/"
  1582. ]
  1583. },
  1584. "notification-url": "https://packagist.org/downloads/",
  1585. "license": [
  1586. "BSD-3-Clause"
  1587. ],
  1588. "authors": [
  1589. {
  1590. "name": "Sebastian Bergmann",
  1591. "email": "sebastian@phpunit.de",
  1592. "role": "lead"
  1593. }
  1594. ],
  1595. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  1596. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  1597. "keywords": [
  1598. "coverage",
  1599. "testing",
  1600. "xunit"
  1601. ],
  1602. "time": "2022-03-07T09:28:20+00:00"
  1603. },
  1604. {
  1605. "name": "phpunit/php-file-iterator",
  1606. "version": "3.0.6",
  1607. "source": {
  1608. "type": "git",
  1609. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  1610. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  1611. },
  1612. "dist": {
  1613. "type": "zip",
  1614. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  1615. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  1616. "shasum": ""
  1617. },
  1618. "require": {
  1619. "php": ">=7.3"
  1620. },
  1621. "require-dev": {
  1622. "phpunit/phpunit": "^9.3"
  1623. },
  1624. "type": "library",
  1625. "extra": {
  1626. "branch-alias": {
  1627. "dev-master": "3.0-dev"
  1628. }
  1629. },
  1630. "autoload": {
  1631. "classmap": [
  1632. "src/"
  1633. ]
  1634. },
  1635. "notification-url": "https://packagist.org/downloads/",
  1636. "license": [
  1637. "BSD-3-Clause"
  1638. ],
  1639. "authors": [
  1640. {
  1641. "name": "Sebastian Bergmann",
  1642. "email": "sebastian@phpunit.de",
  1643. "role": "lead"
  1644. }
  1645. ],
  1646. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  1647. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  1648. "keywords": [
  1649. "filesystem",
  1650. "iterator"
  1651. ],
  1652. "time": "2021-12-02T12:48:52+00:00"
  1653. },
  1654. {
  1655. "name": "phpunit/php-invoker",
  1656. "version": "3.1.1",
  1657. "source": {
  1658. "type": "git",
  1659. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  1660. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  1661. },
  1662. "dist": {
  1663. "type": "zip",
  1664. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  1665. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  1666. "shasum": ""
  1667. },
  1668. "require": {
  1669. "php": ">=7.3"
  1670. },
  1671. "require-dev": {
  1672. "ext-pcntl": "*",
  1673. "phpunit/phpunit": "^9.3"
  1674. },
  1675. "suggest": {
  1676. "ext-pcntl": "*"
  1677. },
  1678. "type": "library",
  1679. "extra": {
  1680. "branch-alias": {
  1681. "dev-master": "3.1-dev"
  1682. }
  1683. },
  1684. "autoload": {
  1685. "classmap": [
  1686. "src/"
  1687. ]
  1688. },
  1689. "notification-url": "https://packagist.org/downloads/",
  1690. "license": [
  1691. "BSD-3-Clause"
  1692. ],
  1693. "authors": [
  1694. {
  1695. "name": "Sebastian Bergmann",
  1696. "email": "sebastian@phpunit.de",
  1697. "role": "lead"
  1698. }
  1699. ],
  1700. "description": "Invoke callables with a timeout",
  1701. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  1702. "keywords": [
  1703. "process"
  1704. ],
  1705. "time": "2020-09-28T05:58:55+00:00"
  1706. },
  1707. {
  1708. "name": "phpunit/php-text-template",
  1709. "version": "2.0.4",
  1710. "source": {
  1711. "type": "git",
  1712. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  1713. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  1714. },
  1715. "dist": {
  1716. "type": "zip",
  1717. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  1718. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  1719. "shasum": ""
  1720. },
  1721. "require": {
  1722. "php": ">=7.3"
  1723. },
  1724. "require-dev": {
  1725. "phpunit/phpunit": "^9.3"
  1726. },
  1727. "type": "library",
  1728. "extra": {
  1729. "branch-alias": {
  1730. "dev-master": "2.0-dev"
  1731. }
  1732. },
  1733. "autoload": {
  1734. "classmap": [
  1735. "src/"
  1736. ]
  1737. },
  1738. "notification-url": "https://packagist.org/downloads/",
  1739. "license": [
  1740. "BSD-3-Clause"
  1741. ],
  1742. "authors": [
  1743. {
  1744. "name": "Sebastian Bergmann",
  1745. "email": "sebastian@phpunit.de",
  1746. "role": "lead"
  1747. }
  1748. ],
  1749. "description": "Simple template engine.",
  1750. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  1751. "keywords": [
  1752. "template"
  1753. ],
  1754. "time": "2020-10-26T05:33:50+00:00"
  1755. },
  1756. {
  1757. "name": "phpunit/php-timer",
  1758. "version": "5.0.3",
  1759. "source": {
  1760. "type": "git",
  1761. "url": "https://github.com/sebastianbergmann/php-timer.git",
  1762. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  1763. },
  1764. "dist": {
  1765. "type": "zip",
  1766. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  1767. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  1768. "shasum": ""
  1769. },
  1770. "require": {
  1771. "php": ">=7.3"
  1772. },
  1773. "require-dev": {
  1774. "phpunit/phpunit": "^9.3"
  1775. },
  1776. "type": "library",
  1777. "extra": {
  1778. "branch-alias": {
  1779. "dev-master": "5.0-dev"
  1780. }
  1781. },
  1782. "autoload": {
  1783. "classmap": [
  1784. "src/"
  1785. ]
  1786. },
  1787. "notification-url": "https://packagist.org/downloads/",
  1788. "license": [
  1789. "BSD-3-Clause"
  1790. ],
  1791. "authors": [
  1792. {
  1793. "name": "Sebastian Bergmann",
  1794. "email": "sebastian@phpunit.de",
  1795. "role": "lead"
  1796. }
  1797. ],
  1798. "description": "Utility class for timing",
  1799. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  1800. "keywords": [
  1801. "timer"
  1802. ],
  1803. "time": "2020-10-26T13:16:10+00:00"
  1804. },
  1805. {
  1806. "name": "phpunit/phpunit",
  1807. "version": "9.5.21",
  1808. "source": {
  1809. "type": "git",
  1810. "url": "https://github.com/sebastianbergmann/phpunit.git",
  1811. "reference": "0e32b76be457de00e83213528f6bb37e2a38fcb1"
  1812. },
  1813. "dist": {
  1814. "type": "zip",
  1815. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/0e32b76be457de00e83213528f6bb37e2a38fcb1",
  1816. "reference": "0e32b76be457de00e83213528f6bb37e2a38fcb1",
  1817. "shasum": ""
  1818. },
  1819. "require": {
  1820. "doctrine/instantiator": "^1.3.1",
  1821. "ext-dom": "*",
  1822. "ext-json": "*",
  1823. "ext-libxml": "*",
  1824. "ext-mbstring": "*",
  1825. "ext-xml": "*",
  1826. "ext-xmlwriter": "*",
  1827. "myclabs/deep-copy": "^1.10.1",
  1828. "phar-io/manifest": "^2.0.3",
  1829. "phar-io/version": "^3.0.2",
  1830. "php": ">=7.3",
  1831. "phpspec/prophecy": "^1.12.1",
  1832. "phpunit/php-code-coverage": "^9.2.13",
  1833. "phpunit/php-file-iterator": "^3.0.5",
  1834. "phpunit/php-invoker": "^3.1.1",
  1835. "phpunit/php-text-template": "^2.0.3",
  1836. "phpunit/php-timer": "^5.0.2",
  1837. "sebastian/cli-parser": "^1.0.1",
  1838. "sebastian/code-unit": "^1.0.6",
  1839. "sebastian/comparator": "^4.0.5",
  1840. "sebastian/diff": "^4.0.3",
  1841. "sebastian/environment": "^5.1.3",
  1842. "sebastian/exporter": "^4.0.3",
  1843. "sebastian/global-state": "^5.0.1",
  1844. "sebastian/object-enumerator": "^4.0.3",
  1845. "sebastian/resource-operations": "^3.0.3",
  1846. "sebastian/type": "^3.0",
  1847. "sebastian/version": "^3.0.2"
  1848. },
  1849. "require-dev": {
  1850. "phpspec/prophecy-phpunit": "^2.0.1"
  1851. },
  1852. "suggest": {
  1853. "ext-soap": "*",
  1854. "ext-xdebug": "*"
  1855. },
  1856. "bin": [
  1857. "phpunit"
  1858. ],
  1859. "type": "library",
  1860. "extra": {
  1861. "branch-alias": {
  1862. "dev-master": "9.5-dev"
  1863. }
  1864. },
  1865. "autoload": {
  1866. "files": [
  1867. "src/Framework/Assert/Functions.php"
  1868. ],
  1869. "classmap": [
  1870. "src/"
  1871. ]
  1872. },
  1873. "notification-url": "https://packagist.org/downloads/",
  1874. "license": [
  1875. "BSD-3-Clause"
  1876. ],
  1877. "authors": [
  1878. {
  1879. "name": "Sebastian Bergmann",
  1880. "email": "sebastian@phpunit.de",
  1881. "role": "lead"
  1882. }
  1883. ],
  1884. "description": "The PHP Unit Testing framework.",
  1885. "homepage": "https://phpunit.de/",
  1886. "keywords": [
  1887. "phpunit",
  1888. "testing",
  1889. "xunit"
  1890. ],
  1891. "time": "2022-06-19T12:14:25+00:00"
  1892. },
  1893. {
  1894. "name": "sebastian/cli-parser",
  1895. "version": "1.0.1",
  1896. "source": {
  1897. "type": "git",
  1898. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  1899. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  1900. },
  1901. "dist": {
  1902. "type": "zip",
  1903. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  1904. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  1905. "shasum": ""
  1906. },
  1907. "require": {
  1908. "php": ">=7.3"
  1909. },
  1910. "require-dev": {
  1911. "phpunit/phpunit": "^9.3"
  1912. },
  1913. "type": "library",
  1914. "extra": {
  1915. "branch-alias": {
  1916. "dev-master": "1.0-dev"
  1917. }
  1918. },
  1919. "autoload": {
  1920. "classmap": [
  1921. "src/"
  1922. ]
  1923. },
  1924. "notification-url": "https://packagist.org/downloads/",
  1925. "license": [
  1926. "BSD-3-Clause"
  1927. ],
  1928. "authors": [
  1929. {
  1930. "name": "Sebastian Bergmann",
  1931. "email": "sebastian@phpunit.de",
  1932. "role": "lead"
  1933. }
  1934. ],
  1935. "description": "Library for parsing CLI options",
  1936. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  1937. "time": "2020-09-28T06:08:49+00:00"
  1938. },
  1939. {
  1940. "name": "sebastian/code-unit",
  1941. "version": "1.0.8",
  1942. "source": {
  1943. "type": "git",
  1944. "url": "https://github.com/sebastianbergmann/code-unit.git",
  1945. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  1946. },
  1947. "dist": {
  1948. "type": "zip",
  1949. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  1950. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  1951. "shasum": ""
  1952. },
  1953. "require": {
  1954. "php": ">=7.3"
  1955. },
  1956. "require-dev": {
  1957. "phpunit/phpunit": "^9.3"
  1958. },
  1959. "type": "library",
  1960. "extra": {
  1961. "branch-alias": {
  1962. "dev-master": "1.0-dev"
  1963. }
  1964. },
  1965. "autoload": {
  1966. "classmap": [
  1967. "src/"
  1968. ]
  1969. },
  1970. "notification-url": "https://packagist.org/downloads/",
  1971. "license": [
  1972. "BSD-3-Clause"
  1973. ],
  1974. "authors": [
  1975. {
  1976. "name": "Sebastian Bergmann",
  1977. "email": "sebastian@phpunit.de",
  1978. "role": "lead"
  1979. }
  1980. ],
  1981. "description": "Collection of value objects that represent the PHP code units",
  1982. "homepage": "https://github.com/sebastianbergmann/code-unit",
  1983. "time": "2020-10-26T13:08:54+00:00"
  1984. },
  1985. {
  1986. "name": "sebastian/code-unit-reverse-lookup",
  1987. "version": "2.0.3",
  1988. "source": {
  1989. "type": "git",
  1990. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  1991. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  1992. },
  1993. "dist": {
  1994. "type": "zip",
  1995. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  1996. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  1997. "shasum": ""
  1998. },
  1999. "require": {
  2000. "php": ">=7.3"
  2001. },
  2002. "require-dev": {
  2003. "phpunit/phpunit": "^9.3"
  2004. },
  2005. "type": "library",
  2006. "extra": {
  2007. "branch-alias": {
  2008. "dev-master": "2.0-dev"
  2009. }
  2010. },
  2011. "autoload": {
  2012. "classmap": [
  2013. "src/"
  2014. ]
  2015. },
  2016. "notification-url": "https://packagist.org/downloads/",
  2017. "license": [
  2018. "BSD-3-Clause"
  2019. ],
  2020. "authors": [
  2021. {
  2022. "name": "Sebastian Bergmann",
  2023. "email": "sebastian@phpunit.de"
  2024. }
  2025. ],
  2026. "description": "Looks up which function or method a line of code belongs to",
  2027. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  2028. "time": "2020-09-28T05:30:19+00:00"
  2029. },
  2030. {
  2031. "name": "sebastian/comparator",
  2032. "version": "4.0.6",
  2033. "source": {
  2034. "type": "git",
  2035. "url": "https://github.com/sebastianbergmann/comparator.git",
  2036. "reference": "55f4261989e546dc112258c7a75935a81a7ce382"
  2037. },
  2038. "dist": {
  2039. "type": "zip",
  2040. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/55f4261989e546dc112258c7a75935a81a7ce382",
  2041. "reference": "55f4261989e546dc112258c7a75935a81a7ce382",
  2042. "shasum": ""
  2043. },
  2044. "require": {
  2045. "php": ">=7.3",
  2046. "sebastian/diff": "^4.0",
  2047. "sebastian/exporter": "^4.0"
  2048. },
  2049. "require-dev": {
  2050. "phpunit/phpunit": "^9.3"
  2051. },
  2052. "type": "library",
  2053. "extra": {
  2054. "branch-alias": {
  2055. "dev-master": "4.0-dev"
  2056. }
  2057. },
  2058. "autoload": {
  2059. "classmap": [
  2060. "src/"
  2061. ]
  2062. },
  2063. "notification-url": "https://packagist.org/downloads/",
  2064. "license": [
  2065. "BSD-3-Clause"
  2066. ],
  2067. "authors": [
  2068. {
  2069. "name": "Sebastian Bergmann",
  2070. "email": "sebastian@phpunit.de"
  2071. },
  2072. {
  2073. "name": "Jeff Welch",
  2074. "email": "whatthejeff@gmail.com"
  2075. },
  2076. {
  2077. "name": "Volker Dusch",
  2078. "email": "github@wallbash.com"
  2079. },
  2080. {
  2081. "name": "Bernhard Schussek",
  2082. "email": "bschussek@2bepublished.at"
  2083. }
  2084. ],
  2085. "description": "Provides the functionality to compare PHP values for equality",
  2086. "homepage": "https://github.com/sebastianbergmann/comparator",
  2087. "keywords": [
  2088. "comparator",
  2089. "compare",
  2090. "equality"
  2091. ],
  2092. "time": "2020-10-26T15:49:45+00:00"
  2093. },
  2094. {
  2095. "name": "sebastian/complexity",
  2096. "version": "2.0.2",
  2097. "source": {
  2098. "type": "git",
  2099. "url": "https://github.com/sebastianbergmann/complexity.git",
  2100. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  2101. },
  2102. "dist": {
  2103. "type": "zip",
  2104. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  2105. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  2106. "shasum": ""
  2107. },
  2108. "require": {
  2109. "nikic/php-parser": "^4.7",
  2110. "php": ">=7.3"
  2111. },
  2112. "require-dev": {
  2113. "phpunit/phpunit": "^9.3"
  2114. },
  2115. "type": "library",
  2116. "extra": {
  2117. "branch-alias": {
  2118. "dev-master": "2.0-dev"
  2119. }
  2120. },
  2121. "autoload": {
  2122. "classmap": [
  2123. "src/"
  2124. ]
  2125. },
  2126. "notification-url": "https://packagist.org/downloads/",
  2127. "license": [
  2128. "BSD-3-Clause"
  2129. ],
  2130. "authors": [
  2131. {
  2132. "name": "Sebastian Bergmann",
  2133. "email": "sebastian@phpunit.de",
  2134. "role": "lead"
  2135. }
  2136. ],
  2137. "description": "Library for calculating the complexity of PHP code units",
  2138. "homepage": "https://github.com/sebastianbergmann/complexity",
  2139. "time": "2020-10-26T15:52:27+00:00"
  2140. },
  2141. {
  2142. "name": "sebastian/diff",
  2143. "version": "4.0.4",
  2144. "source": {
  2145. "type": "git",
  2146. "url": "https://github.com/sebastianbergmann/diff.git",
  2147. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  2148. },
  2149. "dist": {
  2150. "type": "zip",
  2151. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  2152. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  2153. "shasum": ""
  2154. },
  2155. "require": {
  2156. "php": ">=7.3"
  2157. },
  2158. "require-dev": {
  2159. "phpunit/phpunit": "^9.3",
  2160. "symfony/process": "^4.2 || ^5"
  2161. },
  2162. "type": "library",
  2163. "extra": {
  2164. "branch-alias": {
  2165. "dev-master": "4.0-dev"
  2166. }
  2167. },
  2168. "autoload": {
  2169. "classmap": [
  2170. "src/"
  2171. ]
  2172. },
  2173. "notification-url": "https://packagist.org/downloads/",
  2174. "license": [
  2175. "BSD-3-Clause"
  2176. ],
  2177. "authors": [
  2178. {
  2179. "name": "Sebastian Bergmann",
  2180. "email": "sebastian@phpunit.de"
  2181. },
  2182. {
  2183. "name": "Kore Nordmann",
  2184. "email": "mail@kore-nordmann.de"
  2185. }
  2186. ],
  2187. "description": "Diff implementation",
  2188. "homepage": "https://github.com/sebastianbergmann/diff",
  2189. "keywords": [
  2190. "diff",
  2191. "udiff",
  2192. "unidiff",
  2193. "unified diff"
  2194. ],
  2195. "time": "2020-10-26T13:10:38+00:00"
  2196. },
  2197. {
  2198. "name": "sebastian/environment",
  2199. "version": "5.1.4",
  2200. "source": {
  2201. "type": "git",
  2202. "url": "https://github.com/sebastianbergmann/environment.git",
  2203. "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7"
  2204. },
  2205. "dist": {
  2206. "type": "zip",
  2207. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/1b5dff7bb151a4db11d49d90e5408e4e938270f7",
  2208. "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7",
  2209. "shasum": ""
  2210. },
  2211. "require": {
  2212. "php": ">=7.3"
  2213. },
  2214. "require-dev": {
  2215. "phpunit/phpunit": "^9.3"
  2216. },
  2217. "suggest": {
  2218. "ext-posix": "*"
  2219. },
  2220. "type": "library",
  2221. "extra": {
  2222. "branch-alias": {
  2223. "dev-master": "5.1-dev"
  2224. }
  2225. },
  2226. "autoload": {
  2227. "classmap": [
  2228. "src/"
  2229. ]
  2230. },
  2231. "notification-url": "https://packagist.org/downloads/",
  2232. "license": [
  2233. "BSD-3-Clause"
  2234. ],
  2235. "authors": [
  2236. {
  2237. "name": "Sebastian Bergmann",
  2238. "email": "sebastian@phpunit.de"
  2239. }
  2240. ],
  2241. "description": "Provides functionality to handle HHVM/PHP environments",
  2242. "homepage": "http://www.github.com/sebastianbergmann/environment",
  2243. "keywords": [
  2244. "Xdebug",
  2245. "environment",
  2246. "hhvm"
  2247. ],
  2248. "time": "2022-04-03T09:37:03+00:00"
  2249. },
  2250. {
  2251. "name": "sebastian/exporter",
  2252. "version": "4.0.4",
  2253. "source": {
  2254. "type": "git",
  2255. "url": "https://github.com/sebastianbergmann/exporter.git",
  2256. "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9"
  2257. },
  2258. "dist": {
  2259. "type": "zip",
  2260. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/65e8b7db476c5dd267e65eea9cab77584d3cfff9",
  2261. "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9",
  2262. "shasum": ""
  2263. },
  2264. "require": {
  2265. "php": ">=7.3",
  2266. "sebastian/recursion-context": "^4.0"
  2267. },
  2268. "require-dev": {
  2269. "ext-mbstring": "*",
  2270. "phpunit/phpunit": "^9.3"
  2271. },
  2272. "type": "library",
  2273. "extra": {
  2274. "branch-alias": {
  2275. "dev-master": "4.0-dev"
  2276. }
  2277. },
  2278. "autoload": {
  2279. "classmap": [
  2280. "src/"
  2281. ]
  2282. },
  2283. "notification-url": "https://packagist.org/downloads/",
  2284. "license": [
  2285. "BSD-3-Clause"
  2286. ],
  2287. "authors": [
  2288. {
  2289. "name": "Sebastian Bergmann",
  2290. "email": "sebastian@phpunit.de"
  2291. },
  2292. {
  2293. "name": "Jeff Welch",
  2294. "email": "whatthejeff@gmail.com"
  2295. },
  2296. {
  2297. "name": "Volker Dusch",
  2298. "email": "github@wallbash.com"
  2299. },
  2300. {
  2301. "name": "Adam Harvey",
  2302. "email": "aharvey@php.net"
  2303. },
  2304. {
  2305. "name": "Bernhard Schussek",
  2306. "email": "bschussek@gmail.com"
  2307. }
  2308. ],
  2309. "description": "Provides the functionality to export PHP variables for visualization",
  2310. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  2311. "keywords": [
  2312. "export",
  2313. "exporter"
  2314. ],
  2315. "time": "2021-11-11T14:18:36+00:00"
  2316. },
  2317. {
  2318. "name": "sebastian/global-state",
  2319. "version": "5.0.5",
  2320. "source": {
  2321. "type": "git",
  2322. "url": "https://github.com/sebastianbergmann/global-state.git",
  2323. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2"
  2324. },
  2325. "dist": {
  2326. "type": "zip",
  2327. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  2328. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  2329. "shasum": ""
  2330. },
  2331. "require": {
  2332. "php": ">=7.3",
  2333. "sebastian/object-reflector": "^2.0",
  2334. "sebastian/recursion-context": "^4.0"
  2335. },
  2336. "require-dev": {
  2337. "ext-dom": "*",
  2338. "phpunit/phpunit": "^9.3"
  2339. },
  2340. "suggest": {
  2341. "ext-uopz": "*"
  2342. },
  2343. "type": "library",
  2344. "extra": {
  2345. "branch-alias": {
  2346. "dev-master": "5.0-dev"
  2347. }
  2348. },
  2349. "autoload": {
  2350. "classmap": [
  2351. "src/"
  2352. ]
  2353. },
  2354. "notification-url": "https://packagist.org/downloads/",
  2355. "license": [
  2356. "BSD-3-Clause"
  2357. ],
  2358. "authors": [
  2359. {
  2360. "name": "Sebastian Bergmann",
  2361. "email": "sebastian@phpunit.de"
  2362. }
  2363. ],
  2364. "description": "Snapshotting of global state",
  2365. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  2366. "keywords": [
  2367. "global state"
  2368. ],
  2369. "time": "2022-02-14T08:28:10+00:00"
  2370. },
  2371. {
  2372. "name": "sebastian/lines-of-code",
  2373. "version": "1.0.3",
  2374. "source": {
  2375. "type": "git",
  2376. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  2377. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  2378. },
  2379. "dist": {
  2380. "type": "zip",
  2381. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  2382. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  2383. "shasum": ""
  2384. },
  2385. "require": {
  2386. "nikic/php-parser": "^4.6",
  2387. "php": ">=7.3"
  2388. },
  2389. "require-dev": {
  2390. "phpunit/phpunit": "^9.3"
  2391. },
  2392. "type": "library",
  2393. "extra": {
  2394. "branch-alias": {
  2395. "dev-master": "1.0-dev"
  2396. }
  2397. },
  2398. "autoload": {
  2399. "classmap": [
  2400. "src/"
  2401. ]
  2402. },
  2403. "notification-url": "https://packagist.org/downloads/",
  2404. "license": [
  2405. "BSD-3-Clause"
  2406. ],
  2407. "authors": [
  2408. {
  2409. "name": "Sebastian Bergmann",
  2410. "email": "sebastian@phpunit.de",
  2411. "role": "lead"
  2412. }
  2413. ],
  2414. "description": "Library for counting the lines of code in PHP source code",
  2415. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  2416. "time": "2020-11-28T06:42:11+00:00"
  2417. },
  2418. {
  2419. "name": "sebastian/object-enumerator",
  2420. "version": "4.0.4",
  2421. "source": {
  2422. "type": "git",
  2423. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  2424. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  2425. },
  2426. "dist": {
  2427. "type": "zip",
  2428. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  2429. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  2430. "shasum": ""
  2431. },
  2432. "require": {
  2433. "php": ">=7.3",
  2434. "sebastian/object-reflector": "^2.0",
  2435. "sebastian/recursion-context": "^4.0"
  2436. },
  2437. "require-dev": {
  2438. "phpunit/phpunit": "^9.3"
  2439. },
  2440. "type": "library",
  2441. "extra": {
  2442. "branch-alias": {
  2443. "dev-master": "4.0-dev"
  2444. }
  2445. },
  2446. "autoload": {
  2447. "classmap": [
  2448. "src/"
  2449. ]
  2450. },
  2451. "notification-url": "https://packagist.org/downloads/",
  2452. "license": [
  2453. "BSD-3-Clause"
  2454. ],
  2455. "authors": [
  2456. {
  2457. "name": "Sebastian Bergmann",
  2458. "email": "sebastian@phpunit.de"
  2459. }
  2460. ],
  2461. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  2462. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  2463. "time": "2020-10-26T13:12:34+00:00"
  2464. },
  2465. {
  2466. "name": "sebastian/object-reflector",
  2467. "version": "2.0.4",
  2468. "source": {
  2469. "type": "git",
  2470. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  2471. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  2472. },
  2473. "dist": {
  2474. "type": "zip",
  2475. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  2476. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  2477. "shasum": ""
  2478. },
  2479. "require": {
  2480. "php": ">=7.3"
  2481. },
  2482. "require-dev": {
  2483. "phpunit/phpunit": "^9.3"
  2484. },
  2485. "type": "library",
  2486. "extra": {
  2487. "branch-alias": {
  2488. "dev-master": "2.0-dev"
  2489. }
  2490. },
  2491. "autoload": {
  2492. "classmap": [
  2493. "src/"
  2494. ]
  2495. },
  2496. "notification-url": "https://packagist.org/downloads/",
  2497. "license": [
  2498. "BSD-3-Clause"
  2499. ],
  2500. "authors": [
  2501. {
  2502. "name": "Sebastian Bergmann",
  2503. "email": "sebastian@phpunit.de"
  2504. }
  2505. ],
  2506. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  2507. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  2508. "time": "2020-10-26T13:14:26+00:00"
  2509. },
  2510. {
  2511. "name": "sebastian/recursion-context",
  2512. "version": "4.0.4",
  2513. "source": {
  2514. "type": "git",
  2515. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  2516. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172"
  2517. },
  2518. "dist": {
  2519. "type": "zip",
  2520. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172",
  2521. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172",
  2522. "shasum": ""
  2523. },
  2524. "require": {
  2525. "php": ">=7.3"
  2526. },
  2527. "require-dev": {
  2528. "phpunit/phpunit": "^9.3"
  2529. },
  2530. "type": "library",
  2531. "extra": {
  2532. "branch-alias": {
  2533. "dev-master": "4.0-dev"
  2534. }
  2535. },
  2536. "autoload": {
  2537. "classmap": [
  2538. "src/"
  2539. ]
  2540. },
  2541. "notification-url": "https://packagist.org/downloads/",
  2542. "license": [
  2543. "BSD-3-Clause"
  2544. ],
  2545. "authors": [
  2546. {
  2547. "name": "Sebastian Bergmann",
  2548. "email": "sebastian@phpunit.de"
  2549. },
  2550. {
  2551. "name": "Jeff Welch",
  2552. "email": "whatthejeff@gmail.com"
  2553. },
  2554. {
  2555. "name": "Adam Harvey",
  2556. "email": "aharvey@php.net"
  2557. }
  2558. ],
  2559. "description": "Provides functionality to recursively process PHP variables",
  2560. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  2561. "time": "2020-10-26T13:17:30+00:00"
  2562. },
  2563. {
  2564. "name": "sebastian/resource-operations",
  2565. "version": "3.0.3",
  2566. "source": {
  2567. "type": "git",
  2568. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  2569. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  2570. },
  2571. "dist": {
  2572. "type": "zip",
  2573. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  2574. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  2575. "shasum": ""
  2576. },
  2577. "require": {
  2578. "php": ">=7.3"
  2579. },
  2580. "require-dev": {
  2581. "phpunit/phpunit": "^9.0"
  2582. },
  2583. "type": "library",
  2584. "extra": {
  2585. "branch-alias": {
  2586. "dev-master": "3.0-dev"
  2587. }
  2588. },
  2589. "autoload": {
  2590. "classmap": [
  2591. "src/"
  2592. ]
  2593. },
  2594. "notification-url": "https://packagist.org/downloads/",
  2595. "license": [
  2596. "BSD-3-Clause"
  2597. ],
  2598. "authors": [
  2599. {
  2600. "name": "Sebastian Bergmann",
  2601. "email": "sebastian@phpunit.de"
  2602. }
  2603. ],
  2604. "description": "Provides a list of PHP built-in functions that operate on resources",
  2605. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  2606. "time": "2020-09-28T06:45:17+00:00"
  2607. },
  2608. {
  2609. "name": "sebastian/type",
  2610. "version": "3.0.0",
  2611. "source": {
  2612. "type": "git",
  2613. "url": "https://github.com/sebastianbergmann/type.git",
  2614. "reference": "b233b84bc4465aff7b57cf1c4bc75c86d00d6dad"
  2615. },
  2616. "dist": {
  2617. "type": "zip",
  2618. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/b233b84bc4465aff7b57cf1c4bc75c86d00d6dad",
  2619. "reference": "b233b84bc4465aff7b57cf1c4bc75c86d00d6dad",
  2620. "shasum": ""
  2621. },
  2622. "require": {
  2623. "php": ">=7.3"
  2624. },
  2625. "require-dev": {
  2626. "phpunit/phpunit": "^9.5"
  2627. },
  2628. "type": "library",
  2629. "extra": {
  2630. "branch-alias": {
  2631. "dev-master": "3.0-dev"
  2632. }
  2633. },
  2634. "autoload": {
  2635. "classmap": [
  2636. "src/"
  2637. ]
  2638. },
  2639. "notification-url": "https://packagist.org/downloads/",
  2640. "license": [
  2641. "BSD-3-Clause"
  2642. ],
  2643. "authors": [
  2644. {
  2645. "name": "Sebastian Bergmann",
  2646. "email": "sebastian@phpunit.de",
  2647. "role": "lead"
  2648. }
  2649. ],
  2650. "description": "Collection of value objects that represent the types of the PHP type system",
  2651. "homepage": "https://github.com/sebastianbergmann/type",
  2652. "time": "2022-03-15T09:54:48+00:00"
  2653. },
  2654. {
  2655. "name": "sebastian/version",
  2656. "version": "3.0.2",
  2657. "source": {
  2658. "type": "git",
  2659. "url": "https://github.com/sebastianbergmann/version.git",
  2660. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  2661. },
  2662. "dist": {
  2663. "type": "zip",
  2664. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  2665. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  2666. "shasum": ""
  2667. },
  2668. "require": {
  2669. "php": ">=7.3"
  2670. },
  2671. "type": "library",
  2672. "extra": {
  2673. "branch-alias": {
  2674. "dev-master": "3.0-dev"
  2675. }
  2676. },
  2677. "autoload": {
  2678. "classmap": [
  2679. "src/"
  2680. ]
  2681. },
  2682. "notification-url": "https://packagist.org/downloads/",
  2683. "license": [
  2684. "BSD-3-Clause"
  2685. ],
  2686. "authors": [
  2687. {
  2688. "name": "Sebastian Bergmann",
  2689. "email": "sebastian@phpunit.de",
  2690. "role": "lead"
  2691. }
  2692. ],
  2693. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  2694. "homepage": "https://github.com/sebastianbergmann/version",
  2695. "time": "2020-09-28T06:39:44+00:00"
  2696. },
  2697. {
  2698. "name": "theseer/tokenizer",
  2699. "version": "1.2.1",
  2700. "source": {
  2701. "type": "git",
  2702. "url": "https://github.com/theseer/tokenizer.git",
  2703. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  2704. },
  2705. "dist": {
  2706. "type": "zip",
  2707. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  2708. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  2709. "shasum": ""
  2710. },
  2711. "require": {
  2712. "ext-dom": "*",
  2713. "ext-tokenizer": "*",
  2714. "ext-xmlwriter": "*",
  2715. "php": "^7.2 || ^8.0"
  2716. },
  2717. "type": "library",
  2718. "autoload": {
  2719. "classmap": [
  2720. "src/"
  2721. ]
  2722. },
  2723. "notification-url": "https://packagist.org/downloads/",
  2724. "license": [
  2725. "BSD-3-Clause"
  2726. ],
  2727. "authors": [
  2728. {
  2729. "name": "Arne Blankerts",
  2730. "email": "arne@blankerts.de",
  2731. "role": "Developer"
  2732. }
  2733. ],
  2734. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  2735. "time": "2021-07-28T10:34:58+00:00"
  2736. },
  2737. {
  2738. "name": "webmozart/assert",
  2739. "version": "1.11.0",
  2740. "source": {
  2741. "type": "git",
  2742. "url": "https://github.com/webmozarts/assert.git",
  2743. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  2744. },
  2745. "dist": {
  2746. "type": "zip",
  2747. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  2748. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  2749. "shasum": ""
  2750. },
  2751. "require": {
  2752. "ext-ctype": "*",
  2753. "php": "^7.2 || ^8.0"
  2754. },
  2755. "conflict": {
  2756. "phpstan/phpstan": "<0.12.20",
  2757. "vimeo/psalm": "<4.6.1 || 4.6.2"
  2758. },
  2759. "require-dev": {
  2760. "phpunit/phpunit": "^8.5.13"
  2761. },
  2762. "type": "library",
  2763. "extra": {
  2764. "branch-alias": {
  2765. "dev-master": "1.10-dev"
  2766. }
  2767. },
  2768. "autoload": {
  2769. "psr-4": {
  2770. "Webmozart\\Assert\\": "src/"
  2771. }
  2772. },
  2773. "notification-url": "https://packagist.org/downloads/",
  2774. "license": [
  2775. "MIT"
  2776. ],
  2777. "authors": [
  2778. {
  2779. "name": "Bernhard Schussek",
  2780. "email": "bschussek@gmail.com"
  2781. }
  2782. ],
  2783. "description": "Assertions to validate method input/output with nice error messages.",
  2784. "keywords": [
  2785. "assert",
  2786. "check",
  2787. "validate"
  2788. ],
  2789. "time": "2022-06-03T18:03:27+00:00"
  2790. }
  2791. ],
  2792. "aliases": [],
  2793. "minimum-stability": "stable",
  2794. "stability-flags": [],
  2795. "prefer-stable": false,
  2796. "prefer-lowest": false,
  2797. "platform": [],
  2798. "platform-dev": []
  2799. }