composer.lock 80 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316
  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": "1dbd2d05cc0836acfca5988f29005cf2",
  8. "packages": [
  9. {
  10. "name": "ckeditor/ckeditor",
  11. "version": "4.12.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/ckeditor/ckeditor-releases.git",
  15. "reference": "b1a25e93ae0b038f45dcba458f4c2c18bd7318e5"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/ckeditor/ckeditor-releases/zipball/b1a25e93ae0b038f45dcba458f4c2c18bd7318e5",
  20. "reference": "b1a25e93ae0b038f45dcba458f4c2c18bd7318e5",
  21. "shasum": ""
  22. },
  23. "type": "library",
  24. "notification-url": "https://packagist.org/downloads/",
  25. "license": [
  26. "GPL-2.0+",
  27. "LGPL-2.1+",
  28. "MPL-1.1+"
  29. ],
  30. "authors": [
  31. {
  32. "name": "CKSource",
  33. "homepage": "http://cksource.com"
  34. }
  35. ],
  36. "description": "JavaScript WYSIWYG web text editor.",
  37. "homepage": "http://ckeditor.com",
  38. "keywords": [
  39. "CKEditor",
  40. "editor",
  41. "fckeditor",
  42. "html",
  43. "javascript",
  44. "richtext",
  45. "text",
  46. "wysiwyg"
  47. ],
  48. "time": "2019-06-28T10:41:23+00:00"
  49. },
  50. {
  51. "name": "maximebf/debugbar",
  52. "version": "v1.15.1",
  53. "source": {
  54. "type": "git",
  55. "url": "https://github.com/maximebf/php-debugbar.git",
  56. "reference": "6c4277f6117e4864966c9cb58fb835cee8c74a1e"
  57. },
  58. "dist": {
  59. "type": "zip",
  60. "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/6c4277f6117e4864966c9cb58fb835cee8c74a1e",
  61. "reference": "6c4277f6117e4864966c9cb58fb835cee8c74a1e",
  62. "shasum": ""
  63. },
  64. "require": {
  65. "php": ">=5.6",
  66. "psr/log": "^1.0",
  67. "symfony/var-dumper": "^2.6|^3|^4"
  68. },
  69. "require-dev": {
  70. "phpunit/phpunit": "^5"
  71. },
  72. "suggest": {
  73. "kriswallsmith/assetic": "The best way to manage assets",
  74. "monolog/monolog": "Log using Monolog",
  75. "predis/predis": "Redis storage"
  76. },
  77. "type": "library",
  78. "extra": {
  79. "branch-alias": {
  80. "dev-master": "1.15-dev"
  81. }
  82. },
  83. "autoload": {
  84. "psr-4": {
  85. "DebugBar\\": "src/DebugBar/"
  86. }
  87. },
  88. "notification-url": "https://packagist.org/downloads/",
  89. "license": [
  90. "MIT"
  91. ],
  92. "authors": [
  93. {
  94. "name": "Maxime Bouroumeau-Fuseau",
  95. "email": "maxime.bouroumeau@gmail.com",
  96. "homepage": "http://maximebf.com"
  97. },
  98. {
  99. "name": "Barry vd. Heuvel",
  100. "email": "barryvdh@gmail.com"
  101. }
  102. ],
  103. "description": "Debug bar in the browser for php application",
  104. "homepage": "https://github.com/maximebf/php-debugbar",
  105. "keywords": [
  106. "debug",
  107. "debugbar"
  108. ],
  109. "time": "2019-09-24T14:55:42+00:00"
  110. },
  111. {
  112. "name": "mike42/escpos-php",
  113. "version": "v2.2",
  114. "source": {
  115. "type": "git",
  116. "url": "https://github.com/mike42/escpos-php.git",
  117. "reference": "e5496cf819b048b11877117bd14a9cea4fb17c03"
  118. },
  119. "dist": {
  120. "type": "zip",
  121. "url": "https://api.github.com/repos/mike42/escpos-php/zipball/e5496cf819b048b11877117bd14a9cea4fb17c03",
  122. "reference": "e5496cf819b048b11877117bd14a9cea4fb17c03",
  123. "shasum": ""
  124. },
  125. "require": {
  126. "ext-mbstring": "*",
  127. "php": ">=5.4.0"
  128. },
  129. "require-dev": {
  130. "guzzlehttp/guzzle": "^5.3",
  131. "phpunit/phpunit": "^4.8",
  132. "squizlabs/php_codesniffer": "^3.2"
  133. },
  134. "suggest": {
  135. "ext-gd": "Used for image printing if present.",
  136. "ext-imagick": "Will be used for image printing if present. Required for PDF printing or use of custom fonts.",
  137. "guzzlehttp/guzzle": "Allows the use of the ApiConnector to send print jobs over HTTP."
  138. },
  139. "type": "library",
  140. "autoload": {
  141. "psr-4": {
  142. "Mike42\\": "src/Mike42"
  143. }
  144. },
  145. "notification-url": "https://packagist.org/downloads/",
  146. "license": [
  147. "MIT"
  148. ],
  149. "authors": [
  150. {
  151. "name": "Michael Billington",
  152. "email": "michael.billington@gmail.com"
  153. }
  154. ],
  155. "description": "PHP receipt printer library for use with ESC/POS-compatible thermal and impact printers",
  156. "homepage": "https://github.com/mike42/escpos-php",
  157. "keywords": [
  158. "ESC-POS",
  159. "driver",
  160. "escpos",
  161. "print",
  162. "receipt"
  163. ],
  164. "time": "2019-10-05T05:59:00+00:00"
  165. },
  166. {
  167. "name": "mobiledetect/mobiledetectlib",
  168. "version": "2.8.34",
  169. "source": {
  170. "type": "git",
  171. "url": "https://github.com/serbanghita/Mobile-Detect.git",
  172. "reference": "6f8113f57a508494ca36acbcfa2dc2d923c7ed5b"
  173. },
  174. "dist": {
  175. "type": "zip",
  176. "url": "https://api.github.com/repos/serbanghita/Mobile-Detect/zipball/6f8113f57a508494ca36acbcfa2dc2d923c7ed5b",
  177. "reference": "6f8113f57a508494ca36acbcfa2dc2d923c7ed5b",
  178. "shasum": ""
  179. },
  180. "require": {
  181. "php": ">=5.0.0"
  182. },
  183. "require-dev": {
  184. "phpunit/phpunit": "~4.8.35||~5.7"
  185. },
  186. "type": "library",
  187. "autoload": {
  188. "classmap": [
  189. "Mobile_Detect.php"
  190. ],
  191. "psr-0": {
  192. "Detection": "namespaced/"
  193. }
  194. },
  195. "notification-url": "https://packagist.org/downloads/",
  196. "license": [
  197. "MIT"
  198. ],
  199. "authors": [
  200. {
  201. "name": "Serban Ghita",
  202. "email": "serbanghita@gmail.com",
  203. "homepage": "http://mobiledetect.net",
  204. "role": "Developer"
  205. }
  206. ],
  207. "description": "Mobile_Detect is a lightweight PHP class for detecting mobile devices. It uses the User-Agent string combined with specific HTTP headers to detect the mobile environment.",
  208. "homepage": "https://github.com/serbanghita/Mobile-Detect",
  209. "keywords": [
  210. "detect mobile devices",
  211. "mobile",
  212. "mobile detect",
  213. "mobile detector",
  214. "php mobile detect"
  215. ],
  216. "time": "2019-09-18T18:44:20+00:00"
  217. },
  218. {
  219. "name": "nnnick/chartjs",
  220. "version": "v2.9.3",
  221. "source": {
  222. "type": "git",
  223. "url": "https://github.com/chartjs/Chart.js.git",
  224. "reference": "06f73dc3590084b2c464bf08189c7aee2b6b92d2"
  225. },
  226. "dist": {
  227. "type": "zip",
  228. "url": "https://api.github.com/repos/chartjs/Chart.js/zipball/06f73dc3590084b2c464bf08189c7aee2b6b92d2",
  229. "reference": "06f73dc3590084b2c464bf08189c7aee2b6b92d2",
  230. "shasum": ""
  231. },
  232. "require": {
  233. "php": ">=5.3.3"
  234. },
  235. "type": "library",
  236. "extra": {
  237. "branch-alias": {
  238. "release/2.0": "v2.0-dev"
  239. }
  240. },
  241. "notification-url": "https://packagist.org/downloads/",
  242. "license": [
  243. "MIT"
  244. ],
  245. "authors": [
  246. {
  247. "name": "NICK DOWNIE",
  248. "email": "hello@nickdownie.com"
  249. }
  250. ],
  251. "description": "Simple HTML5 charts using the canvas element.",
  252. "homepage": "https://www.chartjs.org/",
  253. "keywords": [
  254. "JS",
  255. "chart"
  256. ],
  257. "time": "2019-11-14T18:37:30+00:00"
  258. },
  259. {
  260. "name": "phpoffice/phpexcel",
  261. "version": "1.8.1",
  262. "source": {
  263. "type": "git",
  264. "url": "https://github.com/PHPOffice/PHPExcel.git",
  265. "reference": "372c7cbb695a6f6f1e62649381aeaa37e7e70b32"
  266. },
  267. "dist": {
  268. "type": "zip",
  269. "url": "https://api.github.com/repos/PHPOffice/PHPExcel/zipball/372c7cbb695a6f6f1e62649381aeaa37e7e70b32",
  270. "reference": "372c7cbb695a6f6f1e62649381aeaa37e7e70b32",
  271. "shasum": ""
  272. },
  273. "require": {
  274. "ext-xml": "*",
  275. "ext-xmlwriter": "*",
  276. "php": ">=5.2.0"
  277. },
  278. "type": "library",
  279. "autoload": {
  280. "psr-0": {
  281. "PHPExcel": "Classes/"
  282. }
  283. },
  284. "notification-url": "https://packagist.org/downloads/",
  285. "license": [
  286. "LGPL"
  287. ],
  288. "authors": [
  289. {
  290. "name": "Maarten Balliauw",
  291. "homepage": "http://blog.maartenballiauw.be"
  292. },
  293. {
  294. "name": "Mark Baker"
  295. },
  296. {
  297. "name": "Franck Lefevre",
  298. "homepage": "http://blog.rootslabs.net"
  299. },
  300. {
  301. "name": "Erik Tilt"
  302. }
  303. ],
  304. "description": "PHPExcel - OpenXML - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  305. "homepage": "http://phpexcel.codeplex.com",
  306. "keywords": [
  307. "OpenXML",
  308. "excel",
  309. "php",
  310. "spreadsheet",
  311. "xls",
  312. "xlsx"
  313. ],
  314. "abandoned": "phpoffice/phpspreadsheet",
  315. "time": "2015-05-01T07:00:55+00:00"
  316. },
  317. {
  318. "name": "psr/log",
  319. "version": "1.1.3",
  320. "source": {
  321. "type": "git",
  322. "url": "https://github.com/php-fig/log.git",
  323. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  324. },
  325. "dist": {
  326. "type": "zip",
  327. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  328. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  329. "shasum": ""
  330. },
  331. "require": {
  332. "php": ">=5.3.0"
  333. },
  334. "type": "library",
  335. "extra": {
  336. "branch-alias": {
  337. "dev-master": "1.1.x-dev"
  338. }
  339. },
  340. "autoload": {
  341. "psr-4": {
  342. "Psr\\Log\\": "Psr/Log/"
  343. }
  344. },
  345. "notification-url": "https://packagist.org/downloads/",
  346. "license": [
  347. "MIT"
  348. ],
  349. "authors": [
  350. {
  351. "name": "PHP-FIG",
  352. "homepage": "http://www.php-fig.org/"
  353. }
  354. ],
  355. "description": "Common interface for logging libraries",
  356. "homepage": "https://github.com/php-fig/log",
  357. "keywords": [
  358. "log",
  359. "psr",
  360. "psr-3"
  361. ],
  362. "time": "2020-03-23T09:12:05+00:00"
  363. },
  364. {
  365. "name": "restler/framework",
  366. "version": "3.0.0-RC6",
  367. "target-dir": "Luracast/Restler",
  368. "source": {
  369. "type": "git",
  370. "url": "https://github.com/Luracast/Restler-Framework.git",
  371. "reference": "d52e61600d153bca60a287c35141c5c01863127b"
  372. },
  373. "dist": {
  374. "type": "zip",
  375. "url": "https://api.github.com/repos/Luracast/Restler-Framework/zipball/d52e61600d153bca60a287c35141c5c01863127b",
  376. "reference": "d52e61600d153bca60a287c35141c5c01863127b",
  377. "shasum": ""
  378. },
  379. "require": {
  380. "php": ">=5.3.0"
  381. },
  382. "replace": {
  383. "luracast/restler": "3.*"
  384. },
  385. "suggest": {
  386. "bshaffer/oauth2-server-php": "If you want to use OAuth2 for authentication",
  387. "illuminate/view": "If you want to use laravel blade templates with Html format",
  388. "mustache/mustache": "If you want to use mustache/handlebar templates with Html format",
  389. "rodneyrehm/plist": "If you need Apple plist binary/xml format",
  390. "symfony/yaml": "If you need YAML format",
  391. "twig/twig": "If you want to use twig templates with Html format",
  392. "zendframework/zendamf": "If you need AMF format"
  393. },
  394. "type": "library",
  395. "extra": {
  396. "branch-alias": {
  397. "master": "v3.0.x-dev"
  398. }
  399. },
  400. "autoload": {
  401. "psr-0": {
  402. "Luracast\\Restler": ""
  403. }
  404. },
  405. "notification-url": "https://packagist.org/downloads/",
  406. "license": [
  407. "LGPL-2.1"
  408. ],
  409. "authors": [
  410. {
  411. "name": "Luracast",
  412. "email": "arul@luracast.com"
  413. }
  414. ],
  415. "description": "Just the Restler Framework without the tests and examples",
  416. "homepage": "http://luracast.com/products/restler/",
  417. "keywords": [
  418. "api",
  419. "framework",
  420. "rest",
  421. "server"
  422. ],
  423. "time": "2020-02-13T16:05:12+00:00"
  424. },
  425. {
  426. "name": "stripe/stripe-php",
  427. "version": "v6.43.1",
  428. "source": {
  429. "type": "git",
  430. "url": "https://github.com/stripe/stripe-php.git",
  431. "reference": "42fcdaf99c44bb26937223f8eae1f263491d5ab8"
  432. },
  433. "dist": {
  434. "type": "zip",
  435. "url": "https://api.github.com/repos/stripe/stripe-php/zipball/42fcdaf99c44bb26937223f8eae1f263491d5ab8",
  436. "reference": "42fcdaf99c44bb26937223f8eae1f263491d5ab8",
  437. "shasum": ""
  438. },
  439. "require": {
  440. "ext-curl": "*",
  441. "ext-json": "*",
  442. "ext-mbstring": "*",
  443. "php": ">=5.4.0"
  444. },
  445. "require-dev": {
  446. "php-coveralls/php-coveralls": "1.*",
  447. "phpunit/phpunit": "~4.0",
  448. "squizlabs/php_codesniffer": "~2.0",
  449. "symfony/process": "~2.8"
  450. },
  451. "type": "library",
  452. "extra": {
  453. "branch-alias": {
  454. "dev-master": "2.0-dev"
  455. }
  456. },
  457. "autoload": {
  458. "psr-4": {
  459. "Stripe\\": "lib/"
  460. }
  461. },
  462. "notification-url": "https://packagist.org/downloads/",
  463. "license": [
  464. "MIT"
  465. ],
  466. "authors": [
  467. {
  468. "name": "Stripe and contributors",
  469. "homepage": "https://github.com/stripe/stripe-php/contributors"
  470. }
  471. ],
  472. "description": "Stripe PHP Library",
  473. "homepage": "https://stripe.com/",
  474. "keywords": [
  475. "api",
  476. "payment processing",
  477. "stripe"
  478. ],
  479. "time": "2019-08-29T16:56:12+00:00"
  480. },
  481. {
  482. "name": "symfony/polyfill-mbstring",
  483. "version": "v1.18.1",
  484. "source": {
  485. "type": "git",
  486. "url": "https://github.com/symfony/polyfill-mbstring.git",
  487. "reference": "a6977d63bf9a0ad4c65cd352709e230876f9904a"
  488. },
  489. "dist": {
  490. "type": "zip",
  491. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/a6977d63bf9a0ad4c65cd352709e230876f9904a",
  492. "reference": "a6977d63bf9a0ad4c65cd352709e230876f9904a",
  493. "shasum": ""
  494. },
  495. "require": {
  496. "php": ">=5.3.3"
  497. },
  498. "suggest": {
  499. "ext-mbstring": "For best performance"
  500. },
  501. "type": "library",
  502. "extra": {
  503. "branch-alias": {
  504. "dev-master": "1.18-dev"
  505. },
  506. "thanks": {
  507. "name": "symfony/polyfill",
  508. "url": "https://github.com/symfony/polyfill"
  509. }
  510. },
  511. "autoload": {
  512. "psr-4": {
  513. "Symfony\\Polyfill\\Mbstring\\": ""
  514. },
  515. "files": [
  516. "bootstrap.php"
  517. ]
  518. },
  519. "notification-url": "https://packagist.org/downloads/",
  520. "license": [
  521. "MIT"
  522. ],
  523. "authors": [
  524. {
  525. "name": "Nicolas Grekas",
  526. "email": "p@tchwork.com"
  527. },
  528. {
  529. "name": "Symfony Community",
  530. "homepage": "https://symfony.com/contributors"
  531. }
  532. ],
  533. "description": "Symfony polyfill for the Mbstring extension",
  534. "homepage": "https://symfony.com",
  535. "keywords": [
  536. "compatibility",
  537. "mbstring",
  538. "polyfill",
  539. "portable",
  540. "shim"
  541. ],
  542. "funding": [
  543. {
  544. "url": "https://symfony.com/sponsor",
  545. "type": "custom"
  546. },
  547. {
  548. "url": "https://github.com/fabpot",
  549. "type": "github"
  550. },
  551. {
  552. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  553. "type": "tidelift"
  554. }
  555. ],
  556. "time": "2020-07-14T12:35:20+00:00"
  557. },
  558. {
  559. "name": "symfony/var-dumper",
  560. "version": "v3.0.0",
  561. "source": {
  562. "type": "git",
  563. "url": "https://github.com/symfony/var-dumper.git",
  564. "reference": "737e07704cca83f9dd0af926d45ce27eedc25657"
  565. },
  566. "dist": {
  567. "type": "zip",
  568. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/737e07704cca83f9dd0af926d45ce27eedc25657",
  569. "reference": "737e07704cca83f9dd0af926d45ce27eedc25657",
  570. "shasum": ""
  571. },
  572. "require": {
  573. "php": ">=5.5.9",
  574. "symfony/polyfill-mbstring": "~1.0"
  575. },
  576. "require-dev": {
  577. "twig/twig": "~1.20|~2.0"
  578. },
  579. "suggest": {
  580. "ext-symfony_debug": ""
  581. },
  582. "type": "library",
  583. "extra": {
  584. "branch-alias": {
  585. "dev-master": "3.0-dev"
  586. }
  587. },
  588. "autoload": {
  589. "files": [
  590. "Resources/functions/dump.php"
  591. ],
  592. "psr-4": {
  593. "Symfony\\Component\\VarDumper\\": ""
  594. },
  595. "exclude-from-classmap": [
  596. "/Tests/"
  597. ]
  598. },
  599. "notification-url": "https://packagist.org/downloads/",
  600. "license": [
  601. "MIT"
  602. ],
  603. "authors": [
  604. {
  605. "name": "Nicolas Grekas",
  606. "email": "p@tchwork.com"
  607. },
  608. {
  609. "name": "Symfony Community",
  610. "homepage": "https://symfony.com/contributors"
  611. }
  612. ],
  613. "description": "Symfony mechanism for exploring and dumping PHP variables",
  614. "homepage": "https://symfony.com",
  615. "keywords": [
  616. "debug",
  617. "dump"
  618. ],
  619. "time": "2015-11-18T13:48:51+00:00"
  620. },
  621. {
  622. "name": "tecnickcom/tcpdf",
  623. "version": "6.3.2",
  624. "source": {
  625. "type": "git",
  626. "url": "https://github.com/tecnickcom/TCPDF.git",
  627. "reference": "9fde7bb9b404b945e7ea88fb7eccd23d9a4e324b"
  628. },
  629. "dist": {
  630. "type": "zip",
  631. "url": "https://api.github.com/repos/tecnickcom/TCPDF/zipball/9fde7bb9b404b945e7ea88fb7eccd23d9a4e324b",
  632. "reference": "9fde7bb9b404b945e7ea88fb7eccd23d9a4e324b",
  633. "shasum": ""
  634. },
  635. "require": {
  636. "php": ">=5.3.0"
  637. },
  638. "type": "library",
  639. "autoload": {
  640. "classmap": [
  641. "config",
  642. "include",
  643. "tcpdf.php",
  644. "tcpdf_parser.php",
  645. "tcpdf_import.php",
  646. "tcpdf_barcodes_1d.php",
  647. "tcpdf_barcodes_2d.php",
  648. "include/tcpdf_colors.php",
  649. "include/tcpdf_filters.php",
  650. "include/tcpdf_font_data.php",
  651. "include/tcpdf_fonts.php",
  652. "include/tcpdf_images.php",
  653. "include/tcpdf_static.php",
  654. "include/barcodes/datamatrix.php",
  655. "include/barcodes/pdf417.php",
  656. "include/barcodes/qrcode.php"
  657. ]
  658. },
  659. "notification-url": "https://packagist.org/downloads/",
  660. "license": [
  661. "LGPL-3.0"
  662. ],
  663. "authors": [
  664. {
  665. "name": "Nicola Asuni",
  666. "email": "info@tecnick.com",
  667. "role": "lead"
  668. }
  669. ],
  670. "description": "TCPDF is a PHP class for generating PDF documents and barcodes.",
  671. "homepage": "http://www.tcpdf.org/",
  672. "keywords": [
  673. "PDFD32000-2008",
  674. "TCPDF",
  675. "barcodes",
  676. "datamatrix",
  677. "pdf",
  678. "pdf417",
  679. "qrcode"
  680. ],
  681. "time": "2019-09-20T09:35:01+00:00"
  682. }
  683. ],
  684. "packages-dev": [
  685. {
  686. "name": "doctrine/instantiator",
  687. "version": "1.0.5",
  688. "source": {
  689. "type": "git",
  690. "url": "https://github.com/doctrine/instantiator.git",
  691. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
  692. },
  693. "dist": {
  694. "type": "zip",
  695. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",
  696. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
  697. "shasum": ""
  698. },
  699. "require": {
  700. "php": ">=5.3,<8.0-DEV"
  701. },
  702. "require-dev": {
  703. "athletic/athletic": "~0.1.8",
  704. "ext-pdo": "*",
  705. "ext-phar": "*",
  706. "phpunit/phpunit": "~4.0",
  707. "squizlabs/php_codesniffer": "~2.0"
  708. },
  709. "type": "library",
  710. "extra": {
  711. "branch-alias": {
  712. "dev-master": "1.0.x-dev"
  713. }
  714. },
  715. "autoload": {
  716. "psr-4": {
  717. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  718. }
  719. },
  720. "notification-url": "https://packagist.org/downloads/",
  721. "license": [
  722. "MIT"
  723. ],
  724. "authors": [
  725. {
  726. "name": "Marco Pivetta",
  727. "email": "ocramius@gmail.com",
  728. "homepage": "http://ocramius.github.com/"
  729. }
  730. ],
  731. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  732. "homepage": "https://github.com/doctrine/instantiator",
  733. "keywords": [
  734. "constructor",
  735. "instantiate"
  736. ],
  737. "time": "2015-06-14T21:17:01+00:00"
  738. },
  739. {
  740. "name": "php-parallel-lint/php-console-color",
  741. "version": "v0.2",
  742. "source": {
  743. "type": "git",
  744. "url": "https://github.com/php-parallel-lint/PHP-Console-Color.git",
  745. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191"
  746. },
  747. "dist": {
  748. "type": "zip",
  749. "url": "https://api.github.com/repos/php-parallel-lint/PHP-Console-Color/zipball/d5deaecff52a0d61ccb613bb3804088da0307191",
  750. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191",
  751. "shasum": ""
  752. },
  753. "require": {
  754. "php": ">=5.4.0"
  755. },
  756. "require-dev": {
  757. "jakub-onderka/php-code-style": "1.0",
  758. "jakub-onderka/php-parallel-lint": "1.0",
  759. "jakub-onderka/php-var-dump-check": "0.*",
  760. "phpunit/phpunit": "~4.3",
  761. "squizlabs/php_codesniffer": "1.*"
  762. },
  763. "type": "library",
  764. "autoload": {
  765. "psr-4": {
  766. "JakubOnderka\\PhpConsoleColor\\": "src/"
  767. }
  768. },
  769. "notification-url": "https://packagist.org/downloads/",
  770. "license": [
  771. "BSD-2-Clause"
  772. ],
  773. "authors": [
  774. {
  775. "name": "Jakub Onderka",
  776. "email": "jakub.onderka@gmail.com"
  777. }
  778. ],
  779. "time": "2018-09-29T17:23:10+00:00"
  780. },
  781. {
  782. "name": "php-parallel-lint/php-console-highlighter",
  783. "version": "v0.5",
  784. "source": {
  785. "type": "git",
  786. "url": "https://github.com/php-parallel-lint/PHP-Console-Highlighter.git",
  787. "reference": "21bf002f077b177f056d8cb455c5ed573adfdbb8"
  788. },
  789. "dist": {
  790. "type": "zip",
  791. "url": "https://api.github.com/repos/php-parallel-lint/PHP-Console-Highlighter/zipball/21bf002f077b177f056d8cb455c5ed573adfdbb8",
  792. "reference": "21bf002f077b177f056d8cb455c5ed573adfdbb8",
  793. "shasum": ""
  794. },
  795. "require": {
  796. "ext-tokenizer": "*",
  797. "php": ">=5.4.0",
  798. "php-parallel-lint/php-console-color": "~0.2"
  799. },
  800. "replace": {
  801. "jakub-onderka/php-console-highlighter": "*"
  802. },
  803. "require-dev": {
  804. "php-parallel-lint/php-code-style": "~1.0",
  805. "php-parallel-lint/php-parallel-lint": "~1.0",
  806. "php-parallel-lint/php-var-dump-check": "~0.1",
  807. "phpunit/phpunit": "~4.0",
  808. "squizlabs/php_codesniffer": "~1.5"
  809. },
  810. "type": "library",
  811. "autoload": {
  812. "psr-4": {
  813. "JakubOnderka\\PhpConsoleHighlighter\\": "src/"
  814. }
  815. },
  816. "notification-url": "https://packagist.org/downloads/",
  817. "license": [
  818. "MIT"
  819. ],
  820. "authors": [
  821. {
  822. "name": "Jakub Onderka",
  823. "email": "acci@acci.cz",
  824. "homepage": "http://www.acci.cz/"
  825. }
  826. ],
  827. "description": "Highlight PHP code in terminal",
  828. "time": "2020-05-13T07:37:49+00:00"
  829. },
  830. {
  831. "name": "php-parallel-lint/php-parallel-lint",
  832. "version": "v0.9.2",
  833. "source": {
  834. "type": "git",
  835. "url": "https://github.com/php-parallel-lint/PHP-Parallel-Lint.git",
  836. "reference": "2ead2e4043ab125bee9554f356e0a86742c2d4fa"
  837. },
  838. "dist": {
  839. "type": "zip",
  840. "url": "https://api.github.com/repos/php-parallel-lint/PHP-Parallel-Lint/zipball/2ead2e4043ab125bee9554f356e0a86742c2d4fa",
  841. "reference": "2ead2e4043ab125bee9554f356e0a86742c2d4fa",
  842. "shasum": ""
  843. },
  844. "require": {
  845. "php": ">=5.3.3"
  846. },
  847. "require-dev": {
  848. "jakub-onderka/php-console-highlighter": "~0.3",
  849. "nette/tester": "~1.3"
  850. },
  851. "suggest": {
  852. "jakub-onderka/php-console-highlighter": "Highlight syntax in code snippet"
  853. },
  854. "bin": [
  855. "parallel-lint"
  856. ],
  857. "type": "library",
  858. "autoload": {
  859. "classmap": [
  860. "./"
  861. ]
  862. },
  863. "notification-url": "https://packagist.org/downloads/",
  864. "license": [
  865. "BSD-2-Clause"
  866. ],
  867. "authors": [
  868. {
  869. "name": "Jakub Onderka",
  870. "email": "jakub.onderka@gmail.com"
  871. }
  872. ],
  873. "description": "This tool check syntax of PHP files about 20x faster than serial check.",
  874. "homepage": "https://github.com/JakubOnderka/PHP-Parallel-Lint",
  875. "time": "2015-12-15T10:42:16+00:00"
  876. },
  877. {
  878. "name": "phpdocumentor/reflection-common",
  879. "version": "1.0.1",
  880. "source": {
  881. "type": "git",
  882. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  883. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
  884. },
  885. "dist": {
  886. "type": "zip",
  887. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  888. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  889. "shasum": ""
  890. },
  891. "require": {
  892. "php": ">=5.5"
  893. },
  894. "require-dev": {
  895. "phpunit/phpunit": "^4.6"
  896. },
  897. "type": "library",
  898. "extra": {
  899. "branch-alias": {
  900. "dev-master": "1.0.x-dev"
  901. }
  902. },
  903. "autoload": {
  904. "psr-4": {
  905. "phpDocumentor\\Reflection\\": [
  906. "src"
  907. ]
  908. }
  909. },
  910. "notification-url": "https://packagist.org/downloads/",
  911. "license": [
  912. "MIT"
  913. ],
  914. "authors": [
  915. {
  916. "name": "Jaap van Otterdijk",
  917. "email": "opensource@ijaap.nl"
  918. }
  919. ],
  920. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  921. "homepage": "http://www.phpdoc.org",
  922. "keywords": [
  923. "FQSEN",
  924. "phpDocumentor",
  925. "phpdoc",
  926. "reflection",
  927. "static analysis"
  928. ],
  929. "time": "2017-09-11T18:02:19+00:00"
  930. },
  931. {
  932. "name": "phpdocumentor/reflection-docblock",
  933. "version": "4.3.2",
  934. "source": {
  935. "type": "git",
  936. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  937. "reference": "b83ff7cfcfee7827e1e78b637a5904fe6a96698e"
  938. },
  939. "dist": {
  940. "type": "zip",
  941. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/b83ff7cfcfee7827e1e78b637a5904fe6a96698e",
  942. "reference": "b83ff7cfcfee7827e1e78b637a5904fe6a96698e",
  943. "shasum": ""
  944. },
  945. "require": {
  946. "php": "^7.0",
  947. "phpdocumentor/reflection-common": "^1.0.0 || ^2.0.0",
  948. "phpdocumentor/type-resolver": "~0.4 || ^1.0.0",
  949. "webmozart/assert": "^1.0"
  950. },
  951. "require-dev": {
  952. "doctrine/instantiator": "^1.0.5",
  953. "mockery/mockery": "^1.0",
  954. "phpunit/phpunit": "^6.4"
  955. },
  956. "type": "library",
  957. "extra": {
  958. "branch-alias": {
  959. "dev-master": "4.x-dev"
  960. }
  961. },
  962. "autoload": {
  963. "psr-4": {
  964. "phpDocumentor\\Reflection\\": [
  965. "src/"
  966. ]
  967. }
  968. },
  969. "notification-url": "https://packagist.org/downloads/",
  970. "license": [
  971. "MIT"
  972. ],
  973. "authors": [
  974. {
  975. "name": "Mike van Riel",
  976. "email": "me@mikevanriel.com"
  977. }
  978. ],
  979. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  980. "time": "2019-09-12T14:27:41+00:00"
  981. },
  982. {
  983. "name": "phpdocumentor/type-resolver",
  984. "version": "0.5.1",
  985. "source": {
  986. "type": "git",
  987. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  988. "reference": "cf842904952e64e703800d094cdf34e715a8a3ae"
  989. },
  990. "dist": {
  991. "type": "zip",
  992. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/cf842904952e64e703800d094cdf34e715a8a3ae",
  993. "reference": "cf842904952e64e703800d094cdf34e715a8a3ae",
  994. "shasum": ""
  995. },
  996. "require": {
  997. "php": "^7.0",
  998. "phpdocumentor/reflection-common": "^1.0"
  999. },
  1000. "require-dev": {
  1001. "mockery/mockery": "^1.0",
  1002. "phpunit/phpunit": "^6.4"
  1003. },
  1004. "type": "library",
  1005. "extra": {
  1006. "branch-alias": {
  1007. "dev-master": "1.0.x-dev"
  1008. }
  1009. },
  1010. "autoload": {
  1011. "psr-4": {
  1012. "phpDocumentor\\Reflection\\": "src"
  1013. }
  1014. },
  1015. "notification-url": "https://packagist.org/downloads/",
  1016. "license": [
  1017. "MIT"
  1018. ],
  1019. "authors": [
  1020. {
  1021. "name": "Mike van Riel",
  1022. "email": "me@mikevanriel.com"
  1023. }
  1024. ],
  1025. "time": "2017-12-30T13:23:38+00:00"
  1026. },
  1027. {
  1028. "name": "phpspec/prophecy",
  1029. "version": "1.9.0",
  1030. "source": {
  1031. "type": "git",
  1032. "url": "https://github.com/phpspec/prophecy.git",
  1033. "reference": "f6811d96d97bdf400077a0cc100ae56aa32b9203"
  1034. },
  1035. "dist": {
  1036. "type": "zip",
  1037. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/f6811d96d97bdf400077a0cc100ae56aa32b9203",
  1038. "reference": "f6811d96d97bdf400077a0cc100ae56aa32b9203",
  1039. "shasum": ""
  1040. },
  1041. "require": {
  1042. "doctrine/instantiator": "^1.0.2",
  1043. "php": "^5.3|^7.0",
  1044. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0|^5.0",
  1045. "sebastian/comparator": "^1.1|^2.0|^3.0",
  1046. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  1047. },
  1048. "require-dev": {
  1049. "phpspec/phpspec": "^2.5|^3.2",
  1050. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  1051. },
  1052. "type": "library",
  1053. "extra": {
  1054. "branch-alias": {
  1055. "dev-master": "1.8.x-dev"
  1056. }
  1057. },
  1058. "autoload": {
  1059. "psr-4": {
  1060. "Prophecy\\": "src/Prophecy"
  1061. }
  1062. },
  1063. "notification-url": "https://packagist.org/downloads/",
  1064. "license": [
  1065. "MIT"
  1066. ],
  1067. "authors": [
  1068. {
  1069. "name": "Konstantin Kudryashov",
  1070. "email": "ever.zet@gmail.com",
  1071. "homepage": "http://everzet.com"
  1072. },
  1073. {
  1074. "name": "Marcello Duarte",
  1075. "email": "marcello.duarte@gmail.com"
  1076. }
  1077. ],
  1078. "description": "Highly opinionated mocking framework for PHP 5.3+",
  1079. "homepage": "https://github.com/phpspec/prophecy",
  1080. "keywords": [
  1081. "Double",
  1082. "Dummy",
  1083. "fake",
  1084. "mock",
  1085. "spy",
  1086. "stub"
  1087. ],
  1088. "time": "2019-10-03T11:07:50+00:00"
  1089. },
  1090. {
  1091. "name": "phpunit/php-code-coverage",
  1092. "version": "2.2.4",
  1093. "source": {
  1094. "type": "git",
  1095. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  1096. "reference": "eabf68b476ac7d0f73793aada060f1c1a9bf8979"
  1097. },
  1098. "dist": {
  1099. "type": "zip",
  1100. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/eabf68b476ac7d0f73793aada060f1c1a9bf8979",
  1101. "reference": "eabf68b476ac7d0f73793aada060f1c1a9bf8979",
  1102. "shasum": ""
  1103. },
  1104. "require": {
  1105. "php": ">=5.3.3",
  1106. "phpunit/php-file-iterator": "~1.3",
  1107. "phpunit/php-text-template": "~1.2",
  1108. "phpunit/php-token-stream": "~1.3",
  1109. "sebastian/environment": "^1.3.2",
  1110. "sebastian/version": "~1.0"
  1111. },
  1112. "require-dev": {
  1113. "ext-xdebug": ">=2.1.4",
  1114. "phpunit/phpunit": "~4"
  1115. },
  1116. "suggest": {
  1117. "ext-dom": "*",
  1118. "ext-xdebug": ">=2.2.1",
  1119. "ext-xmlwriter": "*"
  1120. },
  1121. "type": "library",
  1122. "extra": {
  1123. "branch-alias": {
  1124. "dev-master": "2.2.x-dev"
  1125. }
  1126. },
  1127. "autoload": {
  1128. "classmap": [
  1129. "src/"
  1130. ]
  1131. },
  1132. "notification-url": "https://packagist.org/downloads/",
  1133. "license": [
  1134. "BSD-3-Clause"
  1135. ],
  1136. "authors": [
  1137. {
  1138. "name": "Sebastian Bergmann",
  1139. "email": "sb@sebastian-bergmann.de",
  1140. "role": "lead"
  1141. }
  1142. ],
  1143. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  1144. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  1145. "keywords": [
  1146. "coverage",
  1147. "testing",
  1148. "xunit"
  1149. ],
  1150. "time": "2015-10-06T15:47:00+00:00"
  1151. },
  1152. {
  1153. "name": "phpunit/php-file-iterator",
  1154. "version": "1.4.5",
  1155. "source": {
  1156. "type": "git",
  1157. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  1158. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
  1159. },
  1160. "dist": {
  1161. "type": "zip",
  1162. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
  1163. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
  1164. "shasum": ""
  1165. },
  1166. "require": {
  1167. "php": ">=5.3.3"
  1168. },
  1169. "type": "library",
  1170. "extra": {
  1171. "branch-alias": {
  1172. "dev-master": "1.4.x-dev"
  1173. }
  1174. },
  1175. "autoload": {
  1176. "classmap": [
  1177. "src/"
  1178. ]
  1179. },
  1180. "notification-url": "https://packagist.org/downloads/",
  1181. "license": [
  1182. "BSD-3-Clause"
  1183. ],
  1184. "authors": [
  1185. {
  1186. "name": "Sebastian Bergmann",
  1187. "email": "sb@sebastian-bergmann.de",
  1188. "role": "lead"
  1189. }
  1190. ],
  1191. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  1192. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  1193. "keywords": [
  1194. "filesystem",
  1195. "iterator"
  1196. ],
  1197. "time": "2017-11-27T13:52:08+00:00"
  1198. },
  1199. {
  1200. "name": "phpunit/php-text-template",
  1201. "version": "1.2.1",
  1202. "source": {
  1203. "type": "git",
  1204. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  1205. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  1206. },
  1207. "dist": {
  1208. "type": "zip",
  1209. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  1210. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  1211. "shasum": ""
  1212. },
  1213. "require": {
  1214. "php": ">=5.3.3"
  1215. },
  1216. "type": "library",
  1217. "autoload": {
  1218. "classmap": [
  1219. "src/"
  1220. ]
  1221. },
  1222. "notification-url": "https://packagist.org/downloads/",
  1223. "license": [
  1224. "BSD-3-Clause"
  1225. ],
  1226. "authors": [
  1227. {
  1228. "name": "Sebastian Bergmann",
  1229. "email": "sebastian@phpunit.de",
  1230. "role": "lead"
  1231. }
  1232. ],
  1233. "description": "Simple template engine.",
  1234. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  1235. "keywords": [
  1236. "template"
  1237. ],
  1238. "time": "2015-06-21T13:50:34+00:00"
  1239. },
  1240. {
  1241. "name": "phpunit/php-timer",
  1242. "version": "1.0.9",
  1243. "source": {
  1244. "type": "git",
  1245. "url": "https://github.com/sebastianbergmann/php-timer.git",
  1246. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  1247. },
  1248. "dist": {
  1249. "type": "zip",
  1250. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  1251. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  1252. "shasum": ""
  1253. },
  1254. "require": {
  1255. "php": "^5.3.3 || ^7.0"
  1256. },
  1257. "require-dev": {
  1258. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  1259. },
  1260. "type": "library",
  1261. "extra": {
  1262. "branch-alias": {
  1263. "dev-master": "1.0-dev"
  1264. }
  1265. },
  1266. "autoload": {
  1267. "classmap": [
  1268. "src/"
  1269. ]
  1270. },
  1271. "notification-url": "https://packagist.org/downloads/",
  1272. "license": [
  1273. "BSD-3-Clause"
  1274. ],
  1275. "authors": [
  1276. {
  1277. "name": "Sebastian Bergmann",
  1278. "email": "sb@sebastian-bergmann.de",
  1279. "role": "lead"
  1280. }
  1281. ],
  1282. "description": "Utility class for timing",
  1283. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  1284. "keywords": [
  1285. "timer"
  1286. ],
  1287. "time": "2017-02-26T11:10:40+00:00"
  1288. },
  1289. {
  1290. "name": "phpunit/php-token-stream",
  1291. "version": "1.4.12",
  1292. "source": {
  1293. "type": "git",
  1294. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  1295. "reference": "1ce90ba27c42e4e44e6d8458241466380b51fa16"
  1296. },
  1297. "dist": {
  1298. "type": "zip",
  1299. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/1ce90ba27c42e4e44e6d8458241466380b51fa16",
  1300. "reference": "1ce90ba27c42e4e44e6d8458241466380b51fa16",
  1301. "shasum": ""
  1302. },
  1303. "require": {
  1304. "ext-tokenizer": "*",
  1305. "php": ">=5.3.3"
  1306. },
  1307. "require-dev": {
  1308. "phpunit/phpunit": "~4.2"
  1309. },
  1310. "type": "library",
  1311. "extra": {
  1312. "branch-alias": {
  1313. "dev-master": "1.4-dev"
  1314. }
  1315. },
  1316. "autoload": {
  1317. "classmap": [
  1318. "src/"
  1319. ]
  1320. },
  1321. "notification-url": "https://packagist.org/downloads/",
  1322. "license": [
  1323. "BSD-3-Clause"
  1324. ],
  1325. "authors": [
  1326. {
  1327. "name": "Sebastian Bergmann",
  1328. "email": "sebastian@phpunit.de"
  1329. }
  1330. ],
  1331. "description": "Wrapper around PHP's tokenizer extension.",
  1332. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  1333. "keywords": [
  1334. "tokenizer"
  1335. ],
  1336. "abandoned": true,
  1337. "time": "2017-12-04T08:55:13+00:00"
  1338. },
  1339. {
  1340. "name": "phpunit/phpunit",
  1341. "version": "4.8.36",
  1342. "source": {
  1343. "type": "git",
  1344. "url": "https://github.com/sebastianbergmann/phpunit.git",
  1345. "reference": "46023de9a91eec7dfb06cc56cb4e260017298517"
  1346. },
  1347. "dist": {
  1348. "type": "zip",
  1349. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/46023de9a91eec7dfb06cc56cb4e260017298517",
  1350. "reference": "46023de9a91eec7dfb06cc56cb4e260017298517",
  1351. "shasum": ""
  1352. },
  1353. "require": {
  1354. "ext-dom": "*",
  1355. "ext-json": "*",
  1356. "ext-pcre": "*",
  1357. "ext-reflection": "*",
  1358. "ext-spl": "*",
  1359. "php": ">=5.3.3",
  1360. "phpspec/prophecy": "^1.3.1",
  1361. "phpunit/php-code-coverage": "~2.1",
  1362. "phpunit/php-file-iterator": "~1.4",
  1363. "phpunit/php-text-template": "~1.2",
  1364. "phpunit/php-timer": "^1.0.6",
  1365. "phpunit/phpunit-mock-objects": "~2.3",
  1366. "sebastian/comparator": "~1.2.2",
  1367. "sebastian/diff": "~1.2",
  1368. "sebastian/environment": "~1.3",
  1369. "sebastian/exporter": "~1.2",
  1370. "sebastian/global-state": "~1.0",
  1371. "sebastian/version": "~1.0",
  1372. "symfony/yaml": "~2.1|~3.0"
  1373. },
  1374. "suggest": {
  1375. "phpunit/php-invoker": "~1.1"
  1376. },
  1377. "bin": [
  1378. "phpunit"
  1379. ],
  1380. "type": "library",
  1381. "extra": {
  1382. "branch-alias": {
  1383. "dev-master": "4.8.x-dev"
  1384. }
  1385. },
  1386. "autoload": {
  1387. "classmap": [
  1388. "src/"
  1389. ]
  1390. },
  1391. "notification-url": "https://packagist.org/downloads/",
  1392. "license": [
  1393. "BSD-3-Clause"
  1394. ],
  1395. "authors": [
  1396. {
  1397. "name": "Sebastian Bergmann",
  1398. "email": "sebastian@phpunit.de",
  1399. "role": "lead"
  1400. }
  1401. ],
  1402. "description": "The PHP Unit Testing framework.",
  1403. "homepage": "https://phpunit.de/",
  1404. "keywords": [
  1405. "phpunit",
  1406. "testing",
  1407. "xunit"
  1408. ],
  1409. "time": "2017-06-21T08:07:12+00:00"
  1410. },
  1411. {
  1412. "name": "phpunit/phpunit-mock-objects",
  1413. "version": "2.3.8",
  1414. "source": {
  1415. "type": "git",
  1416. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  1417. "reference": "ac8e7a3db35738d56ee9a76e78a4e03d97628983"
  1418. },
  1419. "dist": {
  1420. "type": "zip",
  1421. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/ac8e7a3db35738d56ee9a76e78a4e03d97628983",
  1422. "reference": "ac8e7a3db35738d56ee9a76e78a4e03d97628983",
  1423. "shasum": ""
  1424. },
  1425. "require": {
  1426. "doctrine/instantiator": "^1.0.2",
  1427. "php": ">=5.3.3",
  1428. "phpunit/php-text-template": "~1.2",
  1429. "sebastian/exporter": "~1.2"
  1430. },
  1431. "require-dev": {
  1432. "phpunit/phpunit": "~4.4"
  1433. },
  1434. "suggest": {
  1435. "ext-soap": "*"
  1436. },
  1437. "type": "library",
  1438. "extra": {
  1439. "branch-alias": {
  1440. "dev-master": "2.3.x-dev"
  1441. }
  1442. },
  1443. "autoload": {
  1444. "classmap": [
  1445. "src/"
  1446. ]
  1447. },
  1448. "notification-url": "https://packagist.org/downloads/",
  1449. "license": [
  1450. "BSD-3-Clause"
  1451. ],
  1452. "authors": [
  1453. {
  1454. "name": "Sebastian Bergmann",
  1455. "email": "sb@sebastian-bergmann.de",
  1456. "role": "lead"
  1457. }
  1458. ],
  1459. "description": "Mock Object library for PHPUnit",
  1460. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  1461. "keywords": [
  1462. "mock",
  1463. "xunit"
  1464. ],
  1465. "abandoned": true,
  1466. "time": "2015-10-02T06:51:40+00:00"
  1467. },
  1468. {
  1469. "name": "phpunit/phpunit-selenium",
  1470. "version": "2.0.3",
  1471. "source": {
  1472. "type": "git",
  1473. "url": "https://github.com/giorgiosironi/phpunit-selenium.git",
  1474. "reference": "013037eeea481657d236431634042648797e1da8"
  1475. },
  1476. "dist": {
  1477. "type": "zip",
  1478. "url": "https://api.github.com/repos/giorgiosironi/phpunit-selenium/zipball/013037eeea481657d236431634042648797e1da8",
  1479. "reference": "013037eeea481657d236431634042648797e1da8",
  1480. "shasum": ""
  1481. },
  1482. "require": {
  1483. "ext-curl": "*",
  1484. "ext-dom": "*",
  1485. "php": ">=5.3.3",
  1486. "phpunit/phpunit": "~4.8",
  1487. "sebastian/comparator": "~1.0"
  1488. },
  1489. "require-dev": {
  1490. "phing/phing": "2.*"
  1491. },
  1492. "type": "library",
  1493. "autoload": {
  1494. "classmap": [
  1495. "PHPUnit/"
  1496. ]
  1497. },
  1498. "notification-url": "https://packagist.org/downloads/",
  1499. "include-path": [
  1500. ""
  1501. ],
  1502. "license": [
  1503. "BSD-3-Clause"
  1504. ],
  1505. "authors": [
  1506. {
  1507. "name": "Giorgio Sironi",
  1508. "email": "info@giorgiosironi.com",
  1509. "role": "developer"
  1510. },
  1511. {
  1512. "name": "Ivan Kurnosov",
  1513. "email": "zerkms@zerkms.com",
  1514. "role": "developer"
  1515. },
  1516. {
  1517. "name": "Sebastian Bergmann",
  1518. "email": "sb@sebastian-bergmann.de",
  1519. "role": "original developer"
  1520. }
  1521. ],
  1522. "description": "Selenium Server integration for PHPUnit",
  1523. "homepage": "http://www.phpunit.de/",
  1524. "keywords": [
  1525. "phpunit",
  1526. "selenium",
  1527. "testing",
  1528. "xunit"
  1529. ],
  1530. "time": "2017-01-23T22:15:32+00:00"
  1531. },
  1532. {
  1533. "name": "sebastian/comparator",
  1534. "version": "1.2.4",
  1535. "source": {
  1536. "type": "git",
  1537. "url": "https://github.com/sebastianbergmann/comparator.git",
  1538. "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be"
  1539. },
  1540. "dist": {
  1541. "type": "zip",
  1542. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2b7424b55f5047b47ac6e5ccb20b2aea4011d9be",
  1543. "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be",
  1544. "shasum": ""
  1545. },
  1546. "require": {
  1547. "php": ">=5.3.3",
  1548. "sebastian/diff": "~1.2",
  1549. "sebastian/exporter": "~1.2 || ~2.0"
  1550. },
  1551. "require-dev": {
  1552. "phpunit/phpunit": "~4.4"
  1553. },
  1554. "type": "library",
  1555. "extra": {
  1556. "branch-alias": {
  1557. "dev-master": "1.2.x-dev"
  1558. }
  1559. },
  1560. "autoload": {
  1561. "classmap": [
  1562. "src/"
  1563. ]
  1564. },
  1565. "notification-url": "https://packagist.org/downloads/",
  1566. "license": [
  1567. "BSD-3-Clause"
  1568. ],
  1569. "authors": [
  1570. {
  1571. "name": "Jeff Welch",
  1572. "email": "whatthejeff@gmail.com"
  1573. },
  1574. {
  1575. "name": "Volker Dusch",
  1576. "email": "github@wallbash.com"
  1577. },
  1578. {
  1579. "name": "Bernhard Schussek",
  1580. "email": "bschussek@2bepublished.at"
  1581. },
  1582. {
  1583. "name": "Sebastian Bergmann",
  1584. "email": "sebastian@phpunit.de"
  1585. }
  1586. ],
  1587. "description": "Provides the functionality to compare PHP values for equality",
  1588. "homepage": "http://www.github.com/sebastianbergmann/comparator",
  1589. "keywords": [
  1590. "comparator",
  1591. "compare",
  1592. "equality"
  1593. ],
  1594. "time": "2017-01-29T09:50:25+00:00"
  1595. },
  1596. {
  1597. "name": "sebastian/diff",
  1598. "version": "1.4.3",
  1599. "source": {
  1600. "type": "git",
  1601. "url": "https://github.com/sebastianbergmann/diff.git",
  1602. "reference": "7f066a26a962dbe58ddea9f72a4e82874a3975a4"
  1603. },
  1604. "dist": {
  1605. "type": "zip",
  1606. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/7f066a26a962dbe58ddea9f72a4e82874a3975a4",
  1607. "reference": "7f066a26a962dbe58ddea9f72a4e82874a3975a4",
  1608. "shasum": ""
  1609. },
  1610. "require": {
  1611. "php": "^5.3.3 || ^7.0"
  1612. },
  1613. "require-dev": {
  1614. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  1615. },
  1616. "type": "library",
  1617. "extra": {
  1618. "branch-alias": {
  1619. "dev-master": "1.4-dev"
  1620. }
  1621. },
  1622. "autoload": {
  1623. "classmap": [
  1624. "src/"
  1625. ]
  1626. },
  1627. "notification-url": "https://packagist.org/downloads/",
  1628. "license": [
  1629. "BSD-3-Clause"
  1630. ],
  1631. "authors": [
  1632. {
  1633. "name": "Kore Nordmann",
  1634. "email": "mail@kore-nordmann.de"
  1635. },
  1636. {
  1637. "name": "Sebastian Bergmann",
  1638. "email": "sebastian@phpunit.de"
  1639. }
  1640. ],
  1641. "description": "Diff implementation",
  1642. "homepage": "https://github.com/sebastianbergmann/diff",
  1643. "keywords": [
  1644. "diff"
  1645. ],
  1646. "time": "2017-05-22T07:24:03+00:00"
  1647. },
  1648. {
  1649. "name": "sebastian/environment",
  1650. "version": "1.3.8",
  1651. "source": {
  1652. "type": "git",
  1653. "url": "https://github.com/sebastianbergmann/environment.git",
  1654. "reference": "be2c607e43ce4c89ecd60e75c6a85c126e754aea"
  1655. },
  1656. "dist": {
  1657. "type": "zip",
  1658. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/be2c607e43ce4c89ecd60e75c6a85c126e754aea",
  1659. "reference": "be2c607e43ce4c89ecd60e75c6a85c126e754aea",
  1660. "shasum": ""
  1661. },
  1662. "require": {
  1663. "php": "^5.3.3 || ^7.0"
  1664. },
  1665. "require-dev": {
  1666. "phpunit/phpunit": "^4.8 || ^5.0"
  1667. },
  1668. "type": "library",
  1669. "extra": {
  1670. "branch-alias": {
  1671. "dev-master": "1.3.x-dev"
  1672. }
  1673. },
  1674. "autoload": {
  1675. "classmap": [
  1676. "src/"
  1677. ]
  1678. },
  1679. "notification-url": "https://packagist.org/downloads/",
  1680. "license": [
  1681. "BSD-3-Clause"
  1682. ],
  1683. "authors": [
  1684. {
  1685. "name": "Sebastian Bergmann",
  1686. "email": "sebastian@phpunit.de"
  1687. }
  1688. ],
  1689. "description": "Provides functionality to handle HHVM/PHP environments",
  1690. "homepage": "http://www.github.com/sebastianbergmann/environment",
  1691. "keywords": [
  1692. "Xdebug",
  1693. "environment",
  1694. "hhvm"
  1695. ],
  1696. "time": "2016-08-18T05:49:44+00:00"
  1697. },
  1698. {
  1699. "name": "sebastian/exporter",
  1700. "version": "1.2.2",
  1701. "source": {
  1702. "type": "git",
  1703. "url": "https://github.com/sebastianbergmann/exporter.git",
  1704. "reference": "42c4c2eec485ee3e159ec9884f95b431287edde4"
  1705. },
  1706. "dist": {
  1707. "type": "zip",
  1708. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/42c4c2eec485ee3e159ec9884f95b431287edde4",
  1709. "reference": "42c4c2eec485ee3e159ec9884f95b431287edde4",
  1710. "shasum": ""
  1711. },
  1712. "require": {
  1713. "php": ">=5.3.3",
  1714. "sebastian/recursion-context": "~1.0"
  1715. },
  1716. "require-dev": {
  1717. "ext-mbstring": "*",
  1718. "phpunit/phpunit": "~4.4"
  1719. },
  1720. "type": "library",
  1721. "extra": {
  1722. "branch-alias": {
  1723. "dev-master": "1.3.x-dev"
  1724. }
  1725. },
  1726. "autoload": {
  1727. "classmap": [
  1728. "src/"
  1729. ]
  1730. },
  1731. "notification-url": "https://packagist.org/downloads/",
  1732. "license": [
  1733. "BSD-3-Clause"
  1734. ],
  1735. "authors": [
  1736. {
  1737. "name": "Jeff Welch",
  1738. "email": "whatthejeff@gmail.com"
  1739. },
  1740. {
  1741. "name": "Volker Dusch",
  1742. "email": "github@wallbash.com"
  1743. },
  1744. {
  1745. "name": "Bernhard Schussek",
  1746. "email": "bschussek@2bepublished.at"
  1747. },
  1748. {
  1749. "name": "Sebastian Bergmann",
  1750. "email": "sebastian@phpunit.de"
  1751. },
  1752. {
  1753. "name": "Adam Harvey",
  1754. "email": "aharvey@php.net"
  1755. }
  1756. ],
  1757. "description": "Provides the functionality to export PHP variables for visualization",
  1758. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  1759. "keywords": [
  1760. "export",
  1761. "exporter"
  1762. ],
  1763. "time": "2016-06-17T09:04:28+00:00"
  1764. },
  1765. {
  1766. "name": "sebastian/global-state",
  1767. "version": "1.1.1",
  1768. "source": {
  1769. "type": "git",
  1770. "url": "https://github.com/sebastianbergmann/global-state.git",
  1771. "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4"
  1772. },
  1773. "dist": {
  1774. "type": "zip",
  1775. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bc37d50fea7d017d3d340f230811c9f1d7280af4",
  1776. "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4",
  1777. "shasum": ""
  1778. },
  1779. "require": {
  1780. "php": ">=5.3.3"
  1781. },
  1782. "require-dev": {
  1783. "phpunit/phpunit": "~4.2"
  1784. },
  1785. "suggest": {
  1786. "ext-uopz": "*"
  1787. },
  1788. "type": "library",
  1789. "extra": {
  1790. "branch-alias": {
  1791. "dev-master": "1.0-dev"
  1792. }
  1793. },
  1794. "autoload": {
  1795. "classmap": [
  1796. "src/"
  1797. ]
  1798. },
  1799. "notification-url": "https://packagist.org/downloads/",
  1800. "license": [
  1801. "BSD-3-Clause"
  1802. ],
  1803. "authors": [
  1804. {
  1805. "name": "Sebastian Bergmann",
  1806. "email": "sebastian@phpunit.de"
  1807. }
  1808. ],
  1809. "description": "Snapshotting of global state",
  1810. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  1811. "keywords": [
  1812. "global state"
  1813. ],
  1814. "time": "2015-10-12T03:26:01+00:00"
  1815. },
  1816. {
  1817. "name": "sebastian/recursion-context",
  1818. "version": "1.0.5",
  1819. "source": {
  1820. "type": "git",
  1821. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  1822. "reference": "b19cc3298482a335a95f3016d2f8a6950f0fbcd7"
  1823. },
  1824. "dist": {
  1825. "type": "zip",
  1826. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/b19cc3298482a335a95f3016d2f8a6950f0fbcd7",
  1827. "reference": "b19cc3298482a335a95f3016d2f8a6950f0fbcd7",
  1828. "shasum": ""
  1829. },
  1830. "require": {
  1831. "php": ">=5.3.3"
  1832. },
  1833. "require-dev": {
  1834. "phpunit/phpunit": "~4.4"
  1835. },
  1836. "type": "library",
  1837. "extra": {
  1838. "branch-alias": {
  1839. "dev-master": "1.0.x-dev"
  1840. }
  1841. },
  1842. "autoload": {
  1843. "classmap": [
  1844. "src/"
  1845. ]
  1846. },
  1847. "notification-url": "https://packagist.org/downloads/",
  1848. "license": [
  1849. "BSD-3-Clause"
  1850. ],
  1851. "authors": [
  1852. {
  1853. "name": "Jeff Welch",
  1854. "email": "whatthejeff@gmail.com"
  1855. },
  1856. {
  1857. "name": "Sebastian Bergmann",
  1858. "email": "sebastian@phpunit.de"
  1859. },
  1860. {
  1861. "name": "Adam Harvey",
  1862. "email": "aharvey@php.net"
  1863. }
  1864. ],
  1865. "description": "Provides functionality to recursively process PHP variables",
  1866. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  1867. "time": "2016-10-03T07:41:43+00:00"
  1868. },
  1869. {
  1870. "name": "sebastian/version",
  1871. "version": "1.0.6",
  1872. "source": {
  1873. "type": "git",
  1874. "url": "https://github.com/sebastianbergmann/version.git",
  1875. "reference": "58b3a85e7999757d6ad81c787a1fbf5ff6c628c6"
  1876. },
  1877. "dist": {
  1878. "type": "zip",
  1879. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/58b3a85e7999757d6ad81c787a1fbf5ff6c628c6",
  1880. "reference": "58b3a85e7999757d6ad81c787a1fbf5ff6c628c6",
  1881. "shasum": ""
  1882. },
  1883. "type": "library",
  1884. "autoload": {
  1885. "classmap": [
  1886. "src/"
  1887. ]
  1888. },
  1889. "notification-url": "https://packagist.org/downloads/",
  1890. "license": [
  1891. "BSD-3-Clause"
  1892. ],
  1893. "authors": [
  1894. {
  1895. "name": "Sebastian Bergmann",
  1896. "email": "sebastian@phpunit.de",
  1897. "role": "lead"
  1898. }
  1899. ],
  1900. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  1901. "homepage": "https://github.com/sebastianbergmann/version",
  1902. "time": "2015-06-21T13:59:46+00:00"
  1903. },
  1904. {
  1905. "name": "squizlabs/php_codesniffer",
  1906. "version": "2.9.2",
  1907. "source": {
  1908. "type": "git",
  1909. "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
  1910. "reference": "2acf168de78487db620ab4bc524135a13cfe6745"
  1911. },
  1912. "dist": {
  1913. "type": "zip",
  1914. "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/2acf168de78487db620ab4bc524135a13cfe6745",
  1915. "reference": "2acf168de78487db620ab4bc524135a13cfe6745",
  1916. "shasum": ""
  1917. },
  1918. "require": {
  1919. "ext-simplexml": "*",
  1920. "ext-tokenizer": "*",
  1921. "ext-xmlwriter": "*",
  1922. "php": ">=5.1.2"
  1923. },
  1924. "require-dev": {
  1925. "phpunit/phpunit": "~4.0"
  1926. },
  1927. "bin": [
  1928. "scripts/phpcs",
  1929. "scripts/phpcbf"
  1930. ],
  1931. "type": "library",
  1932. "extra": {
  1933. "branch-alias": {
  1934. "dev-master": "2.x-dev"
  1935. }
  1936. },
  1937. "autoload": {
  1938. "classmap": [
  1939. "CodeSniffer.php",
  1940. "CodeSniffer/CLI.php",
  1941. "CodeSniffer/Exception.php",
  1942. "CodeSniffer/File.php",
  1943. "CodeSniffer/Fixer.php",
  1944. "CodeSniffer/Report.php",
  1945. "CodeSniffer/Reporting.php",
  1946. "CodeSniffer/Sniff.php",
  1947. "CodeSniffer/Tokens.php",
  1948. "CodeSniffer/Reports/",
  1949. "CodeSniffer/Tokenizers/",
  1950. "CodeSniffer/DocGenerators/",
  1951. "CodeSniffer/Standards/AbstractPatternSniff.php",
  1952. "CodeSniffer/Standards/AbstractScopeSniff.php",
  1953. "CodeSniffer/Standards/AbstractVariableSniff.php",
  1954. "CodeSniffer/Standards/IncorrectPatternException.php",
  1955. "CodeSniffer/Standards/Generic/Sniffs/",
  1956. "CodeSniffer/Standards/MySource/Sniffs/",
  1957. "CodeSniffer/Standards/PEAR/Sniffs/",
  1958. "CodeSniffer/Standards/PSR1/Sniffs/",
  1959. "CodeSniffer/Standards/PSR2/Sniffs/",
  1960. "CodeSniffer/Standards/Squiz/Sniffs/",
  1961. "CodeSniffer/Standards/Zend/Sniffs/"
  1962. ]
  1963. },
  1964. "notification-url": "https://packagist.org/downloads/",
  1965. "license": [
  1966. "BSD-3-Clause"
  1967. ],
  1968. "authors": [
  1969. {
  1970. "name": "Greg Sherwood",
  1971. "role": "lead"
  1972. }
  1973. ],
  1974. "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
  1975. "homepage": "http://www.squizlabs.com/php-codesniffer",
  1976. "keywords": [
  1977. "phpcs",
  1978. "standards"
  1979. ],
  1980. "time": "2018-11-07T22:31:41+00:00"
  1981. },
  1982. {
  1983. "name": "symfony/polyfill-ctype",
  1984. "version": "v1.12.0",
  1985. "source": {
  1986. "type": "git",
  1987. "url": "https://github.com/symfony/polyfill-ctype.git",
  1988. "reference": "550ebaac289296ce228a706d0867afc34687e3f4"
  1989. },
  1990. "dist": {
  1991. "type": "zip",
  1992. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/550ebaac289296ce228a706d0867afc34687e3f4",
  1993. "reference": "550ebaac289296ce228a706d0867afc34687e3f4",
  1994. "shasum": ""
  1995. },
  1996. "require": {
  1997. "php": ">=5.3.3"
  1998. },
  1999. "suggest": {
  2000. "ext-ctype": "For best performance"
  2001. },
  2002. "type": "library",
  2003. "extra": {
  2004. "branch-alias": {
  2005. "dev-master": "1.12-dev"
  2006. }
  2007. },
  2008. "autoload": {
  2009. "psr-4": {
  2010. "Symfony\\Polyfill\\Ctype\\": ""
  2011. },
  2012. "files": [
  2013. "bootstrap.php"
  2014. ]
  2015. },
  2016. "notification-url": "https://packagist.org/downloads/",
  2017. "license": [
  2018. "MIT"
  2019. ],
  2020. "authors": [
  2021. {
  2022. "name": "Gert de Pagter",
  2023. "email": "BackEndTea@gmail.com"
  2024. },
  2025. {
  2026. "name": "Symfony Community",
  2027. "homepage": "https://symfony.com/contributors"
  2028. }
  2029. ],
  2030. "description": "Symfony polyfill for ctype functions",
  2031. "homepage": "https://symfony.com",
  2032. "keywords": [
  2033. "compatibility",
  2034. "ctype",
  2035. "polyfill",
  2036. "portable"
  2037. ],
  2038. "time": "2019-08-06T08:03:45+00:00"
  2039. },
  2040. {
  2041. "name": "symfony/polyfill-php72",
  2042. "version": "v1.18.1",
  2043. "source": {
  2044. "type": "git",
  2045. "url": "https://github.com/symfony/polyfill-php72.git",
  2046. "reference": "639447d008615574653fb3bc60d1986d7172eaae"
  2047. },
  2048. "dist": {
  2049. "type": "zip",
  2050. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/639447d008615574653fb3bc60d1986d7172eaae",
  2051. "reference": "639447d008615574653fb3bc60d1986d7172eaae",
  2052. "shasum": ""
  2053. },
  2054. "require": {
  2055. "php": ">=5.3.3"
  2056. },
  2057. "type": "library",
  2058. "extra": {
  2059. "branch-alias": {
  2060. "dev-master": "1.18-dev"
  2061. },
  2062. "thanks": {
  2063. "name": "symfony/polyfill",
  2064. "url": "https://github.com/symfony/polyfill"
  2065. }
  2066. },
  2067. "autoload": {
  2068. "psr-4": {
  2069. "Symfony\\Polyfill\\Php72\\": ""
  2070. },
  2071. "files": [
  2072. "bootstrap.php"
  2073. ]
  2074. },
  2075. "notification-url": "https://packagist.org/downloads/",
  2076. "license": [
  2077. "MIT"
  2078. ],
  2079. "authors": [
  2080. {
  2081. "name": "Nicolas Grekas",
  2082. "email": "p@tchwork.com"
  2083. },
  2084. {
  2085. "name": "Symfony Community",
  2086. "homepage": "https://symfony.com/contributors"
  2087. }
  2088. ],
  2089. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  2090. "homepage": "https://symfony.com",
  2091. "keywords": [
  2092. "compatibility",
  2093. "polyfill",
  2094. "portable",
  2095. "shim"
  2096. ],
  2097. "funding": [
  2098. {
  2099. "url": "https://symfony.com/sponsor",
  2100. "type": "custom"
  2101. },
  2102. {
  2103. "url": "https://github.com/fabpot",
  2104. "type": "github"
  2105. },
  2106. {
  2107. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2108. "type": "tidelift"
  2109. }
  2110. ],
  2111. "time": "2020-07-14T12:35:20+00:00"
  2112. },
  2113. {
  2114. "name": "symfony/polyfill-php80",
  2115. "version": "v1.18.1",
  2116. "source": {
  2117. "type": "git",
  2118. "url": "https://github.com/symfony/polyfill-php80.git",
  2119. "reference": "d87d5766cbf48d72388a9f6b85f280c8ad51f981"
  2120. },
  2121. "dist": {
  2122. "type": "zip",
  2123. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/d87d5766cbf48d72388a9f6b85f280c8ad51f981",
  2124. "reference": "d87d5766cbf48d72388a9f6b85f280c8ad51f981",
  2125. "shasum": ""
  2126. },
  2127. "require": {
  2128. "php": ">=7.0.8"
  2129. },
  2130. "type": "library",
  2131. "extra": {
  2132. "branch-alias": {
  2133. "dev-master": "1.18-dev"
  2134. },
  2135. "thanks": {
  2136. "name": "symfony/polyfill",
  2137. "url": "https://github.com/symfony/polyfill"
  2138. }
  2139. },
  2140. "autoload": {
  2141. "psr-4": {
  2142. "Symfony\\Polyfill\\Php80\\": ""
  2143. },
  2144. "files": [
  2145. "bootstrap.php"
  2146. ],
  2147. "classmap": [
  2148. "Resources/stubs"
  2149. ]
  2150. },
  2151. "notification-url": "https://packagist.org/downloads/",
  2152. "license": [
  2153. "MIT"
  2154. ],
  2155. "authors": [
  2156. {
  2157. "name": "Ion Bazan",
  2158. "email": "ion.bazan@gmail.com"
  2159. },
  2160. {
  2161. "name": "Nicolas Grekas",
  2162. "email": "p@tchwork.com"
  2163. },
  2164. {
  2165. "name": "Symfony Community",
  2166. "homepage": "https://symfony.com/contributors"
  2167. }
  2168. ],
  2169. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  2170. "homepage": "https://symfony.com",
  2171. "keywords": [
  2172. "compatibility",
  2173. "polyfill",
  2174. "portable",
  2175. "shim"
  2176. ],
  2177. "funding": [
  2178. {
  2179. "url": "https://symfony.com/sponsor",
  2180. "type": "custom"
  2181. },
  2182. {
  2183. "url": "https://github.com/fabpot",
  2184. "type": "github"
  2185. },
  2186. {
  2187. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2188. "type": "tidelift"
  2189. }
  2190. ],
  2191. "time": "2020-07-14T12:35:20+00:00"
  2192. },
  2193. {
  2194. "name": "symfony/yaml",
  2195. "version": "v3.4.32",
  2196. "source": {
  2197. "type": "git",
  2198. "url": "https://github.com/symfony/yaml.git",
  2199. "reference": "768f817446da74a776a31eea335540f9dcb53942"
  2200. },
  2201. "dist": {
  2202. "type": "zip",
  2203. "url": "https://api.github.com/repos/symfony/yaml/zipball/768f817446da74a776a31eea335540f9dcb53942",
  2204. "reference": "768f817446da74a776a31eea335540f9dcb53942",
  2205. "shasum": ""
  2206. },
  2207. "require": {
  2208. "php": "^5.5.9|>=7.0.8",
  2209. "symfony/polyfill-ctype": "~1.8"
  2210. },
  2211. "conflict": {
  2212. "symfony/console": "<3.4"
  2213. },
  2214. "require-dev": {
  2215. "symfony/console": "~3.4|~4.0"
  2216. },
  2217. "suggest": {
  2218. "symfony/console": "For validating YAML files using the lint command"
  2219. },
  2220. "type": "library",
  2221. "extra": {
  2222. "branch-alias": {
  2223. "dev-master": "3.4-dev"
  2224. }
  2225. },
  2226. "autoload": {
  2227. "psr-4": {
  2228. "Symfony\\Component\\Yaml\\": ""
  2229. },
  2230. "exclude-from-classmap": [
  2231. "/Tests/"
  2232. ]
  2233. },
  2234. "notification-url": "https://packagist.org/downloads/",
  2235. "license": [
  2236. "MIT"
  2237. ],
  2238. "authors": [
  2239. {
  2240. "name": "Fabien Potencier",
  2241. "email": "fabien@symfony.com"
  2242. },
  2243. {
  2244. "name": "Symfony Community",
  2245. "homepage": "https://symfony.com/contributors"
  2246. }
  2247. ],
  2248. "description": "Symfony Yaml Component",
  2249. "homepage": "https://symfony.com",
  2250. "time": "2019-09-10T10:38:46+00:00"
  2251. },
  2252. {
  2253. "name": "webmozart/assert",
  2254. "version": "1.5.0",
  2255. "source": {
  2256. "type": "git",
  2257. "url": "https://github.com/webmozart/assert.git",
  2258. "reference": "88e6d84706d09a236046d686bbea96f07b3a34f4"
  2259. },
  2260. "dist": {
  2261. "type": "zip",
  2262. "url": "https://api.github.com/repos/webmozart/assert/zipball/88e6d84706d09a236046d686bbea96f07b3a34f4",
  2263. "reference": "88e6d84706d09a236046d686bbea96f07b3a34f4",
  2264. "shasum": ""
  2265. },
  2266. "require": {
  2267. "php": "^5.3.3 || ^7.0",
  2268. "symfony/polyfill-ctype": "^1.8"
  2269. },
  2270. "require-dev": {
  2271. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  2272. },
  2273. "type": "library",
  2274. "extra": {
  2275. "branch-alias": {
  2276. "dev-master": "1.3-dev"
  2277. }
  2278. },
  2279. "autoload": {
  2280. "psr-4": {
  2281. "Webmozart\\Assert\\": "src/"
  2282. }
  2283. },
  2284. "notification-url": "https://packagist.org/downloads/",
  2285. "license": [
  2286. "MIT"
  2287. ],
  2288. "authors": [
  2289. {
  2290. "name": "Bernhard Schussek",
  2291. "email": "bschussek@gmail.com"
  2292. }
  2293. ],
  2294. "description": "Assertions to validate method input/output with nice error messages.",
  2295. "keywords": [
  2296. "assert",
  2297. "check",
  2298. "validate"
  2299. ],
  2300. "time": "2019-08-24T08:43:50+00:00"
  2301. }
  2302. ],
  2303. "aliases": [],
  2304. "minimum-stability": "stable",
  2305. "stability-flags": {
  2306. "restler/framework": 5
  2307. },
  2308. "prefer-stable": false,
  2309. "prefer-lowest": false,
  2310. "platform": {
  2311. "php": ">=5.6.0",
  2312. "ext-curl": "*"
  2313. },
  2314. "platform-dev": [],
  2315. "plugin-api-version": "1.1.0"
  2316. }