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 103KB

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