composer.lock 115 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321
  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": "8b3c07286e8c9baf049b2da482136b3a",
  8. "packages": [
  9. {
  10. "name": "composer/semver",
  11. "version": "1.7.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/composer/semver.git",
  15. "reference": "38276325bd896f90dfcfe30029aa5db40df387a7"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/composer/semver/zipball/38276325bd896f90dfcfe30029aa5db40df387a7",
  20. "reference": "38276325bd896f90dfcfe30029aa5db40df387a7",
  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. },
  29. "type": "library",
  30. "extra": {
  31. "branch-alias": {
  32. "dev-master": "1.x-dev"
  33. }
  34. },
  35. "autoload": {
  36. "psr-4": {
  37. "Composer\\Semver\\": "src"
  38. }
  39. },
  40. "notification-url": "https://packagist.org/downloads/",
  41. "license": [
  42. "MIT"
  43. ],
  44. "authors": [
  45. {
  46. "name": "Nils Adermann",
  47. "email": "naderman@naderman.de",
  48. "homepage": "http://www.naderman.de"
  49. },
  50. {
  51. "name": "Jordi Boggiano",
  52. "email": "j.boggiano@seld.be",
  53. "homepage": "http://seld.be"
  54. },
  55. {
  56. "name": "Rob Bast",
  57. "email": "rob.bast@gmail.com",
  58. "homepage": "http://robbast.nl"
  59. }
  60. ],
  61. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  62. "keywords": [
  63. "semantic",
  64. "semver",
  65. "validation",
  66. "versioning"
  67. ],
  68. "time": "2020-09-27T13:13:07+00:00"
  69. },
  70. {
  71. "name": "laminas/laminas-xml",
  72. "version": "1.2.0",
  73. "source": {
  74. "type": "git",
  75. "url": "https://github.com/laminas/laminas-xml.git",
  76. "reference": "879cc66d1bba6a37705e98074f52a6960c220020"
  77. },
  78. "dist": {
  79. "type": "zip",
  80. "url": "https://api.github.com/repos/laminas/laminas-xml/zipball/879cc66d1bba6a37705e98074f52a6960c220020",
  81. "reference": "879cc66d1bba6a37705e98074f52a6960c220020",
  82. "shasum": ""
  83. },
  84. "require": {
  85. "laminas/laminas-zendframework-bridge": "^1.0",
  86. "php": "^5.6 || ^7.0"
  87. },
  88. "replace": {
  89. "zendframework/zendxml": "self.version"
  90. },
  91. "require-dev": {
  92. "laminas/laminas-coding-standard": "~1.0.0",
  93. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.4"
  94. },
  95. "type": "library",
  96. "extra": {
  97. "branch-alias": {
  98. "dev-master": "1.2.x-dev",
  99. "dev-develop": "1.3.x-dev"
  100. }
  101. },
  102. "autoload": {
  103. "psr-4": {
  104. "Laminas\\Xml\\": "src/"
  105. }
  106. },
  107. "notification-url": "https://packagist.org/downloads/",
  108. "license": [
  109. "BSD-3-Clause"
  110. ],
  111. "description": "Utility library for XML usage, best practices, and security in PHP",
  112. "homepage": "https://laminas.dev",
  113. "keywords": [
  114. "laminas",
  115. "security",
  116. "xml"
  117. ],
  118. "time": "2019-12-31T18:05:42+00:00"
  119. },
  120. {
  121. "name": "laminas/laminas-zendframework-bridge",
  122. "version": "1.1.1",
  123. "source": {
  124. "type": "git",
  125. "url": "https://github.com/laminas/laminas-zendframework-bridge.git",
  126. "reference": "6ede70583e101030bcace4dcddd648f760ddf642"
  127. },
  128. "dist": {
  129. "type": "zip",
  130. "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/6ede70583e101030bcace4dcddd648f760ddf642",
  131. "reference": "6ede70583e101030bcace4dcddd648f760ddf642",
  132. "shasum": ""
  133. },
  134. "require": {
  135. "php": "^5.6 || ^7.0 || ^8.0"
  136. },
  137. "require-dev": {
  138. "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.1 || ^9.3",
  139. "squizlabs/php_codesniffer": "^3.5"
  140. },
  141. "type": "library",
  142. "extra": {
  143. "laminas": {
  144. "module": "Laminas\\ZendFrameworkBridge"
  145. }
  146. },
  147. "autoload": {
  148. "files": [
  149. "src/autoload.php"
  150. ],
  151. "psr-4": {
  152. "Laminas\\ZendFrameworkBridge\\": "src//"
  153. }
  154. },
  155. "notification-url": "https://packagist.org/downloads/",
  156. "license": [
  157. "BSD-3-Clause"
  158. ],
  159. "description": "Alias legacy ZF class names to Laminas Project equivalents.",
  160. "keywords": [
  161. "ZendFramework",
  162. "autoloading",
  163. "laminas",
  164. "zf"
  165. ],
  166. "time": "2020-09-14T14:23:00+00:00"
  167. },
  168. {
  169. "name": "p3k/picofeed",
  170. "version": "v0.1.40",
  171. "source": {
  172. "type": "git",
  173. "url": "https://github.com/aaronpk/picofeed.git",
  174. "reference": "356fd66d48779193b10ac28532cb4a4e11bb801c"
  175. },
  176. "dist": {
  177. "type": "zip",
  178. "url": "https://api.github.com/repos/aaronpk/picofeed/zipball/356fd66d48779193b10ac28532cb4a4e11bb801c",
  179. "reference": "356fd66d48779193b10ac28532cb4a4e11bb801c",
  180. "shasum": ""
  181. },
  182. "require": {
  183. "ext-dom": "*",
  184. "ext-iconv": "*",
  185. "ext-libxml": "*",
  186. "ext-simplexml": "*",
  187. "ext-xml": "*",
  188. "laminas/laminas-xml": "^1.2",
  189. "php": ">=5.3.0"
  190. },
  191. "replace": {
  192. "miniflux/picofeed": "0.1.35"
  193. },
  194. "require-dev": {
  195. "phpdocumentor/reflection-docblock": "2.0.4",
  196. "phpunit/phpunit": "4.8.26",
  197. "symfony/yaml": "2.8.7"
  198. },
  199. "suggest": {
  200. "ext-curl": "PicoFeed will use cURL if present"
  201. },
  202. "bin": [
  203. "picofeed"
  204. ],
  205. "type": "library",
  206. "autoload": {
  207. "psr-0": {
  208. "PicoFeed": "lib/"
  209. }
  210. },
  211. "notification-url": "https://packagist.org/downloads/",
  212. "license": [
  213. "MIT"
  214. ],
  215. "authors": [
  216. {
  217. "name": "Frédéric Guillot"
  218. }
  219. ],
  220. "description": "Modern library to handle RSS/Atom feeds",
  221. "homepage": "https://github.com/aaronpk/picoFeed",
  222. "time": "2020-04-25T17:48:36+00:00"
  223. }
  224. ],
  225. "packages-dev": [
  226. {
  227. "name": "behat/gherkin",
  228. "version": "v4.6.2",
  229. "source": {
  230. "type": "git",
  231. "url": "https://github.com/Behat/Gherkin.git",
  232. "reference": "51ac4500c4dc30cbaaabcd2f25694299df666a31"
  233. },
  234. "dist": {
  235. "type": "zip",
  236. "url": "https://api.github.com/repos/Behat/Gherkin/zipball/51ac4500c4dc30cbaaabcd2f25694299df666a31",
  237. "reference": "51ac4500c4dc30cbaaabcd2f25694299df666a31",
  238. "shasum": ""
  239. },
  240. "require": {
  241. "php": ">=5.3.1"
  242. },
  243. "require-dev": {
  244. "phpunit/phpunit": "~4.5|~5",
  245. "symfony/phpunit-bridge": "~2.7|~3|~4",
  246. "symfony/yaml": "~2.3|~3|~4"
  247. },
  248. "suggest": {
  249. "symfony/yaml": "If you want to parse features, represented in YAML files"
  250. },
  251. "type": "library",
  252. "extra": {
  253. "branch-alias": {
  254. "dev-master": "4.4-dev"
  255. }
  256. },
  257. "autoload": {
  258. "psr-0": {
  259. "Behat\\Gherkin": "src/"
  260. }
  261. },
  262. "notification-url": "https://packagist.org/downloads/",
  263. "license": [
  264. "MIT"
  265. ],
  266. "authors": [
  267. {
  268. "name": "Konstantin Kudryashov",
  269. "email": "ever.zet@gmail.com",
  270. "homepage": "http://everzet.com"
  271. }
  272. ],
  273. "description": "Gherkin DSL parser for PHP 5.3",
  274. "homepage": "http://behat.org/",
  275. "keywords": [
  276. "BDD",
  277. "Behat",
  278. "Cucumber",
  279. "DSL",
  280. "gherkin",
  281. "parser"
  282. ],
  283. "time": "2020-03-17T14:03:26+00:00"
  284. },
  285. {
  286. "name": "codeception/codeception",
  287. "version": "2.5.6",
  288. "source": {
  289. "type": "git",
  290. "url": "https://github.com/Codeception/Codeception.git",
  291. "reference": "b83a9338296e706fab2ceb49de8a352fbca3dc98"
  292. },
  293. "dist": {
  294. "type": "zip",
  295. "url": "https://api.github.com/repos/Codeception/Codeception/zipball/b83a9338296e706fab2ceb49de8a352fbca3dc98",
  296. "reference": "b83a9338296e706fab2ceb49de8a352fbca3dc98",
  297. "shasum": ""
  298. },
  299. "require": {
  300. "behat/gherkin": "^4.4.0",
  301. "codeception/phpunit-wrapper": "^6.0.9|^7.0.6",
  302. "codeception/stub": "^2.0",
  303. "ext-curl": "*",
  304. "ext-json": "*",
  305. "ext-mbstring": "*",
  306. "facebook/webdriver": ">=1.1.3 <2.0",
  307. "guzzlehttp/guzzle": ">=4.1.4 <7.0",
  308. "guzzlehttp/psr7": "~1.0",
  309. "php": ">=5.6.0 <8.0",
  310. "symfony/browser-kit": ">=2.7 <5.0",
  311. "symfony/console": ">=2.7 <5.0",
  312. "symfony/css-selector": ">=2.7 <5.0",
  313. "symfony/dom-crawler": ">=2.7 <5.0",
  314. "symfony/event-dispatcher": ">=2.7 <5.0",
  315. "symfony/finder": ">=2.7 <5.0",
  316. "symfony/yaml": ">=2.7 <5.0"
  317. },
  318. "require-dev": {
  319. "codeception/specify": "~0.3",
  320. "facebook/graph-sdk": "~5.3",
  321. "flow/jsonpath": "~0.2",
  322. "monolog/monolog": "~1.8",
  323. "pda/pheanstalk": "~3.0",
  324. "php-amqplib/php-amqplib": "~2.4",
  325. "predis/predis": "^1.0",
  326. "squizlabs/php_codesniffer": "~2.0",
  327. "symfony/process": ">=2.7 <5.0",
  328. "vlucas/phpdotenv": "^3.0"
  329. },
  330. "suggest": {
  331. "aws/aws-sdk-php": "For using AWS Auth in REST module and Queue module",
  332. "codeception/phpbuiltinserver": "Start and stop PHP built-in web server for your tests",
  333. "codeception/specify": "BDD-style code blocks",
  334. "codeception/verify": "BDD-style assertions",
  335. "flow/jsonpath": "For using JSONPath in REST module",
  336. "league/factory-muffin": "For DataFactory module",
  337. "league/factory-muffin-faker": "For Faker support in DataFactory module",
  338. "phpseclib/phpseclib": "for SFTP option in FTP Module",
  339. "stecman/symfony-console-completion": "For BASH autocompletion",
  340. "symfony/phpunit-bridge": "For phpunit-bridge support"
  341. },
  342. "bin": [
  343. "codecept"
  344. ],
  345. "type": "library",
  346. "extra": {
  347. "branch-alias": []
  348. },
  349. "autoload": {
  350. "psr-4": {
  351. "Codeception\\": "src/Codeception",
  352. "Codeception\\Extension\\": "ext"
  353. }
  354. },
  355. "notification-url": "https://packagist.org/downloads/",
  356. "license": [
  357. "MIT"
  358. ],
  359. "authors": [
  360. {
  361. "name": "Michael Bodnarchuk",
  362. "email": "davert@mail.ua",
  363. "homepage": "http://codegyre.com"
  364. }
  365. ],
  366. "description": "BDD-style testing framework",
  367. "homepage": "http://codeception.com/",
  368. "keywords": [
  369. "BDD",
  370. "TDD",
  371. "acceptance testing",
  372. "functional testing",
  373. "unit testing"
  374. ],
  375. "time": "2019-04-24T11:28:19+00:00"
  376. },
  377. {
  378. "name": "codeception/phpunit-wrapper",
  379. "version": "7.8.1",
  380. "source": {
  381. "type": "git",
  382. "url": "https://github.com/Codeception/phpunit-wrapper.git",
  383. "reference": "bc6f37d770ec00c4c7c78a1cac2b8ac0f9c9eec5"
  384. },
  385. "dist": {
  386. "type": "zip",
  387. "url": "https://api.github.com/repos/Codeception/phpunit-wrapper/zipball/bc6f37d770ec00c4c7c78a1cac2b8ac0f9c9eec5",
  388. "reference": "bc6f37d770ec00c4c7c78a1cac2b8ac0f9c9eec5",
  389. "shasum": ""
  390. },
  391. "require": {
  392. "phpunit/php-code-coverage": "^6.0",
  393. "phpunit/phpunit": "7.5.*",
  394. "sebastian/comparator": "^3.0",
  395. "sebastian/diff": "^3.0"
  396. },
  397. "require-dev": {
  398. "codeception/specify": "*",
  399. "vlucas/phpdotenv": "^3.0"
  400. },
  401. "type": "library",
  402. "autoload": {
  403. "psr-4": {
  404. "Codeception\\PHPUnit\\": "src/"
  405. }
  406. },
  407. "notification-url": "https://packagist.org/downloads/",
  408. "license": [
  409. "MIT"
  410. ],
  411. "authors": [
  412. {
  413. "name": "Davert",
  414. "email": "davert.php@resend.cc"
  415. }
  416. ],
  417. "description": "PHPUnit classes used by Codeception",
  418. "time": "2020-10-11T18:23:48+00:00"
  419. },
  420. {
  421. "name": "codeception/stub",
  422. "version": "2.1.0",
  423. "source": {
  424. "type": "git",
  425. "url": "https://github.com/Codeception/Stub.git",
  426. "reference": "853657f988942f7afb69becf3fd0059f192c705a"
  427. },
  428. "dist": {
  429. "type": "zip",
  430. "url": "https://api.github.com/repos/Codeception/Stub/zipball/853657f988942f7afb69becf3fd0059f192c705a",
  431. "reference": "853657f988942f7afb69becf3fd0059f192c705a",
  432. "shasum": ""
  433. },
  434. "require": {
  435. "codeception/phpunit-wrapper": ">6.0.15 <6.1.0 | ^6.6.1 | ^7.7.1 | ^8.0.3"
  436. },
  437. "type": "library",
  438. "autoload": {
  439. "psr-4": {
  440. "Codeception\\": "src/"
  441. }
  442. },
  443. "notification-url": "https://packagist.org/downloads/",
  444. "license": [
  445. "MIT"
  446. ],
  447. "description": "Flexible Stub wrapper for PHPUnit's Mock Builder",
  448. "time": "2019-03-02T15:35:10+00:00"
  449. },
  450. {
  451. "name": "doctrine/instantiator",
  452. "version": "1.4.0",
  453. "source": {
  454. "type": "git",
  455. "url": "https://github.com/doctrine/instantiator.git",
  456. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
  457. },
  458. "dist": {
  459. "type": "zip",
  460. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
  461. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
  462. "shasum": ""
  463. },
  464. "require": {
  465. "php": "^7.1 || ^8.0"
  466. },
  467. "require-dev": {
  468. "doctrine/coding-standard": "^8.0",
  469. "ext-pdo": "*",
  470. "ext-phar": "*",
  471. "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
  472. "phpstan/phpstan": "^0.12",
  473. "phpstan/phpstan-phpunit": "^0.12",
  474. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  475. },
  476. "type": "library",
  477. "autoload": {
  478. "psr-4": {
  479. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  480. }
  481. },
  482. "notification-url": "https://packagist.org/downloads/",
  483. "license": [
  484. "MIT"
  485. ],
  486. "authors": [
  487. {
  488. "name": "Marco Pivetta",
  489. "email": "ocramius@gmail.com",
  490. "homepage": "https://ocramius.github.io/"
  491. }
  492. ],
  493. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  494. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  495. "keywords": [
  496. "constructor",
  497. "instantiate"
  498. ],
  499. "time": "2020-11-10T18:47:58+00:00"
  500. },
  501. {
  502. "name": "facebook/webdriver",
  503. "version": "1.7.1",
  504. "source": {
  505. "type": "git",
  506. "url": "https://github.com/php-webdriver/php-webdriver-archive.git",
  507. "reference": "e43de70f3c7166169d0f14a374505392734160e5"
  508. },
  509. "dist": {
  510. "type": "zip",
  511. "url": "https://api.github.com/repos/php-webdriver/php-webdriver-archive/zipball/e43de70f3c7166169d0f14a374505392734160e5",
  512. "reference": "e43de70f3c7166169d0f14a374505392734160e5",
  513. "shasum": ""
  514. },
  515. "require": {
  516. "ext-curl": "*",
  517. "ext-json": "*",
  518. "ext-mbstring": "*",
  519. "ext-zip": "*",
  520. "php": "^5.6 || ~7.0",
  521. "symfony/process": "^2.8 || ^3.1 || ^4.0"
  522. },
  523. "require-dev": {
  524. "friendsofphp/php-cs-fixer": "^2.0",
  525. "jakub-onderka/php-parallel-lint": "^0.9.2",
  526. "php-coveralls/php-coveralls": "^2.0",
  527. "php-mock/php-mock-phpunit": "^1.1",
  528. "phpunit/phpunit": "^5.7",
  529. "sebastian/environment": "^1.3.4 || ^2.0 || ^3.0",
  530. "squizlabs/php_codesniffer": "^2.6",
  531. "symfony/var-dumper": "^3.3 || ^4.0"
  532. },
  533. "suggest": {
  534. "ext-SimpleXML": "For Firefox profile creation"
  535. },
  536. "type": "library",
  537. "extra": {
  538. "branch-alias": {
  539. "dev-community": "1.5-dev"
  540. }
  541. },
  542. "autoload": {
  543. "psr-4": {
  544. "Facebook\\WebDriver\\": "lib/"
  545. }
  546. },
  547. "notification-url": "https://packagist.org/downloads/",
  548. "license": [
  549. "Apache-2.0"
  550. ],
  551. "description": "A PHP client for Selenium WebDriver",
  552. "homepage": "https://github.com/facebook/php-webdriver",
  553. "keywords": [
  554. "facebook",
  555. "php",
  556. "selenium",
  557. "webdriver"
  558. ],
  559. "abandoned": "php-webdriver/webdriver",
  560. "time": "2019-06-13T08:02:18+00:00"
  561. },
  562. {
  563. "name": "fzaninotto/faker",
  564. "version": "v1.9.1",
  565. "source": {
  566. "type": "git",
  567. "url": "https://github.com/fzaninotto/Faker.git",
  568. "reference": "fc10d778e4b84d5bd315dad194661e091d307c6f"
  569. },
  570. "dist": {
  571. "type": "zip",
  572. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/fc10d778e4b84d5bd315dad194661e091d307c6f",
  573. "reference": "fc10d778e4b84d5bd315dad194661e091d307c6f",
  574. "shasum": ""
  575. },
  576. "require": {
  577. "php": "^5.3.3 || ^7.0"
  578. },
  579. "require-dev": {
  580. "ext-intl": "*",
  581. "phpunit/phpunit": "^4.8.35 || ^5.7",
  582. "squizlabs/php_codesniffer": "^2.9.2"
  583. },
  584. "type": "library",
  585. "extra": {
  586. "branch-alias": {
  587. "dev-master": "1.9-dev"
  588. }
  589. },
  590. "autoload": {
  591. "psr-4": {
  592. "Faker\\": "src/Faker/"
  593. }
  594. },
  595. "notification-url": "https://packagist.org/downloads/",
  596. "license": [
  597. "MIT"
  598. ],
  599. "authors": [
  600. {
  601. "name": "François Zaninotto"
  602. }
  603. ],
  604. "description": "Faker is a PHP library that generates fake data for you.",
  605. "keywords": [
  606. "data",
  607. "faker",
  608. "fixtures"
  609. ],
  610. "abandoned": true,
  611. "time": "2019-12-12T13:22:17+00:00"
  612. },
  613. {
  614. "name": "guzzlehttp/guzzle",
  615. "version": "6.5.5",
  616. "source": {
  617. "type": "git",
  618. "url": "https://github.com/guzzle/guzzle.git",
  619. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
  620. },
  621. "dist": {
  622. "type": "zip",
  623. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  624. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  625. "shasum": ""
  626. },
  627. "require": {
  628. "ext-json": "*",
  629. "guzzlehttp/promises": "^1.0",
  630. "guzzlehttp/psr7": "^1.6.1",
  631. "php": ">=5.5",
  632. "symfony/polyfill-intl-idn": "^1.17.0"
  633. },
  634. "require-dev": {
  635. "ext-curl": "*",
  636. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  637. "psr/log": "^1.1"
  638. },
  639. "suggest": {
  640. "psr/log": "Required for using the Log middleware"
  641. },
  642. "type": "library",
  643. "extra": {
  644. "branch-alias": {
  645. "dev-master": "6.5-dev"
  646. }
  647. },
  648. "autoload": {
  649. "psr-4": {
  650. "GuzzleHttp\\": "src/"
  651. },
  652. "files": [
  653. "src/functions_include.php"
  654. ]
  655. },
  656. "notification-url": "https://packagist.org/downloads/",
  657. "license": [
  658. "MIT"
  659. ],
  660. "authors": [
  661. {
  662. "name": "Michael Dowling",
  663. "email": "mtdowling@gmail.com",
  664. "homepage": "https://github.com/mtdowling"
  665. }
  666. ],
  667. "description": "Guzzle is a PHP HTTP client library",
  668. "homepage": "http://guzzlephp.org/",
  669. "keywords": [
  670. "client",
  671. "curl",
  672. "framework",
  673. "http",
  674. "http client",
  675. "rest",
  676. "web service"
  677. ],
  678. "time": "2020-06-16T21:01:06+00:00"
  679. },
  680. {
  681. "name": "guzzlehttp/promises",
  682. "version": "1.4.0",
  683. "source": {
  684. "type": "git",
  685. "url": "https://github.com/guzzle/promises.git",
  686. "reference": "60d379c243457e073cff02bc323a2a86cb355631"
  687. },
  688. "dist": {
  689. "type": "zip",
  690. "url": "https://api.github.com/repos/guzzle/promises/zipball/60d379c243457e073cff02bc323a2a86cb355631",
  691. "reference": "60d379c243457e073cff02bc323a2a86cb355631",
  692. "shasum": ""
  693. },
  694. "require": {
  695. "php": ">=5.5"
  696. },
  697. "require-dev": {
  698. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  699. },
  700. "type": "library",
  701. "extra": {
  702. "branch-alias": {
  703. "dev-master": "1.4-dev"
  704. }
  705. },
  706. "autoload": {
  707. "psr-4": {
  708. "GuzzleHttp\\Promise\\": "src/"
  709. },
  710. "files": [
  711. "src/functions_include.php"
  712. ]
  713. },
  714. "notification-url": "https://packagist.org/downloads/",
  715. "license": [
  716. "MIT"
  717. ],
  718. "authors": [
  719. {
  720. "name": "Michael Dowling",
  721. "email": "mtdowling@gmail.com",
  722. "homepage": "https://github.com/mtdowling"
  723. }
  724. ],
  725. "description": "Guzzle promises library",
  726. "keywords": [
  727. "promise"
  728. ],
  729. "time": "2020-09-30T07:37:28+00:00"
  730. },
  731. {
  732. "name": "guzzlehttp/psr7",
  733. "version": "1.7.0",
  734. "source": {
  735. "type": "git",
  736. "url": "https://github.com/guzzle/psr7.git",
  737. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3"
  738. },
  739. "dist": {
  740. "type": "zip",
  741. "url": "https://api.github.com/repos/guzzle/psr7/zipball/53330f47520498c0ae1f61f7e2c90f55690c06a3",
  742. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3",
  743. "shasum": ""
  744. },
  745. "require": {
  746. "php": ">=5.4.0",
  747. "psr/http-message": "~1.0",
  748. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  749. },
  750. "provide": {
  751. "psr/http-message-implementation": "1.0"
  752. },
  753. "require-dev": {
  754. "ext-zlib": "*",
  755. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  756. },
  757. "suggest": {
  758. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  759. },
  760. "type": "library",
  761. "extra": {
  762. "branch-alias": {
  763. "dev-master": "1.7-dev"
  764. }
  765. },
  766. "autoload": {
  767. "psr-4": {
  768. "GuzzleHttp\\Psr7\\": "src/"
  769. },
  770. "files": [
  771. "src/functions_include.php"
  772. ]
  773. },
  774. "notification-url": "https://packagist.org/downloads/",
  775. "license": [
  776. "MIT"
  777. ],
  778. "authors": [
  779. {
  780. "name": "Michael Dowling",
  781. "email": "mtdowling@gmail.com",
  782. "homepage": "https://github.com/mtdowling"
  783. },
  784. {
  785. "name": "Tobias Schultze",
  786. "homepage": "https://github.com/Tobion"
  787. }
  788. ],
  789. "description": "PSR-7 message implementation that also provides common utility methods",
  790. "keywords": [
  791. "http",
  792. "message",
  793. "psr-7",
  794. "request",
  795. "response",
  796. "stream",
  797. "uri",
  798. "url"
  799. ],
  800. "time": "2020-09-30T07:37:11+00:00"
  801. },
  802. {
  803. "name": "myclabs/deep-copy",
  804. "version": "1.10.2",
  805. "source": {
  806. "type": "git",
  807. "url": "https://github.com/myclabs/DeepCopy.git",
  808. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
  809. },
  810. "dist": {
  811. "type": "zip",
  812. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
  813. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
  814. "shasum": ""
  815. },
  816. "require": {
  817. "php": "^7.1 || ^8.0"
  818. },
  819. "replace": {
  820. "myclabs/deep-copy": "self.version"
  821. },
  822. "require-dev": {
  823. "doctrine/collections": "^1.0",
  824. "doctrine/common": "^2.6",
  825. "phpunit/phpunit": "^7.1"
  826. },
  827. "type": "library",
  828. "autoload": {
  829. "psr-4": {
  830. "DeepCopy\\": "src/DeepCopy/"
  831. },
  832. "files": [
  833. "src/DeepCopy/deep_copy.php"
  834. ]
  835. },
  836. "notification-url": "https://packagist.org/downloads/",
  837. "license": [
  838. "MIT"
  839. ],
  840. "description": "Create deep copies (clones) of your objects",
  841. "keywords": [
  842. "clone",
  843. "copy",
  844. "duplicate",
  845. "object",
  846. "object graph"
  847. ],
  848. "time": "2020-11-13T09:40:50+00:00"
  849. },
  850. {
  851. "name": "phar-io/manifest",
  852. "version": "1.0.3",
  853. "source": {
  854. "type": "git",
  855. "url": "https://github.com/phar-io/manifest.git",
  856. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4"
  857. },
  858. "dist": {
  859. "type": "zip",
  860. "url": "https://api.github.com/repos/phar-io/manifest/zipball/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  861. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  862. "shasum": ""
  863. },
  864. "require": {
  865. "ext-dom": "*",
  866. "ext-phar": "*",
  867. "phar-io/version": "^2.0",
  868. "php": "^5.6 || ^7.0"
  869. },
  870. "type": "library",
  871. "extra": {
  872. "branch-alias": {
  873. "dev-master": "1.0.x-dev"
  874. }
  875. },
  876. "autoload": {
  877. "classmap": [
  878. "src/"
  879. ]
  880. },
  881. "notification-url": "https://packagist.org/downloads/",
  882. "license": [
  883. "BSD-3-Clause"
  884. ],
  885. "authors": [
  886. {
  887. "name": "Arne Blankerts",
  888. "email": "arne@blankerts.de",
  889. "role": "Developer"
  890. },
  891. {
  892. "name": "Sebastian Heuer",
  893. "email": "sebastian@phpeople.de",
  894. "role": "Developer"
  895. },
  896. {
  897. "name": "Sebastian Bergmann",
  898. "email": "sebastian@phpunit.de",
  899. "role": "Developer"
  900. }
  901. ],
  902. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  903. "time": "2018-07-08T19:23:20+00:00"
  904. },
  905. {
  906. "name": "phar-io/version",
  907. "version": "2.0.1",
  908. "source": {
  909. "type": "git",
  910. "url": "https://github.com/phar-io/version.git",
  911. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6"
  912. },
  913. "dist": {
  914. "type": "zip",
  915. "url": "https://api.github.com/repos/phar-io/version/zipball/45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  916. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  917. "shasum": ""
  918. },
  919. "require": {
  920. "php": "^5.6 || ^7.0"
  921. },
  922. "type": "library",
  923. "autoload": {
  924. "classmap": [
  925. "src/"
  926. ]
  927. },
  928. "notification-url": "https://packagist.org/downloads/",
  929. "license": [
  930. "BSD-3-Clause"
  931. ],
  932. "authors": [
  933. {
  934. "name": "Arne Blankerts",
  935. "email": "arne@blankerts.de",
  936. "role": "Developer"
  937. },
  938. {
  939. "name": "Sebastian Heuer",
  940. "email": "sebastian@phpeople.de",
  941. "role": "Developer"
  942. },
  943. {
  944. "name": "Sebastian Bergmann",
  945. "email": "sebastian@phpunit.de",
  946. "role": "Developer"
  947. }
  948. ],
  949. "description": "Library for handling version information and constraints",
  950. "time": "2018-07-08T19:19:57+00:00"
  951. },
  952. {
  953. "name": "phpdocumentor/reflection-common",
  954. "version": "2.1.0",
  955. "source": {
  956. "type": "git",
  957. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  958. "reference": "6568f4687e5b41b054365f9ae03fcb1ed5f2069b"
  959. },
  960. "dist": {
  961. "type": "zip",
  962. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/6568f4687e5b41b054365f9ae03fcb1ed5f2069b",
  963. "reference": "6568f4687e5b41b054365f9ae03fcb1ed5f2069b",
  964. "shasum": ""
  965. },
  966. "require": {
  967. "php": ">=7.1"
  968. },
  969. "type": "library",
  970. "extra": {
  971. "branch-alias": {
  972. "dev-master": "2.x-dev"
  973. }
  974. },
  975. "autoload": {
  976. "psr-4": {
  977. "phpDocumentor\\Reflection\\": "src/"
  978. }
  979. },
  980. "notification-url": "https://packagist.org/downloads/",
  981. "license": [
  982. "MIT"
  983. ],
  984. "authors": [
  985. {
  986. "name": "Jaap van Otterdijk",
  987. "email": "opensource@ijaap.nl"
  988. }
  989. ],
  990. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  991. "homepage": "http://www.phpdoc.org",
  992. "keywords": [
  993. "FQSEN",
  994. "phpDocumentor",
  995. "phpdoc",
  996. "reflection",
  997. "static analysis"
  998. ],
  999. "time": "2020-04-27T09:25:28+00:00"
  1000. },
  1001. {
  1002. "name": "phpdocumentor/reflection-docblock",
  1003. "version": "4.3.4",
  1004. "source": {
  1005. "type": "git",
  1006. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  1007. "reference": "da3fd972d6bafd628114f7e7e036f45944b62e9c"
  1008. },
  1009. "dist": {
  1010. "type": "zip",
  1011. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/da3fd972d6bafd628114f7e7e036f45944b62e9c",
  1012. "reference": "da3fd972d6bafd628114f7e7e036f45944b62e9c",
  1013. "shasum": ""
  1014. },
  1015. "require": {
  1016. "php": "^7.0",
  1017. "phpdocumentor/reflection-common": "^1.0.0 || ^2.0.0",
  1018. "phpdocumentor/type-resolver": "~0.4 || ^1.0.0",
  1019. "webmozart/assert": "^1.0"
  1020. },
  1021. "require-dev": {
  1022. "doctrine/instantiator": "^1.0.5",
  1023. "mockery/mockery": "^1.0",
  1024. "phpdocumentor/type-resolver": "0.4.*",
  1025. "phpunit/phpunit": "^6.4"
  1026. },
  1027. "type": "library",
  1028. "extra": {
  1029. "branch-alias": {
  1030. "dev-master": "4.x-dev"
  1031. }
  1032. },
  1033. "autoload": {
  1034. "psr-4": {
  1035. "phpDocumentor\\Reflection\\": [
  1036. "src/"
  1037. ]
  1038. }
  1039. },
  1040. "notification-url": "https://packagist.org/downloads/",
  1041. "license": [
  1042. "MIT"
  1043. ],
  1044. "authors": [
  1045. {
  1046. "name": "Mike van Riel",
  1047. "email": "me@mikevanriel.com"
  1048. }
  1049. ],
  1050. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  1051. "time": "2019-12-28T18:55:12+00:00"
  1052. },
  1053. {
  1054. "name": "phpdocumentor/type-resolver",
  1055. "version": "1.0.1",
  1056. "source": {
  1057. "type": "git",
  1058. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  1059. "reference": "2e32a6d48972b2c1976ed5d8967145b6cec4a4a9"
  1060. },
  1061. "dist": {
  1062. "type": "zip",
  1063. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/2e32a6d48972b2c1976ed5d8967145b6cec4a4a9",
  1064. "reference": "2e32a6d48972b2c1976ed5d8967145b6cec4a4a9",
  1065. "shasum": ""
  1066. },
  1067. "require": {
  1068. "php": "^7.1",
  1069. "phpdocumentor/reflection-common": "^2.0"
  1070. },
  1071. "require-dev": {
  1072. "ext-tokenizer": "^7.1",
  1073. "mockery/mockery": "~1",
  1074. "phpunit/phpunit": "^7.0"
  1075. },
  1076. "type": "library",
  1077. "extra": {
  1078. "branch-alias": {
  1079. "dev-master": "1.x-dev"
  1080. }
  1081. },
  1082. "autoload": {
  1083. "psr-4": {
  1084. "phpDocumentor\\Reflection\\": "src"
  1085. }
  1086. },
  1087. "notification-url": "https://packagist.org/downloads/",
  1088. "license": [
  1089. "MIT"
  1090. ],
  1091. "authors": [
  1092. {
  1093. "name": "Mike van Riel",
  1094. "email": "me@mikevanriel.com"
  1095. }
  1096. ],
  1097. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  1098. "time": "2019-08-22T18:11:29+00:00"
  1099. },
  1100. {
  1101. "name": "phpspec/prophecy",
  1102. "version": "v1.10.3",
  1103. "source": {
  1104. "type": "git",
  1105. "url": "https://github.com/phpspec/prophecy.git",
  1106. "reference": "451c3cd1418cf640de218914901e51b064abb093"
  1107. },
  1108. "dist": {
  1109. "type": "zip",
  1110. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/451c3cd1418cf640de218914901e51b064abb093",
  1111. "reference": "451c3cd1418cf640de218914901e51b064abb093",
  1112. "shasum": ""
  1113. },
  1114. "require": {
  1115. "doctrine/instantiator": "^1.0.2",
  1116. "php": "^5.3|^7.0",
  1117. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0|^5.0",
  1118. "sebastian/comparator": "^1.2.3|^2.0|^3.0|^4.0",
  1119. "sebastian/recursion-context": "^1.0|^2.0|^3.0|^4.0"
  1120. },
  1121. "require-dev": {
  1122. "phpspec/phpspec": "^2.5 || ^3.2",
  1123. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  1124. },
  1125. "type": "library",
  1126. "extra": {
  1127. "branch-alias": {
  1128. "dev-master": "1.10.x-dev"
  1129. }
  1130. },
  1131. "autoload": {
  1132. "psr-4": {
  1133. "Prophecy\\": "src/Prophecy"
  1134. }
  1135. },
  1136. "notification-url": "https://packagist.org/downloads/",
  1137. "license": [
  1138. "MIT"
  1139. ],
  1140. "authors": [
  1141. {
  1142. "name": "Konstantin Kudryashov",
  1143. "email": "ever.zet@gmail.com",
  1144. "homepage": "http://everzet.com"
  1145. },
  1146. {
  1147. "name": "Marcello Duarte",
  1148. "email": "marcello.duarte@gmail.com"
  1149. }
  1150. ],
  1151. "description": "Highly opinionated mocking framework for PHP 5.3+",
  1152. "homepage": "https://github.com/phpspec/prophecy",
  1153. "keywords": [
  1154. "Double",
  1155. "Dummy",
  1156. "fake",
  1157. "mock",
  1158. "spy",
  1159. "stub"
  1160. ],
  1161. "time": "2020-03-05T15:02:03+00:00"
  1162. },
  1163. {
  1164. "name": "phpunit/php-code-coverage",
  1165. "version": "6.1.4",
  1166. "source": {
  1167. "type": "git",
  1168. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  1169. "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d"
  1170. },
  1171. "dist": {
  1172. "type": "zip",
  1173. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/807e6013b00af69b6c5d9ceb4282d0393dbb9d8d",
  1174. "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d",
  1175. "shasum": ""
  1176. },
  1177. "require": {
  1178. "ext-dom": "*",
  1179. "ext-xmlwriter": "*",
  1180. "php": "^7.1",
  1181. "phpunit/php-file-iterator": "^2.0",
  1182. "phpunit/php-text-template": "^1.2.1",
  1183. "phpunit/php-token-stream": "^3.0",
  1184. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  1185. "sebastian/environment": "^3.1 || ^4.0",
  1186. "sebastian/version": "^2.0.1",
  1187. "theseer/tokenizer": "^1.1"
  1188. },
  1189. "require-dev": {
  1190. "phpunit/phpunit": "^7.0"
  1191. },
  1192. "suggest": {
  1193. "ext-xdebug": "^2.6.0"
  1194. },
  1195. "type": "library",
  1196. "extra": {
  1197. "branch-alias": {
  1198. "dev-master": "6.1-dev"
  1199. }
  1200. },
  1201. "autoload": {
  1202. "classmap": [
  1203. "src/"
  1204. ]
  1205. },
  1206. "notification-url": "https://packagist.org/downloads/",
  1207. "license": [
  1208. "BSD-3-Clause"
  1209. ],
  1210. "authors": [
  1211. {
  1212. "name": "Sebastian Bergmann",
  1213. "email": "sebastian@phpunit.de",
  1214. "role": "lead"
  1215. }
  1216. ],
  1217. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  1218. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  1219. "keywords": [
  1220. "coverage",
  1221. "testing",
  1222. "xunit"
  1223. ],
  1224. "time": "2018-10-31T16:06:48+00:00"
  1225. },
  1226. {
  1227. "name": "phpunit/php-file-iterator",
  1228. "version": "2.0.2",
  1229. "source": {
  1230. "type": "git",
  1231. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  1232. "reference": "050bedf145a257b1ff02746c31894800e5122946"
  1233. },
  1234. "dist": {
  1235. "type": "zip",
  1236. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/050bedf145a257b1ff02746c31894800e5122946",
  1237. "reference": "050bedf145a257b1ff02746c31894800e5122946",
  1238. "shasum": ""
  1239. },
  1240. "require": {
  1241. "php": "^7.1"
  1242. },
  1243. "require-dev": {
  1244. "phpunit/phpunit": "^7.1"
  1245. },
  1246. "type": "library",
  1247. "extra": {
  1248. "branch-alias": {
  1249. "dev-master": "2.0.x-dev"
  1250. }
  1251. },
  1252. "autoload": {
  1253. "classmap": [
  1254. "src/"
  1255. ]
  1256. },
  1257. "notification-url": "https://packagist.org/downloads/",
  1258. "license": [
  1259. "BSD-3-Clause"
  1260. ],
  1261. "authors": [
  1262. {
  1263. "name": "Sebastian Bergmann",
  1264. "email": "sebastian@phpunit.de",
  1265. "role": "lead"
  1266. }
  1267. ],
  1268. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  1269. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  1270. "keywords": [
  1271. "filesystem",
  1272. "iterator"
  1273. ],
  1274. "time": "2018-09-13T20:33:42+00:00"
  1275. },
  1276. {
  1277. "name": "phpunit/php-text-template",
  1278. "version": "1.2.1",
  1279. "source": {
  1280. "type": "git",
  1281. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  1282. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  1283. },
  1284. "dist": {
  1285. "type": "zip",
  1286. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  1287. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  1288. "shasum": ""
  1289. },
  1290. "require": {
  1291. "php": ">=5.3.3"
  1292. },
  1293. "type": "library",
  1294. "autoload": {
  1295. "classmap": [
  1296. "src/"
  1297. ]
  1298. },
  1299. "notification-url": "https://packagist.org/downloads/",
  1300. "license": [
  1301. "BSD-3-Clause"
  1302. ],
  1303. "authors": [
  1304. {
  1305. "name": "Sebastian Bergmann",
  1306. "email": "sebastian@phpunit.de",
  1307. "role": "lead"
  1308. }
  1309. ],
  1310. "description": "Simple template engine.",
  1311. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  1312. "keywords": [
  1313. "template"
  1314. ],
  1315. "time": "2015-06-21T13:50:34+00:00"
  1316. },
  1317. {
  1318. "name": "phpunit/php-timer",
  1319. "version": "2.1.2",
  1320. "source": {
  1321. "type": "git",
  1322. "url": "https://github.com/sebastianbergmann/php-timer.git",
  1323. "reference": "1038454804406b0b5f5f520358e78c1c2f71501e"
  1324. },
  1325. "dist": {
  1326. "type": "zip",
  1327. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/1038454804406b0b5f5f520358e78c1c2f71501e",
  1328. "reference": "1038454804406b0b5f5f520358e78c1c2f71501e",
  1329. "shasum": ""
  1330. },
  1331. "require": {
  1332. "php": "^7.1"
  1333. },
  1334. "require-dev": {
  1335. "phpunit/phpunit": "^7.0"
  1336. },
  1337. "type": "library",
  1338. "extra": {
  1339. "branch-alias": {
  1340. "dev-master": "2.1-dev"
  1341. }
  1342. },
  1343. "autoload": {
  1344. "classmap": [
  1345. "src/"
  1346. ]
  1347. },
  1348. "notification-url": "https://packagist.org/downloads/",
  1349. "license": [
  1350. "BSD-3-Clause"
  1351. ],
  1352. "authors": [
  1353. {
  1354. "name": "Sebastian Bergmann",
  1355. "email": "sebastian@phpunit.de",
  1356. "role": "lead"
  1357. }
  1358. ],
  1359. "description": "Utility class for timing",
  1360. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  1361. "keywords": [
  1362. "timer"
  1363. ],
  1364. "time": "2019-06-07T04:22:29+00:00"
  1365. },
  1366. {
  1367. "name": "phpunit/php-token-stream",
  1368. "version": "3.1.1",
  1369. "source": {
  1370. "type": "git",
  1371. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  1372. "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff"
  1373. },
  1374. "dist": {
  1375. "type": "zip",
  1376. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/995192df77f63a59e47f025390d2d1fdf8f425ff",
  1377. "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff",
  1378. "shasum": ""
  1379. },
  1380. "require": {
  1381. "ext-tokenizer": "*",
  1382. "php": "^7.1"
  1383. },
  1384. "require-dev": {
  1385. "phpunit/phpunit": "^7.0"
  1386. },
  1387. "type": "library",
  1388. "extra": {
  1389. "branch-alias": {
  1390. "dev-master": "3.1-dev"
  1391. }
  1392. },
  1393. "autoload": {
  1394. "classmap": [
  1395. "src/"
  1396. ]
  1397. },
  1398. "notification-url": "https://packagist.org/downloads/",
  1399. "license": [
  1400. "BSD-3-Clause"
  1401. ],
  1402. "authors": [
  1403. {
  1404. "name": "Sebastian Bergmann",
  1405. "email": "sebastian@phpunit.de"
  1406. }
  1407. ],
  1408. "description": "Wrapper around PHP's tokenizer extension.",
  1409. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  1410. "keywords": [
  1411. "tokenizer"
  1412. ],
  1413. "abandoned": true,
  1414. "time": "2019-09-17T06:23:10+00:00"
  1415. },
  1416. {
  1417. "name": "phpunit/phpunit",
  1418. "version": "7.5.20",
  1419. "source": {
  1420. "type": "git",
  1421. "url": "https://github.com/sebastianbergmann/phpunit.git",
  1422. "reference": "9467db479d1b0487c99733bb1e7944d32deded2c"
  1423. },
  1424. "dist": {
  1425. "type": "zip",
  1426. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/9467db479d1b0487c99733bb1e7944d32deded2c",
  1427. "reference": "9467db479d1b0487c99733bb1e7944d32deded2c",
  1428. "shasum": ""
  1429. },
  1430. "require": {
  1431. "doctrine/instantiator": "^1.1",
  1432. "ext-dom": "*",
  1433. "ext-json": "*",
  1434. "ext-libxml": "*",
  1435. "ext-mbstring": "*",
  1436. "ext-xml": "*",
  1437. "myclabs/deep-copy": "^1.7",
  1438. "phar-io/manifest": "^1.0.2",
  1439. "phar-io/version": "^2.0",
  1440. "php": "^7.1",
  1441. "phpspec/prophecy": "^1.7",
  1442. "phpunit/php-code-coverage": "^6.0.7",
  1443. "phpunit/php-file-iterator": "^2.0.1",
  1444. "phpunit/php-text-template": "^1.2.1",
  1445. "phpunit/php-timer": "^2.1",
  1446. "sebastian/comparator": "^3.0",
  1447. "sebastian/diff": "^3.0",
  1448. "sebastian/environment": "^4.0",
  1449. "sebastian/exporter": "^3.1",
  1450. "sebastian/global-state": "^2.0",
  1451. "sebastian/object-enumerator": "^3.0.3",
  1452. "sebastian/resource-operations": "^2.0",
  1453. "sebastian/version": "^2.0.1"
  1454. },
  1455. "conflict": {
  1456. "phpunit/phpunit-mock-objects": "*"
  1457. },
  1458. "require-dev": {
  1459. "ext-pdo": "*"
  1460. },
  1461. "suggest": {
  1462. "ext-soap": "*",
  1463. "ext-xdebug": "*",
  1464. "phpunit/php-invoker": "^2.0"
  1465. },
  1466. "bin": [
  1467. "phpunit"
  1468. ],
  1469. "type": "library",
  1470. "extra": {
  1471. "branch-alias": {
  1472. "dev-master": "7.5-dev"
  1473. }
  1474. },
  1475. "autoload": {
  1476. "classmap": [
  1477. "src/"
  1478. ]
  1479. },
  1480. "notification-url": "https://packagist.org/downloads/",
  1481. "license": [
  1482. "BSD-3-Clause"
  1483. ],
  1484. "authors": [
  1485. {
  1486. "name": "Sebastian Bergmann",
  1487. "email": "sebastian@phpunit.de",
  1488. "role": "lead"
  1489. }
  1490. ],
  1491. "description": "The PHP Unit Testing framework.",
  1492. "homepage": "https://phpunit.de/",
  1493. "keywords": [
  1494. "phpunit",
  1495. "testing",
  1496. "xunit"
  1497. ],
  1498. "time": "2020-01-08T08:45:45+00:00"
  1499. },
  1500. {
  1501. "name": "psr/container",
  1502. "version": "1.0.0",
  1503. "source": {
  1504. "type": "git",
  1505. "url": "https://github.com/php-fig/container.git",
  1506. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  1507. },
  1508. "dist": {
  1509. "type": "zip",
  1510. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1511. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1512. "shasum": ""
  1513. },
  1514. "require": {
  1515. "php": ">=5.3.0"
  1516. },
  1517. "type": "library",
  1518. "extra": {
  1519. "branch-alias": {
  1520. "dev-master": "1.0.x-dev"
  1521. }
  1522. },
  1523. "autoload": {
  1524. "psr-4": {
  1525. "Psr\\Container\\": "src/"
  1526. }
  1527. },
  1528. "notification-url": "https://packagist.org/downloads/",
  1529. "license": [
  1530. "MIT"
  1531. ],
  1532. "authors": [
  1533. {
  1534. "name": "PHP-FIG",
  1535. "homepage": "http://www.php-fig.org/"
  1536. }
  1537. ],
  1538. "description": "Common Container Interface (PHP FIG PSR-11)",
  1539. "homepage": "https://github.com/php-fig/container",
  1540. "keywords": [
  1541. "PSR-11",
  1542. "container",
  1543. "container-interface",
  1544. "container-interop",
  1545. "psr"
  1546. ],
  1547. "time": "2017-02-14T16:28:37+00:00"
  1548. },
  1549. {
  1550. "name": "psr/http-message",
  1551. "version": "1.0.1",
  1552. "source": {
  1553. "type": "git",
  1554. "url": "https://github.com/php-fig/http-message.git",
  1555. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  1556. },
  1557. "dist": {
  1558. "type": "zip",
  1559. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  1560. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  1561. "shasum": ""
  1562. },
  1563. "require": {
  1564. "php": ">=5.3.0"
  1565. },
  1566. "type": "library",
  1567. "extra": {
  1568. "branch-alias": {
  1569. "dev-master": "1.0.x-dev"
  1570. }
  1571. },
  1572. "autoload": {
  1573. "psr-4": {
  1574. "Psr\\Http\\Message\\": "src/"
  1575. }
  1576. },
  1577. "notification-url": "https://packagist.org/downloads/",
  1578. "license": [
  1579. "MIT"
  1580. ],
  1581. "authors": [
  1582. {
  1583. "name": "PHP-FIG",
  1584. "homepage": "http://www.php-fig.org/"
  1585. }
  1586. ],
  1587. "description": "Common interface for HTTP messages",
  1588. "homepage": "https://github.com/php-fig/http-message",
  1589. "keywords": [
  1590. "http",
  1591. "http-message",
  1592. "psr",
  1593. "psr-7",
  1594. "request",
  1595. "response"
  1596. ],
  1597. "time": "2016-08-06T14:39:51+00:00"
  1598. },
  1599. {
  1600. "name": "ralouphie/getallheaders",
  1601. "version": "3.0.3",
  1602. "source": {
  1603. "type": "git",
  1604. "url": "https://github.com/ralouphie/getallheaders.git",
  1605. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  1606. },
  1607. "dist": {
  1608. "type": "zip",
  1609. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  1610. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  1611. "shasum": ""
  1612. },
  1613. "require": {
  1614. "php": ">=5.6"
  1615. },
  1616. "require-dev": {
  1617. "php-coveralls/php-coveralls": "^2.1",
  1618. "phpunit/phpunit": "^5 || ^6.5"
  1619. },
  1620. "type": "library",
  1621. "autoload": {
  1622. "files": [
  1623. "src/getallheaders.php"
  1624. ]
  1625. },
  1626. "notification-url": "https://packagist.org/downloads/",
  1627. "license": [
  1628. "MIT"
  1629. ],
  1630. "authors": [
  1631. {
  1632. "name": "Ralph Khattar",
  1633. "email": "ralph.khattar@gmail.com"
  1634. }
  1635. ],
  1636. "description": "A polyfill for getallheaders.",
  1637. "time": "2019-03-08T08:55:37+00:00"
  1638. },
  1639. {
  1640. "name": "sebastian/code-unit-reverse-lookup",
  1641. "version": "1.0.1",
  1642. "source": {
  1643. "type": "git",
  1644. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  1645. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  1646. },
  1647. "dist": {
  1648. "type": "zip",
  1649. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  1650. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  1651. "shasum": ""
  1652. },
  1653. "require": {
  1654. "php": "^5.6 || ^7.0"
  1655. },
  1656. "require-dev": {
  1657. "phpunit/phpunit": "^5.7 || ^6.0"
  1658. },
  1659. "type": "library",
  1660. "extra": {
  1661. "branch-alias": {
  1662. "dev-master": "1.0.x-dev"
  1663. }
  1664. },
  1665. "autoload": {
  1666. "classmap": [
  1667. "src/"
  1668. ]
  1669. },
  1670. "notification-url": "https://packagist.org/downloads/",
  1671. "license": [
  1672. "BSD-3-Clause"
  1673. ],
  1674. "authors": [
  1675. {
  1676. "name": "Sebastian Bergmann",
  1677. "email": "sebastian@phpunit.de"
  1678. }
  1679. ],
  1680. "description": "Looks up which function or method a line of code belongs to",
  1681. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  1682. "time": "2017-03-04T06:30:41+00:00"
  1683. },
  1684. {
  1685. "name": "sebastian/comparator",
  1686. "version": "3.0.2",
  1687. "source": {
  1688. "type": "git",
  1689. "url": "https://github.com/sebastianbergmann/comparator.git",
  1690. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da"
  1691. },
  1692. "dist": {
  1693. "type": "zip",
  1694. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  1695. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  1696. "shasum": ""
  1697. },
  1698. "require": {
  1699. "php": "^7.1",
  1700. "sebastian/diff": "^3.0",
  1701. "sebastian/exporter": "^3.1"
  1702. },
  1703. "require-dev": {
  1704. "phpunit/phpunit": "^7.1"
  1705. },
  1706. "type": "library",
  1707. "extra": {
  1708. "branch-alias": {
  1709. "dev-master": "3.0-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": "Jeff Welch",
  1724. "email": "whatthejeff@gmail.com"
  1725. },
  1726. {
  1727. "name": "Volker Dusch",
  1728. "email": "github@wallbash.com"
  1729. },
  1730. {
  1731. "name": "Bernhard Schussek",
  1732. "email": "bschussek@2bepublished.at"
  1733. },
  1734. {
  1735. "name": "Sebastian Bergmann",
  1736. "email": "sebastian@phpunit.de"
  1737. }
  1738. ],
  1739. "description": "Provides the functionality to compare PHP values for equality",
  1740. "homepage": "https://github.com/sebastianbergmann/comparator",
  1741. "keywords": [
  1742. "comparator",
  1743. "compare",
  1744. "equality"
  1745. ],
  1746. "time": "2018-07-12T15:12:46+00:00"
  1747. },
  1748. {
  1749. "name": "sebastian/diff",
  1750. "version": "3.0.2",
  1751. "source": {
  1752. "type": "git",
  1753. "url": "https://github.com/sebastianbergmann/diff.git",
  1754. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29"
  1755. },
  1756. "dist": {
  1757. "type": "zip",
  1758. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  1759. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  1760. "shasum": ""
  1761. },
  1762. "require": {
  1763. "php": "^7.1"
  1764. },
  1765. "require-dev": {
  1766. "phpunit/phpunit": "^7.5 || ^8.0",
  1767. "symfony/process": "^2 || ^3.3 || ^4"
  1768. },
  1769. "type": "library",
  1770. "extra": {
  1771. "branch-alias": {
  1772. "dev-master": "3.0-dev"
  1773. }
  1774. },
  1775. "autoload": {
  1776. "classmap": [
  1777. "src/"
  1778. ]
  1779. },
  1780. "notification-url": "https://packagist.org/downloads/",
  1781. "license": [
  1782. "BSD-3-Clause"
  1783. ],
  1784. "authors": [
  1785. {
  1786. "name": "Kore Nordmann",
  1787. "email": "mail@kore-nordmann.de"
  1788. },
  1789. {
  1790. "name": "Sebastian Bergmann",
  1791. "email": "sebastian@phpunit.de"
  1792. }
  1793. ],
  1794. "description": "Diff implementation",
  1795. "homepage": "https://github.com/sebastianbergmann/diff",
  1796. "keywords": [
  1797. "diff",
  1798. "udiff",
  1799. "unidiff",
  1800. "unified diff"
  1801. ],
  1802. "time": "2019-02-04T06:01:07+00:00"
  1803. },
  1804. {
  1805. "name": "sebastian/environment",
  1806. "version": "4.2.3",
  1807. "source": {
  1808. "type": "git",
  1809. "url": "https://github.com/sebastianbergmann/environment.git",
  1810. "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368"
  1811. },
  1812. "dist": {
  1813. "type": "zip",
  1814. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/464c90d7bdf5ad4e8a6aea15c091fec0603d4368",
  1815. "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368",
  1816. "shasum": ""
  1817. },
  1818. "require": {
  1819. "php": "^7.1"
  1820. },
  1821. "require-dev": {
  1822. "phpunit/phpunit": "^7.5"
  1823. },
  1824. "suggest": {
  1825. "ext-posix": "*"
  1826. },
  1827. "type": "library",
  1828. "extra": {
  1829. "branch-alias": {
  1830. "dev-master": "4.2-dev"
  1831. }
  1832. },
  1833. "autoload": {
  1834. "classmap": [
  1835. "src/"
  1836. ]
  1837. },
  1838. "notification-url": "https://packagist.org/downloads/",
  1839. "license": [
  1840. "BSD-3-Clause"
  1841. ],
  1842. "authors": [
  1843. {
  1844. "name": "Sebastian Bergmann",
  1845. "email": "sebastian@phpunit.de"
  1846. }
  1847. ],
  1848. "description": "Provides functionality to handle HHVM/PHP environments",
  1849. "homepage": "http://www.github.com/sebastianbergmann/environment",
  1850. "keywords": [
  1851. "Xdebug",
  1852. "environment",
  1853. "hhvm"
  1854. ],
  1855. "time": "2019-11-20T08:46:58+00:00"
  1856. },
  1857. {
  1858. "name": "sebastian/exporter",
  1859. "version": "3.1.2",
  1860. "source": {
  1861. "type": "git",
  1862. "url": "https://github.com/sebastianbergmann/exporter.git",
  1863. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e"
  1864. },
  1865. "dist": {
  1866. "type": "zip",
  1867. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/68609e1261d215ea5b21b7987539cbfbe156ec3e",
  1868. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e",
  1869. "shasum": ""
  1870. },
  1871. "require": {
  1872. "php": "^7.0",
  1873. "sebastian/recursion-context": "^3.0"
  1874. },
  1875. "require-dev": {
  1876. "ext-mbstring": "*",
  1877. "phpunit/phpunit": "^6.0"
  1878. },
  1879. "type": "library",
  1880. "extra": {
  1881. "branch-alias": {
  1882. "dev-master": "3.1.x-dev"
  1883. }
  1884. },
  1885. "autoload": {
  1886. "classmap": [
  1887. "src/"
  1888. ]
  1889. },
  1890. "notification-url": "https://packagist.org/downloads/",
  1891. "license": [
  1892. "BSD-3-Clause"
  1893. ],
  1894. "authors": [
  1895. {
  1896. "name": "Sebastian Bergmann",
  1897. "email": "sebastian@phpunit.de"
  1898. },
  1899. {
  1900. "name": "Jeff Welch",
  1901. "email": "whatthejeff@gmail.com"
  1902. },
  1903. {
  1904. "name": "Volker Dusch",
  1905. "email": "github@wallbash.com"
  1906. },
  1907. {
  1908. "name": "Adam Harvey",
  1909. "email": "aharvey@php.net"
  1910. },
  1911. {
  1912. "name": "Bernhard Schussek",
  1913. "email": "bschussek@gmail.com"
  1914. }
  1915. ],
  1916. "description": "Provides the functionality to export PHP variables for visualization",
  1917. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  1918. "keywords": [
  1919. "export",
  1920. "exporter"
  1921. ],
  1922. "time": "2019-09-14T09:02:43+00:00"
  1923. },
  1924. {
  1925. "name": "sebastian/global-state",
  1926. "version": "2.0.0",
  1927. "source": {
  1928. "type": "git",
  1929. "url": "https://github.com/sebastianbergmann/global-state.git",
  1930. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  1931. },
  1932. "dist": {
  1933. "type": "zip",
  1934. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  1935. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  1936. "shasum": ""
  1937. },
  1938. "require": {
  1939. "php": "^7.0"
  1940. },
  1941. "require-dev": {
  1942. "phpunit/phpunit": "^6.0"
  1943. },
  1944. "suggest": {
  1945. "ext-uopz": "*"
  1946. },
  1947. "type": "library",
  1948. "extra": {
  1949. "branch-alias": {
  1950. "dev-master": "2.0-dev"
  1951. }
  1952. },
  1953. "autoload": {
  1954. "classmap": [
  1955. "src/"
  1956. ]
  1957. },
  1958. "notification-url": "https://packagist.org/downloads/",
  1959. "license": [
  1960. "BSD-3-Clause"
  1961. ],
  1962. "authors": [
  1963. {
  1964. "name": "Sebastian Bergmann",
  1965. "email": "sebastian@phpunit.de"
  1966. }
  1967. ],
  1968. "description": "Snapshotting of global state",
  1969. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  1970. "keywords": [
  1971. "global state"
  1972. ],
  1973. "time": "2017-04-27T15:39:26+00:00"
  1974. },
  1975. {
  1976. "name": "sebastian/object-enumerator",
  1977. "version": "3.0.3",
  1978. "source": {
  1979. "type": "git",
  1980. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  1981. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  1982. },
  1983. "dist": {
  1984. "type": "zip",
  1985. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  1986. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  1987. "shasum": ""
  1988. },
  1989. "require": {
  1990. "php": "^7.0",
  1991. "sebastian/object-reflector": "^1.1.1",
  1992. "sebastian/recursion-context": "^3.0"
  1993. },
  1994. "require-dev": {
  1995. "phpunit/phpunit": "^6.0"
  1996. },
  1997. "type": "library",
  1998. "extra": {
  1999. "branch-alias": {
  2000. "dev-master": "3.0.x-dev"
  2001. }
  2002. },
  2003. "autoload": {
  2004. "classmap": [
  2005. "src/"
  2006. ]
  2007. },
  2008. "notification-url": "https://packagist.org/downloads/",
  2009. "license": [
  2010. "BSD-3-Clause"
  2011. ],
  2012. "authors": [
  2013. {
  2014. "name": "Sebastian Bergmann",
  2015. "email": "sebastian@phpunit.de"
  2016. }
  2017. ],
  2018. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  2019. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  2020. "time": "2017-08-03T12:35:26+00:00"
  2021. },
  2022. {
  2023. "name": "sebastian/object-reflector",
  2024. "version": "1.1.1",
  2025. "source": {
  2026. "type": "git",
  2027. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  2028. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  2029. },
  2030. "dist": {
  2031. "type": "zip",
  2032. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  2033. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  2034. "shasum": ""
  2035. },
  2036. "require": {
  2037. "php": "^7.0"
  2038. },
  2039. "require-dev": {
  2040. "phpunit/phpunit": "^6.0"
  2041. },
  2042. "type": "library",
  2043. "extra": {
  2044. "branch-alias": {
  2045. "dev-master": "1.1-dev"
  2046. }
  2047. },
  2048. "autoload": {
  2049. "classmap": [
  2050. "src/"
  2051. ]
  2052. },
  2053. "notification-url": "https://packagist.org/downloads/",
  2054. "license": [
  2055. "BSD-3-Clause"
  2056. ],
  2057. "authors": [
  2058. {
  2059. "name": "Sebastian Bergmann",
  2060. "email": "sebastian@phpunit.de"
  2061. }
  2062. ],
  2063. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  2064. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  2065. "time": "2017-03-29T09:07:27+00:00"
  2066. },
  2067. {
  2068. "name": "sebastian/recursion-context",
  2069. "version": "3.0.0",
  2070. "source": {
  2071. "type": "git",
  2072. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  2073. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  2074. },
  2075. "dist": {
  2076. "type": "zip",
  2077. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  2078. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  2079. "shasum": ""
  2080. },
  2081. "require": {
  2082. "php": "^7.0"
  2083. },
  2084. "require-dev": {
  2085. "phpunit/phpunit": "^6.0"
  2086. },
  2087. "type": "library",
  2088. "extra": {
  2089. "branch-alias": {
  2090. "dev-master": "3.0.x-dev"
  2091. }
  2092. },
  2093. "autoload": {
  2094. "classmap": [
  2095. "src/"
  2096. ]
  2097. },
  2098. "notification-url": "https://packagist.org/downloads/",
  2099. "license": [
  2100. "BSD-3-Clause"
  2101. ],
  2102. "authors": [
  2103. {
  2104. "name": "Jeff Welch",
  2105. "email": "whatthejeff@gmail.com"
  2106. },
  2107. {
  2108. "name": "Sebastian Bergmann",
  2109. "email": "sebastian@phpunit.de"
  2110. },
  2111. {
  2112. "name": "Adam Harvey",
  2113. "email": "aharvey@php.net"
  2114. }
  2115. ],
  2116. "description": "Provides functionality to recursively process PHP variables",
  2117. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  2118. "time": "2017-03-03T06:23:57+00:00"
  2119. },
  2120. {
  2121. "name": "sebastian/resource-operations",
  2122. "version": "2.0.1",
  2123. "source": {
  2124. "type": "git",
  2125. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  2126. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9"
  2127. },
  2128. "dist": {
  2129. "type": "zip",
  2130. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  2131. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  2132. "shasum": ""
  2133. },
  2134. "require": {
  2135. "php": "^7.1"
  2136. },
  2137. "type": "library",
  2138. "extra": {
  2139. "branch-alias": {
  2140. "dev-master": "2.0-dev"
  2141. }
  2142. },
  2143. "autoload": {
  2144. "classmap": [
  2145. "src/"
  2146. ]
  2147. },
  2148. "notification-url": "https://packagist.org/downloads/",
  2149. "license": [
  2150. "BSD-3-Clause"
  2151. ],
  2152. "authors": [
  2153. {
  2154. "name": "Sebastian Bergmann",
  2155. "email": "sebastian@phpunit.de"
  2156. }
  2157. ],
  2158. "description": "Provides a list of PHP built-in functions that operate on resources",
  2159. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  2160. "time": "2018-10-04T04:07:39+00:00"
  2161. },
  2162. {
  2163. "name": "sebastian/version",
  2164. "version": "2.0.1",
  2165. "source": {
  2166. "type": "git",
  2167. "url": "https://github.com/sebastianbergmann/version.git",
  2168. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  2169. },
  2170. "dist": {
  2171. "type": "zip",
  2172. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  2173. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  2174. "shasum": ""
  2175. },
  2176. "require": {
  2177. "php": ">=5.6"
  2178. },
  2179. "type": "library",
  2180. "extra": {
  2181. "branch-alias": {
  2182. "dev-master": "2.0.x-dev"
  2183. }
  2184. },
  2185. "autoload": {
  2186. "classmap": [
  2187. "src/"
  2188. ]
  2189. },
  2190. "notification-url": "https://packagist.org/downloads/",
  2191. "license": [
  2192. "BSD-3-Clause"
  2193. ],
  2194. "authors": [
  2195. {
  2196. "name": "Sebastian Bergmann",
  2197. "email": "sebastian@phpunit.de",
  2198. "role": "lead"
  2199. }
  2200. ],
  2201. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  2202. "homepage": "https://github.com/sebastianbergmann/version",
  2203. "time": "2016-10-03T07:35:21+00:00"
  2204. },
  2205. {
  2206. "name": "symfony/browser-kit",
  2207. "version": "v4.4.16",
  2208. "source": {
  2209. "type": "git",
  2210. "url": "https://github.com/symfony/browser-kit.git",
  2211. "reference": "99b640fd5d06877e3242ba0393b40a7877dfe534"
  2212. },
  2213. "dist": {
  2214. "type": "zip",
  2215. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/99b640fd5d06877e3242ba0393b40a7877dfe534",
  2216. "reference": "99b640fd5d06877e3242ba0393b40a7877dfe534",
  2217. "shasum": ""
  2218. },
  2219. "require": {
  2220. "php": ">=7.1.3",
  2221. "symfony/dom-crawler": "^3.4|^4.0|^5.0"
  2222. },
  2223. "require-dev": {
  2224. "symfony/css-selector": "^3.4|^4.0|^5.0",
  2225. "symfony/http-client": "^4.3|^5.0",
  2226. "symfony/mime": "^4.3|^5.0",
  2227. "symfony/process": "^3.4|^4.0|^5.0"
  2228. },
  2229. "suggest": {
  2230. "symfony/process": ""
  2231. },
  2232. "type": "library",
  2233. "autoload": {
  2234. "psr-4": {
  2235. "Symfony\\Component\\BrowserKit\\": ""
  2236. },
  2237. "exclude-from-classmap": [
  2238. "/Tests/"
  2239. ]
  2240. },
  2241. "notification-url": "https://packagist.org/downloads/",
  2242. "license": [
  2243. "MIT"
  2244. ],
  2245. "authors": [
  2246. {
  2247. "name": "Fabien Potencier",
  2248. "email": "fabien@symfony.com"
  2249. },
  2250. {
  2251. "name": "Symfony Community",
  2252. "homepage": "https://symfony.com/contributors"
  2253. }
  2254. ],
  2255. "description": "Symfony BrowserKit Component",
  2256. "homepage": "https://symfony.com",
  2257. "time": "2020-10-24T11:50:19+00:00"
  2258. },
  2259. {
  2260. "name": "symfony/console",
  2261. "version": "v4.4.16",
  2262. "source": {
  2263. "type": "git",
  2264. "url": "https://github.com/symfony/console.git",
  2265. "reference": "20f73dd143a5815d475e0838ff867bce1eebd9d5"
  2266. },
  2267. "dist": {
  2268. "type": "zip",
  2269. "url": "https://api.github.com/repos/symfony/console/zipball/20f73dd143a5815d475e0838ff867bce1eebd9d5",
  2270. "reference": "20f73dd143a5815d475e0838ff867bce1eebd9d5",
  2271. "shasum": ""
  2272. },
  2273. "require": {
  2274. "php": ">=7.1.3",
  2275. "symfony/polyfill-mbstring": "~1.0",
  2276. "symfony/polyfill-php73": "^1.8",
  2277. "symfony/polyfill-php80": "^1.15",
  2278. "symfony/service-contracts": "^1.1|^2"
  2279. },
  2280. "conflict": {
  2281. "symfony/dependency-injection": "<3.4",
  2282. "symfony/event-dispatcher": "<4.3|>=5",
  2283. "symfony/lock": "<4.4",
  2284. "symfony/process": "<3.3"
  2285. },
  2286. "provide": {
  2287. "psr/log-implementation": "1.0"
  2288. },
  2289. "require-dev": {
  2290. "psr/log": "~1.0",
  2291. "symfony/config": "^3.4|^4.0|^5.0",
  2292. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  2293. "symfony/event-dispatcher": "^4.3",
  2294. "symfony/lock": "^4.4|^5.0",
  2295. "symfony/process": "^3.4|^4.0|^5.0",
  2296. "symfony/var-dumper": "^4.3|^5.0"
  2297. },
  2298. "suggest": {
  2299. "psr/log": "For using the console logger",
  2300. "symfony/event-dispatcher": "",
  2301. "symfony/lock": "",
  2302. "symfony/process": ""
  2303. },
  2304. "type": "library",
  2305. "autoload": {
  2306. "psr-4": {
  2307. "Symfony\\Component\\Console\\": ""
  2308. },
  2309. "exclude-from-classmap": [
  2310. "/Tests/"
  2311. ]
  2312. },
  2313. "notification-url": "https://packagist.org/downloads/",
  2314. "license": [
  2315. "MIT"
  2316. ],
  2317. "authors": [
  2318. {
  2319. "name": "Fabien Potencier",
  2320. "email": "fabien@symfony.com"
  2321. },
  2322. {
  2323. "name": "Symfony Community",
  2324. "homepage": "https://symfony.com/contributors"
  2325. }
  2326. ],
  2327. "description": "Symfony Console Component",
  2328. "homepage": "https://symfony.com",
  2329. "time": "2020-10-24T11:50:19+00:00"
  2330. },
  2331. {
  2332. "name": "symfony/css-selector",
  2333. "version": "v4.4.16",
  2334. "source": {
  2335. "type": "git",
  2336. "url": "https://github.com/symfony/css-selector.git",
  2337. "reference": "719506cffda9dba80c75d94ac50f1a2561520e4f"
  2338. },
  2339. "dist": {
  2340. "type": "zip",
  2341. "url": "https://api.github.com/repos/symfony/css-selector/zipball/719506cffda9dba80c75d94ac50f1a2561520e4f",
  2342. "reference": "719506cffda9dba80c75d94ac50f1a2561520e4f",
  2343. "shasum": ""
  2344. },
  2345. "require": {
  2346. "php": ">=7.1.3"
  2347. },
  2348. "type": "library",
  2349. "autoload": {
  2350. "psr-4": {
  2351. "Symfony\\Component\\CssSelector\\": ""
  2352. },
  2353. "exclude-from-classmap": [
  2354. "/Tests/"
  2355. ]
  2356. },
  2357. "notification-url": "https://packagist.org/downloads/",
  2358. "license": [
  2359. "MIT"
  2360. ],
  2361. "authors": [
  2362. {
  2363. "name": "Fabien Potencier",
  2364. "email": "fabien@symfony.com"
  2365. },
  2366. {
  2367. "name": "Jean-François Simon",
  2368. "email": "jeanfrancois.simon@sensiolabs.com"
  2369. },
  2370. {
  2371. "name": "Symfony Community",
  2372. "homepage": "https://symfony.com/contributors"
  2373. }
  2374. ],
  2375. "description": "Symfony CssSelector Component",
  2376. "homepage": "https://symfony.com",
  2377. "time": "2020-10-24T11:50:19+00:00"
  2378. },
  2379. {
  2380. "name": "symfony/dom-crawler",
  2381. "version": "v4.4.16",
  2382. "source": {
  2383. "type": "git",
  2384. "url": "https://github.com/symfony/dom-crawler.git",
  2385. "reference": "30ad9ac96a01913195bf0328d48e29d54fa53e6e"
  2386. },
  2387. "dist": {
  2388. "type": "zip",
  2389. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/30ad9ac96a01913195bf0328d48e29d54fa53e6e",
  2390. "reference": "30ad9ac96a01913195bf0328d48e29d54fa53e6e",
  2391. "shasum": ""
  2392. },
  2393. "require": {
  2394. "php": ">=7.1.3",
  2395. "symfony/polyfill-ctype": "~1.8",
  2396. "symfony/polyfill-mbstring": "~1.0"
  2397. },
  2398. "conflict": {
  2399. "masterminds/html5": "<2.6"
  2400. },
  2401. "require-dev": {
  2402. "masterminds/html5": "^2.6",
  2403. "symfony/css-selector": "^3.4|^4.0|^5.0"
  2404. },
  2405. "suggest": {
  2406. "symfony/css-selector": ""
  2407. },
  2408. "type": "library",
  2409. "autoload": {
  2410. "psr-4": {
  2411. "Symfony\\Component\\DomCrawler\\": ""
  2412. },
  2413. "exclude-from-classmap": [
  2414. "/Tests/"
  2415. ]
  2416. },
  2417. "notification-url": "https://packagist.org/downloads/",
  2418. "license": [
  2419. "MIT"
  2420. ],
  2421. "authors": [
  2422. {
  2423. "name": "Fabien Potencier",
  2424. "email": "fabien@symfony.com"
  2425. },
  2426. {
  2427. "name": "Symfony Community",
  2428. "homepage": "https://symfony.com/contributors"
  2429. }
  2430. ],
  2431. "description": "Symfony DomCrawler Component",
  2432. "homepage": "https://symfony.com",
  2433. "time": "2020-10-24T11:50:19+00:00"
  2434. },
  2435. {
  2436. "name": "symfony/event-dispatcher",
  2437. "version": "v4.4.16",
  2438. "source": {
  2439. "type": "git",
  2440. "url": "https://github.com/symfony/event-dispatcher.git",
  2441. "reference": "4204f13d2d0b7ad09454f221bb2195fccdf1fe98"
  2442. },
  2443. "dist": {
  2444. "type": "zip",
  2445. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/4204f13d2d0b7ad09454f221bb2195fccdf1fe98",
  2446. "reference": "4204f13d2d0b7ad09454f221bb2195fccdf1fe98",
  2447. "shasum": ""
  2448. },
  2449. "require": {
  2450. "php": ">=7.1.3",
  2451. "symfony/event-dispatcher-contracts": "^1.1"
  2452. },
  2453. "conflict": {
  2454. "symfony/dependency-injection": "<3.4"
  2455. },
  2456. "provide": {
  2457. "psr/event-dispatcher-implementation": "1.0",
  2458. "symfony/event-dispatcher-implementation": "1.1"
  2459. },
  2460. "require-dev": {
  2461. "psr/log": "~1.0",
  2462. "symfony/config": "^3.4|^4.0|^5.0",
  2463. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  2464. "symfony/error-handler": "~3.4|~4.4",
  2465. "symfony/expression-language": "^3.4|^4.0|^5.0",
  2466. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  2467. "symfony/service-contracts": "^1.1|^2",
  2468. "symfony/stopwatch": "^3.4|^4.0|^5.0"
  2469. },
  2470. "suggest": {
  2471. "symfony/dependency-injection": "",
  2472. "symfony/http-kernel": ""
  2473. },
  2474. "type": "library",
  2475. "autoload": {
  2476. "psr-4": {
  2477. "Symfony\\Component\\EventDispatcher\\": ""
  2478. },
  2479. "exclude-from-classmap": [
  2480. "/Tests/"
  2481. ]
  2482. },
  2483. "notification-url": "https://packagist.org/downloads/",
  2484. "license": [
  2485. "MIT"
  2486. ],
  2487. "authors": [
  2488. {
  2489. "name": "Fabien Potencier",
  2490. "email": "fabien@symfony.com"
  2491. },
  2492. {
  2493. "name": "Symfony Community",
  2494. "homepage": "https://symfony.com/contributors"
  2495. }
  2496. ],
  2497. "description": "Symfony EventDispatcher Component",
  2498. "homepage": "https://symfony.com",
  2499. "time": "2020-10-24T11:50:19+00:00"
  2500. },
  2501. {
  2502. "name": "symfony/event-dispatcher-contracts",
  2503. "version": "v1.1.9",
  2504. "source": {
  2505. "type": "git",
  2506. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  2507. "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7"
  2508. },
  2509. "dist": {
  2510. "type": "zip",
  2511. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/84e23fdcd2517bf37aecbd16967e83f0caee25a7",
  2512. "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7",
  2513. "shasum": ""
  2514. },
  2515. "require": {
  2516. "php": ">=7.1.3"
  2517. },
  2518. "suggest": {
  2519. "psr/event-dispatcher": "",
  2520. "symfony/event-dispatcher-implementation": ""
  2521. },
  2522. "type": "library",
  2523. "extra": {
  2524. "branch-alias": {
  2525. "dev-master": "1.1-dev"
  2526. },
  2527. "thanks": {
  2528. "name": "symfony/contracts",
  2529. "url": "https://github.com/symfony/contracts"
  2530. }
  2531. },
  2532. "autoload": {
  2533. "psr-4": {
  2534. "Symfony\\Contracts\\EventDispatcher\\": ""
  2535. }
  2536. },
  2537. "notification-url": "https://packagist.org/downloads/",
  2538. "license": [
  2539. "MIT"
  2540. ],
  2541. "authors": [
  2542. {
  2543. "name": "Nicolas Grekas",
  2544. "email": "p@tchwork.com"
  2545. },
  2546. {
  2547. "name": "Symfony Community",
  2548. "homepage": "https://symfony.com/contributors"
  2549. }
  2550. ],
  2551. "description": "Generic abstractions related to dispatching event",
  2552. "homepage": "https://symfony.com",
  2553. "keywords": [
  2554. "abstractions",
  2555. "contracts",
  2556. "decoupling",
  2557. "interfaces",
  2558. "interoperability",
  2559. "standards"
  2560. ],
  2561. "time": "2020-07-06T13:19:58+00:00"
  2562. },
  2563. {
  2564. "name": "symfony/finder",
  2565. "version": "v4.4.16",
  2566. "source": {
  2567. "type": "git",
  2568. "url": "https://github.com/symfony/finder.git",
  2569. "reference": "26f63b8d4e92f2eecd90f6791a563ebb001abe31"
  2570. },
  2571. "dist": {
  2572. "type": "zip",
  2573. "url": "https://api.github.com/repos/symfony/finder/zipball/26f63b8d4e92f2eecd90f6791a563ebb001abe31",
  2574. "reference": "26f63b8d4e92f2eecd90f6791a563ebb001abe31",
  2575. "shasum": ""
  2576. },
  2577. "require": {
  2578. "php": ">=7.1.3"
  2579. },
  2580. "type": "library",
  2581. "autoload": {
  2582. "psr-4": {
  2583. "Symfony\\Component\\Finder\\": ""
  2584. },
  2585. "exclude-from-classmap": [
  2586. "/Tests/"
  2587. ]
  2588. },
  2589. "notification-url": "https://packagist.org/downloads/",
  2590. "license": [
  2591. "MIT"
  2592. ],
  2593. "authors": [
  2594. {
  2595. "name": "Fabien Potencier",
  2596. "email": "fabien@symfony.com"
  2597. },
  2598. {
  2599. "name": "Symfony Community",
  2600. "homepage": "https://symfony.com/contributors"
  2601. }
  2602. ],
  2603. "description": "Symfony Finder Component",
  2604. "homepage": "https://symfony.com",
  2605. "time": "2020-10-24T11:50:19+00:00"
  2606. },
  2607. {
  2608. "name": "symfony/polyfill-ctype",
  2609. "version": "v1.20.0",
  2610. "source": {
  2611. "type": "git",
  2612. "url": "https://github.com/symfony/polyfill-ctype.git",
  2613. "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41"
  2614. },
  2615. "dist": {
  2616. "type": "zip",
  2617. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/f4ba089a5b6366e453971d3aad5fe8e897b37f41",
  2618. "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41",
  2619. "shasum": ""
  2620. },
  2621. "require": {
  2622. "php": ">=7.1"
  2623. },
  2624. "suggest": {
  2625. "ext-ctype": "For best performance"
  2626. },
  2627. "type": "library",
  2628. "extra": {
  2629. "branch-alias": {
  2630. "dev-main": "1.20-dev"
  2631. },
  2632. "thanks": {
  2633. "name": "symfony/polyfill",
  2634. "url": "https://github.com/symfony/polyfill"
  2635. }
  2636. },
  2637. "autoload": {
  2638. "psr-4": {
  2639. "Symfony\\Polyfill\\Ctype\\": ""
  2640. },
  2641. "files": [
  2642. "bootstrap.php"
  2643. ]
  2644. },
  2645. "notification-url": "https://packagist.org/downloads/",
  2646. "license": [
  2647. "MIT"
  2648. ],
  2649. "authors": [
  2650. {
  2651. "name": "Gert de Pagter",
  2652. "email": "BackEndTea@gmail.com"
  2653. },
  2654. {
  2655. "name": "Symfony Community",
  2656. "homepage": "https://symfony.com/contributors"
  2657. }
  2658. ],
  2659. "description": "Symfony polyfill for ctype functions",
  2660. "homepage": "https://symfony.com",
  2661. "keywords": [
  2662. "compatibility",
  2663. "ctype",
  2664. "polyfill",
  2665. "portable"
  2666. ],
  2667. "time": "2020-10-23T14:02:19+00:00"
  2668. },
  2669. {
  2670. "name": "symfony/polyfill-intl-idn",
  2671. "version": "v1.20.0",
  2672. "source": {
  2673. "type": "git",
  2674. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  2675. "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117"
  2676. },
  2677. "dist": {
  2678. "type": "zip",
  2679. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/3b75acd829741c768bc8b1f84eb33265e7cc5117",
  2680. "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117",
  2681. "shasum": ""
  2682. },
  2683. "require": {
  2684. "php": ">=7.1",
  2685. "symfony/polyfill-intl-normalizer": "^1.10",
  2686. "symfony/polyfill-php72": "^1.10"
  2687. },
  2688. "suggest": {
  2689. "ext-intl": "For best performance"
  2690. },
  2691. "type": "library",
  2692. "extra": {
  2693. "branch-alias": {
  2694. "dev-main": "1.20-dev"
  2695. },
  2696. "thanks": {
  2697. "name": "symfony/polyfill",
  2698. "url": "https://github.com/symfony/polyfill"
  2699. }
  2700. },
  2701. "autoload": {
  2702. "psr-4": {
  2703. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  2704. },
  2705. "files": [
  2706. "bootstrap.php"
  2707. ]
  2708. },
  2709. "notification-url": "https://packagist.org/downloads/",
  2710. "license": [
  2711. "MIT"
  2712. ],
  2713. "authors": [
  2714. {
  2715. "name": "Laurent Bassin",
  2716. "email": "laurent@bassin.info"
  2717. },
  2718. {
  2719. "name": "Trevor Rowbotham",
  2720. "email": "trevor.rowbotham@pm.me"
  2721. },
  2722. {
  2723. "name": "Symfony Community",
  2724. "homepage": "https://symfony.com/contributors"
  2725. }
  2726. ],
  2727. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  2728. "homepage": "https://symfony.com",
  2729. "keywords": [
  2730. "compatibility",
  2731. "idn",
  2732. "intl",
  2733. "polyfill",
  2734. "portable",
  2735. "shim"
  2736. ],
  2737. "time": "2020-10-23T14:02:19+00:00"
  2738. },
  2739. {
  2740. "name": "symfony/polyfill-intl-normalizer",
  2741. "version": "v1.20.0",
  2742. "source": {
  2743. "type": "git",
  2744. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  2745. "reference": "727d1096295d807c309fb01a851577302394c897"
  2746. },
  2747. "dist": {
  2748. "type": "zip",
  2749. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/727d1096295d807c309fb01a851577302394c897",
  2750. "reference": "727d1096295d807c309fb01a851577302394c897",
  2751. "shasum": ""
  2752. },
  2753. "require": {
  2754. "php": ">=7.1"
  2755. },
  2756. "suggest": {
  2757. "ext-intl": "For best performance"
  2758. },
  2759. "type": "library",
  2760. "extra": {
  2761. "branch-alias": {
  2762. "dev-main": "1.20-dev"
  2763. },
  2764. "thanks": {
  2765. "name": "symfony/polyfill",
  2766. "url": "https://github.com/symfony/polyfill"
  2767. }
  2768. },
  2769. "autoload": {
  2770. "psr-4": {
  2771. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  2772. },
  2773. "files": [
  2774. "bootstrap.php"
  2775. ],
  2776. "classmap": [
  2777. "Resources/stubs"
  2778. ]
  2779. },
  2780. "notification-url": "https://packagist.org/downloads/",
  2781. "license": [
  2782. "MIT"
  2783. ],
  2784. "authors": [
  2785. {
  2786. "name": "Nicolas Grekas",
  2787. "email": "p@tchwork.com"
  2788. },
  2789. {
  2790. "name": "Symfony Community",
  2791. "homepage": "https://symfony.com/contributors"
  2792. }
  2793. ],
  2794. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  2795. "homepage": "https://symfony.com",
  2796. "keywords": [
  2797. "compatibility",
  2798. "intl",
  2799. "normalizer",
  2800. "polyfill",
  2801. "portable",
  2802. "shim"
  2803. ],
  2804. "time": "2020-10-23T14:02:19+00:00"
  2805. },
  2806. {
  2807. "name": "symfony/polyfill-mbstring",
  2808. "version": "v1.20.0",
  2809. "source": {
  2810. "type": "git",
  2811. "url": "https://github.com/symfony/polyfill-mbstring.git",
  2812. "reference": "39d483bdf39be819deabf04ec872eb0b2410b531"
  2813. },
  2814. "dist": {
  2815. "type": "zip",
  2816. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/39d483bdf39be819deabf04ec872eb0b2410b531",
  2817. "reference": "39d483bdf39be819deabf04ec872eb0b2410b531",
  2818. "shasum": ""
  2819. },
  2820. "require": {
  2821. "php": ">=7.1"
  2822. },
  2823. "suggest": {
  2824. "ext-mbstring": "For best performance"
  2825. },
  2826. "type": "library",
  2827. "extra": {
  2828. "branch-alias": {
  2829. "dev-main": "1.20-dev"
  2830. },
  2831. "thanks": {
  2832. "name": "symfony/polyfill",
  2833. "url": "https://github.com/symfony/polyfill"
  2834. }
  2835. },
  2836. "autoload": {
  2837. "psr-4": {
  2838. "Symfony\\Polyfill\\Mbstring\\": ""
  2839. },
  2840. "files": [
  2841. "bootstrap.php"
  2842. ]
  2843. },
  2844. "notification-url": "https://packagist.org/downloads/",
  2845. "license": [
  2846. "MIT"
  2847. ],
  2848. "authors": [
  2849. {
  2850. "name": "Nicolas Grekas",
  2851. "email": "p@tchwork.com"
  2852. },
  2853. {
  2854. "name": "Symfony Community",
  2855. "homepage": "https://symfony.com/contributors"
  2856. }
  2857. ],
  2858. "description": "Symfony polyfill for the Mbstring extension",
  2859. "homepage": "https://symfony.com",
  2860. "keywords": [
  2861. "compatibility",
  2862. "mbstring",
  2863. "polyfill",
  2864. "portable",
  2865. "shim"
  2866. ],
  2867. "time": "2020-10-23T14:02:19+00:00"
  2868. },
  2869. {
  2870. "name": "symfony/polyfill-php72",
  2871. "version": "v1.20.0",
  2872. "source": {
  2873. "type": "git",
  2874. "url": "https://github.com/symfony/polyfill-php72.git",
  2875. "reference": "cede45fcdfabdd6043b3592e83678e42ec69e930"
  2876. },
  2877. "dist": {
  2878. "type": "zip",
  2879. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/cede45fcdfabdd6043b3592e83678e42ec69e930",
  2880. "reference": "cede45fcdfabdd6043b3592e83678e42ec69e930",
  2881. "shasum": ""
  2882. },
  2883. "require": {
  2884. "php": ">=7.1"
  2885. },
  2886. "type": "library",
  2887. "extra": {
  2888. "branch-alias": {
  2889. "dev-main": "1.20-dev"
  2890. },
  2891. "thanks": {
  2892. "name": "symfony/polyfill",
  2893. "url": "https://github.com/symfony/polyfill"
  2894. }
  2895. },
  2896. "autoload": {
  2897. "psr-4": {
  2898. "Symfony\\Polyfill\\Php72\\": ""
  2899. },
  2900. "files": [
  2901. "bootstrap.php"
  2902. ]
  2903. },
  2904. "notification-url": "https://packagist.org/downloads/",
  2905. "license": [
  2906. "MIT"
  2907. ],
  2908. "authors": [
  2909. {
  2910. "name": "Nicolas Grekas",
  2911. "email": "p@tchwork.com"
  2912. },
  2913. {
  2914. "name": "Symfony Community",
  2915. "homepage": "https://symfony.com/contributors"
  2916. }
  2917. ],
  2918. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  2919. "homepage": "https://symfony.com",
  2920. "keywords": [
  2921. "compatibility",
  2922. "polyfill",
  2923. "portable",
  2924. "shim"
  2925. ],
  2926. "time": "2020-10-23T14:02:19+00:00"
  2927. },
  2928. {
  2929. "name": "symfony/polyfill-php73",
  2930. "version": "v1.20.0",
  2931. "source": {
  2932. "type": "git",
  2933. "url": "https://github.com/symfony/polyfill-php73.git",
  2934. "reference": "8ff431c517be11c78c48a39a66d37431e26a6bed"
  2935. },
  2936. "dist": {
  2937. "type": "zip",
  2938. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/8ff431c517be11c78c48a39a66d37431e26a6bed",
  2939. "reference": "8ff431c517be11c78c48a39a66d37431e26a6bed",
  2940. "shasum": ""
  2941. },
  2942. "require": {
  2943. "php": ">=7.1"
  2944. },
  2945. "type": "library",
  2946. "extra": {
  2947. "branch-alias": {
  2948. "dev-main": "1.20-dev"
  2949. },
  2950. "thanks": {
  2951. "name": "symfony/polyfill",
  2952. "url": "https://github.com/symfony/polyfill"
  2953. }
  2954. },
  2955. "autoload": {
  2956. "psr-4": {
  2957. "Symfony\\Polyfill\\Php73\\": ""
  2958. },
  2959. "files": [
  2960. "bootstrap.php"
  2961. ],
  2962. "classmap": [
  2963. "Resources/stubs"
  2964. ]
  2965. },
  2966. "notification-url": "https://packagist.org/downloads/",
  2967. "license": [
  2968. "MIT"
  2969. ],
  2970. "authors": [
  2971. {
  2972. "name": "Nicolas Grekas",
  2973. "email": "p@tchwork.com"
  2974. },
  2975. {
  2976. "name": "Symfony Community",
  2977. "homepage": "https://symfony.com/contributors"
  2978. }
  2979. ],
  2980. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  2981. "homepage": "https://symfony.com",
  2982. "keywords": [
  2983. "compatibility",
  2984. "polyfill",
  2985. "portable",
  2986. "shim"
  2987. ],
  2988. "time": "2020-10-23T14:02:19+00:00"
  2989. },
  2990. {
  2991. "name": "symfony/polyfill-php80",
  2992. "version": "v1.20.0",
  2993. "source": {
  2994. "type": "git",
  2995. "url": "https://github.com/symfony/polyfill-php80.git",
  2996. "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de"
  2997. },
  2998. "dist": {
  2999. "type": "zip",
  3000. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/e70aa8b064c5b72d3df2abd5ab1e90464ad009de",
  3001. "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de",
  3002. "shasum": ""
  3003. },
  3004. "require": {
  3005. "php": ">=7.1"
  3006. },
  3007. "type": "library",
  3008. "extra": {
  3009. "branch-alias": {
  3010. "dev-main": "1.20-dev"
  3011. },
  3012. "thanks": {
  3013. "name": "symfony/polyfill",
  3014. "url": "https://github.com/symfony/polyfill"
  3015. }
  3016. },
  3017. "autoload": {
  3018. "psr-4": {
  3019. "Symfony\\Polyfill\\Php80\\": ""
  3020. },
  3021. "files": [
  3022. "bootstrap.php"
  3023. ],
  3024. "classmap": [
  3025. "Resources/stubs"
  3026. ]
  3027. },
  3028. "notification-url": "https://packagist.org/downloads/",
  3029. "license": [
  3030. "MIT"
  3031. ],
  3032. "authors": [
  3033. {
  3034. "name": "Ion Bazan",
  3035. "email": "ion.bazan@gmail.com"
  3036. },
  3037. {
  3038. "name": "Nicolas Grekas",
  3039. "email": "p@tchwork.com"
  3040. },
  3041. {
  3042. "name": "Symfony Community",
  3043. "homepage": "https://symfony.com/contributors"
  3044. }
  3045. ],
  3046. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  3047. "homepage": "https://symfony.com",
  3048. "keywords": [
  3049. "compatibility",
  3050. "polyfill",
  3051. "portable",
  3052. "shim"
  3053. ],
  3054. "time": "2020-10-23T14:02:19+00:00"
  3055. },
  3056. {
  3057. "name": "symfony/process",
  3058. "version": "v4.4.16",
  3059. "source": {
  3060. "type": "git",
  3061. "url": "https://github.com/symfony/process.git",
  3062. "reference": "2f4b049fb80ca5e9874615a2a85dc2a502090f05"
  3063. },
  3064. "dist": {
  3065. "type": "zip",
  3066. "url": "https://api.github.com/repos/symfony/process/zipball/2f4b049fb80ca5e9874615a2a85dc2a502090f05",
  3067. "reference": "2f4b049fb80ca5e9874615a2a85dc2a502090f05",
  3068. "shasum": ""
  3069. },
  3070. "require": {
  3071. "php": ">=7.1.3"
  3072. },
  3073. "type": "library",
  3074. "autoload": {
  3075. "psr-4": {
  3076. "Symfony\\Component\\Process\\": ""
  3077. },
  3078. "exclude-from-classmap": [
  3079. "/Tests/"
  3080. ]
  3081. },
  3082. "notification-url": "https://packagist.org/downloads/",
  3083. "license": [
  3084. "MIT"
  3085. ],
  3086. "authors": [
  3087. {
  3088. "name": "Fabien Potencier",
  3089. "email": "fabien@symfony.com"
  3090. },
  3091. {
  3092. "name": "Symfony Community",
  3093. "homepage": "https://symfony.com/contributors"
  3094. }
  3095. ],
  3096. "description": "Symfony Process Component",
  3097. "homepage": "https://symfony.com",
  3098. "time": "2020-10-24T11:50:19+00:00"
  3099. },
  3100. {
  3101. "name": "symfony/service-contracts",
  3102. "version": "v1.1.9",
  3103. "source": {
  3104. "type": "git",
  3105. "url": "https://github.com/symfony/service-contracts.git",
  3106. "reference": "b776d18b303a39f56c63747bcb977ad4b27aca26"
  3107. },
  3108. "dist": {
  3109. "type": "zip",
  3110. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/b776d18b303a39f56c63747bcb977ad4b27aca26",
  3111. "reference": "b776d18b303a39f56c63747bcb977ad4b27aca26",
  3112. "shasum": ""
  3113. },
  3114. "require": {
  3115. "php": ">=7.1.3",
  3116. "psr/container": "^1.0"
  3117. },
  3118. "suggest": {
  3119. "symfony/service-implementation": ""
  3120. },
  3121. "type": "library",
  3122. "extra": {
  3123. "branch-alias": {
  3124. "dev-master": "1.1-dev"
  3125. },
  3126. "thanks": {
  3127. "name": "symfony/contracts",
  3128. "url": "https://github.com/symfony/contracts"
  3129. }
  3130. },
  3131. "autoload": {
  3132. "psr-4": {
  3133. "Symfony\\Contracts\\Service\\": ""
  3134. }
  3135. },
  3136. "notification-url": "https://packagist.org/downloads/",
  3137. "license": [
  3138. "MIT"
  3139. ],
  3140. "authors": [
  3141. {
  3142. "name": "Nicolas Grekas",
  3143. "email": "p@tchwork.com"
  3144. },
  3145. {
  3146. "name": "Symfony Community",
  3147. "homepage": "https://symfony.com/contributors"
  3148. }
  3149. ],
  3150. "description": "Generic abstractions related to writing services",
  3151. "homepage": "https://symfony.com",
  3152. "keywords": [
  3153. "abstractions",
  3154. "contracts",
  3155. "decoupling",
  3156. "interfaces",
  3157. "interoperability",
  3158. "standards"
  3159. ],
  3160. "time": "2020-07-06T13:19:58+00:00"
  3161. },
  3162. {
  3163. "name": "symfony/yaml",
  3164. "version": "v4.4.16",
  3165. "source": {
  3166. "type": "git",
  3167. "url": "https://github.com/symfony/yaml.git",
  3168. "reference": "543cb4dbd45ed803f08a9a65f27fb149b5dd20c2"
  3169. },
  3170. "dist": {
  3171. "type": "zip",
  3172. "url": "https://api.github.com/repos/symfony/yaml/zipball/543cb4dbd45ed803f08a9a65f27fb149b5dd20c2",
  3173. "reference": "543cb4dbd45ed803f08a9a65f27fb149b5dd20c2",
  3174. "shasum": ""
  3175. },
  3176. "require": {
  3177. "php": ">=7.1.3",
  3178. "symfony/polyfill-ctype": "~1.8"
  3179. },
  3180. "conflict": {
  3181. "symfony/console": "<3.4"
  3182. },
  3183. "require-dev": {
  3184. "symfony/console": "^3.4|^4.0|^5.0"
  3185. },
  3186. "suggest": {
  3187. "symfony/console": "For validating YAML files using the lint command"
  3188. },
  3189. "type": "library",
  3190. "autoload": {
  3191. "psr-4": {
  3192. "Symfony\\Component\\Yaml\\": ""
  3193. },
  3194. "exclude-from-classmap": [
  3195. "/Tests/"
  3196. ]
  3197. },
  3198. "notification-url": "https://packagist.org/downloads/",
  3199. "license": [
  3200. "MIT"
  3201. ],
  3202. "authors": [
  3203. {
  3204. "name": "Fabien Potencier",
  3205. "email": "fabien@symfony.com"
  3206. },
  3207. {
  3208. "name": "Symfony Community",
  3209. "homepage": "https://symfony.com/contributors"
  3210. }
  3211. ],
  3212. "description": "Symfony Yaml Component",
  3213. "homepage": "https://symfony.com",
  3214. "time": "2020-10-24T11:50:19+00:00"
  3215. },
  3216. {
  3217. "name": "theseer/tokenizer",
  3218. "version": "1.1.3",
  3219. "source": {
  3220. "type": "git",
  3221. "url": "https://github.com/theseer/tokenizer.git",
  3222. "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9"
  3223. },
  3224. "dist": {
  3225. "type": "zip",
  3226. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/11336f6f84e16a720dae9d8e6ed5019efa85a0f9",
  3227. "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9",
  3228. "shasum": ""
  3229. },
  3230. "require": {
  3231. "ext-dom": "*",
  3232. "ext-tokenizer": "*",
  3233. "ext-xmlwriter": "*",
  3234. "php": "^7.0"
  3235. },
  3236. "type": "library",
  3237. "autoload": {
  3238. "classmap": [
  3239. "src/"
  3240. ]
  3241. },
  3242. "notification-url": "https://packagist.org/downloads/",
  3243. "license": [
  3244. "BSD-3-Clause"
  3245. ],
  3246. "authors": [
  3247. {
  3248. "name": "Arne Blankerts",
  3249. "email": "arne@blankerts.de",
  3250. "role": "Developer"
  3251. }
  3252. ],
  3253. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  3254. "time": "2019-06-13T22:48:21+00:00"
  3255. },
  3256. {
  3257. "name": "webmozart/assert",
  3258. "version": "1.9.1",
  3259. "source": {
  3260. "type": "git",
  3261. "url": "https://github.com/webmozart/assert.git",
  3262. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389"
  3263. },
  3264. "dist": {
  3265. "type": "zip",
  3266. "url": "https://api.github.com/repos/webmozart/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389",
  3267. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389",
  3268. "shasum": ""
  3269. },
  3270. "require": {
  3271. "php": "^5.3.3 || ^7.0 || ^8.0",
  3272. "symfony/polyfill-ctype": "^1.8"
  3273. },
  3274. "conflict": {
  3275. "phpstan/phpstan": "<0.12.20",
  3276. "vimeo/psalm": "<3.9.1"
  3277. },
  3278. "require-dev": {
  3279. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  3280. },
  3281. "type": "library",
  3282. "autoload": {
  3283. "psr-4": {
  3284. "Webmozart\\Assert\\": "src/"
  3285. }
  3286. },
  3287. "notification-url": "https://packagist.org/downloads/",
  3288. "license": [
  3289. "MIT"
  3290. ],
  3291. "authors": [
  3292. {
  3293. "name": "Bernhard Schussek",
  3294. "email": "bschussek@gmail.com"
  3295. }
  3296. ],
  3297. "description": "Assertions to validate method input/output with nice error messages.",
  3298. "keywords": [
  3299. "assert",
  3300. "check",
  3301. "validate"
  3302. ],
  3303. "time": "2020-07-08T17:02:28+00:00"
  3304. }
  3305. ],
  3306. "aliases": [],
  3307. "minimum-stability": "stable",
  3308. "stability-flags": {
  3309. "p3k/picofeed": 0
  3310. },
  3311. "prefer-stable": false,
  3312. "prefer-lowest": false,
  3313. "platform": {
  3314. "php": ">=7.1.3",
  3315. "ext-json": "*"
  3316. },
  3317. "platform-dev": [],
  3318. "platform-overrides": {
  3319. "php": "7.1.3"
  3320. }
  3321. }