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

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