composer.lock 96 KB

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