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

composer.lock 142KB

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