You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

composer.lock 110KB

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