composer.lock 147 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191
  1. {
  2. "_readme": [
  3. "This file locks the dependencies of your project to a known state",
  4. "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "0b9561c5aa752c7c6746fc2d13e2e7cb",
  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. "support": {
  89. "issues": "https://github.com/Behat/Behat/issues",
  90. "source": "https://github.com/Behat/Behat/tree/v3.8.1"
  91. },
  92. "time": "2020-11-07T15:55:18+00:00"
  93. },
  94. {
  95. "name": "behat/gherkin",
  96. "version": "v4.9.0",
  97. "source": {
  98. "type": "git",
  99. "url": "https://github.com/Behat/Gherkin.git",
  100. "reference": "0bc8d1e30e96183e4f36db9dc79caead300beff4"
  101. },
  102. "dist": {
  103. "type": "zip",
  104. "url": "https://api.github.com/repos/Behat/Gherkin/zipball/0bc8d1e30e96183e4f36db9dc79caead300beff4",
  105. "reference": "0bc8d1e30e96183e4f36db9dc79caead300beff4",
  106. "shasum": ""
  107. },
  108. "require": {
  109. "php": "~7.2|~8.0"
  110. },
  111. "require-dev": {
  112. "cucumber/cucumber": "dev-gherkin-22.0.0",
  113. "phpunit/phpunit": "~8|~9",
  114. "symfony/yaml": "~3|~4|~5"
  115. },
  116. "suggest": {
  117. "symfony/yaml": "If you want to parse features, represented in YAML files"
  118. },
  119. "type": "library",
  120. "extra": {
  121. "branch-alias": {
  122. "dev-master": "4.x-dev"
  123. }
  124. },
  125. "autoload": {
  126. "psr-0": {
  127. "Behat\\Gherkin": "src/"
  128. }
  129. },
  130. "notification-url": "https://packagist.org/downloads/",
  131. "license": [
  132. "MIT"
  133. ],
  134. "authors": [
  135. {
  136. "name": "Konstantin Kudryashov",
  137. "email": "ever.zet@gmail.com",
  138. "homepage": "http://everzet.com"
  139. }
  140. ],
  141. "description": "Gherkin DSL parser for PHP",
  142. "homepage": "http://behat.org/",
  143. "keywords": [
  144. "BDD",
  145. "Behat",
  146. "Cucumber",
  147. "DSL",
  148. "gherkin",
  149. "parser"
  150. ],
  151. "support": {
  152. "issues": "https://github.com/Behat/Gherkin/issues",
  153. "source": "https://github.com/Behat/Gherkin/tree/v4.9.0"
  154. },
  155. "time": "2021-10-12T13:05:09+00:00"
  156. },
  157. {
  158. "name": "behat/mink",
  159. "version": "v1.8.1",
  160. "source": {
  161. "type": "git",
  162. "url": "https://github.com/minkphp/Mink.git",
  163. "reference": "07c6a9fe3fa98c2de074b25d9ed26c22904e3887"
  164. },
  165. "dist": {
  166. "type": "zip",
  167. "url": "https://api.github.com/repos/minkphp/Mink/zipball/07c6a9fe3fa98c2de074b25d9ed26c22904e3887",
  168. "reference": "07c6a9fe3fa98c2de074b25d9ed26c22904e3887",
  169. "shasum": ""
  170. },
  171. "require": {
  172. "php": ">=5.3.1",
  173. "symfony/css-selector": "^2.7|^3.0|^4.0|^5.0"
  174. },
  175. "require-dev": {
  176. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20",
  177. "symfony/debug": "^2.7|^3.0|^4.0",
  178. "symfony/phpunit-bridge": "^3.4.38 || ^5.0.5"
  179. },
  180. "suggest": {
  181. "behat/mink-browserkit-driver": "extremely fast headless driver for Symfony\\Kernel-based apps (Sf2, Silex)",
  182. "behat/mink-goutte-driver": "fast headless driver for any app without JS emulation",
  183. "behat/mink-selenium2-driver": "slow, but JS-enabled driver for any app (requires Selenium2)",
  184. "behat/mink-zombie-driver": "fast and JS-enabled headless driver for any app (requires node.js)",
  185. "dmore/chrome-mink-driver": "fast and JS-enabled driver for any app (requires chromium or google chrome)"
  186. },
  187. "type": "library",
  188. "extra": {
  189. "branch-alias": {
  190. "dev-master": "1.8.x-dev"
  191. }
  192. },
  193. "autoload": {
  194. "psr-4": {
  195. "Behat\\Mink\\": "src/"
  196. }
  197. },
  198. "notification-url": "https://packagist.org/downloads/",
  199. "license": [
  200. "MIT"
  201. ],
  202. "authors": [
  203. {
  204. "name": "Konstantin Kudryashov",
  205. "email": "ever.zet@gmail.com",
  206. "homepage": "http://everzet.com"
  207. }
  208. ],
  209. "description": "Browser controller/emulator abstraction for PHP",
  210. "homepage": "http://mink.behat.org/",
  211. "keywords": [
  212. "browser",
  213. "testing",
  214. "web"
  215. ],
  216. "support": {
  217. "issues": "https://github.com/minkphp/Mink/issues",
  218. "source": "https://github.com/minkphp/Mink/tree/v1.8.1"
  219. },
  220. "time": "2020-03-11T15:45:53+00:00"
  221. },
  222. {
  223. "name": "behat/mink-extension",
  224. "version": "2.3.1",
  225. "source": {
  226. "type": "git",
  227. "url": "https://github.com/Behat/MinkExtension.git",
  228. "reference": "80f7849ba53867181b7e412df9210e12fba50177"
  229. },
  230. "dist": {
  231. "type": "zip",
  232. "url": "https://api.github.com/repos/Behat/MinkExtension/zipball/80f7849ba53867181b7e412df9210e12fba50177",
  233. "reference": "80f7849ba53867181b7e412df9210e12fba50177",
  234. "shasum": ""
  235. },
  236. "require": {
  237. "behat/behat": "^3.0.5",
  238. "behat/mink": "^1.5",
  239. "php": ">=5.3.2",
  240. "symfony/config": "^2.7|^3.0|^4.0"
  241. },
  242. "require-dev": {
  243. "behat/mink-goutte-driver": "^1.1",
  244. "phpspec/phpspec": "^2.0"
  245. },
  246. "type": "behat-extension",
  247. "extra": {
  248. "branch-alias": {
  249. "dev-master": "2.1.x-dev"
  250. }
  251. },
  252. "autoload": {
  253. "psr-0": {
  254. "Behat\\MinkExtension": "src/"
  255. }
  256. },
  257. "notification-url": "https://packagist.org/downloads/",
  258. "license": [
  259. "MIT"
  260. ],
  261. "authors": [
  262. {
  263. "name": "Christophe Coevoet",
  264. "email": "stof@notk.org"
  265. },
  266. {
  267. "name": "Konstantin Kudryashov",
  268. "email": "ever.zet@gmail.com"
  269. }
  270. ],
  271. "description": "Mink extension for Behat",
  272. "homepage": "http://extensions.behat.org/mink",
  273. "keywords": [
  274. "browser",
  275. "gui",
  276. "test",
  277. "web"
  278. ],
  279. "support": {
  280. "issues": "https://github.com/Behat/MinkExtension/issues",
  281. "source": "https://github.com/Behat/MinkExtension/tree/master"
  282. },
  283. "time": "2018-02-06T15:36:30+00:00"
  284. },
  285. {
  286. "name": "behat/mink-selenium2-driver",
  287. "version": "v1.4.0",
  288. "source": {
  289. "type": "git",
  290. "url": "https://github.com/minkphp/MinkSelenium2Driver.git",
  291. "reference": "312a967dd527f28980cce40850339cd5316da092"
  292. },
  293. "dist": {
  294. "type": "zip",
  295. "url": "https://api.github.com/repos/minkphp/MinkSelenium2Driver/zipball/312a967dd527f28980cce40850339cd5316da092",
  296. "reference": "312a967dd527f28980cce40850339cd5316da092",
  297. "shasum": ""
  298. },
  299. "require": {
  300. "behat/mink": "~1.7@dev",
  301. "instaclick/php-webdriver": "~1.1",
  302. "php": ">=5.4"
  303. },
  304. "require-dev": {
  305. "mink/driver-testsuite": "dev-master"
  306. },
  307. "type": "mink-driver",
  308. "extra": {
  309. "branch-alias": {
  310. "dev-master": "1.4.x-dev"
  311. }
  312. },
  313. "autoload": {
  314. "psr-4": {
  315. "Behat\\Mink\\Driver\\": "src/"
  316. }
  317. },
  318. "notification-url": "https://packagist.org/downloads/",
  319. "license": [
  320. "MIT"
  321. ],
  322. "authors": [
  323. {
  324. "name": "Pete Otaqui",
  325. "email": "pete@otaqui.com",
  326. "homepage": "https://github.com/pete-otaqui"
  327. },
  328. {
  329. "name": "Konstantin Kudryashov",
  330. "email": "ever.zet@gmail.com",
  331. "homepage": "http://everzet.com"
  332. }
  333. ],
  334. "description": "Selenium2 (WebDriver) driver for Mink framework",
  335. "homepage": "http://mink.behat.org/",
  336. "keywords": [
  337. "ajax",
  338. "browser",
  339. "javascript",
  340. "selenium",
  341. "testing",
  342. "webdriver"
  343. ],
  344. "support": {
  345. "issues": "https://github.com/minkphp/MinkSelenium2Driver/issues",
  346. "source": "https://github.com/minkphp/MinkSelenium2Driver/tree/v1.4.0"
  347. },
  348. "time": "2020-03-11T14:43:21+00:00"
  349. },
  350. {
  351. "name": "behat/transliterator",
  352. "version": "v1.5.0",
  353. "source": {
  354. "type": "git",
  355. "url": "https://github.com/Behat/Transliterator.git",
  356. "reference": "baac5873bac3749887d28ab68e2f74db3a4408af"
  357. },
  358. "dist": {
  359. "type": "zip",
  360. "url": "https://api.github.com/repos/Behat/Transliterator/zipball/baac5873bac3749887d28ab68e2f74db3a4408af",
  361. "reference": "baac5873bac3749887d28ab68e2f74db3a4408af",
  362. "shasum": ""
  363. },
  364. "require": {
  365. "php": ">=7.2"
  366. },
  367. "require-dev": {
  368. "chuyskywalker/rolling-curl": "^3.1",
  369. "php-yaoi/php-yaoi": "^1.0",
  370. "phpunit/phpunit": "^8.5.25 || ^9.5.19"
  371. },
  372. "type": "library",
  373. "extra": {
  374. "branch-alias": {
  375. "dev-master": "1.x-dev"
  376. }
  377. },
  378. "autoload": {
  379. "psr-4": {
  380. "Behat\\Transliterator\\": "src/Behat/Transliterator"
  381. }
  382. },
  383. "notification-url": "https://packagist.org/downloads/",
  384. "license": [
  385. "Artistic-1.0"
  386. ],
  387. "description": "String transliterator",
  388. "keywords": [
  389. "i18n",
  390. "slug",
  391. "transliterator"
  392. ],
  393. "support": {
  394. "issues": "https://github.com/Behat/Transliterator/issues",
  395. "source": "https://github.com/Behat/Transliterator/tree/v1.5.0"
  396. },
  397. "time": "2022-03-30T09:27:43+00:00"
  398. },
  399. {
  400. "name": "doctrine/instantiator",
  401. "version": "1.4.1",
  402. "source": {
  403. "type": "git",
  404. "url": "https://github.com/doctrine/instantiator.git",
  405. "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc"
  406. },
  407. "dist": {
  408. "type": "zip",
  409. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/10dcfce151b967d20fde1b34ae6640712c3891bc",
  410. "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc",
  411. "shasum": ""
  412. },
  413. "require": {
  414. "php": "^7.1 || ^8.0"
  415. },
  416. "require-dev": {
  417. "doctrine/coding-standard": "^9",
  418. "ext-pdo": "*",
  419. "ext-phar": "*",
  420. "phpbench/phpbench": "^0.16 || ^1",
  421. "phpstan/phpstan": "^1.4",
  422. "phpstan/phpstan-phpunit": "^1",
  423. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  424. "vimeo/psalm": "^4.22"
  425. },
  426. "type": "library",
  427. "autoload": {
  428. "psr-4": {
  429. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  430. }
  431. },
  432. "notification-url": "https://packagist.org/downloads/",
  433. "license": [
  434. "MIT"
  435. ],
  436. "authors": [
  437. {
  438. "name": "Marco Pivetta",
  439. "email": "ocramius@gmail.com",
  440. "homepage": "https://ocramius.github.io/"
  441. }
  442. ],
  443. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  444. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  445. "keywords": [
  446. "constructor",
  447. "instantiate"
  448. ],
  449. "support": {
  450. "issues": "https://github.com/doctrine/instantiator/issues",
  451. "source": "https://github.com/doctrine/instantiator/tree/1.4.1"
  452. },
  453. "funding": [
  454. {
  455. "url": "https://www.doctrine-project.org/sponsorship.html",
  456. "type": "custom"
  457. },
  458. {
  459. "url": "https://www.patreon.com/phpdoctrine",
  460. "type": "patreon"
  461. },
  462. {
  463. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  464. "type": "tidelift"
  465. }
  466. ],
  467. "time": "2022-03-03T08:28:38+00:00"
  468. },
  469. {
  470. "name": "instaclick/php-webdriver",
  471. "version": "1.4.14",
  472. "source": {
  473. "type": "git",
  474. "url": "https://github.com/instaclick/php-webdriver.git",
  475. "reference": "200b8df772b74d604bebf25ef42ad6f8ee6380a9"
  476. },
  477. "dist": {
  478. "type": "zip",
  479. "url": "https://api.github.com/repos/instaclick/php-webdriver/zipball/200b8df772b74d604bebf25ef42ad6f8ee6380a9",
  480. "reference": "200b8df772b74d604bebf25ef42ad6f8ee6380a9",
  481. "shasum": ""
  482. },
  483. "require": {
  484. "ext-curl": "*",
  485. "php": ">=5.3.2"
  486. },
  487. "require-dev": {
  488. "phpunit/phpunit": "^8.5 || ^9.5",
  489. "satooshi/php-coveralls": "^1.0 || ^2.0"
  490. },
  491. "type": "library",
  492. "extra": {
  493. "branch-alias": {
  494. "dev-master": "1.4.x-dev"
  495. }
  496. },
  497. "autoload": {
  498. "psr-0": {
  499. "WebDriver": "lib/"
  500. }
  501. },
  502. "notification-url": "https://packagist.org/downloads/",
  503. "license": [
  504. "Apache-2.0"
  505. ],
  506. "authors": [
  507. {
  508. "name": "Justin Bishop",
  509. "email": "jubishop@gmail.com",
  510. "role": "Developer"
  511. },
  512. {
  513. "name": "Anthon Pang",
  514. "email": "apang@softwaredevelopment.ca",
  515. "role": "Fork Maintainer"
  516. }
  517. ],
  518. "description": "PHP WebDriver for Selenium 2",
  519. "homepage": "http://instaclick.com/",
  520. "keywords": [
  521. "browser",
  522. "selenium",
  523. "webdriver",
  524. "webtest"
  525. ],
  526. "support": {
  527. "issues": "https://github.com/instaclick/php-webdriver/issues",
  528. "source": "https://github.com/instaclick/php-webdriver/tree/1.4.14"
  529. },
  530. "time": "2022-04-19T02:06:59+00:00"
  531. },
  532. {
  533. "name": "myclabs/deep-copy",
  534. "version": "1.11.0",
  535. "source": {
  536. "type": "git",
  537. "url": "https://github.com/myclabs/DeepCopy.git",
  538. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614"
  539. },
  540. "dist": {
  541. "type": "zip",
  542. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/14daed4296fae74d9e3201d2c4925d1acb7aa614",
  543. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614",
  544. "shasum": ""
  545. },
  546. "require": {
  547. "php": "^7.1 || ^8.0"
  548. },
  549. "conflict": {
  550. "doctrine/collections": "<1.6.8",
  551. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  552. },
  553. "require-dev": {
  554. "doctrine/collections": "^1.6.8",
  555. "doctrine/common": "^2.13.3 || ^3.2.2",
  556. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  557. },
  558. "type": "library",
  559. "autoload": {
  560. "files": [
  561. "src/DeepCopy/deep_copy.php"
  562. ],
  563. "psr-4": {
  564. "DeepCopy\\": "src/DeepCopy/"
  565. }
  566. },
  567. "notification-url": "https://packagist.org/downloads/",
  568. "license": [
  569. "MIT"
  570. ],
  571. "description": "Create deep copies (clones) of your objects",
  572. "keywords": [
  573. "clone",
  574. "copy",
  575. "duplicate",
  576. "object",
  577. "object graph"
  578. ],
  579. "support": {
  580. "issues": "https://github.com/myclabs/DeepCopy/issues",
  581. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.0"
  582. },
  583. "funding": [
  584. {
  585. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  586. "type": "tidelift"
  587. }
  588. ],
  589. "time": "2022-03-03T13:19:32+00:00"
  590. },
  591. {
  592. "name": "nikic/php-parser",
  593. "version": "v4.14.0",
  594. "source": {
  595. "type": "git",
  596. "url": "https://github.com/nikic/PHP-Parser.git",
  597. "reference": "34bea19b6e03d8153165d8f30bba4c3be86184c1"
  598. },
  599. "dist": {
  600. "type": "zip",
  601. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/34bea19b6e03d8153165d8f30bba4c3be86184c1",
  602. "reference": "34bea19b6e03d8153165d8f30bba4c3be86184c1",
  603. "shasum": ""
  604. },
  605. "require": {
  606. "ext-tokenizer": "*",
  607. "php": ">=7.0"
  608. },
  609. "require-dev": {
  610. "ircmaxell/php-yacc": "^0.0.7",
  611. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  612. },
  613. "bin": [
  614. "bin/php-parse"
  615. ],
  616. "type": "library",
  617. "extra": {
  618. "branch-alias": {
  619. "dev-master": "4.9-dev"
  620. }
  621. },
  622. "autoload": {
  623. "psr-4": {
  624. "PhpParser\\": "lib/PhpParser"
  625. }
  626. },
  627. "notification-url": "https://packagist.org/downloads/",
  628. "license": [
  629. "BSD-3-Clause"
  630. ],
  631. "authors": [
  632. {
  633. "name": "Nikita Popov"
  634. }
  635. ],
  636. "description": "A PHP parser written in PHP",
  637. "keywords": [
  638. "parser",
  639. "php"
  640. ],
  641. "support": {
  642. "issues": "https://github.com/nikic/PHP-Parser/issues",
  643. "source": "https://github.com/nikic/PHP-Parser/tree/v4.14.0"
  644. },
  645. "time": "2022-05-31T20:59:12+00:00"
  646. },
  647. {
  648. "name": "phar-io/manifest",
  649. "version": "2.0.3",
  650. "source": {
  651. "type": "git",
  652. "url": "https://github.com/phar-io/manifest.git",
  653. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  654. },
  655. "dist": {
  656. "type": "zip",
  657. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  658. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  659. "shasum": ""
  660. },
  661. "require": {
  662. "ext-dom": "*",
  663. "ext-phar": "*",
  664. "ext-xmlwriter": "*",
  665. "phar-io/version": "^3.0.1",
  666. "php": "^7.2 || ^8.0"
  667. },
  668. "type": "library",
  669. "extra": {
  670. "branch-alias": {
  671. "dev-master": "2.0.x-dev"
  672. }
  673. },
  674. "autoload": {
  675. "classmap": [
  676. "src/"
  677. ]
  678. },
  679. "notification-url": "https://packagist.org/downloads/",
  680. "license": [
  681. "BSD-3-Clause"
  682. ],
  683. "authors": [
  684. {
  685. "name": "Arne Blankerts",
  686. "email": "arne@blankerts.de",
  687. "role": "Developer"
  688. },
  689. {
  690. "name": "Sebastian Heuer",
  691. "email": "sebastian@phpeople.de",
  692. "role": "Developer"
  693. },
  694. {
  695. "name": "Sebastian Bergmann",
  696. "email": "sebastian@phpunit.de",
  697. "role": "Developer"
  698. }
  699. ],
  700. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  701. "support": {
  702. "issues": "https://github.com/phar-io/manifest/issues",
  703. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  704. },
  705. "time": "2021-07-20T11:28:43+00:00"
  706. },
  707. {
  708. "name": "phar-io/version",
  709. "version": "3.2.1",
  710. "source": {
  711. "type": "git",
  712. "url": "https://github.com/phar-io/version.git",
  713. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  714. },
  715. "dist": {
  716. "type": "zip",
  717. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  718. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  719. "shasum": ""
  720. },
  721. "require": {
  722. "php": "^7.2 || ^8.0"
  723. },
  724. "type": "library",
  725. "autoload": {
  726. "classmap": [
  727. "src/"
  728. ]
  729. },
  730. "notification-url": "https://packagist.org/downloads/",
  731. "license": [
  732. "BSD-3-Clause"
  733. ],
  734. "authors": [
  735. {
  736. "name": "Arne Blankerts",
  737. "email": "arne@blankerts.de",
  738. "role": "Developer"
  739. },
  740. {
  741. "name": "Sebastian Heuer",
  742. "email": "sebastian@phpeople.de",
  743. "role": "Developer"
  744. },
  745. {
  746. "name": "Sebastian Bergmann",
  747. "email": "sebastian@phpunit.de",
  748. "role": "Developer"
  749. }
  750. ],
  751. "description": "Library for handling version information and constraints",
  752. "support": {
  753. "issues": "https://github.com/phar-io/version/issues",
  754. "source": "https://github.com/phar-io/version/tree/3.2.1"
  755. },
  756. "time": "2022-02-21T01:04:05+00:00"
  757. },
  758. {
  759. "name": "phpdocumentor/reflection-common",
  760. "version": "2.2.0",
  761. "source": {
  762. "type": "git",
  763. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  764. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  765. },
  766. "dist": {
  767. "type": "zip",
  768. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  769. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  770. "shasum": ""
  771. },
  772. "require": {
  773. "php": "^7.2 || ^8.0"
  774. },
  775. "type": "library",
  776. "extra": {
  777. "branch-alias": {
  778. "dev-2.x": "2.x-dev"
  779. }
  780. },
  781. "autoload": {
  782. "psr-4": {
  783. "phpDocumentor\\Reflection\\": "src/"
  784. }
  785. },
  786. "notification-url": "https://packagist.org/downloads/",
  787. "license": [
  788. "MIT"
  789. ],
  790. "authors": [
  791. {
  792. "name": "Jaap van Otterdijk",
  793. "email": "opensource@ijaap.nl"
  794. }
  795. ],
  796. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  797. "homepage": "http://www.phpdoc.org",
  798. "keywords": [
  799. "FQSEN",
  800. "phpDocumentor",
  801. "phpdoc",
  802. "reflection",
  803. "static analysis"
  804. ],
  805. "support": {
  806. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  807. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  808. },
  809. "time": "2020-06-27T09:03:43+00:00"
  810. },
  811. {
  812. "name": "phpdocumentor/reflection-docblock",
  813. "version": "5.3.0",
  814. "source": {
  815. "type": "git",
  816. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  817. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170"
  818. },
  819. "dist": {
  820. "type": "zip",
  821. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170",
  822. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170",
  823. "shasum": ""
  824. },
  825. "require": {
  826. "ext-filter": "*",
  827. "php": "^7.2 || ^8.0",
  828. "phpdocumentor/reflection-common": "^2.2",
  829. "phpdocumentor/type-resolver": "^1.3",
  830. "webmozart/assert": "^1.9.1"
  831. },
  832. "require-dev": {
  833. "mockery/mockery": "~1.3.2",
  834. "psalm/phar": "^4.8"
  835. },
  836. "type": "library",
  837. "extra": {
  838. "branch-alias": {
  839. "dev-master": "5.x-dev"
  840. }
  841. },
  842. "autoload": {
  843. "psr-4": {
  844. "phpDocumentor\\Reflection\\": "src"
  845. }
  846. },
  847. "notification-url": "https://packagist.org/downloads/",
  848. "license": [
  849. "MIT"
  850. ],
  851. "authors": [
  852. {
  853. "name": "Mike van Riel",
  854. "email": "me@mikevanriel.com"
  855. },
  856. {
  857. "name": "Jaap van Otterdijk",
  858. "email": "account@ijaap.nl"
  859. }
  860. ],
  861. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  862. "support": {
  863. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  864. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0"
  865. },
  866. "time": "2021-10-19T17:43:47+00:00"
  867. },
  868. {
  869. "name": "phpdocumentor/type-resolver",
  870. "version": "1.6.1",
  871. "source": {
  872. "type": "git",
  873. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  874. "reference": "77a32518733312af16a44300404e945338981de3"
  875. },
  876. "dist": {
  877. "type": "zip",
  878. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/77a32518733312af16a44300404e945338981de3",
  879. "reference": "77a32518733312af16a44300404e945338981de3",
  880. "shasum": ""
  881. },
  882. "require": {
  883. "php": "^7.2 || ^8.0",
  884. "phpdocumentor/reflection-common": "^2.0"
  885. },
  886. "require-dev": {
  887. "ext-tokenizer": "*",
  888. "psalm/phar": "^4.8"
  889. },
  890. "type": "library",
  891. "extra": {
  892. "branch-alias": {
  893. "dev-1.x": "1.x-dev"
  894. }
  895. },
  896. "autoload": {
  897. "psr-4": {
  898. "phpDocumentor\\Reflection\\": "src"
  899. }
  900. },
  901. "notification-url": "https://packagist.org/downloads/",
  902. "license": [
  903. "MIT"
  904. ],
  905. "authors": [
  906. {
  907. "name": "Mike van Riel",
  908. "email": "me@mikevanriel.com"
  909. }
  910. ],
  911. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  912. "support": {
  913. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  914. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.6.1"
  915. },
  916. "time": "2022-03-15T21:29:03+00:00"
  917. },
  918. {
  919. "name": "phpspec/prophecy",
  920. "version": "v1.15.0",
  921. "source": {
  922. "type": "git",
  923. "url": "https://github.com/phpspec/prophecy.git",
  924. "reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13"
  925. },
  926. "dist": {
  927. "type": "zip",
  928. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/bbcd7380b0ebf3961ee21409db7b38bc31d69a13",
  929. "reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13",
  930. "shasum": ""
  931. },
  932. "require": {
  933. "doctrine/instantiator": "^1.2",
  934. "php": "^7.2 || ~8.0, <8.2",
  935. "phpdocumentor/reflection-docblock": "^5.2",
  936. "sebastian/comparator": "^3.0 || ^4.0",
  937. "sebastian/recursion-context": "^3.0 || ^4.0"
  938. },
  939. "require-dev": {
  940. "phpspec/phpspec": "^6.0 || ^7.0",
  941. "phpunit/phpunit": "^8.0 || ^9.0"
  942. },
  943. "type": "library",
  944. "extra": {
  945. "branch-alias": {
  946. "dev-master": "1.x-dev"
  947. }
  948. },
  949. "autoload": {
  950. "psr-4": {
  951. "Prophecy\\": "src/Prophecy"
  952. }
  953. },
  954. "notification-url": "https://packagist.org/downloads/",
  955. "license": [
  956. "MIT"
  957. ],
  958. "authors": [
  959. {
  960. "name": "Konstantin Kudryashov",
  961. "email": "ever.zet@gmail.com",
  962. "homepage": "http://everzet.com"
  963. },
  964. {
  965. "name": "Marcello Duarte",
  966. "email": "marcello.duarte@gmail.com"
  967. }
  968. ],
  969. "description": "Highly opinionated mocking framework for PHP 5.3+",
  970. "homepage": "https://github.com/phpspec/prophecy",
  971. "keywords": [
  972. "Double",
  973. "Dummy",
  974. "fake",
  975. "mock",
  976. "spy",
  977. "stub"
  978. ],
  979. "support": {
  980. "issues": "https://github.com/phpspec/prophecy/issues",
  981. "source": "https://github.com/phpspec/prophecy/tree/v1.15.0"
  982. },
  983. "time": "2021-12-08T12:19:24+00:00"
  984. },
  985. {
  986. "name": "phpunit/php-code-coverage",
  987. "version": "9.2.15",
  988. "source": {
  989. "type": "git",
  990. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  991. "reference": "2e9da11878c4202f97915c1cb4bb1ca318a63f5f"
  992. },
  993. "dist": {
  994. "type": "zip",
  995. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/2e9da11878c4202f97915c1cb4bb1ca318a63f5f",
  996. "reference": "2e9da11878c4202f97915c1cb4bb1ca318a63f5f",
  997. "shasum": ""
  998. },
  999. "require": {
  1000. "ext-dom": "*",
  1001. "ext-libxml": "*",
  1002. "ext-xmlwriter": "*",
  1003. "nikic/php-parser": "^4.13.0",
  1004. "php": ">=7.3",
  1005. "phpunit/php-file-iterator": "^3.0.3",
  1006. "phpunit/php-text-template": "^2.0.2",
  1007. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  1008. "sebastian/complexity": "^2.0",
  1009. "sebastian/environment": "^5.1.2",
  1010. "sebastian/lines-of-code": "^1.0.3",
  1011. "sebastian/version": "^3.0.1",
  1012. "theseer/tokenizer": "^1.2.0"
  1013. },
  1014. "require-dev": {
  1015. "phpunit/phpunit": "^9.3"
  1016. },
  1017. "suggest": {
  1018. "ext-pcov": "*",
  1019. "ext-xdebug": "*"
  1020. },
  1021. "type": "library",
  1022. "extra": {
  1023. "branch-alias": {
  1024. "dev-master": "9.2-dev"
  1025. }
  1026. },
  1027. "autoload": {
  1028. "classmap": [
  1029. "src/"
  1030. ]
  1031. },
  1032. "notification-url": "https://packagist.org/downloads/",
  1033. "license": [
  1034. "BSD-3-Clause"
  1035. ],
  1036. "authors": [
  1037. {
  1038. "name": "Sebastian Bergmann",
  1039. "email": "sebastian@phpunit.de",
  1040. "role": "lead"
  1041. }
  1042. ],
  1043. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  1044. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  1045. "keywords": [
  1046. "coverage",
  1047. "testing",
  1048. "xunit"
  1049. ],
  1050. "support": {
  1051. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  1052. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.15"
  1053. },
  1054. "funding": [
  1055. {
  1056. "url": "https://github.com/sebastianbergmann",
  1057. "type": "github"
  1058. }
  1059. ],
  1060. "time": "2022-03-07T09:28:20+00:00"
  1061. },
  1062. {
  1063. "name": "phpunit/php-file-iterator",
  1064. "version": "3.0.6",
  1065. "source": {
  1066. "type": "git",
  1067. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  1068. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  1069. },
  1070. "dist": {
  1071. "type": "zip",
  1072. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  1073. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  1074. "shasum": ""
  1075. },
  1076. "require": {
  1077. "php": ">=7.3"
  1078. },
  1079. "require-dev": {
  1080. "phpunit/phpunit": "^9.3"
  1081. },
  1082. "type": "library",
  1083. "extra": {
  1084. "branch-alias": {
  1085. "dev-master": "3.0-dev"
  1086. }
  1087. },
  1088. "autoload": {
  1089. "classmap": [
  1090. "src/"
  1091. ]
  1092. },
  1093. "notification-url": "https://packagist.org/downloads/",
  1094. "license": [
  1095. "BSD-3-Clause"
  1096. ],
  1097. "authors": [
  1098. {
  1099. "name": "Sebastian Bergmann",
  1100. "email": "sebastian@phpunit.de",
  1101. "role": "lead"
  1102. }
  1103. ],
  1104. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  1105. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  1106. "keywords": [
  1107. "filesystem",
  1108. "iterator"
  1109. ],
  1110. "support": {
  1111. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  1112. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  1113. },
  1114. "funding": [
  1115. {
  1116. "url": "https://github.com/sebastianbergmann",
  1117. "type": "github"
  1118. }
  1119. ],
  1120. "time": "2021-12-02T12:48:52+00:00"
  1121. },
  1122. {
  1123. "name": "phpunit/php-invoker",
  1124. "version": "3.1.1",
  1125. "source": {
  1126. "type": "git",
  1127. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  1128. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  1129. },
  1130. "dist": {
  1131. "type": "zip",
  1132. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  1133. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  1134. "shasum": ""
  1135. },
  1136. "require": {
  1137. "php": ">=7.3"
  1138. },
  1139. "require-dev": {
  1140. "ext-pcntl": "*",
  1141. "phpunit/phpunit": "^9.3"
  1142. },
  1143. "suggest": {
  1144. "ext-pcntl": "*"
  1145. },
  1146. "type": "library",
  1147. "extra": {
  1148. "branch-alias": {
  1149. "dev-master": "3.1-dev"
  1150. }
  1151. },
  1152. "autoload": {
  1153. "classmap": [
  1154. "src/"
  1155. ]
  1156. },
  1157. "notification-url": "https://packagist.org/downloads/",
  1158. "license": [
  1159. "BSD-3-Clause"
  1160. ],
  1161. "authors": [
  1162. {
  1163. "name": "Sebastian Bergmann",
  1164. "email": "sebastian@phpunit.de",
  1165. "role": "lead"
  1166. }
  1167. ],
  1168. "description": "Invoke callables with a timeout",
  1169. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  1170. "keywords": [
  1171. "process"
  1172. ],
  1173. "support": {
  1174. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  1175. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  1176. },
  1177. "funding": [
  1178. {
  1179. "url": "https://github.com/sebastianbergmann",
  1180. "type": "github"
  1181. }
  1182. ],
  1183. "time": "2020-09-28T05:58:55+00:00"
  1184. },
  1185. {
  1186. "name": "phpunit/php-text-template",
  1187. "version": "2.0.4",
  1188. "source": {
  1189. "type": "git",
  1190. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  1191. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  1192. },
  1193. "dist": {
  1194. "type": "zip",
  1195. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  1196. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  1197. "shasum": ""
  1198. },
  1199. "require": {
  1200. "php": ">=7.3"
  1201. },
  1202. "require-dev": {
  1203. "phpunit/phpunit": "^9.3"
  1204. },
  1205. "type": "library",
  1206. "extra": {
  1207. "branch-alias": {
  1208. "dev-master": "2.0-dev"
  1209. }
  1210. },
  1211. "autoload": {
  1212. "classmap": [
  1213. "src/"
  1214. ]
  1215. },
  1216. "notification-url": "https://packagist.org/downloads/",
  1217. "license": [
  1218. "BSD-3-Clause"
  1219. ],
  1220. "authors": [
  1221. {
  1222. "name": "Sebastian Bergmann",
  1223. "email": "sebastian@phpunit.de",
  1224. "role": "lead"
  1225. }
  1226. ],
  1227. "description": "Simple template engine.",
  1228. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  1229. "keywords": [
  1230. "template"
  1231. ],
  1232. "support": {
  1233. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  1234. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  1235. },
  1236. "funding": [
  1237. {
  1238. "url": "https://github.com/sebastianbergmann",
  1239. "type": "github"
  1240. }
  1241. ],
  1242. "time": "2020-10-26T05:33:50+00:00"
  1243. },
  1244. {
  1245. "name": "phpunit/php-timer",
  1246. "version": "5.0.3",
  1247. "source": {
  1248. "type": "git",
  1249. "url": "https://github.com/sebastianbergmann/php-timer.git",
  1250. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  1251. },
  1252. "dist": {
  1253. "type": "zip",
  1254. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  1255. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  1256. "shasum": ""
  1257. },
  1258. "require": {
  1259. "php": ">=7.3"
  1260. },
  1261. "require-dev": {
  1262. "phpunit/phpunit": "^9.3"
  1263. },
  1264. "type": "library",
  1265. "extra": {
  1266. "branch-alias": {
  1267. "dev-master": "5.0-dev"
  1268. }
  1269. },
  1270. "autoload": {
  1271. "classmap": [
  1272. "src/"
  1273. ]
  1274. },
  1275. "notification-url": "https://packagist.org/downloads/",
  1276. "license": [
  1277. "BSD-3-Clause"
  1278. ],
  1279. "authors": [
  1280. {
  1281. "name": "Sebastian Bergmann",
  1282. "email": "sebastian@phpunit.de",
  1283. "role": "lead"
  1284. }
  1285. ],
  1286. "description": "Utility class for timing",
  1287. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  1288. "keywords": [
  1289. "timer"
  1290. ],
  1291. "support": {
  1292. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  1293. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  1294. },
  1295. "funding": [
  1296. {
  1297. "url": "https://github.com/sebastianbergmann",
  1298. "type": "github"
  1299. }
  1300. ],
  1301. "time": "2020-10-26T13:16:10+00:00"
  1302. },
  1303. {
  1304. "name": "phpunit/phpunit",
  1305. "version": "9.5.19",
  1306. "source": {
  1307. "type": "git",
  1308. "url": "https://github.com/sebastianbergmann/phpunit.git",
  1309. "reference": "35ea4b7f3acabb26f4bb640f8c30866c401da807"
  1310. },
  1311. "dist": {
  1312. "type": "zip",
  1313. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/35ea4b7f3acabb26f4bb640f8c30866c401da807",
  1314. "reference": "35ea4b7f3acabb26f4bb640f8c30866c401da807",
  1315. "shasum": ""
  1316. },
  1317. "require": {
  1318. "doctrine/instantiator": "^1.3.1",
  1319. "ext-dom": "*",
  1320. "ext-json": "*",
  1321. "ext-libxml": "*",
  1322. "ext-mbstring": "*",
  1323. "ext-xml": "*",
  1324. "ext-xmlwriter": "*",
  1325. "myclabs/deep-copy": "^1.10.1",
  1326. "phar-io/manifest": "^2.0.3",
  1327. "phar-io/version": "^3.0.2",
  1328. "php": ">=7.3",
  1329. "phpspec/prophecy": "^1.12.1",
  1330. "phpunit/php-code-coverage": "^9.2.13",
  1331. "phpunit/php-file-iterator": "^3.0.5",
  1332. "phpunit/php-invoker": "^3.1.1",
  1333. "phpunit/php-text-template": "^2.0.3",
  1334. "phpunit/php-timer": "^5.0.2",
  1335. "sebastian/cli-parser": "^1.0.1",
  1336. "sebastian/code-unit": "^1.0.6",
  1337. "sebastian/comparator": "^4.0.5",
  1338. "sebastian/diff": "^4.0.3",
  1339. "sebastian/environment": "^5.1.3",
  1340. "sebastian/exporter": "^4.0.3",
  1341. "sebastian/global-state": "^5.0.1",
  1342. "sebastian/object-enumerator": "^4.0.3",
  1343. "sebastian/resource-operations": "^3.0.3",
  1344. "sebastian/type": "^3.0",
  1345. "sebastian/version": "^3.0.2"
  1346. },
  1347. "require-dev": {
  1348. "ext-pdo": "*",
  1349. "phpspec/prophecy-phpunit": "^2.0.1"
  1350. },
  1351. "suggest": {
  1352. "ext-soap": "*",
  1353. "ext-xdebug": "*"
  1354. },
  1355. "bin": [
  1356. "phpunit"
  1357. ],
  1358. "type": "library",
  1359. "extra": {
  1360. "branch-alias": {
  1361. "dev-master": "9.5-dev"
  1362. }
  1363. },
  1364. "autoload": {
  1365. "files": [
  1366. "src/Framework/Assert/Functions.php"
  1367. ],
  1368. "classmap": [
  1369. "src/"
  1370. ]
  1371. },
  1372. "notification-url": "https://packagist.org/downloads/",
  1373. "license": [
  1374. "BSD-3-Clause"
  1375. ],
  1376. "authors": [
  1377. {
  1378. "name": "Sebastian Bergmann",
  1379. "email": "sebastian@phpunit.de",
  1380. "role": "lead"
  1381. }
  1382. ],
  1383. "description": "The PHP Unit Testing framework.",
  1384. "homepage": "https://phpunit.de/",
  1385. "keywords": [
  1386. "phpunit",
  1387. "testing",
  1388. "xunit"
  1389. ],
  1390. "support": {
  1391. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  1392. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.19"
  1393. },
  1394. "funding": [
  1395. {
  1396. "url": "https://phpunit.de/sponsors.html",
  1397. "type": "custom"
  1398. },
  1399. {
  1400. "url": "https://github.com/sebastianbergmann",
  1401. "type": "github"
  1402. }
  1403. ],
  1404. "time": "2022-03-15T09:57:31+00:00"
  1405. },
  1406. {
  1407. "name": "psr/container",
  1408. "version": "1.1.2",
  1409. "source": {
  1410. "type": "git",
  1411. "url": "https://github.com/php-fig/container.git",
  1412. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  1413. },
  1414. "dist": {
  1415. "type": "zip",
  1416. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  1417. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  1418. "shasum": ""
  1419. },
  1420. "require": {
  1421. "php": ">=7.4.0"
  1422. },
  1423. "type": "library",
  1424. "autoload": {
  1425. "psr-4": {
  1426. "Psr\\Container\\": "src/"
  1427. }
  1428. },
  1429. "notification-url": "https://packagist.org/downloads/",
  1430. "license": [
  1431. "MIT"
  1432. ],
  1433. "authors": [
  1434. {
  1435. "name": "PHP-FIG",
  1436. "homepage": "https://www.php-fig.org/"
  1437. }
  1438. ],
  1439. "description": "Common Container Interface (PHP FIG PSR-11)",
  1440. "homepage": "https://github.com/php-fig/container",
  1441. "keywords": [
  1442. "PSR-11",
  1443. "container",
  1444. "container-interface",
  1445. "container-interop",
  1446. "psr"
  1447. ],
  1448. "support": {
  1449. "issues": "https://github.com/php-fig/container/issues",
  1450. "source": "https://github.com/php-fig/container/tree/1.1.2"
  1451. },
  1452. "time": "2021-11-05T16:50:12+00:00"
  1453. },
  1454. {
  1455. "name": "psr/event-dispatcher",
  1456. "version": "1.0.0",
  1457. "source": {
  1458. "type": "git",
  1459. "url": "https://github.com/php-fig/event-dispatcher.git",
  1460. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  1461. },
  1462. "dist": {
  1463. "type": "zip",
  1464. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  1465. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  1466. "shasum": ""
  1467. },
  1468. "require": {
  1469. "php": ">=7.2.0"
  1470. },
  1471. "type": "library",
  1472. "extra": {
  1473. "branch-alias": {
  1474. "dev-master": "1.0.x-dev"
  1475. }
  1476. },
  1477. "autoload": {
  1478. "psr-4": {
  1479. "Psr\\EventDispatcher\\": "src/"
  1480. }
  1481. },
  1482. "notification-url": "https://packagist.org/downloads/",
  1483. "license": [
  1484. "MIT"
  1485. ],
  1486. "authors": [
  1487. {
  1488. "name": "PHP-FIG",
  1489. "homepage": "http://www.php-fig.org/"
  1490. }
  1491. ],
  1492. "description": "Standard interfaces for event handling.",
  1493. "keywords": [
  1494. "events",
  1495. "psr",
  1496. "psr-14"
  1497. ],
  1498. "support": {
  1499. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  1500. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  1501. },
  1502. "time": "2019-01-08T18:20:26+00:00"
  1503. },
  1504. {
  1505. "name": "sebastian/cli-parser",
  1506. "version": "1.0.1",
  1507. "source": {
  1508. "type": "git",
  1509. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  1510. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  1511. },
  1512. "dist": {
  1513. "type": "zip",
  1514. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  1515. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  1516. "shasum": ""
  1517. },
  1518. "require": {
  1519. "php": ">=7.3"
  1520. },
  1521. "require-dev": {
  1522. "phpunit/phpunit": "^9.3"
  1523. },
  1524. "type": "library",
  1525. "extra": {
  1526. "branch-alias": {
  1527. "dev-master": "1.0-dev"
  1528. }
  1529. },
  1530. "autoload": {
  1531. "classmap": [
  1532. "src/"
  1533. ]
  1534. },
  1535. "notification-url": "https://packagist.org/downloads/",
  1536. "license": [
  1537. "BSD-3-Clause"
  1538. ],
  1539. "authors": [
  1540. {
  1541. "name": "Sebastian Bergmann",
  1542. "email": "sebastian@phpunit.de",
  1543. "role": "lead"
  1544. }
  1545. ],
  1546. "description": "Library for parsing CLI options",
  1547. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  1548. "support": {
  1549. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  1550. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  1551. },
  1552. "funding": [
  1553. {
  1554. "url": "https://github.com/sebastianbergmann",
  1555. "type": "github"
  1556. }
  1557. ],
  1558. "time": "2020-09-28T06:08:49+00:00"
  1559. },
  1560. {
  1561. "name": "sebastian/code-unit",
  1562. "version": "1.0.8",
  1563. "source": {
  1564. "type": "git",
  1565. "url": "https://github.com/sebastianbergmann/code-unit.git",
  1566. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  1567. },
  1568. "dist": {
  1569. "type": "zip",
  1570. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  1571. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  1572. "shasum": ""
  1573. },
  1574. "require": {
  1575. "php": ">=7.3"
  1576. },
  1577. "require-dev": {
  1578. "phpunit/phpunit": "^9.3"
  1579. },
  1580. "type": "library",
  1581. "extra": {
  1582. "branch-alias": {
  1583. "dev-master": "1.0-dev"
  1584. }
  1585. },
  1586. "autoload": {
  1587. "classmap": [
  1588. "src/"
  1589. ]
  1590. },
  1591. "notification-url": "https://packagist.org/downloads/",
  1592. "license": [
  1593. "BSD-3-Clause"
  1594. ],
  1595. "authors": [
  1596. {
  1597. "name": "Sebastian Bergmann",
  1598. "email": "sebastian@phpunit.de",
  1599. "role": "lead"
  1600. }
  1601. ],
  1602. "description": "Collection of value objects that represent the PHP code units",
  1603. "homepage": "https://github.com/sebastianbergmann/code-unit",
  1604. "support": {
  1605. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  1606. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  1607. },
  1608. "funding": [
  1609. {
  1610. "url": "https://github.com/sebastianbergmann",
  1611. "type": "github"
  1612. }
  1613. ],
  1614. "time": "2020-10-26T13:08:54+00:00"
  1615. },
  1616. {
  1617. "name": "sebastian/code-unit-reverse-lookup",
  1618. "version": "2.0.3",
  1619. "source": {
  1620. "type": "git",
  1621. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  1622. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  1623. },
  1624. "dist": {
  1625. "type": "zip",
  1626. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  1627. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  1628. "shasum": ""
  1629. },
  1630. "require": {
  1631. "php": ">=7.3"
  1632. },
  1633. "require-dev": {
  1634. "phpunit/phpunit": "^9.3"
  1635. },
  1636. "type": "library",
  1637. "extra": {
  1638. "branch-alias": {
  1639. "dev-master": "2.0-dev"
  1640. }
  1641. },
  1642. "autoload": {
  1643. "classmap": [
  1644. "src/"
  1645. ]
  1646. },
  1647. "notification-url": "https://packagist.org/downloads/",
  1648. "license": [
  1649. "BSD-3-Clause"
  1650. ],
  1651. "authors": [
  1652. {
  1653. "name": "Sebastian Bergmann",
  1654. "email": "sebastian@phpunit.de"
  1655. }
  1656. ],
  1657. "description": "Looks up which function or method a line of code belongs to",
  1658. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  1659. "support": {
  1660. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  1661. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  1662. },
  1663. "funding": [
  1664. {
  1665. "url": "https://github.com/sebastianbergmann",
  1666. "type": "github"
  1667. }
  1668. ],
  1669. "time": "2020-09-28T05:30:19+00:00"
  1670. },
  1671. {
  1672. "name": "sebastian/comparator",
  1673. "version": "4.0.6",
  1674. "source": {
  1675. "type": "git",
  1676. "url": "https://github.com/sebastianbergmann/comparator.git",
  1677. "reference": "55f4261989e546dc112258c7a75935a81a7ce382"
  1678. },
  1679. "dist": {
  1680. "type": "zip",
  1681. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/55f4261989e546dc112258c7a75935a81a7ce382",
  1682. "reference": "55f4261989e546dc112258c7a75935a81a7ce382",
  1683. "shasum": ""
  1684. },
  1685. "require": {
  1686. "php": ">=7.3",
  1687. "sebastian/diff": "^4.0",
  1688. "sebastian/exporter": "^4.0"
  1689. },
  1690. "require-dev": {
  1691. "phpunit/phpunit": "^9.3"
  1692. },
  1693. "type": "library",
  1694. "extra": {
  1695. "branch-alias": {
  1696. "dev-master": "4.0-dev"
  1697. }
  1698. },
  1699. "autoload": {
  1700. "classmap": [
  1701. "src/"
  1702. ]
  1703. },
  1704. "notification-url": "https://packagist.org/downloads/",
  1705. "license": [
  1706. "BSD-3-Clause"
  1707. ],
  1708. "authors": [
  1709. {
  1710. "name": "Sebastian Bergmann",
  1711. "email": "sebastian@phpunit.de"
  1712. },
  1713. {
  1714. "name": "Jeff Welch",
  1715. "email": "whatthejeff@gmail.com"
  1716. },
  1717. {
  1718. "name": "Volker Dusch",
  1719. "email": "github@wallbash.com"
  1720. },
  1721. {
  1722. "name": "Bernhard Schussek",
  1723. "email": "bschussek@2bepublished.at"
  1724. }
  1725. ],
  1726. "description": "Provides the functionality to compare PHP values for equality",
  1727. "homepage": "https://github.com/sebastianbergmann/comparator",
  1728. "keywords": [
  1729. "comparator",
  1730. "compare",
  1731. "equality"
  1732. ],
  1733. "support": {
  1734. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  1735. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.6"
  1736. },
  1737. "funding": [
  1738. {
  1739. "url": "https://github.com/sebastianbergmann",
  1740. "type": "github"
  1741. }
  1742. ],
  1743. "time": "2020-10-26T15:49:45+00:00"
  1744. },
  1745. {
  1746. "name": "sebastian/complexity",
  1747. "version": "2.0.2",
  1748. "source": {
  1749. "type": "git",
  1750. "url": "https://github.com/sebastianbergmann/complexity.git",
  1751. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  1752. },
  1753. "dist": {
  1754. "type": "zip",
  1755. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  1756. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  1757. "shasum": ""
  1758. },
  1759. "require": {
  1760. "nikic/php-parser": "^4.7",
  1761. "php": ">=7.3"
  1762. },
  1763. "require-dev": {
  1764. "phpunit/phpunit": "^9.3"
  1765. },
  1766. "type": "library",
  1767. "extra": {
  1768. "branch-alias": {
  1769. "dev-master": "2.0-dev"
  1770. }
  1771. },
  1772. "autoload": {
  1773. "classmap": [
  1774. "src/"
  1775. ]
  1776. },
  1777. "notification-url": "https://packagist.org/downloads/",
  1778. "license": [
  1779. "BSD-3-Clause"
  1780. ],
  1781. "authors": [
  1782. {
  1783. "name": "Sebastian Bergmann",
  1784. "email": "sebastian@phpunit.de",
  1785. "role": "lead"
  1786. }
  1787. ],
  1788. "description": "Library for calculating the complexity of PHP code units",
  1789. "homepage": "https://github.com/sebastianbergmann/complexity",
  1790. "support": {
  1791. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  1792. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  1793. },
  1794. "funding": [
  1795. {
  1796. "url": "https://github.com/sebastianbergmann",
  1797. "type": "github"
  1798. }
  1799. ],
  1800. "time": "2020-10-26T15:52:27+00:00"
  1801. },
  1802. {
  1803. "name": "sebastian/diff",
  1804. "version": "4.0.4",
  1805. "source": {
  1806. "type": "git",
  1807. "url": "https://github.com/sebastianbergmann/diff.git",
  1808. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  1809. },
  1810. "dist": {
  1811. "type": "zip",
  1812. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  1813. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  1814. "shasum": ""
  1815. },
  1816. "require": {
  1817. "php": ">=7.3"
  1818. },
  1819. "require-dev": {
  1820. "phpunit/phpunit": "^9.3",
  1821. "symfony/process": "^4.2 || ^5"
  1822. },
  1823. "type": "library",
  1824. "extra": {
  1825. "branch-alias": {
  1826. "dev-master": "4.0-dev"
  1827. }
  1828. },
  1829. "autoload": {
  1830. "classmap": [
  1831. "src/"
  1832. ]
  1833. },
  1834. "notification-url": "https://packagist.org/downloads/",
  1835. "license": [
  1836. "BSD-3-Clause"
  1837. ],
  1838. "authors": [
  1839. {
  1840. "name": "Sebastian Bergmann",
  1841. "email": "sebastian@phpunit.de"
  1842. },
  1843. {
  1844. "name": "Kore Nordmann",
  1845. "email": "mail@kore-nordmann.de"
  1846. }
  1847. ],
  1848. "description": "Diff implementation",
  1849. "homepage": "https://github.com/sebastianbergmann/diff",
  1850. "keywords": [
  1851. "diff",
  1852. "udiff",
  1853. "unidiff",
  1854. "unified diff"
  1855. ],
  1856. "support": {
  1857. "issues": "https://github.com/sebastianbergmann/diff/issues",
  1858. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  1859. },
  1860. "funding": [
  1861. {
  1862. "url": "https://github.com/sebastianbergmann",
  1863. "type": "github"
  1864. }
  1865. ],
  1866. "time": "2020-10-26T13:10:38+00:00"
  1867. },
  1868. {
  1869. "name": "sebastian/environment",
  1870. "version": "5.1.4",
  1871. "source": {
  1872. "type": "git",
  1873. "url": "https://github.com/sebastianbergmann/environment.git",
  1874. "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7"
  1875. },
  1876. "dist": {
  1877. "type": "zip",
  1878. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/1b5dff7bb151a4db11d49d90e5408e4e938270f7",
  1879. "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7",
  1880. "shasum": ""
  1881. },
  1882. "require": {
  1883. "php": ">=7.3"
  1884. },
  1885. "require-dev": {
  1886. "phpunit/phpunit": "^9.3"
  1887. },
  1888. "suggest": {
  1889. "ext-posix": "*"
  1890. },
  1891. "type": "library",
  1892. "extra": {
  1893. "branch-alias": {
  1894. "dev-master": "5.1-dev"
  1895. }
  1896. },
  1897. "autoload": {
  1898. "classmap": [
  1899. "src/"
  1900. ]
  1901. },
  1902. "notification-url": "https://packagist.org/downloads/",
  1903. "license": [
  1904. "BSD-3-Clause"
  1905. ],
  1906. "authors": [
  1907. {
  1908. "name": "Sebastian Bergmann",
  1909. "email": "sebastian@phpunit.de"
  1910. }
  1911. ],
  1912. "description": "Provides functionality to handle HHVM/PHP environments",
  1913. "homepage": "http://www.github.com/sebastianbergmann/environment",
  1914. "keywords": [
  1915. "Xdebug",
  1916. "environment",
  1917. "hhvm"
  1918. ],
  1919. "support": {
  1920. "issues": "https://github.com/sebastianbergmann/environment/issues",
  1921. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.4"
  1922. },
  1923. "funding": [
  1924. {
  1925. "url": "https://github.com/sebastianbergmann",
  1926. "type": "github"
  1927. }
  1928. ],
  1929. "time": "2022-04-03T09:37:03+00:00"
  1930. },
  1931. {
  1932. "name": "sebastian/exporter",
  1933. "version": "4.0.4",
  1934. "source": {
  1935. "type": "git",
  1936. "url": "https://github.com/sebastianbergmann/exporter.git",
  1937. "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9"
  1938. },
  1939. "dist": {
  1940. "type": "zip",
  1941. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/65e8b7db476c5dd267e65eea9cab77584d3cfff9",
  1942. "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9",
  1943. "shasum": ""
  1944. },
  1945. "require": {
  1946. "php": ">=7.3",
  1947. "sebastian/recursion-context": "^4.0"
  1948. },
  1949. "require-dev": {
  1950. "ext-mbstring": "*",
  1951. "phpunit/phpunit": "^9.3"
  1952. },
  1953. "type": "library",
  1954. "extra": {
  1955. "branch-alias": {
  1956. "dev-master": "4.0-dev"
  1957. }
  1958. },
  1959. "autoload": {
  1960. "classmap": [
  1961. "src/"
  1962. ]
  1963. },
  1964. "notification-url": "https://packagist.org/downloads/",
  1965. "license": [
  1966. "BSD-3-Clause"
  1967. ],
  1968. "authors": [
  1969. {
  1970. "name": "Sebastian Bergmann",
  1971. "email": "sebastian@phpunit.de"
  1972. },
  1973. {
  1974. "name": "Jeff Welch",
  1975. "email": "whatthejeff@gmail.com"
  1976. },
  1977. {
  1978. "name": "Volker Dusch",
  1979. "email": "github@wallbash.com"
  1980. },
  1981. {
  1982. "name": "Adam Harvey",
  1983. "email": "aharvey@php.net"
  1984. },
  1985. {
  1986. "name": "Bernhard Schussek",
  1987. "email": "bschussek@gmail.com"
  1988. }
  1989. ],
  1990. "description": "Provides the functionality to export PHP variables for visualization",
  1991. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  1992. "keywords": [
  1993. "export",
  1994. "exporter"
  1995. ],
  1996. "support": {
  1997. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  1998. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.4"
  1999. },
  2000. "funding": [
  2001. {
  2002. "url": "https://github.com/sebastianbergmann",
  2003. "type": "github"
  2004. }
  2005. ],
  2006. "time": "2021-11-11T14:18:36+00:00"
  2007. },
  2008. {
  2009. "name": "sebastian/global-state",
  2010. "version": "5.0.5",
  2011. "source": {
  2012. "type": "git",
  2013. "url": "https://github.com/sebastianbergmann/global-state.git",
  2014. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2"
  2015. },
  2016. "dist": {
  2017. "type": "zip",
  2018. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  2019. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  2020. "shasum": ""
  2021. },
  2022. "require": {
  2023. "php": ">=7.3",
  2024. "sebastian/object-reflector": "^2.0",
  2025. "sebastian/recursion-context": "^4.0"
  2026. },
  2027. "require-dev": {
  2028. "ext-dom": "*",
  2029. "phpunit/phpunit": "^9.3"
  2030. },
  2031. "suggest": {
  2032. "ext-uopz": "*"
  2033. },
  2034. "type": "library",
  2035. "extra": {
  2036. "branch-alias": {
  2037. "dev-master": "5.0-dev"
  2038. }
  2039. },
  2040. "autoload": {
  2041. "classmap": [
  2042. "src/"
  2043. ]
  2044. },
  2045. "notification-url": "https://packagist.org/downloads/",
  2046. "license": [
  2047. "BSD-3-Clause"
  2048. ],
  2049. "authors": [
  2050. {
  2051. "name": "Sebastian Bergmann",
  2052. "email": "sebastian@phpunit.de"
  2053. }
  2054. ],
  2055. "description": "Snapshotting of global state",
  2056. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  2057. "keywords": [
  2058. "global state"
  2059. ],
  2060. "support": {
  2061. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  2062. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5"
  2063. },
  2064. "funding": [
  2065. {
  2066. "url": "https://github.com/sebastianbergmann",
  2067. "type": "github"
  2068. }
  2069. ],
  2070. "time": "2022-02-14T08:28:10+00:00"
  2071. },
  2072. {
  2073. "name": "sebastian/lines-of-code",
  2074. "version": "1.0.3",
  2075. "source": {
  2076. "type": "git",
  2077. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  2078. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  2079. },
  2080. "dist": {
  2081. "type": "zip",
  2082. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  2083. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  2084. "shasum": ""
  2085. },
  2086. "require": {
  2087. "nikic/php-parser": "^4.6",
  2088. "php": ">=7.3"
  2089. },
  2090. "require-dev": {
  2091. "phpunit/phpunit": "^9.3"
  2092. },
  2093. "type": "library",
  2094. "extra": {
  2095. "branch-alias": {
  2096. "dev-master": "1.0-dev"
  2097. }
  2098. },
  2099. "autoload": {
  2100. "classmap": [
  2101. "src/"
  2102. ]
  2103. },
  2104. "notification-url": "https://packagist.org/downloads/",
  2105. "license": [
  2106. "BSD-3-Clause"
  2107. ],
  2108. "authors": [
  2109. {
  2110. "name": "Sebastian Bergmann",
  2111. "email": "sebastian@phpunit.de",
  2112. "role": "lead"
  2113. }
  2114. ],
  2115. "description": "Library for counting the lines of code in PHP source code",
  2116. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  2117. "support": {
  2118. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  2119. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  2120. },
  2121. "funding": [
  2122. {
  2123. "url": "https://github.com/sebastianbergmann",
  2124. "type": "github"
  2125. }
  2126. ],
  2127. "time": "2020-11-28T06:42:11+00:00"
  2128. },
  2129. {
  2130. "name": "sebastian/object-enumerator",
  2131. "version": "4.0.4",
  2132. "source": {
  2133. "type": "git",
  2134. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  2135. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  2136. },
  2137. "dist": {
  2138. "type": "zip",
  2139. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  2140. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  2141. "shasum": ""
  2142. },
  2143. "require": {
  2144. "php": ">=7.3",
  2145. "sebastian/object-reflector": "^2.0",
  2146. "sebastian/recursion-context": "^4.0"
  2147. },
  2148. "require-dev": {
  2149. "phpunit/phpunit": "^9.3"
  2150. },
  2151. "type": "library",
  2152. "extra": {
  2153. "branch-alias": {
  2154. "dev-master": "4.0-dev"
  2155. }
  2156. },
  2157. "autoload": {
  2158. "classmap": [
  2159. "src/"
  2160. ]
  2161. },
  2162. "notification-url": "https://packagist.org/downloads/",
  2163. "license": [
  2164. "BSD-3-Clause"
  2165. ],
  2166. "authors": [
  2167. {
  2168. "name": "Sebastian Bergmann",
  2169. "email": "sebastian@phpunit.de"
  2170. }
  2171. ],
  2172. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  2173. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  2174. "support": {
  2175. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  2176. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  2177. },
  2178. "funding": [
  2179. {
  2180. "url": "https://github.com/sebastianbergmann",
  2181. "type": "github"
  2182. }
  2183. ],
  2184. "time": "2020-10-26T13:12:34+00:00"
  2185. },
  2186. {
  2187. "name": "sebastian/object-reflector",
  2188. "version": "2.0.4",
  2189. "source": {
  2190. "type": "git",
  2191. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  2192. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  2193. },
  2194. "dist": {
  2195. "type": "zip",
  2196. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  2197. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  2198. "shasum": ""
  2199. },
  2200. "require": {
  2201. "php": ">=7.3"
  2202. },
  2203. "require-dev": {
  2204. "phpunit/phpunit": "^9.3"
  2205. },
  2206. "type": "library",
  2207. "extra": {
  2208. "branch-alias": {
  2209. "dev-master": "2.0-dev"
  2210. }
  2211. },
  2212. "autoload": {
  2213. "classmap": [
  2214. "src/"
  2215. ]
  2216. },
  2217. "notification-url": "https://packagist.org/downloads/",
  2218. "license": [
  2219. "BSD-3-Clause"
  2220. ],
  2221. "authors": [
  2222. {
  2223. "name": "Sebastian Bergmann",
  2224. "email": "sebastian@phpunit.de"
  2225. }
  2226. ],
  2227. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  2228. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  2229. "support": {
  2230. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  2231. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  2232. },
  2233. "funding": [
  2234. {
  2235. "url": "https://github.com/sebastianbergmann",
  2236. "type": "github"
  2237. }
  2238. ],
  2239. "time": "2020-10-26T13:14:26+00:00"
  2240. },
  2241. {
  2242. "name": "sebastian/recursion-context",
  2243. "version": "4.0.4",
  2244. "source": {
  2245. "type": "git",
  2246. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  2247. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172"
  2248. },
  2249. "dist": {
  2250. "type": "zip",
  2251. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172",
  2252. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172",
  2253. "shasum": ""
  2254. },
  2255. "require": {
  2256. "php": ">=7.3"
  2257. },
  2258. "require-dev": {
  2259. "phpunit/phpunit": "^9.3"
  2260. },
  2261. "type": "library",
  2262. "extra": {
  2263. "branch-alias": {
  2264. "dev-master": "4.0-dev"
  2265. }
  2266. },
  2267. "autoload": {
  2268. "classmap": [
  2269. "src/"
  2270. ]
  2271. },
  2272. "notification-url": "https://packagist.org/downloads/",
  2273. "license": [
  2274. "BSD-3-Clause"
  2275. ],
  2276. "authors": [
  2277. {
  2278. "name": "Sebastian Bergmann",
  2279. "email": "sebastian@phpunit.de"
  2280. },
  2281. {
  2282. "name": "Jeff Welch",
  2283. "email": "whatthejeff@gmail.com"
  2284. },
  2285. {
  2286. "name": "Adam Harvey",
  2287. "email": "aharvey@php.net"
  2288. }
  2289. ],
  2290. "description": "Provides functionality to recursively process PHP variables",
  2291. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  2292. "support": {
  2293. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  2294. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4"
  2295. },
  2296. "funding": [
  2297. {
  2298. "url": "https://github.com/sebastianbergmann",
  2299. "type": "github"
  2300. }
  2301. ],
  2302. "time": "2020-10-26T13:17:30+00:00"
  2303. },
  2304. {
  2305. "name": "sebastian/resource-operations",
  2306. "version": "3.0.3",
  2307. "source": {
  2308. "type": "git",
  2309. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  2310. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  2311. },
  2312. "dist": {
  2313. "type": "zip",
  2314. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  2315. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  2316. "shasum": ""
  2317. },
  2318. "require": {
  2319. "php": ">=7.3"
  2320. },
  2321. "require-dev": {
  2322. "phpunit/phpunit": "^9.0"
  2323. },
  2324. "type": "library",
  2325. "extra": {
  2326. "branch-alias": {
  2327. "dev-master": "3.0-dev"
  2328. }
  2329. },
  2330. "autoload": {
  2331. "classmap": [
  2332. "src/"
  2333. ]
  2334. },
  2335. "notification-url": "https://packagist.org/downloads/",
  2336. "license": [
  2337. "BSD-3-Clause"
  2338. ],
  2339. "authors": [
  2340. {
  2341. "name": "Sebastian Bergmann",
  2342. "email": "sebastian@phpunit.de"
  2343. }
  2344. ],
  2345. "description": "Provides a list of PHP built-in functions that operate on resources",
  2346. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  2347. "support": {
  2348. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  2349. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  2350. },
  2351. "funding": [
  2352. {
  2353. "url": "https://github.com/sebastianbergmann",
  2354. "type": "github"
  2355. }
  2356. ],
  2357. "time": "2020-09-28T06:45:17+00:00"
  2358. },
  2359. {
  2360. "name": "sebastian/type",
  2361. "version": "3.0.0",
  2362. "source": {
  2363. "type": "git",
  2364. "url": "https://github.com/sebastianbergmann/type.git",
  2365. "reference": "b233b84bc4465aff7b57cf1c4bc75c86d00d6dad"
  2366. },
  2367. "dist": {
  2368. "type": "zip",
  2369. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/b233b84bc4465aff7b57cf1c4bc75c86d00d6dad",
  2370. "reference": "b233b84bc4465aff7b57cf1c4bc75c86d00d6dad",
  2371. "shasum": ""
  2372. },
  2373. "require": {
  2374. "php": ">=7.3"
  2375. },
  2376. "require-dev": {
  2377. "phpunit/phpunit": "^9.5"
  2378. },
  2379. "type": "library",
  2380. "extra": {
  2381. "branch-alias": {
  2382. "dev-master": "3.0-dev"
  2383. }
  2384. },
  2385. "autoload": {
  2386. "classmap": [
  2387. "src/"
  2388. ]
  2389. },
  2390. "notification-url": "https://packagist.org/downloads/",
  2391. "license": [
  2392. "BSD-3-Clause"
  2393. ],
  2394. "authors": [
  2395. {
  2396. "name": "Sebastian Bergmann",
  2397. "email": "sebastian@phpunit.de",
  2398. "role": "lead"
  2399. }
  2400. ],
  2401. "description": "Collection of value objects that represent the types of the PHP type system",
  2402. "homepage": "https://github.com/sebastianbergmann/type",
  2403. "support": {
  2404. "issues": "https://github.com/sebastianbergmann/type/issues",
  2405. "source": "https://github.com/sebastianbergmann/type/tree/3.0.0"
  2406. },
  2407. "funding": [
  2408. {
  2409. "url": "https://github.com/sebastianbergmann",
  2410. "type": "github"
  2411. }
  2412. ],
  2413. "time": "2022-03-15T09:54:48+00:00"
  2414. },
  2415. {
  2416. "name": "sebastian/version",
  2417. "version": "3.0.2",
  2418. "source": {
  2419. "type": "git",
  2420. "url": "https://github.com/sebastianbergmann/version.git",
  2421. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  2422. },
  2423. "dist": {
  2424. "type": "zip",
  2425. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  2426. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  2427. "shasum": ""
  2428. },
  2429. "require": {
  2430. "php": ">=7.3"
  2431. },
  2432. "type": "library",
  2433. "extra": {
  2434. "branch-alias": {
  2435. "dev-master": "3.0-dev"
  2436. }
  2437. },
  2438. "autoload": {
  2439. "classmap": [
  2440. "src/"
  2441. ]
  2442. },
  2443. "notification-url": "https://packagist.org/downloads/",
  2444. "license": [
  2445. "BSD-3-Clause"
  2446. ],
  2447. "authors": [
  2448. {
  2449. "name": "Sebastian Bergmann",
  2450. "email": "sebastian@phpunit.de",
  2451. "role": "lead"
  2452. }
  2453. ],
  2454. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  2455. "homepage": "https://github.com/sebastianbergmann/version",
  2456. "support": {
  2457. "issues": "https://github.com/sebastianbergmann/version/issues",
  2458. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  2459. },
  2460. "funding": [
  2461. {
  2462. "url": "https://github.com/sebastianbergmann",
  2463. "type": "github"
  2464. }
  2465. ],
  2466. "time": "2020-09-28T06:39:44+00:00"
  2467. },
  2468. {
  2469. "name": "symfony/config",
  2470. "version": "v4.4.42",
  2471. "source": {
  2472. "type": "git",
  2473. "url": "https://github.com/symfony/config.git",
  2474. "reference": "83cdafd1bd3370de23e3dc2ed01026908863be81"
  2475. },
  2476. "dist": {
  2477. "type": "zip",
  2478. "url": "https://api.github.com/repos/symfony/config/zipball/83cdafd1bd3370de23e3dc2ed01026908863be81",
  2479. "reference": "83cdafd1bd3370de23e3dc2ed01026908863be81",
  2480. "shasum": ""
  2481. },
  2482. "require": {
  2483. "php": ">=7.1.3",
  2484. "symfony/filesystem": "^3.4|^4.0|^5.0",
  2485. "symfony/polyfill-ctype": "~1.8",
  2486. "symfony/polyfill-php80": "^1.16",
  2487. "symfony/polyfill-php81": "^1.22"
  2488. },
  2489. "conflict": {
  2490. "symfony/finder": "<3.4"
  2491. },
  2492. "require-dev": {
  2493. "symfony/event-dispatcher": "^3.4|^4.0|^5.0",
  2494. "symfony/finder": "^3.4|^4.0|^5.0",
  2495. "symfony/messenger": "^4.1|^5.0",
  2496. "symfony/service-contracts": "^1.1|^2",
  2497. "symfony/yaml": "^3.4|^4.0|^5.0"
  2498. },
  2499. "suggest": {
  2500. "symfony/yaml": "To use the yaml reference dumper"
  2501. },
  2502. "type": "library",
  2503. "autoload": {
  2504. "psr-4": {
  2505. "Symfony\\Component\\Config\\": ""
  2506. },
  2507. "exclude-from-classmap": [
  2508. "/Tests/"
  2509. ]
  2510. },
  2511. "notification-url": "https://packagist.org/downloads/",
  2512. "license": [
  2513. "MIT"
  2514. ],
  2515. "authors": [
  2516. {
  2517. "name": "Fabien Potencier",
  2518. "email": "fabien@symfony.com"
  2519. },
  2520. {
  2521. "name": "Symfony Community",
  2522. "homepage": "https://symfony.com/contributors"
  2523. }
  2524. ],
  2525. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  2526. "homepage": "https://symfony.com",
  2527. "support": {
  2528. "source": "https://github.com/symfony/config/tree/v4.4.42"
  2529. },
  2530. "funding": [
  2531. {
  2532. "url": "https://symfony.com/sponsor",
  2533. "type": "custom"
  2534. },
  2535. {
  2536. "url": "https://github.com/fabpot",
  2537. "type": "github"
  2538. },
  2539. {
  2540. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2541. "type": "tidelift"
  2542. }
  2543. ],
  2544. "time": "2022-05-17T07:10:14+00:00"
  2545. },
  2546. {
  2547. "name": "symfony/console",
  2548. "version": "v5.4.9",
  2549. "source": {
  2550. "type": "git",
  2551. "url": "https://github.com/symfony/console.git",
  2552. "reference": "829d5d1bf60b2efeb0887b7436873becc71a45eb"
  2553. },
  2554. "dist": {
  2555. "type": "zip",
  2556. "url": "https://api.github.com/repos/symfony/console/zipball/829d5d1bf60b2efeb0887b7436873becc71a45eb",
  2557. "reference": "829d5d1bf60b2efeb0887b7436873becc71a45eb",
  2558. "shasum": ""
  2559. },
  2560. "require": {
  2561. "php": ">=7.2.5",
  2562. "symfony/deprecation-contracts": "^2.1|^3",
  2563. "symfony/polyfill-mbstring": "~1.0",
  2564. "symfony/polyfill-php73": "^1.9",
  2565. "symfony/polyfill-php80": "^1.16",
  2566. "symfony/service-contracts": "^1.1|^2|^3",
  2567. "symfony/string": "^5.1|^6.0"
  2568. },
  2569. "conflict": {
  2570. "psr/log": ">=3",
  2571. "symfony/dependency-injection": "<4.4",
  2572. "symfony/dotenv": "<5.1",
  2573. "symfony/event-dispatcher": "<4.4",
  2574. "symfony/lock": "<4.4",
  2575. "symfony/process": "<4.4"
  2576. },
  2577. "provide": {
  2578. "psr/log-implementation": "1.0|2.0"
  2579. },
  2580. "require-dev": {
  2581. "psr/log": "^1|^2",
  2582. "symfony/config": "^4.4|^5.0|^6.0",
  2583. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  2584. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  2585. "symfony/lock": "^4.4|^5.0|^6.0",
  2586. "symfony/process": "^4.4|^5.0|^6.0",
  2587. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  2588. },
  2589. "suggest": {
  2590. "psr/log": "For using the console logger",
  2591. "symfony/event-dispatcher": "",
  2592. "symfony/lock": "",
  2593. "symfony/process": ""
  2594. },
  2595. "type": "library",
  2596. "autoload": {
  2597. "psr-4": {
  2598. "Symfony\\Component\\Console\\": ""
  2599. },
  2600. "exclude-from-classmap": [
  2601. "/Tests/"
  2602. ]
  2603. },
  2604. "notification-url": "https://packagist.org/downloads/",
  2605. "license": [
  2606. "MIT"
  2607. ],
  2608. "authors": [
  2609. {
  2610. "name": "Fabien Potencier",
  2611. "email": "fabien@symfony.com"
  2612. },
  2613. {
  2614. "name": "Symfony Community",
  2615. "homepage": "https://symfony.com/contributors"
  2616. }
  2617. ],
  2618. "description": "Eases the creation of beautiful and testable command line interfaces",
  2619. "homepage": "https://symfony.com",
  2620. "keywords": [
  2621. "cli",
  2622. "command line",
  2623. "console",
  2624. "terminal"
  2625. ],
  2626. "support": {
  2627. "source": "https://github.com/symfony/console/tree/v5.4.9"
  2628. },
  2629. "funding": [
  2630. {
  2631. "url": "https://symfony.com/sponsor",
  2632. "type": "custom"
  2633. },
  2634. {
  2635. "url": "https://github.com/fabpot",
  2636. "type": "github"
  2637. },
  2638. {
  2639. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2640. "type": "tidelift"
  2641. }
  2642. ],
  2643. "time": "2022-05-18T06:17:34+00:00"
  2644. },
  2645. {
  2646. "name": "symfony/css-selector",
  2647. "version": "v5.4.3",
  2648. "source": {
  2649. "type": "git",
  2650. "url": "https://github.com/symfony/css-selector.git",
  2651. "reference": "b0a190285cd95cb019237851205b8140ef6e368e"
  2652. },
  2653. "dist": {
  2654. "type": "zip",
  2655. "url": "https://api.github.com/repos/symfony/css-selector/zipball/b0a190285cd95cb019237851205b8140ef6e368e",
  2656. "reference": "b0a190285cd95cb019237851205b8140ef6e368e",
  2657. "shasum": ""
  2658. },
  2659. "require": {
  2660. "php": ">=7.2.5",
  2661. "symfony/polyfill-php80": "^1.16"
  2662. },
  2663. "type": "library",
  2664. "autoload": {
  2665. "psr-4": {
  2666. "Symfony\\Component\\CssSelector\\": ""
  2667. },
  2668. "exclude-from-classmap": [
  2669. "/Tests/"
  2670. ]
  2671. },
  2672. "notification-url": "https://packagist.org/downloads/",
  2673. "license": [
  2674. "MIT"
  2675. ],
  2676. "authors": [
  2677. {
  2678. "name": "Fabien Potencier",
  2679. "email": "fabien@symfony.com"
  2680. },
  2681. {
  2682. "name": "Jean-François Simon",
  2683. "email": "jeanfrancois.simon@sensiolabs.com"
  2684. },
  2685. {
  2686. "name": "Symfony Community",
  2687. "homepage": "https://symfony.com/contributors"
  2688. }
  2689. ],
  2690. "description": "Converts CSS selectors to XPath expressions",
  2691. "homepage": "https://symfony.com",
  2692. "support": {
  2693. "source": "https://github.com/symfony/css-selector/tree/v5.4.3"
  2694. },
  2695. "funding": [
  2696. {
  2697. "url": "https://symfony.com/sponsor",
  2698. "type": "custom"
  2699. },
  2700. {
  2701. "url": "https://github.com/fabpot",
  2702. "type": "github"
  2703. },
  2704. {
  2705. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2706. "type": "tidelift"
  2707. }
  2708. ],
  2709. "time": "2022-01-02T09:53:40+00:00"
  2710. },
  2711. {
  2712. "name": "symfony/dependency-injection",
  2713. "version": "v4.4.42",
  2714. "source": {
  2715. "type": "git",
  2716. "url": "https://github.com/symfony/dependency-injection.git",
  2717. "reference": "f6fdbf252765a09c7ac243617f79f1babef792c9"
  2718. },
  2719. "dist": {
  2720. "type": "zip",
  2721. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/f6fdbf252765a09c7ac243617f79f1babef792c9",
  2722. "reference": "f6fdbf252765a09c7ac243617f79f1babef792c9",
  2723. "shasum": ""
  2724. },
  2725. "require": {
  2726. "php": ">=7.1.3",
  2727. "psr/container": "^1.0",
  2728. "symfony/polyfill-php80": "^1.16",
  2729. "symfony/service-contracts": "^1.1.6|^2"
  2730. },
  2731. "conflict": {
  2732. "symfony/config": "<4.3|>=5.0",
  2733. "symfony/finder": "<3.4",
  2734. "symfony/proxy-manager-bridge": "<3.4",
  2735. "symfony/yaml": "<4.4.26"
  2736. },
  2737. "provide": {
  2738. "psr/container-implementation": "1.0",
  2739. "symfony/service-implementation": "1.0|2.0"
  2740. },
  2741. "require-dev": {
  2742. "symfony/config": "^4.3",
  2743. "symfony/expression-language": "^3.4|^4.0|^5.0",
  2744. "symfony/yaml": "^4.4.26|^5.0"
  2745. },
  2746. "suggest": {
  2747. "symfony/config": "",
  2748. "symfony/expression-language": "For using expressions in service container configuration",
  2749. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  2750. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  2751. "symfony/yaml": ""
  2752. },
  2753. "type": "library",
  2754. "autoload": {
  2755. "psr-4": {
  2756. "Symfony\\Component\\DependencyInjection\\": ""
  2757. },
  2758. "exclude-from-classmap": [
  2759. "/Tests/"
  2760. ]
  2761. },
  2762. "notification-url": "https://packagist.org/downloads/",
  2763. "license": [
  2764. "MIT"
  2765. ],
  2766. "authors": [
  2767. {
  2768. "name": "Fabien Potencier",
  2769. "email": "fabien@symfony.com"
  2770. },
  2771. {
  2772. "name": "Symfony Community",
  2773. "homepage": "https://symfony.com/contributors"
  2774. }
  2775. ],
  2776. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  2777. "homepage": "https://symfony.com",
  2778. "support": {
  2779. "source": "https://github.com/symfony/dependency-injection/tree/v4.4.42"
  2780. },
  2781. "funding": [
  2782. {
  2783. "url": "https://symfony.com/sponsor",
  2784. "type": "custom"
  2785. },
  2786. {
  2787. "url": "https://github.com/fabpot",
  2788. "type": "github"
  2789. },
  2790. {
  2791. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2792. "type": "tidelift"
  2793. }
  2794. ],
  2795. "time": "2022-05-24T15:15:52+00:00"
  2796. },
  2797. {
  2798. "name": "symfony/deprecation-contracts",
  2799. "version": "v2.5.1",
  2800. "source": {
  2801. "type": "git",
  2802. "url": "https://github.com/symfony/deprecation-contracts.git",
  2803. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66"
  2804. },
  2805. "dist": {
  2806. "type": "zip",
  2807. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  2808. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  2809. "shasum": ""
  2810. },
  2811. "require": {
  2812. "php": ">=7.1"
  2813. },
  2814. "type": "library",
  2815. "extra": {
  2816. "branch-alias": {
  2817. "dev-main": "2.5-dev"
  2818. },
  2819. "thanks": {
  2820. "name": "symfony/contracts",
  2821. "url": "https://github.com/symfony/contracts"
  2822. }
  2823. },
  2824. "autoload": {
  2825. "files": [
  2826. "function.php"
  2827. ]
  2828. },
  2829. "notification-url": "https://packagist.org/downloads/",
  2830. "license": [
  2831. "MIT"
  2832. ],
  2833. "authors": [
  2834. {
  2835. "name": "Nicolas Grekas",
  2836. "email": "p@tchwork.com"
  2837. },
  2838. {
  2839. "name": "Symfony Community",
  2840. "homepage": "https://symfony.com/contributors"
  2841. }
  2842. ],
  2843. "description": "A generic function and convention to trigger deprecation notices",
  2844. "homepage": "https://symfony.com",
  2845. "support": {
  2846. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.1"
  2847. },
  2848. "funding": [
  2849. {
  2850. "url": "https://symfony.com/sponsor",
  2851. "type": "custom"
  2852. },
  2853. {
  2854. "url": "https://github.com/fabpot",
  2855. "type": "github"
  2856. },
  2857. {
  2858. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2859. "type": "tidelift"
  2860. }
  2861. ],
  2862. "time": "2022-01-02T09:53:40+00:00"
  2863. },
  2864. {
  2865. "name": "symfony/event-dispatcher",
  2866. "version": "v5.4.9",
  2867. "source": {
  2868. "type": "git",
  2869. "url": "https://github.com/symfony/event-dispatcher.git",
  2870. "reference": "8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc"
  2871. },
  2872. "dist": {
  2873. "type": "zip",
  2874. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc",
  2875. "reference": "8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc",
  2876. "shasum": ""
  2877. },
  2878. "require": {
  2879. "php": ">=7.2.5",
  2880. "symfony/deprecation-contracts": "^2.1|^3",
  2881. "symfony/event-dispatcher-contracts": "^2|^3",
  2882. "symfony/polyfill-php80": "^1.16"
  2883. },
  2884. "conflict": {
  2885. "symfony/dependency-injection": "<4.4"
  2886. },
  2887. "provide": {
  2888. "psr/event-dispatcher-implementation": "1.0",
  2889. "symfony/event-dispatcher-implementation": "2.0"
  2890. },
  2891. "require-dev": {
  2892. "psr/log": "^1|^2|^3",
  2893. "symfony/config": "^4.4|^5.0|^6.0",
  2894. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  2895. "symfony/error-handler": "^4.4|^5.0|^6.0",
  2896. "symfony/expression-language": "^4.4|^5.0|^6.0",
  2897. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  2898. "symfony/service-contracts": "^1.1|^2|^3",
  2899. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  2900. },
  2901. "suggest": {
  2902. "symfony/dependency-injection": "",
  2903. "symfony/http-kernel": ""
  2904. },
  2905. "type": "library",
  2906. "autoload": {
  2907. "psr-4": {
  2908. "Symfony\\Component\\EventDispatcher\\": ""
  2909. },
  2910. "exclude-from-classmap": [
  2911. "/Tests/"
  2912. ]
  2913. },
  2914. "notification-url": "https://packagist.org/downloads/",
  2915. "license": [
  2916. "MIT"
  2917. ],
  2918. "authors": [
  2919. {
  2920. "name": "Fabien Potencier",
  2921. "email": "fabien@symfony.com"
  2922. },
  2923. {
  2924. "name": "Symfony Community",
  2925. "homepage": "https://symfony.com/contributors"
  2926. }
  2927. ],
  2928. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  2929. "homepage": "https://symfony.com",
  2930. "support": {
  2931. "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.9"
  2932. },
  2933. "funding": [
  2934. {
  2935. "url": "https://symfony.com/sponsor",
  2936. "type": "custom"
  2937. },
  2938. {
  2939. "url": "https://github.com/fabpot",
  2940. "type": "github"
  2941. },
  2942. {
  2943. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2944. "type": "tidelift"
  2945. }
  2946. ],
  2947. "time": "2022-05-05T16:45:39+00:00"
  2948. },
  2949. {
  2950. "name": "symfony/event-dispatcher-contracts",
  2951. "version": "v2.5.1",
  2952. "source": {
  2953. "type": "git",
  2954. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  2955. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1"
  2956. },
  2957. "dist": {
  2958. "type": "zip",
  2959. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/f98b54df6ad059855739db6fcbc2d36995283fe1",
  2960. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1",
  2961. "shasum": ""
  2962. },
  2963. "require": {
  2964. "php": ">=7.2.5",
  2965. "psr/event-dispatcher": "^1"
  2966. },
  2967. "suggest": {
  2968. "symfony/event-dispatcher-implementation": ""
  2969. },
  2970. "type": "library",
  2971. "extra": {
  2972. "branch-alias": {
  2973. "dev-main": "2.5-dev"
  2974. },
  2975. "thanks": {
  2976. "name": "symfony/contracts",
  2977. "url": "https://github.com/symfony/contracts"
  2978. }
  2979. },
  2980. "autoload": {
  2981. "psr-4": {
  2982. "Symfony\\Contracts\\EventDispatcher\\": ""
  2983. }
  2984. },
  2985. "notification-url": "https://packagist.org/downloads/",
  2986. "license": [
  2987. "MIT"
  2988. ],
  2989. "authors": [
  2990. {
  2991. "name": "Nicolas Grekas",
  2992. "email": "p@tchwork.com"
  2993. },
  2994. {
  2995. "name": "Symfony Community",
  2996. "homepage": "https://symfony.com/contributors"
  2997. }
  2998. ],
  2999. "description": "Generic abstractions related to dispatching event",
  3000. "homepage": "https://symfony.com",
  3001. "keywords": [
  3002. "abstractions",
  3003. "contracts",
  3004. "decoupling",
  3005. "interfaces",
  3006. "interoperability",
  3007. "standards"
  3008. ],
  3009. "support": {
  3010. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.5.1"
  3011. },
  3012. "funding": [
  3013. {
  3014. "url": "https://symfony.com/sponsor",
  3015. "type": "custom"
  3016. },
  3017. {
  3018. "url": "https://github.com/fabpot",
  3019. "type": "github"
  3020. },
  3021. {
  3022. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3023. "type": "tidelift"
  3024. }
  3025. ],
  3026. "time": "2022-01-02T09:53:40+00:00"
  3027. },
  3028. {
  3029. "name": "symfony/filesystem",
  3030. "version": "v5.4.9",
  3031. "source": {
  3032. "type": "git",
  3033. "url": "https://github.com/symfony/filesystem.git",
  3034. "reference": "36a017fa4cce1eff1b8e8129ff53513abcef05ba"
  3035. },
  3036. "dist": {
  3037. "type": "zip",
  3038. "url": "https://api.github.com/repos/symfony/filesystem/zipball/36a017fa4cce1eff1b8e8129ff53513abcef05ba",
  3039. "reference": "36a017fa4cce1eff1b8e8129ff53513abcef05ba",
  3040. "shasum": ""
  3041. },
  3042. "require": {
  3043. "php": ">=7.2.5",
  3044. "symfony/polyfill-ctype": "~1.8",
  3045. "symfony/polyfill-mbstring": "~1.8",
  3046. "symfony/polyfill-php80": "^1.16"
  3047. },
  3048. "type": "library",
  3049. "autoload": {
  3050. "psr-4": {
  3051. "Symfony\\Component\\Filesystem\\": ""
  3052. },
  3053. "exclude-from-classmap": [
  3054. "/Tests/"
  3055. ]
  3056. },
  3057. "notification-url": "https://packagist.org/downloads/",
  3058. "license": [
  3059. "MIT"
  3060. ],
  3061. "authors": [
  3062. {
  3063. "name": "Fabien Potencier",
  3064. "email": "fabien@symfony.com"
  3065. },
  3066. {
  3067. "name": "Symfony Community",
  3068. "homepage": "https://symfony.com/contributors"
  3069. }
  3070. ],
  3071. "description": "Provides basic utilities for the filesystem",
  3072. "homepage": "https://symfony.com",
  3073. "support": {
  3074. "source": "https://github.com/symfony/filesystem/tree/v5.4.9"
  3075. },
  3076. "funding": [
  3077. {
  3078. "url": "https://symfony.com/sponsor",
  3079. "type": "custom"
  3080. },
  3081. {
  3082. "url": "https://github.com/fabpot",
  3083. "type": "github"
  3084. },
  3085. {
  3086. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3087. "type": "tidelift"
  3088. }
  3089. ],
  3090. "time": "2022-05-20T13:55:35+00:00"
  3091. },
  3092. {
  3093. "name": "symfony/polyfill-ctype",
  3094. "version": "v1.26.0",
  3095. "source": {
  3096. "type": "git",
  3097. "url": "https://github.com/symfony/polyfill-ctype.git",
  3098. "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4"
  3099. },
  3100. "dist": {
  3101. "type": "zip",
  3102. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4",
  3103. "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4",
  3104. "shasum": ""
  3105. },
  3106. "require": {
  3107. "php": ">=7.1"
  3108. },
  3109. "provide": {
  3110. "ext-ctype": "*"
  3111. },
  3112. "suggest": {
  3113. "ext-ctype": "For best performance"
  3114. },
  3115. "type": "library",
  3116. "extra": {
  3117. "branch-alias": {
  3118. "dev-main": "1.26-dev"
  3119. },
  3120. "thanks": {
  3121. "name": "symfony/polyfill",
  3122. "url": "https://github.com/symfony/polyfill"
  3123. }
  3124. },
  3125. "autoload": {
  3126. "files": [
  3127. "bootstrap.php"
  3128. ],
  3129. "psr-4": {
  3130. "Symfony\\Polyfill\\Ctype\\": ""
  3131. }
  3132. },
  3133. "notification-url": "https://packagist.org/downloads/",
  3134. "license": [
  3135. "MIT"
  3136. ],
  3137. "authors": [
  3138. {
  3139. "name": "Gert de Pagter",
  3140. "email": "BackEndTea@gmail.com"
  3141. },
  3142. {
  3143. "name": "Symfony Community",
  3144. "homepage": "https://symfony.com/contributors"
  3145. }
  3146. ],
  3147. "description": "Symfony polyfill for ctype functions",
  3148. "homepage": "https://symfony.com",
  3149. "keywords": [
  3150. "compatibility",
  3151. "ctype",
  3152. "polyfill",
  3153. "portable"
  3154. ],
  3155. "support": {
  3156. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.26.0"
  3157. },
  3158. "funding": [
  3159. {
  3160. "url": "https://symfony.com/sponsor",
  3161. "type": "custom"
  3162. },
  3163. {
  3164. "url": "https://github.com/fabpot",
  3165. "type": "github"
  3166. },
  3167. {
  3168. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3169. "type": "tidelift"
  3170. }
  3171. ],
  3172. "time": "2022-05-24T11:49:31+00:00"
  3173. },
  3174. {
  3175. "name": "symfony/polyfill-intl-grapheme",
  3176. "version": "v1.26.0",
  3177. "source": {
  3178. "type": "git",
  3179. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  3180. "reference": "433d05519ce6990bf3530fba6957499d327395c2"
  3181. },
  3182. "dist": {
  3183. "type": "zip",
  3184. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/433d05519ce6990bf3530fba6957499d327395c2",
  3185. "reference": "433d05519ce6990bf3530fba6957499d327395c2",
  3186. "shasum": ""
  3187. },
  3188. "require": {
  3189. "php": ">=7.1"
  3190. },
  3191. "suggest": {
  3192. "ext-intl": "For best performance"
  3193. },
  3194. "type": "library",
  3195. "extra": {
  3196. "branch-alias": {
  3197. "dev-main": "1.26-dev"
  3198. },
  3199. "thanks": {
  3200. "name": "symfony/polyfill",
  3201. "url": "https://github.com/symfony/polyfill"
  3202. }
  3203. },
  3204. "autoload": {
  3205. "files": [
  3206. "bootstrap.php"
  3207. ],
  3208. "psr-4": {
  3209. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  3210. }
  3211. },
  3212. "notification-url": "https://packagist.org/downloads/",
  3213. "license": [
  3214. "MIT"
  3215. ],
  3216. "authors": [
  3217. {
  3218. "name": "Nicolas Grekas",
  3219. "email": "p@tchwork.com"
  3220. },
  3221. {
  3222. "name": "Symfony Community",
  3223. "homepage": "https://symfony.com/contributors"
  3224. }
  3225. ],
  3226. "description": "Symfony polyfill for intl's grapheme_* functions",
  3227. "homepage": "https://symfony.com",
  3228. "keywords": [
  3229. "compatibility",
  3230. "grapheme",
  3231. "intl",
  3232. "polyfill",
  3233. "portable",
  3234. "shim"
  3235. ],
  3236. "support": {
  3237. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.26.0"
  3238. },
  3239. "funding": [
  3240. {
  3241. "url": "https://symfony.com/sponsor",
  3242. "type": "custom"
  3243. },
  3244. {
  3245. "url": "https://github.com/fabpot",
  3246. "type": "github"
  3247. },
  3248. {
  3249. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3250. "type": "tidelift"
  3251. }
  3252. ],
  3253. "time": "2022-05-24T11:49:31+00:00"
  3254. },
  3255. {
  3256. "name": "symfony/polyfill-intl-normalizer",
  3257. "version": "v1.26.0",
  3258. "source": {
  3259. "type": "git",
  3260. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  3261. "reference": "219aa369ceff116e673852dce47c3a41794c14bd"
  3262. },
  3263. "dist": {
  3264. "type": "zip",
  3265. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/219aa369ceff116e673852dce47c3a41794c14bd",
  3266. "reference": "219aa369ceff116e673852dce47c3a41794c14bd",
  3267. "shasum": ""
  3268. },
  3269. "require": {
  3270. "php": ">=7.1"
  3271. },
  3272. "suggest": {
  3273. "ext-intl": "For best performance"
  3274. },
  3275. "type": "library",
  3276. "extra": {
  3277. "branch-alias": {
  3278. "dev-main": "1.26-dev"
  3279. },
  3280. "thanks": {
  3281. "name": "symfony/polyfill",
  3282. "url": "https://github.com/symfony/polyfill"
  3283. }
  3284. },
  3285. "autoload": {
  3286. "files": [
  3287. "bootstrap.php"
  3288. ],
  3289. "psr-4": {
  3290. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  3291. },
  3292. "classmap": [
  3293. "Resources/stubs"
  3294. ]
  3295. },
  3296. "notification-url": "https://packagist.org/downloads/",
  3297. "license": [
  3298. "MIT"
  3299. ],
  3300. "authors": [
  3301. {
  3302. "name": "Nicolas Grekas",
  3303. "email": "p@tchwork.com"
  3304. },
  3305. {
  3306. "name": "Symfony Community",
  3307. "homepage": "https://symfony.com/contributors"
  3308. }
  3309. ],
  3310. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  3311. "homepage": "https://symfony.com",
  3312. "keywords": [
  3313. "compatibility",
  3314. "intl",
  3315. "normalizer",
  3316. "polyfill",
  3317. "portable",
  3318. "shim"
  3319. ],
  3320. "support": {
  3321. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.26.0"
  3322. },
  3323. "funding": [
  3324. {
  3325. "url": "https://symfony.com/sponsor",
  3326. "type": "custom"
  3327. },
  3328. {
  3329. "url": "https://github.com/fabpot",
  3330. "type": "github"
  3331. },
  3332. {
  3333. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3334. "type": "tidelift"
  3335. }
  3336. ],
  3337. "time": "2022-05-24T11:49:31+00:00"
  3338. },
  3339. {
  3340. "name": "symfony/polyfill-mbstring",
  3341. "version": "v1.26.0",
  3342. "source": {
  3343. "type": "git",
  3344. "url": "https://github.com/symfony/polyfill-mbstring.git",
  3345. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e"
  3346. },
  3347. "dist": {
  3348. "type": "zip",
  3349. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  3350. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  3351. "shasum": ""
  3352. },
  3353. "require": {
  3354. "php": ">=7.1"
  3355. },
  3356. "provide": {
  3357. "ext-mbstring": "*"
  3358. },
  3359. "suggest": {
  3360. "ext-mbstring": "For best performance"
  3361. },
  3362. "type": "library",
  3363. "extra": {
  3364. "branch-alias": {
  3365. "dev-main": "1.26-dev"
  3366. },
  3367. "thanks": {
  3368. "name": "symfony/polyfill",
  3369. "url": "https://github.com/symfony/polyfill"
  3370. }
  3371. },
  3372. "autoload": {
  3373. "files": [
  3374. "bootstrap.php"
  3375. ],
  3376. "psr-4": {
  3377. "Symfony\\Polyfill\\Mbstring\\": ""
  3378. }
  3379. },
  3380. "notification-url": "https://packagist.org/downloads/",
  3381. "license": [
  3382. "MIT"
  3383. ],
  3384. "authors": [
  3385. {
  3386. "name": "Nicolas Grekas",
  3387. "email": "p@tchwork.com"
  3388. },
  3389. {
  3390. "name": "Symfony Community",
  3391. "homepage": "https://symfony.com/contributors"
  3392. }
  3393. ],
  3394. "description": "Symfony polyfill for the Mbstring extension",
  3395. "homepage": "https://symfony.com",
  3396. "keywords": [
  3397. "compatibility",
  3398. "mbstring",
  3399. "polyfill",
  3400. "portable",
  3401. "shim"
  3402. ],
  3403. "support": {
  3404. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.26.0"
  3405. },
  3406. "funding": [
  3407. {
  3408. "url": "https://symfony.com/sponsor",
  3409. "type": "custom"
  3410. },
  3411. {
  3412. "url": "https://github.com/fabpot",
  3413. "type": "github"
  3414. },
  3415. {
  3416. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3417. "type": "tidelift"
  3418. }
  3419. ],
  3420. "time": "2022-05-24T11:49:31+00:00"
  3421. },
  3422. {
  3423. "name": "symfony/polyfill-php73",
  3424. "version": "v1.26.0",
  3425. "source": {
  3426. "type": "git",
  3427. "url": "https://github.com/symfony/polyfill-php73.git",
  3428. "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85"
  3429. },
  3430. "dist": {
  3431. "type": "zip",
  3432. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/e440d35fa0286f77fb45b79a03fedbeda9307e85",
  3433. "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85",
  3434. "shasum": ""
  3435. },
  3436. "require": {
  3437. "php": ">=7.1"
  3438. },
  3439. "type": "library",
  3440. "extra": {
  3441. "branch-alias": {
  3442. "dev-main": "1.26-dev"
  3443. },
  3444. "thanks": {
  3445. "name": "symfony/polyfill",
  3446. "url": "https://github.com/symfony/polyfill"
  3447. }
  3448. },
  3449. "autoload": {
  3450. "files": [
  3451. "bootstrap.php"
  3452. ],
  3453. "psr-4": {
  3454. "Symfony\\Polyfill\\Php73\\": ""
  3455. },
  3456. "classmap": [
  3457. "Resources/stubs"
  3458. ]
  3459. },
  3460. "notification-url": "https://packagist.org/downloads/",
  3461. "license": [
  3462. "MIT"
  3463. ],
  3464. "authors": [
  3465. {
  3466. "name": "Nicolas Grekas",
  3467. "email": "p@tchwork.com"
  3468. },
  3469. {
  3470. "name": "Symfony Community",
  3471. "homepage": "https://symfony.com/contributors"
  3472. }
  3473. ],
  3474. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  3475. "homepage": "https://symfony.com",
  3476. "keywords": [
  3477. "compatibility",
  3478. "polyfill",
  3479. "portable",
  3480. "shim"
  3481. ],
  3482. "support": {
  3483. "source": "https://github.com/symfony/polyfill-php73/tree/v1.26.0"
  3484. },
  3485. "funding": [
  3486. {
  3487. "url": "https://symfony.com/sponsor",
  3488. "type": "custom"
  3489. },
  3490. {
  3491. "url": "https://github.com/fabpot",
  3492. "type": "github"
  3493. },
  3494. {
  3495. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3496. "type": "tidelift"
  3497. }
  3498. ],
  3499. "time": "2022-05-24T11:49:31+00:00"
  3500. },
  3501. {
  3502. "name": "symfony/polyfill-php80",
  3503. "version": "v1.26.0",
  3504. "source": {
  3505. "type": "git",
  3506. "url": "https://github.com/symfony/polyfill-php80.git",
  3507. "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace"
  3508. },
  3509. "dist": {
  3510. "type": "zip",
  3511. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/cfa0ae98841b9e461207c13ab093d76b0fa7bace",
  3512. "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace",
  3513. "shasum": ""
  3514. },
  3515. "require": {
  3516. "php": ">=7.1"
  3517. },
  3518. "type": "library",
  3519. "extra": {
  3520. "branch-alias": {
  3521. "dev-main": "1.26-dev"
  3522. },
  3523. "thanks": {
  3524. "name": "symfony/polyfill",
  3525. "url": "https://github.com/symfony/polyfill"
  3526. }
  3527. },
  3528. "autoload": {
  3529. "files": [
  3530. "bootstrap.php"
  3531. ],
  3532. "psr-4": {
  3533. "Symfony\\Polyfill\\Php80\\": ""
  3534. },
  3535. "classmap": [
  3536. "Resources/stubs"
  3537. ]
  3538. },
  3539. "notification-url": "https://packagist.org/downloads/",
  3540. "license": [
  3541. "MIT"
  3542. ],
  3543. "authors": [
  3544. {
  3545. "name": "Ion Bazan",
  3546. "email": "ion.bazan@gmail.com"
  3547. },
  3548. {
  3549. "name": "Nicolas Grekas",
  3550. "email": "p@tchwork.com"
  3551. },
  3552. {
  3553. "name": "Symfony Community",
  3554. "homepage": "https://symfony.com/contributors"
  3555. }
  3556. ],
  3557. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  3558. "homepage": "https://symfony.com",
  3559. "keywords": [
  3560. "compatibility",
  3561. "polyfill",
  3562. "portable",
  3563. "shim"
  3564. ],
  3565. "support": {
  3566. "source": "https://github.com/symfony/polyfill-php80/tree/v1.26.0"
  3567. },
  3568. "funding": [
  3569. {
  3570. "url": "https://symfony.com/sponsor",
  3571. "type": "custom"
  3572. },
  3573. {
  3574. "url": "https://github.com/fabpot",
  3575. "type": "github"
  3576. },
  3577. {
  3578. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3579. "type": "tidelift"
  3580. }
  3581. ],
  3582. "time": "2022-05-10T07:21:04+00:00"
  3583. },
  3584. {
  3585. "name": "symfony/polyfill-php81",
  3586. "version": "v1.26.0",
  3587. "source": {
  3588. "type": "git",
  3589. "url": "https://github.com/symfony/polyfill-php81.git",
  3590. "reference": "13f6d1271c663dc5ae9fb843a8f16521db7687a1"
  3591. },
  3592. "dist": {
  3593. "type": "zip",
  3594. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/13f6d1271c663dc5ae9fb843a8f16521db7687a1",
  3595. "reference": "13f6d1271c663dc5ae9fb843a8f16521db7687a1",
  3596. "shasum": ""
  3597. },
  3598. "require": {
  3599. "php": ">=7.1"
  3600. },
  3601. "type": "library",
  3602. "extra": {
  3603. "branch-alias": {
  3604. "dev-main": "1.26-dev"
  3605. },
  3606. "thanks": {
  3607. "name": "symfony/polyfill",
  3608. "url": "https://github.com/symfony/polyfill"
  3609. }
  3610. },
  3611. "autoload": {
  3612. "files": [
  3613. "bootstrap.php"
  3614. ],
  3615. "psr-4": {
  3616. "Symfony\\Polyfill\\Php81\\": ""
  3617. },
  3618. "classmap": [
  3619. "Resources/stubs"
  3620. ]
  3621. },
  3622. "notification-url": "https://packagist.org/downloads/",
  3623. "license": [
  3624. "MIT"
  3625. ],
  3626. "authors": [
  3627. {
  3628. "name": "Nicolas Grekas",
  3629. "email": "p@tchwork.com"
  3630. },
  3631. {
  3632. "name": "Symfony Community",
  3633. "homepage": "https://symfony.com/contributors"
  3634. }
  3635. ],
  3636. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  3637. "homepage": "https://symfony.com",
  3638. "keywords": [
  3639. "compatibility",
  3640. "polyfill",
  3641. "portable",
  3642. "shim"
  3643. ],
  3644. "support": {
  3645. "source": "https://github.com/symfony/polyfill-php81/tree/v1.26.0"
  3646. },
  3647. "funding": [
  3648. {
  3649. "url": "https://symfony.com/sponsor",
  3650. "type": "custom"
  3651. },
  3652. {
  3653. "url": "https://github.com/fabpot",
  3654. "type": "github"
  3655. },
  3656. {
  3657. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3658. "type": "tidelift"
  3659. }
  3660. ],
  3661. "time": "2022-05-24T11:49:31+00:00"
  3662. },
  3663. {
  3664. "name": "symfony/service-contracts",
  3665. "version": "v2.5.1",
  3666. "source": {
  3667. "type": "git",
  3668. "url": "https://github.com/symfony/service-contracts.git",
  3669. "reference": "24d9dc654b83e91aa59f9d167b131bc3b5bea24c"
  3670. },
  3671. "dist": {
  3672. "type": "zip",
  3673. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/24d9dc654b83e91aa59f9d167b131bc3b5bea24c",
  3674. "reference": "24d9dc654b83e91aa59f9d167b131bc3b5bea24c",
  3675. "shasum": ""
  3676. },
  3677. "require": {
  3678. "php": ">=7.2.5",
  3679. "psr/container": "^1.1",
  3680. "symfony/deprecation-contracts": "^2.1|^3"
  3681. },
  3682. "conflict": {
  3683. "ext-psr": "<1.1|>=2"
  3684. },
  3685. "suggest": {
  3686. "symfony/service-implementation": ""
  3687. },
  3688. "type": "library",
  3689. "extra": {
  3690. "branch-alias": {
  3691. "dev-main": "2.5-dev"
  3692. },
  3693. "thanks": {
  3694. "name": "symfony/contracts",
  3695. "url": "https://github.com/symfony/contracts"
  3696. }
  3697. },
  3698. "autoload": {
  3699. "psr-4": {
  3700. "Symfony\\Contracts\\Service\\": ""
  3701. }
  3702. },
  3703. "notification-url": "https://packagist.org/downloads/",
  3704. "license": [
  3705. "MIT"
  3706. ],
  3707. "authors": [
  3708. {
  3709. "name": "Nicolas Grekas",
  3710. "email": "p@tchwork.com"
  3711. },
  3712. {
  3713. "name": "Symfony Community",
  3714. "homepage": "https://symfony.com/contributors"
  3715. }
  3716. ],
  3717. "description": "Generic abstractions related to writing services",
  3718. "homepage": "https://symfony.com",
  3719. "keywords": [
  3720. "abstractions",
  3721. "contracts",
  3722. "decoupling",
  3723. "interfaces",
  3724. "interoperability",
  3725. "standards"
  3726. ],
  3727. "support": {
  3728. "source": "https://github.com/symfony/service-contracts/tree/v2.5.1"
  3729. },
  3730. "funding": [
  3731. {
  3732. "url": "https://symfony.com/sponsor",
  3733. "type": "custom"
  3734. },
  3735. {
  3736. "url": "https://github.com/fabpot",
  3737. "type": "github"
  3738. },
  3739. {
  3740. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3741. "type": "tidelift"
  3742. }
  3743. ],
  3744. "time": "2022-03-13T20:07:29+00:00"
  3745. },
  3746. {
  3747. "name": "symfony/string",
  3748. "version": "v5.4.9",
  3749. "source": {
  3750. "type": "git",
  3751. "url": "https://github.com/symfony/string.git",
  3752. "reference": "985e6a9703ef5ce32ba617c9c7d97873bb7b2a99"
  3753. },
  3754. "dist": {
  3755. "type": "zip",
  3756. "url": "https://api.github.com/repos/symfony/string/zipball/985e6a9703ef5ce32ba617c9c7d97873bb7b2a99",
  3757. "reference": "985e6a9703ef5ce32ba617c9c7d97873bb7b2a99",
  3758. "shasum": ""
  3759. },
  3760. "require": {
  3761. "php": ">=7.2.5",
  3762. "symfony/polyfill-ctype": "~1.8",
  3763. "symfony/polyfill-intl-grapheme": "~1.0",
  3764. "symfony/polyfill-intl-normalizer": "~1.0",
  3765. "symfony/polyfill-mbstring": "~1.0",
  3766. "symfony/polyfill-php80": "~1.15"
  3767. },
  3768. "conflict": {
  3769. "symfony/translation-contracts": ">=3.0"
  3770. },
  3771. "require-dev": {
  3772. "symfony/error-handler": "^4.4|^5.0|^6.0",
  3773. "symfony/http-client": "^4.4|^5.0|^6.0",
  3774. "symfony/translation-contracts": "^1.1|^2",
  3775. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  3776. },
  3777. "type": "library",
  3778. "autoload": {
  3779. "files": [
  3780. "Resources/functions.php"
  3781. ],
  3782. "psr-4": {
  3783. "Symfony\\Component\\String\\": ""
  3784. },
  3785. "exclude-from-classmap": [
  3786. "/Tests/"
  3787. ]
  3788. },
  3789. "notification-url": "https://packagist.org/downloads/",
  3790. "license": [
  3791. "MIT"
  3792. ],
  3793. "authors": [
  3794. {
  3795. "name": "Nicolas Grekas",
  3796. "email": "p@tchwork.com"
  3797. },
  3798. {
  3799. "name": "Symfony Community",
  3800. "homepage": "https://symfony.com/contributors"
  3801. }
  3802. ],
  3803. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  3804. "homepage": "https://symfony.com",
  3805. "keywords": [
  3806. "grapheme",
  3807. "i18n",
  3808. "string",
  3809. "unicode",
  3810. "utf-8",
  3811. "utf8"
  3812. ],
  3813. "support": {
  3814. "source": "https://github.com/symfony/string/tree/v5.4.9"
  3815. },
  3816. "funding": [
  3817. {
  3818. "url": "https://symfony.com/sponsor",
  3819. "type": "custom"
  3820. },
  3821. {
  3822. "url": "https://github.com/fabpot",
  3823. "type": "github"
  3824. },
  3825. {
  3826. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3827. "type": "tidelift"
  3828. }
  3829. ],
  3830. "time": "2022-04-19T10:40:37+00:00"
  3831. },
  3832. {
  3833. "name": "symfony/translation",
  3834. "version": "v4.4.41",
  3835. "source": {
  3836. "type": "git",
  3837. "url": "https://github.com/symfony/translation.git",
  3838. "reference": "dcb67eae126e74507e0b4f0b9ac6ef35b37c3331"
  3839. },
  3840. "dist": {
  3841. "type": "zip",
  3842. "url": "https://api.github.com/repos/symfony/translation/zipball/dcb67eae126e74507e0b4f0b9ac6ef35b37c3331",
  3843. "reference": "dcb67eae126e74507e0b4f0b9ac6ef35b37c3331",
  3844. "shasum": ""
  3845. },
  3846. "require": {
  3847. "php": ">=7.1.3",
  3848. "symfony/polyfill-mbstring": "~1.0",
  3849. "symfony/polyfill-php80": "^1.16",
  3850. "symfony/translation-contracts": "^1.1.6|^2"
  3851. },
  3852. "conflict": {
  3853. "symfony/config": "<3.4",
  3854. "symfony/dependency-injection": "<3.4",
  3855. "symfony/http-kernel": "<4.4",
  3856. "symfony/yaml": "<3.4"
  3857. },
  3858. "provide": {
  3859. "symfony/translation-implementation": "1.0|2.0"
  3860. },
  3861. "require-dev": {
  3862. "psr/log": "^1|^2|^3",
  3863. "symfony/config": "^3.4|^4.0|^5.0",
  3864. "symfony/console": "^3.4|^4.0|^5.0",
  3865. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  3866. "symfony/finder": "~2.8|~3.0|~4.0|^5.0",
  3867. "symfony/http-kernel": "^4.4",
  3868. "symfony/intl": "^3.4|^4.0|^5.0",
  3869. "symfony/service-contracts": "^1.1.2|^2",
  3870. "symfony/yaml": "^3.4|^4.0|^5.0"
  3871. },
  3872. "suggest": {
  3873. "psr/log-implementation": "To use logging capability in translator",
  3874. "symfony/config": "",
  3875. "symfony/yaml": ""
  3876. },
  3877. "type": "library",
  3878. "autoload": {
  3879. "psr-4": {
  3880. "Symfony\\Component\\Translation\\": ""
  3881. },
  3882. "exclude-from-classmap": [
  3883. "/Tests/"
  3884. ]
  3885. },
  3886. "notification-url": "https://packagist.org/downloads/",
  3887. "license": [
  3888. "MIT"
  3889. ],
  3890. "authors": [
  3891. {
  3892. "name": "Fabien Potencier",
  3893. "email": "fabien@symfony.com"
  3894. },
  3895. {
  3896. "name": "Symfony Community",
  3897. "homepage": "https://symfony.com/contributors"
  3898. }
  3899. ],
  3900. "description": "Provides tools to internationalize your application",
  3901. "homepage": "https://symfony.com",
  3902. "support": {
  3903. "source": "https://github.com/symfony/translation/tree/v4.4.41"
  3904. },
  3905. "funding": [
  3906. {
  3907. "url": "https://symfony.com/sponsor",
  3908. "type": "custom"
  3909. },
  3910. {
  3911. "url": "https://github.com/fabpot",
  3912. "type": "github"
  3913. },
  3914. {
  3915. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3916. "type": "tidelift"
  3917. }
  3918. ],
  3919. "time": "2022-04-21T07:22:34+00:00"
  3920. },
  3921. {
  3922. "name": "symfony/translation-contracts",
  3923. "version": "v2.5.1",
  3924. "source": {
  3925. "type": "git",
  3926. "url": "https://github.com/symfony/translation-contracts.git",
  3927. "reference": "1211df0afa701e45a04253110e959d4af4ef0f07"
  3928. },
  3929. "dist": {
  3930. "type": "zip",
  3931. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/1211df0afa701e45a04253110e959d4af4ef0f07",
  3932. "reference": "1211df0afa701e45a04253110e959d4af4ef0f07",
  3933. "shasum": ""
  3934. },
  3935. "require": {
  3936. "php": ">=7.2.5"
  3937. },
  3938. "suggest": {
  3939. "symfony/translation-implementation": ""
  3940. },
  3941. "type": "library",
  3942. "extra": {
  3943. "branch-alias": {
  3944. "dev-main": "2.5-dev"
  3945. },
  3946. "thanks": {
  3947. "name": "symfony/contracts",
  3948. "url": "https://github.com/symfony/contracts"
  3949. }
  3950. },
  3951. "autoload": {
  3952. "psr-4": {
  3953. "Symfony\\Contracts\\Translation\\": ""
  3954. }
  3955. },
  3956. "notification-url": "https://packagist.org/downloads/",
  3957. "license": [
  3958. "MIT"
  3959. ],
  3960. "authors": [
  3961. {
  3962. "name": "Nicolas Grekas",
  3963. "email": "p@tchwork.com"
  3964. },
  3965. {
  3966. "name": "Symfony Community",
  3967. "homepage": "https://symfony.com/contributors"
  3968. }
  3969. ],
  3970. "description": "Generic abstractions related to translation",
  3971. "homepage": "https://symfony.com",
  3972. "keywords": [
  3973. "abstractions",
  3974. "contracts",
  3975. "decoupling",
  3976. "interfaces",
  3977. "interoperability",
  3978. "standards"
  3979. ],
  3980. "support": {
  3981. "source": "https://github.com/symfony/translation-contracts/tree/v2.5.1"
  3982. },
  3983. "funding": [
  3984. {
  3985. "url": "https://symfony.com/sponsor",
  3986. "type": "custom"
  3987. },
  3988. {
  3989. "url": "https://github.com/fabpot",
  3990. "type": "github"
  3991. },
  3992. {
  3993. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3994. "type": "tidelift"
  3995. }
  3996. ],
  3997. "time": "2022-01-02T09:53:40+00:00"
  3998. },
  3999. {
  4000. "name": "symfony/yaml",
  4001. "version": "v5.4.3",
  4002. "source": {
  4003. "type": "git",
  4004. "url": "https://github.com/symfony/yaml.git",
  4005. "reference": "e80f87d2c9495966768310fc531b487ce64237a2"
  4006. },
  4007. "dist": {
  4008. "type": "zip",
  4009. "url": "https://api.github.com/repos/symfony/yaml/zipball/e80f87d2c9495966768310fc531b487ce64237a2",
  4010. "reference": "e80f87d2c9495966768310fc531b487ce64237a2",
  4011. "shasum": ""
  4012. },
  4013. "require": {
  4014. "php": ">=7.2.5",
  4015. "symfony/deprecation-contracts": "^2.1|^3",
  4016. "symfony/polyfill-ctype": "^1.8"
  4017. },
  4018. "conflict": {
  4019. "symfony/console": "<5.3"
  4020. },
  4021. "require-dev": {
  4022. "symfony/console": "^5.3|^6.0"
  4023. },
  4024. "suggest": {
  4025. "symfony/console": "For validating YAML files using the lint command"
  4026. },
  4027. "bin": [
  4028. "Resources/bin/yaml-lint"
  4029. ],
  4030. "type": "library",
  4031. "autoload": {
  4032. "psr-4": {
  4033. "Symfony\\Component\\Yaml\\": ""
  4034. },
  4035. "exclude-from-classmap": [
  4036. "/Tests/"
  4037. ]
  4038. },
  4039. "notification-url": "https://packagist.org/downloads/",
  4040. "license": [
  4041. "MIT"
  4042. ],
  4043. "authors": [
  4044. {
  4045. "name": "Fabien Potencier",
  4046. "email": "fabien@symfony.com"
  4047. },
  4048. {
  4049. "name": "Symfony Community",
  4050. "homepage": "https://symfony.com/contributors"
  4051. }
  4052. ],
  4053. "description": "Loads and dumps YAML files",
  4054. "homepage": "https://symfony.com",
  4055. "support": {
  4056. "source": "https://github.com/symfony/yaml/tree/v5.4.3"
  4057. },
  4058. "funding": [
  4059. {
  4060. "url": "https://symfony.com/sponsor",
  4061. "type": "custom"
  4062. },
  4063. {
  4064. "url": "https://github.com/fabpot",
  4065. "type": "github"
  4066. },
  4067. {
  4068. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4069. "type": "tidelift"
  4070. }
  4071. ],
  4072. "time": "2022-01-26T16:32:32+00:00"
  4073. },
  4074. {
  4075. "name": "theseer/tokenizer",
  4076. "version": "1.2.1",
  4077. "source": {
  4078. "type": "git",
  4079. "url": "https://github.com/theseer/tokenizer.git",
  4080. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  4081. },
  4082. "dist": {
  4083. "type": "zip",
  4084. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  4085. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  4086. "shasum": ""
  4087. },
  4088. "require": {
  4089. "ext-dom": "*",
  4090. "ext-tokenizer": "*",
  4091. "ext-xmlwriter": "*",
  4092. "php": "^7.2 || ^8.0"
  4093. },
  4094. "type": "library",
  4095. "autoload": {
  4096. "classmap": [
  4097. "src/"
  4098. ]
  4099. },
  4100. "notification-url": "https://packagist.org/downloads/",
  4101. "license": [
  4102. "BSD-3-Clause"
  4103. ],
  4104. "authors": [
  4105. {
  4106. "name": "Arne Blankerts",
  4107. "email": "arne@blankerts.de",
  4108. "role": "Developer"
  4109. }
  4110. ],
  4111. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  4112. "support": {
  4113. "issues": "https://github.com/theseer/tokenizer/issues",
  4114. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  4115. },
  4116. "funding": [
  4117. {
  4118. "url": "https://github.com/theseer",
  4119. "type": "github"
  4120. }
  4121. ],
  4122. "time": "2021-07-28T10:34:58+00:00"
  4123. },
  4124. {
  4125. "name": "webmozart/assert",
  4126. "version": "1.11.0",
  4127. "source": {
  4128. "type": "git",
  4129. "url": "https://github.com/webmozarts/assert.git",
  4130. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  4131. },
  4132. "dist": {
  4133. "type": "zip",
  4134. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  4135. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  4136. "shasum": ""
  4137. },
  4138. "require": {
  4139. "ext-ctype": "*",
  4140. "php": "^7.2 || ^8.0"
  4141. },
  4142. "conflict": {
  4143. "phpstan/phpstan": "<0.12.20",
  4144. "vimeo/psalm": "<4.6.1 || 4.6.2"
  4145. },
  4146. "require-dev": {
  4147. "phpunit/phpunit": "^8.5.13"
  4148. },
  4149. "type": "library",
  4150. "extra": {
  4151. "branch-alias": {
  4152. "dev-master": "1.10-dev"
  4153. }
  4154. },
  4155. "autoload": {
  4156. "psr-4": {
  4157. "Webmozart\\Assert\\": "src/"
  4158. }
  4159. },
  4160. "notification-url": "https://packagist.org/downloads/",
  4161. "license": [
  4162. "MIT"
  4163. ],
  4164. "authors": [
  4165. {
  4166. "name": "Bernhard Schussek",
  4167. "email": "bschussek@gmail.com"
  4168. }
  4169. ],
  4170. "description": "Assertions to validate method input/output with nice error messages.",
  4171. "keywords": [
  4172. "assert",
  4173. "check",
  4174. "validate"
  4175. ],
  4176. "support": {
  4177. "issues": "https://github.com/webmozarts/assert/issues",
  4178. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  4179. },
  4180. "time": "2022-06-03T18:03:27+00:00"
  4181. }
  4182. ],
  4183. "aliases": [],
  4184. "minimum-stability": "stable",
  4185. "stability-flags": [],
  4186. "prefer-stable": false,
  4187. "prefer-lowest": false,
  4188. "platform": [],
  4189. "platform-dev": [],
  4190. "plugin-api-version": "2.1.0"
  4191. }