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

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