composer.lock 100 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898
  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": "0dc33ee0b7d9f47868d4fa961f0d13b4",
  8. "packages": [
  9. {
  10. "name": "arthurhoaro/web-thumbnailer",
  11. "version": "v1.3.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/ArthurHoaro/web-thumbnailer.git",
  15. "reference": "7142bd94ec93719a756a7012ebb8e1c5813c6860"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/ArthurHoaro/web-thumbnailer/zipball/7142bd94ec93719a756a7012ebb8e1c5813c6860",
  20. "reference": "7142bd94ec93719a756a7012ebb8e1c5813c6860",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": ">=5.6",
  25. "phpunit/php-text-template": "^1.2"
  26. },
  27. "conflict": {
  28. "phpunit/php-timer": ">=2"
  29. },
  30. "require-dev": {
  31. "php-coveralls/php-coveralls": "^2.0",
  32. "phpunit/phpunit": "5.2.*",
  33. "squizlabs/php_codesniffer": "^3.2"
  34. },
  35. "type": "library",
  36. "autoload": {
  37. "psr-0": {
  38. "WebThumbnailer\\": [
  39. "src/",
  40. "tests/"
  41. ]
  42. }
  43. },
  44. "notification-url": "https://packagist.org/downloads/",
  45. "license": [
  46. "MIT"
  47. ],
  48. "authors": [
  49. {
  50. "name": "Arthur Hoaro",
  51. "homepage": "http://hoa.ro"
  52. }
  53. ],
  54. "description": "PHP library which will retrieve a thumbnail for any given URL",
  55. "time": "2018-08-11T12:21:52+00:00"
  56. },
  57. {
  58. "name": "container-interop/container-interop",
  59. "version": "1.2.0",
  60. "source": {
  61. "type": "git",
  62. "url": "https://github.com/container-interop/container-interop.git",
  63. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8"
  64. },
  65. "dist": {
  66. "type": "zip",
  67. "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  68. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  69. "shasum": ""
  70. },
  71. "require": {
  72. "psr/container": "^1.0"
  73. },
  74. "type": "library",
  75. "autoload": {
  76. "psr-4": {
  77. "Interop\\Container\\": "src/Interop/Container/"
  78. }
  79. },
  80. "notification-url": "https://packagist.org/downloads/",
  81. "license": [
  82. "MIT"
  83. ],
  84. "description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
  85. "homepage": "https://github.com/container-interop/container-interop",
  86. "time": "2017-02-14T19:40:03+00:00"
  87. },
  88. {
  89. "name": "erusev/parsedown",
  90. "version": "1.7.1",
  91. "source": {
  92. "type": "git",
  93. "url": "https://github.com/erusev/parsedown.git",
  94. "reference": "92e9c27ba0e74b8b028b111d1b6f956a15c01fc1"
  95. },
  96. "dist": {
  97. "type": "zip",
  98. "url": "https://api.github.com/repos/erusev/parsedown/zipball/92e9c27ba0e74b8b028b111d1b6f956a15c01fc1",
  99. "reference": "92e9c27ba0e74b8b028b111d1b6f956a15c01fc1",
  100. "shasum": ""
  101. },
  102. "require": {
  103. "ext-mbstring": "*",
  104. "php": ">=5.3.0"
  105. },
  106. "require-dev": {
  107. "phpunit/phpunit": "^4.8.35"
  108. },
  109. "type": "library",
  110. "autoload": {
  111. "psr-0": {
  112. "Parsedown": ""
  113. }
  114. },
  115. "notification-url": "https://packagist.org/downloads/",
  116. "license": [
  117. "MIT"
  118. ],
  119. "authors": [
  120. {
  121. "name": "Emanuil Rusev",
  122. "email": "hello@erusev.com",
  123. "homepage": "http://erusev.com"
  124. }
  125. ],
  126. "description": "Parser for Markdown.",
  127. "homepage": "http://parsedown.org",
  128. "keywords": [
  129. "markdown",
  130. "parser"
  131. ],
  132. "time": "2018-03-08T01:11:30+00:00"
  133. },
  134. {
  135. "name": "gettext/gettext",
  136. "version": "v4.6.1",
  137. "source": {
  138. "type": "git",
  139. "url": "https://github.com/oscarotero/Gettext.git",
  140. "reference": "854ff5f5aaf92d2af7080ba8fc15718b27b5c89a"
  141. },
  142. "dist": {
  143. "type": "zip",
  144. "url": "https://api.github.com/repos/oscarotero/Gettext/zipball/854ff5f5aaf92d2af7080ba8fc15718b27b5c89a",
  145. "reference": "854ff5f5aaf92d2af7080ba8fc15718b27b5c89a",
  146. "shasum": ""
  147. },
  148. "require": {
  149. "gettext/languages": "^2.3",
  150. "php": ">=5.4.0"
  151. },
  152. "require-dev": {
  153. "illuminate/view": "*",
  154. "phpunit/phpunit": "^4.8|^5.7|^6.5",
  155. "squizlabs/php_codesniffer": "^3.0",
  156. "symfony/yaml": "~2",
  157. "twig/extensions": "*",
  158. "twig/twig": "^1.31|^2.0"
  159. },
  160. "suggest": {
  161. "illuminate/view": "Is necessary if you want to use the Blade extractor",
  162. "symfony/yaml": "Is necessary if you want to use the Yaml extractor/generator",
  163. "twig/extensions": "Is necessary if you want to use the Twig extractor",
  164. "twig/twig": "Is necessary if you want to use the Twig extractor"
  165. },
  166. "type": "library",
  167. "autoload": {
  168. "psr-4": {
  169. "Gettext\\": "src"
  170. }
  171. },
  172. "notification-url": "https://packagist.org/downloads/",
  173. "license": [
  174. "MIT"
  175. ],
  176. "authors": [
  177. {
  178. "name": "Oscar Otero",
  179. "email": "oom@oscarotero.com",
  180. "homepage": "http://oscarotero.com",
  181. "role": "Developer"
  182. }
  183. ],
  184. "description": "PHP gettext manager",
  185. "homepage": "https://github.com/oscarotero/Gettext",
  186. "keywords": [
  187. "JS",
  188. "gettext",
  189. "i18n",
  190. "mo",
  191. "po",
  192. "translation"
  193. ],
  194. "time": "2018-08-27T15:40:19+00:00"
  195. },
  196. {
  197. "name": "gettext/languages",
  198. "version": "2.4.0",
  199. "source": {
  200. "type": "git",
  201. "url": "https://github.com/mlocati/cldr-to-gettext-plural-rules.git",
  202. "reference": "1b74377bd0c4cd87e8d72b948f5d8867e23505a5"
  203. },
  204. "dist": {
  205. "type": "zip",
  206. "url": "https://api.github.com/repos/mlocati/cldr-to-gettext-plural-rules/zipball/1b74377bd0c4cd87e8d72b948f5d8867e23505a5",
  207. "reference": "1b74377bd0c4cd87e8d72b948f5d8867e23505a5",
  208. "shasum": ""
  209. },
  210. "require": {
  211. "php": ">=5.3"
  212. },
  213. "require-dev": {
  214. "phpunit/phpunit": "^4"
  215. },
  216. "bin": [
  217. "bin/export-plural-rules",
  218. "bin/export-plural-rules.php"
  219. ],
  220. "type": "library",
  221. "autoload": {
  222. "psr-4": {
  223. "Gettext\\Languages\\": "src/"
  224. }
  225. },
  226. "notification-url": "https://packagist.org/downloads/",
  227. "license": [
  228. "MIT"
  229. ],
  230. "authors": [
  231. {
  232. "name": "Michele Locati",
  233. "email": "mlocati@gmail.com",
  234. "role": "Developer"
  235. }
  236. ],
  237. "description": "gettext languages with plural rules",
  238. "homepage": "https://github.com/mlocati/cldr-to-gettext-plural-rules",
  239. "keywords": [
  240. "cldr",
  241. "i18n",
  242. "internationalization",
  243. "l10n",
  244. "language",
  245. "languages",
  246. "localization",
  247. "php",
  248. "plural",
  249. "plural rules",
  250. "plurals",
  251. "translate",
  252. "translations",
  253. "unicode"
  254. ],
  255. "time": "2018-06-21T15:58:36+00:00"
  256. },
  257. {
  258. "name": "katzgrau/klogger",
  259. "version": "1.2.1",
  260. "source": {
  261. "type": "git",
  262. "url": "https://github.com/katzgrau/KLogger.git",
  263. "reference": "a4ed373fa8a214aa4ae7aa4f221fe2c6ce862ef1"
  264. },
  265. "dist": {
  266. "type": "zip",
  267. "url": "https://api.github.com/repos/katzgrau/KLogger/zipball/a4ed373fa8a214aa4ae7aa4f221fe2c6ce862ef1",
  268. "reference": "a4ed373fa8a214aa4ae7aa4f221fe2c6ce862ef1",
  269. "shasum": ""
  270. },
  271. "require": {
  272. "php": ">=5.3",
  273. "psr/log": "^1.0.0"
  274. },
  275. "require-dev": {
  276. "phpunit/phpunit": "4.0.*"
  277. },
  278. "type": "library",
  279. "autoload": {
  280. "psr-4": {
  281. "Katzgrau\\KLogger\\": "src/"
  282. },
  283. "classmap": [
  284. "src/"
  285. ]
  286. },
  287. "notification-url": "https://packagist.org/downloads/",
  288. "license": [
  289. "MIT"
  290. ],
  291. "authors": [
  292. {
  293. "name": "Kenny Katzgrau",
  294. "email": "katzgrau@gmail.com"
  295. },
  296. {
  297. "name": "Dan Horrigan",
  298. "email": "dan@dhorrigan.com"
  299. }
  300. ],
  301. "description": "A Simple Logging Class",
  302. "keywords": [
  303. "logging"
  304. ],
  305. "time": "2016-11-07T19:29:14+00:00"
  306. },
  307. {
  308. "name": "nikic/fast-route",
  309. "version": "v1.3.0",
  310. "source": {
  311. "type": "git",
  312. "url": "https://github.com/nikic/FastRoute.git",
  313. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  314. },
  315. "dist": {
  316. "type": "zip",
  317. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  318. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  319. "shasum": ""
  320. },
  321. "require": {
  322. "php": ">=5.4.0"
  323. },
  324. "require-dev": {
  325. "phpunit/phpunit": "^4.8.35|~5.7"
  326. },
  327. "type": "library",
  328. "autoload": {
  329. "psr-4": {
  330. "FastRoute\\": "src/"
  331. },
  332. "files": [
  333. "src/functions.php"
  334. ]
  335. },
  336. "notification-url": "https://packagist.org/downloads/",
  337. "license": [
  338. "BSD-3-Clause"
  339. ],
  340. "authors": [
  341. {
  342. "name": "Nikita Popov",
  343. "email": "nikic@php.net"
  344. }
  345. ],
  346. "description": "Fast request router for PHP",
  347. "keywords": [
  348. "router",
  349. "routing"
  350. ],
  351. "time": "2018-02-13T20:26:39+00:00"
  352. },
  353. {
  354. "name": "phpunit/php-text-template",
  355. "version": "1.2.1",
  356. "source": {
  357. "type": "git",
  358. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  359. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  360. },
  361. "dist": {
  362. "type": "zip",
  363. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  364. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  365. "shasum": ""
  366. },
  367. "require": {
  368. "php": ">=5.3.3"
  369. },
  370. "type": "library",
  371. "autoload": {
  372. "classmap": [
  373. "src/"
  374. ]
  375. },
  376. "notification-url": "https://packagist.org/downloads/",
  377. "license": [
  378. "BSD-3-Clause"
  379. ],
  380. "authors": [
  381. {
  382. "name": "Sebastian Bergmann",
  383. "email": "sebastian@phpunit.de",
  384. "role": "lead"
  385. }
  386. ],
  387. "description": "Simple template engine.",
  388. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  389. "keywords": [
  390. "template"
  391. ],
  392. "time": "2015-06-21T13:50:34+00:00"
  393. },
  394. {
  395. "name": "pimple/pimple",
  396. "version": "v3.2.3",
  397. "source": {
  398. "type": "git",
  399. "url": "https://github.com/silexphp/Pimple.git",
  400. "reference": "9e403941ef9d65d20cba7d54e29fe906db42cf32"
  401. },
  402. "dist": {
  403. "type": "zip",
  404. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/9e403941ef9d65d20cba7d54e29fe906db42cf32",
  405. "reference": "9e403941ef9d65d20cba7d54e29fe906db42cf32",
  406. "shasum": ""
  407. },
  408. "require": {
  409. "php": ">=5.3.0",
  410. "psr/container": "^1.0"
  411. },
  412. "require-dev": {
  413. "symfony/phpunit-bridge": "^3.2"
  414. },
  415. "type": "library",
  416. "extra": {
  417. "branch-alias": {
  418. "dev-master": "3.2.x-dev"
  419. }
  420. },
  421. "autoload": {
  422. "psr-0": {
  423. "Pimple": "src/"
  424. }
  425. },
  426. "notification-url": "https://packagist.org/downloads/",
  427. "license": [
  428. "MIT"
  429. ],
  430. "authors": [
  431. {
  432. "name": "Fabien Potencier",
  433. "email": "fabien@symfony.com"
  434. }
  435. ],
  436. "description": "Pimple, a simple Dependency Injection Container",
  437. "homepage": "http://pimple.sensiolabs.org",
  438. "keywords": [
  439. "container",
  440. "dependency injection"
  441. ],
  442. "time": "2018-01-21T07:42:36+00:00"
  443. },
  444. {
  445. "name": "psr/container",
  446. "version": "1.0.0",
  447. "source": {
  448. "type": "git",
  449. "url": "https://github.com/php-fig/container.git",
  450. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  451. },
  452. "dist": {
  453. "type": "zip",
  454. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  455. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  456. "shasum": ""
  457. },
  458. "require": {
  459. "php": ">=5.3.0"
  460. },
  461. "type": "library",
  462. "extra": {
  463. "branch-alias": {
  464. "dev-master": "1.0.x-dev"
  465. }
  466. },
  467. "autoload": {
  468. "psr-4": {
  469. "Psr\\Container\\": "src/"
  470. }
  471. },
  472. "notification-url": "https://packagist.org/downloads/",
  473. "license": [
  474. "MIT"
  475. ],
  476. "authors": [
  477. {
  478. "name": "PHP-FIG",
  479. "homepage": "http://www.php-fig.org/"
  480. }
  481. ],
  482. "description": "Common Container Interface (PHP FIG PSR-11)",
  483. "homepage": "https://github.com/php-fig/container",
  484. "keywords": [
  485. "PSR-11",
  486. "container",
  487. "container-interface",
  488. "container-interop",
  489. "psr"
  490. ],
  491. "time": "2017-02-14T16:28:37+00:00"
  492. },
  493. {
  494. "name": "psr/http-message",
  495. "version": "1.0.1",
  496. "source": {
  497. "type": "git",
  498. "url": "https://github.com/php-fig/http-message.git",
  499. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  500. },
  501. "dist": {
  502. "type": "zip",
  503. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  504. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  505. "shasum": ""
  506. },
  507. "require": {
  508. "php": ">=5.3.0"
  509. },
  510. "type": "library",
  511. "extra": {
  512. "branch-alias": {
  513. "dev-master": "1.0.x-dev"
  514. }
  515. },
  516. "autoload": {
  517. "psr-4": {
  518. "Psr\\Http\\Message\\": "src/"
  519. }
  520. },
  521. "notification-url": "https://packagist.org/downloads/",
  522. "license": [
  523. "MIT"
  524. ],
  525. "authors": [
  526. {
  527. "name": "PHP-FIG",
  528. "homepage": "http://www.php-fig.org/"
  529. }
  530. ],
  531. "description": "Common interface for HTTP messages",
  532. "homepage": "https://github.com/php-fig/http-message",
  533. "keywords": [
  534. "http",
  535. "http-message",
  536. "psr",
  537. "psr-7",
  538. "request",
  539. "response"
  540. ],
  541. "time": "2016-08-06T14:39:51+00:00"
  542. },
  543. {
  544. "name": "psr/log",
  545. "version": "1.0.2",
  546. "source": {
  547. "type": "git",
  548. "url": "https://github.com/php-fig/log.git",
  549. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d"
  550. },
  551. "dist": {
  552. "type": "zip",
  553. "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  554. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  555. "shasum": ""
  556. },
  557. "require": {
  558. "php": ">=5.3.0"
  559. },
  560. "type": "library",
  561. "extra": {
  562. "branch-alias": {
  563. "dev-master": "1.0.x-dev"
  564. }
  565. },
  566. "autoload": {
  567. "psr-4": {
  568. "Psr\\Log\\": "Psr/Log/"
  569. }
  570. },
  571. "notification-url": "https://packagist.org/downloads/",
  572. "license": [
  573. "MIT"
  574. ],
  575. "authors": [
  576. {
  577. "name": "PHP-FIG",
  578. "homepage": "http://www.php-fig.org/"
  579. }
  580. ],
  581. "description": "Common interface for logging libraries",
  582. "homepage": "https://github.com/php-fig/log",
  583. "keywords": [
  584. "log",
  585. "psr",
  586. "psr-3"
  587. ],
  588. "time": "2016-10-10T12:19:37+00:00"
  589. },
  590. {
  591. "name": "pubsubhubbub/publisher",
  592. "version": "dev-master",
  593. "source": {
  594. "type": "git",
  595. "url": "https://github.com/pubsubhubbub/php-publisher.git",
  596. "reference": "e8a7cf52a2c86b0c364da56f7192ec020c83b8f7"
  597. },
  598. "dist": {
  599. "type": "zip",
  600. "url": "https://api.github.com/repos/pubsubhubbub/php-publisher/zipball/e8a7cf52a2c86b0c364da56f7192ec020c83b8f7",
  601. "reference": "e8a7cf52a2c86b0c364da56f7192ec020c83b8f7",
  602. "shasum": ""
  603. },
  604. "require": {
  605. "ext-curl": "*",
  606. "php": "~5.4 || ~7.0"
  607. },
  608. "type": "library",
  609. "autoload": {
  610. "psr-4": {
  611. "pubsubhubbub\\publisher\\": "library/"
  612. }
  613. },
  614. "notification-url": "https://packagist.org/downloads/",
  615. "license": [
  616. "Apache-2.0"
  617. ],
  618. "authors": [
  619. {
  620. "name": "pubsubhubbub publisher Contributors",
  621. "homepage": "https://github.com/pubsubhubbub/php-publisher/contributors"
  622. }
  623. ],
  624. "description": "pubsubhubbub implementation of publisher.",
  625. "homepage": "https://github.com/pubsubhubbub/php-publisher",
  626. "keywords": [
  627. "data",
  628. "feeds",
  629. "publishers",
  630. "pubsubhubbub"
  631. ],
  632. "time": "2018-10-05T12:31:04+00:00"
  633. },
  634. {
  635. "name": "shaarli/netscape-bookmark-parser",
  636. "version": "v2.1.0",
  637. "source": {
  638. "type": "git",
  639. "url": "https://github.com/shaarli/netscape-bookmark-parser.git",
  640. "reference": "819008ee42c4dd7e45d988176a4a22d6ed689577"
  641. },
  642. "dist": {
  643. "type": "zip",
  644. "url": "https://api.github.com/repos/shaarli/netscape-bookmark-parser/zipball/819008ee42c4dd7e45d988176a4a22d6ed689577",
  645. "reference": "819008ee42c4dd7e45d988176a4a22d6ed689577",
  646. "shasum": ""
  647. },
  648. "require": {
  649. "katzgrau/klogger": "~1.0",
  650. "php": ">=5.6"
  651. },
  652. "require-dev": {
  653. "phpunit/phpunit": "^5.0"
  654. },
  655. "type": "library",
  656. "autoload": {
  657. "files": [
  658. "NetscapeBookmarkParser.php"
  659. ]
  660. },
  661. "notification-url": "https://packagist.org/downloads/",
  662. "license": [
  663. "MIT"
  664. ],
  665. "authors": [
  666. {
  667. "name": "Kafene",
  668. "email": "io@kafene.org",
  669. "homepage": "https://github.com/kafene",
  670. "role": "Developer"
  671. },
  672. {
  673. "name": "VirtualTam",
  674. "email": "virtualtam@flibidi.net",
  675. "homepage": "https://github.com/virtualtam",
  676. "role": "Developer"
  677. }
  678. ],
  679. "description": "Generic Netscape bookmark parser",
  680. "homepage": "https://github.com/shaarli/netscape-bookmark-parser",
  681. "keywords": [
  682. "bookmark",
  683. "link",
  684. "netscape",
  685. "parser"
  686. ],
  687. "time": "2018-10-06T14:43:38+00:00"
  688. },
  689. {
  690. "name": "slim/slim",
  691. "version": "3.11.0",
  692. "source": {
  693. "type": "git",
  694. "url": "https://github.com/slimphp/Slim.git",
  695. "reference": "d378e70431e78ee92ee32ddde61ecc72edf5dc0a"
  696. },
  697. "dist": {
  698. "type": "zip",
  699. "url": "https://api.github.com/repos/slimphp/Slim/zipball/d378e70431e78ee92ee32ddde61ecc72edf5dc0a",
  700. "reference": "d378e70431e78ee92ee32ddde61ecc72edf5dc0a",
  701. "shasum": ""
  702. },
  703. "require": {
  704. "container-interop/container-interop": "^1.2",
  705. "nikic/fast-route": "^1.0",
  706. "php": ">=5.5.0",
  707. "pimple/pimple": "^3.0",
  708. "psr/container": "^1.0",
  709. "psr/http-message": "^1.0"
  710. },
  711. "provide": {
  712. "psr/http-message-implementation": "1.0"
  713. },
  714. "require-dev": {
  715. "phpunit/phpunit": "^4.0",
  716. "squizlabs/php_codesniffer": "^2.5"
  717. },
  718. "type": "library",
  719. "autoload": {
  720. "psr-4": {
  721. "Slim\\": "Slim"
  722. }
  723. },
  724. "notification-url": "https://packagist.org/downloads/",
  725. "license": [
  726. "MIT"
  727. ],
  728. "authors": [
  729. {
  730. "name": "Rob Allen",
  731. "email": "rob@akrabat.com",
  732. "homepage": "http://akrabat.com"
  733. },
  734. {
  735. "name": "Josh Lockhart",
  736. "email": "hello@joshlockhart.com",
  737. "homepage": "https://joshlockhart.com"
  738. },
  739. {
  740. "name": "Gabriel Manricks",
  741. "email": "gmanricks@me.com",
  742. "homepage": "http://gabrielmanricks.com"
  743. },
  744. {
  745. "name": "Andrew Smith",
  746. "email": "a.smith@silentworks.co.uk",
  747. "homepage": "http://silentworks.co.uk"
  748. }
  749. ],
  750. "description": "Slim is a PHP micro framework that helps you quickly write simple yet powerful web applications and APIs",
  751. "homepage": "https://slimframework.com",
  752. "keywords": [
  753. "api",
  754. "framework",
  755. "micro",
  756. "router"
  757. ],
  758. "time": "2018-09-16T10:54:21+00:00"
  759. }
  760. ],
  761. "packages-dev": [
  762. {
  763. "name": "doctrine/instantiator",
  764. "version": "1.0.5",
  765. "source": {
  766. "type": "git",
  767. "url": "https://github.com/doctrine/instantiator.git",
  768. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
  769. },
  770. "dist": {
  771. "type": "zip",
  772. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",
  773. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
  774. "shasum": ""
  775. },
  776. "require": {
  777. "php": ">=5.3,<8.0-DEV"
  778. },
  779. "require-dev": {
  780. "athletic/athletic": "~0.1.8",
  781. "ext-pdo": "*",
  782. "ext-phar": "*",
  783. "phpunit/phpunit": "~4.0",
  784. "squizlabs/php_codesniffer": "~2.0"
  785. },
  786. "type": "library",
  787. "extra": {
  788. "branch-alias": {
  789. "dev-master": "1.0.x-dev"
  790. }
  791. },
  792. "autoload": {
  793. "psr-4": {
  794. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  795. }
  796. },
  797. "notification-url": "https://packagist.org/downloads/",
  798. "license": [
  799. "MIT"
  800. ],
  801. "authors": [
  802. {
  803. "name": "Marco Pivetta",
  804. "email": "ocramius@gmail.com",
  805. "homepage": "http://ocramius.github.com/"
  806. }
  807. ],
  808. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  809. "homepage": "https://github.com/doctrine/instantiator",
  810. "keywords": [
  811. "constructor",
  812. "instantiate"
  813. ],
  814. "time": "2015-06-14T21:17:01+00:00"
  815. },
  816. {
  817. "name": "myclabs/deep-copy",
  818. "version": "1.7.0",
  819. "source": {
  820. "type": "git",
  821. "url": "https://github.com/myclabs/DeepCopy.git",
  822. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e"
  823. },
  824. "dist": {
  825. "type": "zip",
  826. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  827. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  828. "shasum": ""
  829. },
  830. "require": {
  831. "php": "^5.6 || ^7.0"
  832. },
  833. "require-dev": {
  834. "doctrine/collections": "^1.0",
  835. "doctrine/common": "^2.6",
  836. "phpunit/phpunit": "^4.1"
  837. },
  838. "type": "library",
  839. "autoload": {
  840. "psr-4": {
  841. "DeepCopy\\": "src/DeepCopy/"
  842. },
  843. "files": [
  844. "src/DeepCopy/deep_copy.php"
  845. ]
  846. },
  847. "notification-url": "https://packagist.org/downloads/",
  848. "license": [
  849. "MIT"
  850. ],
  851. "description": "Create deep copies (clones) of your objects",
  852. "keywords": [
  853. "clone",
  854. "copy",
  855. "duplicate",
  856. "object",
  857. "object graph"
  858. ],
  859. "time": "2017-10-19T19:58:43+00:00"
  860. },
  861. {
  862. "name": "pdepend/pdepend",
  863. "version": "2.5.2",
  864. "source": {
  865. "type": "git",
  866. "url": "https://github.com/pdepend/pdepend.git",
  867. "reference": "9daf26d0368d4a12bed1cacae1a9f3a6f0adf239"
  868. },
  869. "dist": {
  870. "type": "zip",
  871. "url": "https://api.github.com/repos/pdepend/pdepend/zipball/9daf26d0368d4a12bed1cacae1a9f3a6f0adf239",
  872. "reference": "9daf26d0368d4a12bed1cacae1a9f3a6f0adf239",
  873. "shasum": ""
  874. },
  875. "require": {
  876. "php": ">=5.3.7",
  877. "symfony/config": "^2.3.0|^3|^4",
  878. "symfony/dependency-injection": "^2.3.0|^3|^4",
  879. "symfony/filesystem": "^2.3.0|^3|^4"
  880. },
  881. "require-dev": {
  882. "phpunit/phpunit": "^4.8|^5.7",
  883. "squizlabs/php_codesniffer": "^2.0.0"
  884. },
  885. "bin": [
  886. "src/bin/pdepend"
  887. ],
  888. "type": "library",
  889. "autoload": {
  890. "psr-4": {
  891. "PDepend\\": "src/main/php/PDepend"
  892. }
  893. },
  894. "notification-url": "https://packagist.org/downloads/",
  895. "license": [
  896. "BSD-3-Clause"
  897. ],
  898. "description": "Official version of pdepend to be handled with Composer",
  899. "time": "2017-12-13T13:21:38+00:00"
  900. },
  901. {
  902. "name": "phpdocumentor/reflection-common",
  903. "version": "1.0.1",
  904. "source": {
  905. "type": "git",
  906. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  907. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
  908. },
  909. "dist": {
  910. "type": "zip",
  911. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  912. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  913. "shasum": ""
  914. },
  915. "require": {
  916. "php": ">=5.5"
  917. },
  918. "require-dev": {
  919. "phpunit/phpunit": "^4.6"
  920. },
  921. "type": "library",
  922. "extra": {
  923. "branch-alias": {
  924. "dev-master": "1.0.x-dev"
  925. }
  926. },
  927. "autoload": {
  928. "psr-4": {
  929. "phpDocumentor\\Reflection\\": [
  930. "src"
  931. ]
  932. }
  933. },
  934. "notification-url": "https://packagist.org/downloads/",
  935. "license": [
  936. "MIT"
  937. ],
  938. "authors": [
  939. {
  940. "name": "Jaap van Otterdijk",
  941. "email": "opensource@ijaap.nl"
  942. }
  943. ],
  944. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  945. "homepage": "http://www.phpdoc.org",
  946. "keywords": [
  947. "FQSEN",
  948. "phpDocumentor",
  949. "phpdoc",
  950. "reflection",
  951. "static analysis"
  952. ],
  953. "time": "2017-09-11T18:02:19+00:00"
  954. },
  955. {
  956. "name": "phpdocumentor/reflection-docblock",
  957. "version": "3.3.2",
  958. "source": {
  959. "type": "git",
  960. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  961. "reference": "bf329f6c1aadea3299f08ee804682b7c45b326a2"
  962. },
  963. "dist": {
  964. "type": "zip",
  965. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/bf329f6c1aadea3299f08ee804682b7c45b326a2",
  966. "reference": "bf329f6c1aadea3299f08ee804682b7c45b326a2",
  967. "shasum": ""
  968. },
  969. "require": {
  970. "php": "^5.6 || ^7.0",
  971. "phpdocumentor/reflection-common": "^1.0.0",
  972. "phpdocumentor/type-resolver": "^0.4.0",
  973. "webmozart/assert": "^1.0"
  974. },
  975. "require-dev": {
  976. "mockery/mockery": "^0.9.4",
  977. "phpunit/phpunit": "^4.4"
  978. },
  979. "type": "library",
  980. "autoload": {
  981. "psr-4": {
  982. "phpDocumentor\\Reflection\\": [
  983. "src/"
  984. ]
  985. }
  986. },
  987. "notification-url": "https://packagist.org/downloads/",
  988. "license": [
  989. "MIT"
  990. ],
  991. "authors": [
  992. {
  993. "name": "Mike van Riel",
  994. "email": "me@mikevanriel.com"
  995. }
  996. ],
  997. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  998. "time": "2017-11-10T14:09:06+00:00"
  999. },
  1000. {
  1001. "name": "phpdocumentor/type-resolver",
  1002. "version": "0.4.0",
  1003. "source": {
  1004. "type": "git",
  1005. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  1006. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7"
  1007. },
  1008. "dist": {
  1009. "type": "zip",
  1010. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7",
  1011. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7",
  1012. "shasum": ""
  1013. },
  1014. "require": {
  1015. "php": "^5.5 || ^7.0",
  1016. "phpdocumentor/reflection-common": "^1.0"
  1017. },
  1018. "require-dev": {
  1019. "mockery/mockery": "^0.9.4",
  1020. "phpunit/phpunit": "^5.2||^4.8.24"
  1021. },
  1022. "type": "library",
  1023. "extra": {
  1024. "branch-alias": {
  1025. "dev-master": "1.0.x-dev"
  1026. }
  1027. },
  1028. "autoload": {
  1029. "psr-4": {
  1030. "phpDocumentor\\Reflection\\": [
  1031. "src/"
  1032. ]
  1033. }
  1034. },
  1035. "notification-url": "https://packagist.org/downloads/",
  1036. "license": [
  1037. "MIT"
  1038. ],
  1039. "authors": [
  1040. {
  1041. "name": "Mike van Riel",
  1042. "email": "me@mikevanriel.com"
  1043. }
  1044. ],
  1045. "time": "2017-07-14T14:27:02+00:00"
  1046. },
  1047. {
  1048. "name": "phpmd/phpmd",
  1049. "version": "2.6.0",
  1050. "source": {
  1051. "type": "git",
  1052. "url": "https://github.com/phpmd/phpmd.git",
  1053. "reference": "4e9924b2c157a3eb64395460fcf56b31badc8374"
  1054. },
  1055. "dist": {
  1056. "type": "zip",
  1057. "url": "https://api.github.com/repos/phpmd/phpmd/zipball/4e9924b2c157a3eb64395460fcf56b31badc8374",
  1058. "reference": "4e9924b2c157a3eb64395460fcf56b31badc8374",
  1059. "shasum": ""
  1060. },
  1061. "require": {
  1062. "ext-xml": "*",
  1063. "pdepend/pdepend": "^2.5",
  1064. "php": ">=5.3.9"
  1065. },
  1066. "require-dev": {
  1067. "phpunit/phpunit": "^4.0",
  1068. "squizlabs/php_codesniffer": "^2.0"
  1069. },
  1070. "bin": [
  1071. "src/bin/phpmd"
  1072. ],
  1073. "type": "project",
  1074. "autoload": {
  1075. "psr-0": {
  1076. "PHPMD\\": "src/main/php"
  1077. }
  1078. },
  1079. "notification-url": "https://packagist.org/downloads/",
  1080. "license": [
  1081. "BSD-3-Clause"
  1082. ],
  1083. "authors": [
  1084. {
  1085. "name": "Manuel Pichler",
  1086. "email": "github@manuel-pichler.de",
  1087. "homepage": "https://github.com/manuelpichler",
  1088. "role": "Project Founder"
  1089. },
  1090. {
  1091. "name": "Other contributors",
  1092. "homepage": "https://github.com/phpmd/phpmd/graphs/contributors",
  1093. "role": "Contributors"
  1094. },
  1095. {
  1096. "name": "Marc Würth",
  1097. "email": "ravage@bluewin.ch",
  1098. "homepage": "https://github.com/ravage84",
  1099. "role": "Project Maintainer"
  1100. }
  1101. ],
  1102. "description": "PHPMD is a spin-off project of PHP Depend and aims to be a PHP equivalent of the well known Java tool PMD.",
  1103. "homepage": "http://phpmd.org/",
  1104. "keywords": [
  1105. "mess detection",
  1106. "mess detector",
  1107. "pdepend",
  1108. "phpmd",
  1109. "pmd"
  1110. ],
  1111. "time": "2017-01-20T14:41:10+00:00"
  1112. },
  1113. {
  1114. "name": "phpspec/prophecy",
  1115. "version": "1.8.0",
  1116. "source": {
  1117. "type": "git",
  1118. "url": "https://github.com/phpspec/prophecy.git",
  1119. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06"
  1120. },
  1121. "dist": {
  1122. "type": "zip",
  1123. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  1124. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  1125. "shasum": ""
  1126. },
  1127. "require": {
  1128. "doctrine/instantiator": "^1.0.2",
  1129. "php": "^5.3|^7.0",
  1130. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0",
  1131. "sebastian/comparator": "^1.1|^2.0|^3.0",
  1132. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  1133. },
  1134. "require-dev": {
  1135. "phpspec/phpspec": "^2.5|^3.2",
  1136. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  1137. },
  1138. "type": "library",
  1139. "extra": {
  1140. "branch-alias": {
  1141. "dev-master": "1.8.x-dev"
  1142. }
  1143. },
  1144. "autoload": {
  1145. "psr-0": {
  1146. "Prophecy\\": "src/"
  1147. }
  1148. },
  1149. "notification-url": "https://packagist.org/downloads/",
  1150. "license": [
  1151. "MIT"
  1152. ],
  1153. "authors": [
  1154. {
  1155. "name": "Konstantin Kudryashov",
  1156. "email": "ever.zet@gmail.com",
  1157. "homepage": "http://everzet.com"
  1158. },
  1159. {
  1160. "name": "Marcello Duarte",
  1161. "email": "marcello.duarte@gmail.com"
  1162. }
  1163. ],
  1164. "description": "Highly opinionated mocking framework for PHP 5.3+",
  1165. "homepage": "https://github.com/phpspec/prophecy",
  1166. "keywords": [
  1167. "Double",
  1168. "Dummy",
  1169. "fake",
  1170. "mock",
  1171. "spy",
  1172. "stub"
  1173. ],
  1174. "time": "2018-08-05T17:53:17+00:00"
  1175. },
  1176. {
  1177. "name": "phpunit/php-code-coverage",
  1178. "version": "4.0.8",
  1179. "source": {
  1180. "type": "git",
  1181. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  1182. "reference": "ef7b2f56815df854e66ceaee8ebe9393ae36a40d"
  1183. },
  1184. "dist": {
  1185. "type": "zip",
  1186. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/ef7b2f56815df854e66ceaee8ebe9393ae36a40d",
  1187. "reference": "ef7b2f56815df854e66ceaee8ebe9393ae36a40d",
  1188. "shasum": ""
  1189. },
  1190. "require": {
  1191. "ext-dom": "*",
  1192. "ext-xmlwriter": "*",
  1193. "php": "^5.6 || ^7.0",
  1194. "phpunit/php-file-iterator": "^1.3",
  1195. "phpunit/php-text-template": "^1.2",
  1196. "phpunit/php-token-stream": "^1.4.2 || ^2.0",
  1197. "sebastian/code-unit-reverse-lookup": "^1.0",
  1198. "sebastian/environment": "^1.3.2 || ^2.0",
  1199. "sebastian/version": "^1.0 || ^2.0"
  1200. },
  1201. "require-dev": {
  1202. "ext-xdebug": "^2.1.4",
  1203. "phpunit/phpunit": "^5.7"
  1204. },
  1205. "suggest": {
  1206. "ext-xdebug": "^2.5.1"
  1207. },
  1208. "type": "library",
  1209. "extra": {
  1210. "branch-alias": {
  1211. "dev-master": "4.0.x-dev"
  1212. }
  1213. },
  1214. "autoload": {
  1215. "classmap": [
  1216. "src/"
  1217. ]
  1218. },
  1219. "notification-url": "https://packagist.org/downloads/",
  1220. "license": [
  1221. "BSD-3-Clause"
  1222. ],
  1223. "authors": [
  1224. {
  1225. "name": "Sebastian Bergmann",
  1226. "email": "sb@sebastian-bergmann.de",
  1227. "role": "lead"
  1228. }
  1229. ],
  1230. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  1231. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  1232. "keywords": [
  1233. "coverage",
  1234. "testing",
  1235. "xunit"
  1236. ],
  1237. "time": "2017-04-02T07:44:40+00:00"
  1238. },
  1239. {
  1240. "name": "phpunit/php-file-iterator",
  1241. "version": "1.4.5",
  1242. "source": {
  1243. "type": "git",
  1244. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  1245. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
  1246. },
  1247. "dist": {
  1248. "type": "zip",
  1249. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
  1250. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
  1251. "shasum": ""
  1252. },
  1253. "require": {
  1254. "php": ">=5.3.3"
  1255. },
  1256. "type": "library",
  1257. "extra": {
  1258. "branch-alias": {
  1259. "dev-master": "1.4.x-dev"
  1260. }
  1261. },
  1262. "autoload": {
  1263. "classmap": [
  1264. "src/"
  1265. ]
  1266. },
  1267. "notification-url": "https://packagist.org/downloads/",
  1268. "license": [
  1269. "BSD-3-Clause"
  1270. ],
  1271. "authors": [
  1272. {
  1273. "name": "Sebastian Bergmann",
  1274. "email": "sb@sebastian-bergmann.de",
  1275. "role": "lead"
  1276. }
  1277. ],
  1278. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  1279. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  1280. "keywords": [
  1281. "filesystem",
  1282. "iterator"
  1283. ],
  1284. "time": "2017-11-27T13:52:08+00:00"
  1285. },
  1286. {
  1287. "name": "phpunit/php-timer",
  1288. "version": "1.0.9",
  1289. "source": {
  1290. "type": "git",
  1291. "url": "https://github.com/sebastianbergmann/php-timer.git",
  1292. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  1293. },
  1294. "dist": {
  1295. "type": "zip",
  1296. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  1297. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  1298. "shasum": ""
  1299. },
  1300. "require": {
  1301. "php": "^5.3.3 || ^7.0"
  1302. },
  1303. "require-dev": {
  1304. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  1305. },
  1306. "type": "library",
  1307. "extra": {
  1308. "branch-alias": {
  1309. "dev-master": "1.0-dev"
  1310. }
  1311. },
  1312. "autoload": {
  1313. "classmap": [
  1314. "src/"
  1315. ]
  1316. },
  1317. "notification-url": "https://packagist.org/downloads/",
  1318. "license": [
  1319. "BSD-3-Clause"
  1320. ],
  1321. "authors": [
  1322. {
  1323. "name": "Sebastian Bergmann",
  1324. "email": "sb@sebastian-bergmann.de",
  1325. "role": "lead"
  1326. }
  1327. ],
  1328. "description": "Utility class for timing",
  1329. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  1330. "keywords": [
  1331. "timer"
  1332. ],
  1333. "time": "2017-02-26T11:10:40+00:00"
  1334. },
  1335. {
  1336. "name": "phpunit/php-token-stream",
  1337. "version": "1.4.12",
  1338. "source": {
  1339. "type": "git",
  1340. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  1341. "reference": "1ce90ba27c42e4e44e6d8458241466380b51fa16"
  1342. },
  1343. "dist": {
  1344. "type": "zip",
  1345. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/1ce90ba27c42e4e44e6d8458241466380b51fa16",
  1346. "reference": "1ce90ba27c42e4e44e6d8458241466380b51fa16",
  1347. "shasum": ""
  1348. },
  1349. "require": {
  1350. "ext-tokenizer": "*",
  1351. "php": ">=5.3.3"
  1352. },
  1353. "require-dev": {
  1354. "phpunit/phpunit": "~4.2"
  1355. },
  1356. "type": "library",
  1357. "extra": {
  1358. "branch-alias": {
  1359. "dev-master": "1.4-dev"
  1360. }
  1361. },
  1362. "autoload": {
  1363. "classmap": [
  1364. "src/"
  1365. ]
  1366. },
  1367. "notification-url": "https://packagist.org/downloads/",
  1368. "license": [
  1369. "BSD-3-Clause"
  1370. ],
  1371. "authors": [
  1372. {
  1373. "name": "Sebastian Bergmann",
  1374. "email": "sebastian@phpunit.de"
  1375. }
  1376. ],
  1377. "description": "Wrapper around PHP's tokenizer extension.",
  1378. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  1379. "keywords": [
  1380. "tokenizer"
  1381. ],
  1382. "time": "2017-12-04T08:55:13+00:00"
  1383. },
  1384. {
  1385. "name": "phpunit/phpcov",
  1386. "version": "3.1.0",
  1387. "source": {
  1388. "type": "git",
  1389. "url": "https://github.com/sebastianbergmann/phpcov.git",
  1390. "reference": "2005bd90c2c8aae6d93ec82d9cda9d55dca96c3d"
  1391. },
  1392. "dist": {
  1393. "type": "zip",
  1394. "url": "https://api.github.com/repos/sebastianbergmann/phpcov/zipball/2005bd90c2c8aae6d93ec82d9cda9d55dca96c3d",
  1395. "reference": "2005bd90c2c8aae6d93ec82d9cda9d55dca96c3d",
  1396. "shasum": ""
  1397. },
  1398. "require": {
  1399. "php": "^5.6 || ^7.0",
  1400. "phpunit/php-code-coverage": "^4.0",
  1401. "phpunit/phpunit": "^5.0",
  1402. "sebastian/diff": "^1.1",
  1403. "sebastian/finder-facade": "^1.1",
  1404. "sebastian/version": "^1.0|^2.0",
  1405. "symfony/console": "^2|^3"
  1406. },
  1407. "bin": [
  1408. "phpcov"
  1409. ],
  1410. "type": "library",
  1411. "extra": {
  1412. "branch-alias": {
  1413. "dev-master": "3.1.x-dev"
  1414. }
  1415. },
  1416. "autoload": {
  1417. "classmap": [
  1418. "src/"
  1419. ]
  1420. },
  1421. "notification-url": "https://packagist.org/downloads/",
  1422. "license": [
  1423. "BSD-3-Clause"
  1424. ],
  1425. "authors": [
  1426. {
  1427. "name": "Sebastian Bergmann",
  1428. "email": "sebastian@phpunit.de",
  1429. "role": "lead"
  1430. }
  1431. ],
  1432. "description": "CLI frontend for PHP_CodeCoverage",
  1433. "homepage": "https://github.com/sebastianbergmann/phpcov",
  1434. "time": "2016-06-03T07:01:55+00:00"
  1435. },
  1436. {
  1437. "name": "phpunit/phpunit",
  1438. "version": "5.7.27",
  1439. "source": {
  1440. "type": "git",
  1441. "url": "https://github.com/sebastianbergmann/phpunit.git",
  1442. "reference": "b7803aeca3ccb99ad0a506fa80b64cd6a56bbc0c"
  1443. },
  1444. "dist": {
  1445. "type": "zip",
  1446. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/b7803aeca3ccb99ad0a506fa80b64cd6a56bbc0c",
  1447. "reference": "b7803aeca3ccb99ad0a506fa80b64cd6a56bbc0c",
  1448. "shasum": ""
  1449. },
  1450. "require": {
  1451. "ext-dom": "*",
  1452. "ext-json": "*",
  1453. "ext-libxml": "*",
  1454. "ext-mbstring": "*",
  1455. "ext-xml": "*",
  1456. "myclabs/deep-copy": "~1.3",
  1457. "php": "^5.6 || ^7.0",
  1458. "phpspec/prophecy": "^1.6.2",
  1459. "phpunit/php-code-coverage": "^4.0.4",
  1460. "phpunit/php-file-iterator": "~1.4",
  1461. "phpunit/php-text-template": "~1.2",
  1462. "phpunit/php-timer": "^1.0.6",
  1463. "phpunit/phpunit-mock-objects": "^3.2",
  1464. "sebastian/comparator": "^1.2.4",
  1465. "sebastian/diff": "^1.4.3",
  1466. "sebastian/environment": "^1.3.4 || ^2.0",
  1467. "sebastian/exporter": "~2.0",
  1468. "sebastian/global-state": "^1.1",
  1469. "sebastian/object-enumerator": "~2.0",
  1470. "sebastian/resource-operations": "~1.0",
  1471. "sebastian/version": "^1.0.6|^2.0.1",
  1472. "symfony/yaml": "~2.1|~3.0|~4.0"
  1473. },
  1474. "conflict": {
  1475. "phpdocumentor/reflection-docblock": "3.0.2"
  1476. },
  1477. "require-dev": {
  1478. "ext-pdo": "*"
  1479. },
  1480. "suggest": {
  1481. "ext-xdebug": "*",
  1482. "phpunit/php-invoker": "~1.1"
  1483. },
  1484. "bin": [
  1485. "phpunit"
  1486. ],
  1487. "type": "library",
  1488. "extra": {
  1489. "branch-alias": {
  1490. "dev-master": "5.7.x-dev"
  1491. }
  1492. },
  1493. "autoload": {
  1494. "classmap": [
  1495. "src/"
  1496. ]
  1497. },
  1498. "notification-url": "https://packagist.org/downloads/",
  1499. "license": [
  1500. "BSD-3-Clause"
  1501. ],
  1502. "authors": [
  1503. {
  1504. "name": "Sebastian Bergmann",
  1505. "email": "sebastian@phpunit.de",
  1506. "role": "lead"
  1507. }
  1508. ],
  1509. "description": "The PHP Unit Testing framework.",
  1510. "homepage": "https://phpunit.de/",
  1511. "keywords": [
  1512. "phpunit",
  1513. "testing",
  1514. "xunit"
  1515. ],
  1516. "time": "2018-02-01T05:50:59+00:00"
  1517. },
  1518. {
  1519. "name": "phpunit/phpunit-mock-objects",
  1520. "version": "3.4.4",
  1521. "source": {
  1522. "type": "git",
  1523. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  1524. "reference": "a23b761686d50a560cc56233b9ecf49597cc9118"
  1525. },
  1526. "dist": {
  1527. "type": "zip",
  1528. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/a23b761686d50a560cc56233b9ecf49597cc9118",
  1529. "reference": "a23b761686d50a560cc56233b9ecf49597cc9118",
  1530. "shasum": ""
  1531. },
  1532. "require": {
  1533. "doctrine/instantiator": "^1.0.2",
  1534. "php": "^5.6 || ^7.0",
  1535. "phpunit/php-text-template": "^1.2",
  1536. "sebastian/exporter": "^1.2 || ^2.0"
  1537. },
  1538. "conflict": {
  1539. "phpunit/phpunit": "<5.4.0"
  1540. },
  1541. "require-dev": {
  1542. "phpunit/phpunit": "^5.4"
  1543. },
  1544. "suggest": {
  1545. "ext-soap": "*"
  1546. },
  1547. "type": "library",
  1548. "extra": {
  1549. "branch-alias": {
  1550. "dev-master": "3.2.x-dev"
  1551. }
  1552. },
  1553. "autoload": {
  1554. "classmap": [
  1555. "src/"
  1556. ]
  1557. },
  1558. "notification-url": "https://packagist.org/downloads/",
  1559. "license": [
  1560. "BSD-3-Clause"
  1561. ],
  1562. "authors": [
  1563. {
  1564. "name": "Sebastian Bergmann",
  1565. "email": "sb@sebastian-bergmann.de",
  1566. "role": "lead"
  1567. }
  1568. ],
  1569. "description": "Mock Object library for PHPUnit",
  1570. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  1571. "keywords": [
  1572. "mock",
  1573. "xunit"
  1574. ],
  1575. "time": "2017-06-30T09:13:00+00:00"
  1576. },
  1577. {
  1578. "name": "sebastian/code-unit-reverse-lookup",
  1579. "version": "1.0.1",
  1580. "source": {
  1581. "type": "git",
  1582. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  1583. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  1584. },
  1585. "dist": {
  1586. "type": "zip",
  1587. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  1588. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  1589. "shasum": ""
  1590. },
  1591. "require": {
  1592. "php": "^5.6 || ^7.0"
  1593. },
  1594. "require-dev": {
  1595. "phpunit/phpunit": "^5.7 || ^6.0"
  1596. },
  1597. "type": "library",
  1598. "extra": {
  1599. "branch-alias": {
  1600. "dev-master": "1.0.x-dev"
  1601. }
  1602. },
  1603. "autoload": {
  1604. "classmap": [
  1605. "src/"
  1606. ]
  1607. },
  1608. "notification-url": "https://packagist.org/downloads/",
  1609. "license": [
  1610. "BSD-3-Clause"
  1611. ],
  1612. "authors": [
  1613. {
  1614. "name": "Sebastian Bergmann",
  1615. "email": "sebastian@phpunit.de"
  1616. }
  1617. ],
  1618. "description": "Looks up which function or method a line of code belongs to",
  1619. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  1620. "time": "2017-03-04T06:30:41+00:00"
  1621. },
  1622. {
  1623. "name": "sebastian/comparator",
  1624. "version": "1.2.4",
  1625. "source": {
  1626. "type": "git",
  1627. "url": "https://github.com/sebastianbergmann/comparator.git",
  1628. "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be"
  1629. },
  1630. "dist": {
  1631. "type": "zip",
  1632. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2b7424b55f5047b47ac6e5ccb20b2aea4011d9be",
  1633. "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be",
  1634. "shasum": ""
  1635. },
  1636. "require": {
  1637. "php": ">=5.3.3",
  1638. "sebastian/diff": "~1.2",
  1639. "sebastian/exporter": "~1.2 || ~2.0"
  1640. },
  1641. "require-dev": {
  1642. "phpunit/phpunit": "~4.4"
  1643. },
  1644. "type": "library",
  1645. "extra": {
  1646. "branch-alias": {
  1647. "dev-master": "1.2.x-dev"
  1648. }
  1649. },
  1650. "autoload": {
  1651. "classmap": [
  1652. "src/"
  1653. ]
  1654. },
  1655. "notification-url": "https://packagist.org/downloads/",
  1656. "license": [
  1657. "BSD-3-Clause"
  1658. ],
  1659. "authors": [
  1660. {
  1661. "name": "Jeff Welch",
  1662. "email": "whatthejeff@gmail.com"
  1663. },
  1664. {
  1665. "name": "Volker Dusch",
  1666. "email": "github@wallbash.com"
  1667. },
  1668. {
  1669. "name": "Bernhard Schussek",
  1670. "email": "bschussek@2bepublished.at"
  1671. },
  1672. {
  1673. "name": "Sebastian Bergmann",
  1674. "email": "sebastian@phpunit.de"
  1675. }
  1676. ],
  1677. "description": "Provides the functionality to compare PHP values for equality",
  1678. "homepage": "http://www.github.com/sebastianbergmann/comparator",
  1679. "keywords": [
  1680. "comparator",
  1681. "compare",
  1682. "equality"
  1683. ],
  1684. "time": "2017-01-29T09:50:25+00:00"
  1685. },
  1686. {
  1687. "name": "sebastian/diff",
  1688. "version": "1.4.3",
  1689. "source": {
  1690. "type": "git",
  1691. "url": "https://github.com/sebastianbergmann/diff.git",
  1692. "reference": "7f066a26a962dbe58ddea9f72a4e82874a3975a4"
  1693. },
  1694. "dist": {
  1695. "type": "zip",
  1696. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/7f066a26a962dbe58ddea9f72a4e82874a3975a4",
  1697. "reference": "7f066a26a962dbe58ddea9f72a4e82874a3975a4",
  1698. "shasum": ""
  1699. },
  1700. "require": {
  1701. "php": "^5.3.3 || ^7.0"
  1702. },
  1703. "require-dev": {
  1704. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  1705. },
  1706. "type": "library",
  1707. "extra": {
  1708. "branch-alias": {
  1709. "dev-master": "1.4-dev"
  1710. }
  1711. },
  1712. "autoload": {
  1713. "classmap": [
  1714. "src/"
  1715. ]
  1716. },
  1717. "notification-url": "https://packagist.org/downloads/",
  1718. "license": [
  1719. "BSD-3-Clause"
  1720. ],
  1721. "authors": [
  1722. {
  1723. "name": "Kore Nordmann",
  1724. "email": "mail@kore-nordmann.de"
  1725. },
  1726. {
  1727. "name": "Sebastian Bergmann",
  1728. "email": "sebastian@phpunit.de"
  1729. }
  1730. ],
  1731. "description": "Diff implementation",
  1732. "homepage": "https://github.com/sebastianbergmann/diff",
  1733. "keywords": [
  1734. "diff"
  1735. ],
  1736. "time": "2017-05-22T07:24:03+00:00"
  1737. },
  1738. {
  1739. "name": "sebastian/environment",
  1740. "version": "2.0.0",
  1741. "source": {
  1742. "type": "git",
  1743. "url": "https://github.com/sebastianbergmann/environment.git",
  1744. "reference": "5795ffe5dc5b02460c3e34222fee8cbe245d8fac"
  1745. },
  1746. "dist": {
  1747. "type": "zip",
  1748. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/5795ffe5dc5b02460c3e34222fee8cbe245d8fac",
  1749. "reference": "5795ffe5dc5b02460c3e34222fee8cbe245d8fac",
  1750. "shasum": ""
  1751. },
  1752. "require": {
  1753. "php": "^5.6 || ^7.0"
  1754. },
  1755. "require-dev": {
  1756. "phpunit/phpunit": "^5.0"
  1757. },
  1758. "type": "library",
  1759. "extra": {
  1760. "branch-alias": {
  1761. "dev-master": "2.0.x-dev"
  1762. }
  1763. },
  1764. "autoload": {
  1765. "classmap": [
  1766. "src/"
  1767. ]
  1768. },
  1769. "notification-url": "https://packagist.org/downloads/",
  1770. "license": [
  1771. "BSD-3-Clause"
  1772. ],
  1773. "authors": [
  1774. {
  1775. "name": "Sebastian Bergmann",
  1776. "email": "sebastian@phpunit.de"
  1777. }
  1778. ],
  1779. "description": "Provides functionality to handle HHVM/PHP environments",
  1780. "homepage": "http://www.github.com/sebastianbergmann/environment",
  1781. "keywords": [
  1782. "Xdebug",
  1783. "environment",
  1784. "hhvm"
  1785. ],
  1786. "time": "2016-11-26T07:53:53+00:00"
  1787. },
  1788. {
  1789. "name": "sebastian/exporter",
  1790. "version": "2.0.0",
  1791. "source": {
  1792. "type": "git",
  1793. "url": "https://github.com/sebastianbergmann/exporter.git",
  1794. "reference": "ce474bdd1a34744d7ac5d6aad3a46d48d9bac4c4"
  1795. },
  1796. "dist": {
  1797. "type": "zip",
  1798. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ce474bdd1a34744d7ac5d6aad3a46d48d9bac4c4",
  1799. "reference": "ce474bdd1a34744d7ac5d6aad3a46d48d9bac4c4",
  1800. "shasum": ""
  1801. },
  1802. "require": {
  1803. "php": ">=5.3.3",
  1804. "sebastian/recursion-context": "~2.0"
  1805. },
  1806. "require-dev": {
  1807. "ext-mbstring": "*",
  1808. "phpunit/phpunit": "~4.4"
  1809. },
  1810. "type": "library",
  1811. "extra": {
  1812. "branch-alias": {
  1813. "dev-master": "2.0.x-dev"
  1814. }
  1815. },
  1816. "autoload": {
  1817. "classmap": [
  1818. "src/"
  1819. ]
  1820. },
  1821. "notification-url": "https://packagist.org/downloads/",
  1822. "license": [
  1823. "BSD-3-Clause"
  1824. ],
  1825. "authors": [
  1826. {
  1827. "name": "Jeff Welch",
  1828. "email": "whatthejeff@gmail.com"
  1829. },
  1830. {
  1831. "name": "Volker Dusch",
  1832. "email": "github@wallbash.com"
  1833. },
  1834. {
  1835. "name": "Bernhard Schussek",
  1836. "email": "bschussek@2bepublished.at"
  1837. },
  1838. {
  1839. "name": "Sebastian Bergmann",
  1840. "email": "sebastian@phpunit.de"
  1841. },
  1842. {
  1843. "name": "Adam Harvey",
  1844. "email": "aharvey@php.net"
  1845. }
  1846. ],
  1847. "description": "Provides the functionality to export PHP variables for visualization",
  1848. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  1849. "keywords": [
  1850. "export",
  1851. "exporter"
  1852. ],
  1853. "time": "2016-11-19T08:54:04+00:00"
  1854. },
  1855. {
  1856. "name": "sebastian/finder-facade",
  1857. "version": "1.2.2",
  1858. "source": {
  1859. "type": "git",
  1860. "url": "https://github.com/sebastianbergmann/finder-facade.git",
  1861. "reference": "4a3174709c2dc565fe5fb26fcf827f6a1fc7b09f"
  1862. },
  1863. "dist": {
  1864. "type": "zip",
  1865. "url": "https://api.github.com/repos/sebastianbergmann/finder-facade/zipball/4a3174709c2dc565fe5fb26fcf827f6a1fc7b09f",
  1866. "reference": "4a3174709c2dc565fe5fb26fcf827f6a1fc7b09f",
  1867. "shasum": ""
  1868. },
  1869. "require": {
  1870. "symfony/finder": "~2.3|~3.0|~4.0",
  1871. "theseer/fdomdocument": "~1.3"
  1872. },
  1873. "type": "library",
  1874. "autoload": {
  1875. "classmap": [
  1876. "src/"
  1877. ]
  1878. },
  1879. "notification-url": "https://packagist.org/downloads/",
  1880. "license": [
  1881. "BSD-3-Clause"
  1882. ],
  1883. "authors": [
  1884. {
  1885. "name": "Sebastian Bergmann",
  1886. "email": "sebastian@phpunit.de",
  1887. "role": "lead"
  1888. }
  1889. ],
  1890. "description": "FinderFacade is a convenience wrapper for Symfony's Finder component.",
  1891. "homepage": "https://github.com/sebastianbergmann/finder-facade",
  1892. "time": "2017-11-18T17:31:49+00:00"
  1893. },
  1894. {
  1895. "name": "sebastian/global-state",
  1896. "version": "1.1.1",
  1897. "source": {
  1898. "type": "git",
  1899. "url": "https://github.com/sebastianbergmann/global-state.git",
  1900. "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4"
  1901. },
  1902. "dist": {
  1903. "type": "zip",
  1904. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bc37d50fea7d017d3d340f230811c9f1d7280af4",
  1905. "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4",
  1906. "shasum": ""
  1907. },
  1908. "require": {
  1909. "php": ">=5.3.3"
  1910. },
  1911. "require-dev": {
  1912. "phpunit/phpunit": "~4.2"
  1913. },
  1914. "suggest": {
  1915. "ext-uopz": "*"
  1916. },
  1917. "type": "library",
  1918. "extra": {
  1919. "branch-alias": {
  1920. "dev-master": "1.0-dev"
  1921. }
  1922. },
  1923. "autoload": {
  1924. "classmap": [
  1925. "src/"
  1926. ]
  1927. },
  1928. "notification-url": "https://packagist.org/downloads/",
  1929. "license": [
  1930. "BSD-3-Clause"
  1931. ],
  1932. "authors": [
  1933. {
  1934. "name": "Sebastian Bergmann",
  1935. "email": "sebastian@phpunit.de"
  1936. }
  1937. ],
  1938. "description": "Snapshotting of global state",
  1939. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  1940. "keywords": [
  1941. "global state"
  1942. ],
  1943. "time": "2015-10-12T03:26:01+00:00"
  1944. },
  1945. {
  1946. "name": "sebastian/object-enumerator",
  1947. "version": "2.0.1",
  1948. "source": {
  1949. "type": "git",
  1950. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  1951. "reference": "1311872ac850040a79c3c058bea3e22d0f09cbb7"
  1952. },
  1953. "dist": {
  1954. "type": "zip",
  1955. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/1311872ac850040a79c3c058bea3e22d0f09cbb7",
  1956. "reference": "1311872ac850040a79c3c058bea3e22d0f09cbb7",
  1957. "shasum": ""
  1958. },
  1959. "require": {
  1960. "php": ">=5.6",
  1961. "sebastian/recursion-context": "~2.0"
  1962. },
  1963. "require-dev": {
  1964. "phpunit/phpunit": "~5"
  1965. },
  1966. "type": "library",
  1967. "extra": {
  1968. "branch-alias": {
  1969. "dev-master": "2.0.x-dev"
  1970. }
  1971. },
  1972. "autoload": {
  1973. "classmap": [
  1974. "src/"
  1975. ]
  1976. },
  1977. "notification-url": "https://packagist.org/downloads/",
  1978. "license": [
  1979. "BSD-3-Clause"
  1980. ],
  1981. "authors": [
  1982. {
  1983. "name": "Sebastian Bergmann",
  1984. "email": "sebastian@phpunit.de"
  1985. }
  1986. ],
  1987. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  1988. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  1989. "time": "2017-02-18T15:18:39+00:00"
  1990. },
  1991. {
  1992. "name": "sebastian/phpcpd",
  1993. "version": "3.0.1",
  1994. "source": {
  1995. "type": "git",
  1996. "url": "https://github.com/sebastianbergmann/phpcpd.git",
  1997. "reference": "dfed51c1288790fc957c9433e2f49ab152e8a564"
  1998. },
  1999. "dist": {
  2000. "type": "zip",
  2001. "url": "https://api.github.com/repos/sebastianbergmann/phpcpd/zipball/dfed51c1288790fc957c9433e2f49ab152e8a564",
  2002. "reference": "dfed51c1288790fc957c9433e2f49ab152e8a564",
  2003. "shasum": ""
  2004. },
  2005. "require": {
  2006. "php": "^5.6|^7.0",
  2007. "phpunit/php-timer": "^1.0.6",
  2008. "sebastian/finder-facade": "^1.1",
  2009. "sebastian/version": "^1.0|^2.0",
  2010. "symfony/console": "^2.7|^3.0|^4.0"
  2011. },
  2012. "bin": [
  2013. "phpcpd"
  2014. ],
  2015. "type": "library",
  2016. "extra": {
  2017. "branch-alias": {
  2018. "dev-master": "3.0-dev"
  2019. }
  2020. },
  2021. "autoload": {
  2022. "classmap": [
  2023. "src/"
  2024. ]
  2025. },
  2026. "notification-url": "https://packagist.org/downloads/",
  2027. "license": [
  2028. "BSD-3-Clause"
  2029. ],
  2030. "authors": [
  2031. {
  2032. "name": "Sebastian Bergmann",
  2033. "email": "sebastian@phpunit.de",
  2034. "role": "lead"
  2035. }
  2036. ],
  2037. "description": "Copy/Paste Detector (CPD) for PHP code.",
  2038. "homepage": "https://github.com/sebastianbergmann/phpcpd",
  2039. "time": "2017-11-16T08:49:28+00:00"
  2040. },
  2041. {
  2042. "name": "sebastian/recursion-context",
  2043. "version": "2.0.0",
  2044. "source": {
  2045. "type": "git",
  2046. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  2047. "reference": "2c3ba150cbec723aa057506e73a8d33bdb286c9a"
  2048. },
  2049. "dist": {
  2050. "type": "zip",
  2051. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/2c3ba150cbec723aa057506e73a8d33bdb286c9a",
  2052. "reference": "2c3ba150cbec723aa057506e73a8d33bdb286c9a",
  2053. "shasum": ""
  2054. },
  2055. "require": {
  2056. "php": ">=5.3.3"
  2057. },
  2058. "require-dev": {
  2059. "phpunit/phpunit": "~4.4"
  2060. },
  2061. "type": "library",
  2062. "extra": {
  2063. "branch-alias": {
  2064. "dev-master": "2.0.x-dev"
  2065. }
  2066. },
  2067. "autoload": {
  2068. "classmap": [
  2069. "src/"
  2070. ]
  2071. },
  2072. "notification-url": "https://packagist.org/downloads/",
  2073. "license": [
  2074. "BSD-3-Clause"
  2075. ],
  2076. "authors": [
  2077. {
  2078. "name": "Jeff Welch",
  2079. "email": "whatthejeff@gmail.com"
  2080. },
  2081. {
  2082. "name": "Sebastian Bergmann",
  2083. "email": "sebastian@phpunit.de"
  2084. },
  2085. {
  2086. "name": "Adam Harvey",
  2087. "email": "aharvey@php.net"
  2088. }
  2089. ],
  2090. "description": "Provides functionality to recursively process PHP variables",
  2091. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  2092. "time": "2016-11-19T07:33:16+00:00"
  2093. },
  2094. {
  2095. "name": "sebastian/resource-operations",
  2096. "version": "1.0.0",
  2097. "source": {
  2098. "type": "git",
  2099. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  2100. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
  2101. },
  2102. "dist": {
  2103. "type": "zip",
  2104. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  2105. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  2106. "shasum": ""
  2107. },
  2108. "require": {
  2109. "php": ">=5.6.0"
  2110. },
  2111. "type": "library",
  2112. "extra": {
  2113. "branch-alias": {
  2114. "dev-master": "1.0.x-dev"
  2115. }
  2116. },
  2117. "autoload": {
  2118. "classmap": [
  2119. "src/"
  2120. ]
  2121. },
  2122. "notification-url": "https://packagist.org/downloads/",
  2123. "license": [
  2124. "BSD-3-Clause"
  2125. ],
  2126. "authors": [
  2127. {
  2128. "name": "Sebastian Bergmann",
  2129. "email": "sebastian@phpunit.de"
  2130. }
  2131. ],
  2132. "description": "Provides a list of PHP built-in functions that operate on resources",
  2133. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  2134. "time": "2015-07-28T20:34:47+00:00"
  2135. },
  2136. {
  2137. "name": "sebastian/version",
  2138. "version": "2.0.1",
  2139. "source": {
  2140. "type": "git",
  2141. "url": "https://github.com/sebastianbergmann/version.git",
  2142. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  2143. },
  2144. "dist": {
  2145. "type": "zip",
  2146. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  2147. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  2148. "shasum": ""
  2149. },
  2150. "require": {
  2151. "php": ">=5.6"
  2152. },
  2153. "type": "library",
  2154. "extra": {
  2155. "branch-alias": {
  2156. "dev-master": "2.0.x-dev"
  2157. }
  2158. },
  2159. "autoload": {
  2160. "classmap": [
  2161. "src/"
  2162. ]
  2163. },
  2164. "notification-url": "https://packagist.org/downloads/",
  2165. "license": [
  2166. "BSD-3-Clause"
  2167. ],
  2168. "authors": [
  2169. {
  2170. "name": "Sebastian Bergmann",
  2171. "email": "sebastian@phpunit.de",
  2172. "role": "lead"
  2173. }
  2174. ],
  2175. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  2176. "homepage": "https://github.com/sebastianbergmann/version",
  2177. "time": "2016-10-03T07:35:21+00:00"
  2178. },
  2179. {
  2180. "name": "squizlabs/php_codesniffer",
  2181. "version": "2.9.1",
  2182. "source": {
  2183. "type": "git",
  2184. "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
  2185. "reference": "dcbed1074f8244661eecddfc2a675430d8d33f62"
  2186. },
  2187. "dist": {
  2188. "type": "zip",
  2189. "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/dcbed1074f8244661eecddfc2a675430d8d33f62",
  2190. "reference": "dcbed1074f8244661eecddfc2a675430d8d33f62",
  2191. "shasum": ""
  2192. },
  2193. "require": {
  2194. "ext-simplexml": "*",
  2195. "ext-tokenizer": "*",
  2196. "ext-xmlwriter": "*",
  2197. "php": ">=5.1.2"
  2198. },
  2199. "require-dev": {
  2200. "phpunit/phpunit": "~4.0"
  2201. },
  2202. "bin": [
  2203. "scripts/phpcs",
  2204. "scripts/phpcbf"
  2205. ],
  2206. "type": "library",
  2207. "extra": {
  2208. "branch-alias": {
  2209. "dev-master": "2.x-dev"
  2210. }
  2211. },
  2212. "autoload": {
  2213. "classmap": [
  2214. "CodeSniffer.php",
  2215. "CodeSniffer/CLI.php",
  2216. "CodeSniffer/Exception.php",
  2217. "CodeSniffer/File.php",
  2218. "CodeSniffer/Fixer.php",
  2219. "CodeSniffer/Report.php",
  2220. "CodeSniffer/Reporting.php",
  2221. "CodeSniffer/Sniff.php",
  2222. "CodeSniffer/Tokens.php",
  2223. "CodeSniffer/Reports/",
  2224. "CodeSniffer/Tokenizers/",
  2225. "CodeSniffer/DocGenerators/",
  2226. "CodeSniffer/Standards/AbstractPatternSniff.php",
  2227. "CodeSniffer/Standards/AbstractScopeSniff.php",
  2228. "CodeSniffer/Standards/AbstractVariableSniff.php",
  2229. "CodeSniffer/Standards/IncorrectPatternException.php",
  2230. "CodeSniffer/Standards/Generic/Sniffs/",
  2231. "CodeSniffer/Standards/MySource/Sniffs/",
  2232. "CodeSniffer/Standards/PEAR/Sniffs/",
  2233. "CodeSniffer/Standards/PSR1/Sniffs/",
  2234. "CodeSniffer/Standards/PSR2/Sniffs/",
  2235. "CodeSniffer/Standards/Squiz/Sniffs/",
  2236. "CodeSniffer/Standards/Zend/Sniffs/"
  2237. ]
  2238. },
  2239. "notification-url": "https://packagist.org/downloads/",
  2240. "license": [
  2241. "BSD-3-Clause"
  2242. ],
  2243. "authors": [
  2244. {
  2245. "name": "Greg Sherwood",
  2246. "role": "lead"
  2247. }
  2248. ],
  2249. "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
  2250. "homepage": "http://www.squizlabs.com/php-codesniffer",
  2251. "keywords": [
  2252. "phpcs",
  2253. "standards"
  2254. ],
  2255. "time": "2017-05-22T02:43:20+00:00"
  2256. },
  2257. {
  2258. "name": "symfony/config",
  2259. "version": "v3.4.17",
  2260. "source": {
  2261. "type": "git",
  2262. "url": "https://github.com/symfony/config.git",
  2263. "reference": "e5389132dc6320682de3643091121c048ff796b3"
  2264. },
  2265. "dist": {
  2266. "type": "zip",
  2267. "url": "https://api.github.com/repos/symfony/config/zipball/e5389132dc6320682de3643091121c048ff796b3",
  2268. "reference": "e5389132dc6320682de3643091121c048ff796b3",
  2269. "shasum": ""
  2270. },
  2271. "require": {
  2272. "php": "^5.5.9|>=7.0.8",
  2273. "symfony/filesystem": "~2.8|~3.0|~4.0",
  2274. "symfony/polyfill-ctype": "~1.8"
  2275. },
  2276. "conflict": {
  2277. "symfony/dependency-injection": "<3.3",
  2278. "symfony/finder": "<3.3"
  2279. },
  2280. "require-dev": {
  2281. "symfony/dependency-injection": "~3.3|~4.0",
  2282. "symfony/event-dispatcher": "~3.3|~4.0",
  2283. "symfony/finder": "~3.3|~4.0",
  2284. "symfony/yaml": "~3.0|~4.0"
  2285. },
  2286. "suggest": {
  2287. "symfony/yaml": "To use the yaml reference dumper"
  2288. },
  2289. "type": "library",
  2290. "extra": {
  2291. "branch-alias": {
  2292. "dev-master": "3.4-dev"
  2293. }
  2294. },
  2295. "autoload": {
  2296. "psr-4": {
  2297. "Symfony\\Component\\Config\\": ""
  2298. },
  2299. "exclude-from-classmap": [
  2300. "/Tests/"
  2301. ]
  2302. },
  2303. "notification-url": "https://packagist.org/downloads/",
  2304. "license": [
  2305. "MIT"
  2306. ],
  2307. "authors": [
  2308. {
  2309. "name": "Fabien Potencier",
  2310. "email": "fabien@symfony.com"
  2311. },
  2312. {
  2313. "name": "Symfony Community",
  2314. "homepage": "https://symfony.com/contributors"
  2315. }
  2316. ],
  2317. "description": "Symfony Config Component",
  2318. "homepage": "https://symfony.com",
  2319. "time": "2018-09-08T13:15:14+00:00"
  2320. },
  2321. {
  2322. "name": "symfony/console",
  2323. "version": "v3.4.17",
  2324. "source": {
  2325. "type": "git",
  2326. "url": "https://github.com/symfony/console.git",
  2327. "reference": "3b2b415d4c48fbefca7dc742aa0a0171bfae4e0b"
  2328. },
  2329. "dist": {
  2330. "type": "zip",
  2331. "url": "https://api.github.com/repos/symfony/console/zipball/3b2b415d4c48fbefca7dc742aa0a0171bfae4e0b",
  2332. "reference": "3b2b415d4c48fbefca7dc742aa0a0171bfae4e0b",
  2333. "shasum": ""
  2334. },
  2335. "require": {
  2336. "php": "^5.5.9|>=7.0.8",
  2337. "symfony/debug": "~2.8|~3.0|~4.0",
  2338. "symfony/polyfill-mbstring": "~1.0"
  2339. },
  2340. "conflict": {
  2341. "symfony/dependency-injection": "<3.4",
  2342. "symfony/process": "<3.3"
  2343. },
  2344. "require-dev": {
  2345. "psr/log": "~1.0",
  2346. "symfony/config": "~3.3|~4.0",
  2347. "symfony/dependency-injection": "~3.4|~4.0",
  2348. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  2349. "symfony/lock": "~3.4|~4.0",
  2350. "symfony/process": "~3.3|~4.0"
  2351. },
  2352. "suggest": {
  2353. "psr/log-implementation": "For using the console logger",
  2354. "symfony/event-dispatcher": "",
  2355. "symfony/lock": "",
  2356. "symfony/process": ""
  2357. },
  2358. "type": "library",
  2359. "extra": {
  2360. "branch-alias": {
  2361. "dev-master": "3.4-dev"
  2362. }
  2363. },
  2364. "autoload": {
  2365. "psr-4": {
  2366. "Symfony\\Component\\Console\\": ""
  2367. },
  2368. "exclude-from-classmap": [
  2369. "/Tests/"
  2370. ]
  2371. },
  2372. "notification-url": "https://packagist.org/downloads/",
  2373. "license": [
  2374. "MIT"
  2375. ],
  2376. "authors": [
  2377. {
  2378. "name": "Fabien Potencier",
  2379. "email": "fabien@symfony.com"
  2380. },
  2381. {
  2382. "name": "Symfony Community",
  2383. "homepage": "https://symfony.com/contributors"
  2384. }
  2385. ],
  2386. "description": "Symfony Console Component",
  2387. "homepage": "https://symfony.com",
  2388. "time": "2018-10-02T16:33:53+00:00"
  2389. },
  2390. {
  2391. "name": "symfony/debug",
  2392. "version": "v3.4.17",
  2393. "source": {
  2394. "type": "git",
  2395. "url": "https://github.com/symfony/debug.git",
  2396. "reference": "0a612e9dfbd2ccce03eb174365f31ecdca930ff6"
  2397. },
  2398. "dist": {
  2399. "type": "zip",
  2400. "url": "https://api.github.com/repos/symfony/debug/zipball/0a612e9dfbd2ccce03eb174365f31ecdca930ff6",
  2401. "reference": "0a612e9dfbd2ccce03eb174365f31ecdca930ff6",
  2402. "shasum": ""
  2403. },
  2404. "require": {
  2405. "php": "^5.5.9|>=7.0.8",
  2406. "psr/log": "~1.0"
  2407. },
  2408. "conflict": {
  2409. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  2410. },
  2411. "require-dev": {
  2412. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  2413. },
  2414. "type": "library",
  2415. "extra": {
  2416. "branch-alias": {
  2417. "dev-master": "3.4-dev"
  2418. }
  2419. },
  2420. "autoload": {
  2421. "psr-4": {
  2422. "Symfony\\Component\\Debug\\": ""
  2423. },
  2424. "exclude-from-classmap": [
  2425. "/Tests/"
  2426. ]
  2427. },
  2428. "notification-url": "https://packagist.org/downloads/",
  2429. "license": [
  2430. "MIT"
  2431. ],
  2432. "authors": [
  2433. {
  2434. "name": "Fabien Potencier",
  2435. "email": "fabien@symfony.com"
  2436. },
  2437. {
  2438. "name": "Symfony Community",
  2439. "homepage": "https://symfony.com/contributors"
  2440. }
  2441. ],
  2442. "description": "Symfony Debug Component",
  2443. "homepage": "https://symfony.com",
  2444. "time": "2018-10-02T16:33:53+00:00"
  2445. },
  2446. {
  2447. "name": "symfony/dependency-injection",
  2448. "version": "v3.4.17",
  2449. "source": {
  2450. "type": "git",
  2451. "url": "https://github.com/symfony/dependency-injection.git",
  2452. "reference": "aea20fef4e92396928b5db175788b90234c0270d"
  2453. },
  2454. "dist": {
  2455. "type": "zip",
  2456. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/aea20fef4e92396928b5db175788b90234c0270d",
  2457. "reference": "aea20fef4e92396928b5db175788b90234c0270d",
  2458. "shasum": ""
  2459. },
  2460. "require": {
  2461. "php": "^5.5.9|>=7.0.8",
  2462. "psr/container": "^1.0"
  2463. },
  2464. "conflict": {
  2465. "symfony/config": "<3.3.7",
  2466. "symfony/finder": "<3.3",
  2467. "symfony/proxy-manager-bridge": "<3.4",
  2468. "symfony/yaml": "<3.4"
  2469. },
  2470. "provide": {
  2471. "psr/container-implementation": "1.0"
  2472. },
  2473. "require-dev": {
  2474. "symfony/config": "~3.3|~4.0",
  2475. "symfony/expression-language": "~2.8|~3.0|~4.0",
  2476. "symfony/yaml": "~3.4|~4.0"
  2477. },
  2478. "suggest": {
  2479. "symfony/config": "",
  2480. "symfony/expression-language": "For using expressions in service container configuration",
  2481. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  2482. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  2483. "symfony/yaml": ""
  2484. },
  2485. "type": "library",
  2486. "extra": {
  2487. "branch-alias": {
  2488. "dev-master": "3.4-dev"
  2489. }
  2490. },
  2491. "autoload": {
  2492. "psr-4": {
  2493. "Symfony\\Component\\DependencyInjection\\": ""
  2494. },
  2495. "exclude-from-classmap": [
  2496. "/Tests/"
  2497. ]
  2498. },
  2499. "notification-url": "https://packagist.org/downloads/",
  2500. "license": [
  2501. "MIT"
  2502. ],
  2503. "authors": [
  2504. {
  2505. "name": "Fabien Potencier",
  2506. "email": "fabien@symfony.com"
  2507. },
  2508. {
  2509. "name": "Symfony Community",
  2510. "homepage": "https://symfony.com/contributors"
  2511. }
  2512. ],
  2513. "description": "Symfony DependencyInjection Component",
  2514. "homepage": "https://symfony.com",
  2515. "time": "2018-10-02T12:28:39+00:00"
  2516. },
  2517. {
  2518. "name": "symfony/filesystem",
  2519. "version": "v3.4.17",
  2520. "source": {
  2521. "type": "git",
  2522. "url": "https://github.com/symfony/filesystem.git",
  2523. "reference": "d69930fc337d767607267d57c20a7403d0a822a4"
  2524. },
  2525. "dist": {
  2526. "type": "zip",
  2527. "url": "https://api.github.com/repos/symfony/filesystem/zipball/d69930fc337d767607267d57c20a7403d0a822a4",
  2528. "reference": "d69930fc337d767607267d57c20a7403d0a822a4",
  2529. "shasum": ""
  2530. },
  2531. "require": {
  2532. "php": "^5.5.9|>=7.0.8",
  2533. "symfony/polyfill-ctype": "~1.8"
  2534. },
  2535. "type": "library",
  2536. "extra": {
  2537. "branch-alias": {
  2538. "dev-master": "3.4-dev"
  2539. }
  2540. },
  2541. "autoload": {
  2542. "psr-4": {
  2543. "Symfony\\Component\\Filesystem\\": ""
  2544. },
  2545. "exclude-from-classmap": [
  2546. "/Tests/"
  2547. ]
  2548. },
  2549. "notification-url": "https://packagist.org/downloads/",
  2550. "license": [
  2551. "MIT"
  2552. ],
  2553. "authors": [
  2554. {
  2555. "name": "Fabien Potencier",
  2556. "email": "fabien@symfony.com"
  2557. },
  2558. {
  2559. "name": "Symfony Community",
  2560. "homepage": "https://symfony.com/contributors"
  2561. }
  2562. ],
  2563. "description": "Symfony Filesystem Component",
  2564. "homepage": "https://symfony.com",
  2565. "time": "2018-10-02T12:28:39+00:00"
  2566. },
  2567. {
  2568. "name": "symfony/finder",
  2569. "version": "v3.4.17",
  2570. "source": {
  2571. "type": "git",
  2572. "url": "https://github.com/symfony/finder.git",
  2573. "reference": "54ba444dddc5bd5708a34bd095ea67c6eb54644d"
  2574. },
  2575. "dist": {
  2576. "type": "zip",
  2577. "url": "https://api.github.com/repos/symfony/finder/zipball/54ba444dddc5bd5708a34bd095ea67c6eb54644d",
  2578. "reference": "54ba444dddc5bd5708a34bd095ea67c6eb54644d",
  2579. "shasum": ""
  2580. },
  2581. "require": {
  2582. "php": "^5.5.9|>=7.0.8"
  2583. },
  2584. "type": "library",
  2585. "extra": {
  2586. "branch-alias": {
  2587. "dev-master": "3.4-dev"
  2588. }
  2589. },
  2590. "autoload": {
  2591. "psr-4": {
  2592. "Symfony\\Component\\Finder\\": ""
  2593. },
  2594. "exclude-from-classmap": [
  2595. "/Tests/"
  2596. ]
  2597. },
  2598. "notification-url": "https://packagist.org/downloads/",
  2599. "license": [
  2600. "MIT"
  2601. ],
  2602. "authors": [
  2603. {
  2604. "name": "Fabien Potencier",
  2605. "email": "fabien@symfony.com"
  2606. },
  2607. {
  2608. "name": "Symfony Community",
  2609. "homepage": "https://symfony.com/contributors"
  2610. }
  2611. ],
  2612. "description": "Symfony Finder Component",
  2613. "homepage": "https://symfony.com",
  2614. "time": "2018-10-03T08:46:40+00:00"
  2615. },
  2616. {
  2617. "name": "symfony/polyfill-ctype",
  2618. "version": "v1.9.0",
  2619. "source": {
  2620. "type": "git",
  2621. "url": "https://github.com/symfony/polyfill-ctype.git",
  2622. "reference": "e3d826245268269cd66f8326bd8bc066687b4a19"
  2623. },
  2624. "dist": {
  2625. "type": "zip",
  2626. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e3d826245268269cd66f8326bd8bc066687b4a19",
  2627. "reference": "e3d826245268269cd66f8326bd8bc066687b4a19",
  2628. "shasum": ""
  2629. },
  2630. "require": {
  2631. "php": ">=5.3.3"
  2632. },
  2633. "suggest": {
  2634. "ext-ctype": "For best performance"
  2635. },
  2636. "type": "library",
  2637. "extra": {
  2638. "branch-alias": {
  2639. "dev-master": "1.9-dev"
  2640. }
  2641. },
  2642. "autoload": {
  2643. "psr-4": {
  2644. "Symfony\\Polyfill\\Ctype\\": ""
  2645. },
  2646. "files": [
  2647. "bootstrap.php"
  2648. ]
  2649. },
  2650. "notification-url": "https://packagist.org/downloads/",
  2651. "license": [
  2652. "MIT"
  2653. ],
  2654. "authors": [
  2655. {
  2656. "name": "Symfony Community",
  2657. "homepage": "https://symfony.com/contributors"
  2658. },
  2659. {
  2660. "name": "Gert de Pagter",
  2661. "email": "BackEndTea@gmail.com"
  2662. }
  2663. ],
  2664. "description": "Symfony polyfill for ctype functions",
  2665. "homepage": "https://symfony.com",
  2666. "keywords": [
  2667. "compatibility",
  2668. "ctype",
  2669. "polyfill",
  2670. "portable"
  2671. ],
  2672. "time": "2018-08-06T14:22:27+00:00"
  2673. },
  2674. {
  2675. "name": "symfony/polyfill-mbstring",
  2676. "version": "v1.9.0",
  2677. "source": {
  2678. "type": "git",
  2679. "url": "https://github.com/symfony/polyfill-mbstring.git",
  2680. "reference": "d0cd638f4634c16d8df4508e847f14e9e43168b8"
  2681. },
  2682. "dist": {
  2683. "type": "zip",
  2684. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/d0cd638f4634c16d8df4508e847f14e9e43168b8",
  2685. "reference": "d0cd638f4634c16d8df4508e847f14e9e43168b8",
  2686. "shasum": ""
  2687. },
  2688. "require": {
  2689. "php": ">=5.3.3"
  2690. },
  2691. "suggest": {
  2692. "ext-mbstring": "For best performance"
  2693. },
  2694. "type": "library",
  2695. "extra": {
  2696. "branch-alias": {
  2697. "dev-master": "1.9-dev"
  2698. }
  2699. },
  2700. "autoload": {
  2701. "psr-4": {
  2702. "Symfony\\Polyfill\\Mbstring\\": ""
  2703. },
  2704. "files": [
  2705. "bootstrap.php"
  2706. ]
  2707. },
  2708. "notification-url": "https://packagist.org/downloads/",
  2709. "license": [
  2710. "MIT"
  2711. ],
  2712. "authors": [
  2713. {
  2714. "name": "Nicolas Grekas",
  2715. "email": "p@tchwork.com"
  2716. },
  2717. {
  2718. "name": "Symfony Community",
  2719. "homepage": "https://symfony.com/contributors"
  2720. }
  2721. ],
  2722. "description": "Symfony polyfill for the Mbstring extension",
  2723. "homepage": "https://symfony.com",
  2724. "keywords": [
  2725. "compatibility",
  2726. "mbstring",
  2727. "polyfill",
  2728. "portable",
  2729. "shim"
  2730. ],
  2731. "time": "2018-08-06T14:22:27+00:00"
  2732. },
  2733. {
  2734. "name": "symfony/yaml",
  2735. "version": "v3.4.17",
  2736. "source": {
  2737. "type": "git",
  2738. "url": "https://github.com/symfony/yaml.git",
  2739. "reference": "640b6c27fed4066d64b64d5903a86043f4a4de7f"
  2740. },
  2741. "dist": {
  2742. "type": "zip",
  2743. "url": "https://api.github.com/repos/symfony/yaml/zipball/640b6c27fed4066d64b64d5903a86043f4a4de7f",
  2744. "reference": "640b6c27fed4066d64b64d5903a86043f4a4de7f",
  2745. "shasum": ""
  2746. },
  2747. "require": {
  2748. "php": "^5.5.9|>=7.0.8",
  2749. "symfony/polyfill-ctype": "~1.8"
  2750. },
  2751. "conflict": {
  2752. "symfony/console": "<3.4"
  2753. },
  2754. "require-dev": {
  2755. "symfony/console": "~3.4|~4.0"
  2756. },
  2757. "suggest": {
  2758. "symfony/console": "For validating YAML files using the lint command"
  2759. },
  2760. "type": "library",
  2761. "extra": {
  2762. "branch-alias": {
  2763. "dev-master": "3.4-dev"
  2764. }
  2765. },
  2766. "autoload": {
  2767. "psr-4": {
  2768. "Symfony\\Component\\Yaml\\": ""
  2769. },
  2770. "exclude-from-classmap": [
  2771. "/Tests/"
  2772. ]
  2773. },
  2774. "notification-url": "https://packagist.org/downloads/",
  2775. "license": [
  2776. "MIT"
  2777. ],
  2778. "authors": [
  2779. {
  2780. "name": "Fabien Potencier",
  2781. "email": "fabien@symfony.com"
  2782. },
  2783. {
  2784. "name": "Symfony Community",
  2785. "homepage": "https://symfony.com/contributors"
  2786. }
  2787. ],
  2788. "description": "Symfony Yaml Component",
  2789. "homepage": "https://symfony.com",
  2790. "time": "2018-10-02T16:33:53+00:00"
  2791. },
  2792. {
  2793. "name": "theseer/fdomdocument",
  2794. "version": "1.6.6",
  2795. "source": {
  2796. "type": "git",
  2797. "url": "https://github.com/theseer/fDOMDocument.git",
  2798. "reference": "6e8203e40a32a9c770bcb62fe37e68b948da6dca"
  2799. },
  2800. "dist": {
  2801. "type": "zip",
  2802. "url": "https://api.github.com/repos/theseer/fDOMDocument/zipball/6e8203e40a32a9c770bcb62fe37e68b948da6dca",
  2803. "reference": "6e8203e40a32a9c770bcb62fe37e68b948da6dca",
  2804. "shasum": ""
  2805. },
  2806. "require": {
  2807. "ext-dom": "*",
  2808. "lib-libxml": "*",
  2809. "php": ">=5.3.3"
  2810. },
  2811. "type": "library",
  2812. "autoload": {
  2813. "classmap": [
  2814. "src/"
  2815. ]
  2816. },
  2817. "notification-url": "https://packagist.org/downloads/",
  2818. "license": [
  2819. "BSD-3-Clause"
  2820. ],
  2821. "authors": [
  2822. {
  2823. "name": "Arne Blankerts",
  2824. "email": "arne@blankerts.de",
  2825. "role": "lead"
  2826. }
  2827. ],
  2828. "description": "The classes contained within this repository extend the standard DOM to use exceptions at all occasions of errors instead of PHP warnings or notices. They also add various custom methods and shortcuts for convenience and to simplify the usage of DOM.",
  2829. "homepage": "https://github.com/theseer/fDOMDocument",
  2830. "time": "2017-06-30T11:53:12+00:00"
  2831. },
  2832. {
  2833. "name": "webmozart/assert",
  2834. "version": "1.3.0",
  2835. "source": {
  2836. "type": "git",
  2837. "url": "https://github.com/webmozart/assert.git",
  2838. "reference": "0df1908962e7a3071564e857d86874dad1ef204a"
  2839. },
  2840. "dist": {
  2841. "type": "zip",
  2842. "url": "https://api.github.com/repos/webmozart/assert/zipball/0df1908962e7a3071564e857d86874dad1ef204a",
  2843. "reference": "0df1908962e7a3071564e857d86874dad1ef204a",
  2844. "shasum": ""
  2845. },
  2846. "require": {
  2847. "php": "^5.3.3 || ^7.0"
  2848. },
  2849. "require-dev": {
  2850. "phpunit/phpunit": "^4.6",
  2851. "sebastian/version": "^1.0.1"
  2852. },
  2853. "type": "library",
  2854. "extra": {
  2855. "branch-alias": {
  2856. "dev-master": "1.3-dev"
  2857. }
  2858. },
  2859. "autoload": {
  2860. "psr-4": {
  2861. "Webmozart\\Assert\\": "src/"
  2862. }
  2863. },
  2864. "notification-url": "https://packagist.org/downloads/",
  2865. "license": [
  2866. "MIT"
  2867. ],
  2868. "authors": [
  2869. {
  2870. "name": "Bernhard Schussek",
  2871. "email": "bschussek@gmail.com"
  2872. }
  2873. ],
  2874. "description": "Assertions to validate method input/output with nice error messages.",
  2875. "keywords": [
  2876. "assert",
  2877. "check",
  2878. "validate"
  2879. ],
  2880. "time": "2018-01-29T19:49:41+00:00"
  2881. }
  2882. ],
  2883. "aliases": [],
  2884. "minimum-stability": "stable",
  2885. "stability-flags": {
  2886. "pubsubhubbub/publisher": 20,
  2887. "phpmd/phpmd": 0
  2888. },
  2889. "prefer-stable": false,
  2890. "prefer-lowest": false,
  2891. "platform": {
  2892. "php": ">=5.6"
  2893. },
  2894. "platform-dev": [],
  2895. "platform-overrides": {
  2896. "php": "5.6.31"
  2897. }
  2898. }