composer.lock 66 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956
  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. "content-hash": "fd3ab0a8fd06e0532a7764f20a9aa52b",
  8. "packages": [],
  9. "packages-dev": [
  10. {
  11. "name": "doctrine/instantiator",
  12. "version": "1.0.5",
  13. "source": {
  14. "type": "git",
  15. "url": "https://github.com/doctrine/instantiator.git",
  16. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
  17. },
  18. "dist": {
  19. "type": "zip",
  20. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",
  21. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
  22. "shasum": ""
  23. },
  24. "require": {
  25. "php": ">=5.3,<8.0-DEV"
  26. },
  27. "require-dev": {
  28. "athletic/athletic": "~0.1.8",
  29. "ext-pdo": "*",
  30. "ext-phar": "*",
  31. "phpunit/phpunit": "~4.0",
  32. "squizlabs/php_codesniffer": "~2.0"
  33. },
  34. "type": "library",
  35. "extra": {
  36. "branch-alias": {
  37. "dev-master": "1.0.x-dev"
  38. }
  39. },
  40. "autoload": {
  41. "psr-4": {
  42. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  43. }
  44. },
  45. "notification-url": "https://packagist.org/downloads/",
  46. "license": [
  47. "MIT"
  48. ],
  49. "authors": [
  50. {
  51. "name": "Marco Pivetta",
  52. "email": "ocramius@gmail.com",
  53. "homepage": "http://ocramius.github.com/"
  54. }
  55. ],
  56. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  57. "homepage": "https://github.com/doctrine/instantiator",
  58. "keywords": [
  59. "constructor",
  60. "instantiate"
  61. ],
  62. "time": "2015-06-14T21:17:01+00:00"
  63. },
  64. {
  65. "name": "fzaninotto/faker",
  66. "version": "v1.8.0",
  67. "source": {
  68. "type": "git",
  69. "url": "https://github.com/fzaninotto/Faker.git",
  70. "reference": "f72816b43e74063c8b10357394b6bba8cb1c10de"
  71. },
  72. "dist": {
  73. "type": "zip",
  74. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/f72816b43e74063c8b10357394b6bba8cb1c10de",
  75. "reference": "f72816b43e74063c8b10357394b6bba8cb1c10de",
  76. "shasum": ""
  77. },
  78. "require": {
  79. "php": "^5.3.3 || ^7.0"
  80. },
  81. "require-dev": {
  82. "ext-intl": "*",
  83. "phpunit/phpunit": "^4.8.35 || ^5.7",
  84. "squizlabs/php_codesniffer": "^1.5"
  85. },
  86. "type": "library",
  87. "extra": {
  88. "branch-alias": {
  89. "dev-master": "1.8-dev"
  90. }
  91. },
  92. "autoload": {
  93. "psr-4": {
  94. "Faker\\": "src/Faker/"
  95. }
  96. },
  97. "notification-url": "https://packagist.org/downloads/",
  98. "license": [
  99. "MIT"
  100. ],
  101. "authors": [
  102. {
  103. "name": "François Zaninotto"
  104. }
  105. ],
  106. "description": "Faker is a PHP library that generates fake data for you.",
  107. "keywords": [
  108. "data",
  109. "faker",
  110. "fixtures"
  111. ],
  112. "time": "2018-07-12T10:23:15+00:00"
  113. },
  114. {
  115. "name": "guzzlehttp/guzzle",
  116. "version": "6.3.3",
  117. "source": {
  118. "type": "git",
  119. "url": "https://github.com/guzzle/guzzle.git",
  120. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba"
  121. },
  122. "dist": {
  123. "type": "zip",
  124. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  125. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  126. "shasum": ""
  127. },
  128. "require": {
  129. "guzzlehttp/promises": "^1.0",
  130. "guzzlehttp/psr7": "^1.4",
  131. "php": ">=5.5"
  132. },
  133. "require-dev": {
  134. "ext-curl": "*",
  135. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  136. "psr/log": "^1.0"
  137. },
  138. "suggest": {
  139. "psr/log": "Required for using the Log middleware"
  140. },
  141. "type": "library",
  142. "extra": {
  143. "branch-alias": {
  144. "dev-master": "6.3-dev"
  145. }
  146. },
  147. "autoload": {
  148. "files": [
  149. "src/functions_include.php"
  150. ],
  151. "psr-4": {
  152. "GuzzleHttp\\": "src/"
  153. }
  154. },
  155. "notification-url": "https://packagist.org/downloads/",
  156. "license": [
  157. "MIT"
  158. ],
  159. "authors": [
  160. {
  161. "name": "Michael Dowling",
  162. "email": "mtdowling@gmail.com",
  163. "homepage": "https://github.com/mtdowling"
  164. }
  165. ],
  166. "description": "Guzzle is a PHP HTTP client library",
  167. "homepage": "http://guzzlephp.org/",
  168. "keywords": [
  169. "client",
  170. "curl",
  171. "framework",
  172. "http",
  173. "http client",
  174. "rest",
  175. "web service"
  176. ],
  177. "time": "2018-04-22T15:46:56+00:00"
  178. },
  179. {
  180. "name": "guzzlehttp/promises",
  181. "version": "v1.3.1",
  182. "source": {
  183. "type": "git",
  184. "url": "https://github.com/guzzle/promises.git",
  185. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  186. },
  187. "dist": {
  188. "type": "zip",
  189. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  190. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  191. "shasum": ""
  192. },
  193. "require": {
  194. "php": ">=5.5.0"
  195. },
  196. "require-dev": {
  197. "phpunit/phpunit": "^4.0"
  198. },
  199. "type": "library",
  200. "extra": {
  201. "branch-alias": {
  202. "dev-master": "1.4-dev"
  203. }
  204. },
  205. "autoload": {
  206. "psr-4": {
  207. "GuzzleHttp\\Promise\\": "src/"
  208. },
  209. "files": [
  210. "src/functions_include.php"
  211. ]
  212. },
  213. "notification-url": "https://packagist.org/downloads/",
  214. "license": [
  215. "MIT"
  216. ],
  217. "authors": [
  218. {
  219. "name": "Michael Dowling",
  220. "email": "mtdowling@gmail.com",
  221. "homepage": "https://github.com/mtdowling"
  222. }
  223. ],
  224. "description": "Guzzle promises library",
  225. "keywords": [
  226. "promise"
  227. ],
  228. "time": "2016-12-20T10:07:11+00:00"
  229. },
  230. {
  231. "name": "guzzlehttp/psr7",
  232. "version": "1.4.2",
  233. "source": {
  234. "type": "git",
  235. "url": "https://github.com/guzzle/psr7.git",
  236. "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c"
  237. },
  238. "dist": {
  239. "type": "zip",
  240. "url": "https://api.github.com/repos/guzzle/psr7/zipball/f5b8a8512e2b58b0071a7280e39f14f72e05d87c",
  241. "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c",
  242. "shasum": ""
  243. },
  244. "require": {
  245. "php": ">=5.4.0",
  246. "psr/http-message": "~1.0"
  247. },
  248. "provide": {
  249. "psr/http-message-implementation": "1.0"
  250. },
  251. "require-dev": {
  252. "phpunit/phpunit": "~4.0"
  253. },
  254. "type": "library",
  255. "extra": {
  256. "branch-alias": {
  257. "dev-master": "1.4-dev"
  258. }
  259. },
  260. "autoload": {
  261. "psr-4": {
  262. "GuzzleHttp\\Psr7\\": "src/"
  263. },
  264. "files": [
  265. "src/functions_include.php"
  266. ]
  267. },
  268. "notification-url": "https://packagist.org/downloads/",
  269. "license": [
  270. "MIT"
  271. ],
  272. "authors": [
  273. {
  274. "name": "Michael Dowling",
  275. "email": "mtdowling@gmail.com",
  276. "homepage": "https://github.com/mtdowling"
  277. },
  278. {
  279. "name": "Tobias Schultze",
  280. "homepage": "https://github.com/Tobion"
  281. }
  282. ],
  283. "description": "PSR-7 message implementation that also provides common utility methods",
  284. "keywords": [
  285. "http",
  286. "message",
  287. "request",
  288. "response",
  289. "stream",
  290. "uri",
  291. "url"
  292. ],
  293. "time": "2017-03-20T17:10:46+00:00"
  294. },
  295. {
  296. "name": "myclabs/deep-copy",
  297. "version": "1.7.0",
  298. "source": {
  299. "type": "git",
  300. "url": "https://github.com/myclabs/DeepCopy.git",
  301. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e"
  302. },
  303. "dist": {
  304. "type": "zip",
  305. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  306. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  307. "shasum": ""
  308. },
  309. "require": {
  310. "php": "^5.6 || ^7.0"
  311. },
  312. "require-dev": {
  313. "doctrine/collections": "^1.0",
  314. "doctrine/common": "^2.6",
  315. "phpunit/phpunit": "^4.1"
  316. },
  317. "type": "library",
  318. "autoload": {
  319. "psr-4": {
  320. "DeepCopy\\": "src/DeepCopy/"
  321. },
  322. "files": [
  323. "src/DeepCopy/deep_copy.php"
  324. ]
  325. },
  326. "notification-url": "https://packagist.org/downloads/",
  327. "license": [
  328. "MIT"
  329. ],
  330. "description": "Create deep copies (clones) of your objects",
  331. "keywords": [
  332. "clone",
  333. "copy",
  334. "duplicate",
  335. "object",
  336. "object graph"
  337. ],
  338. "time": "2017-10-19T19:58:43+00:00"
  339. },
  340. {
  341. "name": "phpdocumentor/reflection-common",
  342. "version": "1.0.1",
  343. "source": {
  344. "type": "git",
  345. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  346. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
  347. },
  348. "dist": {
  349. "type": "zip",
  350. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  351. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  352. "shasum": ""
  353. },
  354. "require": {
  355. "php": ">=5.5"
  356. },
  357. "require-dev": {
  358. "phpunit/phpunit": "^4.6"
  359. },
  360. "type": "library",
  361. "extra": {
  362. "branch-alias": {
  363. "dev-master": "1.0.x-dev"
  364. }
  365. },
  366. "autoload": {
  367. "psr-4": {
  368. "phpDocumentor\\Reflection\\": [
  369. "src"
  370. ]
  371. }
  372. },
  373. "notification-url": "https://packagist.org/downloads/",
  374. "license": [
  375. "MIT"
  376. ],
  377. "authors": [
  378. {
  379. "name": "Jaap van Otterdijk",
  380. "email": "opensource@ijaap.nl"
  381. }
  382. ],
  383. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  384. "homepage": "http://www.phpdoc.org",
  385. "keywords": [
  386. "FQSEN",
  387. "phpDocumentor",
  388. "phpdoc",
  389. "reflection",
  390. "static analysis"
  391. ],
  392. "time": "2017-09-11T18:02:19+00:00"
  393. },
  394. {
  395. "name": "phpdocumentor/reflection-docblock",
  396. "version": "3.3.2",
  397. "source": {
  398. "type": "git",
  399. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  400. "reference": "bf329f6c1aadea3299f08ee804682b7c45b326a2"
  401. },
  402. "dist": {
  403. "type": "zip",
  404. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/bf329f6c1aadea3299f08ee804682b7c45b326a2",
  405. "reference": "bf329f6c1aadea3299f08ee804682b7c45b326a2",
  406. "shasum": ""
  407. },
  408. "require": {
  409. "php": "^5.6 || ^7.0",
  410. "phpdocumentor/reflection-common": "^1.0.0",
  411. "phpdocumentor/type-resolver": "^0.4.0",
  412. "webmozart/assert": "^1.0"
  413. },
  414. "require-dev": {
  415. "mockery/mockery": "^0.9.4",
  416. "phpunit/phpunit": "^4.4"
  417. },
  418. "type": "library",
  419. "autoload": {
  420. "psr-4": {
  421. "phpDocumentor\\Reflection\\": [
  422. "src/"
  423. ]
  424. }
  425. },
  426. "notification-url": "https://packagist.org/downloads/",
  427. "license": [
  428. "MIT"
  429. ],
  430. "authors": [
  431. {
  432. "name": "Mike van Riel",
  433. "email": "me@mikevanriel.com"
  434. }
  435. ],
  436. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  437. "time": "2017-11-10T14:09:06+00:00"
  438. },
  439. {
  440. "name": "phpdocumentor/type-resolver",
  441. "version": "0.4.0",
  442. "source": {
  443. "type": "git",
  444. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  445. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7"
  446. },
  447. "dist": {
  448. "type": "zip",
  449. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7",
  450. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7",
  451. "shasum": ""
  452. },
  453. "require": {
  454. "php": "^5.5 || ^7.0",
  455. "phpdocumentor/reflection-common": "^1.0"
  456. },
  457. "require-dev": {
  458. "mockery/mockery": "^0.9.4",
  459. "phpunit/phpunit": "^5.2||^4.8.24"
  460. },
  461. "type": "library",
  462. "extra": {
  463. "branch-alias": {
  464. "dev-master": "1.0.x-dev"
  465. }
  466. },
  467. "autoload": {
  468. "psr-4": {
  469. "phpDocumentor\\Reflection\\": [
  470. "src/"
  471. ]
  472. }
  473. },
  474. "notification-url": "https://packagist.org/downloads/",
  475. "license": [
  476. "MIT"
  477. ],
  478. "authors": [
  479. {
  480. "name": "Mike van Riel",
  481. "email": "me@mikevanriel.com"
  482. }
  483. ],
  484. "time": "2017-07-14T14:27:02+00:00"
  485. },
  486. {
  487. "name": "phpspec/prophecy",
  488. "version": "1.8.0",
  489. "source": {
  490. "type": "git",
  491. "url": "https://github.com/phpspec/prophecy.git",
  492. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06"
  493. },
  494. "dist": {
  495. "type": "zip",
  496. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  497. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  498. "shasum": ""
  499. },
  500. "require": {
  501. "doctrine/instantiator": "^1.0.2",
  502. "php": "^5.3|^7.0",
  503. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0",
  504. "sebastian/comparator": "^1.1|^2.0|^3.0",
  505. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  506. },
  507. "require-dev": {
  508. "phpspec/phpspec": "^2.5|^3.2",
  509. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  510. },
  511. "type": "library",
  512. "extra": {
  513. "branch-alias": {
  514. "dev-master": "1.8.x-dev"
  515. }
  516. },
  517. "autoload": {
  518. "psr-0": {
  519. "Prophecy\\": "src/"
  520. }
  521. },
  522. "notification-url": "https://packagist.org/downloads/",
  523. "license": [
  524. "MIT"
  525. ],
  526. "authors": [
  527. {
  528. "name": "Konstantin Kudryashov",
  529. "email": "ever.zet@gmail.com",
  530. "homepage": "http://everzet.com"
  531. },
  532. {
  533. "name": "Marcello Duarte",
  534. "email": "marcello.duarte@gmail.com"
  535. }
  536. ],
  537. "description": "Highly opinionated mocking framework for PHP 5.3+",
  538. "homepage": "https://github.com/phpspec/prophecy",
  539. "keywords": [
  540. "Double",
  541. "Dummy",
  542. "fake",
  543. "mock",
  544. "spy",
  545. "stub"
  546. ],
  547. "time": "2018-08-05T17:53:17+00:00"
  548. },
  549. {
  550. "name": "phpunit/php-code-coverage",
  551. "version": "4.0.8",
  552. "source": {
  553. "type": "git",
  554. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  555. "reference": "ef7b2f56815df854e66ceaee8ebe9393ae36a40d"
  556. },
  557. "dist": {
  558. "type": "zip",
  559. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/ef7b2f56815df854e66ceaee8ebe9393ae36a40d",
  560. "reference": "ef7b2f56815df854e66ceaee8ebe9393ae36a40d",
  561. "shasum": ""
  562. },
  563. "require": {
  564. "ext-dom": "*",
  565. "ext-xmlwriter": "*",
  566. "php": "^5.6 || ^7.0",
  567. "phpunit/php-file-iterator": "^1.3",
  568. "phpunit/php-text-template": "^1.2",
  569. "phpunit/php-token-stream": "^1.4.2 || ^2.0",
  570. "sebastian/code-unit-reverse-lookup": "^1.0",
  571. "sebastian/environment": "^1.3.2 || ^2.0",
  572. "sebastian/version": "^1.0 || ^2.0"
  573. },
  574. "require-dev": {
  575. "ext-xdebug": "^2.1.4",
  576. "phpunit/phpunit": "^5.7"
  577. },
  578. "suggest": {
  579. "ext-xdebug": "^2.5.1"
  580. },
  581. "type": "library",
  582. "extra": {
  583. "branch-alias": {
  584. "dev-master": "4.0.x-dev"
  585. }
  586. },
  587. "autoload": {
  588. "classmap": [
  589. "src/"
  590. ]
  591. },
  592. "notification-url": "https://packagist.org/downloads/",
  593. "license": [
  594. "BSD-3-Clause"
  595. ],
  596. "authors": [
  597. {
  598. "name": "Sebastian Bergmann",
  599. "email": "sb@sebastian-bergmann.de",
  600. "role": "lead"
  601. }
  602. ],
  603. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  604. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  605. "keywords": [
  606. "coverage",
  607. "testing",
  608. "xunit"
  609. ],
  610. "time": "2017-04-02T07:44:40+00:00"
  611. },
  612. {
  613. "name": "phpunit/php-file-iterator",
  614. "version": "1.4.5",
  615. "source": {
  616. "type": "git",
  617. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  618. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
  619. },
  620. "dist": {
  621. "type": "zip",
  622. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
  623. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
  624. "shasum": ""
  625. },
  626. "require": {
  627. "php": ">=5.3.3"
  628. },
  629. "type": "library",
  630. "extra": {
  631. "branch-alias": {
  632. "dev-master": "1.4.x-dev"
  633. }
  634. },
  635. "autoload": {
  636. "classmap": [
  637. "src/"
  638. ]
  639. },
  640. "notification-url": "https://packagist.org/downloads/",
  641. "license": [
  642. "BSD-3-Clause"
  643. ],
  644. "authors": [
  645. {
  646. "name": "Sebastian Bergmann",
  647. "email": "sb@sebastian-bergmann.de",
  648. "role": "lead"
  649. }
  650. ],
  651. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  652. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  653. "keywords": [
  654. "filesystem",
  655. "iterator"
  656. ],
  657. "time": "2017-11-27T13:52:08+00:00"
  658. },
  659. {
  660. "name": "phpunit/php-text-template",
  661. "version": "1.2.1",
  662. "source": {
  663. "type": "git",
  664. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  665. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  666. },
  667. "dist": {
  668. "type": "zip",
  669. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  670. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  671. "shasum": ""
  672. },
  673. "require": {
  674. "php": ">=5.3.3"
  675. },
  676. "type": "library",
  677. "autoload": {
  678. "classmap": [
  679. "src/"
  680. ]
  681. },
  682. "notification-url": "https://packagist.org/downloads/",
  683. "license": [
  684. "BSD-3-Clause"
  685. ],
  686. "authors": [
  687. {
  688. "name": "Sebastian Bergmann",
  689. "email": "sebastian@phpunit.de",
  690. "role": "lead"
  691. }
  692. ],
  693. "description": "Simple template engine.",
  694. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  695. "keywords": [
  696. "template"
  697. ],
  698. "time": "2015-06-21T13:50:34+00:00"
  699. },
  700. {
  701. "name": "phpunit/php-timer",
  702. "version": "1.0.9",
  703. "source": {
  704. "type": "git",
  705. "url": "https://github.com/sebastianbergmann/php-timer.git",
  706. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  707. },
  708. "dist": {
  709. "type": "zip",
  710. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  711. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  712. "shasum": ""
  713. },
  714. "require": {
  715. "php": "^5.3.3 || ^7.0"
  716. },
  717. "require-dev": {
  718. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  719. },
  720. "type": "library",
  721. "extra": {
  722. "branch-alias": {
  723. "dev-master": "1.0-dev"
  724. }
  725. },
  726. "autoload": {
  727. "classmap": [
  728. "src/"
  729. ]
  730. },
  731. "notification-url": "https://packagist.org/downloads/",
  732. "license": [
  733. "BSD-3-Clause"
  734. ],
  735. "authors": [
  736. {
  737. "name": "Sebastian Bergmann",
  738. "email": "sb@sebastian-bergmann.de",
  739. "role": "lead"
  740. }
  741. ],
  742. "description": "Utility class for timing",
  743. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  744. "keywords": [
  745. "timer"
  746. ],
  747. "time": "2017-02-26T11:10:40+00:00"
  748. },
  749. {
  750. "name": "phpunit/php-token-stream",
  751. "version": "1.4.12",
  752. "source": {
  753. "type": "git",
  754. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  755. "reference": "1ce90ba27c42e4e44e6d8458241466380b51fa16"
  756. },
  757. "dist": {
  758. "type": "zip",
  759. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/1ce90ba27c42e4e44e6d8458241466380b51fa16",
  760. "reference": "1ce90ba27c42e4e44e6d8458241466380b51fa16",
  761. "shasum": ""
  762. },
  763. "require": {
  764. "ext-tokenizer": "*",
  765. "php": ">=5.3.3"
  766. },
  767. "require-dev": {
  768. "phpunit/phpunit": "~4.2"
  769. },
  770. "type": "library",
  771. "extra": {
  772. "branch-alias": {
  773. "dev-master": "1.4-dev"
  774. }
  775. },
  776. "autoload": {
  777. "classmap": [
  778. "src/"
  779. ]
  780. },
  781. "notification-url": "https://packagist.org/downloads/",
  782. "license": [
  783. "BSD-3-Clause"
  784. ],
  785. "authors": [
  786. {
  787. "name": "Sebastian Bergmann",
  788. "email": "sebastian@phpunit.de"
  789. }
  790. ],
  791. "description": "Wrapper around PHP's tokenizer extension.",
  792. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  793. "keywords": [
  794. "tokenizer"
  795. ],
  796. "time": "2017-12-04T08:55:13+00:00"
  797. },
  798. {
  799. "name": "phpunit/phpunit",
  800. "version": "5.7.27",
  801. "source": {
  802. "type": "git",
  803. "url": "https://github.com/sebastianbergmann/phpunit.git",
  804. "reference": "b7803aeca3ccb99ad0a506fa80b64cd6a56bbc0c"
  805. },
  806. "dist": {
  807. "type": "zip",
  808. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/b7803aeca3ccb99ad0a506fa80b64cd6a56bbc0c",
  809. "reference": "b7803aeca3ccb99ad0a506fa80b64cd6a56bbc0c",
  810. "shasum": ""
  811. },
  812. "require": {
  813. "ext-dom": "*",
  814. "ext-json": "*",
  815. "ext-libxml": "*",
  816. "ext-mbstring": "*",
  817. "ext-xml": "*",
  818. "myclabs/deep-copy": "~1.3",
  819. "php": "^5.6 || ^7.0",
  820. "phpspec/prophecy": "^1.6.2",
  821. "phpunit/php-code-coverage": "^4.0.4",
  822. "phpunit/php-file-iterator": "~1.4",
  823. "phpunit/php-text-template": "~1.2",
  824. "phpunit/php-timer": "^1.0.6",
  825. "phpunit/phpunit-mock-objects": "^3.2",
  826. "sebastian/comparator": "^1.2.4",
  827. "sebastian/diff": "^1.4.3",
  828. "sebastian/environment": "^1.3.4 || ^2.0",
  829. "sebastian/exporter": "~2.0",
  830. "sebastian/global-state": "^1.1",
  831. "sebastian/object-enumerator": "~2.0",
  832. "sebastian/resource-operations": "~1.0",
  833. "sebastian/version": "^1.0.6|^2.0.1",
  834. "symfony/yaml": "~2.1|~3.0|~4.0"
  835. },
  836. "conflict": {
  837. "phpdocumentor/reflection-docblock": "3.0.2"
  838. },
  839. "require-dev": {
  840. "ext-pdo": "*"
  841. },
  842. "suggest": {
  843. "ext-xdebug": "*",
  844. "phpunit/php-invoker": "~1.1"
  845. },
  846. "bin": [
  847. "phpunit"
  848. ],
  849. "type": "library",
  850. "extra": {
  851. "branch-alias": {
  852. "dev-master": "5.7.x-dev"
  853. }
  854. },
  855. "autoload": {
  856. "classmap": [
  857. "src/"
  858. ]
  859. },
  860. "notification-url": "https://packagist.org/downloads/",
  861. "license": [
  862. "BSD-3-Clause"
  863. ],
  864. "authors": [
  865. {
  866. "name": "Sebastian Bergmann",
  867. "email": "sebastian@phpunit.de",
  868. "role": "lead"
  869. }
  870. ],
  871. "description": "The PHP Unit Testing framework.",
  872. "homepage": "https://phpunit.de/",
  873. "keywords": [
  874. "phpunit",
  875. "testing",
  876. "xunit"
  877. ],
  878. "time": "2018-02-01T05:50:59+00:00"
  879. },
  880. {
  881. "name": "phpunit/phpunit-mock-objects",
  882. "version": "3.4.4",
  883. "source": {
  884. "type": "git",
  885. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  886. "reference": "a23b761686d50a560cc56233b9ecf49597cc9118"
  887. },
  888. "dist": {
  889. "type": "zip",
  890. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/a23b761686d50a560cc56233b9ecf49597cc9118",
  891. "reference": "a23b761686d50a560cc56233b9ecf49597cc9118",
  892. "shasum": ""
  893. },
  894. "require": {
  895. "doctrine/instantiator": "^1.0.2",
  896. "php": "^5.6 || ^7.0",
  897. "phpunit/php-text-template": "^1.2",
  898. "sebastian/exporter": "^1.2 || ^2.0"
  899. },
  900. "conflict": {
  901. "phpunit/phpunit": "<5.4.0"
  902. },
  903. "require-dev": {
  904. "phpunit/phpunit": "^5.4"
  905. },
  906. "suggest": {
  907. "ext-soap": "*"
  908. },
  909. "type": "library",
  910. "extra": {
  911. "branch-alias": {
  912. "dev-master": "3.2.x-dev"
  913. }
  914. },
  915. "autoload": {
  916. "classmap": [
  917. "src/"
  918. ]
  919. },
  920. "notification-url": "https://packagist.org/downloads/",
  921. "license": [
  922. "BSD-3-Clause"
  923. ],
  924. "authors": [
  925. {
  926. "name": "Sebastian Bergmann",
  927. "email": "sb@sebastian-bergmann.de",
  928. "role": "lead"
  929. }
  930. ],
  931. "description": "Mock Object library for PHPUnit",
  932. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  933. "keywords": [
  934. "mock",
  935. "xunit"
  936. ],
  937. "time": "2017-06-30T09:13:00+00:00"
  938. },
  939. {
  940. "name": "psr/http-message",
  941. "version": "1.0.1",
  942. "source": {
  943. "type": "git",
  944. "url": "https://github.com/php-fig/http-message.git",
  945. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  946. },
  947. "dist": {
  948. "type": "zip",
  949. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  950. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  951. "shasum": ""
  952. },
  953. "require": {
  954. "php": ">=5.3.0"
  955. },
  956. "type": "library",
  957. "extra": {
  958. "branch-alias": {
  959. "dev-master": "1.0.x-dev"
  960. }
  961. },
  962. "autoload": {
  963. "psr-4": {
  964. "Psr\\Http\\Message\\": "src/"
  965. }
  966. },
  967. "notification-url": "https://packagist.org/downloads/",
  968. "license": [
  969. "MIT"
  970. ],
  971. "authors": [
  972. {
  973. "name": "PHP-FIG",
  974. "homepage": "http://www.php-fig.org/"
  975. }
  976. ],
  977. "description": "Common interface for HTTP messages",
  978. "homepage": "https://github.com/php-fig/http-message",
  979. "keywords": [
  980. "http",
  981. "http-message",
  982. "psr",
  983. "psr-7",
  984. "request",
  985. "response"
  986. ],
  987. "time": "2016-08-06T14:39:51+00:00"
  988. },
  989. {
  990. "name": "psr/log",
  991. "version": "1.0.2",
  992. "source": {
  993. "type": "git",
  994. "url": "https://github.com/php-fig/log.git",
  995. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d"
  996. },
  997. "dist": {
  998. "type": "zip",
  999. "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  1000. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  1001. "shasum": ""
  1002. },
  1003. "require": {
  1004. "php": ">=5.3.0"
  1005. },
  1006. "type": "library",
  1007. "extra": {
  1008. "branch-alias": {
  1009. "dev-master": "1.0.x-dev"
  1010. }
  1011. },
  1012. "autoload": {
  1013. "psr-4": {
  1014. "Psr\\Log\\": "Psr/Log/"
  1015. }
  1016. },
  1017. "notification-url": "https://packagist.org/downloads/",
  1018. "license": [
  1019. "MIT"
  1020. ],
  1021. "authors": [
  1022. {
  1023. "name": "PHP-FIG",
  1024. "homepage": "http://www.php-fig.org/"
  1025. }
  1026. ],
  1027. "description": "Common interface for logging libraries",
  1028. "homepage": "https://github.com/php-fig/log",
  1029. "keywords": [
  1030. "log",
  1031. "psr",
  1032. "psr-3"
  1033. ],
  1034. "time": "2016-10-10T12:19:37+00:00"
  1035. },
  1036. {
  1037. "name": "sebastian/code-unit-reverse-lookup",
  1038. "version": "1.0.1",
  1039. "source": {
  1040. "type": "git",
  1041. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  1042. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  1043. },
  1044. "dist": {
  1045. "type": "zip",
  1046. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  1047. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  1048. "shasum": ""
  1049. },
  1050. "require": {
  1051. "php": "^5.6 || ^7.0"
  1052. },
  1053. "require-dev": {
  1054. "phpunit/phpunit": "^5.7 || ^6.0"
  1055. },
  1056. "type": "library",
  1057. "extra": {
  1058. "branch-alias": {
  1059. "dev-master": "1.0.x-dev"
  1060. }
  1061. },
  1062. "autoload": {
  1063. "classmap": [
  1064. "src/"
  1065. ]
  1066. },
  1067. "notification-url": "https://packagist.org/downloads/",
  1068. "license": [
  1069. "BSD-3-Clause"
  1070. ],
  1071. "authors": [
  1072. {
  1073. "name": "Sebastian Bergmann",
  1074. "email": "sebastian@phpunit.de"
  1075. }
  1076. ],
  1077. "description": "Looks up which function or method a line of code belongs to",
  1078. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  1079. "time": "2017-03-04T06:30:41+00:00"
  1080. },
  1081. {
  1082. "name": "sebastian/comparator",
  1083. "version": "1.2.4",
  1084. "source": {
  1085. "type": "git",
  1086. "url": "https://github.com/sebastianbergmann/comparator.git",
  1087. "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be"
  1088. },
  1089. "dist": {
  1090. "type": "zip",
  1091. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2b7424b55f5047b47ac6e5ccb20b2aea4011d9be",
  1092. "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be",
  1093. "shasum": ""
  1094. },
  1095. "require": {
  1096. "php": ">=5.3.3",
  1097. "sebastian/diff": "~1.2",
  1098. "sebastian/exporter": "~1.2 || ~2.0"
  1099. },
  1100. "require-dev": {
  1101. "phpunit/phpunit": "~4.4"
  1102. },
  1103. "type": "library",
  1104. "extra": {
  1105. "branch-alias": {
  1106. "dev-master": "1.2.x-dev"
  1107. }
  1108. },
  1109. "autoload": {
  1110. "classmap": [
  1111. "src/"
  1112. ]
  1113. },
  1114. "notification-url": "https://packagist.org/downloads/",
  1115. "license": [
  1116. "BSD-3-Clause"
  1117. ],
  1118. "authors": [
  1119. {
  1120. "name": "Jeff Welch",
  1121. "email": "whatthejeff@gmail.com"
  1122. },
  1123. {
  1124. "name": "Volker Dusch",
  1125. "email": "github@wallbash.com"
  1126. },
  1127. {
  1128. "name": "Bernhard Schussek",
  1129. "email": "bschussek@2bepublished.at"
  1130. },
  1131. {
  1132. "name": "Sebastian Bergmann",
  1133. "email": "sebastian@phpunit.de"
  1134. }
  1135. ],
  1136. "description": "Provides the functionality to compare PHP values for equality",
  1137. "homepage": "http://www.github.com/sebastianbergmann/comparator",
  1138. "keywords": [
  1139. "comparator",
  1140. "compare",
  1141. "equality"
  1142. ],
  1143. "time": "2017-01-29T09:50:25+00:00"
  1144. },
  1145. {
  1146. "name": "sebastian/diff",
  1147. "version": "1.4.3",
  1148. "source": {
  1149. "type": "git",
  1150. "url": "https://github.com/sebastianbergmann/diff.git",
  1151. "reference": "7f066a26a962dbe58ddea9f72a4e82874a3975a4"
  1152. },
  1153. "dist": {
  1154. "type": "zip",
  1155. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/7f066a26a962dbe58ddea9f72a4e82874a3975a4",
  1156. "reference": "7f066a26a962dbe58ddea9f72a4e82874a3975a4",
  1157. "shasum": ""
  1158. },
  1159. "require": {
  1160. "php": "^5.3.3 || ^7.0"
  1161. },
  1162. "require-dev": {
  1163. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  1164. },
  1165. "type": "library",
  1166. "extra": {
  1167. "branch-alias": {
  1168. "dev-master": "1.4-dev"
  1169. }
  1170. },
  1171. "autoload": {
  1172. "classmap": [
  1173. "src/"
  1174. ]
  1175. },
  1176. "notification-url": "https://packagist.org/downloads/",
  1177. "license": [
  1178. "BSD-3-Clause"
  1179. ],
  1180. "authors": [
  1181. {
  1182. "name": "Kore Nordmann",
  1183. "email": "mail@kore-nordmann.de"
  1184. },
  1185. {
  1186. "name": "Sebastian Bergmann",
  1187. "email": "sebastian@phpunit.de"
  1188. }
  1189. ],
  1190. "description": "Diff implementation",
  1191. "homepage": "https://github.com/sebastianbergmann/diff",
  1192. "keywords": [
  1193. "diff"
  1194. ],
  1195. "time": "2017-05-22T07:24:03+00:00"
  1196. },
  1197. {
  1198. "name": "sebastian/environment",
  1199. "version": "2.0.0",
  1200. "source": {
  1201. "type": "git",
  1202. "url": "https://github.com/sebastianbergmann/environment.git",
  1203. "reference": "5795ffe5dc5b02460c3e34222fee8cbe245d8fac"
  1204. },
  1205. "dist": {
  1206. "type": "zip",
  1207. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/5795ffe5dc5b02460c3e34222fee8cbe245d8fac",
  1208. "reference": "5795ffe5dc5b02460c3e34222fee8cbe245d8fac",
  1209. "shasum": ""
  1210. },
  1211. "require": {
  1212. "php": "^5.6 || ^7.0"
  1213. },
  1214. "require-dev": {
  1215. "phpunit/phpunit": "^5.0"
  1216. },
  1217. "type": "library",
  1218. "extra": {
  1219. "branch-alias": {
  1220. "dev-master": "2.0.x-dev"
  1221. }
  1222. },
  1223. "autoload": {
  1224. "classmap": [
  1225. "src/"
  1226. ]
  1227. },
  1228. "notification-url": "https://packagist.org/downloads/",
  1229. "license": [
  1230. "BSD-3-Clause"
  1231. ],
  1232. "authors": [
  1233. {
  1234. "name": "Sebastian Bergmann",
  1235. "email": "sebastian@phpunit.de"
  1236. }
  1237. ],
  1238. "description": "Provides functionality to handle HHVM/PHP environments",
  1239. "homepage": "http://www.github.com/sebastianbergmann/environment",
  1240. "keywords": [
  1241. "Xdebug",
  1242. "environment",
  1243. "hhvm"
  1244. ],
  1245. "time": "2016-11-26T07:53:53+00:00"
  1246. },
  1247. {
  1248. "name": "sebastian/exporter",
  1249. "version": "2.0.0",
  1250. "source": {
  1251. "type": "git",
  1252. "url": "https://github.com/sebastianbergmann/exporter.git",
  1253. "reference": "ce474bdd1a34744d7ac5d6aad3a46d48d9bac4c4"
  1254. },
  1255. "dist": {
  1256. "type": "zip",
  1257. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ce474bdd1a34744d7ac5d6aad3a46d48d9bac4c4",
  1258. "reference": "ce474bdd1a34744d7ac5d6aad3a46d48d9bac4c4",
  1259. "shasum": ""
  1260. },
  1261. "require": {
  1262. "php": ">=5.3.3",
  1263. "sebastian/recursion-context": "~2.0"
  1264. },
  1265. "require-dev": {
  1266. "ext-mbstring": "*",
  1267. "phpunit/phpunit": "~4.4"
  1268. },
  1269. "type": "library",
  1270. "extra": {
  1271. "branch-alias": {
  1272. "dev-master": "2.0.x-dev"
  1273. }
  1274. },
  1275. "autoload": {
  1276. "classmap": [
  1277. "src/"
  1278. ]
  1279. },
  1280. "notification-url": "https://packagist.org/downloads/",
  1281. "license": [
  1282. "BSD-3-Clause"
  1283. ],
  1284. "authors": [
  1285. {
  1286. "name": "Jeff Welch",
  1287. "email": "whatthejeff@gmail.com"
  1288. },
  1289. {
  1290. "name": "Volker Dusch",
  1291. "email": "github@wallbash.com"
  1292. },
  1293. {
  1294. "name": "Bernhard Schussek",
  1295. "email": "bschussek@2bepublished.at"
  1296. },
  1297. {
  1298. "name": "Sebastian Bergmann",
  1299. "email": "sebastian@phpunit.de"
  1300. },
  1301. {
  1302. "name": "Adam Harvey",
  1303. "email": "aharvey@php.net"
  1304. }
  1305. ],
  1306. "description": "Provides the functionality to export PHP variables for visualization",
  1307. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  1308. "keywords": [
  1309. "export",
  1310. "exporter"
  1311. ],
  1312. "time": "2016-11-19T08:54:04+00:00"
  1313. },
  1314. {
  1315. "name": "sebastian/global-state",
  1316. "version": "1.1.1",
  1317. "source": {
  1318. "type": "git",
  1319. "url": "https://github.com/sebastianbergmann/global-state.git",
  1320. "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4"
  1321. },
  1322. "dist": {
  1323. "type": "zip",
  1324. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bc37d50fea7d017d3d340f230811c9f1d7280af4",
  1325. "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4",
  1326. "shasum": ""
  1327. },
  1328. "require": {
  1329. "php": ">=5.3.3"
  1330. },
  1331. "require-dev": {
  1332. "phpunit/phpunit": "~4.2"
  1333. },
  1334. "suggest": {
  1335. "ext-uopz": "*"
  1336. },
  1337. "type": "library",
  1338. "extra": {
  1339. "branch-alias": {
  1340. "dev-master": "1.0-dev"
  1341. }
  1342. },
  1343. "autoload": {
  1344. "classmap": [
  1345. "src/"
  1346. ]
  1347. },
  1348. "notification-url": "https://packagist.org/downloads/",
  1349. "license": [
  1350. "BSD-3-Clause"
  1351. ],
  1352. "authors": [
  1353. {
  1354. "name": "Sebastian Bergmann",
  1355. "email": "sebastian@phpunit.de"
  1356. }
  1357. ],
  1358. "description": "Snapshotting of global state",
  1359. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  1360. "keywords": [
  1361. "global state"
  1362. ],
  1363. "time": "2015-10-12T03:26:01+00:00"
  1364. },
  1365. {
  1366. "name": "sebastian/object-enumerator",
  1367. "version": "2.0.1",
  1368. "source": {
  1369. "type": "git",
  1370. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  1371. "reference": "1311872ac850040a79c3c058bea3e22d0f09cbb7"
  1372. },
  1373. "dist": {
  1374. "type": "zip",
  1375. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/1311872ac850040a79c3c058bea3e22d0f09cbb7",
  1376. "reference": "1311872ac850040a79c3c058bea3e22d0f09cbb7",
  1377. "shasum": ""
  1378. },
  1379. "require": {
  1380. "php": ">=5.6",
  1381. "sebastian/recursion-context": "~2.0"
  1382. },
  1383. "require-dev": {
  1384. "phpunit/phpunit": "~5"
  1385. },
  1386. "type": "library",
  1387. "extra": {
  1388. "branch-alias": {
  1389. "dev-master": "2.0.x-dev"
  1390. }
  1391. },
  1392. "autoload": {
  1393. "classmap": [
  1394. "src/"
  1395. ]
  1396. },
  1397. "notification-url": "https://packagist.org/downloads/",
  1398. "license": [
  1399. "BSD-3-Clause"
  1400. ],
  1401. "authors": [
  1402. {
  1403. "name": "Sebastian Bergmann",
  1404. "email": "sebastian@phpunit.de"
  1405. }
  1406. ],
  1407. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  1408. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  1409. "time": "2017-02-18T15:18:39+00:00"
  1410. },
  1411. {
  1412. "name": "sebastian/recursion-context",
  1413. "version": "2.0.0",
  1414. "source": {
  1415. "type": "git",
  1416. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  1417. "reference": "2c3ba150cbec723aa057506e73a8d33bdb286c9a"
  1418. },
  1419. "dist": {
  1420. "type": "zip",
  1421. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/2c3ba150cbec723aa057506e73a8d33bdb286c9a",
  1422. "reference": "2c3ba150cbec723aa057506e73a8d33bdb286c9a",
  1423. "shasum": ""
  1424. },
  1425. "require": {
  1426. "php": ">=5.3.3"
  1427. },
  1428. "require-dev": {
  1429. "phpunit/phpunit": "~4.4"
  1430. },
  1431. "type": "library",
  1432. "extra": {
  1433. "branch-alias": {
  1434. "dev-master": "2.0.x-dev"
  1435. }
  1436. },
  1437. "autoload": {
  1438. "classmap": [
  1439. "src/"
  1440. ]
  1441. },
  1442. "notification-url": "https://packagist.org/downloads/",
  1443. "license": [
  1444. "BSD-3-Clause"
  1445. ],
  1446. "authors": [
  1447. {
  1448. "name": "Jeff Welch",
  1449. "email": "whatthejeff@gmail.com"
  1450. },
  1451. {
  1452. "name": "Sebastian Bergmann",
  1453. "email": "sebastian@phpunit.de"
  1454. },
  1455. {
  1456. "name": "Adam Harvey",
  1457. "email": "aharvey@php.net"
  1458. }
  1459. ],
  1460. "description": "Provides functionality to recursively process PHP variables",
  1461. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  1462. "time": "2016-11-19T07:33:16+00:00"
  1463. },
  1464. {
  1465. "name": "sebastian/resource-operations",
  1466. "version": "1.0.0",
  1467. "source": {
  1468. "type": "git",
  1469. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  1470. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
  1471. },
  1472. "dist": {
  1473. "type": "zip",
  1474. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  1475. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  1476. "shasum": ""
  1477. },
  1478. "require": {
  1479. "php": ">=5.6.0"
  1480. },
  1481. "type": "library",
  1482. "extra": {
  1483. "branch-alias": {
  1484. "dev-master": "1.0.x-dev"
  1485. }
  1486. },
  1487. "autoload": {
  1488. "classmap": [
  1489. "src/"
  1490. ]
  1491. },
  1492. "notification-url": "https://packagist.org/downloads/",
  1493. "license": [
  1494. "BSD-3-Clause"
  1495. ],
  1496. "authors": [
  1497. {
  1498. "name": "Sebastian Bergmann",
  1499. "email": "sebastian@phpunit.de"
  1500. }
  1501. ],
  1502. "description": "Provides a list of PHP built-in functions that operate on resources",
  1503. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  1504. "time": "2015-07-28T20:34:47+00:00"
  1505. },
  1506. {
  1507. "name": "sebastian/version",
  1508. "version": "2.0.1",
  1509. "source": {
  1510. "type": "git",
  1511. "url": "https://github.com/sebastianbergmann/version.git",
  1512. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  1513. },
  1514. "dist": {
  1515. "type": "zip",
  1516. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  1517. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  1518. "shasum": ""
  1519. },
  1520. "require": {
  1521. "php": ">=5.6"
  1522. },
  1523. "type": "library",
  1524. "extra": {
  1525. "branch-alias": {
  1526. "dev-master": "2.0.x-dev"
  1527. }
  1528. },
  1529. "autoload": {
  1530. "classmap": [
  1531. "src/"
  1532. ]
  1533. },
  1534. "notification-url": "https://packagist.org/downloads/",
  1535. "license": [
  1536. "BSD-3-Clause"
  1537. ],
  1538. "authors": [
  1539. {
  1540. "name": "Sebastian Bergmann",
  1541. "email": "sebastian@phpunit.de",
  1542. "role": "lead"
  1543. }
  1544. ],
  1545. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  1546. "homepage": "https://github.com/sebastianbergmann/version",
  1547. "time": "2016-10-03T07:35:21+00:00"
  1548. },
  1549. {
  1550. "name": "statonlab/tripal-test-suite",
  1551. "version": "1.4.1",
  1552. "source": {
  1553. "type": "git",
  1554. "url": "https://github.com/statonlab/TripalTestSuite.git",
  1555. "reference": "3a4867edf3c1c6457e47aa692b2b750ba92b6254"
  1556. },
  1557. "dist": {
  1558. "type": "zip",
  1559. "url": "https://api.github.com/repos/statonlab/TripalTestSuite/zipball/3a4867edf3c1c6457e47aa692b2b750ba92b6254",
  1560. "reference": "3a4867edf3c1c6457e47aa692b2b750ba92b6254",
  1561. "shasum": ""
  1562. },
  1563. "require": {
  1564. "fzaninotto/faker": "^1.7",
  1565. "guzzlehttp/guzzle": "^6.3",
  1566. "phpunit/phpunit": "^5 || ^6 || ^7.0",
  1567. "symfony/console": "^3 || ^4.0"
  1568. },
  1569. "bin": [
  1570. "tripaltest"
  1571. ],
  1572. "type": "library",
  1573. "autoload": {
  1574. "psr-4": {
  1575. "StatonLab\\TripalTestSuite\\": "src/"
  1576. },
  1577. "files": [
  1578. "src/Helpers/helpers.php"
  1579. ]
  1580. },
  1581. "notification-url": "https://packagist.org/downloads/",
  1582. "license": [
  1583. "GPL-3.0"
  1584. ],
  1585. "authors": [
  1586. {
  1587. "name": "Abdullah Almsaeed",
  1588. "email": "aalmsaee@utk.edu"
  1589. },
  1590. {
  1591. "name": "Bradford Condon",
  1592. "email": "bcondon@utk.edu"
  1593. }
  1594. ],
  1595. "time": "2018-08-29T23:01:33+00:00"
  1596. },
  1597. {
  1598. "name": "symfony/console",
  1599. "version": "v3.4.15",
  1600. "source": {
  1601. "type": "git",
  1602. "url": "https://github.com/symfony/console.git",
  1603. "reference": "6b217594552b9323bcdcfc14f8a0ce126e84cd73"
  1604. },
  1605. "dist": {
  1606. "type": "zip",
  1607. "url": "https://api.github.com/repos/symfony/console/zipball/6b217594552b9323bcdcfc14f8a0ce126e84cd73",
  1608. "reference": "6b217594552b9323bcdcfc14f8a0ce126e84cd73",
  1609. "shasum": ""
  1610. },
  1611. "require": {
  1612. "php": "^5.5.9|>=7.0.8",
  1613. "symfony/debug": "~2.8|~3.0|~4.0",
  1614. "symfony/polyfill-mbstring": "~1.0"
  1615. },
  1616. "conflict": {
  1617. "symfony/dependency-injection": "<3.4",
  1618. "symfony/process": "<3.3"
  1619. },
  1620. "require-dev": {
  1621. "psr/log": "~1.0",
  1622. "symfony/config": "~3.3|~4.0",
  1623. "symfony/dependency-injection": "~3.4|~4.0",
  1624. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  1625. "symfony/lock": "~3.4|~4.0",
  1626. "symfony/process": "~3.3|~4.0"
  1627. },
  1628. "suggest": {
  1629. "psr/log-implementation": "For using the console logger",
  1630. "symfony/event-dispatcher": "",
  1631. "symfony/lock": "",
  1632. "symfony/process": ""
  1633. },
  1634. "type": "library",
  1635. "extra": {
  1636. "branch-alias": {
  1637. "dev-master": "3.4-dev"
  1638. }
  1639. },
  1640. "autoload": {
  1641. "psr-4": {
  1642. "Symfony\\Component\\Console\\": ""
  1643. },
  1644. "exclude-from-classmap": [
  1645. "/Tests/"
  1646. ]
  1647. },
  1648. "notification-url": "https://packagist.org/downloads/",
  1649. "license": [
  1650. "MIT"
  1651. ],
  1652. "authors": [
  1653. {
  1654. "name": "Fabien Potencier",
  1655. "email": "fabien@symfony.com"
  1656. },
  1657. {
  1658. "name": "Symfony Community",
  1659. "homepage": "https://symfony.com/contributors"
  1660. }
  1661. ],
  1662. "description": "Symfony Console Component",
  1663. "homepage": "https://symfony.com",
  1664. "time": "2018-07-26T11:19:56+00:00"
  1665. },
  1666. {
  1667. "name": "symfony/debug",
  1668. "version": "v3.4.15",
  1669. "source": {
  1670. "type": "git",
  1671. "url": "https://github.com/symfony/debug.git",
  1672. "reference": "c4625e75341e4fb309ce0c049cbf7fb84b8897cd"
  1673. },
  1674. "dist": {
  1675. "type": "zip",
  1676. "url": "https://api.github.com/repos/symfony/debug/zipball/c4625e75341e4fb309ce0c049cbf7fb84b8897cd",
  1677. "reference": "c4625e75341e4fb309ce0c049cbf7fb84b8897cd",
  1678. "shasum": ""
  1679. },
  1680. "require": {
  1681. "php": "^5.5.9|>=7.0.8",
  1682. "psr/log": "~1.0"
  1683. },
  1684. "conflict": {
  1685. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  1686. },
  1687. "require-dev": {
  1688. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  1689. },
  1690. "type": "library",
  1691. "extra": {
  1692. "branch-alias": {
  1693. "dev-master": "3.4-dev"
  1694. }
  1695. },
  1696. "autoload": {
  1697. "psr-4": {
  1698. "Symfony\\Component\\Debug\\": ""
  1699. },
  1700. "exclude-from-classmap": [
  1701. "/Tests/"
  1702. ]
  1703. },
  1704. "notification-url": "https://packagist.org/downloads/",
  1705. "license": [
  1706. "MIT"
  1707. ],
  1708. "authors": [
  1709. {
  1710. "name": "Fabien Potencier",
  1711. "email": "fabien@symfony.com"
  1712. },
  1713. {
  1714. "name": "Symfony Community",
  1715. "homepage": "https://symfony.com/contributors"
  1716. }
  1717. ],
  1718. "description": "Symfony Debug Component",
  1719. "homepage": "https://symfony.com",
  1720. "time": "2018-08-03T10:42:44+00:00"
  1721. },
  1722. {
  1723. "name": "symfony/polyfill-ctype",
  1724. "version": "v1.9.0",
  1725. "source": {
  1726. "type": "git",
  1727. "url": "https://github.com/symfony/polyfill-ctype.git",
  1728. "reference": "e3d826245268269cd66f8326bd8bc066687b4a19"
  1729. },
  1730. "dist": {
  1731. "type": "zip",
  1732. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e3d826245268269cd66f8326bd8bc066687b4a19",
  1733. "reference": "e3d826245268269cd66f8326bd8bc066687b4a19",
  1734. "shasum": ""
  1735. },
  1736. "require": {
  1737. "php": ">=5.3.3"
  1738. },
  1739. "suggest": {
  1740. "ext-ctype": "For best performance"
  1741. },
  1742. "type": "library",
  1743. "extra": {
  1744. "branch-alias": {
  1745. "dev-master": "1.9-dev"
  1746. }
  1747. },
  1748. "autoload": {
  1749. "psr-4": {
  1750. "Symfony\\Polyfill\\Ctype\\": ""
  1751. },
  1752. "files": [
  1753. "bootstrap.php"
  1754. ]
  1755. },
  1756. "notification-url": "https://packagist.org/downloads/",
  1757. "license": [
  1758. "MIT"
  1759. ],
  1760. "authors": [
  1761. {
  1762. "name": "Symfony Community",
  1763. "homepage": "https://symfony.com/contributors"
  1764. },
  1765. {
  1766. "name": "Gert de Pagter",
  1767. "email": "BackEndTea@gmail.com"
  1768. }
  1769. ],
  1770. "description": "Symfony polyfill for ctype functions",
  1771. "homepage": "https://symfony.com",
  1772. "keywords": [
  1773. "compatibility",
  1774. "ctype",
  1775. "polyfill",
  1776. "portable"
  1777. ],
  1778. "time": "2018-08-06T14:22:27+00:00"
  1779. },
  1780. {
  1781. "name": "symfony/polyfill-mbstring",
  1782. "version": "v1.9.0",
  1783. "source": {
  1784. "type": "git",
  1785. "url": "https://github.com/symfony/polyfill-mbstring.git",
  1786. "reference": "d0cd638f4634c16d8df4508e847f14e9e43168b8"
  1787. },
  1788. "dist": {
  1789. "type": "zip",
  1790. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/d0cd638f4634c16d8df4508e847f14e9e43168b8",
  1791. "reference": "d0cd638f4634c16d8df4508e847f14e9e43168b8",
  1792. "shasum": ""
  1793. },
  1794. "require": {
  1795. "php": ">=5.3.3"
  1796. },
  1797. "suggest": {
  1798. "ext-mbstring": "For best performance"
  1799. },
  1800. "type": "library",
  1801. "extra": {
  1802. "branch-alias": {
  1803. "dev-master": "1.9-dev"
  1804. }
  1805. },
  1806. "autoload": {
  1807. "psr-4": {
  1808. "Symfony\\Polyfill\\Mbstring\\": ""
  1809. },
  1810. "files": [
  1811. "bootstrap.php"
  1812. ]
  1813. },
  1814. "notification-url": "https://packagist.org/downloads/",
  1815. "license": [
  1816. "MIT"
  1817. ],
  1818. "authors": [
  1819. {
  1820. "name": "Nicolas Grekas",
  1821. "email": "p@tchwork.com"
  1822. },
  1823. {
  1824. "name": "Symfony Community",
  1825. "homepage": "https://symfony.com/contributors"
  1826. }
  1827. ],
  1828. "description": "Symfony polyfill for the Mbstring extension",
  1829. "homepage": "https://symfony.com",
  1830. "keywords": [
  1831. "compatibility",
  1832. "mbstring",
  1833. "polyfill",
  1834. "portable",
  1835. "shim"
  1836. ],
  1837. "time": "2018-08-06T14:22:27+00:00"
  1838. },
  1839. {
  1840. "name": "symfony/yaml",
  1841. "version": "v3.4.15",
  1842. "source": {
  1843. "type": "git",
  1844. "url": "https://github.com/symfony/yaml.git",
  1845. "reference": "c2f4812ead9f847cb69e90917ca7502e6892d6b8"
  1846. },
  1847. "dist": {
  1848. "type": "zip",
  1849. "url": "https://api.github.com/repos/symfony/yaml/zipball/c2f4812ead9f847cb69e90917ca7502e6892d6b8",
  1850. "reference": "c2f4812ead9f847cb69e90917ca7502e6892d6b8",
  1851. "shasum": ""
  1852. },
  1853. "require": {
  1854. "php": "^5.5.9|>=7.0.8",
  1855. "symfony/polyfill-ctype": "~1.8"
  1856. },
  1857. "conflict": {
  1858. "symfony/console": "<3.4"
  1859. },
  1860. "require-dev": {
  1861. "symfony/console": "~3.4|~4.0"
  1862. },
  1863. "suggest": {
  1864. "symfony/console": "For validating YAML files using the lint command"
  1865. },
  1866. "type": "library",
  1867. "extra": {
  1868. "branch-alias": {
  1869. "dev-master": "3.4-dev"
  1870. }
  1871. },
  1872. "autoload": {
  1873. "psr-4": {
  1874. "Symfony\\Component\\Yaml\\": ""
  1875. },
  1876. "exclude-from-classmap": [
  1877. "/Tests/"
  1878. ]
  1879. },
  1880. "notification-url": "https://packagist.org/downloads/",
  1881. "license": [
  1882. "MIT"
  1883. ],
  1884. "authors": [
  1885. {
  1886. "name": "Fabien Potencier",
  1887. "email": "fabien@symfony.com"
  1888. },
  1889. {
  1890. "name": "Symfony Community",
  1891. "homepage": "https://symfony.com/contributors"
  1892. }
  1893. ],
  1894. "description": "Symfony Yaml Component",
  1895. "homepage": "https://symfony.com",
  1896. "time": "2018-08-10T07:34:36+00:00"
  1897. },
  1898. {
  1899. "name": "webmozart/assert",
  1900. "version": "1.3.0",
  1901. "source": {
  1902. "type": "git",
  1903. "url": "https://github.com/webmozart/assert.git",
  1904. "reference": "0df1908962e7a3071564e857d86874dad1ef204a"
  1905. },
  1906. "dist": {
  1907. "type": "zip",
  1908. "url": "https://api.github.com/repos/webmozart/assert/zipball/0df1908962e7a3071564e857d86874dad1ef204a",
  1909. "reference": "0df1908962e7a3071564e857d86874dad1ef204a",
  1910. "shasum": ""
  1911. },
  1912. "require": {
  1913. "php": "^5.3.3 || ^7.0"
  1914. },
  1915. "require-dev": {
  1916. "phpunit/phpunit": "^4.6",
  1917. "sebastian/version": "^1.0.1"
  1918. },
  1919. "type": "library",
  1920. "extra": {
  1921. "branch-alias": {
  1922. "dev-master": "1.3-dev"
  1923. }
  1924. },
  1925. "autoload": {
  1926. "psr-4": {
  1927. "Webmozart\\Assert\\": "src/"
  1928. }
  1929. },
  1930. "notification-url": "https://packagist.org/downloads/",
  1931. "license": [
  1932. "MIT"
  1933. ],
  1934. "authors": [
  1935. {
  1936. "name": "Bernhard Schussek",
  1937. "email": "bschussek@gmail.com"
  1938. }
  1939. ],
  1940. "description": "Assertions to validate method input/output with nice error messages.",
  1941. "keywords": [
  1942. "assert",
  1943. "check",
  1944. "validate"
  1945. ],
  1946. "time": "2018-01-29T19:49:41+00:00"
  1947. }
  1948. ],
  1949. "aliases": [],
  1950. "minimum-stability": "stable",
  1951. "stability-flags": [],
  1952. "prefer-stable": false,
  1953. "prefer-lowest": false,
  1954. "platform": [],
  1955. "platform-dev": []
  1956. }