composer.lock 139 KB

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