composer.lock 147 KB

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