composer.lock 132 KB

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