You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

composer.lock 106KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027
  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": "4970547e139d7ea77cd8b6d38c729084",
  8. "packages": [],
  9. "packages-dev": [
  10. {
  11. "name": "amphp/amp",
  12. "version": "v2.5.2",
  13. "source": {
  14. "type": "git",
  15. "url": "https://github.com/amphp/amp.git",
  16. "reference": "efca2b32a7580087adb8aabbff6be1dc1bb924a9"
  17. },
  18. "dist": {
  19. "type": "zip",
  20. "url": "https://api.github.com/repos/amphp/amp/zipball/efca2b32a7580087adb8aabbff6be1dc1bb924a9",
  21. "reference": "efca2b32a7580087adb8aabbff6be1dc1bb924a9",
  22. "shasum": ""
  23. },
  24. "require": {
  25. "php": ">=7"
  26. },
  27. "require-dev": {
  28. "amphp/php-cs-fixer-config": "dev-master",
  29. "amphp/phpunit-util": "^1",
  30. "ext-json": "*",
  31. "jetbrains/phpstorm-stubs": "^2019.3",
  32. "phpunit/phpunit": "^6.0.9 | ^7",
  33. "psalm/phar": "^3.11@dev",
  34. "react/promise": "^2"
  35. },
  36. "type": "library",
  37. "extra": {
  38. "branch-alias": {
  39. "dev-master": "2.x-dev"
  40. }
  41. },
  42. "autoload": {
  43. "psr-4": {
  44. "Amp\\": "lib"
  45. },
  46. "files": [
  47. "lib/functions.php",
  48. "lib/Internal/functions.php"
  49. ]
  50. },
  51. "notification-url": "https://packagist.org/downloads/",
  52. "license": [
  53. "MIT"
  54. ],
  55. "authors": [
  56. {
  57. "name": "Daniel Lowrey",
  58. "email": "rdlowrey@php.net"
  59. },
  60. {
  61. "name": "Aaron Piotrowski",
  62. "email": "aaron@trowski.com"
  63. },
  64. {
  65. "name": "Bob Weinand",
  66. "email": "bobwei9@hotmail.com"
  67. },
  68. {
  69. "name": "Niklas Keller",
  70. "email": "me@kelunik.com"
  71. }
  72. ],
  73. "description": "A non-blocking concurrency framework for PHP applications.",
  74. "homepage": "http://amphp.org/amp",
  75. "keywords": [
  76. "async",
  77. "asynchronous",
  78. "awaitable",
  79. "concurrency",
  80. "event",
  81. "event-loop",
  82. "future",
  83. "non-blocking",
  84. "promise"
  85. ],
  86. "support": {
  87. "irc": "irc://irc.freenode.org/amphp",
  88. "issues": "https://github.com/amphp/amp/issues",
  89. "source": "https://github.com/amphp/amp/tree/v2.5.2"
  90. },
  91. "funding": [
  92. {
  93. "url": "https://github.com/amphp",
  94. "type": "github"
  95. }
  96. ],
  97. "time": "2021-01-10T17:06:37+00:00"
  98. },
  99. {
  100. "name": "amphp/byte-stream",
  101. "version": "v1.8.0",
  102. "source": {
  103. "type": "git",
  104. "url": "https://github.com/amphp/byte-stream.git",
  105. "reference": "f0c20cf598a958ba2aa8c6e5a71c697d652c7088"
  106. },
  107. "dist": {
  108. "type": "zip",
  109. "url": "https://api.github.com/repos/amphp/byte-stream/zipball/f0c20cf598a958ba2aa8c6e5a71c697d652c7088",
  110. "reference": "f0c20cf598a958ba2aa8c6e5a71c697d652c7088",
  111. "shasum": ""
  112. },
  113. "require": {
  114. "amphp/amp": "^2",
  115. "php": ">=7.1"
  116. },
  117. "require-dev": {
  118. "amphp/php-cs-fixer-config": "dev-master",
  119. "amphp/phpunit-util": "^1.4",
  120. "friendsofphp/php-cs-fixer": "^2.3",
  121. "jetbrains/phpstorm-stubs": "^2019.3",
  122. "phpunit/phpunit": "^6 || ^7 || ^8",
  123. "psalm/phar": "^3.11.4"
  124. },
  125. "type": "library",
  126. "extra": {
  127. "branch-alias": {
  128. "dev-master": "1.x-dev"
  129. }
  130. },
  131. "autoload": {
  132. "psr-4": {
  133. "Amp\\ByteStream\\": "lib"
  134. },
  135. "files": [
  136. "lib/functions.php"
  137. ]
  138. },
  139. "notification-url": "https://packagist.org/downloads/",
  140. "license": [
  141. "MIT"
  142. ],
  143. "authors": [
  144. {
  145. "name": "Aaron Piotrowski",
  146. "email": "aaron@trowski.com"
  147. },
  148. {
  149. "name": "Niklas Keller",
  150. "email": "me@kelunik.com"
  151. }
  152. ],
  153. "description": "A stream abstraction to make working with non-blocking I/O simple.",
  154. "homepage": "http://amphp.org/byte-stream",
  155. "keywords": [
  156. "amp",
  157. "amphp",
  158. "async",
  159. "io",
  160. "non-blocking",
  161. "stream"
  162. ],
  163. "support": {
  164. "irc": "irc://irc.freenode.org/amphp",
  165. "issues": "https://github.com/amphp/byte-stream/issues",
  166. "source": "https://github.com/amphp/byte-stream/tree/master"
  167. },
  168. "time": "2020-06-29T18:35:05+00:00"
  169. },
  170. {
  171. "name": "composer/package-versions-deprecated",
  172. "version": "1.11.99.1",
  173. "source": {
  174. "type": "git",
  175. "url": "https://github.com/composer/package-versions-deprecated.git",
  176. "reference": "7413f0b55a051e89485c5cb9f765fe24bb02a7b6"
  177. },
  178. "dist": {
  179. "type": "zip",
  180. "url": "https://api.github.com/repos/composer/package-versions-deprecated/zipball/7413f0b55a051e89485c5cb9f765fe24bb02a7b6",
  181. "reference": "7413f0b55a051e89485c5cb9f765fe24bb02a7b6",
  182. "shasum": ""
  183. },
  184. "require": {
  185. "composer-plugin-api": "^1.1.0 || ^2.0",
  186. "php": "^7 || ^8"
  187. },
  188. "replace": {
  189. "ocramius/package-versions": "1.11.99"
  190. },
  191. "require-dev": {
  192. "composer/composer": "^1.9.3 || ^2.0@dev",
  193. "ext-zip": "^1.13",
  194. "phpunit/phpunit": "^6.5 || ^7"
  195. },
  196. "type": "composer-plugin",
  197. "extra": {
  198. "class": "PackageVersions\\Installer",
  199. "branch-alias": {
  200. "dev-master": "1.x-dev"
  201. }
  202. },
  203. "autoload": {
  204. "psr-4": {
  205. "PackageVersions\\": "src/PackageVersions"
  206. }
  207. },
  208. "notification-url": "https://packagist.org/downloads/",
  209. "license": [
  210. "MIT"
  211. ],
  212. "authors": [
  213. {
  214. "name": "Marco Pivetta",
  215. "email": "ocramius@gmail.com"
  216. },
  217. {
  218. "name": "Jordi Boggiano",
  219. "email": "j.boggiano@seld.be"
  220. }
  221. ],
  222. "description": "Composer plugin that provides efficient querying for installed package versions (no runtime IO)",
  223. "support": {
  224. "issues": "https://github.com/composer/package-versions-deprecated/issues",
  225. "source": "https://github.com/composer/package-versions-deprecated/tree/1.11.99.1"
  226. },
  227. "funding": [
  228. {
  229. "url": "https://packagist.com",
  230. "type": "custom"
  231. },
  232. {
  233. "url": "https://github.com/composer",
  234. "type": "github"
  235. },
  236. {
  237. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  238. "type": "tidelift"
  239. }
  240. ],
  241. "time": "2020-11-11T10:22:58+00:00"
  242. },
  243. {
  244. "name": "composer/semver",
  245. "version": "3.2.4",
  246. "source": {
  247. "type": "git",
  248. "url": "https://github.com/composer/semver.git",
  249. "reference": "a02fdf930a3c1c3ed3a49b5f63859c0c20e10464"
  250. },
  251. "dist": {
  252. "type": "zip",
  253. "url": "https://api.github.com/repos/composer/semver/zipball/a02fdf930a3c1c3ed3a49b5f63859c0c20e10464",
  254. "reference": "a02fdf930a3c1c3ed3a49b5f63859c0c20e10464",
  255. "shasum": ""
  256. },
  257. "require": {
  258. "php": "^5.3.2 || ^7.0 || ^8.0"
  259. },
  260. "require-dev": {
  261. "phpstan/phpstan": "^0.12.54",
  262. "symfony/phpunit-bridge": "^4.2 || ^5"
  263. },
  264. "type": "library",
  265. "extra": {
  266. "branch-alias": {
  267. "dev-main": "3.x-dev"
  268. }
  269. },
  270. "autoload": {
  271. "psr-4": {
  272. "Composer\\Semver\\": "src"
  273. }
  274. },
  275. "notification-url": "https://packagist.org/downloads/",
  276. "license": [
  277. "MIT"
  278. ],
  279. "authors": [
  280. {
  281. "name": "Nils Adermann",
  282. "email": "naderman@naderman.de",
  283. "homepage": "http://www.naderman.de"
  284. },
  285. {
  286. "name": "Jordi Boggiano",
  287. "email": "j.boggiano@seld.be",
  288. "homepage": "http://seld.be"
  289. },
  290. {
  291. "name": "Rob Bast",
  292. "email": "rob.bast@gmail.com",
  293. "homepage": "http://robbast.nl"
  294. }
  295. ],
  296. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  297. "keywords": [
  298. "semantic",
  299. "semver",
  300. "validation",
  301. "versioning"
  302. ],
  303. "support": {
  304. "irc": "irc://irc.freenode.org/composer",
  305. "issues": "https://github.com/composer/semver/issues",
  306. "source": "https://github.com/composer/semver/tree/3.2.4"
  307. },
  308. "funding": [
  309. {
  310. "url": "https://packagist.com",
  311. "type": "custom"
  312. },
  313. {
  314. "url": "https://github.com/composer",
  315. "type": "github"
  316. },
  317. {
  318. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  319. "type": "tidelift"
  320. }
  321. ],
  322. "time": "2020-11-13T08:59:24+00:00"
  323. },
  324. {
  325. "name": "composer/xdebug-handler",
  326. "version": "1.4.5",
  327. "source": {
  328. "type": "git",
  329. "url": "https://github.com/composer/xdebug-handler.git",
  330. "reference": "f28d44c286812c714741478d968104c5e604a1d4"
  331. },
  332. "dist": {
  333. "type": "zip",
  334. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/f28d44c286812c714741478d968104c5e604a1d4",
  335. "reference": "f28d44c286812c714741478d968104c5e604a1d4",
  336. "shasum": ""
  337. },
  338. "require": {
  339. "php": "^5.3.2 || ^7.0 || ^8.0",
  340. "psr/log": "^1.0"
  341. },
  342. "require-dev": {
  343. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8"
  344. },
  345. "type": "library",
  346. "autoload": {
  347. "psr-4": {
  348. "Composer\\XdebugHandler\\": "src"
  349. }
  350. },
  351. "notification-url": "https://packagist.org/downloads/",
  352. "license": [
  353. "MIT"
  354. ],
  355. "authors": [
  356. {
  357. "name": "John Stevenson",
  358. "email": "john-stevenson@blueyonder.co.uk"
  359. }
  360. ],
  361. "description": "Restarts a process without Xdebug.",
  362. "keywords": [
  363. "Xdebug",
  364. "performance"
  365. ],
  366. "support": {
  367. "irc": "irc://irc.freenode.org/composer",
  368. "issues": "https://github.com/composer/xdebug-handler/issues",
  369. "source": "https://github.com/composer/xdebug-handler/tree/1.4.5"
  370. },
  371. "funding": [
  372. {
  373. "url": "https://packagist.com",
  374. "type": "custom"
  375. },
  376. {
  377. "url": "https://github.com/composer",
  378. "type": "github"
  379. },
  380. {
  381. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  382. "type": "tidelift"
  383. }
  384. ],
  385. "time": "2020-11-13T08:04:11+00:00"
  386. },
  387. {
  388. "name": "dnoegel/php-xdg-base-dir",
  389. "version": "v0.1.1",
  390. "source": {
  391. "type": "git",
  392. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  393. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd"
  394. },
  395. "dist": {
  396. "type": "zip",
  397. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  398. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  399. "shasum": ""
  400. },
  401. "require": {
  402. "php": ">=5.3.2"
  403. },
  404. "require-dev": {
  405. "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
  406. },
  407. "type": "library",
  408. "autoload": {
  409. "psr-4": {
  410. "XdgBaseDir\\": "src/"
  411. }
  412. },
  413. "notification-url": "https://packagist.org/downloads/",
  414. "license": [
  415. "MIT"
  416. ],
  417. "description": "implementation of xdg base directory specification for php",
  418. "support": {
  419. "issues": "https://github.com/dnoegel/php-xdg-base-dir/issues",
  420. "source": "https://github.com/dnoegel/php-xdg-base-dir/tree/v0.1.1"
  421. },
  422. "time": "2019-12-04T15:06:13+00:00"
  423. },
  424. {
  425. "name": "doctrine/annotations",
  426. "version": "1.11.1",
  427. "source": {
  428. "type": "git",
  429. "url": "https://github.com/doctrine/annotations.git",
  430. "reference": "ce77a7ba1770462cd705a91a151b6c3746f9c6ad"
  431. },
  432. "dist": {
  433. "type": "zip",
  434. "url": "https://api.github.com/repos/doctrine/annotations/zipball/ce77a7ba1770462cd705a91a151b6c3746f9c6ad",
  435. "reference": "ce77a7ba1770462cd705a91a151b6c3746f9c6ad",
  436. "shasum": ""
  437. },
  438. "require": {
  439. "doctrine/lexer": "1.*",
  440. "ext-tokenizer": "*",
  441. "php": "^7.1 || ^8.0"
  442. },
  443. "require-dev": {
  444. "doctrine/cache": "1.*",
  445. "doctrine/coding-standard": "^6.0 || ^8.1",
  446. "phpstan/phpstan": "^0.12.20",
  447. "phpunit/phpunit": "^7.5 || ^9.1.5"
  448. },
  449. "type": "library",
  450. "extra": {
  451. "branch-alias": {
  452. "dev-master": "1.11.x-dev"
  453. }
  454. },
  455. "autoload": {
  456. "psr-4": {
  457. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  458. }
  459. },
  460. "notification-url": "https://packagist.org/downloads/",
  461. "license": [
  462. "MIT"
  463. ],
  464. "authors": [
  465. {
  466. "name": "Guilherme Blanco",
  467. "email": "guilhermeblanco@gmail.com"
  468. },
  469. {
  470. "name": "Roman Borschel",
  471. "email": "roman@code-factory.org"
  472. },
  473. {
  474. "name": "Benjamin Eberlei",
  475. "email": "kontakt@beberlei.de"
  476. },
  477. {
  478. "name": "Jonathan Wage",
  479. "email": "jonwage@gmail.com"
  480. },
  481. {
  482. "name": "Johannes Schmitt",
  483. "email": "schmittjoh@gmail.com"
  484. }
  485. ],
  486. "description": "Docblock Annotations Parser",
  487. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  488. "keywords": [
  489. "annotations",
  490. "docblock",
  491. "parser"
  492. ],
  493. "time": "2020-10-26T10:28:16+00:00"
  494. },
  495. {
  496. "name": "doctrine/lexer",
  497. "version": "1.2.1",
  498. "source": {
  499. "type": "git",
  500. "url": "https://github.com/doctrine/lexer.git",
  501. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  502. },
  503. "dist": {
  504. "type": "zip",
  505. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  506. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  507. "shasum": ""
  508. },
  509. "require": {
  510. "php": "^7.2 || ^8.0"
  511. },
  512. "require-dev": {
  513. "doctrine/coding-standard": "^6.0",
  514. "phpstan/phpstan": "^0.11.8",
  515. "phpunit/phpunit": "^8.2"
  516. },
  517. "type": "library",
  518. "extra": {
  519. "branch-alias": {
  520. "dev-master": "1.2.x-dev"
  521. }
  522. },
  523. "autoload": {
  524. "psr-4": {
  525. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  526. }
  527. },
  528. "notification-url": "https://packagist.org/downloads/",
  529. "license": [
  530. "MIT"
  531. ],
  532. "authors": [
  533. {
  534. "name": "Guilherme Blanco",
  535. "email": "guilhermeblanco@gmail.com"
  536. },
  537. {
  538. "name": "Roman Borschel",
  539. "email": "roman@code-factory.org"
  540. },
  541. {
  542. "name": "Johannes Schmitt",
  543. "email": "schmittjoh@gmail.com"
  544. }
  545. ],
  546. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  547. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  548. "keywords": [
  549. "annotations",
  550. "docblock",
  551. "lexer",
  552. "parser",
  553. "php"
  554. ],
  555. "funding": [
  556. {
  557. "url": "https://www.doctrine-project.org/sponsorship.html",
  558. "type": "custom"
  559. },
  560. {
  561. "url": "https://www.patreon.com/phpdoctrine",
  562. "type": "patreon"
  563. },
  564. {
  565. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  566. "type": "tidelift"
  567. }
  568. ],
  569. "time": "2020-05-25T17:44:05+00:00"
  570. },
  571. {
  572. "name": "felixfbecker/advanced-json-rpc",
  573. "version": "v3.2.0",
  574. "source": {
  575. "type": "git",
  576. "url": "https://github.com/felixfbecker/php-advanced-json-rpc.git",
  577. "reference": "06f0b06043c7438959dbdeed8bb3f699a19be22e"
  578. },
  579. "dist": {
  580. "type": "zip",
  581. "url": "https://api.github.com/repos/felixfbecker/php-advanced-json-rpc/zipball/06f0b06043c7438959dbdeed8bb3f699a19be22e",
  582. "reference": "06f0b06043c7438959dbdeed8bb3f699a19be22e",
  583. "shasum": ""
  584. },
  585. "require": {
  586. "netresearch/jsonmapper": "^1.0 || ^2.0",
  587. "php": "^7.1 || ^8.0",
  588. "phpdocumentor/reflection-docblock": "^4.3.4 || ^5.0.0"
  589. },
  590. "require-dev": {
  591. "phpunit/phpunit": "^7.0 || ^8.0"
  592. },
  593. "type": "library",
  594. "autoload": {
  595. "psr-4": {
  596. "AdvancedJsonRpc\\": "lib/"
  597. }
  598. },
  599. "notification-url": "https://packagist.org/downloads/",
  600. "license": [
  601. "ISC"
  602. ],
  603. "authors": [
  604. {
  605. "name": "Felix Becker",
  606. "email": "felix.b@outlook.com"
  607. }
  608. ],
  609. "description": "A more advanced JSONRPC implementation",
  610. "support": {
  611. "issues": "https://github.com/felixfbecker/php-advanced-json-rpc/issues",
  612. "source": "https://github.com/felixfbecker/php-advanced-json-rpc/tree/v3.2.0"
  613. },
  614. "time": "2021-01-10T17:48:47+00:00"
  615. },
  616. {
  617. "name": "felixfbecker/language-server-protocol",
  618. "version": "1.5.1",
  619. "source": {
  620. "type": "git",
  621. "url": "https://github.com/felixfbecker/php-language-server-protocol.git",
  622. "reference": "9d846d1f5cf101deee7a61c8ba7caa0a975cd730"
  623. },
  624. "dist": {
  625. "type": "zip",
  626. "url": "https://api.github.com/repos/felixfbecker/php-language-server-protocol/zipball/9d846d1f5cf101deee7a61c8ba7caa0a975cd730",
  627. "reference": "9d846d1f5cf101deee7a61c8ba7caa0a975cd730",
  628. "shasum": ""
  629. },
  630. "require": {
  631. "php": ">=7.1"
  632. },
  633. "require-dev": {
  634. "phpstan/phpstan": "*",
  635. "squizlabs/php_codesniffer": "^3.1",
  636. "vimeo/psalm": "^4.0"
  637. },
  638. "type": "library",
  639. "extra": {
  640. "branch-alias": {
  641. "dev-master": "1.x-dev"
  642. }
  643. },
  644. "autoload": {
  645. "psr-4": {
  646. "LanguageServerProtocol\\": "src/"
  647. }
  648. },
  649. "notification-url": "https://packagist.org/downloads/",
  650. "license": [
  651. "ISC"
  652. ],
  653. "authors": [
  654. {
  655. "name": "Felix Becker",
  656. "email": "felix.b@outlook.com"
  657. }
  658. ],
  659. "description": "PHP classes for the Language Server Protocol",
  660. "keywords": [
  661. "language",
  662. "microsoft",
  663. "php",
  664. "server"
  665. ],
  666. "support": {
  667. "issues": "https://github.com/felixfbecker/php-language-server-protocol/issues",
  668. "source": "https://github.com/felixfbecker/php-language-server-protocol/tree/1.5.1"
  669. },
  670. "time": "2021-02-22T14:02:09+00:00"
  671. },
  672. {
  673. "name": "friendsofphp/php-cs-fixer",
  674. "version": "v2.18.2",
  675. "source": {
  676. "type": "git",
  677. "url": "https://github.com/FriendsOfPHP/PHP-CS-Fixer.git",
  678. "reference": "18f8c9d184ba777380794a389fabc179896ba913"
  679. },
  680. "dist": {
  681. "type": "zip",
  682. "url": "https://api.github.com/repos/FriendsOfPHP/PHP-CS-Fixer/zipball/18f8c9d184ba777380794a389fabc179896ba913",
  683. "reference": "18f8c9d184ba777380794a389fabc179896ba913",
  684. "shasum": ""
  685. },
  686. "require": {
  687. "composer/semver": "^1.4 || ^2.0 || ^3.0",
  688. "composer/xdebug-handler": "^1.2",
  689. "doctrine/annotations": "^1.2",
  690. "ext-json": "*",
  691. "ext-tokenizer": "*",
  692. "php": "^5.6 || ^7.0 || ^8.0",
  693. "php-cs-fixer/diff": "^1.3",
  694. "symfony/console": "^3.4.43 || ^4.1.6 || ^5.0",
  695. "symfony/event-dispatcher": "^3.0 || ^4.0 || ^5.0",
  696. "symfony/filesystem": "^3.0 || ^4.0 || ^5.0",
  697. "symfony/finder": "^3.0 || ^4.0 || ^5.0",
  698. "symfony/options-resolver": "^3.0 || ^4.0 || ^5.0",
  699. "symfony/polyfill-php70": "^1.0",
  700. "symfony/polyfill-php72": "^1.4",
  701. "symfony/process": "^3.0 || ^4.0 || ^5.0",
  702. "symfony/stopwatch": "^3.0 || ^4.0 || ^5.0"
  703. },
  704. "require-dev": {
  705. "justinrainbow/json-schema": "^5.0",
  706. "keradus/cli-executor": "^1.4",
  707. "mikey179/vfsstream": "^1.6",
  708. "php-coveralls/php-coveralls": "^2.4.2",
  709. "php-cs-fixer/accessible-object": "^1.0",
  710. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.2",
  711. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.2.1",
  712. "phpspec/prophecy-phpunit": "^1.1 || ^2.0",
  713. "phpunit/phpunit": "^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.13 || ^9.5",
  714. "phpunitgoodpractices/polyfill": "^1.5",
  715. "phpunitgoodpractices/traits": "^1.9.1",
  716. "sanmai/phpunit-legacy-adapter": "^6.4 || ^8.2.1",
  717. "symfony/phpunit-bridge": "^5.2.1",
  718. "symfony/yaml": "^3.0 || ^4.0 || ^5.0"
  719. },
  720. "suggest": {
  721. "ext-dom": "For handling output formats in XML",
  722. "ext-mbstring": "For handling non-UTF8 characters.",
  723. "php-cs-fixer/phpunit-constraint-isidenticalstring": "For IsIdenticalString constraint.",
  724. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "For XmlMatchesXsd constraint.",
  725. "symfony/polyfill-mbstring": "When enabling `ext-mbstring` is not possible."
  726. },
  727. "bin": [
  728. "php-cs-fixer"
  729. ],
  730. "type": "application",
  731. "autoload": {
  732. "psr-4": {
  733. "PhpCsFixer\\": "src/"
  734. },
  735. "classmap": [
  736. "tests/Test/AbstractFixerTestCase.php",
  737. "tests/Test/AbstractIntegrationCaseFactory.php",
  738. "tests/Test/AbstractIntegrationTestCase.php",
  739. "tests/Test/Assert/AssertTokensTrait.php",
  740. "tests/Test/IntegrationCase.php",
  741. "tests/Test/IntegrationCaseFactory.php",
  742. "tests/Test/IntegrationCaseFactoryInterface.php",
  743. "tests/Test/InternalIntegrationCaseFactory.php",
  744. "tests/Test/IsIdenticalConstraint.php",
  745. "tests/TestCase.php"
  746. ]
  747. },
  748. "notification-url": "https://packagist.org/downloads/",
  749. "license": [
  750. "MIT"
  751. ],
  752. "authors": [
  753. {
  754. "name": "Fabien Potencier",
  755. "email": "fabien@symfony.com"
  756. },
  757. {
  758. "name": "Dariusz Rumiński",
  759. "email": "dariusz.ruminski@gmail.com"
  760. }
  761. ],
  762. "description": "A tool to automatically fix PHP code style",
  763. "support": {
  764. "issues": "https://github.com/FriendsOfPHP/PHP-CS-Fixer/issues",
  765. "source": "https://github.com/FriendsOfPHP/PHP-CS-Fixer/tree/v2.18.2"
  766. },
  767. "funding": [
  768. {
  769. "url": "https://github.com/keradus",
  770. "type": "github"
  771. }
  772. ],
  773. "time": "2021-01-26T00:22:21+00:00"
  774. },
  775. {
  776. "name": "netresearch/jsonmapper",
  777. "version": "v2.1.0",
  778. "source": {
  779. "type": "git",
  780. "url": "https://github.com/cweiske/jsonmapper.git",
  781. "reference": "e0f1e33a71587aca81be5cffbb9746510e1fe04e"
  782. },
  783. "dist": {
  784. "type": "zip",
  785. "url": "https://api.github.com/repos/cweiske/jsonmapper/zipball/e0f1e33a71587aca81be5cffbb9746510e1fe04e",
  786. "reference": "e0f1e33a71587aca81be5cffbb9746510e1fe04e",
  787. "shasum": ""
  788. },
  789. "require": {
  790. "ext-json": "*",
  791. "ext-pcre": "*",
  792. "ext-reflection": "*",
  793. "ext-spl": "*",
  794. "php": ">=5.6"
  795. },
  796. "require-dev": {
  797. "phpunit/phpunit": "~4.8.35 || ~5.7 || ~6.4 || ~7.0",
  798. "squizlabs/php_codesniffer": "~3.5"
  799. },
  800. "type": "library",
  801. "autoload": {
  802. "psr-0": {
  803. "JsonMapper": "src/"
  804. }
  805. },
  806. "notification-url": "https://packagist.org/downloads/",
  807. "license": [
  808. "OSL-3.0"
  809. ],
  810. "authors": [
  811. {
  812. "name": "Christian Weiske",
  813. "email": "cweiske@cweiske.de",
  814. "homepage": "http://github.com/cweiske/jsonmapper/",
  815. "role": "Developer"
  816. }
  817. ],
  818. "description": "Map nested JSON structures onto PHP classes",
  819. "support": {
  820. "email": "cweiske@cweiske.de",
  821. "issues": "https://github.com/cweiske/jsonmapper/issues",
  822. "source": "https://github.com/cweiske/jsonmapper/tree/master"
  823. },
  824. "time": "2020-04-16T18:48:43+00:00"
  825. },
  826. {
  827. "name": "nextcloud/coding-standard",
  828. "version": "v0.5.0",
  829. "source": {
  830. "type": "git",
  831. "url": "https://github.com/nextcloud/coding-standard.git",
  832. "reference": "742ed895ae76c10daf95e08488cfb3f554199f40"
  833. },
  834. "dist": {
  835. "type": "zip",
  836. "url": "https://api.github.com/repos/nextcloud/coding-standard/zipball/742ed895ae76c10daf95e08488cfb3f554199f40",
  837. "reference": "742ed895ae76c10daf95e08488cfb3f554199f40",
  838. "shasum": ""
  839. },
  840. "require": {
  841. "friendsofphp/php-cs-fixer": "^2.17",
  842. "php": "^7.2|^8.0"
  843. },
  844. "type": "library",
  845. "autoload": {
  846. "psr-4": {
  847. "Nextcloud\\CodingStandard\\": "src"
  848. }
  849. },
  850. "notification-url": "https://packagist.org/downloads/",
  851. "license": [
  852. "MIT"
  853. ],
  854. "authors": [
  855. {
  856. "name": "Christoph Wurst",
  857. "email": "christoph@winzerhof-wurst.at"
  858. }
  859. ],
  860. "description": "Nextcloud coding standards for the php cs fixer",
  861. "time": "2021-01-11T14:15:58+00:00"
  862. },
  863. {
  864. "name": "nikic/php-parser",
  865. "version": "v4.10.4",
  866. "source": {
  867. "type": "git",
  868. "url": "https://github.com/nikic/PHP-Parser.git",
  869. "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e"
  870. },
  871. "dist": {
  872. "type": "zip",
  873. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/c6d052fc58cb876152f89f532b95a8d7907e7f0e",
  874. "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e",
  875. "shasum": ""
  876. },
  877. "require": {
  878. "ext-tokenizer": "*",
  879. "php": ">=7.0"
  880. },
  881. "require-dev": {
  882. "ircmaxell/php-yacc": "^0.0.7",
  883. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  884. },
  885. "bin": [
  886. "bin/php-parse"
  887. ],
  888. "type": "library",
  889. "extra": {
  890. "branch-alias": {
  891. "dev-master": "4.9-dev"
  892. }
  893. },
  894. "autoload": {
  895. "psr-4": {
  896. "PhpParser\\": "lib/PhpParser"
  897. }
  898. },
  899. "notification-url": "https://packagist.org/downloads/",
  900. "license": [
  901. "BSD-3-Clause"
  902. ],
  903. "authors": [
  904. {
  905. "name": "Nikita Popov"
  906. }
  907. ],
  908. "description": "A PHP parser written in PHP",
  909. "keywords": [
  910. "parser",
  911. "php"
  912. ],
  913. "support": {
  914. "issues": "https://github.com/nikic/PHP-Parser/issues",
  915. "source": "https://github.com/nikic/PHP-Parser/tree/v4.10.4"
  916. },
  917. "time": "2020-12-20T10:01:03+00:00"
  918. },
  919. {
  920. "name": "openlss/lib-array2xml",
  921. "version": "1.0.0",
  922. "source": {
  923. "type": "git",
  924. "url": "https://github.com/nullivex/lib-array2xml.git",
  925. "reference": "a91f18a8dfc69ffabe5f9b068bc39bb202c81d90"
  926. },
  927. "dist": {
  928. "type": "zip",
  929. "url": "https://api.github.com/repos/nullivex/lib-array2xml/zipball/a91f18a8dfc69ffabe5f9b068bc39bb202c81d90",
  930. "reference": "a91f18a8dfc69ffabe5f9b068bc39bb202c81d90",
  931. "shasum": ""
  932. },
  933. "require": {
  934. "php": ">=5.3.2"
  935. },
  936. "type": "library",
  937. "autoload": {
  938. "psr-0": {
  939. "LSS": ""
  940. }
  941. },
  942. "notification-url": "https://packagist.org/downloads/",
  943. "license": [
  944. "Apache-2.0"
  945. ],
  946. "authors": [
  947. {
  948. "name": "Bryan Tong",
  949. "email": "bryan@nullivex.com",
  950. "homepage": "https://www.nullivex.com"
  951. },
  952. {
  953. "name": "Tony Butler",
  954. "email": "spudz76@gmail.com",
  955. "homepage": "https://www.nullivex.com"
  956. }
  957. ],
  958. "description": "Array2XML conversion library credit to lalit.org",
  959. "homepage": "https://www.nullivex.com",
  960. "keywords": [
  961. "array",
  962. "array conversion",
  963. "xml",
  964. "xml conversion"
  965. ],
  966. "support": {
  967. "issues": "https://github.com/nullivex/lib-array2xml/issues",
  968. "source": "https://github.com/nullivex/lib-array2xml/tree/master"
  969. },
  970. "time": "2019-03-29T20:06:56+00:00"
  971. },
  972. {
  973. "name": "php-cs-fixer/diff",
  974. "version": "v1.3.1",
  975. "source": {
  976. "type": "git",
  977. "url": "https://github.com/PHP-CS-Fixer/diff.git",
  978. "reference": "dbd31aeb251639ac0b9e7e29405c1441907f5759"
  979. },
  980. "dist": {
  981. "type": "zip",
  982. "url": "https://api.github.com/repos/PHP-CS-Fixer/diff/zipball/dbd31aeb251639ac0b9e7e29405c1441907f5759",
  983. "reference": "dbd31aeb251639ac0b9e7e29405c1441907f5759",
  984. "shasum": ""
  985. },
  986. "require": {
  987. "php": "^5.6 || ^7.0 || ^8.0"
  988. },
  989. "require-dev": {
  990. "phpunit/phpunit": "^5.7.23 || ^6.4.3 || ^7.0",
  991. "symfony/process": "^3.3"
  992. },
  993. "type": "library",
  994. "autoload": {
  995. "classmap": [
  996. "src/"
  997. ]
  998. },
  999. "notification-url": "https://packagist.org/downloads/",
  1000. "license": [
  1001. "BSD-3-Clause"
  1002. ],
  1003. "authors": [
  1004. {
  1005. "name": "Sebastian Bergmann",
  1006. "email": "sebastian@phpunit.de"
  1007. },
  1008. {
  1009. "name": "Kore Nordmann",
  1010. "email": "mail@kore-nordmann.de"
  1011. },
  1012. {
  1013. "name": "SpacePossum"
  1014. }
  1015. ],
  1016. "description": "sebastian/diff v2 backport support for PHP5.6",
  1017. "homepage": "https://github.com/PHP-CS-Fixer",
  1018. "keywords": [
  1019. "diff"
  1020. ],
  1021. "time": "2020-10-14T08:39:05+00:00"
  1022. },
  1023. {
  1024. "name": "phpdocumentor/reflection-common",
  1025. "version": "2.2.0",
  1026. "source": {
  1027. "type": "git",
  1028. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  1029. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  1030. },
  1031. "dist": {
  1032. "type": "zip",
  1033. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  1034. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  1035. "shasum": ""
  1036. },
  1037. "require": {
  1038. "php": "^7.2 || ^8.0"
  1039. },
  1040. "type": "library",
  1041. "extra": {
  1042. "branch-alias": {
  1043. "dev-2.x": "2.x-dev"
  1044. }
  1045. },
  1046. "autoload": {
  1047. "psr-4": {
  1048. "phpDocumentor\\Reflection\\": "src/"
  1049. }
  1050. },
  1051. "notification-url": "https://packagist.org/downloads/",
  1052. "license": [
  1053. "MIT"
  1054. ],
  1055. "authors": [
  1056. {
  1057. "name": "Jaap van Otterdijk",
  1058. "email": "opensource@ijaap.nl"
  1059. }
  1060. ],
  1061. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  1062. "homepage": "http://www.phpdoc.org",
  1063. "keywords": [
  1064. "FQSEN",
  1065. "phpDocumentor",
  1066. "phpdoc",
  1067. "reflection",
  1068. "static analysis"
  1069. ],
  1070. "support": {
  1071. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  1072. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  1073. },
  1074. "time": "2020-06-27T09:03:43+00:00"
  1075. },
  1076. {
  1077. "name": "phpdocumentor/reflection-docblock",
  1078. "version": "5.2.2",
  1079. "source": {
  1080. "type": "git",
  1081. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  1082. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556"
  1083. },
  1084. "dist": {
  1085. "type": "zip",
  1086. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556",
  1087. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556",
  1088. "shasum": ""
  1089. },
  1090. "require": {
  1091. "ext-filter": "*",
  1092. "php": "^7.2 || ^8.0",
  1093. "phpdocumentor/reflection-common": "^2.2",
  1094. "phpdocumentor/type-resolver": "^1.3",
  1095. "webmozart/assert": "^1.9.1"
  1096. },
  1097. "require-dev": {
  1098. "mockery/mockery": "~1.3.2"
  1099. },
  1100. "type": "library",
  1101. "extra": {
  1102. "branch-alias": {
  1103. "dev-master": "5.x-dev"
  1104. }
  1105. },
  1106. "autoload": {
  1107. "psr-4": {
  1108. "phpDocumentor\\Reflection\\": "src"
  1109. }
  1110. },
  1111. "notification-url": "https://packagist.org/downloads/",
  1112. "license": [
  1113. "MIT"
  1114. ],
  1115. "authors": [
  1116. {
  1117. "name": "Mike van Riel",
  1118. "email": "me@mikevanriel.com"
  1119. },
  1120. {
  1121. "name": "Jaap van Otterdijk",
  1122. "email": "account@ijaap.nl"
  1123. }
  1124. ],
  1125. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  1126. "support": {
  1127. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  1128. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/master"
  1129. },
  1130. "time": "2020-09-03T19:13:55+00:00"
  1131. },
  1132. {
  1133. "name": "phpdocumentor/type-resolver",
  1134. "version": "1.4.0",
  1135. "source": {
  1136. "type": "git",
  1137. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  1138. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0"
  1139. },
  1140. "dist": {
  1141. "type": "zip",
  1142. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  1143. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  1144. "shasum": ""
  1145. },
  1146. "require": {
  1147. "php": "^7.2 || ^8.0",
  1148. "phpdocumentor/reflection-common": "^2.0"
  1149. },
  1150. "require-dev": {
  1151. "ext-tokenizer": "*"
  1152. },
  1153. "type": "library",
  1154. "extra": {
  1155. "branch-alias": {
  1156. "dev-1.x": "1.x-dev"
  1157. }
  1158. },
  1159. "autoload": {
  1160. "psr-4": {
  1161. "phpDocumentor\\Reflection\\": "src"
  1162. }
  1163. },
  1164. "notification-url": "https://packagist.org/downloads/",
  1165. "license": [
  1166. "MIT"
  1167. ],
  1168. "authors": [
  1169. {
  1170. "name": "Mike van Riel",
  1171. "email": "me@mikevanriel.com"
  1172. }
  1173. ],
  1174. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  1175. "support": {
  1176. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  1177. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.4.0"
  1178. },
  1179. "time": "2020-09-17T18:55:26+00:00"
  1180. },
  1181. {
  1182. "name": "psr/container",
  1183. "version": "1.1.1",
  1184. "source": {
  1185. "type": "git",
  1186. "url": "https://github.com/php-fig/container.git",
  1187. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
  1188. },
  1189. "dist": {
  1190. "type": "zip",
  1191. "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
  1192. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
  1193. "shasum": ""
  1194. },
  1195. "require": {
  1196. "php": ">=7.2.0"
  1197. },
  1198. "type": "library",
  1199. "autoload": {
  1200. "psr-4": {
  1201. "Psr\\Container\\": "src/"
  1202. }
  1203. },
  1204. "notification-url": "https://packagist.org/downloads/",
  1205. "license": [
  1206. "MIT"
  1207. ],
  1208. "authors": [
  1209. {
  1210. "name": "PHP-FIG",
  1211. "homepage": "https://www.php-fig.org/"
  1212. }
  1213. ],
  1214. "description": "Common Container Interface (PHP FIG PSR-11)",
  1215. "homepage": "https://github.com/php-fig/container",
  1216. "keywords": [
  1217. "PSR-11",
  1218. "container",
  1219. "container-interface",
  1220. "container-interop",
  1221. "psr"
  1222. ],
  1223. "support": {
  1224. "issues": "https://github.com/php-fig/container/issues",
  1225. "source": "https://github.com/php-fig/container/tree/1.1.1"
  1226. },
  1227. "time": "2021-03-05T17:36:06+00:00"
  1228. },
  1229. {
  1230. "name": "psr/event-dispatcher",
  1231. "version": "1.0.0",
  1232. "source": {
  1233. "type": "git",
  1234. "url": "https://github.com/php-fig/event-dispatcher.git",
  1235. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  1236. },
  1237. "dist": {
  1238. "type": "zip",
  1239. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  1240. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  1241. "shasum": ""
  1242. },
  1243. "require": {
  1244. "php": ">=7.2.0"
  1245. },
  1246. "type": "library",
  1247. "extra": {
  1248. "branch-alias": {
  1249. "dev-master": "1.0.x-dev"
  1250. }
  1251. },
  1252. "autoload": {
  1253. "psr-4": {
  1254. "Psr\\EventDispatcher\\": "src/"
  1255. }
  1256. },
  1257. "notification-url": "https://packagist.org/downloads/",
  1258. "license": [
  1259. "MIT"
  1260. ],
  1261. "authors": [
  1262. {
  1263. "name": "PHP-FIG",
  1264. "homepage": "http://www.php-fig.org/"
  1265. }
  1266. ],
  1267. "description": "Standard interfaces for event handling.",
  1268. "keywords": [
  1269. "events",
  1270. "psr",
  1271. "psr-14"
  1272. ],
  1273. "support": {
  1274. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  1275. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  1276. },
  1277. "time": "2019-01-08T18:20:26+00:00"
  1278. },
  1279. {
  1280. "name": "psr/log",
  1281. "version": "1.1.3",
  1282. "source": {
  1283. "type": "git",
  1284. "url": "https://github.com/php-fig/log.git",
  1285. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  1286. },
  1287. "dist": {
  1288. "type": "zip",
  1289. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  1290. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  1291. "shasum": ""
  1292. },
  1293. "require": {
  1294. "php": ">=5.3.0"
  1295. },
  1296. "type": "library",
  1297. "extra": {
  1298. "branch-alias": {
  1299. "dev-master": "1.1.x-dev"
  1300. }
  1301. },
  1302. "autoload": {
  1303. "psr-4": {
  1304. "Psr\\Log\\": "Psr/Log/"
  1305. }
  1306. },
  1307. "notification-url": "https://packagist.org/downloads/",
  1308. "license": [
  1309. "MIT"
  1310. ],
  1311. "authors": [
  1312. {
  1313. "name": "PHP-FIG",
  1314. "homepage": "http://www.php-fig.org/"
  1315. }
  1316. ],
  1317. "description": "Common interface for logging libraries",
  1318. "homepage": "https://github.com/php-fig/log",
  1319. "keywords": [
  1320. "log",
  1321. "psr",
  1322. "psr-3"
  1323. ],
  1324. "support": {
  1325. "source": "https://github.com/php-fig/log/tree/1.1.3"
  1326. },
  1327. "time": "2020-03-23T09:12:05+00:00"
  1328. },
  1329. {
  1330. "name": "sebastian/diff",
  1331. "version": "4.0.4",
  1332. "source": {
  1333. "type": "git",
  1334. "url": "https://github.com/sebastianbergmann/diff.git",
  1335. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  1336. },
  1337. "dist": {
  1338. "type": "zip",
  1339. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  1340. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  1341. "shasum": ""
  1342. },
  1343. "require": {
  1344. "php": ">=7.3"
  1345. },
  1346. "require-dev": {
  1347. "phpunit/phpunit": "^9.3",
  1348. "symfony/process": "^4.2 || ^5"
  1349. },
  1350. "type": "library",
  1351. "extra": {
  1352. "branch-alias": {
  1353. "dev-master": "4.0-dev"
  1354. }
  1355. },
  1356. "autoload": {
  1357. "classmap": [
  1358. "src/"
  1359. ]
  1360. },
  1361. "notification-url": "https://packagist.org/downloads/",
  1362. "license": [
  1363. "BSD-3-Clause"
  1364. ],
  1365. "authors": [
  1366. {
  1367. "name": "Sebastian Bergmann",
  1368. "email": "sebastian@phpunit.de"
  1369. },
  1370. {
  1371. "name": "Kore Nordmann",
  1372. "email": "mail@kore-nordmann.de"
  1373. }
  1374. ],
  1375. "description": "Diff implementation",
  1376. "homepage": "https://github.com/sebastianbergmann/diff",
  1377. "keywords": [
  1378. "diff",
  1379. "udiff",
  1380. "unidiff",
  1381. "unified diff"
  1382. ],
  1383. "support": {
  1384. "issues": "https://github.com/sebastianbergmann/diff/issues",
  1385. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  1386. },
  1387. "funding": [
  1388. {
  1389. "url": "https://github.com/sebastianbergmann",
  1390. "type": "github"
  1391. }
  1392. ],
  1393. "time": "2020-10-26T13:10:38+00:00"
  1394. },
  1395. {
  1396. "name": "symfony/console",
  1397. "version": "v5.2.4",
  1398. "source": {
  1399. "type": "git",
  1400. "url": "https://github.com/symfony/console.git",
  1401. "reference": "d6d0cc30d8c0fda4e7b213c20509b0159a8f4556"
  1402. },
  1403. "dist": {
  1404. "type": "zip",
  1405. "url": "https://api.github.com/repos/symfony/console/zipball/d6d0cc30d8c0fda4e7b213c20509b0159a8f4556",
  1406. "reference": "d6d0cc30d8c0fda4e7b213c20509b0159a8f4556",
  1407. "shasum": ""
  1408. },
  1409. "require": {
  1410. "php": ">=7.2.5",
  1411. "symfony/polyfill-mbstring": "~1.0",
  1412. "symfony/polyfill-php73": "^1.8",
  1413. "symfony/polyfill-php80": "^1.15",
  1414. "symfony/service-contracts": "^1.1|^2",
  1415. "symfony/string": "^5.1"
  1416. },
  1417. "conflict": {
  1418. "symfony/dependency-injection": "<4.4",
  1419. "symfony/dotenv": "<5.1",
  1420. "symfony/event-dispatcher": "<4.4",
  1421. "symfony/lock": "<4.4",
  1422. "symfony/process": "<4.4"
  1423. },
  1424. "provide": {
  1425. "psr/log-implementation": "1.0"
  1426. },
  1427. "require-dev": {
  1428. "psr/log": "~1.0",
  1429. "symfony/config": "^4.4|^5.0",
  1430. "symfony/dependency-injection": "^4.4|^5.0",
  1431. "symfony/event-dispatcher": "^4.4|^5.0",
  1432. "symfony/lock": "^4.4|^5.0",
  1433. "symfony/process": "^4.4|^5.0",
  1434. "symfony/var-dumper": "^4.4|^5.0"
  1435. },
  1436. "suggest": {
  1437. "psr/log": "For using the console logger",
  1438. "symfony/event-dispatcher": "",
  1439. "symfony/lock": "",
  1440. "symfony/process": ""
  1441. },
  1442. "type": "library",
  1443. "autoload": {
  1444. "psr-4": {
  1445. "Symfony\\Component\\Console\\": ""
  1446. },
  1447. "exclude-from-classmap": [
  1448. "/Tests/"
  1449. ]
  1450. },
  1451. "notification-url": "https://packagist.org/downloads/",
  1452. "license": [
  1453. "MIT"
  1454. ],
  1455. "authors": [
  1456. {
  1457. "name": "Fabien Potencier",
  1458. "email": "fabien@symfony.com"
  1459. },
  1460. {
  1461. "name": "Symfony Community",
  1462. "homepage": "https://symfony.com/contributors"
  1463. }
  1464. ],
  1465. "description": "Eases the creation of beautiful and testable command line interfaces",
  1466. "homepage": "https://symfony.com",
  1467. "keywords": [
  1468. "cli",
  1469. "command line",
  1470. "console",
  1471. "terminal"
  1472. ],
  1473. "support": {
  1474. "source": "https://github.com/symfony/console/tree/v5.2.4"
  1475. },
  1476. "funding": [
  1477. {
  1478. "url": "https://symfony.com/sponsor",
  1479. "type": "custom"
  1480. },
  1481. {
  1482. "url": "https://github.com/fabpot",
  1483. "type": "github"
  1484. },
  1485. {
  1486. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1487. "type": "tidelift"
  1488. }
  1489. ],
  1490. "time": "2021-02-23T10:08:49+00:00"
  1491. },
  1492. {
  1493. "name": "symfony/deprecation-contracts",
  1494. "version": "v2.2.0",
  1495. "source": {
  1496. "type": "git",
  1497. "url": "https://github.com/symfony/deprecation-contracts.git",
  1498. "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665"
  1499. },
  1500. "dist": {
  1501. "type": "zip",
  1502. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5fa56b4074d1ae755beb55617ddafe6f5d78f665",
  1503. "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665",
  1504. "shasum": ""
  1505. },
  1506. "require": {
  1507. "php": ">=7.1"
  1508. },
  1509. "type": "library",
  1510. "extra": {
  1511. "branch-alias": {
  1512. "dev-master": "2.2-dev"
  1513. },
  1514. "thanks": {
  1515. "name": "symfony/contracts",
  1516. "url": "https://github.com/symfony/contracts"
  1517. }
  1518. },
  1519. "autoload": {
  1520. "files": [
  1521. "function.php"
  1522. ]
  1523. },
  1524. "notification-url": "https://packagist.org/downloads/",
  1525. "license": [
  1526. "MIT"
  1527. ],
  1528. "authors": [
  1529. {
  1530. "name": "Nicolas Grekas",
  1531. "email": "p@tchwork.com"
  1532. },
  1533. {
  1534. "name": "Symfony Community",
  1535. "homepage": "https://symfony.com/contributors"
  1536. }
  1537. ],
  1538. "description": "A generic function and convention to trigger deprecation notices",
  1539. "homepage": "https://symfony.com",
  1540. "funding": [
  1541. {
  1542. "url": "https://symfony.com/sponsor",
  1543. "type": "custom"
  1544. },
  1545. {
  1546. "url": "https://github.com/fabpot",
  1547. "type": "github"
  1548. },
  1549. {
  1550. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1551. "type": "tidelift"
  1552. }
  1553. ],
  1554. "time": "2020-09-07T11:33:47+00:00"
  1555. },
  1556. {
  1557. "name": "symfony/event-dispatcher",
  1558. "version": "v5.2.1",
  1559. "source": {
  1560. "type": "git",
  1561. "url": "https://github.com/symfony/event-dispatcher.git",
  1562. "reference": "1c93f7a1dff592c252574c79a8635a8a80856042"
  1563. },
  1564. "dist": {
  1565. "type": "zip",
  1566. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/1c93f7a1dff592c252574c79a8635a8a80856042",
  1567. "reference": "1c93f7a1dff592c252574c79a8635a8a80856042",
  1568. "shasum": ""
  1569. },
  1570. "require": {
  1571. "php": ">=7.2.5",
  1572. "symfony/deprecation-contracts": "^2.1",
  1573. "symfony/event-dispatcher-contracts": "^2",
  1574. "symfony/polyfill-php80": "^1.15"
  1575. },
  1576. "conflict": {
  1577. "symfony/dependency-injection": "<4.4"
  1578. },
  1579. "provide": {
  1580. "psr/event-dispatcher-implementation": "1.0",
  1581. "symfony/event-dispatcher-implementation": "2.0"
  1582. },
  1583. "require-dev": {
  1584. "psr/log": "~1.0",
  1585. "symfony/config": "^4.4|^5.0",
  1586. "symfony/dependency-injection": "^4.4|^5.0",
  1587. "symfony/error-handler": "^4.4|^5.0",
  1588. "symfony/expression-language": "^4.4|^5.0",
  1589. "symfony/http-foundation": "^4.4|^5.0",
  1590. "symfony/service-contracts": "^1.1|^2",
  1591. "symfony/stopwatch": "^4.4|^5.0"
  1592. },
  1593. "suggest": {
  1594. "symfony/dependency-injection": "",
  1595. "symfony/http-kernel": ""
  1596. },
  1597. "type": "library",
  1598. "autoload": {
  1599. "psr-4": {
  1600. "Symfony\\Component\\EventDispatcher\\": ""
  1601. },
  1602. "exclude-from-classmap": [
  1603. "/Tests/"
  1604. ]
  1605. },
  1606. "notification-url": "https://packagist.org/downloads/",
  1607. "license": [
  1608. "MIT"
  1609. ],
  1610. "authors": [
  1611. {
  1612. "name": "Fabien Potencier",
  1613. "email": "fabien@symfony.com"
  1614. },
  1615. {
  1616. "name": "Symfony Community",
  1617. "homepage": "https://symfony.com/contributors"
  1618. }
  1619. ],
  1620. "description": "Symfony EventDispatcher Component",
  1621. "homepage": "https://symfony.com",
  1622. "funding": [
  1623. {
  1624. "url": "https://symfony.com/sponsor",
  1625. "type": "custom"
  1626. },
  1627. {
  1628. "url": "https://github.com/fabpot",
  1629. "type": "github"
  1630. },
  1631. {
  1632. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1633. "type": "tidelift"
  1634. }
  1635. ],
  1636. "time": "2020-12-18T08:03:05+00:00"
  1637. },
  1638. {
  1639. "name": "symfony/event-dispatcher-contracts",
  1640. "version": "v2.2.0",
  1641. "source": {
  1642. "type": "git",
  1643. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  1644. "reference": "0ba7d54483095a198fa51781bc608d17e84dffa2"
  1645. },
  1646. "dist": {
  1647. "type": "zip",
  1648. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/0ba7d54483095a198fa51781bc608d17e84dffa2",
  1649. "reference": "0ba7d54483095a198fa51781bc608d17e84dffa2",
  1650. "shasum": ""
  1651. },
  1652. "require": {
  1653. "php": ">=7.2.5",
  1654. "psr/event-dispatcher": "^1"
  1655. },
  1656. "suggest": {
  1657. "symfony/event-dispatcher-implementation": ""
  1658. },
  1659. "type": "library",
  1660. "extra": {
  1661. "branch-alias": {
  1662. "dev-master": "2.2-dev"
  1663. },
  1664. "thanks": {
  1665. "name": "symfony/contracts",
  1666. "url": "https://github.com/symfony/contracts"
  1667. }
  1668. },
  1669. "autoload": {
  1670. "psr-4": {
  1671. "Symfony\\Contracts\\EventDispatcher\\": ""
  1672. }
  1673. },
  1674. "notification-url": "https://packagist.org/downloads/",
  1675. "license": [
  1676. "MIT"
  1677. ],
  1678. "authors": [
  1679. {
  1680. "name": "Nicolas Grekas",
  1681. "email": "p@tchwork.com"
  1682. },
  1683. {
  1684. "name": "Symfony Community",
  1685. "homepage": "https://symfony.com/contributors"
  1686. }
  1687. ],
  1688. "description": "Generic abstractions related to dispatching event",
  1689. "homepage": "https://symfony.com",
  1690. "keywords": [
  1691. "abstractions",
  1692. "contracts",
  1693. "decoupling",
  1694. "interfaces",
  1695. "interoperability",
  1696. "standards"
  1697. ],
  1698. "support": {
  1699. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.2.0"
  1700. },
  1701. "funding": [
  1702. {
  1703. "url": "https://symfony.com/sponsor",
  1704. "type": "custom"
  1705. },
  1706. {
  1707. "url": "https://github.com/fabpot",
  1708. "type": "github"
  1709. },
  1710. {
  1711. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1712. "type": "tidelift"
  1713. }
  1714. ],
  1715. "time": "2020-09-07T11:33:47+00:00"
  1716. },
  1717. {
  1718. "name": "symfony/filesystem",
  1719. "version": "v5.2.1",
  1720. "source": {
  1721. "type": "git",
  1722. "url": "https://github.com/symfony/filesystem.git",
  1723. "reference": "fa8f8cab6b65e2d99a118e082935344c5ba8c60d"
  1724. },
  1725. "dist": {
  1726. "type": "zip",
  1727. "url": "https://api.github.com/repos/symfony/filesystem/zipball/fa8f8cab6b65e2d99a118e082935344c5ba8c60d",
  1728. "reference": "fa8f8cab6b65e2d99a118e082935344c5ba8c60d",
  1729. "shasum": ""
  1730. },
  1731. "require": {
  1732. "php": ">=7.2.5",
  1733. "symfony/polyfill-ctype": "~1.8"
  1734. },
  1735. "type": "library",
  1736. "autoload": {
  1737. "psr-4": {
  1738. "Symfony\\Component\\Filesystem\\": ""
  1739. },
  1740. "exclude-from-classmap": [
  1741. "/Tests/"
  1742. ]
  1743. },
  1744. "notification-url": "https://packagist.org/downloads/",
  1745. "license": [
  1746. "MIT"
  1747. ],
  1748. "authors": [
  1749. {
  1750. "name": "Fabien Potencier",
  1751. "email": "fabien@symfony.com"
  1752. },
  1753. {
  1754. "name": "Symfony Community",
  1755. "homepage": "https://symfony.com/contributors"
  1756. }
  1757. ],
  1758. "description": "Symfony Filesystem Component",
  1759. "homepage": "https://symfony.com",
  1760. "funding": [
  1761. {
  1762. "url": "https://symfony.com/sponsor",
  1763. "type": "custom"
  1764. },
  1765. {
  1766. "url": "https://github.com/fabpot",
  1767. "type": "github"
  1768. },
  1769. {
  1770. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1771. "type": "tidelift"
  1772. }
  1773. ],
  1774. "time": "2020-11-30T17:05:38+00:00"
  1775. },
  1776. {
  1777. "name": "symfony/finder",
  1778. "version": "v5.2.1",
  1779. "source": {
  1780. "type": "git",
  1781. "url": "https://github.com/symfony/finder.git",
  1782. "reference": "0b9231a5922fd7287ba5b411893c0ecd2733e5ba"
  1783. },
  1784. "dist": {
  1785. "type": "zip",
  1786. "url": "https://api.github.com/repos/symfony/finder/zipball/0b9231a5922fd7287ba5b411893c0ecd2733e5ba",
  1787. "reference": "0b9231a5922fd7287ba5b411893c0ecd2733e5ba",
  1788. "shasum": ""
  1789. },
  1790. "require": {
  1791. "php": ">=7.2.5"
  1792. },
  1793. "type": "library",
  1794. "autoload": {
  1795. "psr-4": {
  1796. "Symfony\\Component\\Finder\\": ""
  1797. },
  1798. "exclude-from-classmap": [
  1799. "/Tests/"
  1800. ]
  1801. },
  1802. "notification-url": "https://packagist.org/downloads/",
  1803. "license": [
  1804. "MIT"
  1805. ],
  1806. "authors": [
  1807. {
  1808. "name": "Fabien Potencier",
  1809. "email": "fabien@symfony.com"
  1810. },
  1811. {
  1812. "name": "Symfony Community",
  1813. "homepage": "https://symfony.com/contributors"
  1814. }
  1815. ],
  1816. "description": "Symfony Finder Component",
  1817. "homepage": "https://symfony.com",
  1818. "funding": [
  1819. {
  1820. "url": "https://symfony.com/sponsor",
  1821. "type": "custom"
  1822. },
  1823. {
  1824. "url": "https://github.com/fabpot",
  1825. "type": "github"
  1826. },
  1827. {
  1828. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1829. "type": "tidelift"
  1830. }
  1831. ],
  1832. "time": "2020-12-08T17:02:38+00:00"
  1833. },
  1834. {
  1835. "name": "symfony/options-resolver",
  1836. "version": "v5.2.1",
  1837. "source": {
  1838. "type": "git",
  1839. "url": "https://github.com/symfony/options-resolver.git",
  1840. "reference": "87a2a4a766244e796dd9cb9d6f58c123358cd986"
  1841. },
  1842. "dist": {
  1843. "type": "zip",
  1844. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/87a2a4a766244e796dd9cb9d6f58c123358cd986",
  1845. "reference": "87a2a4a766244e796dd9cb9d6f58c123358cd986",
  1846. "shasum": ""
  1847. },
  1848. "require": {
  1849. "php": ">=7.2.5",
  1850. "symfony/deprecation-contracts": "^2.1",
  1851. "symfony/polyfill-php73": "~1.0",
  1852. "symfony/polyfill-php80": "^1.15"
  1853. },
  1854. "type": "library",
  1855. "autoload": {
  1856. "psr-4": {
  1857. "Symfony\\Component\\OptionsResolver\\": ""
  1858. },
  1859. "exclude-from-classmap": [
  1860. "/Tests/"
  1861. ]
  1862. },
  1863. "notification-url": "https://packagist.org/downloads/",
  1864. "license": [
  1865. "MIT"
  1866. ],
  1867. "authors": [
  1868. {
  1869. "name": "Fabien Potencier",
  1870. "email": "fabien@symfony.com"
  1871. },
  1872. {
  1873. "name": "Symfony Community",
  1874. "homepage": "https://symfony.com/contributors"
  1875. }
  1876. ],
  1877. "description": "Symfony OptionsResolver Component",
  1878. "homepage": "https://symfony.com",
  1879. "keywords": [
  1880. "config",
  1881. "configuration",
  1882. "options"
  1883. ],
  1884. "funding": [
  1885. {
  1886. "url": "https://symfony.com/sponsor",
  1887. "type": "custom"
  1888. },
  1889. {
  1890. "url": "https://github.com/fabpot",
  1891. "type": "github"
  1892. },
  1893. {
  1894. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1895. "type": "tidelift"
  1896. }
  1897. ],
  1898. "time": "2020-10-24T12:08:07+00:00"
  1899. },
  1900. {
  1901. "name": "symfony/polyfill-ctype",
  1902. "version": "v1.22.1",
  1903. "source": {
  1904. "type": "git",
  1905. "url": "https://github.com/symfony/polyfill-ctype.git",
  1906. "reference": "c6c942b1ac76c82448322025e084cadc56048b4e"
  1907. },
  1908. "dist": {
  1909. "type": "zip",
  1910. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/c6c942b1ac76c82448322025e084cadc56048b4e",
  1911. "reference": "c6c942b1ac76c82448322025e084cadc56048b4e",
  1912. "shasum": ""
  1913. },
  1914. "require": {
  1915. "php": ">=7.1"
  1916. },
  1917. "suggest": {
  1918. "ext-ctype": "For best performance"
  1919. },
  1920. "type": "library",
  1921. "extra": {
  1922. "branch-alias": {
  1923. "dev-main": "1.22-dev"
  1924. },
  1925. "thanks": {
  1926. "name": "symfony/polyfill",
  1927. "url": "https://github.com/symfony/polyfill"
  1928. }
  1929. },
  1930. "autoload": {
  1931. "psr-4": {
  1932. "Symfony\\Polyfill\\Ctype\\": ""
  1933. },
  1934. "files": [
  1935. "bootstrap.php"
  1936. ]
  1937. },
  1938. "notification-url": "https://packagist.org/downloads/",
  1939. "license": [
  1940. "MIT"
  1941. ],
  1942. "authors": [
  1943. {
  1944. "name": "Gert de Pagter",
  1945. "email": "BackEndTea@gmail.com"
  1946. },
  1947. {
  1948. "name": "Symfony Community",
  1949. "homepage": "https://symfony.com/contributors"
  1950. }
  1951. ],
  1952. "description": "Symfony polyfill for ctype functions",
  1953. "homepage": "https://symfony.com",
  1954. "keywords": [
  1955. "compatibility",
  1956. "ctype",
  1957. "polyfill",
  1958. "portable"
  1959. ],
  1960. "support": {
  1961. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.22.1"
  1962. },
  1963. "funding": [
  1964. {
  1965. "url": "https://symfony.com/sponsor",
  1966. "type": "custom"
  1967. },
  1968. {
  1969. "url": "https://github.com/fabpot",
  1970. "type": "github"
  1971. },
  1972. {
  1973. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1974. "type": "tidelift"
  1975. }
  1976. ],
  1977. "time": "2021-01-07T16:49:33+00:00"
  1978. },
  1979. {
  1980. "name": "symfony/polyfill-intl-grapheme",
  1981. "version": "v1.22.1",
  1982. "source": {
  1983. "type": "git",
  1984. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  1985. "reference": "5601e09b69f26c1828b13b6bb87cb07cddba3170"
  1986. },
  1987. "dist": {
  1988. "type": "zip",
  1989. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/5601e09b69f26c1828b13b6bb87cb07cddba3170",
  1990. "reference": "5601e09b69f26c1828b13b6bb87cb07cddba3170",
  1991. "shasum": ""
  1992. },
  1993. "require": {
  1994. "php": ">=7.1"
  1995. },
  1996. "suggest": {
  1997. "ext-intl": "For best performance"
  1998. },
  1999. "type": "library",
  2000. "extra": {
  2001. "branch-alias": {
  2002. "dev-main": "1.22-dev"
  2003. },
  2004. "thanks": {
  2005. "name": "symfony/polyfill",
  2006. "url": "https://github.com/symfony/polyfill"
  2007. }
  2008. },
  2009. "autoload": {
  2010. "psr-4": {
  2011. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  2012. },
  2013. "files": [
  2014. "bootstrap.php"
  2015. ]
  2016. },
  2017. "notification-url": "https://packagist.org/downloads/",
  2018. "license": [
  2019. "MIT"
  2020. ],
  2021. "authors": [
  2022. {
  2023. "name": "Nicolas Grekas",
  2024. "email": "p@tchwork.com"
  2025. },
  2026. {
  2027. "name": "Symfony Community",
  2028. "homepage": "https://symfony.com/contributors"
  2029. }
  2030. ],
  2031. "description": "Symfony polyfill for intl's grapheme_* functions",
  2032. "homepage": "https://symfony.com",
  2033. "keywords": [
  2034. "compatibility",
  2035. "grapheme",
  2036. "intl",
  2037. "polyfill",
  2038. "portable",
  2039. "shim"
  2040. ],
  2041. "support": {
  2042. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.22.1"
  2043. },
  2044. "funding": [
  2045. {
  2046. "url": "https://symfony.com/sponsor",
  2047. "type": "custom"
  2048. },
  2049. {
  2050. "url": "https://github.com/fabpot",
  2051. "type": "github"
  2052. },
  2053. {
  2054. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2055. "type": "tidelift"
  2056. }
  2057. ],
  2058. "time": "2021-01-22T09:19:47+00:00"
  2059. },
  2060. {
  2061. "name": "symfony/polyfill-intl-normalizer",
  2062. "version": "v1.22.1",
  2063. "source": {
  2064. "type": "git",
  2065. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  2066. "reference": "43a0283138253ed1d48d352ab6d0bdb3f809f248"
  2067. },
  2068. "dist": {
  2069. "type": "zip",
  2070. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/43a0283138253ed1d48d352ab6d0bdb3f809f248",
  2071. "reference": "43a0283138253ed1d48d352ab6d0bdb3f809f248",
  2072. "shasum": ""
  2073. },
  2074. "require": {
  2075. "php": ">=7.1"
  2076. },
  2077. "suggest": {
  2078. "ext-intl": "For best performance"
  2079. },
  2080. "type": "library",
  2081. "extra": {
  2082. "branch-alias": {
  2083. "dev-main": "1.22-dev"
  2084. },
  2085. "thanks": {
  2086. "name": "symfony/polyfill",
  2087. "url": "https://github.com/symfony/polyfill"
  2088. }
  2089. },
  2090. "autoload": {
  2091. "psr-4": {
  2092. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  2093. },
  2094. "files": [
  2095. "bootstrap.php"
  2096. ],
  2097. "classmap": [
  2098. "Resources/stubs"
  2099. ]
  2100. },
  2101. "notification-url": "https://packagist.org/downloads/",
  2102. "license": [
  2103. "MIT"
  2104. ],
  2105. "authors": [
  2106. {
  2107. "name": "Nicolas Grekas",
  2108. "email": "p@tchwork.com"
  2109. },
  2110. {
  2111. "name": "Symfony Community",
  2112. "homepage": "https://symfony.com/contributors"
  2113. }
  2114. ],
  2115. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  2116. "homepage": "https://symfony.com",
  2117. "keywords": [
  2118. "compatibility",
  2119. "intl",
  2120. "normalizer",
  2121. "polyfill",
  2122. "portable",
  2123. "shim"
  2124. ],
  2125. "support": {
  2126. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.22.1"
  2127. },
  2128. "funding": [
  2129. {
  2130. "url": "https://symfony.com/sponsor",
  2131. "type": "custom"
  2132. },
  2133. {
  2134. "url": "https://github.com/fabpot",
  2135. "type": "github"
  2136. },
  2137. {
  2138. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2139. "type": "tidelift"
  2140. }
  2141. ],
  2142. "time": "2021-01-22T09:19:47+00:00"
  2143. },
  2144. {
  2145. "name": "symfony/polyfill-mbstring",
  2146. "version": "v1.22.1",
  2147. "source": {
  2148. "type": "git",
  2149. "url": "https://github.com/symfony/polyfill-mbstring.git",
  2150. "reference": "5232de97ee3b75b0360528dae24e73db49566ab1"
  2151. },
  2152. "dist": {
  2153. "type": "zip",
  2154. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/5232de97ee3b75b0360528dae24e73db49566ab1",
  2155. "reference": "5232de97ee3b75b0360528dae24e73db49566ab1",
  2156. "shasum": ""
  2157. },
  2158. "require": {
  2159. "php": ">=7.1"
  2160. },
  2161. "suggest": {
  2162. "ext-mbstring": "For best performance"
  2163. },
  2164. "type": "library",
  2165. "extra": {
  2166. "branch-alias": {
  2167. "dev-main": "1.22-dev"
  2168. },
  2169. "thanks": {
  2170. "name": "symfony/polyfill",
  2171. "url": "https://github.com/symfony/polyfill"
  2172. }
  2173. },
  2174. "autoload": {
  2175. "psr-4": {
  2176. "Symfony\\Polyfill\\Mbstring\\": ""
  2177. },
  2178. "files": [
  2179. "bootstrap.php"
  2180. ]
  2181. },
  2182. "notification-url": "https://packagist.org/downloads/",
  2183. "license": [
  2184. "MIT"
  2185. ],
  2186. "authors": [
  2187. {
  2188. "name": "Nicolas Grekas",
  2189. "email": "p@tchwork.com"
  2190. },
  2191. {
  2192. "name": "Symfony Community",
  2193. "homepage": "https://symfony.com/contributors"
  2194. }
  2195. ],
  2196. "description": "Symfony polyfill for the Mbstring extension",
  2197. "homepage": "https://symfony.com",
  2198. "keywords": [
  2199. "compatibility",
  2200. "mbstring",
  2201. "polyfill",
  2202. "portable",
  2203. "shim"
  2204. ],
  2205. "support": {
  2206. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.22.1"
  2207. },
  2208. "funding": [
  2209. {
  2210. "url": "https://symfony.com/sponsor",
  2211. "type": "custom"
  2212. },
  2213. {
  2214. "url": "https://github.com/fabpot",
  2215. "type": "github"
  2216. },
  2217. {
  2218. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2219. "type": "tidelift"
  2220. }
  2221. ],
  2222. "time": "2021-01-22T09:19:47+00:00"
  2223. },
  2224. {
  2225. "name": "symfony/polyfill-php70",
  2226. "version": "v1.20.0",
  2227. "source": {
  2228. "type": "git",
  2229. "url": "https://github.com/symfony/polyfill-php70.git",
  2230. "reference": "5f03a781d984aae42cebd18e7912fa80f02ee644"
  2231. },
  2232. "dist": {
  2233. "type": "zip",
  2234. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/5f03a781d984aae42cebd18e7912fa80f02ee644",
  2235. "reference": "5f03a781d984aae42cebd18e7912fa80f02ee644",
  2236. "shasum": ""
  2237. },
  2238. "require": {
  2239. "php": ">=7.1"
  2240. },
  2241. "type": "metapackage",
  2242. "extra": {
  2243. "branch-alias": {
  2244. "dev-main": "1.20-dev"
  2245. },
  2246. "thanks": {
  2247. "name": "symfony/polyfill",
  2248. "url": "https://github.com/symfony/polyfill"
  2249. }
  2250. },
  2251. "notification-url": "https://packagist.org/downloads/",
  2252. "license": [
  2253. "MIT"
  2254. ],
  2255. "authors": [
  2256. {
  2257. "name": "Nicolas Grekas",
  2258. "email": "p@tchwork.com"
  2259. },
  2260. {
  2261. "name": "Symfony Community",
  2262. "homepage": "https://symfony.com/contributors"
  2263. }
  2264. ],
  2265. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  2266. "homepage": "https://symfony.com",
  2267. "keywords": [
  2268. "compatibility",
  2269. "polyfill",
  2270. "portable",
  2271. "shim"
  2272. ],
  2273. "funding": [
  2274. {
  2275. "url": "https://symfony.com/sponsor",
  2276. "type": "custom"
  2277. },
  2278. {
  2279. "url": "https://github.com/fabpot",
  2280. "type": "github"
  2281. },
  2282. {
  2283. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2284. "type": "tidelift"
  2285. }
  2286. ],
  2287. "time": "2020-10-23T14:02:19+00:00"
  2288. },
  2289. {
  2290. "name": "symfony/polyfill-php72",
  2291. "version": "v1.22.0",
  2292. "source": {
  2293. "type": "git",
  2294. "url": "https://github.com/symfony/polyfill-php72.git",
  2295. "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9"
  2296. },
  2297. "dist": {
  2298. "type": "zip",
  2299. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9",
  2300. "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9",
  2301. "shasum": ""
  2302. },
  2303. "require": {
  2304. "php": ">=7.1"
  2305. },
  2306. "type": "library",
  2307. "extra": {
  2308. "branch-alias": {
  2309. "dev-main": "1.22-dev"
  2310. },
  2311. "thanks": {
  2312. "name": "symfony/polyfill",
  2313. "url": "https://github.com/symfony/polyfill"
  2314. }
  2315. },
  2316. "autoload": {
  2317. "psr-4": {
  2318. "Symfony\\Polyfill\\Php72\\": ""
  2319. },
  2320. "files": [
  2321. "bootstrap.php"
  2322. ]
  2323. },
  2324. "notification-url": "https://packagist.org/downloads/",
  2325. "license": [
  2326. "MIT"
  2327. ],
  2328. "authors": [
  2329. {
  2330. "name": "Nicolas Grekas",
  2331. "email": "p@tchwork.com"
  2332. },
  2333. {
  2334. "name": "Symfony Community",
  2335. "homepage": "https://symfony.com/contributors"
  2336. }
  2337. ],
  2338. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  2339. "homepage": "https://symfony.com",
  2340. "keywords": [
  2341. "compatibility",
  2342. "polyfill",
  2343. "portable",
  2344. "shim"
  2345. ],
  2346. "funding": [
  2347. {
  2348. "url": "https://symfony.com/sponsor",
  2349. "type": "custom"
  2350. },
  2351. {
  2352. "url": "https://github.com/fabpot",
  2353. "type": "github"
  2354. },
  2355. {
  2356. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2357. "type": "tidelift"
  2358. }
  2359. ],
  2360. "time": "2021-01-07T16:49:33+00:00"
  2361. },
  2362. {
  2363. "name": "symfony/polyfill-php73",
  2364. "version": "v1.22.1",
  2365. "source": {
  2366. "type": "git",
  2367. "url": "https://github.com/symfony/polyfill-php73.git",
  2368. "reference": "a678b42e92f86eca04b7fa4c0f6f19d097fb69e2"
  2369. },
  2370. "dist": {
  2371. "type": "zip",
  2372. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/a678b42e92f86eca04b7fa4c0f6f19d097fb69e2",
  2373. "reference": "a678b42e92f86eca04b7fa4c0f6f19d097fb69e2",
  2374. "shasum": ""
  2375. },
  2376. "require": {
  2377. "php": ">=7.1"
  2378. },
  2379. "type": "library",
  2380. "extra": {
  2381. "branch-alias": {
  2382. "dev-main": "1.22-dev"
  2383. },
  2384. "thanks": {
  2385. "name": "symfony/polyfill",
  2386. "url": "https://github.com/symfony/polyfill"
  2387. }
  2388. },
  2389. "autoload": {
  2390. "psr-4": {
  2391. "Symfony\\Polyfill\\Php73\\": ""
  2392. },
  2393. "files": [
  2394. "bootstrap.php"
  2395. ],
  2396. "classmap": [
  2397. "Resources/stubs"
  2398. ]
  2399. },
  2400. "notification-url": "https://packagist.org/downloads/",
  2401. "license": [
  2402. "MIT"
  2403. ],
  2404. "authors": [
  2405. {
  2406. "name": "Nicolas Grekas",
  2407. "email": "p@tchwork.com"
  2408. },
  2409. {
  2410. "name": "Symfony Community",
  2411. "homepage": "https://symfony.com/contributors"
  2412. }
  2413. ],
  2414. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  2415. "homepage": "https://symfony.com",
  2416. "keywords": [
  2417. "compatibility",
  2418. "polyfill",
  2419. "portable",
  2420. "shim"
  2421. ],
  2422. "support": {
  2423. "source": "https://github.com/symfony/polyfill-php73/tree/v1.22.1"
  2424. },
  2425. "funding": [
  2426. {
  2427. "url": "https://symfony.com/sponsor",
  2428. "type": "custom"
  2429. },
  2430. {
  2431. "url": "https://github.com/fabpot",
  2432. "type": "github"
  2433. },
  2434. {
  2435. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2436. "type": "tidelift"
  2437. }
  2438. ],
  2439. "time": "2021-01-07T16:49:33+00:00"
  2440. },
  2441. {
  2442. "name": "symfony/polyfill-php80",
  2443. "version": "v1.22.1",
  2444. "source": {
  2445. "type": "git",
  2446. "url": "https://github.com/symfony/polyfill-php80.git",
  2447. "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91"
  2448. },
  2449. "dist": {
  2450. "type": "zip",
  2451. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/dc3063ba22c2a1fd2f45ed856374d79114998f91",
  2452. "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91",
  2453. "shasum": ""
  2454. },
  2455. "require": {
  2456. "php": ">=7.1"
  2457. },
  2458. "type": "library",
  2459. "extra": {
  2460. "branch-alias": {
  2461. "dev-main": "1.22-dev"
  2462. },
  2463. "thanks": {
  2464. "name": "symfony/polyfill",
  2465. "url": "https://github.com/symfony/polyfill"
  2466. }
  2467. },
  2468. "autoload": {
  2469. "psr-4": {
  2470. "Symfony\\Polyfill\\Php80\\": ""
  2471. },
  2472. "files": [
  2473. "bootstrap.php"
  2474. ],
  2475. "classmap": [
  2476. "Resources/stubs"
  2477. ]
  2478. },
  2479. "notification-url": "https://packagist.org/downloads/",
  2480. "license": [
  2481. "MIT"
  2482. ],
  2483. "authors": [
  2484. {
  2485. "name": "Ion Bazan",
  2486. "email": "ion.bazan@gmail.com"
  2487. },
  2488. {
  2489. "name": "Nicolas Grekas",
  2490. "email": "p@tchwork.com"
  2491. },
  2492. {
  2493. "name": "Symfony Community",
  2494. "homepage": "https://symfony.com/contributors"
  2495. }
  2496. ],
  2497. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  2498. "homepage": "https://symfony.com",
  2499. "keywords": [
  2500. "compatibility",
  2501. "polyfill",
  2502. "portable",
  2503. "shim"
  2504. ],
  2505. "support": {
  2506. "source": "https://github.com/symfony/polyfill-php80/tree/v1.22.1"
  2507. },
  2508. "funding": [
  2509. {
  2510. "url": "https://symfony.com/sponsor",
  2511. "type": "custom"
  2512. },
  2513. {
  2514. "url": "https://github.com/fabpot",
  2515. "type": "github"
  2516. },
  2517. {
  2518. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2519. "type": "tidelift"
  2520. }
  2521. ],
  2522. "time": "2021-01-07T16:49:33+00:00"
  2523. },
  2524. {
  2525. "name": "symfony/process",
  2526. "version": "v5.2.1",
  2527. "source": {
  2528. "type": "git",
  2529. "url": "https://github.com/symfony/process.git",
  2530. "reference": "bd8815b8b6705298beaa384f04fabd459c10bedd"
  2531. },
  2532. "dist": {
  2533. "type": "zip",
  2534. "url": "https://api.github.com/repos/symfony/process/zipball/bd8815b8b6705298beaa384f04fabd459c10bedd",
  2535. "reference": "bd8815b8b6705298beaa384f04fabd459c10bedd",
  2536. "shasum": ""
  2537. },
  2538. "require": {
  2539. "php": ">=7.2.5",
  2540. "symfony/polyfill-php80": "^1.15"
  2541. },
  2542. "type": "library",
  2543. "autoload": {
  2544. "psr-4": {
  2545. "Symfony\\Component\\Process\\": ""
  2546. },
  2547. "exclude-from-classmap": [
  2548. "/Tests/"
  2549. ]
  2550. },
  2551. "notification-url": "https://packagist.org/downloads/",
  2552. "license": [
  2553. "MIT"
  2554. ],
  2555. "authors": [
  2556. {
  2557. "name": "Fabien Potencier",
  2558. "email": "fabien@symfony.com"
  2559. },
  2560. {
  2561. "name": "Symfony Community",
  2562. "homepage": "https://symfony.com/contributors"
  2563. }
  2564. ],
  2565. "description": "Symfony Process Component",
  2566. "homepage": "https://symfony.com",
  2567. "funding": [
  2568. {
  2569. "url": "https://symfony.com/sponsor",
  2570. "type": "custom"
  2571. },
  2572. {
  2573. "url": "https://github.com/fabpot",
  2574. "type": "github"
  2575. },
  2576. {
  2577. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2578. "type": "tidelift"
  2579. }
  2580. ],
  2581. "time": "2020-12-08T17:03:37+00:00"
  2582. },
  2583. {
  2584. "name": "symfony/service-contracts",
  2585. "version": "v2.2.0",
  2586. "source": {
  2587. "type": "git",
  2588. "url": "https://github.com/symfony/service-contracts.git",
  2589. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1"
  2590. },
  2591. "dist": {
  2592. "type": "zip",
  2593. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  2594. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  2595. "shasum": ""
  2596. },
  2597. "require": {
  2598. "php": ">=7.2.5",
  2599. "psr/container": "^1.0"
  2600. },
  2601. "suggest": {
  2602. "symfony/service-implementation": ""
  2603. },
  2604. "type": "library",
  2605. "extra": {
  2606. "branch-alias": {
  2607. "dev-master": "2.2-dev"
  2608. },
  2609. "thanks": {
  2610. "name": "symfony/contracts",
  2611. "url": "https://github.com/symfony/contracts"
  2612. }
  2613. },
  2614. "autoload": {
  2615. "psr-4": {
  2616. "Symfony\\Contracts\\Service\\": ""
  2617. }
  2618. },
  2619. "notification-url": "https://packagist.org/downloads/",
  2620. "license": [
  2621. "MIT"
  2622. ],
  2623. "authors": [
  2624. {
  2625. "name": "Nicolas Grekas",
  2626. "email": "p@tchwork.com"
  2627. },
  2628. {
  2629. "name": "Symfony Community",
  2630. "homepage": "https://symfony.com/contributors"
  2631. }
  2632. ],
  2633. "description": "Generic abstractions related to writing services",
  2634. "homepage": "https://symfony.com",
  2635. "keywords": [
  2636. "abstractions",
  2637. "contracts",
  2638. "decoupling",
  2639. "interfaces",
  2640. "interoperability",
  2641. "standards"
  2642. ],
  2643. "support": {
  2644. "source": "https://github.com/symfony/service-contracts/tree/master"
  2645. },
  2646. "funding": [
  2647. {
  2648. "url": "https://symfony.com/sponsor",
  2649. "type": "custom"
  2650. },
  2651. {
  2652. "url": "https://github.com/fabpot",
  2653. "type": "github"
  2654. },
  2655. {
  2656. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2657. "type": "tidelift"
  2658. }
  2659. ],
  2660. "time": "2020-09-07T11:33:47+00:00"
  2661. },
  2662. {
  2663. "name": "symfony/stopwatch",
  2664. "version": "v5.2.1",
  2665. "source": {
  2666. "type": "git",
  2667. "url": "https://github.com/symfony/stopwatch.git",
  2668. "reference": "2b105c0354f39a63038a1d8bf776ee92852813af"
  2669. },
  2670. "dist": {
  2671. "type": "zip",
  2672. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/2b105c0354f39a63038a1d8bf776ee92852813af",
  2673. "reference": "2b105c0354f39a63038a1d8bf776ee92852813af",
  2674. "shasum": ""
  2675. },
  2676. "require": {
  2677. "php": ">=7.2.5",
  2678. "symfony/service-contracts": "^1.0|^2"
  2679. },
  2680. "type": "library",
  2681. "autoload": {
  2682. "psr-4": {
  2683. "Symfony\\Component\\Stopwatch\\": ""
  2684. },
  2685. "exclude-from-classmap": [
  2686. "/Tests/"
  2687. ]
  2688. },
  2689. "notification-url": "https://packagist.org/downloads/",
  2690. "license": [
  2691. "MIT"
  2692. ],
  2693. "authors": [
  2694. {
  2695. "name": "Fabien Potencier",
  2696. "email": "fabien@symfony.com"
  2697. },
  2698. {
  2699. "name": "Symfony Community",
  2700. "homepage": "https://symfony.com/contributors"
  2701. }
  2702. ],
  2703. "description": "Symfony Stopwatch Component",
  2704. "homepage": "https://symfony.com",
  2705. "funding": [
  2706. {
  2707. "url": "https://symfony.com/sponsor",
  2708. "type": "custom"
  2709. },
  2710. {
  2711. "url": "https://github.com/fabpot",
  2712. "type": "github"
  2713. },
  2714. {
  2715. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2716. "type": "tidelift"
  2717. }
  2718. ],
  2719. "time": "2020-11-01T16:14:45+00:00"
  2720. },
  2721. {
  2722. "name": "symfony/string",
  2723. "version": "v5.2.4",
  2724. "source": {
  2725. "type": "git",
  2726. "url": "https://github.com/symfony/string.git",
  2727. "reference": "4e78d7d47061fa183639927ec40d607973699609"
  2728. },
  2729. "dist": {
  2730. "type": "zip",
  2731. "url": "https://api.github.com/repos/symfony/string/zipball/4e78d7d47061fa183639927ec40d607973699609",
  2732. "reference": "4e78d7d47061fa183639927ec40d607973699609",
  2733. "shasum": ""
  2734. },
  2735. "require": {
  2736. "php": ">=7.2.5",
  2737. "symfony/polyfill-ctype": "~1.8",
  2738. "symfony/polyfill-intl-grapheme": "~1.0",
  2739. "symfony/polyfill-intl-normalizer": "~1.0",
  2740. "symfony/polyfill-mbstring": "~1.0",
  2741. "symfony/polyfill-php80": "~1.15"
  2742. },
  2743. "require-dev": {
  2744. "symfony/error-handler": "^4.4|^5.0",
  2745. "symfony/http-client": "^4.4|^5.0",
  2746. "symfony/translation-contracts": "^1.1|^2",
  2747. "symfony/var-exporter": "^4.4|^5.0"
  2748. },
  2749. "type": "library",
  2750. "autoload": {
  2751. "psr-4": {
  2752. "Symfony\\Component\\String\\": ""
  2753. },
  2754. "files": [
  2755. "Resources/functions.php"
  2756. ],
  2757. "exclude-from-classmap": [
  2758. "/Tests/"
  2759. ]
  2760. },
  2761. "notification-url": "https://packagist.org/downloads/",
  2762. "license": [
  2763. "MIT"
  2764. ],
  2765. "authors": [
  2766. {
  2767. "name": "Nicolas Grekas",
  2768. "email": "p@tchwork.com"
  2769. },
  2770. {
  2771. "name": "Symfony Community",
  2772. "homepage": "https://symfony.com/contributors"
  2773. }
  2774. ],
  2775. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  2776. "homepage": "https://symfony.com",
  2777. "keywords": [
  2778. "grapheme",
  2779. "i18n",
  2780. "string",
  2781. "unicode",
  2782. "utf-8",
  2783. "utf8"
  2784. ],
  2785. "support": {
  2786. "source": "https://github.com/symfony/string/tree/v5.2.4"
  2787. },
  2788. "funding": [
  2789. {
  2790. "url": "https://symfony.com/sponsor",
  2791. "type": "custom"
  2792. },
  2793. {
  2794. "url": "https://github.com/fabpot",
  2795. "type": "github"
  2796. },
  2797. {
  2798. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2799. "type": "tidelift"
  2800. }
  2801. ],
  2802. "time": "2021-02-16T10:20:28+00:00"
  2803. },
  2804. {
  2805. "name": "vimeo/psalm",
  2806. "version": "4.6.2",
  2807. "source": {
  2808. "type": "git",
  2809. "url": "https://github.com/vimeo/psalm.git",
  2810. "reference": "bca09d74adc704c4eaee36a3c3e9d379e290fc3b"
  2811. },
  2812. "dist": {
  2813. "type": "zip",
  2814. "url": "https://api.github.com/repos/vimeo/psalm/zipball/bca09d74adc704c4eaee36a3c3e9d379e290fc3b",
  2815. "reference": "bca09d74adc704c4eaee36a3c3e9d379e290fc3b",
  2816. "shasum": ""
  2817. },
  2818. "require": {
  2819. "amphp/amp": "^2.1",
  2820. "amphp/byte-stream": "^1.5",
  2821. "composer/package-versions-deprecated": "^1.8.0",
  2822. "composer/semver": "^1.4 || ^2.0 || ^3.0",
  2823. "composer/xdebug-handler": "^1.1",
  2824. "dnoegel/php-xdg-base-dir": "^0.1.1",
  2825. "ext-dom": "*",
  2826. "ext-json": "*",
  2827. "ext-libxml": "*",
  2828. "ext-mbstring": "*",
  2829. "ext-simplexml": "*",
  2830. "ext-tokenizer": "*",
  2831. "felixfbecker/advanced-json-rpc": "^3.0.3",
  2832. "felixfbecker/language-server-protocol": "^1.5",
  2833. "netresearch/jsonmapper": "^1.0 || ^2.0 || ^3.0 || ^4.0",
  2834. "nikic/php-parser": "^4.10.1",
  2835. "openlss/lib-array2xml": "^1.0",
  2836. "php": "^7.1|^8",
  2837. "sebastian/diff": "^3.0 || ^4.0",
  2838. "symfony/console": "^3.4.17 || ^4.1.6 || ^5.0",
  2839. "webmozart/path-util": "^2.3"
  2840. },
  2841. "provide": {
  2842. "psalm/psalm": "self.version"
  2843. },
  2844. "require-dev": {
  2845. "amphp/amp": "^2.4.2",
  2846. "bamarni/composer-bin-plugin": "^1.2",
  2847. "brianium/paratest": "^4.0||^6.0",
  2848. "ext-curl": "*",
  2849. "php-parallel-lint/php-parallel-lint": "^1.2",
  2850. "phpdocumentor/reflection-docblock": "^5",
  2851. "phpmyadmin/sql-parser": "5.1.0||dev-master",
  2852. "phpspec/prophecy": ">=1.9.0",
  2853. "phpunit/phpunit": "^9.0",
  2854. "psalm/plugin-phpunit": "^0.13",
  2855. "slevomat/coding-standard": "^6.3.11",
  2856. "squizlabs/php_codesniffer": "^3.5",
  2857. "symfony/process": "^4.3",
  2858. "weirdan/prophecy-shim": "^1.0 || ^2.0"
  2859. },
  2860. "suggest": {
  2861. "ext-igbinary": "^2.0.5"
  2862. },
  2863. "bin": [
  2864. "psalm",
  2865. "psalm-language-server",
  2866. "psalm-plugin",
  2867. "psalm-refactor",
  2868. "psalter"
  2869. ],
  2870. "type": "library",
  2871. "extra": {
  2872. "branch-alias": {
  2873. "dev-master": "4.x-dev",
  2874. "dev-3.x": "3.x-dev",
  2875. "dev-2.x": "2.x-dev",
  2876. "dev-1.x": "1.x-dev"
  2877. }
  2878. },
  2879. "autoload": {
  2880. "psr-4": {
  2881. "Psalm\\": "src/Psalm/"
  2882. },
  2883. "files": [
  2884. "src/functions.php",
  2885. "src/spl_object_id.php"
  2886. ]
  2887. },
  2888. "notification-url": "https://packagist.org/downloads/",
  2889. "license": [
  2890. "MIT"
  2891. ],
  2892. "authors": [
  2893. {
  2894. "name": "Matthew Brown"
  2895. }
  2896. ],
  2897. "description": "A static analysis tool for finding errors in PHP applications",
  2898. "keywords": [
  2899. "code",
  2900. "inspection",
  2901. "php"
  2902. ],
  2903. "support": {
  2904. "issues": "https://github.com/vimeo/psalm/issues",
  2905. "source": "https://github.com/vimeo/psalm/tree/4.6.2"
  2906. },
  2907. "time": "2021-02-26T02:24:18+00:00"
  2908. },
  2909. {
  2910. "name": "webmozart/assert",
  2911. "version": "1.9.1",
  2912. "source": {
  2913. "type": "git",
  2914. "url": "https://github.com/webmozarts/assert.git",
  2915. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389"
  2916. },
  2917. "dist": {
  2918. "type": "zip",
  2919. "url": "https://api.github.com/repos/webmozarts/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389",
  2920. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389",
  2921. "shasum": ""
  2922. },
  2923. "require": {
  2924. "php": "^5.3.3 || ^7.0 || ^8.0",
  2925. "symfony/polyfill-ctype": "^1.8"
  2926. },
  2927. "conflict": {
  2928. "phpstan/phpstan": "<0.12.20",
  2929. "vimeo/psalm": "<3.9.1"
  2930. },
  2931. "require-dev": {
  2932. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  2933. },
  2934. "type": "library",
  2935. "autoload": {
  2936. "psr-4": {
  2937. "Webmozart\\Assert\\": "src/"
  2938. }
  2939. },
  2940. "notification-url": "https://packagist.org/downloads/",
  2941. "license": [
  2942. "MIT"
  2943. ],
  2944. "authors": [
  2945. {
  2946. "name": "Bernhard Schussek",
  2947. "email": "bschussek@gmail.com"
  2948. }
  2949. ],
  2950. "description": "Assertions to validate method input/output with nice error messages.",
  2951. "keywords": [
  2952. "assert",
  2953. "check",
  2954. "validate"
  2955. ],
  2956. "support": {
  2957. "issues": "https://github.com/webmozarts/assert/issues",
  2958. "source": "https://github.com/webmozarts/assert/tree/1.9.1"
  2959. },
  2960. "time": "2020-07-08T17:02:28+00:00"
  2961. },
  2962. {
  2963. "name": "webmozart/path-util",
  2964. "version": "2.3.0",
  2965. "source": {
  2966. "type": "git",
  2967. "url": "https://github.com/webmozart/path-util.git",
  2968. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  2969. },
  2970. "dist": {
  2971. "type": "zip",
  2972. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  2973. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  2974. "shasum": ""
  2975. },
  2976. "require": {
  2977. "php": ">=5.3.3",
  2978. "webmozart/assert": "~1.0"
  2979. },
  2980. "require-dev": {
  2981. "phpunit/phpunit": "^4.6",
  2982. "sebastian/version": "^1.0.1"
  2983. },
  2984. "type": "library",
  2985. "extra": {
  2986. "branch-alias": {
  2987. "dev-master": "2.3-dev"
  2988. }
  2989. },
  2990. "autoload": {
  2991. "psr-4": {
  2992. "Webmozart\\PathUtil\\": "src/"
  2993. }
  2994. },
  2995. "notification-url": "https://packagist.org/downloads/",
  2996. "license": [
  2997. "MIT"
  2998. ],
  2999. "authors": [
  3000. {
  3001. "name": "Bernhard Schussek",
  3002. "email": "bschussek@gmail.com"
  3003. }
  3004. ],
  3005. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  3006. "support": {
  3007. "issues": "https://github.com/webmozart/path-util/issues",
  3008. "source": "https://github.com/webmozart/path-util/tree/2.3.0"
  3009. },
  3010. "time": "2015-12-17T08:42:14+00:00"
  3011. }
  3012. ],
  3013. "aliases": [],
  3014. "minimum-stability": "stable",
  3015. "stability-flags": [],
  3016. "prefer-stable": false,
  3017. "prefer-lowest": false,
  3018. "platform": {
  3019. "ext-json": "*",
  3020. "ext-libxml": "*",
  3021. "ext-pdo": "*",
  3022. "ext-simplexml": "*",
  3023. "ext-xmlreader": "*"
  3024. },
  3025. "platform-dev": [],
  3026. "plugin-api-version": "2.0.0"
  3027. }