installed.json 94 KB

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