composer.lock 70 KB

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