composer.lock 62 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788
  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#composer-lock-the-lock-file",
  5. "This file is @generated automatically"
  6. ],
  7. "hash": "c586663818e933f26657871d86d01dc6",
  8. "content-hash": "09e891bb978d35a48902a5f57760aee9",
  9. "packages": [
  10. {
  11. "name": "ccampbell/chromephp",
  12. "version": "4.1.0",
  13. "source": {
  14. "type": "git",
  15. "url": "https://github.com/ccampbell/chromephp.git",
  16. "reference": "c3c297615d48ae5b2a86a82311152d1ed095fcef"
  17. },
  18. "dist": {
  19. "type": "zip",
  20. "url": "https://api.github.com/repos/ccampbell/chromephp/zipball/c3c297615d48ae5b2a86a82311152d1ed095fcef",
  21. "reference": "c3c297615d48ae5b2a86a82311152d1ed095fcef",
  22. "shasum": ""
  23. },
  24. "require": {
  25. "php": ">=5.0.0"
  26. },
  27. "type": "library",
  28. "autoload": {
  29. "psr-0": {
  30. "ChromePhp": ""
  31. }
  32. },
  33. "notification-url": "https://packagist.org/downloads/",
  34. "license": [
  35. "Apache-2.0"
  36. ],
  37. "authors": [
  38. {
  39. "name": "Craig Campbell",
  40. "email": "iamcraigcampbell@gmail.com",
  41. "homepage": "http://craig.is",
  42. "role": "Developer"
  43. }
  44. ],
  45. "description": "Log variables to the Chrome console (via Chrome Logger Google Chrome extension).",
  46. "homepage": "http://github.com/ccampbell/chromephp",
  47. "keywords": [
  48. "log",
  49. "logging"
  50. ],
  51. "time": "2013-06-26 03:44:33"
  52. },
  53. {
  54. "name": "ckeditor/ckeditor",
  55. "version": "4.5.11",
  56. "source": {
  57. "type": "git",
  58. "url": "https://github.com/ckeditor/ckeditor-releases.git",
  59. "reference": "48155a1e1c7e84736b5a166ad3f33acea2a51255"
  60. },
  61. "dist": {
  62. "type": "zip",
  63. "url": "https://api.github.com/repos/ckeditor/ckeditor-releases/zipball/48155a1e1c7e84736b5a166ad3f33acea2a51255",
  64. "reference": "48155a1e1c7e84736b5a166ad3f33acea2a51255",
  65. "shasum": ""
  66. },
  67. "type": "library",
  68. "notification-url": "https://packagist.org/downloads/",
  69. "license": [
  70. "GPL-2.0+",
  71. "LGPL-2.1+",
  72. "MPL-1.1+"
  73. ],
  74. "authors": [
  75. {
  76. "name": "CKSource",
  77. "homepage": "http://cksource.com"
  78. }
  79. ],
  80. "description": "JavaScript WYSIWYG web text editor.",
  81. "homepage": "http://ckeditor.com",
  82. "keywords": [
  83. "CKEditor",
  84. "editor",
  85. "fckeditor",
  86. "html",
  87. "javascript",
  88. "richtext",
  89. "text",
  90. "wysiwyg"
  91. ],
  92. "time": "2016-09-07 13:32:39"
  93. },
  94. {
  95. "name": "mike42/escpos-php",
  96. "version": "v1.2.1",
  97. "source": {
  98. "type": "git",
  99. "url": "https://github.com/mike42/escpos-php.git",
  100. "reference": "cfea4c4fc95516ac953e1e5b623f854632afa2ee"
  101. },
  102. "dist": {
  103. "type": "zip",
  104. "url": "https://api.github.com/repos/mike42/escpos-php/zipball/cfea4c4fc95516ac953e1e5b623f854632afa2ee",
  105. "reference": "cfea4c4fc95516ac953e1e5b623f854632afa2ee",
  106. "shasum": ""
  107. },
  108. "require": {
  109. "php": ">=5.3.0"
  110. },
  111. "require-dev": {
  112. "phpunit/phpunit": "4.5.*",
  113. "squizlabs/php_codesniffer": "2.*"
  114. },
  115. "type": "library",
  116. "autoload": {
  117. "psr-4": {
  118. "Mike42\\": "src/Mike42"
  119. }
  120. },
  121. "notification-url": "https://packagist.org/downloads/",
  122. "license": [
  123. "MIT"
  124. ],
  125. "authors": [
  126. {
  127. "name": "Roni Saha",
  128. "email": "roni.cse@gmail.com"
  129. },
  130. {
  131. "name": "Michael Billington",
  132. "email": "michael.billington@gmail.com"
  133. },
  134. {
  135. "name": "Gergely Radics",
  136. "email": "gerifield@ustream.tv"
  137. },
  138. {
  139. "name": "Warren Doyle",
  140. "email": "w.doyle@fuelled.co"
  141. },
  142. {
  143. "name": "vharo",
  144. "email": "vharo@geepok.com"
  145. }
  146. ],
  147. "description": "Thermal receipt printer library, for use with ESC/POS compatible printers",
  148. "homepage": "https://github.com/mike42/escpos-php",
  149. "keywords": [
  150. "ESC-POS",
  151. "driver",
  152. "escpos",
  153. "print",
  154. "receipt"
  155. ],
  156. "time": "2016-04-25 01:14:07"
  157. },
  158. {
  159. "name": "mobiledetect/mobiledetectlib",
  160. "version": "2.8.17",
  161. "source": {
  162. "type": "git",
  163. "url": "https://github.com/serbanghita/Mobile-Detect.git",
  164. "reference": "b87da5f63a76e9615a0c74fcf168657b1ea7e41d"
  165. },
  166. "dist": {
  167. "type": "zip",
  168. "url": "https://api.github.com/repos/serbanghita/Mobile-Detect/zipball/b87da5f63a76e9615a0c74fcf168657b1ea7e41d",
  169. "reference": "b87da5f63a76e9615a0c74fcf168657b1ea7e41d",
  170. "shasum": ""
  171. },
  172. "require": {
  173. "php": ">=5.0.0"
  174. },
  175. "require-dev": {
  176. "codeclimate/php-test-reporter": "dev-master",
  177. "johnkary/phpunit-speedtrap": "~1.0@dev",
  178. "phpunit/phpunit": "*"
  179. },
  180. "type": "library",
  181. "autoload": {
  182. "classmap": [
  183. "Mobile_Detect.php"
  184. ],
  185. "psr-0": {
  186. "Detection": "namespaced/"
  187. }
  188. },
  189. "notification-url": "https://packagist.org/downloads/",
  190. "license": [
  191. "MIT"
  192. ],
  193. "authors": [
  194. {
  195. "name": "Serban Ghita",
  196. "email": "serbanghita@gmail.com",
  197. "homepage": "http://mobiledetect.net",
  198. "role": "Developer"
  199. }
  200. ],
  201. "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.",
  202. "homepage": "https://github.com/serbanghita/Mobile-Detect",
  203. "keywords": [
  204. "detect mobile devices",
  205. "mobile",
  206. "mobile detect",
  207. "mobile detector",
  208. "php mobile detect"
  209. ],
  210. "time": "2015-09-17 14:45:21"
  211. },
  212. {
  213. "name": "phpoffice/phpexcel",
  214. "version": "1.8.1",
  215. "source": {
  216. "type": "git",
  217. "url": "https://github.com/PHPOffice/PHPExcel.git",
  218. "reference": "372c7cbb695a6f6f1e62649381aeaa37e7e70b32"
  219. },
  220. "dist": {
  221. "type": "zip",
  222. "url": "https://api.github.com/repos/PHPOffice/PHPExcel/zipball/372c7cbb695a6f6f1e62649381aeaa37e7e70b32",
  223. "reference": "372c7cbb695a6f6f1e62649381aeaa37e7e70b32",
  224. "shasum": ""
  225. },
  226. "require": {
  227. "ext-xml": "*",
  228. "ext-xmlwriter": "*",
  229. "php": ">=5.2.0"
  230. },
  231. "type": "library",
  232. "autoload": {
  233. "psr-0": {
  234. "PHPExcel": "Classes/"
  235. }
  236. },
  237. "notification-url": "https://packagist.org/downloads/",
  238. "license": [
  239. "LGPL"
  240. ],
  241. "authors": [
  242. {
  243. "name": "Maarten Balliauw",
  244. "homepage": "http://blog.maartenballiauw.be"
  245. },
  246. {
  247. "name": "Mark Baker"
  248. },
  249. {
  250. "name": "Franck Lefevre",
  251. "homepage": "http://blog.rootslabs.net"
  252. },
  253. {
  254. "name": "Erik Tilt"
  255. }
  256. ],
  257. "description": "PHPExcel - OpenXML - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  258. "homepage": "http://phpexcel.codeplex.com",
  259. "keywords": [
  260. "OpenXML",
  261. "excel",
  262. "php",
  263. "spreadsheet",
  264. "xls",
  265. "xlsx"
  266. ],
  267. "time": "2015-05-01 07:00:55"
  268. },
  269. {
  270. "name": "restler/framework",
  271. "version": "3.0.0-RC6",
  272. "target-dir": "Luracast/Restler",
  273. "source": {
  274. "type": "git",
  275. "url": "https://github.com/Luracast/Restler-Framework.git",
  276. "reference": "3388d76e73a81f871ce5baa906271071b12cd17f"
  277. },
  278. "dist": {
  279. "type": "zip",
  280. "url": "https://api.github.com/repos/Luracast/Restler-Framework/zipball/3388d76e73a81f871ce5baa906271071b12cd17f",
  281. "reference": "3388d76e73a81f871ce5baa906271071b12cd17f",
  282. "shasum": ""
  283. },
  284. "require": {
  285. "php": ">=5.3.0"
  286. },
  287. "replace": {
  288. "luracast/restler": "3.*"
  289. },
  290. "suggest": {
  291. "bshaffer/oauth2-server-php": "If you want to use OAuth2 for authentication",
  292. "illuminate/view": "If you want to use laravel blade templates with Html format",
  293. "mustache/mustache": "If you want to use mustache/handlebar templates with Html format",
  294. "rodneyrehm/plist": "If you need Apple plist binary/xml format",
  295. "symfony/yaml": "If you need YAML format",
  296. "twig/twig": "If you want to use twig templates with Html format",
  297. "zendframework/zendamf": "If you need AMF format"
  298. },
  299. "type": "library",
  300. "extra": {
  301. "branch-alias": {
  302. "master": "v3.0.x-dev"
  303. }
  304. },
  305. "autoload": {
  306. "psr-0": {
  307. "Luracast\\Restler": ""
  308. }
  309. },
  310. "notification-url": "https://packagist.org/downloads/",
  311. "license": [
  312. "LGPL-2.1"
  313. ],
  314. "authors": [
  315. {
  316. "name": "Luracast",
  317. "email": "arul@luracast.com"
  318. }
  319. ],
  320. "description": "Just the Restler Framework without the tests and examples",
  321. "homepage": "http://luracast.com/products/restler/",
  322. "keywords": [
  323. "api",
  324. "framework",
  325. "rest",
  326. "server"
  327. ],
  328. "time": "2016-06-21 12:42:18"
  329. },
  330. {
  331. "name": "tecnickcom/tcpdf",
  332. "version": "6.2.12",
  333. "source": {
  334. "type": "git",
  335. "url": "https://github.com/tecnickcom/TCPDF.git",
  336. "reference": "2f732eaa91b5665274689b1d40b285a7bacdc37f"
  337. },
  338. "dist": {
  339. "type": "zip",
  340. "url": "https://api.github.com/repos/tecnickcom/TCPDF/zipball/2f732eaa91b5665274689b1d40b285a7bacdc37f",
  341. "reference": "2f732eaa91b5665274689b1d40b285a7bacdc37f",
  342. "shasum": ""
  343. },
  344. "require": {
  345. "php": ">=5.3.0"
  346. },
  347. "type": "library",
  348. "autoload": {
  349. "classmap": [
  350. "fonts",
  351. "config",
  352. "include",
  353. "tcpdf.php",
  354. "tcpdf_parser.php",
  355. "tcpdf_import.php",
  356. "tcpdf_barcodes_1d.php",
  357. "tcpdf_barcodes_2d.php",
  358. "include/tcpdf_colors.php",
  359. "include/tcpdf_filters.php",
  360. "include/tcpdf_font_data.php",
  361. "include/tcpdf_fonts.php",
  362. "include/tcpdf_images.php",
  363. "include/tcpdf_static.php",
  364. "include/barcodes/datamatrix.php",
  365. "include/barcodes/pdf417.php",
  366. "include/barcodes/qrcode.php"
  367. ]
  368. },
  369. "notification-url": "https://packagist.org/downloads/",
  370. "license": [
  371. "LGPLv3"
  372. ],
  373. "authors": [
  374. {
  375. "name": "Nicola Asuni",
  376. "email": "info@tecnick.com",
  377. "homepage": "http://nicolaasuni.tecnick.com"
  378. }
  379. ],
  380. "description": "TCPDF is a PHP class for generating PDF documents and barcodes.",
  381. "homepage": "http://www.tcpdf.org/",
  382. "keywords": [
  383. "PDFD32000-2008",
  384. "TCPDF",
  385. "barcodes",
  386. "datamatrix",
  387. "pdf",
  388. "pdf417",
  389. "qrcode"
  390. ],
  391. "time": "2015-09-12 10:08:34"
  392. }
  393. ],
  394. "packages-dev": [
  395. {
  396. "name": "doctrine/instantiator",
  397. "version": "1.0.5",
  398. "source": {
  399. "type": "git",
  400. "url": "https://github.com/doctrine/instantiator.git",
  401. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
  402. },
  403. "dist": {
  404. "type": "zip",
  405. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",
  406. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
  407. "shasum": ""
  408. },
  409. "require": {
  410. "php": ">=5.3,<8.0-DEV"
  411. },
  412. "require-dev": {
  413. "athletic/athletic": "~0.1.8",
  414. "ext-pdo": "*",
  415. "ext-phar": "*",
  416. "phpunit/phpunit": "~4.0",
  417. "squizlabs/php_codesniffer": "~2.0"
  418. },
  419. "type": "library",
  420. "extra": {
  421. "branch-alias": {
  422. "dev-master": "1.0.x-dev"
  423. }
  424. },
  425. "autoload": {
  426. "psr-4": {
  427. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  428. }
  429. },
  430. "notification-url": "https://packagist.org/downloads/",
  431. "license": [
  432. "MIT"
  433. ],
  434. "authors": [
  435. {
  436. "name": "Marco Pivetta",
  437. "email": "ocramius@gmail.com",
  438. "homepage": "http://ocramius.github.com/"
  439. }
  440. ],
  441. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  442. "homepage": "https://github.com/doctrine/instantiator",
  443. "keywords": [
  444. "constructor",
  445. "instantiate"
  446. ],
  447. "time": "2015-06-14 21:17:01"
  448. },
  449. {
  450. "name": "jakub-onderka/php-console-color",
  451. "version": "0.1",
  452. "source": {
  453. "type": "git",
  454. "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
  455. "reference": "e0b393dacf7703fc36a4efc3df1435485197e6c1"
  456. },
  457. "dist": {
  458. "type": "zip",
  459. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/e0b393dacf7703fc36a4efc3df1435485197e6c1",
  460. "reference": "e0b393dacf7703fc36a4efc3df1435485197e6c1",
  461. "shasum": ""
  462. },
  463. "require": {
  464. "php": ">=5.3.2"
  465. },
  466. "require-dev": {
  467. "jakub-onderka/php-code-style": "1.0",
  468. "jakub-onderka/php-parallel-lint": "0.*",
  469. "jakub-onderka/php-var-dump-check": "0.*",
  470. "phpunit/phpunit": "3.7.*",
  471. "squizlabs/php_codesniffer": "1.*"
  472. },
  473. "type": "library",
  474. "autoload": {
  475. "psr-0": {
  476. "JakubOnderka\\PhpConsoleColor": "src/"
  477. }
  478. },
  479. "notification-url": "https://packagist.org/downloads/",
  480. "license": [
  481. "BSD-2-Clause"
  482. ],
  483. "authors": [
  484. {
  485. "name": "Jakub Onderka",
  486. "email": "jakub.onderka@gmail.com",
  487. "homepage": "http://www.acci.cz"
  488. }
  489. ],
  490. "time": "2014-04-08 15:00:19"
  491. },
  492. {
  493. "name": "jakub-onderka/php-console-highlighter",
  494. "version": "v0.3.2",
  495. "source": {
  496. "type": "git",
  497. "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
  498. "reference": "7daa75df45242c8d5b75a22c00a201e7954e4fb5"
  499. },
  500. "dist": {
  501. "type": "zip",
  502. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/7daa75df45242c8d5b75a22c00a201e7954e4fb5",
  503. "reference": "7daa75df45242c8d5b75a22c00a201e7954e4fb5",
  504. "shasum": ""
  505. },
  506. "require": {
  507. "jakub-onderka/php-console-color": "~0.1",
  508. "php": ">=5.3.0"
  509. },
  510. "require-dev": {
  511. "jakub-onderka/php-code-style": "~1.0",
  512. "jakub-onderka/php-parallel-lint": "~0.5",
  513. "jakub-onderka/php-var-dump-check": "~0.1",
  514. "phpunit/phpunit": "~4.0",
  515. "squizlabs/php_codesniffer": "~1.5"
  516. },
  517. "type": "library",
  518. "autoload": {
  519. "psr-0": {
  520. "JakubOnderka\\PhpConsoleHighlighter": "src/"
  521. }
  522. },
  523. "notification-url": "https://packagist.org/downloads/",
  524. "license": [
  525. "MIT"
  526. ],
  527. "authors": [
  528. {
  529. "name": "Jakub Onderka",
  530. "email": "acci@acci.cz",
  531. "homepage": "http://www.acci.cz/"
  532. }
  533. ],
  534. "time": "2015-04-20 18:58:01"
  535. },
  536. {
  537. "name": "jakub-onderka/php-parallel-lint",
  538. "version": "v0.9.2",
  539. "source": {
  540. "type": "git",
  541. "url": "https://github.com/JakubOnderka/PHP-Parallel-Lint.git",
  542. "reference": "2ead2e4043ab125bee9554f356e0a86742c2d4fa"
  543. },
  544. "dist": {
  545. "type": "zip",
  546. "url": "https://api.github.com/repos/JakubOnderka/PHP-Parallel-Lint/zipball/2ead2e4043ab125bee9554f356e0a86742c2d4fa",
  547. "reference": "2ead2e4043ab125bee9554f356e0a86742c2d4fa",
  548. "shasum": ""
  549. },
  550. "require": {
  551. "php": ">=5.3.3"
  552. },
  553. "require-dev": {
  554. "jakub-onderka/php-console-highlighter": "~0.3",
  555. "nette/tester": "~1.3"
  556. },
  557. "suggest": {
  558. "jakub-onderka/php-console-highlighter": "Highlight syntax in code snippet"
  559. },
  560. "bin": [
  561. "parallel-lint"
  562. ],
  563. "type": "library",
  564. "autoload": {
  565. "classmap": [
  566. "./"
  567. ]
  568. },
  569. "notification-url": "https://packagist.org/downloads/",
  570. "license": [
  571. "BSD-2-Clause"
  572. ],
  573. "authors": [
  574. {
  575. "name": "Jakub Onderka",
  576. "email": "jakub.onderka@gmail.com"
  577. }
  578. ],
  579. "description": "This tool check syntax of PHP files about 20x faster than serial check.",
  580. "homepage": "https://github.com/JakubOnderka/PHP-Parallel-Lint",
  581. "time": "2015-12-15 10:42:16"
  582. },
  583. {
  584. "name": "phpdocumentor/reflection-common",
  585. "version": "1.0",
  586. "source": {
  587. "type": "git",
  588. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  589. "reference": "144c307535e82c8fdcaacbcfc1d6d8eeb896687c"
  590. },
  591. "dist": {
  592. "type": "zip",
  593. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/144c307535e82c8fdcaacbcfc1d6d8eeb896687c",
  594. "reference": "144c307535e82c8fdcaacbcfc1d6d8eeb896687c",
  595. "shasum": ""
  596. },
  597. "require": {
  598. "php": ">=5.5"
  599. },
  600. "require-dev": {
  601. "phpunit/phpunit": "^4.6"
  602. },
  603. "type": "library",
  604. "extra": {
  605. "branch-alias": {
  606. "dev-master": "1.0.x-dev"
  607. }
  608. },
  609. "autoload": {
  610. "psr-4": {
  611. "phpDocumentor\\Reflection\\": [
  612. "src"
  613. ]
  614. }
  615. },
  616. "notification-url": "https://packagist.org/downloads/",
  617. "license": [
  618. "MIT"
  619. ],
  620. "authors": [
  621. {
  622. "name": "Jaap van Otterdijk",
  623. "email": "opensource@ijaap.nl"
  624. }
  625. ],
  626. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  627. "homepage": "http://www.phpdoc.org",
  628. "keywords": [
  629. "FQSEN",
  630. "phpDocumentor",
  631. "phpdoc",
  632. "reflection",
  633. "static analysis"
  634. ],
  635. "time": "2015-12-27 11:43:31"
  636. },
  637. {
  638. "name": "phpdocumentor/reflection-docblock",
  639. "version": "3.1.1",
  640. "source": {
  641. "type": "git",
  642. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  643. "reference": "8331b5efe816ae05461b7ca1e721c01b46bafb3e"
  644. },
  645. "dist": {
  646. "type": "zip",
  647. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/8331b5efe816ae05461b7ca1e721c01b46bafb3e",
  648. "reference": "8331b5efe816ae05461b7ca1e721c01b46bafb3e",
  649. "shasum": ""
  650. },
  651. "require": {
  652. "php": ">=5.5",
  653. "phpdocumentor/reflection-common": "^1.0@dev",
  654. "phpdocumentor/type-resolver": "^0.2.0",
  655. "webmozart/assert": "^1.0"
  656. },
  657. "require-dev": {
  658. "mockery/mockery": "^0.9.4",
  659. "phpunit/phpunit": "^4.4"
  660. },
  661. "type": "library",
  662. "autoload": {
  663. "psr-4": {
  664. "phpDocumentor\\Reflection\\": [
  665. "src/"
  666. ]
  667. }
  668. },
  669. "notification-url": "https://packagist.org/downloads/",
  670. "license": [
  671. "MIT"
  672. ],
  673. "authors": [
  674. {
  675. "name": "Mike van Riel",
  676. "email": "me@mikevanriel.com"
  677. }
  678. ],
  679. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  680. "time": "2016-09-30 07:12:33"
  681. },
  682. {
  683. "name": "phpdocumentor/type-resolver",
  684. "version": "0.2",
  685. "source": {
  686. "type": "git",
  687. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  688. "reference": "b39c7a5b194f9ed7bd0dd345c751007a41862443"
  689. },
  690. "dist": {
  691. "type": "zip",
  692. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/b39c7a5b194f9ed7bd0dd345c751007a41862443",
  693. "reference": "b39c7a5b194f9ed7bd0dd345c751007a41862443",
  694. "shasum": ""
  695. },
  696. "require": {
  697. "php": ">=5.5",
  698. "phpdocumentor/reflection-common": "^1.0"
  699. },
  700. "require-dev": {
  701. "mockery/mockery": "^0.9.4",
  702. "phpunit/phpunit": "^5.2||^4.8.24"
  703. },
  704. "type": "library",
  705. "extra": {
  706. "branch-alias": {
  707. "dev-master": "1.0.x-dev"
  708. }
  709. },
  710. "autoload": {
  711. "psr-4": {
  712. "phpDocumentor\\Reflection\\": [
  713. "src/"
  714. ]
  715. }
  716. },
  717. "notification-url": "https://packagist.org/downloads/",
  718. "license": [
  719. "MIT"
  720. ],
  721. "authors": [
  722. {
  723. "name": "Mike van Riel",
  724. "email": "me@mikevanriel.com"
  725. }
  726. ],
  727. "time": "2016-06-10 07:14:17"
  728. },
  729. {
  730. "name": "phpspec/prophecy",
  731. "version": "v1.6.1",
  732. "source": {
  733. "type": "git",
  734. "url": "https://github.com/phpspec/prophecy.git",
  735. "reference": "58a8137754bc24b25740d4281399a4a3596058e0"
  736. },
  737. "dist": {
  738. "type": "zip",
  739. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/58a8137754bc24b25740d4281399a4a3596058e0",
  740. "reference": "58a8137754bc24b25740d4281399a4a3596058e0",
  741. "shasum": ""
  742. },
  743. "require": {
  744. "doctrine/instantiator": "^1.0.2",
  745. "php": "^5.3|^7.0",
  746. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2",
  747. "sebastian/comparator": "^1.1",
  748. "sebastian/recursion-context": "^1.0"
  749. },
  750. "require-dev": {
  751. "phpspec/phpspec": "^2.0"
  752. },
  753. "type": "library",
  754. "extra": {
  755. "branch-alias": {
  756. "dev-master": "1.6.x-dev"
  757. }
  758. },
  759. "autoload": {
  760. "psr-0": {
  761. "Prophecy\\": "src/"
  762. }
  763. },
  764. "notification-url": "https://packagist.org/downloads/",
  765. "license": [
  766. "MIT"
  767. ],
  768. "authors": [
  769. {
  770. "name": "Konstantin Kudryashov",
  771. "email": "ever.zet@gmail.com",
  772. "homepage": "http://everzet.com"
  773. },
  774. {
  775. "name": "Marcello Duarte",
  776. "email": "marcello.duarte@gmail.com"
  777. }
  778. ],
  779. "description": "Highly opinionated mocking framework for PHP 5.3+",
  780. "homepage": "https://github.com/phpspec/prophecy",
  781. "keywords": [
  782. "Double",
  783. "Dummy",
  784. "fake",
  785. "mock",
  786. "spy",
  787. "stub"
  788. ],
  789. "time": "2016-06-07 08:13:47"
  790. },
  791. {
  792. "name": "phpunit/php-code-coverage",
  793. "version": "2.2.4",
  794. "source": {
  795. "type": "git",
  796. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  797. "reference": "eabf68b476ac7d0f73793aada060f1c1a9bf8979"
  798. },
  799. "dist": {
  800. "type": "zip",
  801. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/eabf68b476ac7d0f73793aada060f1c1a9bf8979",
  802. "reference": "eabf68b476ac7d0f73793aada060f1c1a9bf8979",
  803. "shasum": ""
  804. },
  805. "require": {
  806. "php": ">=5.3.3",
  807. "phpunit/php-file-iterator": "~1.3",
  808. "phpunit/php-text-template": "~1.2",
  809. "phpunit/php-token-stream": "~1.3",
  810. "sebastian/environment": "^1.3.2",
  811. "sebastian/version": "~1.0"
  812. },
  813. "require-dev": {
  814. "ext-xdebug": ">=2.1.4",
  815. "phpunit/phpunit": "~4"
  816. },
  817. "suggest": {
  818. "ext-dom": "*",
  819. "ext-xdebug": ">=2.2.1",
  820. "ext-xmlwriter": "*"
  821. },
  822. "type": "library",
  823. "extra": {
  824. "branch-alias": {
  825. "dev-master": "2.2.x-dev"
  826. }
  827. },
  828. "autoload": {
  829. "classmap": [
  830. "src/"
  831. ]
  832. },
  833. "notification-url": "https://packagist.org/downloads/",
  834. "license": [
  835. "BSD-3-Clause"
  836. ],
  837. "authors": [
  838. {
  839. "name": "Sebastian Bergmann",
  840. "email": "sb@sebastian-bergmann.de",
  841. "role": "lead"
  842. }
  843. ],
  844. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  845. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  846. "keywords": [
  847. "coverage",
  848. "testing",
  849. "xunit"
  850. ],
  851. "time": "2015-10-06 15:47:00"
  852. },
  853. {
  854. "name": "phpunit/php-file-iterator",
  855. "version": "1.4.1",
  856. "source": {
  857. "type": "git",
  858. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  859. "reference": "6150bf2c35d3fc379e50c7602b75caceaa39dbf0"
  860. },
  861. "dist": {
  862. "type": "zip",
  863. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/6150bf2c35d3fc379e50c7602b75caceaa39dbf0",
  864. "reference": "6150bf2c35d3fc379e50c7602b75caceaa39dbf0",
  865. "shasum": ""
  866. },
  867. "require": {
  868. "php": ">=5.3.3"
  869. },
  870. "type": "library",
  871. "extra": {
  872. "branch-alias": {
  873. "dev-master": "1.4.x-dev"
  874. }
  875. },
  876. "autoload": {
  877. "classmap": [
  878. "src/"
  879. ]
  880. },
  881. "notification-url": "https://packagist.org/downloads/",
  882. "license": [
  883. "BSD-3-Clause"
  884. ],
  885. "authors": [
  886. {
  887. "name": "Sebastian Bergmann",
  888. "email": "sb@sebastian-bergmann.de",
  889. "role": "lead"
  890. }
  891. ],
  892. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  893. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  894. "keywords": [
  895. "filesystem",
  896. "iterator"
  897. ],
  898. "time": "2015-06-21 13:08:43"
  899. },
  900. {
  901. "name": "phpunit/php-text-template",
  902. "version": "1.2.1",
  903. "source": {
  904. "type": "git",
  905. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  906. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  907. },
  908. "dist": {
  909. "type": "zip",
  910. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  911. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  912. "shasum": ""
  913. },
  914. "require": {
  915. "php": ">=5.3.3"
  916. },
  917. "type": "library",
  918. "autoload": {
  919. "classmap": [
  920. "src/"
  921. ]
  922. },
  923. "notification-url": "https://packagist.org/downloads/",
  924. "license": [
  925. "BSD-3-Clause"
  926. ],
  927. "authors": [
  928. {
  929. "name": "Sebastian Bergmann",
  930. "email": "sebastian@phpunit.de",
  931. "role": "lead"
  932. }
  933. ],
  934. "description": "Simple template engine.",
  935. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  936. "keywords": [
  937. "template"
  938. ],
  939. "time": "2015-06-21 13:50:34"
  940. },
  941. {
  942. "name": "phpunit/php-timer",
  943. "version": "1.0.8",
  944. "source": {
  945. "type": "git",
  946. "url": "https://github.com/sebastianbergmann/php-timer.git",
  947. "reference": "38e9124049cf1a164f1e4537caf19c99bf1eb260"
  948. },
  949. "dist": {
  950. "type": "zip",
  951. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/38e9124049cf1a164f1e4537caf19c99bf1eb260",
  952. "reference": "38e9124049cf1a164f1e4537caf19c99bf1eb260",
  953. "shasum": ""
  954. },
  955. "require": {
  956. "php": ">=5.3.3"
  957. },
  958. "require-dev": {
  959. "phpunit/phpunit": "~4|~5"
  960. },
  961. "type": "library",
  962. "autoload": {
  963. "classmap": [
  964. "src/"
  965. ]
  966. },
  967. "notification-url": "https://packagist.org/downloads/",
  968. "license": [
  969. "BSD-3-Clause"
  970. ],
  971. "authors": [
  972. {
  973. "name": "Sebastian Bergmann",
  974. "email": "sb@sebastian-bergmann.de",
  975. "role": "lead"
  976. }
  977. ],
  978. "description": "Utility class for timing",
  979. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  980. "keywords": [
  981. "timer"
  982. ],
  983. "time": "2016-05-12 18:03:57"
  984. },
  985. {
  986. "name": "phpunit/php-token-stream",
  987. "version": "1.4.8",
  988. "source": {
  989. "type": "git",
  990. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  991. "reference": "3144ae21711fb6cac0b1ab4cbe63b75ce3d4e8da"
  992. },
  993. "dist": {
  994. "type": "zip",
  995. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/3144ae21711fb6cac0b1ab4cbe63b75ce3d4e8da",
  996. "reference": "3144ae21711fb6cac0b1ab4cbe63b75ce3d4e8da",
  997. "shasum": ""
  998. },
  999. "require": {
  1000. "ext-tokenizer": "*",
  1001. "php": ">=5.3.3"
  1002. },
  1003. "require-dev": {
  1004. "phpunit/phpunit": "~4.2"
  1005. },
  1006. "type": "library",
  1007. "extra": {
  1008. "branch-alias": {
  1009. "dev-master": "1.4-dev"
  1010. }
  1011. },
  1012. "autoload": {
  1013. "classmap": [
  1014. "src/"
  1015. ]
  1016. },
  1017. "notification-url": "https://packagist.org/downloads/",
  1018. "license": [
  1019. "BSD-3-Clause"
  1020. ],
  1021. "authors": [
  1022. {
  1023. "name": "Sebastian Bergmann",
  1024. "email": "sebastian@phpunit.de"
  1025. }
  1026. ],
  1027. "description": "Wrapper around PHP's tokenizer extension.",
  1028. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  1029. "keywords": [
  1030. "tokenizer"
  1031. ],
  1032. "time": "2015-09-15 10:49:45"
  1033. },
  1034. {
  1035. "name": "phpunit/phpunit",
  1036. "version": "4.8.27",
  1037. "source": {
  1038. "type": "git",
  1039. "url": "https://github.com/sebastianbergmann/phpunit.git",
  1040. "reference": "c062dddcb68e44b563f66ee319ddae2b5a322a90"
  1041. },
  1042. "dist": {
  1043. "type": "zip",
  1044. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/c062dddcb68e44b563f66ee319ddae2b5a322a90",
  1045. "reference": "c062dddcb68e44b563f66ee319ddae2b5a322a90",
  1046. "shasum": ""
  1047. },
  1048. "require": {
  1049. "ext-dom": "*",
  1050. "ext-json": "*",
  1051. "ext-pcre": "*",
  1052. "ext-reflection": "*",
  1053. "ext-spl": "*",
  1054. "php": ">=5.3.3",
  1055. "phpspec/prophecy": "^1.3.1",
  1056. "phpunit/php-code-coverage": "~2.1",
  1057. "phpunit/php-file-iterator": "~1.4",
  1058. "phpunit/php-text-template": "~1.2",
  1059. "phpunit/php-timer": "^1.0.6",
  1060. "phpunit/phpunit-mock-objects": "~2.3",
  1061. "sebastian/comparator": "~1.1",
  1062. "sebastian/diff": "~1.2",
  1063. "sebastian/environment": "~1.3",
  1064. "sebastian/exporter": "~1.2",
  1065. "sebastian/global-state": "~1.0",
  1066. "sebastian/version": "~1.0",
  1067. "symfony/yaml": "~2.1|~3.0"
  1068. },
  1069. "suggest": {
  1070. "phpunit/php-invoker": "~1.1"
  1071. },
  1072. "bin": [
  1073. "phpunit"
  1074. ],
  1075. "type": "library",
  1076. "extra": {
  1077. "branch-alias": {
  1078. "dev-master": "4.8.x-dev"
  1079. }
  1080. },
  1081. "autoload": {
  1082. "classmap": [
  1083. "src/"
  1084. ]
  1085. },
  1086. "notification-url": "https://packagist.org/downloads/",
  1087. "license": [
  1088. "BSD-3-Clause"
  1089. ],
  1090. "authors": [
  1091. {
  1092. "name": "Sebastian Bergmann",
  1093. "email": "sebastian@phpunit.de",
  1094. "role": "lead"
  1095. }
  1096. ],
  1097. "description": "The PHP Unit Testing framework.",
  1098. "homepage": "https://phpunit.de/",
  1099. "keywords": [
  1100. "phpunit",
  1101. "testing",
  1102. "xunit"
  1103. ],
  1104. "time": "2016-07-21 06:48:14"
  1105. },
  1106. {
  1107. "name": "phpunit/phpunit-mock-objects",
  1108. "version": "2.3.8",
  1109. "source": {
  1110. "type": "git",
  1111. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  1112. "reference": "ac8e7a3db35738d56ee9a76e78a4e03d97628983"
  1113. },
  1114. "dist": {
  1115. "type": "zip",
  1116. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/ac8e7a3db35738d56ee9a76e78a4e03d97628983",
  1117. "reference": "ac8e7a3db35738d56ee9a76e78a4e03d97628983",
  1118. "shasum": ""
  1119. },
  1120. "require": {
  1121. "doctrine/instantiator": "^1.0.2",
  1122. "php": ">=5.3.3",
  1123. "phpunit/php-text-template": "~1.2",
  1124. "sebastian/exporter": "~1.2"
  1125. },
  1126. "require-dev": {
  1127. "phpunit/phpunit": "~4.4"
  1128. },
  1129. "suggest": {
  1130. "ext-soap": "*"
  1131. },
  1132. "type": "library",
  1133. "extra": {
  1134. "branch-alias": {
  1135. "dev-master": "2.3.x-dev"
  1136. }
  1137. },
  1138. "autoload": {
  1139. "classmap": [
  1140. "src/"
  1141. ]
  1142. },
  1143. "notification-url": "https://packagist.org/downloads/",
  1144. "license": [
  1145. "BSD-3-Clause"
  1146. ],
  1147. "authors": [
  1148. {
  1149. "name": "Sebastian Bergmann",
  1150. "email": "sb@sebastian-bergmann.de",
  1151. "role": "lead"
  1152. }
  1153. ],
  1154. "description": "Mock Object library for PHPUnit",
  1155. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  1156. "keywords": [
  1157. "mock",
  1158. "xunit"
  1159. ],
  1160. "time": "2015-10-02 06:51:40"
  1161. },
  1162. {
  1163. "name": "phpunit/phpunit-selenium",
  1164. "version": "2.0.2",
  1165. "source": {
  1166. "type": "git",
  1167. "url": "https://github.com/giorgiosironi/phpunit-selenium.git",
  1168. "reference": "2bad798ec0daf20d2854400e3bc5329ee0a7b2d1"
  1169. },
  1170. "dist": {
  1171. "type": "zip",
  1172. "url": "https://api.github.com/repos/giorgiosironi/phpunit-selenium/zipball/2bad798ec0daf20d2854400e3bc5329ee0a7b2d1",
  1173. "reference": "2bad798ec0daf20d2854400e3bc5329ee0a7b2d1",
  1174. "shasum": ""
  1175. },
  1176. "require": {
  1177. "ext-curl": "*",
  1178. "ext-dom": "*",
  1179. "php": ">=5.3.3",
  1180. "phpunit/phpunit": "~4.8",
  1181. "sebastian/comparator": "~1.0"
  1182. },
  1183. "require-dev": {
  1184. "phing/phing": "2.*"
  1185. },
  1186. "type": "library",
  1187. "autoload": {
  1188. "classmap": [
  1189. "PHPUnit/"
  1190. ]
  1191. },
  1192. "notification-url": "https://packagist.org/downloads/",
  1193. "include-path": [
  1194. ""
  1195. ],
  1196. "license": [
  1197. "BSD-3-Clause"
  1198. ],
  1199. "authors": [
  1200. {
  1201. "name": "Giorgio Sironi",
  1202. "email": "info@giorgiosironi.com",
  1203. "role": "developer"
  1204. },
  1205. {
  1206. "name": "Ivan Kurnosov",
  1207. "email": "zerkms@zerkms.com",
  1208. "role": "developer"
  1209. },
  1210. {
  1211. "name": "Sebastian Bergmann",
  1212. "email": "sb@sebastian-bergmann.de",
  1213. "role": "original developer"
  1214. }
  1215. ],
  1216. "description": "Selenium Server integration for PHPUnit",
  1217. "homepage": "http://www.phpunit.de/",
  1218. "keywords": [
  1219. "phpunit",
  1220. "selenium",
  1221. "testing",
  1222. "xunit"
  1223. ],
  1224. "time": "2016-03-01 10:33:56"
  1225. },
  1226. {
  1227. "name": "sebastian/comparator",
  1228. "version": "1.2.0",
  1229. "source": {
  1230. "type": "git",
  1231. "url": "https://github.com/sebastianbergmann/comparator.git",
  1232. "reference": "937efb279bd37a375bcadf584dec0726f84dbf22"
  1233. },
  1234. "dist": {
  1235. "type": "zip",
  1236. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/937efb279bd37a375bcadf584dec0726f84dbf22",
  1237. "reference": "937efb279bd37a375bcadf584dec0726f84dbf22",
  1238. "shasum": ""
  1239. },
  1240. "require": {
  1241. "php": ">=5.3.3",
  1242. "sebastian/diff": "~1.2",
  1243. "sebastian/exporter": "~1.2"
  1244. },
  1245. "require-dev": {
  1246. "phpunit/phpunit": "~4.4"
  1247. },
  1248. "type": "library",
  1249. "extra": {
  1250. "branch-alias": {
  1251. "dev-master": "1.2.x-dev"
  1252. }
  1253. },
  1254. "autoload": {
  1255. "classmap": [
  1256. "src/"
  1257. ]
  1258. },
  1259. "notification-url": "https://packagist.org/downloads/",
  1260. "license": [
  1261. "BSD-3-Clause"
  1262. ],
  1263. "authors": [
  1264. {
  1265. "name": "Jeff Welch",
  1266. "email": "whatthejeff@gmail.com"
  1267. },
  1268. {
  1269. "name": "Volker Dusch",
  1270. "email": "github@wallbash.com"
  1271. },
  1272. {
  1273. "name": "Bernhard Schussek",
  1274. "email": "bschussek@2bepublished.at"
  1275. },
  1276. {
  1277. "name": "Sebastian Bergmann",
  1278. "email": "sebastian@phpunit.de"
  1279. }
  1280. ],
  1281. "description": "Provides the functionality to compare PHP values for equality",
  1282. "homepage": "http://www.github.com/sebastianbergmann/comparator",
  1283. "keywords": [
  1284. "comparator",
  1285. "compare",
  1286. "equality"
  1287. ],
  1288. "time": "2015-07-26 15:48:44"
  1289. },
  1290. {
  1291. "name": "sebastian/diff",
  1292. "version": "1.4.1",
  1293. "source": {
  1294. "type": "git",
  1295. "url": "https://github.com/sebastianbergmann/diff.git",
  1296. "reference": "13edfd8706462032c2f52b4b862974dd46b71c9e"
  1297. },
  1298. "dist": {
  1299. "type": "zip",
  1300. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/13edfd8706462032c2f52b4b862974dd46b71c9e",
  1301. "reference": "13edfd8706462032c2f52b4b862974dd46b71c9e",
  1302. "shasum": ""
  1303. },
  1304. "require": {
  1305. "php": ">=5.3.3"
  1306. },
  1307. "require-dev": {
  1308. "phpunit/phpunit": "~4.8"
  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": "Kore Nordmann",
  1328. "email": "mail@kore-nordmann.de"
  1329. },
  1330. {
  1331. "name": "Sebastian Bergmann",
  1332. "email": "sebastian@phpunit.de"
  1333. }
  1334. ],
  1335. "description": "Diff implementation",
  1336. "homepage": "https://github.com/sebastianbergmann/diff",
  1337. "keywords": [
  1338. "diff"
  1339. ],
  1340. "time": "2015-12-08 07:14:41"
  1341. },
  1342. {
  1343. "name": "sebastian/environment",
  1344. "version": "1.3.8",
  1345. "source": {
  1346. "type": "git",
  1347. "url": "https://github.com/sebastianbergmann/environment.git",
  1348. "reference": "be2c607e43ce4c89ecd60e75c6a85c126e754aea"
  1349. },
  1350. "dist": {
  1351. "type": "zip",
  1352. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/be2c607e43ce4c89ecd60e75c6a85c126e754aea",
  1353. "reference": "be2c607e43ce4c89ecd60e75c6a85c126e754aea",
  1354. "shasum": ""
  1355. },
  1356. "require": {
  1357. "php": "^5.3.3 || ^7.0"
  1358. },
  1359. "require-dev": {
  1360. "phpunit/phpunit": "^4.8 || ^5.0"
  1361. },
  1362. "type": "library",
  1363. "extra": {
  1364. "branch-alias": {
  1365. "dev-master": "1.3.x-dev"
  1366. }
  1367. },
  1368. "autoload": {
  1369. "classmap": [
  1370. "src/"
  1371. ]
  1372. },
  1373. "notification-url": "https://packagist.org/downloads/",
  1374. "license": [
  1375. "BSD-3-Clause"
  1376. ],
  1377. "authors": [
  1378. {
  1379. "name": "Sebastian Bergmann",
  1380. "email": "sebastian@phpunit.de"
  1381. }
  1382. ],
  1383. "description": "Provides functionality to handle HHVM/PHP environments",
  1384. "homepage": "http://www.github.com/sebastianbergmann/environment",
  1385. "keywords": [
  1386. "Xdebug",
  1387. "environment",
  1388. "hhvm"
  1389. ],
  1390. "time": "2016-08-18 05:49:44"
  1391. },
  1392. {
  1393. "name": "sebastian/exporter",
  1394. "version": "1.2.2",
  1395. "source": {
  1396. "type": "git",
  1397. "url": "https://github.com/sebastianbergmann/exporter.git",
  1398. "reference": "42c4c2eec485ee3e159ec9884f95b431287edde4"
  1399. },
  1400. "dist": {
  1401. "type": "zip",
  1402. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/42c4c2eec485ee3e159ec9884f95b431287edde4",
  1403. "reference": "42c4c2eec485ee3e159ec9884f95b431287edde4",
  1404. "shasum": ""
  1405. },
  1406. "require": {
  1407. "php": ">=5.3.3",
  1408. "sebastian/recursion-context": "~1.0"
  1409. },
  1410. "require-dev": {
  1411. "ext-mbstring": "*",
  1412. "phpunit/phpunit": "~4.4"
  1413. },
  1414. "type": "library",
  1415. "extra": {
  1416. "branch-alias": {
  1417. "dev-master": "1.3.x-dev"
  1418. }
  1419. },
  1420. "autoload": {
  1421. "classmap": [
  1422. "src/"
  1423. ]
  1424. },
  1425. "notification-url": "https://packagist.org/downloads/",
  1426. "license": [
  1427. "BSD-3-Clause"
  1428. ],
  1429. "authors": [
  1430. {
  1431. "name": "Jeff Welch",
  1432. "email": "whatthejeff@gmail.com"
  1433. },
  1434. {
  1435. "name": "Volker Dusch",
  1436. "email": "github@wallbash.com"
  1437. },
  1438. {
  1439. "name": "Bernhard Schussek",
  1440. "email": "bschussek@2bepublished.at"
  1441. },
  1442. {
  1443. "name": "Sebastian Bergmann",
  1444. "email": "sebastian@phpunit.de"
  1445. },
  1446. {
  1447. "name": "Adam Harvey",
  1448. "email": "aharvey@php.net"
  1449. }
  1450. ],
  1451. "description": "Provides the functionality to export PHP variables for visualization",
  1452. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  1453. "keywords": [
  1454. "export",
  1455. "exporter"
  1456. ],
  1457. "time": "2016-06-17 09:04:28"
  1458. },
  1459. {
  1460. "name": "sebastian/global-state",
  1461. "version": "1.1.1",
  1462. "source": {
  1463. "type": "git",
  1464. "url": "https://github.com/sebastianbergmann/global-state.git",
  1465. "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4"
  1466. },
  1467. "dist": {
  1468. "type": "zip",
  1469. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bc37d50fea7d017d3d340f230811c9f1d7280af4",
  1470. "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4",
  1471. "shasum": ""
  1472. },
  1473. "require": {
  1474. "php": ">=5.3.3"
  1475. },
  1476. "require-dev": {
  1477. "phpunit/phpunit": "~4.2"
  1478. },
  1479. "suggest": {
  1480. "ext-uopz": "*"
  1481. },
  1482. "type": "library",
  1483. "extra": {
  1484. "branch-alias": {
  1485. "dev-master": "1.0-dev"
  1486. }
  1487. },
  1488. "autoload": {
  1489. "classmap": [
  1490. "src/"
  1491. ]
  1492. },
  1493. "notification-url": "https://packagist.org/downloads/",
  1494. "license": [
  1495. "BSD-3-Clause"
  1496. ],
  1497. "authors": [
  1498. {
  1499. "name": "Sebastian Bergmann",
  1500. "email": "sebastian@phpunit.de"
  1501. }
  1502. ],
  1503. "description": "Snapshotting of global state",
  1504. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  1505. "keywords": [
  1506. "global state"
  1507. ],
  1508. "time": "2015-10-12 03:26:01"
  1509. },
  1510. {
  1511. "name": "sebastian/recursion-context",
  1512. "version": "1.0.2",
  1513. "source": {
  1514. "type": "git",
  1515. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  1516. "reference": "913401df809e99e4f47b27cdd781f4a258d58791"
  1517. },
  1518. "dist": {
  1519. "type": "zip",
  1520. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/913401df809e99e4f47b27cdd781f4a258d58791",
  1521. "reference": "913401df809e99e4f47b27cdd781f4a258d58791",
  1522. "shasum": ""
  1523. },
  1524. "require": {
  1525. "php": ">=5.3.3"
  1526. },
  1527. "require-dev": {
  1528. "phpunit/phpunit": "~4.4"
  1529. },
  1530. "type": "library",
  1531. "extra": {
  1532. "branch-alias": {
  1533. "dev-master": "1.0.x-dev"
  1534. }
  1535. },
  1536. "autoload": {
  1537. "classmap": [
  1538. "src/"
  1539. ]
  1540. },
  1541. "notification-url": "https://packagist.org/downloads/",
  1542. "license": [
  1543. "BSD-3-Clause"
  1544. ],
  1545. "authors": [
  1546. {
  1547. "name": "Jeff Welch",
  1548. "email": "whatthejeff@gmail.com"
  1549. },
  1550. {
  1551. "name": "Sebastian Bergmann",
  1552. "email": "sebastian@phpunit.de"
  1553. },
  1554. {
  1555. "name": "Adam Harvey",
  1556. "email": "aharvey@php.net"
  1557. }
  1558. ],
  1559. "description": "Provides functionality to recursively process PHP variables",
  1560. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  1561. "time": "2015-11-11 19:50:13"
  1562. },
  1563. {
  1564. "name": "sebastian/version",
  1565. "version": "1.0.6",
  1566. "source": {
  1567. "type": "git",
  1568. "url": "https://github.com/sebastianbergmann/version.git",
  1569. "reference": "58b3a85e7999757d6ad81c787a1fbf5ff6c628c6"
  1570. },
  1571. "dist": {
  1572. "type": "zip",
  1573. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/58b3a85e7999757d6ad81c787a1fbf5ff6c628c6",
  1574. "reference": "58b3a85e7999757d6ad81c787a1fbf5ff6c628c6",
  1575. "shasum": ""
  1576. },
  1577. "type": "library",
  1578. "autoload": {
  1579. "classmap": [
  1580. "src/"
  1581. ]
  1582. },
  1583. "notification-url": "https://packagist.org/downloads/",
  1584. "license": [
  1585. "BSD-3-Clause"
  1586. ],
  1587. "authors": [
  1588. {
  1589. "name": "Sebastian Bergmann",
  1590. "email": "sebastian@phpunit.de",
  1591. "role": "lead"
  1592. }
  1593. ],
  1594. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  1595. "homepage": "https://github.com/sebastianbergmann/version",
  1596. "time": "2015-06-21 13:59:46"
  1597. },
  1598. {
  1599. "name": "squizlabs/php_codesniffer",
  1600. "version": "2.7.0",
  1601. "source": {
  1602. "type": "git",
  1603. "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
  1604. "reference": "571e27b6348e5b3a637b2abc82ac0d01e6d7bbed"
  1605. },
  1606. "dist": {
  1607. "type": "zip",
  1608. "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/571e27b6348e5b3a637b2abc82ac0d01e6d7bbed",
  1609. "reference": "571e27b6348e5b3a637b2abc82ac0d01e6d7bbed",
  1610. "shasum": ""
  1611. },
  1612. "require": {
  1613. "ext-simplexml": "*",
  1614. "ext-tokenizer": "*",
  1615. "ext-xmlwriter": "*",
  1616. "php": ">=5.1.2"
  1617. },
  1618. "require-dev": {
  1619. "phpunit/phpunit": "~4.0"
  1620. },
  1621. "bin": [
  1622. "scripts/phpcs",
  1623. "scripts/phpcbf"
  1624. ],
  1625. "type": "library",
  1626. "extra": {
  1627. "branch-alias": {
  1628. "dev-master": "2.x-dev"
  1629. }
  1630. },
  1631. "autoload": {
  1632. "classmap": [
  1633. "CodeSniffer.php",
  1634. "CodeSniffer/CLI.php",
  1635. "CodeSniffer/Exception.php",
  1636. "CodeSniffer/File.php",
  1637. "CodeSniffer/Fixer.php",
  1638. "CodeSniffer/Report.php",
  1639. "CodeSniffer/Reporting.php",
  1640. "CodeSniffer/Sniff.php",
  1641. "CodeSniffer/Tokens.php",
  1642. "CodeSniffer/Reports/",
  1643. "CodeSniffer/Tokenizers/",
  1644. "CodeSniffer/DocGenerators/",
  1645. "CodeSniffer/Standards/AbstractPatternSniff.php",
  1646. "CodeSniffer/Standards/AbstractScopeSniff.php",
  1647. "CodeSniffer/Standards/AbstractVariableSniff.php",
  1648. "CodeSniffer/Standards/IncorrectPatternException.php",
  1649. "CodeSniffer/Standards/Generic/Sniffs/",
  1650. "CodeSniffer/Standards/MySource/Sniffs/",
  1651. "CodeSniffer/Standards/PEAR/Sniffs/",
  1652. "CodeSniffer/Standards/PSR1/Sniffs/",
  1653. "CodeSniffer/Standards/PSR2/Sniffs/",
  1654. "CodeSniffer/Standards/Squiz/Sniffs/",
  1655. "CodeSniffer/Standards/Zend/Sniffs/"
  1656. ]
  1657. },
  1658. "notification-url": "https://packagist.org/downloads/",
  1659. "license": [
  1660. "BSD-3-Clause"
  1661. ],
  1662. "authors": [
  1663. {
  1664. "name": "Greg Sherwood",
  1665. "role": "lead"
  1666. }
  1667. ],
  1668. "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
  1669. "homepage": "http://www.squizlabs.com/php-codesniffer",
  1670. "keywords": [
  1671. "phpcs",
  1672. "standards"
  1673. ],
  1674. "time": "2016-09-01 23:53:02"
  1675. },
  1676. {
  1677. "name": "symfony/yaml",
  1678. "version": "v3.1.6",
  1679. "source": {
  1680. "type": "git",
  1681. "url": "https://github.com/symfony/yaml.git",
  1682. "reference": "7ff51b06c6c3d5cc6686df69004a42c69df09e27"
  1683. },
  1684. "dist": {
  1685. "type": "zip",
  1686. "url": "https://api.github.com/repos/symfony/yaml/zipball/7ff51b06c6c3d5cc6686df69004a42c69df09e27",
  1687. "reference": "7ff51b06c6c3d5cc6686df69004a42c69df09e27",
  1688. "shasum": ""
  1689. },
  1690. "require": {
  1691. "php": ">=5.5.9"
  1692. },
  1693. "type": "library",
  1694. "extra": {
  1695. "branch-alias": {
  1696. "dev-master": "3.1-dev"
  1697. }
  1698. },
  1699. "autoload": {
  1700. "psr-4": {
  1701. "Symfony\\Component\\Yaml\\": ""
  1702. },
  1703. "exclude-from-classmap": [
  1704. "/Tests/"
  1705. ]
  1706. },
  1707. "notification-url": "https://packagist.org/downloads/",
  1708. "license": [
  1709. "MIT"
  1710. ],
  1711. "authors": [
  1712. {
  1713. "name": "Fabien Potencier",
  1714. "email": "fabien@symfony.com"
  1715. },
  1716. {
  1717. "name": "Symfony Community",
  1718. "homepage": "https://symfony.com/contributors"
  1719. }
  1720. ],
  1721. "description": "Symfony Yaml Component",
  1722. "homepage": "https://symfony.com",
  1723. "time": "2016-10-24 18:41:13"
  1724. },
  1725. {
  1726. "name": "webmozart/assert",
  1727. "version": "1.1.0",
  1728. "source": {
  1729. "type": "git",
  1730. "url": "https://github.com/webmozart/assert.git",
  1731. "reference": "bb2d123231c095735130cc8f6d31385a44c7b308"
  1732. },
  1733. "dist": {
  1734. "type": "zip",
  1735. "url": "https://api.github.com/repos/webmozart/assert/zipball/bb2d123231c095735130cc8f6d31385a44c7b308",
  1736. "reference": "bb2d123231c095735130cc8f6d31385a44c7b308",
  1737. "shasum": ""
  1738. },
  1739. "require": {
  1740. "php": "^5.3.3|^7.0"
  1741. },
  1742. "require-dev": {
  1743. "phpunit/phpunit": "^4.6",
  1744. "sebastian/version": "^1.0.1"
  1745. },
  1746. "type": "library",
  1747. "extra": {
  1748. "branch-alias": {
  1749. "dev-master": "1.2-dev"
  1750. }
  1751. },
  1752. "autoload": {
  1753. "psr-4": {
  1754. "Webmozart\\Assert\\": "src/"
  1755. }
  1756. },
  1757. "notification-url": "https://packagist.org/downloads/",
  1758. "license": [
  1759. "MIT"
  1760. ],
  1761. "authors": [
  1762. {
  1763. "name": "Bernhard Schussek",
  1764. "email": "bschussek@gmail.com"
  1765. }
  1766. ],
  1767. "description": "Assertions to validate method input/output with nice error messages.",
  1768. "keywords": [
  1769. "assert",
  1770. "check",
  1771. "validate"
  1772. ],
  1773. "time": "2016-08-09 15:02:57"
  1774. }
  1775. ],
  1776. "aliases": [],
  1777. "minimum-stability": "stable",
  1778. "stability-flags": {
  1779. "restler/framework": 5
  1780. },
  1781. "prefer-stable": false,
  1782. "prefer-lowest": false,
  1783. "platform": {
  1784. "php": ">=5.3.0",
  1785. "ext-curl": "*"
  1786. },
  1787. "platform-dev": []
  1788. }