composer.lock 74 KB

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