composer.lock 87 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520
  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": "b6962c014f681108f1a984a2a0e2f2c2",
  8. "packages": [
  9. {
  10. "name": "doctrine/annotations",
  11. "version": "v1.6.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/doctrine/annotations.git",
  15. "reference": "c7f2050c68a9ab0bdb0f98567ec08d80ea7d24d5"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/doctrine/annotations/zipball/c7f2050c68a9ab0bdb0f98567ec08d80ea7d24d5",
  20. "reference": "c7f2050c68a9ab0bdb0f98567ec08d80ea7d24d5",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "doctrine/lexer": "1.*",
  25. "php": "^7.1"
  26. },
  27. "require-dev": {
  28. "doctrine/cache": "1.*",
  29. "phpunit/phpunit": "^6.4"
  30. },
  31. "type": "library",
  32. "extra": {
  33. "branch-alias": {
  34. "dev-master": "1.6.x-dev"
  35. }
  36. },
  37. "autoload": {
  38. "psr-4": {
  39. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  40. }
  41. },
  42. "notification-url": "https://packagist.org/downloads/",
  43. "license": [
  44. "MIT"
  45. ],
  46. "authors": [
  47. {
  48. "name": "Roman Borschel",
  49. "email": "roman@code-factory.org"
  50. },
  51. {
  52. "name": "Benjamin Eberlei",
  53. "email": "kontakt@beberlei.de"
  54. },
  55. {
  56. "name": "Guilherme Blanco",
  57. "email": "guilhermeblanco@gmail.com"
  58. },
  59. {
  60. "name": "Jonathan Wage",
  61. "email": "jonwage@gmail.com"
  62. },
  63. {
  64. "name": "Johannes Schmitt",
  65. "email": "schmittjoh@gmail.com"
  66. }
  67. ],
  68. "description": "Docblock Annotations Parser",
  69. "homepage": "http://www.doctrine-project.org",
  70. "keywords": [
  71. "annotations",
  72. "docblock",
  73. "parser"
  74. ],
  75. "time": "2017-12-06T07:11:42+00:00"
  76. },
  77. {
  78. "name": "doctrine/instantiator",
  79. "version": "1.1.0",
  80. "source": {
  81. "type": "git",
  82. "url": "https://github.com/doctrine/instantiator.git",
  83. "reference": "185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda"
  84. },
  85. "dist": {
  86. "type": "zip",
  87. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda",
  88. "reference": "185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda",
  89. "shasum": ""
  90. },
  91. "require": {
  92. "php": "^7.1"
  93. },
  94. "require-dev": {
  95. "athletic/athletic": "~0.1.8",
  96. "ext-pdo": "*",
  97. "ext-phar": "*",
  98. "phpunit/phpunit": "^6.2.3",
  99. "squizlabs/php_codesniffer": "^3.0.2"
  100. },
  101. "type": "library",
  102. "extra": {
  103. "branch-alias": {
  104. "dev-master": "1.2.x-dev"
  105. }
  106. },
  107. "autoload": {
  108. "psr-4": {
  109. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  110. }
  111. },
  112. "notification-url": "https://packagist.org/downloads/",
  113. "license": [
  114. "MIT"
  115. ],
  116. "authors": [
  117. {
  118. "name": "Marco Pivetta",
  119. "email": "ocramius@gmail.com",
  120. "homepage": "http://ocramius.github.com/"
  121. }
  122. ],
  123. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  124. "homepage": "https://github.com/doctrine/instantiator",
  125. "keywords": [
  126. "constructor",
  127. "instantiate"
  128. ],
  129. "time": "2017-07-22T11:58:36+00:00"
  130. },
  131. {
  132. "name": "doctrine/lexer",
  133. "version": "v1.0.1",
  134. "source": {
  135. "type": "git",
  136. "url": "https://github.com/doctrine/lexer.git",
  137. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c"
  138. },
  139. "dist": {
  140. "type": "zip",
  141. "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c",
  142. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c",
  143. "shasum": ""
  144. },
  145. "require": {
  146. "php": ">=5.3.2"
  147. },
  148. "type": "library",
  149. "extra": {
  150. "branch-alias": {
  151. "dev-master": "1.0.x-dev"
  152. }
  153. },
  154. "autoload": {
  155. "psr-0": {
  156. "Doctrine\\Common\\Lexer\\": "lib/"
  157. }
  158. },
  159. "notification-url": "https://packagist.org/downloads/",
  160. "license": [
  161. "MIT"
  162. ],
  163. "authors": [
  164. {
  165. "name": "Roman Borschel",
  166. "email": "roman@code-factory.org"
  167. },
  168. {
  169. "name": "Guilherme Blanco",
  170. "email": "guilhermeblanco@gmail.com"
  171. },
  172. {
  173. "name": "Johannes Schmitt",
  174. "email": "schmittjoh@gmail.com"
  175. }
  176. ],
  177. "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
  178. "homepage": "http://www.doctrine-project.org",
  179. "keywords": [
  180. "lexer",
  181. "parser"
  182. ],
  183. "time": "2014-09-09T13:34:57+00:00"
  184. },
  185. {
  186. "name": "eleirbag89/telegrambotphp",
  187. "version": "1.3.8",
  188. "source": {
  189. "type": "git",
  190. "url": "https://github.com/Eleirbag89/TelegramBotPHP.git",
  191. "reference": "aec5bc4f5873595d1b4f03fd0d955549ba4cfab3"
  192. },
  193. "dist": {
  194. "type": "zip",
  195. "url": "https://api.github.com/repos/Eleirbag89/TelegramBotPHP/zipball/aec5bc4f5873595d1b4f03fd0d955549ba4cfab3",
  196. "reference": "aec5bc4f5873595d1b4f03fd0d955549ba4cfab3",
  197. "shasum": ""
  198. },
  199. "require": {
  200. "php": ">=5.0"
  201. },
  202. "type": "library",
  203. "autoload": {
  204. "files": [
  205. "Telegram.php",
  206. "TelegramErrorLogger.php"
  207. ]
  208. },
  209. "notification-url": "https://packagist.org/downloads/",
  210. "license": [
  211. "MIT"
  212. ],
  213. "authors": [
  214. {
  215. "name": "Gabriele Grillo",
  216. "email": "gabry.grillo@alice.it"
  217. }
  218. ],
  219. "description": "A very simple PHP Telegram Bot API",
  220. "time": "2017-12-27T13:46:04+00:00"
  221. },
  222. {
  223. "name": "guzzlehttp/guzzle",
  224. "version": "6.3.3",
  225. "source": {
  226. "type": "git",
  227. "url": "https://github.com/guzzle/guzzle.git",
  228. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba"
  229. },
  230. "dist": {
  231. "type": "zip",
  232. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  233. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  234. "shasum": ""
  235. },
  236. "require": {
  237. "guzzlehttp/promises": "^1.0",
  238. "guzzlehttp/psr7": "^1.4",
  239. "php": ">=5.5"
  240. },
  241. "require-dev": {
  242. "ext-curl": "*",
  243. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  244. "psr/log": "^1.0"
  245. },
  246. "suggest": {
  247. "psr/log": "Required for using the Log middleware"
  248. },
  249. "type": "library",
  250. "extra": {
  251. "branch-alias": {
  252. "dev-master": "6.3-dev"
  253. }
  254. },
  255. "autoload": {
  256. "files": [
  257. "src/functions_include.php"
  258. ],
  259. "psr-4": {
  260. "GuzzleHttp\\": "src/"
  261. }
  262. },
  263. "notification-url": "https://packagist.org/downloads/",
  264. "license": [
  265. "MIT"
  266. ],
  267. "authors": [
  268. {
  269. "name": "Michael Dowling",
  270. "email": "mtdowling@gmail.com",
  271. "homepage": "https://github.com/mtdowling"
  272. }
  273. ],
  274. "description": "Guzzle is a PHP HTTP client library",
  275. "homepage": "http://guzzlephp.org/",
  276. "keywords": [
  277. "client",
  278. "curl",
  279. "framework",
  280. "http",
  281. "http client",
  282. "rest",
  283. "web service"
  284. ],
  285. "time": "2018-04-22T15:46:56+00:00"
  286. },
  287. {
  288. "name": "guzzlehttp/promises",
  289. "version": "v1.3.1",
  290. "source": {
  291. "type": "git",
  292. "url": "https://github.com/guzzle/promises.git",
  293. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  294. },
  295. "dist": {
  296. "type": "zip",
  297. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  298. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  299. "shasum": ""
  300. },
  301. "require": {
  302. "php": ">=5.5.0"
  303. },
  304. "require-dev": {
  305. "phpunit/phpunit": "^4.0"
  306. },
  307. "type": "library",
  308. "extra": {
  309. "branch-alias": {
  310. "dev-master": "1.4-dev"
  311. }
  312. },
  313. "autoload": {
  314. "psr-4": {
  315. "GuzzleHttp\\Promise\\": "src/"
  316. },
  317. "files": [
  318. "src/functions_include.php"
  319. ]
  320. },
  321. "notification-url": "https://packagist.org/downloads/",
  322. "license": [
  323. "MIT"
  324. ],
  325. "authors": [
  326. {
  327. "name": "Michael Dowling",
  328. "email": "mtdowling@gmail.com",
  329. "homepage": "https://github.com/mtdowling"
  330. }
  331. ],
  332. "description": "Guzzle promises library",
  333. "keywords": [
  334. "promise"
  335. ],
  336. "time": "2016-12-20T10:07:11+00:00"
  337. },
  338. {
  339. "name": "guzzlehttp/psr7",
  340. "version": "1.5.2",
  341. "source": {
  342. "type": "git",
  343. "url": "https://github.com/guzzle/psr7.git",
  344. "reference": "9f83dded91781a01c63574e387eaa769be769115"
  345. },
  346. "dist": {
  347. "type": "zip",
  348. "url": "https://api.github.com/repos/guzzle/psr7/zipball/9f83dded91781a01c63574e387eaa769be769115",
  349. "reference": "9f83dded91781a01c63574e387eaa769be769115",
  350. "shasum": ""
  351. },
  352. "require": {
  353. "php": ">=5.4.0",
  354. "psr/http-message": "~1.0",
  355. "ralouphie/getallheaders": "^2.0.5"
  356. },
  357. "provide": {
  358. "psr/http-message-implementation": "1.0"
  359. },
  360. "require-dev": {
  361. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  362. },
  363. "type": "library",
  364. "extra": {
  365. "branch-alias": {
  366. "dev-master": "1.5-dev"
  367. }
  368. },
  369. "autoload": {
  370. "psr-4": {
  371. "GuzzleHttp\\Psr7\\": "src/"
  372. },
  373. "files": [
  374. "src/functions_include.php"
  375. ]
  376. },
  377. "notification-url": "https://packagist.org/downloads/",
  378. "license": [
  379. "MIT"
  380. ],
  381. "authors": [
  382. {
  383. "name": "Michael Dowling",
  384. "email": "mtdowling@gmail.com",
  385. "homepage": "https://github.com/mtdowling"
  386. },
  387. {
  388. "name": "Tobias Schultze",
  389. "homepage": "https://github.com/Tobion"
  390. }
  391. ],
  392. "description": "PSR-7 message implementation that also provides common utility methods",
  393. "keywords": [
  394. "http",
  395. "message",
  396. "psr-7",
  397. "request",
  398. "response",
  399. "stream",
  400. "uri",
  401. "url"
  402. ],
  403. "time": "2018-12-04T20:46:45+00:00"
  404. },
  405. {
  406. "name": "jamesryanbell/cloudflare",
  407. "version": "1.11.1",
  408. "source": {
  409. "type": "git",
  410. "url": "https://github.com/jamesryanbell/cloudflare.git",
  411. "reference": "75e93bb822619d8ddb8b1843588caa2fad739491"
  412. },
  413. "dist": {
  414. "type": "zip",
  415. "url": "https://api.github.com/repos/jamesryanbell/cloudflare/zipball/75e93bb822619d8ddb8b1843588caa2fad739491",
  416. "reference": "75e93bb822619d8ddb8b1843588caa2fad739491",
  417. "shasum": ""
  418. },
  419. "require-dev": {
  420. "phpunit/phpunit": "< 6",
  421. "satooshi/php-coveralls": "dev-master"
  422. },
  423. "type": "library",
  424. "autoload": {
  425. "psr-4": {
  426. "Cloudflare\\": "src/CloudFlare"
  427. }
  428. },
  429. "notification-url": "https://packagist.org/downloads/",
  430. "license": [
  431. "MIT"
  432. ],
  433. "authors": [
  434. {
  435. "name": "James Bell",
  436. "email": "james@james-bell.co.uk"
  437. }
  438. ],
  439. "description": "CloudFlare API - PHP",
  440. "keywords": [
  441. "api",
  442. "cloudflare"
  443. ],
  444. "time": "2017-08-04T19:01:02+00:00"
  445. },
  446. {
  447. "name": "myclabs/deep-copy",
  448. "version": "1.7.0",
  449. "source": {
  450. "type": "git",
  451. "url": "https://github.com/myclabs/DeepCopy.git",
  452. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e"
  453. },
  454. "dist": {
  455. "type": "zip",
  456. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  457. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  458. "shasum": ""
  459. },
  460. "require": {
  461. "php": "^5.6 || ^7.0"
  462. },
  463. "require-dev": {
  464. "doctrine/collections": "^1.0",
  465. "doctrine/common": "^2.6",
  466. "phpunit/phpunit": "^4.1"
  467. },
  468. "type": "library",
  469. "autoload": {
  470. "psr-4": {
  471. "DeepCopy\\": "src/DeepCopy/"
  472. },
  473. "files": [
  474. "src/DeepCopy/deep_copy.php"
  475. ]
  476. },
  477. "notification-url": "https://packagist.org/downloads/",
  478. "license": [
  479. "MIT"
  480. ],
  481. "description": "Create deep copies (clones) of your objects",
  482. "keywords": [
  483. "clone",
  484. "copy",
  485. "duplicate",
  486. "object",
  487. "object graph"
  488. ],
  489. "time": "2017-10-19T19:58:43+00:00"
  490. },
  491. {
  492. "name": "nette/utils",
  493. "version": "v3.0.1",
  494. "source": {
  495. "type": "git",
  496. "url": "https://github.com/nette/utils.git",
  497. "reference": "bd961f49b211997202bda1d0fbc410905be370d4"
  498. },
  499. "dist": {
  500. "type": "zip",
  501. "url": "https://api.github.com/repos/nette/utils/zipball/bd961f49b211997202bda1d0fbc410905be370d4",
  502. "reference": "bd961f49b211997202bda1d0fbc410905be370d4",
  503. "shasum": ""
  504. },
  505. "require": {
  506. "php": ">=7.1"
  507. },
  508. "require-dev": {
  509. "nette/tester": "~2.0",
  510. "tracy/tracy": "^2.3"
  511. },
  512. "suggest": {
  513. "ext-gd": "to use Image",
  514. "ext-iconv": "to use Strings::webalize() and toAscii()",
  515. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  516. "ext-json": "to use Nette\\Utils\\Json",
  517. "ext-mbstring": "to use Strings::lower() etc...",
  518. "ext-xml": "to use Strings::length() etc. when mbstring is not available"
  519. },
  520. "type": "library",
  521. "extra": {
  522. "branch-alias": {
  523. "dev-master": "3.0-dev"
  524. }
  525. },
  526. "autoload": {
  527. "classmap": [
  528. "src/"
  529. ]
  530. },
  531. "notification-url": "https://packagist.org/downloads/",
  532. "license": [
  533. "BSD-3-Clause",
  534. "GPL-2.0",
  535. "GPL-3.0"
  536. ],
  537. "authors": [
  538. {
  539. "name": "David Grudl",
  540. "homepage": "https://davidgrudl.com"
  541. },
  542. {
  543. "name": "Nette Community",
  544. "homepage": "https://nette.org/contributors"
  545. }
  546. ],
  547. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  548. "homepage": "https://nette.org",
  549. "keywords": [
  550. "array",
  551. "core",
  552. "datetime",
  553. "images",
  554. "json",
  555. "nette",
  556. "paginator",
  557. "password",
  558. "slugify",
  559. "string",
  560. "unicode",
  561. "utf-8",
  562. "utility",
  563. "validation"
  564. ],
  565. "time": "2019-03-22T01:00:30+00:00"
  566. },
  567. {
  568. "name": "phar-io/manifest",
  569. "version": "1.0.1",
  570. "source": {
  571. "type": "git",
  572. "url": "https://github.com/phar-io/manifest.git",
  573. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0"
  574. },
  575. "dist": {
  576. "type": "zip",
  577. "url": "https://api.github.com/repos/phar-io/manifest/zipball/2df402786ab5368a0169091f61a7c1e0eb6852d0",
  578. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0",
  579. "shasum": ""
  580. },
  581. "require": {
  582. "ext-dom": "*",
  583. "ext-phar": "*",
  584. "phar-io/version": "^1.0.1",
  585. "php": "^5.6 || ^7.0"
  586. },
  587. "type": "library",
  588. "extra": {
  589. "branch-alias": {
  590. "dev-master": "1.0.x-dev"
  591. }
  592. },
  593. "autoload": {
  594. "classmap": [
  595. "src/"
  596. ]
  597. },
  598. "notification-url": "https://packagist.org/downloads/",
  599. "license": [
  600. "BSD-3-Clause"
  601. ],
  602. "authors": [
  603. {
  604. "name": "Arne Blankerts",
  605. "email": "arne@blankerts.de",
  606. "role": "Developer"
  607. },
  608. {
  609. "name": "Sebastian Heuer",
  610. "email": "sebastian@phpeople.de",
  611. "role": "Developer"
  612. },
  613. {
  614. "name": "Sebastian Bergmann",
  615. "email": "sebastian@phpunit.de",
  616. "role": "Developer"
  617. }
  618. ],
  619. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  620. "time": "2017-03-05T18:14:27+00:00"
  621. },
  622. {
  623. "name": "phar-io/version",
  624. "version": "1.0.1",
  625. "source": {
  626. "type": "git",
  627. "url": "https://github.com/phar-io/version.git",
  628. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df"
  629. },
  630. "dist": {
  631. "type": "zip",
  632. "url": "https://api.github.com/repos/phar-io/version/zipball/a70c0ced4be299a63d32fa96d9281d03e94041df",
  633. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df",
  634. "shasum": ""
  635. },
  636. "require": {
  637. "php": "^5.6 || ^7.0"
  638. },
  639. "type": "library",
  640. "autoload": {
  641. "classmap": [
  642. "src/"
  643. ]
  644. },
  645. "notification-url": "https://packagist.org/downloads/",
  646. "license": [
  647. "BSD-3-Clause"
  648. ],
  649. "authors": [
  650. {
  651. "name": "Arne Blankerts",
  652. "email": "arne@blankerts.de",
  653. "role": "Developer"
  654. },
  655. {
  656. "name": "Sebastian Heuer",
  657. "email": "sebastian@phpeople.de",
  658. "role": "Developer"
  659. },
  660. {
  661. "name": "Sebastian Bergmann",
  662. "email": "sebastian@phpunit.de",
  663. "role": "Developer"
  664. }
  665. ],
  666. "description": "Library for handling version information and constraints",
  667. "time": "2017-03-05T17:38:23+00:00"
  668. },
  669. {
  670. "name": "php-imap/php-imap",
  671. "version": "3.0.22",
  672. "source": {
  673. "type": "git",
  674. "url": "https://github.com/barbushin/php-imap.git",
  675. "reference": "a776f84483ee7e5d56dc6eab11957db4187e7914"
  676. },
  677. "dist": {
  678. "type": "zip",
  679. "url": "https://api.github.com/repos/barbushin/php-imap/zipball/a776f84483ee7e5d56dc6eab11957db4187e7914",
  680. "reference": "a776f84483ee7e5d56dc6eab11957db4187e7914",
  681. "shasum": ""
  682. },
  683. "require": {
  684. "ext-iconv": "*",
  685. "ext-imap": "*",
  686. "ext-mbstring": "*",
  687. "php": ">=5.6"
  688. },
  689. "require-dev": {
  690. "phpunit/phpunit": "^5.7"
  691. },
  692. "type": "library",
  693. "autoload": {
  694. "psr-4": {
  695. "PhpImap\\": "src/PhpImap"
  696. }
  697. },
  698. "notification-url": "https://packagist.org/downloads/",
  699. "license": [
  700. "MIT"
  701. ],
  702. "authors": [
  703. {
  704. "name": "Sergey Barbushin",
  705. "email": "barbushin@gmail.com",
  706. "homepage": "http://linkedin.com/in/barbushin"
  707. }
  708. ],
  709. "description": "Manage mailboxes, filter/get/delete emails in PHP (supports IMAP/POP3/NNTP)",
  710. "homepage": "https://github.com/barbushin/php-imap",
  711. "keywords": [
  712. "imap",
  713. "mail",
  714. "mailbox",
  715. "php",
  716. "pop3",
  717. "receive emails"
  718. ],
  719. "time": "2019-06-07T18:13:47+00:00"
  720. },
  721. {
  722. "name": "phpdocumentor/reflection-common",
  723. "version": "1.0.1",
  724. "source": {
  725. "type": "git",
  726. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  727. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
  728. },
  729. "dist": {
  730. "type": "zip",
  731. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  732. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  733. "shasum": ""
  734. },
  735. "require": {
  736. "php": ">=5.5"
  737. },
  738. "require-dev": {
  739. "phpunit/phpunit": "^4.6"
  740. },
  741. "type": "library",
  742. "extra": {
  743. "branch-alias": {
  744. "dev-master": "1.0.x-dev"
  745. }
  746. },
  747. "autoload": {
  748. "psr-4": {
  749. "phpDocumentor\\Reflection\\": [
  750. "src"
  751. ]
  752. }
  753. },
  754. "notification-url": "https://packagist.org/downloads/",
  755. "license": [
  756. "MIT"
  757. ],
  758. "authors": [
  759. {
  760. "name": "Jaap van Otterdijk",
  761. "email": "opensource@ijaap.nl"
  762. }
  763. ],
  764. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  765. "homepage": "http://www.phpdoc.org",
  766. "keywords": [
  767. "FQSEN",
  768. "phpDocumentor",
  769. "phpdoc",
  770. "reflection",
  771. "static analysis"
  772. ],
  773. "time": "2017-09-11T18:02:19+00:00"
  774. },
  775. {
  776. "name": "phpdocumentor/reflection-docblock",
  777. "version": "4.3.0",
  778. "source": {
  779. "type": "git",
  780. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  781. "reference": "94fd0001232e47129dd3504189fa1c7225010d08"
  782. },
  783. "dist": {
  784. "type": "zip",
  785. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/94fd0001232e47129dd3504189fa1c7225010d08",
  786. "reference": "94fd0001232e47129dd3504189fa1c7225010d08",
  787. "shasum": ""
  788. },
  789. "require": {
  790. "php": "^7.0",
  791. "phpdocumentor/reflection-common": "^1.0.0",
  792. "phpdocumentor/type-resolver": "^0.4.0",
  793. "webmozart/assert": "^1.0"
  794. },
  795. "require-dev": {
  796. "doctrine/instantiator": "~1.0.5",
  797. "mockery/mockery": "^1.0",
  798. "phpunit/phpunit": "^6.4"
  799. },
  800. "type": "library",
  801. "extra": {
  802. "branch-alias": {
  803. "dev-master": "4.x-dev"
  804. }
  805. },
  806. "autoload": {
  807. "psr-4": {
  808. "phpDocumentor\\Reflection\\": [
  809. "src/"
  810. ]
  811. }
  812. },
  813. "notification-url": "https://packagist.org/downloads/",
  814. "license": [
  815. "MIT"
  816. ],
  817. "authors": [
  818. {
  819. "name": "Mike van Riel",
  820. "email": "me@mikevanriel.com"
  821. }
  822. ],
  823. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  824. "time": "2017-11-30T07:14:17+00:00"
  825. },
  826. {
  827. "name": "phpdocumentor/type-resolver",
  828. "version": "0.4.0",
  829. "source": {
  830. "type": "git",
  831. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  832. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7"
  833. },
  834. "dist": {
  835. "type": "zip",
  836. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7",
  837. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7",
  838. "shasum": ""
  839. },
  840. "require": {
  841. "php": "^5.5 || ^7.0",
  842. "phpdocumentor/reflection-common": "^1.0"
  843. },
  844. "require-dev": {
  845. "mockery/mockery": "^0.9.4",
  846. "phpunit/phpunit": "^5.2||^4.8.24"
  847. },
  848. "type": "library",
  849. "extra": {
  850. "branch-alias": {
  851. "dev-master": "1.0.x-dev"
  852. }
  853. },
  854. "autoload": {
  855. "psr-4": {
  856. "phpDocumentor\\Reflection\\": [
  857. "src/"
  858. ]
  859. }
  860. },
  861. "notification-url": "https://packagist.org/downloads/",
  862. "license": [
  863. "MIT"
  864. ],
  865. "authors": [
  866. {
  867. "name": "Mike van Riel",
  868. "email": "me@mikevanriel.com"
  869. }
  870. ],
  871. "time": "2017-07-14T14:27:02+00:00"
  872. },
  873. {
  874. "name": "phpmailer/phpmailer",
  875. "version": "v6.0.5",
  876. "source": {
  877. "type": "git",
  878. "url": "https://github.com/PHPMailer/PHPMailer.git",
  879. "reference": "cb3ea134d4d3729e7857737d5f320cce9caf4d32"
  880. },
  881. "dist": {
  882. "type": "zip",
  883. "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/cb3ea134d4d3729e7857737d5f320cce9caf4d32",
  884. "reference": "cb3ea134d4d3729e7857737d5f320cce9caf4d32",
  885. "shasum": ""
  886. },
  887. "require": {
  888. "ext-ctype": "*",
  889. "ext-filter": "*",
  890. "php": ">=5.5.0"
  891. },
  892. "require-dev": {
  893. "doctrine/annotations": "1.2.*",
  894. "friendsofphp/php-cs-fixer": "^2.2",
  895. "phpdocumentor/phpdocumentor": "2.*",
  896. "phpunit/phpunit": "^4.8 || ^5.7",
  897. "zendframework/zend-eventmanager": "3.0.*",
  898. "zendframework/zend-i18n": "2.7.3",
  899. "zendframework/zend-serializer": "2.7.*"
  900. },
  901. "suggest": {
  902. "ext-mbstring": "Needed to send email in multibyte encoding charset",
  903. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  904. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  905. "psr/log": "For optional PSR-3 debug logging",
  906. "stevenmaguire/oauth2-microsoft": "Needed for Microsoft XOAUTH2 authentication",
  907. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)"
  908. },
  909. "type": "library",
  910. "autoload": {
  911. "psr-4": {
  912. "PHPMailer\\PHPMailer\\": "src/"
  913. }
  914. },
  915. "notification-url": "https://packagist.org/downloads/",
  916. "license": [
  917. "LGPL-2.1"
  918. ],
  919. "authors": [
  920. {
  921. "name": "Jim Jagielski",
  922. "email": "jimjag@gmail.com"
  923. },
  924. {
  925. "name": "Marcus Bointon",
  926. "email": "phpmailer@synchromedia.co.uk"
  927. },
  928. {
  929. "name": "Andy Prevost",
  930. "email": "codeworxtech@users.sourceforge.net"
  931. },
  932. {
  933. "name": "Brent R. Matzelle"
  934. }
  935. ],
  936. "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
  937. "time": "2018-03-27T13:49:45+00:00"
  938. },
  939. {
  940. "name": "phpspec/prophecy",
  941. "version": "1.7.5",
  942. "source": {
  943. "type": "git",
  944. "url": "https://github.com/phpspec/prophecy.git",
  945. "reference": "dfd6be44111a7c41c2e884a336cc4f461b3b2401"
  946. },
  947. "dist": {
  948. "type": "zip",
  949. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/dfd6be44111a7c41c2e884a336cc4f461b3b2401",
  950. "reference": "dfd6be44111a7c41c2e884a336cc4f461b3b2401",
  951. "shasum": ""
  952. },
  953. "require": {
  954. "doctrine/instantiator": "^1.0.2",
  955. "php": "^5.3|^7.0",
  956. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0",
  957. "sebastian/comparator": "^1.1|^2.0",
  958. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  959. },
  960. "require-dev": {
  961. "phpspec/phpspec": "^2.5|^3.2",
  962. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5"
  963. },
  964. "type": "library",
  965. "extra": {
  966. "branch-alias": {
  967. "dev-master": "1.7.x-dev"
  968. }
  969. },
  970. "autoload": {
  971. "psr-0": {
  972. "Prophecy\\": "src/"
  973. }
  974. },
  975. "notification-url": "https://packagist.org/downloads/",
  976. "license": [
  977. "MIT"
  978. ],
  979. "authors": [
  980. {
  981. "name": "Konstantin Kudryashov",
  982. "email": "ever.zet@gmail.com",
  983. "homepage": "http://everzet.com"
  984. },
  985. {
  986. "name": "Marcello Duarte",
  987. "email": "marcello.duarte@gmail.com"
  988. }
  989. ],
  990. "description": "Highly opinionated mocking framework for PHP 5.3+",
  991. "homepage": "https://github.com/phpspec/prophecy",
  992. "keywords": [
  993. "Double",
  994. "Dummy",
  995. "fake",
  996. "mock",
  997. "spy",
  998. "stub"
  999. ],
  1000. "time": "2018-02-19T10:16:54+00:00"
  1001. },
  1002. {
  1003. "name": "phpunit/php-code-coverage",
  1004. "version": "5.3.0",
  1005. "source": {
  1006. "type": "git",
  1007. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  1008. "reference": "661f34d0bd3f1a7225ef491a70a020ad23a057a1"
  1009. },
  1010. "dist": {
  1011. "type": "zip",
  1012. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/661f34d0bd3f1a7225ef491a70a020ad23a057a1",
  1013. "reference": "661f34d0bd3f1a7225ef491a70a020ad23a057a1",
  1014. "shasum": ""
  1015. },
  1016. "require": {
  1017. "ext-dom": "*",
  1018. "ext-xmlwriter": "*",
  1019. "php": "^7.0",
  1020. "phpunit/php-file-iterator": "^1.4.2",
  1021. "phpunit/php-text-template": "^1.2.1",
  1022. "phpunit/php-token-stream": "^2.0.1",
  1023. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  1024. "sebastian/environment": "^3.0",
  1025. "sebastian/version": "^2.0.1",
  1026. "theseer/tokenizer": "^1.1"
  1027. },
  1028. "require-dev": {
  1029. "phpunit/phpunit": "^6.0"
  1030. },
  1031. "suggest": {
  1032. "ext-xdebug": "^2.5.5"
  1033. },
  1034. "type": "library",
  1035. "extra": {
  1036. "branch-alias": {
  1037. "dev-master": "5.3.x-dev"
  1038. }
  1039. },
  1040. "autoload": {
  1041. "classmap": [
  1042. "src/"
  1043. ]
  1044. },
  1045. "notification-url": "https://packagist.org/downloads/",
  1046. "license": [
  1047. "BSD-3-Clause"
  1048. ],
  1049. "authors": [
  1050. {
  1051. "name": "Sebastian Bergmann",
  1052. "email": "sebastian@phpunit.de",
  1053. "role": "lead"
  1054. }
  1055. ],
  1056. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  1057. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  1058. "keywords": [
  1059. "coverage",
  1060. "testing",
  1061. "xunit"
  1062. ],
  1063. "time": "2017-12-06T09:29:45+00:00"
  1064. },
  1065. {
  1066. "name": "phpunit/php-file-iterator",
  1067. "version": "1.4.5",
  1068. "source": {
  1069. "type": "git",
  1070. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  1071. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
  1072. },
  1073. "dist": {
  1074. "type": "zip",
  1075. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
  1076. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
  1077. "shasum": ""
  1078. },
  1079. "require": {
  1080. "php": ">=5.3.3"
  1081. },
  1082. "type": "library",
  1083. "extra": {
  1084. "branch-alias": {
  1085. "dev-master": "1.4.x-dev"
  1086. }
  1087. },
  1088. "autoload": {
  1089. "classmap": [
  1090. "src/"
  1091. ]
  1092. },
  1093. "notification-url": "https://packagist.org/downloads/",
  1094. "license": [
  1095. "BSD-3-Clause"
  1096. ],
  1097. "authors": [
  1098. {
  1099. "name": "Sebastian Bergmann",
  1100. "email": "sb@sebastian-bergmann.de",
  1101. "role": "lead"
  1102. }
  1103. ],
  1104. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  1105. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  1106. "keywords": [
  1107. "filesystem",
  1108. "iterator"
  1109. ],
  1110. "time": "2017-11-27T13:52:08+00:00"
  1111. },
  1112. {
  1113. "name": "phpunit/php-text-template",
  1114. "version": "1.2.1",
  1115. "source": {
  1116. "type": "git",
  1117. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  1118. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  1119. },
  1120. "dist": {
  1121. "type": "zip",
  1122. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  1123. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  1124. "shasum": ""
  1125. },
  1126. "require": {
  1127. "php": ">=5.3.3"
  1128. },
  1129. "type": "library",
  1130. "autoload": {
  1131. "classmap": [
  1132. "src/"
  1133. ]
  1134. },
  1135. "notification-url": "https://packagist.org/downloads/",
  1136. "license": [
  1137. "BSD-3-Clause"
  1138. ],
  1139. "authors": [
  1140. {
  1141. "name": "Sebastian Bergmann",
  1142. "email": "sebastian@phpunit.de",
  1143. "role": "lead"
  1144. }
  1145. ],
  1146. "description": "Simple template engine.",
  1147. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  1148. "keywords": [
  1149. "template"
  1150. ],
  1151. "time": "2015-06-21T13:50:34+00:00"
  1152. },
  1153. {
  1154. "name": "phpunit/php-timer",
  1155. "version": "1.0.9",
  1156. "source": {
  1157. "type": "git",
  1158. "url": "https://github.com/sebastianbergmann/php-timer.git",
  1159. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  1160. },
  1161. "dist": {
  1162. "type": "zip",
  1163. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  1164. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  1165. "shasum": ""
  1166. },
  1167. "require": {
  1168. "php": "^5.3.3 || ^7.0"
  1169. },
  1170. "require-dev": {
  1171. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  1172. },
  1173. "type": "library",
  1174. "extra": {
  1175. "branch-alias": {
  1176. "dev-master": "1.0-dev"
  1177. }
  1178. },
  1179. "autoload": {
  1180. "classmap": [
  1181. "src/"
  1182. ]
  1183. },
  1184. "notification-url": "https://packagist.org/downloads/",
  1185. "license": [
  1186. "BSD-3-Clause"
  1187. ],
  1188. "authors": [
  1189. {
  1190. "name": "Sebastian Bergmann",
  1191. "email": "sb@sebastian-bergmann.de",
  1192. "role": "lead"
  1193. }
  1194. ],
  1195. "description": "Utility class for timing",
  1196. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  1197. "keywords": [
  1198. "timer"
  1199. ],
  1200. "time": "2017-02-26T11:10:40+00:00"
  1201. },
  1202. {
  1203. "name": "phpunit/php-token-stream",
  1204. "version": "2.0.2",
  1205. "source": {
  1206. "type": "git",
  1207. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  1208. "reference": "791198a2c6254db10131eecfe8c06670700904db"
  1209. },
  1210. "dist": {
  1211. "type": "zip",
  1212. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/791198a2c6254db10131eecfe8c06670700904db",
  1213. "reference": "791198a2c6254db10131eecfe8c06670700904db",
  1214. "shasum": ""
  1215. },
  1216. "require": {
  1217. "ext-tokenizer": "*",
  1218. "php": "^7.0"
  1219. },
  1220. "require-dev": {
  1221. "phpunit/phpunit": "^6.2.4"
  1222. },
  1223. "type": "library",
  1224. "extra": {
  1225. "branch-alias": {
  1226. "dev-master": "2.0-dev"
  1227. }
  1228. },
  1229. "autoload": {
  1230. "classmap": [
  1231. "src/"
  1232. ]
  1233. },
  1234. "notification-url": "https://packagist.org/downloads/",
  1235. "license": [
  1236. "BSD-3-Clause"
  1237. ],
  1238. "authors": [
  1239. {
  1240. "name": "Sebastian Bergmann",
  1241. "email": "sebastian@phpunit.de"
  1242. }
  1243. ],
  1244. "description": "Wrapper around PHP's tokenizer extension.",
  1245. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  1246. "keywords": [
  1247. "tokenizer"
  1248. ],
  1249. "time": "2017-11-27T05:48:46+00:00"
  1250. },
  1251. {
  1252. "name": "phpunit/phpunit",
  1253. "version": "6.5.7",
  1254. "source": {
  1255. "type": "git",
  1256. "url": "https://github.com/sebastianbergmann/phpunit.git",
  1257. "reference": "6bd77b57707c236833d2b57b968e403df060c9d9"
  1258. },
  1259. "dist": {
  1260. "type": "zip",
  1261. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/6bd77b57707c236833d2b57b968e403df060c9d9",
  1262. "reference": "6bd77b57707c236833d2b57b968e403df060c9d9",
  1263. "shasum": ""
  1264. },
  1265. "require": {
  1266. "ext-dom": "*",
  1267. "ext-json": "*",
  1268. "ext-libxml": "*",
  1269. "ext-mbstring": "*",
  1270. "ext-xml": "*",
  1271. "myclabs/deep-copy": "^1.6.1",
  1272. "phar-io/manifest": "^1.0.1",
  1273. "phar-io/version": "^1.0",
  1274. "php": "^7.0",
  1275. "phpspec/prophecy": "^1.7",
  1276. "phpunit/php-code-coverage": "^5.3",
  1277. "phpunit/php-file-iterator": "^1.4.3",
  1278. "phpunit/php-text-template": "^1.2.1",
  1279. "phpunit/php-timer": "^1.0.9",
  1280. "phpunit/phpunit-mock-objects": "^5.0.5",
  1281. "sebastian/comparator": "^2.1",
  1282. "sebastian/diff": "^2.0",
  1283. "sebastian/environment": "^3.1",
  1284. "sebastian/exporter": "^3.1",
  1285. "sebastian/global-state": "^2.0",
  1286. "sebastian/object-enumerator": "^3.0.3",
  1287. "sebastian/resource-operations": "^1.0",
  1288. "sebastian/version": "^2.0.1"
  1289. },
  1290. "conflict": {
  1291. "phpdocumentor/reflection-docblock": "3.0.2",
  1292. "phpunit/dbunit": "<3.0"
  1293. },
  1294. "require-dev": {
  1295. "ext-pdo": "*"
  1296. },
  1297. "suggest": {
  1298. "ext-xdebug": "*",
  1299. "phpunit/php-invoker": "^1.1"
  1300. },
  1301. "bin": [
  1302. "phpunit"
  1303. ],
  1304. "type": "library",
  1305. "extra": {
  1306. "branch-alias": {
  1307. "dev-master": "6.5.x-dev"
  1308. }
  1309. },
  1310. "autoload": {
  1311. "classmap": [
  1312. "src/"
  1313. ]
  1314. },
  1315. "notification-url": "https://packagist.org/downloads/",
  1316. "license": [
  1317. "BSD-3-Clause"
  1318. ],
  1319. "authors": [
  1320. {
  1321. "name": "Sebastian Bergmann",
  1322. "email": "sebastian@phpunit.de",
  1323. "role": "lead"
  1324. }
  1325. ],
  1326. "description": "The PHP Unit Testing framework.",
  1327. "homepage": "https://phpunit.de/",
  1328. "keywords": [
  1329. "phpunit",
  1330. "testing",
  1331. "xunit"
  1332. ],
  1333. "time": "2018-02-26T07:01:09+00:00"
  1334. },
  1335. {
  1336. "name": "phpunit/phpunit-mock-objects",
  1337. "version": "5.0.6",
  1338. "source": {
  1339. "type": "git",
  1340. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  1341. "reference": "33fd41a76e746b8fa96d00b49a23dadfa8334cdf"
  1342. },
  1343. "dist": {
  1344. "type": "zip",
  1345. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/33fd41a76e746b8fa96d00b49a23dadfa8334cdf",
  1346. "reference": "33fd41a76e746b8fa96d00b49a23dadfa8334cdf",
  1347. "shasum": ""
  1348. },
  1349. "require": {
  1350. "doctrine/instantiator": "^1.0.5",
  1351. "php": "^7.0",
  1352. "phpunit/php-text-template": "^1.2.1",
  1353. "sebastian/exporter": "^3.1"
  1354. },
  1355. "conflict": {
  1356. "phpunit/phpunit": "<6.0"
  1357. },
  1358. "require-dev": {
  1359. "phpunit/phpunit": "^6.5"
  1360. },
  1361. "suggest": {
  1362. "ext-soap": "*"
  1363. },
  1364. "type": "library",
  1365. "extra": {
  1366. "branch-alias": {
  1367. "dev-master": "5.0.x-dev"
  1368. }
  1369. },
  1370. "autoload": {
  1371. "classmap": [
  1372. "src/"
  1373. ]
  1374. },
  1375. "notification-url": "https://packagist.org/downloads/",
  1376. "license": [
  1377. "BSD-3-Clause"
  1378. ],
  1379. "authors": [
  1380. {
  1381. "name": "Sebastian Bergmann",
  1382. "email": "sebastian@phpunit.de",
  1383. "role": "lead"
  1384. }
  1385. ],
  1386. "description": "Mock Object library for PHPUnit",
  1387. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  1388. "keywords": [
  1389. "mock",
  1390. "xunit"
  1391. ],
  1392. "abandoned": true,
  1393. "time": "2018-01-06T05:45:45+00:00"
  1394. },
  1395. {
  1396. "name": "proficlos/vestacp-api",
  1397. "version": "v0.1",
  1398. "source": {
  1399. "type": "git",
  1400. "url": "https://github.com/ProfiCloS/vestacp-api.git",
  1401. "reference": "e710b015556d9d78b2acc234e8b64b776bc44a64"
  1402. },
  1403. "dist": {
  1404. "type": "zip",
  1405. "url": "https://api.github.com/repos/ProfiCloS/vestacp-api/zipball/e710b015556d9d78b2acc234e8b64b776bc44a64",
  1406. "reference": "e710b015556d9d78b2acc234e8b64b776bc44a64",
  1407. "shasum": ""
  1408. },
  1409. "require": {
  1410. "guzzlehttp/guzzle": "^6.3@dev",
  1411. "nette/utils": "^3.0@dev",
  1412. "php": ">=7.1"
  1413. },
  1414. "require-dev": {
  1415. "phpunit/phpunit": "7.5.x-dev",
  1416. "roave/security-advisories": "dev-master",
  1417. "tracy/tracy": "^3.0@dev"
  1418. },
  1419. "type": "library",
  1420. "autoload": {
  1421. "classmap": [
  1422. "src/"
  1423. ]
  1424. },
  1425. "notification-url": "https://packagist.org/downloads/",
  1426. "license": [
  1427. "MIT"
  1428. ],
  1429. "authors": [
  1430. {
  1431. "name": "PROFI CLOUD SERVICES",
  1432. "email": "info@profiservices.cloud"
  1433. }
  1434. ],
  1435. "description": "VestaCP PHP API",
  1436. "homepage": "https://github.com/ProfiCloS/vestacp-api",
  1437. "time": "2019-02-23T01:20:08+00:00"
  1438. },
  1439. {
  1440. "name": "psr/http-message",
  1441. "version": "1.0.1",
  1442. "source": {
  1443. "type": "git",
  1444. "url": "https://github.com/php-fig/http-message.git",
  1445. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  1446. },
  1447. "dist": {
  1448. "type": "zip",
  1449. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  1450. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  1451. "shasum": ""
  1452. },
  1453. "require": {
  1454. "php": ">=5.3.0"
  1455. },
  1456. "type": "library",
  1457. "extra": {
  1458. "branch-alias": {
  1459. "dev-master": "1.0.x-dev"
  1460. }
  1461. },
  1462. "autoload": {
  1463. "psr-4": {
  1464. "Psr\\Http\\Message\\": "src/"
  1465. }
  1466. },
  1467. "notification-url": "https://packagist.org/downloads/",
  1468. "license": [
  1469. "MIT"
  1470. ],
  1471. "authors": [
  1472. {
  1473. "name": "PHP-FIG",
  1474. "homepage": "http://www.php-fig.org/"
  1475. }
  1476. ],
  1477. "description": "Common interface for HTTP messages",
  1478. "homepage": "https://github.com/php-fig/http-message",
  1479. "keywords": [
  1480. "http",
  1481. "http-message",
  1482. "psr",
  1483. "psr-7",
  1484. "request",
  1485. "response"
  1486. ],
  1487. "time": "2016-08-06T14:39:51+00:00"
  1488. },
  1489. {
  1490. "name": "qingbing/php-abstracts-component",
  1491. "version": "1.0.1",
  1492. "source": {
  1493. "type": "git",
  1494. "url": "https://github.com/qingbing/php-abstracts-component.git",
  1495. "reference": "d3bc81875d8451a217df2771810422658956ef70"
  1496. },
  1497. "dist": {
  1498. "type": "zip",
  1499. "url": "https://api.github.com/repos/qingbing/php-abstracts-component/zipball/d3bc81875d8451a217df2771810422658956ef70",
  1500. "reference": "d3bc81875d8451a217df2771810422658956ef70",
  1501. "shasum": ""
  1502. },
  1503. "require": {
  1504. "qingbing/php-config": ">=1.0, <2.0",
  1505. "qingbing/php-helper": ">=1.0, <2.0"
  1506. },
  1507. "type": "library",
  1508. "autoload": {
  1509. "psr-4": {
  1510. "Abstracts\\": "src/abstracts"
  1511. }
  1512. },
  1513. "notification-url": "https://packagist.org/downloads/",
  1514. "license": [
  1515. "MIT"
  1516. ],
  1517. "authors": [
  1518. {
  1519. "name": "qingbing",
  1520. "email": "780042175@qq.com"
  1521. }
  1522. ],
  1523. "description": "pf框架-abstracts:组件 的基类,提供组件实例化过程中的基础支持",
  1524. "homepage": "http://www.phpcorner.net",
  1525. "keywords": [
  1526. "abstract",
  1527. "php"
  1528. ],
  1529. "time": "2018-12-13T05:34:02+00:00"
  1530. },
  1531. {
  1532. "name": "qingbing/php-abstracts-store",
  1533. "version": "1.0.1",
  1534. "source": {
  1535. "type": "git",
  1536. "url": "https://github.com/qingbing/php-abstracts-store.git",
  1537. "reference": "be017441a5fc639fbe9e9398095837525a9f98cd"
  1538. },
  1539. "dist": {
  1540. "type": "zip",
  1541. "url": "https://api.github.com/repos/qingbing/php-abstracts-store/zipball/be017441a5fc639fbe9e9398095837525a9f98cd",
  1542. "reference": "be017441a5fc639fbe9e9398095837525a9f98cd",
  1543. "shasum": ""
  1544. },
  1545. "require": {
  1546. "qingbing/php-abstracts-component": ">=1.0, <2.0",
  1547. "qingbing/php-helper": ">=1.0, <2.0"
  1548. },
  1549. "type": "library",
  1550. "autoload": {
  1551. "psr-4": {
  1552. "Abstracts\\": "src/abstracts"
  1553. }
  1554. },
  1555. "notification-url": "https://packagist.org/downloads/",
  1556. "license": [
  1557. "MIT"
  1558. ],
  1559. "authors": [
  1560. {
  1561. "name": "qingbing",
  1562. "email": "780042175@qq.com"
  1563. }
  1564. ],
  1565. "description": "store 存储组件的抽象",
  1566. "homepage": "http://www.phpcorner.net",
  1567. "keywords": [
  1568. "abstracts",
  1569. "cache",
  1570. "cookie",
  1571. "php",
  1572. "session",
  1573. "store"
  1574. ],
  1575. "time": "2018-12-08T16:40:44+00:00"
  1576. },
  1577. {
  1578. "name": "qingbing/php-config",
  1579. "version": "1.0.1",
  1580. "source": {
  1581. "type": "git",
  1582. "url": "https://github.com/qingbing/php-config.git",
  1583. "reference": "16590f38bbf636ccd940113bf2daf24da0fcbfaa"
  1584. },
  1585. "dist": {
  1586. "type": "zip",
  1587. "url": "https://api.github.com/repos/qingbing/php-config/zipball/16590f38bbf636ccd940113bf2daf24da0fcbfaa",
  1588. "reference": "16590f38bbf636ccd940113bf2daf24da0fcbfaa",
  1589. "shasum": ""
  1590. },
  1591. "require": {
  1592. "qingbing/php-helper": ">=1.0, <2.0"
  1593. },
  1594. "type": "library",
  1595. "autoload": {
  1596. "classmap": [
  1597. "src/Config.php"
  1598. ],
  1599. "psr-4": {
  1600. "Config\\": "src/lib"
  1601. }
  1602. },
  1603. "notification-url": "https://packagist.org/downloads/",
  1604. "license": [
  1605. "MIT"
  1606. ],
  1607. "authors": [
  1608. {
  1609. "name": "qingbing",
  1610. "email": "780042175@qq.com"
  1611. }
  1612. ],
  1613. "description": "config 配置的设置和获取.",
  1614. "homepage": "http://www.phpcorner.net",
  1615. "keywords": [
  1616. "config",
  1617. "php"
  1618. ],
  1619. "time": "2018-12-07T03:16:45+00:00"
  1620. },
  1621. {
  1622. "name": "qingbing/php-file-cache",
  1623. "version": "1.0.1",
  1624. "source": {
  1625. "type": "git",
  1626. "url": "https://github.com/qingbing/php-file-cache.git",
  1627. "reference": "142c76dc453672c7d875f2fd4271f847a42bec62"
  1628. },
  1629. "dist": {
  1630. "type": "zip",
  1631. "url": "https://api.github.com/repos/qingbing/php-file-cache/zipball/142c76dc453672c7d875f2fd4271f847a42bec62",
  1632. "reference": "142c76dc453672c7d875f2fd4271f847a42bec62",
  1633. "shasum": ""
  1634. },
  1635. "require": {
  1636. "qingbing/php-abstracts-store": ">=1.0, <2.0",
  1637. "qingbing/php-config": ">=1.0, <2.0",
  1638. "qingbing/php-helper": ">=1.0, <2.0"
  1639. },
  1640. "type": "library",
  1641. "autoload": {
  1642. "psr-4": {
  1643. "Components\\": "src/components"
  1644. }
  1645. },
  1646. "notification-url": "https://packagist.org/downloads/",
  1647. "license": [
  1648. "MIT"
  1649. ],
  1650. "authors": [
  1651. {
  1652. "name": "qingbing",
  1653. "email": "780042175@qq.com"
  1654. }
  1655. ],
  1656. "description": "组件'file-cache' : 文件缓存的相关解析和操作",
  1657. "homepage": "http://www.phpcorner.net",
  1658. "keywords": [
  1659. "cache",
  1660. "caching",
  1661. "file-cache",
  1662. "file-caching",
  1663. "filecache",
  1664. "php"
  1665. ],
  1666. "time": "2019-05-18T01:38:20+00:00"
  1667. },
  1668. {
  1669. "name": "qingbing/php-helper",
  1670. "version": "1.0.1",
  1671. "source": {
  1672. "type": "git",
  1673. "url": "https://github.com/qingbing/php-helper.git",
  1674. "reference": "ed25ef23f99de7f0dad6b402295bd417cc072d45"
  1675. },
  1676. "dist": {
  1677. "type": "zip",
  1678. "url": "https://api.github.com/repos/qingbing/php-helper/zipball/ed25ef23f99de7f0dad6b402295bd417cc072d45",
  1679. "reference": "ed25ef23f99de7f0dad6b402295bd417cc072d45",
  1680. "shasum": ""
  1681. },
  1682. "type": "library",
  1683. "autoload": {
  1684. "files": [
  1685. "src/functions.php"
  1686. ],
  1687. "psr-4": {
  1688. "Abstracts\\": "src/abstracts",
  1689. "Helper\\": "src/lib"
  1690. }
  1691. },
  1692. "notification-url": "https://packagist.org/downloads/",
  1693. "license": [
  1694. "MIT"
  1695. ],
  1696. "authors": [
  1697. {
  1698. "name": "qingbing",
  1699. "email": "780042175@qq.com"
  1700. }
  1701. ],
  1702. "description": "Some common helpers and functions.",
  1703. "homepage": "http://www.phpcorner.net",
  1704. "keywords": [
  1705. "function",
  1706. "helper",
  1707. "php"
  1708. ],
  1709. "time": "2019-05-28T15:52:40+00:00"
  1710. },
  1711. {
  1712. "name": "ralouphie/getallheaders",
  1713. "version": "2.0.5",
  1714. "source": {
  1715. "type": "git",
  1716. "url": "https://github.com/ralouphie/getallheaders.git",
  1717. "reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa"
  1718. },
  1719. "dist": {
  1720. "type": "zip",
  1721. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/5601c8a83fbba7ef674a7369456d12f1e0d0eafa",
  1722. "reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa",
  1723. "shasum": ""
  1724. },
  1725. "require": {
  1726. "php": ">=5.3"
  1727. },
  1728. "require-dev": {
  1729. "phpunit/phpunit": "~3.7.0",
  1730. "satooshi/php-coveralls": ">=1.0"
  1731. },
  1732. "type": "library",
  1733. "autoload": {
  1734. "files": [
  1735. "src/getallheaders.php"
  1736. ]
  1737. },
  1738. "notification-url": "https://packagist.org/downloads/",
  1739. "license": [
  1740. "MIT"
  1741. ],
  1742. "authors": [
  1743. {
  1744. "name": "Ralph Khattar",
  1745. "email": "ralph.khattar@gmail.com"
  1746. }
  1747. ],
  1748. "description": "A polyfill for getallheaders.",
  1749. "time": "2016-02-11T07:05:27+00:00"
  1750. },
  1751. {
  1752. "name": "sebastian/code-unit-reverse-lookup",
  1753. "version": "1.0.1",
  1754. "source": {
  1755. "type": "git",
  1756. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  1757. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  1758. },
  1759. "dist": {
  1760. "type": "zip",
  1761. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  1762. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  1763. "shasum": ""
  1764. },
  1765. "require": {
  1766. "php": "^5.6 || ^7.0"
  1767. },
  1768. "require-dev": {
  1769. "phpunit/phpunit": "^5.7 || ^6.0"
  1770. },
  1771. "type": "library",
  1772. "extra": {
  1773. "branch-alias": {
  1774. "dev-master": "1.0.x-dev"
  1775. }
  1776. },
  1777. "autoload": {
  1778. "classmap": [
  1779. "src/"
  1780. ]
  1781. },
  1782. "notification-url": "https://packagist.org/downloads/",
  1783. "license": [
  1784. "BSD-3-Clause"
  1785. ],
  1786. "authors": [
  1787. {
  1788. "name": "Sebastian Bergmann",
  1789. "email": "sebastian@phpunit.de"
  1790. }
  1791. ],
  1792. "description": "Looks up which function or method a line of code belongs to",
  1793. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  1794. "time": "2017-03-04T06:30:41+00:00"
  1795. },
  1796. {
  1797. "name": "sebastian/comparator",
  1798. "version": "2.1.3",
  1799. "source": {
  1800. "type": "git",
  1801. "url": "https://github.com/sebastianbergmann/comparator.git",
  1802. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9"
  1803. },
  1804. "dist": {
  1805. "type": "zip",
  1806. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/34369daee48eafb2651bea869b4b15d75ccc35f9",
  1807. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9",
  1808. "shasum": ""
  1809. },
  1810. "require": {
  1811. "php": "^7.0",
  1812. "sebastian/diff": "^2.0 || ^3.0",
  1813. "sebastian/exporter": "^3.1"
  1814. },
  1815. "require-dev": {
  1816. "phpunit/phpunit": "^6.4"
  1817. },
  1818. "type": "library",
  1819. "extra": {
  1820. "branch-alias": {
  1821. "dev-master": "2.1.x-dev"
  1822. }
  1823. },
  1824. "autoload": {
  1825. "classmap": [
  1826. "src/"
  1827. ]
  1828. },
  1829. "notification-url": "https://packagist.org/downloads/",
  1830. "license": [
  1831. "BSD-3-Clause"
  1832. ],
  1833. "authors": [
  1834. {
  1835. "name": "Jeff Welch",
  1836. "email": "whatthejeff@gmail.com"
  1837. },
  1838. {
  1839. "name": "Volker Dusch",
  1840. "email": "github@wallbash.com"
  1841. },
  1842. {
  1843. "name": "Bernhard Schussek",
  1844. "email": "bschussek@2bepublished.at"
  1845. },
  1846. {
  1847. "name": "Sebastian Bergmann",
  1848. "email": "sebastian@phpunit.de"
  1849. }
  1850. ],
  1851. "description": "Provides the functionality to compare PHP values for equality",
  1852. "homepage": "https://github.com/sebastianbergmann/comparator",
  1853. "keywords": [
  1854. "comparator",
  1855. "compare",
  1856. "equality"
  1857. ],
  1858. "time": "2018-02-01T13:46:46+00:00"
  1859. },
  1860. {
  1861. "name": "sebastian/diff",
  1862. "version": "2.0.1",
  1863. "source": {
  1864. "type": "git",
  1865. "url": "https://github.com/sebastianbergmann/diff.git",
  1866. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd"
  1867. },
  1868. "dist": {
  1869. "type": "zip",
  1870. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  1871. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  1872. "shasum": ""
  1873. },
  1874. "require": {
  1875. "php": "^7.0"
  1876. },
  1877. "require-dev": {
  1878. "phpunit/phpunit": "^6.2"
  1879. },
  1880. "type": "library",
  1881. "extra": {
  1882. "branch-alias": {
  1883. "dev-master": "2.0-dev"
  1884. }
  1885. },
  1886. "autoload": {
  1887. "classmap": [
  1888. "src/"
  1889. ]
  1890. },
  1891. "notification-url": "https://packagist.org/downloads/",
  1892. "license": [
  1893. "BSD-3-Clause"
  1894. ],
  1895. "authors": [
  1896. {
  1897. "name": "Kore Nordmann",
  1898. "email": "mail@kore-nordmann.de"
  1899. },
  1900. {
  1901. "name": "Sebastian Bergmann",
  1902. "email": "sebastian@phpunit.de"
  1903. }
  1904. ],
  1905. "description": "Diff implementation",
  1906. "homepage": "https://github.com/sebastianbergmann/diff",
  1907. "keywords": [
  1908. "diff"
  1909. ],
  1910. "time": "2017-08-03T08:09:46+00:00"
  1911. },
  1912. {
  1913. "name": "sebastian/environment",
  1914. "version": "3.1.0",
  1915. "source": {
  1916. "type": "git",
  1917. "url": "https://github.com/sebastianbergmann/environment.git",
  1918. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5"
  1919. },
  1920. "dist": {
  1921. "type": "zip",
  1922. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  1923. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  1924. "shasum": ""
  1925. },
  1926. "require": {
  1927. "php": "^7.0"
  1928. },
  1929. "require-dev": {
  1930. "phpunit/phpunit": "^6.1"
  1931. },
  1932. "type": "library",
  1933. "extra": {
  1934. "branch-alias": {
  1935. "dev-master": "3.1.x-dev"
  1936. }
  1937. },
  1938. "autoload": {
  1939. "classmap": [
  1940. "src/"
  1941. ]
  1942. },
  1943. "notification-url": "https://packagist.org/downloads/",
  1944. "license": [
  1945. "BSD-3-Clause"
  1946. ],
  1947. "authors": [
  1948. {
  1949. "name": "Sebastian Bergmann",
  1950. "email": "sebastian@phpunit.de"
  1951. }
  1952. ],
  1953. "description": "Provides functionality to handle HHVM/PHP environments",
  1954. "homepage": "http://www.github.com/sebastianbergmann/environment",
  1955. "keywords": [
  1956. "Xdebug",
  1957. "environment",
  1958. "hhvm"
  1959. ],
  1960. "time": "2017-07-01T08:51:00+00:00"
  1961. },
  1962. {
  1963. "name": "sebastian/exporter",
  1964. "version": "3.1.0",
  1965. "source": {
  1966. "type": "git",
  1967. "url": "https://github.com/sebastianbergmann/exporter.git",
  1968. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937"
  1969. },
  1970. "dist": {
  1971. "type": "zip",
  1972. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/234199f4528de6d12aaa58b612e98f7d36adb937",
  1973. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937",
  1974. "shasum": ""
  1975. },
  1976. "require": {
  1977. "php": "^7.0",
  1978. "sebastian/recursion-context": "^3.0"
  1979. },
  1980. "require-dev": {
  1981. "ext-mbstring": "*",
  1982. "phpunit/phpunit": "^6.0"
  1983. },
  1984. "type": "library",
  1985. "extra": {
  1986. "branch-alias": {
  1987. "dev-master": "3.1.x-dev"
  1988. }
  1989. },
  1990. "autoload": {
  1991. "classmap": [
  1992. "src/"
  1993. ]
  1994. },
  1995. "notification-url": "https://packagist.org/downloads/",
  1996. "license": [
  1997. "BSD-3-Clause"
  1998. ],
  1999. "authors": [
  2000. {
  2001. "name": "Jeff Welch",
  2002. "email": "whatthejeff@gmail.com"
  2003. },
  2004. {
  2005. "name": "Volker Dusch",
  2006. "email": "github@wallbash.com"
  2007. },
  2008. {
  2009. "name": "Bernhard Schussek",
  2010. "email": "bschussek@2bepublished.at"
  2011. },
  2012. {
  2013. "name": "Sebastian Bergmann",
  2014. "email": "sebastian@phpunit.de"
  2015. },
  2016. {
  2017. "name": "Adam Harvey",
  2018. "email": "aharvey@php.net"
  2019. }
  2020. ],
  2021. "description": "Provides the functionality to export PHP variables for visualization",
  2022. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  2023. "keywords": [
  2024. "export",
  2025. "exporter"
  2026. ],
  2027. "time": "2017-04-03T13:19:02+00:00"
  2028. },
  2029. {
  2030. "name": "sebastian/global-state",
  2031. "version": "2.0.0",
  2032. "source": {
  2033. "type": "git",
  2034. "url": "https://github.com/sebastianbergmann/global-state.git",
  2035. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  2036. },
  2037. "dist": {
  2038. "type": "zip",
  2039. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  2040. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  2041. "shasum": ""
  2042. },
  2043. "require": {
  2044. "php": "^7.0"
  2045. },
  2046. "require-dev": {
  2047. "phpunit/phpunit": "^6.0"
  2048. },
  2049. "suggest": {
  2050. "ext-uopz": "*"
  2051. },
  2052. "type": "library",
  2053. "extra": {
  2054. "branch-alias": {
  2055. "dev-master": "2.0-dev"
  2056. }
  2057. },
  2058. "autoload": {
  2059. "classmap": [
  2060. "src/"
  2061. ]
  2062. },
  2063. "notification-url": "https://packagist.org/downloads/",
  2064. "license": [
  2065. "BSD-3-Clause"
  2066. ],
  2067. "authors": [
  2068. {
  2069. "name": "Sebastian Bergmann",
  2070. "email": "sebastian@phpunit.de"
  2071. }
  2072. ],
  2073. "description": "Snapshotting of global state",
  2074. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  2075. "keywords": [
  2076. "global state"
  2077. ],
  2078. "time": "2017-04-27T15:39:26+00:00"
  2079. },
  2080. {
  2081. "name": "sebastian/object-enumerator",
  2082. "version": "3.0.3",
  2083. "source": {
  2084. "type": "git",
  2085. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  2086. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  2087. },
  2088. "dist": {
  2089. "type": "zip",
  2090. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  2091. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  2092. "shasum": ""
  2093. },
  2094. "require": {
  2095. "php": "^7.0",
  2096. "sebastian/object-reflector": "^1.1.1",
  2097. "sebastian/recursion-context": "^3.0"
  2098. },
  2099. "require-dev": {
  2100. "phpunit/phpunit": "^6.0"
  2101. },
  2102. "type": "library",
  2103. "extra": {
  2104. "branch-alias": {
  2105. "dev-master": "3.0.x-dev"
  2106. }
  2107. },
  2108. "autoload": {
  2109. "classmap": [
  2110. "src/"
  2111. ]
  2112. },
  2113. "notification-url": "https://packagist.org/downloads/",
  2114. "license": [
  2115. "BSD-3-Clause"
  2116. ],
  2117. "authors": [
  2118. {
  2119. "name": "Sebastian Bergmann",
  2120. "email": "sebastian@phpunit.de"
  2121. }
  2122. ],
  2123. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  2124. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  2125. "time": "2017-08-03T12:35:26+00:00"
  2126. },
  2127. {
  2128. "name": "sebastian/object-reflector",
  2129. "version": "1.1.1",
  2130. "source": {
  2131. "type": "git",
  2132. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  2133. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  2134. },
  2135. "dist": {
  2136. "type": "zip",
  2137. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  2138. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  2139. "shasum": ""
  2140. },
  2141. "require": {
  2142. "php": "^7.0"
  2143. },
  2144. "require-dev": {
  2145. "phpunit/phpunit": "^6.0"
  2146. },
  2147. "type": "library",
  2148. "extra": {
  2149. "branch-alias": {
  2150. "dev-master": "1.1-dev"
  2151. }
  2152. },
  2153. "autoload": {
  2154. "classmap": [
  2155. "src/"
  2156. ]
  2157. },
  2158. "notification-url": "https://packagist.org/downloads/",
  2159. "license": [
  2160. "BSD-3-Clause"
  2161. ],
  2162. "authors": [
  2163. {
  2164. "name": "Sebastian Bergmann",
  2165. "email": "sebastian@phpunit.de"
  2166. }
  2167. ],
  2168. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  2169. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  2170. "time": "2017-03-29T09:07:27+00:00"
  2171. },
  2172. {
  2173. "name": "sebastian/recursion-context",
  2174. "version": "3.0.0",
  2175. "source": {
  2176. "type": "git",
  2177. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  2178. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  2179. },
  2180. "dist": {
  2181. "type": "zip",
  2182. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  2183. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  2184. "shasum": ""
  2185. },
  2186. "require": {
  2187. "php": "^7.0"
  2188. },
  2189. "require-dev": {
  2190. "phpunit/phpunit": "^6.0"
  2191. },
  2192. "type": "library",
  2193. "extra": {
  2194. "branch-alias": {
  2195. "dev-master": "3.0.x-dev"
  2196. }
  2197. },
  2198. "autoload": {
  2199. "classmap": [
  2200. "src/"
  2201. ]
  2202. },
  2203. "notification-url": "https://packagist.org/downloads/",
  2204. "license": [
  2205. "BSD-3-Clause"
  2206. ],
  2207. "authors": [
  2208. {
  2209. "name": "Jeff Welch",
  2210. "email": "whatthejeff@gmail.com"
  2211. },
  2212. {
  2213. "name": "Sebastian Bergmann",
  2214. "email": "sebastian@phpunit.de"
  2215. },
  2216. {
  2217. "name": "Adam Harvey",
  2218. "email": "aharvey@php.net"
  2219. }
  2220. ],
  2221. "description": "Provides functionality to recursively process PHP variables",
  2222. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  2223. "time": "2017-03-03T06:23:57+00:00"
  2224. },
  2225. {
  2226. "name": "sebastian/resource-operations",
  2227. "version": "1.0.0",
  2228. "source": {
  2229. "type": "git",
  2230. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  2231. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
  2232. },
  2233. "dist": {
  2234. "type": "zip",
  2235. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  2236. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  2237. "shasum": ""
  2238. },
  2239. "require": {
  2240. "php": ">=5.6.0"
  2241. },
  2242. "type": "library",
  2243. "extra": {
  2244. "branch-alias": {
  2245. "dev-master": "1.0.x-dev"
  2246. }
  2247. },
  2248. "autoload": {
  2249. "classmap": [
  2250. "src/"
  2251. ]
  2252. },
  2253. "notification-url": "https://packagist.org/downloads/",
  2254. "license": [
  2255. "BSD-3-Clause"
  2256. ],
  2257. "authors": [
  2258. {
  2259. "name": "Sebastian Bergmann",
  2260. "email": "sebastian@phpunit.de"
  2261. }
  2262. ],
  2263. "description": "Provides a list of PHP built-in functions that operate on resources",
  2264. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  2265. "time": "2015-07-28T20:34:47+00:00"
  2266. },
  2267. {
  2268. "name": "sebastian/version",
  2269. "version": "2.0.1",
  2270. "source": {
  2271. "type": "git",
  2272. "url": "https://github.com/sebastianbergmann/version.git",
  2273. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  2274. },
  2275. "dist": {
  2276. "type": "zip",
  2277. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  2278. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  2279. "shasum": ""
  2280. },
  2281. "require": {
  2282. "php": ">=5.6"
  2283. },
  2284. "type": "library",
  2285. "extra": {
  2286. "branch-alias": {
  2287. "dev-master": "2.0.x-dev"
  2288. }
  2289. },
  2290. "autoload": {
  2291. "classmap": [
  2292. "src/"
  2293. ]
  2294. },
  2295. "notification-url": "https://packagist.org/downloads/",
  2296. "license": [
  2297. "BSD-3-Clause"
  2298. ],
  2299. "authors": [
  2300. {
  2301. "name": "Sebastian Bergmann",
  2302. "email": "sebastian@phpunit.de",
  2303. "role": "lead"
  2304. }
  2305. ],
  2306. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  2307. "homepage": "https://github.com/sebastianbergmann/version",
  2308. "time": "2016-10-03T07:35:21+00:00"
  2309. },
  2310. {
  2311. "name": "symfony/finder",
  2312. "version": "v4.0.6",
  2313. "source": {
  2314. "type": "git",
  2315. "url": "https://github.com/symfony/finder.git",
  2316. "reference": "44a796d2ecc2a16a5fc8f2956a34ee617934d55f"
  2317. },
  2318. "dist": {
  2319. "type": "zip",
  2320. "url": "https://api.github.com/repos/symfony/finder/zipball/44a796d2ecc2a16a5fc8f2956a34ee617934d55f",
  2321. "reference": "44a796d2ecc2a16a5fc8f2956a34ee617934d55f",
  2322. "shasum": ""
  2323. },
  2324. "require": {
  2325. "php": "^7.1.3"
  2326. },
  2327. "type": "library",
  2328. "extra": {
  2329. "branch-alias": {
  2330. "dev-master": "4.0-dev"
  2331. }
  2332. },
  2333. "autoload": {
  2334. "psr-4": {
  2335. "Symfony\\Component\\Finder\\": ""
  2336. },
  2337. "exclude-from-classmap": [
  2338. "/Tests/"
  2339. ]
  2340. },
  2341. "notification-url": "https://packagist.org/downloads/",
  2342. "license": [
  2343. "MIT"
  2344. ],
  2345. "authors": [
  2346. {
  2347. "name": "Fabien Potencier",
  2348. "email": "fabien@symfony.com"
  2349. },
  2350. {
  2351. "name": "Symfony Community",
  2352. "homepage": "https://symfony.com/contributors"
  2353. }
  2354. ],
  2355. "description": "Symfony Finder Component",
  2356. "homepage": "https://symfony.com",
  2357. "time": "2018-03-05T18:28:26+00:00"
  2358. },
  2359. {
  2360. "name": "theseer/tokenizer",
  2361. "version": "1.1.0",
  2362. "source": {
  2363. "type": "git",
  2364. "url": "https://github.com/theseer/tokenizer.git",
  2365. "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b"
  2366. },
  2367. "dist": {
  2368. "type": "zip",
  2369. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/cb2f008f3f05af2893a87208fe6a6c4985483f8b",
  2370. "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b",
  2371. "shasum": ""
  2372. },
  2373. "require": {
  2374. "ext-dom": "*",
  2375. "ext-tokenizer": "*",
  2376. "ext-xmlwriter": "*",
  2377. "php": "^7.0"
  2378. },
  2379. "type": "library",
  2380. "autoload": {
  2381. "classmap": [
  2382. "src/"
  2383. ]
  2384. },
  2385. "notification-url": "https://packagist.org/downloads/",
  2386. "license": [
  2387. "BSD-3-Clause"
  2388. ],
  2389. "authors": [
  2390. {
  2391. "name": "Arne Blankerts",
  2392. "email": "arne@blankerts.de",
  2393. "role": "Developer"
  2394. }
  2395. ],
  2396. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  2397. "time": "2017-04-07T12:08:54+00:00"
  2398. },
  2399. {
  2400. "name": "webmozart/assert",
  2401. "version": "1.3.0",
  2402. "source": {
  2403. "type": "git",
  2404. "url": "https://github.com/webmozart/assert.git",
  2405. "reference": "0df1908962e7a3071564e857d86874dad1ef204a"
  2406. },
  2407. "dist": {
  2408. "type": "zip",
  2409. "url": "https://api.github.com/repos/webmozart/assert/zipball/0df1908962e7a3071564e857d86874dad1ef204a",
  2410. "reference": "0df1908962e7a3071564e857d86874dad1ef204a",
  2411. "shasum": ""
  2412. },
  2413. "require": {
  2414. "php": "^5.3.3 || ^7.0"
  2415. },
  2416. "require-dev": {
  2417. "phpunit/phpunit": "^4.6",
  2418. "sebastian/version": "^1.0.1"
  2419. },
  2420. "type": "library",
  2421. "extra": {
  2422. "branch-alias": {
  2423. "dev-master": "1.3-dev"
  2424. }
  2425. },
  2426. "autoload": {
  2427. "psr-4": {
  2428. "Webmozart\\Assert\\": "src/"
  2429. }
  2430. },
  2431. "notification-url": "https://packagist.org/downloads/",
  2432. "license": [
  2433. "MIT"
  2434. ],
  2435. "authors": [
  2436. {
  2437. "name": "Bernhard Schussek",
  2438. "email": "bschussek@gmail.com"
  2439. }
  2440. ],
  2441. "description": "Assertions to validate method input/output with nice error messages.",
  2442. "keywords": [
  2443. "assert",
  2444. "check",
  2445. "validate"
  2446. ],
  2447. "time": "2018-01-29T19:49:41+00:00"
  2448. },
  2449. {
  2450. "name": "zircote/swagger-php",
  2451. "version": "2.0.13",
  2452. "source": {
  2453. "type": "git",
  2454. "url": "https://github.com/zircote/swagger-php.git",
  2455. "reference": "8b42fdc3d8c5a5e0d1f8d344aa359822c9f085e0"
  2456. },
  2457. "dist": {
  2458. "type": "zip",
  2459. "url": "https://api.github.com/repos/zircote/swagger-php/zipball/8b42fdc3d8c5a5e0d1f8d344aa359822c9f085e0",
  2460. "reference": "8b42fdc3d8c5a5e0d1f8d344aa359822c9f085e0",
  2461. "shasum": ""
  2462. },
  2463. "require": {
  2464. "doctrine/annotations": "*",
  2465. "php": ">=5.6",
  2466. "symfony/finder": ">=2.2"
  2467. },
  2468. "require-dev": {
  2469. "phpunit/phpunit": ">=4.8.35 <=5.6",
  2470. "squizlabs/php_codesniffer": ">=2.7",
  2471. "zendframework/zend-form": "<2.8"
  2472. },
  2473. "bin": [
  2474. "bin/swagger"
  2475. ],
  2476. "type": "library",
  2477. "autoload": {
  2478. "psr-4": {
  2479. "Swagger\\": "src"
  2480. },
  2481. "files": [
  2482. "src/functions.php"
  2483. ]
  2484. },
  2485. "notification-url": "https://packagist.org/downloads/",
  2486. "license": [
  2487. "Apache2"
  2488. ],
  2489. "authors": [
  2490. {
  2491. "name": "Robert Allen",
  2492. "email": "zircote@gmail.com",
  2493. "homepage": "http://www.zircote.com"
  2494. },
  2495. {
  2496. "name": "Bob Fanger",
  2497. "email": "bfanger@gmail.com",
  2498. "homepage": "http://bfanger.nl"
  2499. }
  2500. ],
  2501. "description": "Swagger-PHP - Generate interactive documentation for your RESTful API using phpdoc annotations",
  2502. "homepage": "https://github.com/zircote/swagger-php/",
  2503. "keywords": [
  2504. "api",
  2505. "json",
  2506. "rest",
  2507. "service discovery"
  2508. ],
  2509. "time": "2017-12-01T09:22:05+00:00"
  2510. }
  2511. ],
  2512. "packages-dev": [],
  2513. "aliases": [],
  2514. "minimum-stability": "stable",
  2515. "stability-flags": [],
  2516. "prefer-stable": false,
  2517. "prefer-lowest": false,
  2518. "platform": [],
  2519. "platform-dev": []
  2520. }