composer.lock 106 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021
  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": "9d60596d53fbce2540799474e56ba846",
  8. "packages": [
  9. {
  10. "name": "n2n/n2n",
  11. "version": "v7.3.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/n2n/n2n.git",
  15. "reference": "b28faa99ea46b395238f7640c8aad9f7bd31d76d"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/n2n/n2n/zipball/b28faa99ea46b395238f7640c8aad9f7bd31d76d",
  20. "reference": "b28faa99ea46b395238f7640c8aad9f7bd31d76d",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "n2n/n2n-composer-module-installer": "^7.1.5",
  25. "n2n/n2n-config": "^7.3",
  26. "n2n/n2n-context": "^7.3",
  27. "n2n/n2n-l10n": "^7.3",
  28. "n2n/n2n-log4php": "^7.3",
  29. "n2n/n2n-mail": "^7.3",
  30. "n2n/n2n-reflection": "^7.3",
  31. "n2n/n2n-util": "^7.3",
  32. "php": ">=8.0"
  33. },
  34. "require-dev": {
  35. "phpunit/phpunit": "^9.5"
  36. },
  37. "type": "n2n-module",
  38. "autoload": {
  39. "psr-4": {
  40. "n2n\\core\\": "src/app/n2n/core"
  41. }
  42. },
  43. "notification-url": "https://packagist.org/downloads/",
  44. "license": [
  45. "LGPL-3.0-or-later"
  46. ],
  47. "authors": [
  48. {
  49. "name": "Andreas von Burg",
  50. "email": "a@von-burg.net",
  51. "homepage": "https://andreas.von-burg.net"
  52. },
  53. {
  54. "name": "Bert Hofmänner",
  55. "email": "hofmaenner@hnm.ch",
  56. "homepage": "http://www.hnm.ch"
  57. },
  58. {
  59. "name": "Thomas Günther",
  60. "email": "guenther@hnm.ch"
  61. }
  62. ],
  63. "description": "Combines different components of n2n framework.",
  64. "homepage": "https://www.n2n.ch",
  65. "keywords": [
  66. "framework",
  67. "n2n"
  68. ],
  69. "support": {
  70. "issues": "https://github.com/n2n/n2n/issues",
  71. "source": "https://github.com/n2n/n2n/tree/v7.3.0"
  72. },
  73. "time": "2022-10-27T22:28:37+00:00"
  74. },
  75. {
  76. "name": "n2n/n2n-batch",
  77. "version": "v7.3.0",
  78. "source": {
  79. "type": "git",
  80. "url": "https://github.com/n2n/n2n-batch.git",
  81. "reference": "c3950cd66001ec8681745962322b771b483678d6"
  82. },
  83. "dist": {
  84. "type": "zip",
  85. "url": "https://api.github.com/repos/n2n/n2n-batch/zipball/c3950cd66001ec8681745962322b771b483678d6",
  86. "reference": "c3950cd66001ec8681745962322b771b483678d6",
  87. "shasum": ""
  88. },
  89. "require": {
  90. "n2n/n2n-reflection": "^7.2.33",
  91. "n2n/n2n-util": "^7.2.33",
  92. "php": ">=7.0"
  93. },
  94. "require-dev": {
  95. "phpunit/phpunit": "^9.5"
  96. },
  97. "type": "library",
  98. "autoload": {
  99. "psr-4": {
  100. "n2n\\batch\\": "src/app/n2n/batch"
  101. }
  102. },
  103. "notification-url": "https://packagist.org/downloads/",
  104. "license": [
  105. "LGPL-3.0-or-later"
  106. ],
  107. "authors": [
  108. {
  109. "name": "Andreas von Burg",
  110. "email": "a@von-burg.net",
  111. "homepage": "https://andreas.von-burg.net/"
  112. }
  113. ],
  114. "description": "batch job support for n2n framework",
  115. "homepage": "http://n2n.rocks/",
  116. "keywords": [
  117. "batch job",
  118. "n2n"
  119. ],
  120. "support": {
  121. "issues": "https://github.com/n2n/n2n-batch/issues",
  122. "source": "https://github.com/n2n/n2n-batch/tree/v7.3.0"
  123. },
  124. "time": "2021-07-30T17:36:59+00:00"
  125. },
  126. {
  127. "name": "n2n/n2n-composer-module-installer",
  128. "version": "v7.1.5",
  129. "source": {
  130. "type": "git",
  131. "url": "https://github.com/n2n/n2n-composer-module-installer.git",
  132. "reference": "2812666f0f420b66cb99a48177db104aacbcac6d"
  133. },
  134. "dist": {
  135. "type": "zip",
  136. "url": "https://api.github.com/repos/n2n/n2n-composer-module-installer/zipball/2812666f0f420b66cb99a48177db104aacbcac6d",
  137. "reference": "2812666f0f420b66cb99a48177db104aacbcac6d",
  138. "shasum": ""
  139. },
  140. "require": {
  141. "composer-plugin-api": ">=1 <3"
  142. },
  143. "require-dev": {
  144. "composer/composer": ">=1 <3"
  145. },
  146. "type": "composer-plugin",
  147. "extra": {
  148. "class": "n2n\\composer\\module\\ModulePlugin"
  149. },
  150. "autoload": {
  151. "psr-4": {
  152. "n2n\\composer\\module\\": "src/n2n/composer/module"
  153. }
  154. },
  155. "notification-url": "https://packagist.org/downloads/",
  156. "license": [
  157. "LGPL-3.0-or-later"
  158. ],
  159. "authors": [
  160. {
  161. "name": "Andreas von Burg",
  162. "email": "a@von-burg.net",
  163. "homepage": "http://www.von-burg.net"
  164. }
  165. ],
  166. "description": "n2n module installer plugin for composer",
  167. "homepage": "http://n2n.rocks/",
  168. "keywords": [
  169. "installer",
  170. "module",
  171. "n2n"
  172. ],
  173. "support": {
  174. "issues": "https://github.com/n2n/n2n-composer-module-installer/issues",
  175. "source": "https://github.com/n2n/n2n-composer-module-installer/tree/v7.1.5"
  176. },
  177. "time": "2022-05-10T13:18:10+00:00"
  178. },
  179. {
  180. "name": "n2n/n2n-config",
  181. "version": "v7.3.0",
  182. "source": {
  183. "type": "git",
  184. "url": "https://github.com/n2n/n2n-config.git",
  185. "reference": "34e23403a0f27e91b5dd264eba60148c496f253e"
  186. },
  187. "dist": {
  188. "type": "zip",
  189. "url": "https://api.github.com/repos/n2n/n2n-config/zipball/34e23403a0f27e91b5dd264eba60148c496f253e",
  190. "reference": "34e23403a0f27e91b5dd264eba60148c496f253e",
  191. "shasum": ""
  192. },
  193. "require": {
  194. "n2n/n2n-util": "^7.3",
  195. "php": ">=7.0"
  196. },
  197. "require-dev": {
  198. "phpunit/phpunit": "^9.5"
  199. },
  200. "type": "library",
  201. "autoload": {
  202. "psr-4": {
  203. "n2n\\config\\": "src/app/n2n/config"
  204. }
  205. },
  206. "notification-url": "https://packagist.org/downloads/",
  207. "license": [
  208. "LGPL-3.0-or-later"
  209. ],
  210. "authors": [
  211. {
  212. "name": "Andreas von Burg",
  213. "email": "a@von-burg.net",
  214. "homepage": "https://www.von-burg.net/"
  215. }
  216. ],
  217. "description": "config utils for n2n",
  218. "homepage": "http://n2n.rocks/",
  219. "keywords": [
  220. "batch job",
  221. "n2n"
  222. ],
  223. "support": {
  224. "issues": "https://github.com/n2n/n2n-config/issues",
  225. "source": "https://github.com/n2n/n2n-config/tree/v7.3.0"
  226. },
  227. "time": "2022-10-07T14:09:56+00:00"
  228. },
  229. {
  230. "name": "n2n/n2n-context",
  231. "version": "v7.3.0",
  232. "source": {
  233. "type": "git",
  234. "url": "https://github.com/n2n/n2n-context.git",
  235. "reference": "edba74692234db9f898754bad51276be218b0d0f"
  236. },
  237. "dist": {
  238. "type": "zip",
  239. "url": "https://api.github.com/repos/n2n/n2n-context/zipball/edba74692234db9f898754bad51276be218b0d0f",
  240. "reference": "edba74692234db9f898754bad51276be218b0d0f",
  241. "shasum": ""
  242. },
  243. "require": {
  244. "n2n/n2n-reflection": "^7.3",
  245. "n2n/n2n-util": "^7.3",
  246. "php": ">=8.0"
  247. },
  248. "provide": {
  249. "psr/container-implementation": "1.0.0"
  250. },
  251. "require-dev": {
  252. "phpunit/phpunit": "^9.5"
  253. },
  254. "type": "library",
  255. "autoload": {
  256. "psr-4": {
  257. "n2n\\context\\": "src/app/n2n/context"
  258. }
  259. },
  260. "notification-url": "https://packagist.org/downloads/",
  261. "license": [
  262. "LGPL-3.0-or-later"
  263. ],
  264. "authors": [
  265. {
  266. "name": "Andreas von Burg",
  267. "email": "a@von-burg.net",
  268. "homepage": "https://www.von-burg.net/"
  269. }
  270. ],
  271. "description": "Context support (request, session and application scope) for n2n framework.",
  272. "homepage": "https://n2n.rocks/",
  273. "keywords": [
  274. "Context",
  275. "application scope",
  276. "n2n",
  277. "request scope",
  278. "scope",
  279. "session scope"
  280. ],
  281. "support": {
  282. "issues": "https://github.com/n2n/n2n-context/issues",
  283. "source": "https://github.com/n2n/n2n-context/tree/v7.3.0"
  284. },
  285. "time": "2022-09-27T14:35:53+00:00"
  286. },
  287. {
  288. "name": "n2n/n2n-impl-persistence-meta",
  289. "version": "v7.3.0",
  290. "source": {
  291. "type": "git",
  292. "url": "https://github.com/n2n/n2n-impl-persistence-meta.git",
  293. "reference": "3823131e8adf6795263af72b3fb7deebffb928d8"
  294. },
  295. "dist": {
  296. "type": "zip",
  297. "url": "https://api.github.com/repos/n2n/n2n-impl-persistence-meta/zipball/3823131e8adf6795263af72b3fb7deebffb928d8",
  298. "reference": "3823131e8adf6795263af72b3fb7deebffb928d8",
  299. "shasum": ""
  300. },
  301. "require": {
  302. "n2n/n2n-io": "^7.3",
  303. "n2n/n2n-l10n": "^7.3",
  304. "n2n/n2n-persistence": "^7.3",
  305. "n2n/n2n-reflection": "^7.3",
  306. "n2n/n2n-util": "^7.3",
  307. "php": ">=7.0"
  308. },
  309. "require-dev": {
  310. "n2n/n2n": "^7.3",
  311. "n2n/n2n-test": "^7.3",
  312. "n2n/n2n-web": "^7.3",
  313. "phpunit/phpunit": "^9.5"
  314. },
  315. "type": "library",
  316. "autoload": {
  317. "psr-4": {
  318. "n2n\\impl\\persistence\\meta\\": "src/app/n2n/impl/persistence/meta"
  319. }
  320. },
  321. "notification-url": "https://packagist.org/downloads/",
  322. "license": [
  323. "LGPL-3.0-or-later"
  324. ],
  325. "authors": [
  326. {
  327. "name": "Thomas Günther",
  328. "email": "guenther@hnm.ch"
  329. }
  330. ],
  331. "description": "n2n persistence meta api implenation",
  332. "homepage": "https://n2n.rocks/",
  333. "keywords": [
  334. "database meta api",
  335. "n2n",
  336. "persistence"
  337. ],
  338. "support": {
  339. "issues": "https://github.com/n2n/n2n-impl-persistence-meta/issues",
  340. "source": "https://github.com/n2n/n2n-impl-persistence-meta/tree/v7.3.0"
  341. },
  342. "time": "2022-10-24T19:56:30+00:00"
  343. },
  344. {
  345. "name": "n2n/n2n-impl-persistence-orm",
  346. "version": "v7.3.5",
  347. "source": {
  348. "type": "git",
  349. "url": "https://github.com/n2n/n2n-impl-persistence-orm.git",
  350. "reference": "c2c2e3706ff3de1ef9b6731872eefaf597753438"
  351. },
  352. "dist": {
  353. "type": "zip",
  354. "url": "https://api.github.com/repos/n2n/n2n-impl-persistence-orm/zipball/c2c2e3706ff3de1ef9b6731872eefaf597753438",
  355. "reference": "c2c2e3706ff3de1ef9b6731872eefaf597753438",
  356. "shasum": ""
  357. },
  358. "require": {
  359. "n2n/n2n-composer-module-installer": "^7.1.5",
  360. "n2n/n2n-io": "~7.3",
  361. "n2n/n2n-l10n": "~7.3",
  362. "n2n/n2n-persistence": "~7.3.2",
  363. "n2n/n2n-reflection": "~7.3.2",
  364. "n2n/n2n-util": "~7.3.1"
  365. },
  366. "require-dev": {
  367. "phpunit/phpunit": "^9.5"
  368. },
  369. "type": "n2n-module",
  370. "autoload": {
  371. "psr-4": {
  372. "n2n\\impl\\persistence\\orm\\": "src/app/n2n/impl/persistence/orm"
  373. }
  374. },
  375. "notification-url": "https://packagist.org/downloads/",
  376. "license": [
  377. "LGPL-3.0-or-later"
  378. ],
  379. "authors": [
  380. {
  381. "name": "Andreas von Burg",
  382. "email": "a@von-burg.net",
  383. "homepage": "https://www.von-burg.net/"
  384. }
  385. ],
  386. "description": "n2n persistence orm implementation",
  387. "homepage": "http://n2n.rocks/",
  388. "keywords": [
  389. "n2n",
  390. "orm",
  391. "persistence"
  392. ],
  393. "support": {
  394. "issues": "https://github.com/n2n/n2n-impl-persistence-orm/issues",
  395. "source": "https://github.com/n2n/n2n-impl-persistence-orm/tree/v7.3.5"
  396. },
  397. "time": "2022-12-20T16:33:17+00:00"
  398. },
  399. {
  400. "name": "n2n/n2n-impl-web-dispatch",
  401. "version": "v7.3.1",
  402. "source": {
  403. "type": "git",
  404. "url": "https://github.com/n2n/n2n-impl-web-dispatch.git",
  405. "reference": "c72cc5be9f014bd81d77c6d9fd67aa26046774e5"
  406. },
  407. "dist": {
  408. "type": "zip",
  409. "url": "https://api.github.com/repos/n2n/n2n-impl-web-dispatch/zipball/c72cc5be9f014bd81d77c6d9fd67aa26046774e5",
  410. "reference": "c72cc5be9f014bd81d77c6d9fd67aa26046774e5",
  411. "shasum": ""
  412. },
  413. "require": {
  414. "n2n/n2n-composer-module-installer": "^7.1.5",
  415. "n2n/n2n-io": "~7.3",
  416. "n2n/n2n-l10n": "~7.3",
  417. "n2n/n2n-reflection": "~7.3.3",
  418. "n2n/n2n-util": "~7.3",
  419. "n2n/n2n-web": "~7.3"
  420. },
  421. "require-dev": {
  422. "phpunit/phpunit": "^9.5"
  423. },
  424. "type": "n2n-module",
  425. "autoload": {
  426. "psr-4": {
  427. "n2n\\impl\\web\\dispatch\\": "src/app/n2n/impl/web/dispatch"
  428. }
  429. },
  430. "notification-url": "https://packagist.org/downloads/",
  431. "license": [
  432. "LGPL-3.0-or-later"
  433. ],
  434. "authors": [
  435. {
  436. "name": "Andreas von Burg",
  437. "email": "a@von-burg.net",
  438. "homepage": "https://www.von-burg.net/"
  439. }
  440. ],
  441. "description": "n2n dispatch implementation",
  442. "homepage": "http://n2n.rocks/",
  443. "keywords": [
  444. "form",
  445. "n2n",
  446. "web"
  447. ],
  448. "support": {
  449. "issues": "https://github.com/n2n/n2n-impl-web-dispatch/issues",
  450. "source": "https://github.com/n2n/n2n-impl-web-dispatch/tree/v7.3.1"
  451. },
  452. "time": "2022-12-12T15:58:33+00:00"
  453. },
  454. {
  455. "name": "n2n/n2n-impl-web-ui",
  456. "version": "v7.3.0",
  457. "source": {
  458. "type": "git",
  459. "url": "https://github.com/n2n/n2n-impl-web-ui.git",
  460. "reference": "49601c7f5040a4efd0980deec88fc80e92cb9051"
  461. },
  462. "dist": {
  463. "type": "zip",
  464. "url": "https://api.github.com/repos/n2n/n2n-impl-web-ui/zipball/49601c7f5040a4efd0980deec88fc80e92cb9051",
  465. "reference": "49601c7f5040a4efd0980deec88fc80e92cb9051",
  466. "shasum": ""
  467. },
  468. "require": {
  469. "n2n/n2n-composer-module-installer": "^7.1",
  470. "n2n/n2n-io": "^7.3",
  471. "n2n/n2n-l10n": "^7.3",
  472. "n2n/n2n-reflection": "^7.3",
  473. "n2n/n2n-web": "^7.3"
  474. },
  475. "require-dev": {
  476. "phpunit/phpunit": "^9.5"
  477. },
  478. "type": "n2n-module",
  479. "autoload": {
  480. "psr-4": {
  481. "n2n\\impl\\web\\ui\\": "src/app/n2n/impl/web/ui"
  482. }
  483. },
  484. "notification-url": "https://packagist.org/downloads/",
  485. "license": [
  486. "LGPL-3.0-or-later"
  487. ],
  488. "authors": [
  489. {
  490. "name": "Andreas von Burg",
  491. "email": "a@von-burg.net",
  492. "homepage": "https://www.von-burg.net/"
  493. }
  494. ],
  495. "description": "n2n web ui implementation",
  496. "homepage": "https://n2n.rocks/",
  497. "keywords": [
  498. "csv",
  499. "html",
  500. "n2n",
  501. "xml"
  502. ],
  503. "support": {
  504. "issues": "https://github.com/n2n/n2n-impl-web-ui/issues",
  505. "source": "https://github.com/n2n/n2n-impl-web-ui/tree/v7.3.0"
  506. },
  507. "time": "2022-05-31T13:53:32+00:00"
  508. },
  509. {
  510. "name": "n2n/n2n-io",
  511. "version": "v7.3.1",
  512. "source": {
  513. "type": "git",
  514. "url": "https://github.com/n2n/n2n-io.git",
  515. "reference": "b3b635f3bc8ce73e840aff14ec0d2f7094bb2e01"
  516. },
  517. "dist": {
  518. "type": "zip",
  519. "url": "https://api.github.com/repos/n2n/n2n-io/zipball/b3b635f3bc8ce73e840aff14ec0d2f7094bb2e01",
  520. "reference": "b3b635f3bc8ce73e840aff14ec0d2f7094bb2e01",
  521. "shasum": ""
  522. },
  523. "require": {
  524. "n2n/n2n-reflection": "~7.3",
  525. "n2n/n2n-util": "~7.3"
  526. },
  527. "require-dev": {
  528. "phpunit/phpunit": "^9.5"
  529. },
  530. "type": "library",
  531. "autoload": {
  532. "psr-4": {
  533. "n2n\\io\\": "src/app/n2n/io"
  534. }
  535. },
  536. "notification-url": "https://packagist.org/downloads/",
  537. "license": [
  538. "LGPL-3.0-or-later"
  539. ],
  540. "authors": [
  541. {
  542. "name": "Andreas von Burg",
  543. "email": "a@von-burg.net",
  544. "homepage": "https://www.von-burg.net/"
  545. }
  546. ],
  547. "description": "n2n io library",
  548. "homepage": "http://n2n.rocks/",
  549. "keywords": [
  550. "framework",
  551. "io",
  552. "n2n"
  553. ],
  554. "support": {
  555. "issues": "https://github.com/n2n/n2n-io/issues",
  556. "source": "https://github.com/n2n/n2n-io/tree/v7.3.1"
  557. },
  558. "time": "2022-12-06T14:58:17+00:00"
  559. },
  560. {
  561. "name": "n2n/n2n-l10n",
  562. "version": "v7.3.0",
  563. "source": {
  564. "type": "git",
  565. "url": "https://github.com/n2n/n2n-l10n.git",
  566. "reference": "d8c5611cc1bdfb7e59fa763abdbe78648b5334d3"
  567. },
  568. "dist": {
  569. "type": "zip",
  570. "url": "https://api.github.com/repos/n2n/n2n-l10n/zipball/d8c5611cc1bdfb7e59fa763abdbe78648b5334d3",
  571. "reference": "d8c5611cc1bdfb7e59fa763abdbe78648b5334d3",
  572. "shasum": ""
  573. },
  574. "require": {
  575. "n2n/n2n-util": "^7.3",
  576. "php": ">=7.0"
  577. },
  578. "require-dev": {
  579. "phpunit/phpunit": "^9.5"
  580. },
  581. "type": "library",
  582. "autoload": {
  583. "psr-4": {
  584. "n2n\\l10n\\": "src/app/n2n/l10n"
  585. }
  586. },
  587. "notification-url": "https://packagist.org/downloads/",
  588. "license": [
  589. "LGPL-3.0-or-later"
  590. ],
  591. "authors": [
  592. {
  593. "name": "Andreas von Burg",
  594. "email": "a@von-burg.net",
  595. "homepage": "https://www.von-burg.net/"
  596. }
  597. ],
  598. "description": "n2n l10n support",
  599. "homepage": "https://n2n.rocks/",
  600. "keywords": [
  601. "l10n",
  602. "n2n"
  603. ],
  604. "support": {
  605. "issues": "https://github.com/n2n/n2n-l10n/issues",
  606. "source": "https://github.com/n2n/n2n-l10n/tree/v7.3.0"
  607. },
  608. "time": "2022-10-24T19:47:50+00:00"
  609. },
  610. {
  611. "name": "n2n/n2n-log4php",
  612. "version": "v7.3.0",
  613. "source": {
  614. "type": "git",
  615. "url": "https://github.com/n2n/n2n-log4php.git",
  616. "reference": "67f04d42edac81b4c2e2adf401457a73c9138f53"
  617. },
  618. "dist": {
  619. "type": "zip",
  620. "url": "https://api.github.com/repos/n2n/n2n-log4php/zipball/67f04d42edac81b4c2e2adf401457a73c9138f53",
  621. "reference": "67f04d42edac81b4c2e2adf401457a73c9138f53",
  622. "shasum": ""
  623. },
  624. "require": {
  625. "php": ">=7.0"
  626. },
  627. "require-dev": {
  628. "phpunit/phpunit": "^9.5"
  629. },
  630. "type": "library",
  631. "autoload": {
  632. "psr-4": {
  633. "n2n\\log4php\\": "src/app/n2n/log4php"
  634. }
  635. },
  636. "notification-url": "https://packagist.org/downloads/",
  637. "description": "log4php for n2n",
  638. "homepage": "http://n2n.rocks",
  639. "keywords": [
  640. "log4php",
  641. "n2n"
  642. ],
  643. "support": {
  644. "issues": "https://github.com/n2n/n2n-log4php/issues",
  645. "source": "https://github.com/n2n/n2n-log4php/tree/v7.3.0"
  646. },
  647. "time": "2022-05-30T14:43:08+00:00"
  648. },
  649. {
  650. "name": "n2n/n2n-mail",
  651. "version": "v7.3.0",
  652. "source": {
  653. "type": "git",
  654. "url": "https://github.com/n2n/n2n-mail.git",
  655. "reference": "6310fc1a1fc98758637dcc2d1b40ca964430abfc"
  656. },
  657. "dist": {
  658. "type": "zip",
  659. "url": "https://api.github.com/repos/n2n/n2n-mail/zipball/6310fc1a1fc98758637dcc2d1b40ca964430abfc",
  660. "reference": "6310fc1a1fc98758637dcc2d1b40ca964430abfc",
  661. "shasum": ""
  662. },
  663. "require": {
  664. "n2n/n2n-util": "^7.2",
  665. "php": ">=7.0"
  666. },
  667. "require-dev": {
  668. "phpunit/phpunit": "^9.5"
  669. },
  670. "type": "library",
  671. "autoload": {
  672. "psr-4": {
  673. "n2n\\mail\\": "src/app/n2n/mail"
  674. }
  675. },
  676. "notification-url": "https://packagist.org/downloads/",
  677. "license": [
  678. "LGPL-3.0-or-later"
  679. ],
  680. "authors": [
  681. {
  682. "name": "Bert Hofmänner",
  683. "email": "hofmaenner@hnm.ch",
  684. "homepage": "https://www.hnm.ch/"
  685. }
  686. ],
  687. "description": "Simple mail library designed for n2n framework",
  688. "homepage": "http://n2n.rocks/",
  689. "keywords": [
  690. "mail",
  691. "n2n"
  692. ],
  693. "support": {
  694. "issues": "https://github.com/n2n/n2n-mail/issues",
  695. "source": "https://github.com/n2n/n2n-mail/tree/v7.3.0"
  696. },
  697. "time": "2022-10-31T16:33:35+00:00"
  698. },
  699. {
  700. "name": "n2n/n2n-persistence",
  701. "version": "v7.3.2",
  702. "source": {
  703. "type": "git",
  704. "url": "https://github.com/n2n/n2n-persistence.git",
  705. "reference": "fd1de6e964fab8707778618d1add5d4ccc41642c"
  706. },
  707. "dist": {
  708. "type": "zip",
  709. "url": "https://api.github.com/repos/n2n/n2n-persistence/zipball/fd1de6e964fab8707778618d1add5d4ccc41642c",
  710. "reference": "fd1de6e964fab8707778618d1add5d4ccc41642c",
  711. "shasum": ""
  712. },
  713. "require": {
  714. "n2n/n2n-io": "~7.3",
  715. "n2n/n2n-reflection": "~7.3",
  716. "n2n/n2n-util": "~7.3"
  717. },
  718. "require-dev": {
  719. "phpunit/phpunit": "^9.5"
  720. },
  721. "type": "library",
  722. "autoload": {
  723. "psr-4": {
  724. "n2n\\persistence\\": "src/app/n2n/persistence"
  725. }
  726. },
  727. "notification-url": "https://packagist.org/downloads/",
  728. "license": [
  729. "LGPL-3.0-or-later"
  730. ],
  731. "authors": [
  732. {
  733. "name": "Andreas von Burg",
  734. "email": "a@von-burg.net",
  735. "homepage": "http://www.von-burg.net"
  736. }
  737. ],
  738. "description": "Persitence library for n2n. Includes ORM and Meta API.",
  739. "homepage": "http://n2n.rocks/",
  740. "keywords": [
  741. "db meta api",
  742. "n2n",
  743. "orm",
  744. "persistence"
  745. ],
  746. "support": {
  747. "issues": "https://github.com/n2n/n2n-persistence/issues",
  748. "source": "https://github.com/n2n/n2n-persistence/tree/v7.3.2"
  749. },
  750. "time": "2022-12-06T18:09:19+00:00"
  751. },
  752. {
  753. "name": "n2n/n2n-reflection",
  754. "version": "v7.3.3",
  755. "source": {
  756. "type": "git",
  757. "url": "https://github.com/n2n/n2n-reflection.git",
  758. "reference": "8390da1ce8a93c9a8489ef9cef127a0d2aa6c027"
  759. },
  760. "dist": {
  761. "type": "zip",
  762. "url": "https://api.github.com/repos/n2n/n2n-reflection/zipball/8390da1ce8a93c9a8489ef9cef127a0d2aa6c027",
  763. "reference": "8390da1ce8a93c9a8489ef9cef127a0d2aa6c027",
  764. "shasum": ""
  765. },
  766. "require": {
  767. "n2n/n2n-util": "~7.3"
  768. },
  769. "require-dev": {
  770. "phpunit/phpunit": "^9.5"
  771. },
  772. "type": "library",
  773. "autoload": {
  774. "psr-4": {
  775. "n2n\\reflection\\": "src/app/n2n/reflection"
  776. }
  777. },
  778. "notification-url": "https://packagist.org/downloads/",
  779. "license": [
  780. "LGPL-3.0-or-later"
  781. ],
  782. "authors": [
  783. {
  784. "name": "Andreas von Burg",
  785. "email": "a@von-burg.net",
  786. "homepage": "https://www.von-burg.net/",
  787. "role": "Developer"
  788. }
  789. ],
  790. "description": "n2n framework 7",
  791. "homepage": "http://n2n.rocks/",
  792. "keywords": [
  793. "awesome",
  794. "framework"
  795. ],
  796. "support": {
  797. "issues": "https://github.com/n2n/n2n-reflection/issues",
  798. "source": "https://github.com/n2n/n2n-reflection/tree/v7.3.3"
  799. },
  800. "time": "2022-12-06T18:09:19+00:00"
  801. },
  802. {
  803. "name": "n2n/n2n-util",
  804. "version": "v7.3.1",
  805. "source": {
  806. "type": "git",
  807. "url": "https://github.com/n2n/n2n-util.git",
  808. "reference": "93f57d9ace482a421da5544ce21bfd1e86f82b35"
  809. },
  810. "dist": {
  811. "type": "zip",
  812. "url": "https://api.github.com/repos/n2n/n2n-util/zipball/93f57d9ace482a421da5544ce21bfd1e86f82b35",
  813. "reference": "93f57d9ace482a421da5544ce21bfd1e86f82b35",
  814. "shasum": ""
  815. },
  816. "require": {
  817. "psr/container": "^2.0",
  818. "psr/http-factory": "^1",
  819. "psr/http-message": "^1"
  820. },
  821. "require-dev": {
  822. "phpunit/phpunit": "^9.5"
  823. },
  824. "type": "library",
  825. "autoload": {
  826. "psr-4": {
  827. "n2n\\util\\": "src/app/n2n/util"
  828. }
  829. },
  830. "notification-url": "https://packagist.org/downloads/",
  831. "license": [
  832. "LGPL-3.0-or-later"
  833. ],
  834. "authors": [
  835. {
  836. "name": "Andreas von Burg",
  837. "email": "a@von-burg.net",
  838. "homepage": "https://www.von-burg.net/"
  839. }
  840. ],
  841. "description": "n2n util library",
  842. "homepage": "https://n2n.rocks/",
  843. "keywords": [
  844. "n2n",
  845. "util"
  846. ],
  847. "support": {
  848. "issues": "https://github.com/n2n/n2n-util/issues",
  849. "source": "https://github.com/n2n/n2n-util/tree/v7.3.1"
  850. },
  851. "time": "2022-11-09T15:02:13+00:00"
  852. },
  853. {
  854. "name": "n2n/n2n-web",
  855. "version": "v7.3.3",
  856. "source": {
  857. "type": "git",
  858. "url": "https://github.com/n2n/n2n-web.git",
  859. "reference": "037f28cb834a2be23e18eb893d3ee0ddf4119e54"
  860. },
  861. "dist": {
  862. "type": "zip",
  863. "url": "https://api.github.com/repos/n2n/n2n-web/zipball/037f28cb834a2be23e18eb893d3ee0ddf4119e54",
  864. "reference": "037f28cb834a2be23e18eb893d3ee0ddf4119e54",
  865. "shasum": ""
  866. },
  867. "require": {
  868. "n2n/n2n": "^7.3",
  869. "n2n/n2n-context": "^7.3",
  870. "n2n/n2n-l10n": "^7.3",
  871. "n2n/n2n-reflection": "^7.3",
  872. "n2n/n2n-util": "^7.3",
  873. "psr/http-factory": "^1",
  874. "psr/http-message": "^1"
  875. },
  876. "require-dev": {
  877. "phpunit/phpunit": "^9.5"
  878. },
  879. "type": "n2n-module",
  880. "autoload": {
  881. "psr-4": {
  882. "n2n\\web\\": "src/app/n2n/web"
  883. }
  884. },
  885. "notification-url": "https://packagist.org/downloads/",
  886. "license": [
  887. "LGPL-3.0-or-later"
  888. ],
  889. "authors": [
  890. {
  891. "name": "Andreas von Burg",
  892. "email": "a@von-burg.net",
  893. "homepage": "https://www.von-burg.net/",
  894. "role": "Developer"
  895. }
  896. ],
  897. "description": "n2n web",
  898. "homepage": "https://n2n.rocks/",
  899. "keywords": [
  900. "controler",
  901. "form api",
  902. "http",
  903. "n2n",
  904. "rest"
  905. ],
  906. "support": {
  907. "issues": "https://github.com/n2n/n2n-web/issues",
  908. "source": "https://github.com/n2n/n2n-web/tree/v7.3.3"
  909. },
  910. "time": "2022-11-15T00:54:19+00:00"
  911. },
  912. {
  913. "name": "psr/container",
  914. "version": "2.0.2",
  915. "source": {
  916. "type": "git",
  917. "url": "https://github.com/php-fig/container.git",
  918. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  919. },
  920. "dist": {
  921. "type": "zip",
  922. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  923. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  924. "shasum": ""
  925. },
  926. "require": {
  927. "php": ">=7.4.0"
  928. },
  929. "type": "library",
  930. "extra": {
  931. "branch-alias": {
  932. "dev-master": "2.0.x-dev"
  933. }
  934. },
  935. "autoload": {
  936. "psr-4": {
  937. "Psr\\Container\\": "src/"
  938. }
  939. },
  940. "notification-url": "https://packagist.org/downloads/",
  941. "license": [
  942. "MIT"
  943. ],
  944. "authors": [
  945. {
  946. "name": "PHP-FIG",
  947. "homepage": "https://www.php-fig.org/"
  948. }
  949. ],
  950. "description": "Common Container Interface (PHP FIG PSR-11)",
  951. "homepage": "https://github.com/php-fig/container",
  952. "keywords": [
  953. "PSR-11",
  954. "container",
  955. "container-interface",
  956. "container-interop",
  957. "psr"
  958. ],
  959. "support": {
  960. "issues": "https://github.com/php-fig/container/issues",
  961. "source": "https://github.com/php-fig/container/tree/2.0.2"
  962. },
  963. "time": "2021-11-05T16:47:00+00:00"
  964. },
  965. {
  966. "name": "psr/http-factory",
  967. "version": "1.0.1",
  968. "source": {
  969. "type": "git",
  970. "url": "https://github.com/php-fig/http-factory.git",
  971. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  972. },
  973. "dist": {
  974. "type": "zip",
  975. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  976. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  977. "shasum": ""
  978. },
  979. "require": {
  980. "php": ">=7.0.0",
  981. "psr/http-message": "^1.0"
  982. },
  983. "type": "library",
  984. "extra": {
  985. "branch-alias": {
  986. "dev-master": "1.0.x-dev"
  987. }
  988. },
  989. "autoload": {
  990. "psr-4": {
  991. "Psr\\Http\\Message\\": "src/"
  992. }
  993. },
  994. "notification-url": "https://packagist.org/downloads/",
  995. "license": [
  996. "MIT"
  997. ],
  998. "authors": [
  999. {
  1000. "name": "PHP-FIG",
  1001. "homepage": "http://www.php-fig.org/"
  1002. }
  1003. ],
  1004. "description": "Common interfaces for PSR-7 HTTP message factories",
  1005. "keywords": [
  1006. "factory",
  1007. "http",
  1008. "message",
  1009. "psr",
  1010. "psr-17",
  1011. "psr-7",
  1012. "request",
  1013. "response"
  1014. ],
  1015. "support": {
  1016. "source": "https://github.com/php-fig/http-factory/tree/master"
  1017. },
  1018. "time": "2019-04-30T12:38:16+00:00"
  1019. },
  1020. {
  1021. "name": "psr/http-message",
  1022. "version": "1.0.1",
  1023. "source": {
  1024. "type": "git",
  1025. "url": "https://github.com/php-fig/http-message.git",
  1026. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  1027. },
  1028. "dist": {
  1029. "type": "zip",
  1030. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  1031. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  1032. "shasum": ""
  1033. },
  1034. "require": {
  1035. "php": ">=5.3.0"
  1036. },
  1037. "type": "library",
  1038. "extra": {
  1039. "branch-alias": {
  1040. "dev-master": "1.0.x-dev"
  1041. }
  1042. },
  1043. "autoload": {
  1044. "psr-4": {
  1045. "Psr\\Http\\Message\\": "src/"
  1046. }
  1047. },
  1048. "notification-url": "https://packagist.org/downloads/",
  1049. "license": [
  1050. "MIT"
  1051. ],
  1052. "authors": [
  1053. {
  1054. "name": "PHP-FIG",
  1055. "homepage": "http://www.php-fig.org/"
  1056. }
  1057. ],
  1058. "description": "Common interface for HTTP messages",
  1059. "homepage": "https://github.com/php-fig/http-message",
  1060. "keywords": [
  1061. "http",
  1062. "http-message",
  1063. "psr",
  1064. "psr-7",
  1065. "request",
  1066. "response"
  1067. ],
  1068. "support": {
  1069. "source": "https://github.com/php-fig/http-message/tree/master"
  1070. },
  1071. "time": "2016-08-06T14:39:51+00:00"
  1072. }
  1073. ],
  1074. "packages-dev": [
  1075. {
  1076. "name": "doctrine/instantiator",
  1077. "version": "1.5.0",
  1078. "source": {
  1079. "type": "git",
  1080. "url": "https://github.com/doctrine/instantiator.git",
  1081. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  1082. },
  1083. "dist": {
  1084. "type": "zip",
  1085. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  1086. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  1087. "shasum": ""
  1088. },
  1089. "require": {
  1090. "php": "^7.1 || ^8.0"
  1091. },
  1092. "require-dev": {
  1093. "doctrine/coding-standard": "^9 || ^11",
  1094. "ext-pdo": "*",
  1095. "ext-phar": "*",
  1096. "phpbench/phpbench": "^0.16 || ^1",
  1097. "phpstan/phpstan": "^1.4",
  1098. "phpstan/phpstan-phpunit": "^1",
  1099. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1100. "vimeo/psalm": "^4.30 || ^5.4"
  1101. },
  1102. "type": "library",
  1103. "autoload": {
  1104. "psr-4": {
  1105. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  1106. }
  1107. },
  1108. "notification-url": "https://packagist.org/downloads/",
  1109. "license": [
  1110. "MIT"
  1111. ],
  1112. "authors": [
  1113. {
  1114. "name": "Marco Pivetta",
  1115. "email": "ocramius@gmail.com",
  1116. "homepage": "https://ocramius.github.io/"
  1117. }
  1118. ],
  1119. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  1120. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  1121. "keywords": [
  1122. "constructor",
  1123. "instantiate"
  1124. ],
  1125. "support": {
  1126. "issues": "https://github.com/doctrine/instantiator/issues",
  1127. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  1128. },
  1129. "funding": [
  1130. {
  1131. "url": "https://www.doctrine-project.org/sponsorship.html",
  1132. "type": "custom"
  1133. },
  1134. {
  1135. "url": "https://www.patreon.com/phpdoctrine",
  1136. "type": "patreon"
  1137. },
  1138. {
  1139. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  1140. "type": "tidelift"
  1141. }
  1142. ],
  1143. "time": "2022-12-30T00:15:36+00:00"
  1144. },
  1145. {
  1146. "name": "myclabs/deep-copy",
  1147. "version": "1.11.0",
  1148. "source": {
  1149. "type": "git",
  1150. "url": "https://github.com/myclabs/DeepCopy.git",
  1151. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614"
  1152. },
  1153. "dist": {
  1154. "type": "zip",
  1155. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/14daed4296fae74d9e3201d2c4925d1acb7aa614",
  1156. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614",
  1157. "shasum": ""
  1158. },
  1159. "require": {
  1160. "php": "^7.1 || ^8.0"
  1161. },
  1162. "conflict": {
  1163. "doctrine/collections": "<1.6.8",
  1164. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  1165. },
  1166. "require-dev": {
  1167. "doctrine/collections": "^1.6.8",
  1168. "doctrine/common": "^2.13.3 || ^3.2.2",
  1169. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  1170. },
  1171. "type": "library",
  1172. "autoload": {
  1173. "files": [
  1174. "src/DeepCopy/deep_copy.php"
  1175. ],
  1176. "psr-4": {
  1177. "DeepCopy\\": "src/DeepCopy/"
  1178. }
  1179. },
  1180. "notification-url": "https://packagist.org/downloads/",
  1181. "license": [
  1182. "MIT"
  1183. ],
  1184. "description": "Create deep copies (clones) of your objects",
  1185. "keywords": [
  1186. "clone",
  1187. "copy",
  1188. "duplicate",
  1189. "object",
  1190. "object graph"
  1191. ],
  1192. "support": {
  1193. "issues": "https://github.com/myclabs/DeepCopy/issues",
  1194. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.0"
  1195. },
  1196. "funding": [
  1197. {
  1198. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  1199. "type": "tidelift"
  1200. }
  1201. ],
  1202. "time": "2022-03-03T13:19:32+00:00"
  1203. },
  1204. {
  1205. "name": "n2n/hangar",
  1206. "version": "v7.3.0",
  1207. "source": {
  1208. "type": "git",
  1209. "url": "https://github.com/n2n/hangar.git",
  1210. "reference": "52e737ac07dd06fb3e48edec74df6b1be1eba36b"
  1211. },
  1212. "dist": {
  1213. "type": "zip",
  1214. "url": "https://api.github.com/repos/n2n/hangar/zipball/52e737ac07dd06fb3e48edec74df6b1be1eba36b",
  1215. "reference": "52e737ac07dd06fb3e48edec74df6b1be1eba36b",
  1216. "shasum": ""
  1217. },
  1218. "require": {
  1219. "n2n/hangar-api": "1.0.x-dev",
  1220. "n2n/n2n": "^7.3",
  1221. "n2n/n2n-context": "^7.3",
  1222. "n2n/n2n-impl-web-dispatch": "^7.3",
  1223. "n2n/n2n-impl-web-ui": "^7.3",
  1224. "n2n/n2n-mail": "^7.3",
  1225. "n2n/n2n-persistence": "^7.3",
  1226. "n2n/n2n-web": "^7.3",
  1227. "n2n/phpbob": "1.0.x-dev",
  1228. "php": ">=7.0"
  1229. },
  1230. "bin": [
  1231. "bin/hangar"
  1232. ],
  1233. "type": "n2n-skeleton-component",
  1234. "notification-url": "https://packagist.org/downloads/",
  1235. "authors": [
  1236. {
  1237. "name": "Thomas Günther",
  1238. "email": "guenther@hnm.ch",
  1239. "homepage": "https://www.hnm.ch/"
  1240. }
  1241. ],
  1242. "description": "hangar",
  1243. "homepage": "http://n2n.rocks/",
  1244. "keywords": [
  1245. "hangar",
  1246. "n2n"
  1247. ],
  1248. "support": {
  1249. "issues": "https://github.com/n2n/hangar/issues",
  1250. "source": "https://github.com/n2n/hangar/tree/v7.3.0"
  1251. },
  1252. "time": "2022-10-24T14:51:09+00:00"
  1253. },
  1254. {
  1255. "name": "n2n/hangar-api",
  1256. "version": "1.0.x-dev",
  1257. "source": {
  1258. "type": "git",
  1259. "url": "https://github.com/n2n/hangar-api.git",
  1260. "reference": "10dde727dca0800d436f1ff45f2f15c5e0277964"
  1261. },
  1262. "dist": {
  1263. "type": "zip",
  1264. "url": "https://api.github.com/repos/n2n/hangar-api/zipball/10dde727dca0800d436f1ff45f2f15c5e0277964",
  1265. "reference": "10dde727dca0800d436f1ff45f2f15c5e0277964",
  1266. "shasum": ""
  1267. },
  1268. "require": {
  1269. "n2n/n2n-persistence": "^7.2.33",
  1270. "n2n/n2n-reflection": "^7.2.33",
  1271. "n2n/n2n-util": "^7.2.33",
  1272. "n2n/n2n-web": "^7.2.33",
  1273. "n2n/phpbob": "^1.0.7",
  1274. "php": ">=7.0"
  1275. },
  1276. "require-dev": {
  1277. "phpunit/phpunit": "^9.5"
  1278. },
  1279. "type": "library",
  1280. "autoload": {
  1281. "psr-4": {
  1282. "hangar\\api\\": "src/app/hangar/api"
  1283. }
  1284. },
  1285. "notification-url": "https://packagist.org/downloads/",
  1286. "license": [
  1287. "GPL-3.0-or-later"
  1288. ],
  1289. "authors": [
  1290. {
  1291. "name": "Thomas Günther",
  1292. "email": "guenther@hnm.ch",
  1293. "homepage": "https://www.hnm.ch/"
  1294. }
  1295. ],
  1296. "description": "hangar api interfaces",
  1297. "homepage": "https://n2n.rocks/",
  1298. "keywords": [
  1299. "hangar",
  1300. "n2n"
  1301. ],
  1302. "support": {
  1303. "issues": "https://github.com/n2n/hangar-api/issues",
  1304. "source": "https://github.com/n2n/hangar-api/tree/1.0.x"
  1305. },
  1306. "time": "2021-07-31T17:30:07+00:00"
  1307. },
  1308. {
  1309. "name": "n2n/n2n-test",
  1310. "version": "v7.3.0",
  1311. "source": {
  1312. "type": "git",
  1313. "url": "https://github.com/n2n/n2n-test.git",
  1314. "reference": "8c40426e5ecdbd9ae069ba2bd95e0f829e018348"
  1315. },
  1316. "dist": {
  1317. "type": "zip",
  1318. "url": "https://api.github.com/repos/n2n/n2n-test/zipball/8c40426e5ecdbd9ae069ba2bd95e0f829e018348",
  1319. "reference": "8c40426e5ecdbd9ae069ba2bd95e0f829e018348",
  1320. "shasum": ""
  1321. },
  1322. "require": {
  1323. "n2n/n2n-util": "^7.2.33",
  1324. "php": ">=7.0"
  1325. },
  1326. "require-dev": {
  1327. "phpunit/phpunit": "^9.5"
  1328. },
  1329. "type": "library",
  1330. "autoload": {
  1331. "psr-4": {
  1332. "n2n\\test\\": "src/app/n2n/test"
  1333. }
  1334. },
  1335. "notification-url": "https://packagist.org/downloads/",
  1336. "license": [
  1337. "LGPL-3.0-or-later"
  1338. ],
  1339. "authors": [
  1340. {
  1341. "name": "Andreas von Burg",
  1342. "email": "a@von-burg.net",
  1343. "homepage": "https://www.von-burg.net/",
  1344. "role": "Developer"
  1345. }
  1346. ],
  1347. "description": "n2n test utils",
  1348. "homepage": "http://n2n.rocks/",
  1349. "keywords": [
  1350. "n2n",
  1351. "test",
  1352. "utils"
  1353. ],
  1354. "support": {
  1355. "issues": "https://github.com/n2n/n2n-test/issues",
  1356. "source": "https://github.com/n2n/n2n-test/tree/v7.3.0"
  1357. },
  1358. "time": "2022-06-29T10:50:22+00:00"
  1359. },
  1360. {
  1361. "name": "n2n/phpbob",
  1362. "version": "1.0.x-dev",
  1363. "source": {
  1364. "type": "git",
  1365. "url": "https://github.com/n2n/phpbob.git",
  1366. "reference": "89a41041214b9c51ae8d873371aef407cdfe99ac"
  1367. },
  1368. "dist": {
  1369. "type": "zip",
  1370. "url": "https://api.github.com/repos/n2n/phpbob/zipball/89a41041214b9c51ae8d873371aef407cdfe99ac",
  1371. "reference": "89a41041214b9c51ae8d873371aef407cdfe99ac",
  1372. "shasum": ""
  1373. },
  1374. "require": {
  1375. "n2n/n2n-reflection": "^7.2.33",
  1376. "n2n/n2n-util": "^7.2.33",
  1377. "php": ">=7.0"
  1378. },
  1379. "require-dev": {
  1380. "phpunit/phpunit": "^9.5"
  1381. },
  1382. "type": "library",
  1383. "autoload": {
  1384. "psr-4": {
  1385. "phpbob\\": "src/app/phpbob"
  1386. }
  1387. },
  1388. "notification-url": "https://packagist.org/downloads/",
  1389. "license": [
  1390. "GPL-3.0-or-later"
  1391. ],
  1392. "authors": [
  1393. {
  1394. "name": "Thomas Günther",
  1395. "email": "guenther@hnm.ch",
  1396. "homepage": "https://www.hnm.ch/"
  1397. }
  1398. ],
  1399. "description": "n2n php representation builder",
  1400. "homepage": "https://n2n.rocks/",
  1401. "keywords": [
  1402. "n2n",
  1403. "phpbob"
  1404. ],
  1405. "support": {
  1406. "issues": "https://github.com/n2n/phpbob/issues",
  1407. "source": "https://github.com/n2n/phpbob/tree/master"
  1408. },
  1409. "time": "2021-08-30T16:19:56+00:00"
  1410. },
  1411. {
  1412. "name": "nikic/php-parser",
  1413. "version": "v4.15.2",
  1414. "source": {
  1415. "type": "git",
  1416. "url": "https://github.com/nikic/PHP-Parser.git",
  1417. "reference": "f59bbe44bf7d96f24f3e2b4ddc21cd52c1d2adbc"
  1418. },
  1419. "dist": {
  1420. "type": "zip",
  1421. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/f59bbe44bf7d96f24f3e2b4ddc21cd52c1d2adbc",
  1422. "reference": "f59bbe44bf7d96f24f3e2b4ddc21cd52c1d2adbc",
  1423. "shasum": ""
  1424. },
  1425. "require": {
  1426. "ext-tokenizer": "*",
  1427. "php": ">=7.0"
  1428. },
  1429. "require-dev": {
  1430. "ircmaxell/php-yacc": "^0.0.7",
  1431. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  1432. },
  1433. "bin": [
  1434. "bin/php-parse"
  1435. ],
  1436. "type": "library",
  1437. "extra": {
  1438. "branch-alias": {
  1439. "dev-master": "4.9-dev"
  1440. }
  1441. },
  1442. "autoload": {
  1443. "psr-4": {
  1444. "PhpParser\\": "lib/PhpParser"
  1445. }
  1446. },
  1447. "notification-url": "https://packagist.org/downloads/",
  1448. "license": [
  1449. "BSD-3-Clause"
  1450. ],
  1451. "authors": [
  1452. {
  1453. "name": "Nikita Popov"
  1454. }
  1455. ],
  1456. "description": "A PHP parser written in PHP",
  1457. "keywords": [
  1458. "parser",
  1459. "php"
  1460. ],
  1461. "support": {
  1462. "issues": "https://github.com/nikic/PHP-Parser/issues",
  1463. "source": "https://github.com/nikic/PHP-Parser/tree/v4.15.2"
  1464. },
  1465. "time": "2022-11-12T15:38:23+00:00"
  1466. },
  1467. {
  1468. "name": "phar-io/manifest",
  1469. "version": "2.0.3",
  1470. "source": {
  1471. "type": "git",
  1472. "url": "https://github.com/phar-io/manifest.git",
  1473. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  1474. },
  1475. "dist": {
  1476. "type": "zip",
  1477. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  1478. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  1479. "shasum": ""
  1480. },
  1481. "require": {
  1482. "ext-dom": "*",
  1483. "ext-phar": "*",
  1484. "ext-xmlwriter": "*",
  1485. "phar-io/version": "^3.0.1",
  1486. "php": "^7.2 || ^8.0"
  1487. },
  1488. "type": "library",
  1489. "extra": {
  1490. "branch-alias": {
  1491. "dev-master": "2.0.x-dev"
  1492. }
  1493. },
  1494. "autoload": {
  1495. "classmap": [
  1496. "src/"
  1497. ]
  1498. },
  1499. "notification-url": "https://packagist.org/downloads/",
  1500. "license": [
  1501. "BSD-3-Clause"
  1502. ],
  1503. "authors": [
  1504. {
  1505. "name": "Arne Blankerts",
  1506. "email": "arne@blankerts.de",
  1507. "role": "Developer"
  1508. },
  1509. {
  1510. "name": "Sebastian Heuer",
  1511. "email": "sebastian@phpeople.de",
  1512. "role": "Developer"
  1513. },
  1514. {
  1515. "name": "Sebastian Bergmann",
  1516. "email": "sebastian@phpunit.de",
  1517. "role": "Developer"
  1518. }
  1519. ],
  1520. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  1521. "support": {
  1522. "issues": "https://github.com/phar-io/manifest/issues",
  1523. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  1524. },
  1525. "time": "2021-07-20T11:28:43+00:00"
  1526. },
  1527. {
  1528. "name": "phar-io/version",
  1529. "version": "3.2.1",
  1530. "source": {
  1531. "type": "git",
  1532. "url": "https://github.com/phar-io/version.git",
  1533. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  1534. },
  1535. "dist": {
  1536. "type": "zip",
  1537. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  1538. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  1539. "shasum": ""
  1540. },
  1541. "require": {
  1542. "php": "^7.2 || ^8.0"
  1543. },
  1544. "type": "library",
  1545. "autoload": {
  1546. "classmap": [
  1547. "src/"
  1548. ]
  1549. },
  1550. "notification-url": "https://packagist.org/downloads/",
  1551. "license": [
  1552. "BSD-3-Clause"
  1553. ],
  1554. "authors": [
  1555. {
  1556. "name": "Arne Blankerts",
  1557. "email": "arne@blankerts.de",
  1558. "role": "Developer"
  1559. },
  1560. {
  1561. "name": "Sebastian Heuer",
  1562. "email": "sebastian@phpeople.de",
  1563. "role": "Developer"
  1564. },
  1565. {
  1566. "name": "Sebastian Bergmann",
  1567. "email": "sebastian@phpunit.de",
  1568. "role": "Developer"
  1569. }
  1570. ],
  1571. "description": "Library for handling version information and constraints",
  1572. "support": {
  1573. "issues": "https://github.com/phar-io/version/issues",
  1574. "source": "https://github.com/phar-io/version/tree/3.2.1"
  1575. },
  1576. "time": "2022-02-21T01:04:05+00:00"
  1577. },
  1578. {
  1579. "name": "phpunit/php-code-coverage",
  1580. "version": "9.2.23",
  1581. "source": {
  1582. "type": "git",
  1583. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  1584. "reference": "9f1f0f9a2fbb680b26d1cf9b61b6eac43a6e4e9c"
  1585. },
  1586. "dist": {
  1587. "type": "zip",
  1588. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/9f1f0f9a2fbb680b26d1cf9b61b6eac43a6e4e9c",
  1589. "reference": "9f1f0f9a2fbb680b26d1cf9b61b6eac43a6e4e9c",
  1590. "shasum": ""
  1591. },
  1592. "require": {
  1593. "ext-dom": "*",
  1594. "ext-libxml": "*",
  1595. "ext-xmlwriter": "*",
  1596. "nikic/php-parser": "^4.14",
  1597. "php": ">=7.3",
  1598. "phpunit/php-file-iterator": "^3.0.3",
  1599. "phpunit/php-text-template": "^2.0.2",
  1600. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  1601. "sebastian/complexity": "^2.0",
  1602. "sebastian/environment": "^5.1.2",
  1603. "sebastian/lines-of-code": "^1.0.3",
  1604. "sebastian/version": "^3.0.1",
  1605. "theseer/tokenizer": "^1.2.0"
  1606. },
  1607. "require-dev": {
  1608. "phpunit/phpunit": "^9.3"
  1609. },
  1610. "suggest": {
  1611. "ext-pcov": "*",
  1612. "ext-xdebug": "*"
  1613. },
  1614. "type": "library",
  1615. "extra": {
  1616. "branch-alias": {
  1617. "dev-master": "9.2-dev"
  1618. }
  1619. },
  1620. "autoload": {
  1621. "classmap": [
  1622. "src/"
  1623. ]
  1624. },
  1625. "notification-url": "https://packagist.org/downloads/",
  1626. "license": [
  1627. "BSD-3-Clause"
  1628. ],
  1629. "authors": [
  1630. {
  1631. "name": "Sebastian Bergmann",
  1632. "email": "sebastian@phpunit.de",
  1633. "role": "lead"
  1634. }
  1635. ],
  1636. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  1637. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  1638. "keywords": [
  1639. "coverage",
  1640. "testing",
  1641. "xunit"
  1642. ],
  1643. "support": {
  1644. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  1645. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.23"
  1646. },
  1647. "funding": [
  1648. {
  1649. "url": "https://github.com/sebastianbergmann",
  1650. "type": "github"
  1651. }
  1652. ],
  1653. "time": "2022-12-28T12:41:10+00:00"
  1654. },
  1655. {
  1656. "name": "phpunit/php-file-iterator",
  1657. "version": "3.0.6",
  1658. "source": {
  1659. "type": "git",
  1660. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  1661. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  1662. },
  1663. "dist": {
  1664. "type": "zip",
  1665. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  1666. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  1667. "shasum": ""
  1668. },
  1669. "require": {
  1670. "php": ">=7.3"
  1671. },
  1672. "require-dev": {
  1673. "phpunit/phpunit": "^9.3"
  1674. },
  1675. "type": "library",
  1676. "extra": {
  1677. "branch-alias": {
  1678. "dev-master": "3.0-dev"
  1679. }
  1680. },
  1681. "autoload": {
  1682. "classmap": [
  1683. "src/"
  1684. ]
  1685. },
  1686. "notification-url": "https://packagist.org/downloads/",
  1687. "license": [
  1688. "BSD-3-Clause"
  1689. ],
  1690. "authors": [
  1691. {
  1692. "name": "Sebastian Bergmann",
  1693. "email": "sebastian@phpunit.de",
  1694. "role": "lead"
  1695. }
  1696. ],
  1697. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  1698. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  1699. "keywords": [
  1700. "filesystem",
  1701. "iterator"
  1702. ],
  1703. "support": {
  1704. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  1705. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  1706. },
  1707. "funding": [
  1708. {
  1709. "url": "https://github.com/sebastianbergmann",
  1710. "type": "github"
  1711. }
  1712. ],
  1713. "time": "2021-12-02T12:48:52+00:00"
  1714. },
  1715. {
  1716. "name": "phpunit/php-invoker",
  1717. "version": "3.1.1",
  1718. "source": {
  1719. "type": "git",
  1720. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  1721. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  1722. },
  1723. "dist": {
  1724. "type": "zip",
  1725. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  1726. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  1727. "shasum": ""
  1728. },
  1729. "require": {
  1730. "php": ">=7.3"
  1731. },
  1732. "require-dev": {
  1733. "ext-pcntl": "*",
  1734. "phpunit/phpunit": "^9.3"
  1735. },
  1736. "suggest": {
  1737. "ext-pcntl": "*"
  1738. },
  1739. "type": "library",
  1740. "extra": {
  1741. "branch-alias": {
  1742. "dev-master": "3.1-dev"
  1743. }
  1744. },
  1745. "autoload": {
  1746. "classmap": [
  1747. "src/"
  1748. ]
  1749. },
  1750. "notification-url": "https://packagist.org/downloads/",
  1751. "license": [
  1752. "BSD-3-Clause"
  1753. ],
  1754. "authors": [
  1755. {
  1756. "name": "Sebastian Bergmann",
  1757. "email": "sebastian@phpunit.de",
  1758. "role": "lead"
  1759. }
  1760. ],
  1761. "description": "Invoke callables with a timeout",
  1762. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  1763. "keywords": [
  1764. "process"
  1765. ],
  1766. "support": {
  1767. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  1768. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  1769. },
  1770. "funding": [
  1771. {
  1772. "url": "https://github.com/sebastianbergmann",
  1773. "type": "github"
  1774. }
  1775. ],
  1776. "time": "2020-09-28T05:58:55+00:00"
  1777. },
  1778. {
  1779. "name": "phpunit/php-text-template",
  1780. "version": "2.0.4",
  1781. "source": {
  1782. "type": "git",
  1783. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  1784. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  1785. },
  1786. "dist": {
  1787. "type": "zip",
  1788. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  1789. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  1790. "shasum": ""
  1791. },
  1792. "require": {
  1793. "php": ">=7.3"
  1794. },
  1795. "require-dev": {
  1796. "phpunit/phpunit": "^9.3"
  1797. },
  1798. "type": "library",
  1799. "extra": {
  1800. "branch-alias": {
  1801. "dev-master": "2.0-dev"
  1802. }
  1803. },
  1804. "autoload": {
  1805. "classmap": [
  1806. "src/"
  1807. ]
  1808. },
  1809. "notification-url": "https://packagist.org/downloads/",
  1810. "license": [
  1811. "BSD-3-Clause"
  1812. ],
  1813. "authors": [
  1814. {
  1815. "name": "Sebastian Bergmann",
  1816. "email": "sebastian@phpunit.de",
  1817. "role": "lead"
  1818. }
  1819. ],
  1820. "description": "Simple template engine.",
  1821. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  1822. "keywords": [
  1823. "template"
  1824. ],
  1825. "support": {
  1826. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  1827. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  1828. },
  1829. "funding": [
  1830. {
  1831. "url": "https://github.com/sebastianbergmann",
  1832. "type": "github"
  1833. }
  1834. ],
  1835. "time": "2020-10-26T05:33:50+00:00"
  1836. },
  1837. {
  1838. "name": "phpunit/php-timer",
  1839. "version": "5.0.3",
  1840. "source": {
  1841. "type": "git",
  1842. "url": "https://github.com/sebastianbergmann/php-timer.git",
  1843. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  1844. },
  1845. "dist": {
  1846. "type": "zip",
  1847. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  1848. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  1849. "shasum": ""
  1850. },
  1851. "require": {
  1852. "php": ">=7.3"
  1853. },
  1854. "require-dev": {
  1855. "phpunit/phpunit": "^9.3"
  1856. },
  1857. "type": "library",
  1858. "extra": {
  1859. "branch-alias": {
  1860. "dev-master": "5.0-dev"
  1861. }
  1862. },
  1863. "autoload": {
  1864. "classmap": [
  1865. "src/"
  1866. ]
  1867. },
  1868. "notification-url": "https://packagist.org/downloads/",
  1869. "license": [
  1870. "BSD-3-Clause"
  1871. ],
  1872. "authors": [
  1873. {
  1874. "name": "Sebastian Bergmann",
  1875. "email": "sebastian@phpunit.de",
  1876. "role": "lead"
  1877. }
  1878. ],
  1879. "description": "Utility class for timing",
  1880. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  1881. "keywords": [
  1882. "timer"
  1883. ],
  1884. "support": {
  1885. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  1886. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  1887. },
  1888. "funding": [
  1889. {
  1890. "url": "https://github.com/sebastianbergmann",
  1891. "type": "github"
  1892. }
  1893. ],
  1894. "time": "2020-10-26T13:16:10+00:00"
  1895. },
  1896. {
  1897. "name": "phpunit/phpunit",
  1898. "version": "9.5.27",
  1899. "source": {
  1900. "type": "git",
  1901. "url": "https://github.com/sebastianbergmann/phpunit.git",
  1902. "reference": "a2bc7ffdca99f92d959b3f2270529334030bba38"
  1903. },
  1904. "dist": {
  1905. "type": "zip",
  1906. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/a2bc7ffdca99f92d959b3f2270529334030bba38",
  1907. "reference": "a2bc7ffdca99f92d959b3f2270529334030bba38",
  1908. "shasum": ""
  1909. },
  1910. "require": {
  1911. "doctrine/instantiator": "^1.3.1",
  1912. "ext-dom": "*",
  1913. "ext-json": "*",
  1914. "ext-libxml": "*",
  1915. "ext-mbstring": "*",
  1916. "ext-xml": "*",
  1917. "ext-xmlwriter": "*",
  1918. "myclabs/deep-copy": "^1.10.1",
  1919. "phar-io/manifest": "^2.0.3",
  1920. "phar-io/version": "^3.0.2",
  1921. "php": ">=7.3",
  1922. "phpunit/php-code-coverage": "^9.2.13",
  1923. "phpunit/php-file-iterator": "^3.0.5",
  1924. "phpunit/php-invoker": "^3.1.1",
  1925. "phpunit/php-text-template": "^2.0.3",
  1926. "phpunit/php-timer": "^5.0.2",
  1927. "sebastian/cli-parser": "^1.0.1",
  1928. "sebastian/code-unit": "^1.0.6",
  1929. "sebastian/comparator": "^4.0.8",
  1930. "sebastian/diff": "^4.0.3",
  1931. "sebastian/environment": "^5.1.3",
  1932. "sebastian/exporter": "^4.0.5",
  1933. "sebastian/global-state": "^5.0.1",
  1934. "sebastian/object-enumerator": "^4.0.3",
  1935. "sebastian/resource-operations": "^3.0.3",
  1936. "sebastian/type": "^3.2",
  1937. "sebastian/version": "^3.0.2"
  1938. },
  1939. "suggest": {
  1940. "ext-soap": "*",
  1941. "ext-xdebug": "*"
  1942. },
  1943. "bin": [
  1944. "phpunit"
  1945. ],
  1946. "type": "library",
  1947. "extra": {
  1948. "branch-alias": {
  1949. "dev-master": "9.5-dev"
  1950. }
  1951. },
  1952. "autoload": {
  1953. "files": [
  1954. "src/Framework/Assert/Functions.php"
  1955. ],
  1956. "classmap": [
  1957. "src/"
  1958. ]
  1959. },
  1960. "notification-url": "https://packagist.org/downloads/",
  1961. "license": [
  1962. "BSD-3-Clause"
  1963. ],
  1964. "authors": [
  1965. {
  1966. "name": "Sebastian Bergmann",
  1967. "email": "sebastian@phpunit.de",
  1968. "role": "lead"
  1969. }
  1970. ],
  1971. "description": "The PHP Unit Testing framework.",
  1972. "homepage": "https://phpunit.de/",
  1973. "keywords": [
  1974. "phpunit",
  1975. "testing",
  1976. "xunit"
  1977. ],
  1978. "support": {
  1979. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  1980. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.27"
  1981. },
  1982. "funding": [
  1983. {
  1984. "url": "https://phpunit.de/sponsors.html",
  1985. "type": "custom"
  1986. },
  1987. {
  1988. "url": "https://github.com/sebastianbergmann",
  1989. "type": "github"
  1990. },
  1991. {
  1992. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  1993. "type": "tidelift"
  1994. }
  1995. ],
  1996. "time": "2022-12-09T07:31:23+00:00"
  1997. },
  1998. {
  1999. "name": "sebastian/cli-parser",
  2000. "version": "1.0.1",
  2001. "source": {
  2002. "type": "git",
  2003. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  2004. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  2005. },
  2006. "dist": {
  2007. "type": "zip",
  2008. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  2009. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  2010. "shasum": ""
  2011. },
  2012. "require": {
  2013. "php": ">=7.3"
  2014. },
  2015. "require-dev": {
  2016. "phpunit/phpunit": "^9.3"
  2017. },
  2018. "type": "library",
  2019. "extra": {
  2020. "branch-alias": {
  2021. "dev-master": "1.0-dev"
  2022. }
  2023. },
  2024. "autoload": {
  2025. "classmap": [
  2026. "src/"
  2027. ]
  2028. },
  2029. "notification-url": "https://packagist.org/downloads/",
  2030. "license": [
  2031. "BSD-3-Clause"
  2032. ],
  2033. "authors": [
  2034. {
  2035. "name": "Sebastian Bergmann",
  2036. "email": "sebastian@phpunit.de",
  2037. "role": "lead"
  2038. }
  2039. ],
  2040. "description": "Library for parsing CLI options",
  2041. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  2042. "support": {
  2043. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  2044. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  2045. },
  2046. "funding": [
  2047. {
  2048. "url": "https://github.com/sebastianbergmann",
  2049. "type": "github"
  2050. }
  2051. ],
  2052. "time": "2020-09-28T06:08:49+00:00"
  2053. },
  2054. {
  2055. "name": "sebastian/code-unit",
  2056. "version": "1.0.8",
  2057. "source": {
  2058. "type": "git",
  2059. "url": "https://github.com/sebastianbergmann/code-unit.git",
  2060. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  2061. },
  2062. "dist": {
  2063. "type": "zip",
  2064. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  2065. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  2066. "shasum": ""
  2067. },
  2068. "require": {
  2069. "php": ">=7.3"
  2070. },
  2071. "require-dev": {
  2072. "phpunit/phpunit": "^9.3"
  2073. },
  2074. "type": "library",
  2075. "extra": {
  2076. "branch-alias": {
  2077. "dev-master": "1.0-dev"
  2078. }
  2079. },
  2080. "autoload": {
  2081. "classmap": [
  2082. "src/"
  2083. ]
  2084. },
  2085. "notification-url": "https://packagist.org/downloads/",
  2086. "license": [
  2087. "BSD-3-Clause"
  2088. ],
  2089. "authors": [
  2090. {
  2091. "name": "Sebastian Bergmann",
  2092. "email": "sebastian@phpunit.de",
  2093. "role": "lead"
  2094. }
  2095. ],
  2096. "description": "Collection of value objects that represent the PHP code units",
  2097. "homepage": "https://github.com/sebastianbergmann/code-unit",
  2098. "support": {
  2099. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  2100. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  2101. },
  2102. "funding": [
  2103. {
  2104. "url": "https://github.com/sebastianbergmann",
  2105. "type": "github"
  2106. }
  2107. ],
  2108. "time": "2020-10-26T13:08:54+00:00"
  2109. },
  2110. {
  2111. "name": "sebastian/code-unit-reverse-lookup",
  2112. "version": "2.0.3",
  2113. "source": {
  2114. "type": "git",
  2115. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  2116. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  2117. },
  2118. "dist": {
  2119. "type": "zip",
  2120. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  2121. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  2122. "shasum": ""
  2123. },
  2124. "require": {
  2125. "php": ">=7.3"
  2126. },
  2127. "require-dev": {
  2128. "phpunit/phpunit": "^9.3"
  2129. },
  2130. "type": "library",
  2131. "extra": {
  2132. "branch-alias": {
  2133. "dev-master": "2.0-dev"
  2134. }
  2135. },
  2136. "autoload": {
  2137. "classmap": [
  2138. "src/"
  2139. ]
  2140. },
  2141. "notification-url": "https://packagist.org/downloads/",
  2142. "license": [
  2143. "BSD-3-Clause"
  2144. ],
  2145. "authors": [
  2146. {
  2147. "name": "Sebastian Bergmann",
  2148. "email": "sebastian@phpunit.de"
  2149. }
  2150. ],
  2151. "description": "Looks up which function or method a line of code belongs to",
  2152. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  2153. "support": {
  2154. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  2155. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  2156. },
  2157. "funding": [
  2158. {
  2159. "url": "https://github.com/sebastianbergmann",
  2160. "type": "github"
  2161. }
  2162. ],
  2163. "time": "2020-09-28T05:30:19+00:00"
  2164. },
  2165. {
  2166. "name": "sebastian/comparator",
  2167. "version": "4.0.8",
  2168. "source": {
  2169. "type": "git",
  2170. "url": "https://github.com/sebastianbergmann/comparator.git",
  2171. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  2172. },
  2173. "dist": {
  2174. "type": "zip",
  2175. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  2176. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  2177. "shasum": ""
  2178. },
  2179. "require": {
  2180. "php": ">=7.3",
  2181. "sebastian/diff": "^4.0",
  2182. "sebastian/exporter": "^4.0"
  2183. },
  2184. "require-dev": {
  2185. "phpunit/phpunit": "^9.3"
  2186. },
  2187. "type": "library",
  2188. "extra": {
  2189. "branch-alias": {
  2190. "dev-master": "4.0-dev"
  2191. }
  2192. },
  2193. "autoload": {
  2194. "classmap": [
  2195. "src/"
  2196. ]
  2197. },
  2198. "notification-url": "https://packagist.org/downloads/",
  2199. "license": [
  2200. "BSD-3-Clause"
  2201. ],
  2202. "authors": [
  2203. {
  2204. "name": "Sebastian Bergmann",
  2205. "email": "sebastian@phpunit.de"
  2206. },
  2207. {
  2208. "name": "Jeff Welch",
  2209. "email": "whatthejeff@gmail.com"
  2210. },
  2211. {
  2212. "name": "Volker Dusch",
  2213. "email": "github@wallbash.com"
  2214. },
  2215. {
  2216. "name": "Bernhard Schussek",
  2217. "email": "bschussek@2bepublished.at"
  2218. }
  2219. ],
  2220. "description": "Provides the functionality to compare PHP values for equality",
  2221. "homepage": "https://github.com/sebastianbergmann/comparator",
  2222. "keywords": [
  2223. "comparator",
  2224. "compare",
  2225. "equality"
  2226. ],
  2227. "support": {
  2228. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  2229. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  2230. },
  2231. "funding": [
  2232. {
  2233. "url": "https://github.com/sebastianbergmann",
  2234. "type": "github"
  2235. }
  2236. ],
  2237. "time": "2022-09-14T12:41:17+00:00"
  2238. },
  2239. {
  2240. "name": "sebastian/complexity",
  2241. "version": "2.0.2",
  2242. "source": {
  2243. "type": "git",
  2244. "url": "https://github.com/sebastianbergmann/complexity.git",
  2245. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  2246. },
  2247. "dist": {
  2248. "type": "zip",
  2249. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  2250. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  2251. "shasum": ""
  2252. },
  2253. "require": {
  2254. "nikic/php-parser": "^4.7",
  2255. "php": ">=7.3"
  2256. },
  2257. "require-dev": {
  2258. "phpunit/phpunit": "^9.3"
  2259. },
  2260. "type": "library",
  2261. "extra": {
  2262. "branch-alias": {
  2263. "dev-master": "2.0-dev"
  2264. }
  2265. },
  2266. "autoload": {
  2267. "classmap": [
  2268. "src/"
  2269. ]
  2270. },
  2271. "notification-url": "https://packagist.org/downloads/",
  2272. "license": [
  2273. "BSD-3-Clause"
  2274. ],
  2275. "authors": [
  2276. {
  2277. "name": "Sebastian Bergmann",
  2278. "email": "sebastian@phpunit.de",
  2279. "role": "lead"
  2280. }
  2281. ],
  2282. "description": "Library for calculating the complexity of PHP code units",
  2283. "homepage": "https://github.com/sebastianbergmann/complexity",
  2284. "support": {
  2285. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  2286. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  2287. },
  2288. "funding": [
  2289. {
  2290. "url": "https://github.com/sebastianbergmann",
  2291. "type": "github"
  2292. }
  2293. ],
  2294. "time": "2020-10-26T15:52:27+00:00"
  2295. },
  2296. {
  2297. "name": "sebastian/diff",
  2298. "version": "4.0.4",
  2299. "source": {
  2300. "type": "git",
  2301. "url": "https://github.com/sebastianbergmann/diff.git",
  2302. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  2303. },
  2304. "dist": {
  2305. "type": "zip",
  2306. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  2307. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  2308. "shasum": ""
  2309. },
  2310. "require": {
  2311. "php": ">=7.3"
  2312. },
  2313. "require-dev": {
  2314. "phpunit/phpunit": "^9.3",
  2315. "symfony/process": "^4.2 || ^5"
  2316. },
  2317. "type": "library",
  2318. "extra": {
  2319. "branch-alias": {
  2320. "dev-master": "4.0-dev"
  2321. }
  2322. },
  2323. "autoload": {
  2324. "classmap": [
  2325. "src/"
  2326. ]
  2327. },
  2328. "notification-url": "https://packagist.org/downloads/",
  2329. "license": [
  2330. "BSD-3-Clause"
  2331. ],
  2332. "authors": [
  2333. {
  2334. "name": "Sebastian Bergmann",
  2335. "email": "sebastian@phpunit.de"
  2336. },
  2337. {
  2338. "name": "Kore Nordmann",
  2339. "email": "mail@kore-nordmann.de"
  2340. }
  2341. ],
  2342. "description": "Diff implementation",
  2343. "homepage": "https://github.com/sebastianbergmann/diff",
  2344. "keywords": [
  2345. "diff",
  2346. "udiff",
  2347. "unidiff",
  2348. "unified diff"
  2349. ],
  2350. "support": {
  2351. "issues": "https://github.com/sebastianbergmann/diff/issues",
  2352. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  2353. },
  2354. "funding": [
  2355. {
  2356. "url": "https://github.com/sebastianbergmann",
  2357. "type": "github"
  2358. }
  2359. ],
  2360. "time": "2020-10-26T13:10:38+00:00"
  2361. },
  2362. {
  2363. "name": "sebastian/environment",
  2364. "version": "5.1.4",
  2365. "source": {
  2366. "type": "git",
  2367. "url": "https://github.com/sebastianbergmann/environment.git",
  2368. "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7"
  2369. },
  2370. "dist": {
  2371. "type": "zip",
  2372. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/1b5dff7bb151a4db11d49d90e5408e4e938270f7",
  2373. "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7",
  2374. "shasum": ""
  2375. },
  2376. "require": {
  2377. "php": ">=7.3"
  2378. },
  2379. "require-dev": {
  2380. "phpunit/phpunit": "^9.3"
  2381. },
  2382. "suggest": {
  2383. "ext-posix": "*"
  2384. },
  2385. "type": "library",
  2386. "extra": {
  2387. "branch-alias": {
  2388. "dev-master": "5.1-dev"
  2389. }
  2390. },
  2391. "autoload": {
  2392. "classmap": [
  2393. "src/"
  2394. ]
  2395. },
  2396. "notification-url": "https://packagist.org/downloads/",
  2397. "license": [
  2398. "BSD-3-Clause"
  2399. ],
  2400. "authors": [
  2401. {
  2402. "name": "Sebastian Bergmann",
  2403. "email": "sebastian@phpunit.de"
  2404. }
  2405. ],
  2406. "description": "Provides functionality to handle HHVM/PHP environments",
  2407. "homepage": "http://www.github.com/sebastianbergmann/environment",
  2408. "keywords": [
  2409. "Xdebug",
  2410. "environment",
  2411. "hhvm"
  2412. ],
  2413. "support": {
  2414. "issues": "https://github.com/sebastianbergmann/environment/issues",
  2415. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.4"
  2416. },
  2417. "funding": [
  2418. {
  2419. "url": "https://github.com/sebastianbergmann",
  2420. "type": "github"
  2421. }
  2422. ],
  2423. "time": "2022-04-03T09:37:03+00:00"
  2424. },
  2425. {
  2426. "name": "sebastian/exporter",
  2427. "version": "4.0.5",
  2428. "source": {
  2429. "type": "git",
  2430. "url": "https://github.com/sebastianbergmann/exporter.git",
  2431. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d"
  2432. },
  2433. "dist": {
  2434. "type": "zip",
  2435. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  2436. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  2437. "shasum": ""
  2438. },
  2439. "require": {
  2440. "php": ">=7.3",
  2441. "sebastian/recursion-context": "^4.0"
  2442. },
  2443. "require-dev": {
  2444. "ext-mbstring": "*",
  2445. "phpunit/phpunit": "^9.3"
  2446. },
  2447. "type": "library",
  2448. "extra": {
  2449. "branch-alias": {
  2450. "dev-master": "4.0-dev"
  2451. }
  2452. },
  2453. "autoload": {
  2454. "classmap": [
  2455. "src/"
  2456. ]
  2457. },
  2458. "notification-url": "https://packagist.org/downloads/",
  2459. "license": [
  2460. "BSD-3-Clause"
  2461. ],
  2462. "authors": [
  2463. {
  2464. "name": "Sebastian Bergmann",
  2465. "email": "sebastian@phpunit.de"
  2466. },
  2467. {
  2468. "name": "Jeff Welch",
  2469. "email": "whatthejeff@gmail.com"
  2470. },
  2471. {
  2472. "name": "Volker Dusch",
  2473. "email": "github@wallbash.com"
  2474. },
  2475. {
  2476. "name": "Adam Harvey",
  2477. "email": "aharvey@php.net"
  2478. },
  2479. {
  2480. "name": "Bernhard Schussek",
  2481. "email": "bschussek@gmail.com"
  2482. }
  2483. ],
  2484. "description": "Provides the functionality to export PHP variables for visualization",
  2485. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  2486. "keywords": [
  2487. "export",
  2488. "exporter"
  2489. ],
  2490. "support": {
  2491. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  2492. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5"
  2493. },
  2494. "funding": [
  2495. {
  2496. "url": "https://github.com/sebastianbergmann",
  2497. "type": "github"
  2498. }
  2499. ],
  2500. "time": "2022-09-14T06:03:37+00:00"
  2501. },
  2502. {
  2503. "name": "sebastian/global-state",
  2504. "version": "5.0.5",
  2505. "source": {
  2506. "type": "git",
  2507. "url": "https://github.com/sebastianbergmann/global-state.git",
  2508. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2"
  2509. },
  2510. "dist": {
  2511. "type": "zip",
  2512. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  2513. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  2514. "shasum": ""
  2515. },
  2516. "require": {
  2517. "php": ">=7.3",
  2518. "sebastian/object-reflector": "^2.0",
  2519. "sebastian/recursion-context": "^4.0"
  2520. },
  2521. "require-dev": {
  2522. "ext-dom": "*",
  2523. "phpunit/phpunit": "^9.3"
  2524. },
  2525. "suggest": {
  2526. "ext-uopz": "*"
  2527. },
  2528. "type": "library",
  2529. "extra": {
  2530. "branch-alias": {
  2531. "dev-master": "5.0-dev"
  2532. }
  2533. },
  2534. "autoload": {
  2535. "classmap": [
  2536. "src/"
  2537. ]
  2538. },
  2539. "notification-url": "https://packagist.org/downloads/",
  2540. "license": [
  2541. "BSD-3-Clause"
  2542. ],
  2543. "authors": [
  2544. {
  2545. "name": "Sebastian Bergmann",
  2546. "email": "sebastian@phpunit.de"
  2547. }
  2548. ],
  2549. "description": "Snapshotting of global state",
  2550. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  2551. "keywords": [
  2552. "global state"
  2553. ],
  2554. "support": {
  2555. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  2556. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5"
  2557. },
  2558. "funding": [
  2559. {
  2560. "url": "https://github.com/sebastianbergmann",
  2561. "type": "github"
  2562. }
  2563. ],
  2564. "time": "2022-02-14T08:28:10+00:00"
  2565. },
  2566. {
  2567. "name": "sebastian/lines-of-code",
  2568. "version": "1.0.3",
  2569. "source": {
  2570. "type": "git",
  2571. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  2572. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  2573. },
  2574. "dist": {
  2575. "type": "zip",
  2576. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  2577. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  2578. "shasum": ""
  2579. },
  2580. "require": {
  2581. "nikic/php-parser": "^4.6",
  2582. "php": ">=7.3"
  2583. },
  2584. "require-dev": {
  2585. "phpunit/phpunit": "^9.3"
  2586. },
  2587. "type": "library",
  2588. "extra": {
  2589. "branch-alias": {
  2590. "dev-master": "1.0-dev"
  2591. }
  2592. },
  2593. "autoload": {
  2594. "classmap": [
  2595. "src/"
  2596. ]
  2597. },
  2598. "notification-url": "https://packagist.org/downloads/",
  2599. "license": [
  2600. "BSD-3-Clause"
  2601. ],
  2602. "authors": [
  2603. {
  2604. "name": "Sebastian Bergmann",
  2605. "email": "sebastian@phpunit.de",
  2606. "role": "lead"
  2607. }
  2608. ],
  2609. "description": "Library for counting the lines of code in PHP source code",
  2610. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  2611. "support": {
  2612. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  2613. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  2614. },
  2615. "funding": [
  2616. {
  2617. "url": "https://github.com/sebastianbergmann",
  2618. "type": "github"
  2619. }
  2620. ],
  2621. "time": "2020-11-28T06:42:11+00:00"
  2622. },
  2623. {
  2624. "name": "sebastian/object-enumerator",
  2625. "version": "4.0.4",
  2626. "source": {
  2627. "type": "git",
  2628. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  2629. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  2630. },
  2631. "dist": {
  2632. "type": "zip",
  2633. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  2634. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  2635. "shasum": ""
  2636. },
  2637. "require": {
  2638. "php": ">=7.3",
  2639. "sebastian/object-reflector": "^2.0",
  2640. "sebastian/recursion-context": "^4.0"
  2641. },
  2642. "require-dev": {
  2643. "phpunit/phpunit": "^9.3"
  2644. },
  2645. "type": "library",
  2646. "extra": {
  2647. "branch-alias": {
  2648. "dev-master": "4.0-dev"
  2649. }
  2650. },
  2651. "autoload": {
  2652. "classmap": [
  2653. "src/"
  2654. ]
  2655. },
  2656. "notification-url": "https://packagist.org/downloads/",
  2657. "license": [
  2658. "BSD-3-Clause"
  2659. ],
  2660. "authors": [
  2661. {
  2662. "name": "Sebastian Bergmann",
  2663. "email": "sebastian@phpunit.de"
  2664. }
  2665. ],
  2666. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  2667. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  2668. "support": {
  2669. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  2670. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  2671. },
  2672. "funding": [
  2673. {
  2674. "url": "https://github.com/sebastianbergmann",
  2675. "type": "github"
  2676. }
  2677. ],
  2678. "time": "2020-10-26T13:12:34+00:00"
  2679. },
  2680. {
  2681. "name": "sebastian/object-reflector",
  2682. "version": "2.0.4",
  2683. "source": {
  2684. "type": "git",
  2685. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  2686. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  2687. },
  2688. "dist": {
  2689. "type": "zip",
  2690. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  2691. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  2692. "shasum": ""
  2693. },
  2694. "require": {
  2695. "php": ">=7.3"
  2696. },
  2697. "require-dev": {
  2698. "phpunit/phpunit": "^9.3"
  2699. },
  2700. "type": "library",
  2701. "extra": {
  2702. "branch-alias": {
  2703. "dev-master": "2.0-dev"
  2704. }
  2705. },
  2706. "autoload": {
  2707. "classmap": [
  2708. "src/"
  2709. ]
  2710. },
  2711. "notification-url": "https://packagist.org/downloads/",
  2712. "license": [
  2713. "BSD-3-Clause"
  2714. ],
  2715. "authors": [
  2716. {
  2717. "name": "Sebastian Bergmann",
  2718. "email": "sebastian@phpunit.de"
  2719. }
  2720. ],
  2721. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  2722. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  2723. "support": {
  2724. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  2725. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  2726. },
  2727. "funding": [
  2728. {
  2729. "url": "https://github.com/sebastianbergmann",
  2730. "type": "github"
  2731. }
  2732. ],
  2733. "time": "2020-10-26T13:14:26+00:00"
  2734. },
  2735. {
  2736. "name": "sebastian/recursion-context",
  2737. "version": "4.0.4",
  2738. "source": {
  2739. "type": "git",
  2740. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  2741. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172"
  2742. },
  2743. "dist": {
  2744. "type": "zip",
  2745. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172",
  2746. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172",
  2747. "shasum": ""
  2748. },
  2749. "require": {
  2750. "php": ">=7.3"
  2751. },
  2752. "require-dev": {
  2753. "phpunit/phpunit": "^9.3"
  2754. },
  2755. "type": "library",
  2756. "extra": {
  2757. "branch-alias": {
  2758. "dev-master": "4.0-dev"
  2759. }
  2760. },
  2761. "autoload": {
  2762. "classmap": [
  2763. "src/"
  2764. ]
  2765. },
  2766. "notification-url": "https://packagist.org/downloads/",
  2767. "license": [
  2768. "BSD-3-Clause"
  2769. ],
  2770. "authors": [
  2771. {
  2772. "name": "Sebastian Bergmann",
  2773. "email": "sebastian@phpunit.de"
  2774. },
  2775. {
  2776. "name": "Jeff Welch",
  2777. "email": "whatthejeff@gmail.com"
  2778. },
  2779. {
  2780. "name": "Adam Harvey",
  2781. "email": "aharvey@php.net"
  2782. }
  2783. ],
  2784. "description": "Provides functionality to recursively process PHP variables",
  2785. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  2786. "support": {
  2787. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  2788. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4"
  2789. },
  2790. "funding": [
  2791. {
  2792. "url": "https://github.com/sebastianbergmann",
  2793. "type": "github"
  2794. }
  2795. ],
  2796. "time": "2020-10-26T13:17:30+00:00"
  2797. },
  2798. {
  2799. "name": "sebastian/resource-operations",
  2800. "version": "3.0.3",
  2801. "source": {
  2802. "type": "git",
  2803. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  2804. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  2805. },
  2806. "dist": {
  2807. "type": "zip",
  2808. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  2809. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  2810. "shasum": ""
  2811. },
  2812. "require": {
  2813. "php": ">=7.3"
  2814. },
  2815. "require-dev": {
  2816. "phpunit/phpunit": "^9.0"
  2817. },
  2818. "type": "library",
  2819. "extra": {
  2820. "branch-alias": {
  2821. "dev-master": "3.0-dev"
  2822. }
  2823. },
  2824. "autoload": {
  2825. "classmap": [
  2826. "src/"
  2827. ]
  2828. },
  2829. "notification-url": "https://packagist.org/downloads/",
  2830. "license": [
  2831. "BSD-3-Clause"
  2832. ],
  2833. "authors": [
  2834. {
  2835. "name": "Sebastian Bergmann",
  2836. "email": "sebastian@phpunit.de"
  2837. }
  2838. ],
  2839. "description": "Provides a list of PHP built-in functions that operate on resources",
  2840. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  2841. "support": {
  2842. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  2843. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  2844. },
  2845. "funding": [
  2846. {
  2847. "url": "https://github.com/sebastianbergmann",
  2848. "type": "github"
  2849. }
  2850. ],
  2851. "time": "2020-09-28T06:45:17+00:00"
  2852. },
  2853. {
  2854. "name": "sebastian/type",
  2855. "version": "3.2.0",
  2856. "source": {
  2857. "type": "git",
  2858. "url": "https://github.com/sebastianbergmann/type.git",
  2859. "reference": "fb3fe09c5f0bae6bc27ef3ce933a1e0ed9464b6e"
  2860. },
  2861. "dist": {
  2862. "type": "zip",
  2863. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/fb3fe09c5f0bae6bc27ef3ce933a1e0ed9464b6e",
  2864. "reference": "fb3fe09c5f0bae6bc27ef3ce933a1e0ed9464b6e",
  2865. "shasum": ""
  2866. },
  2867. "require": {
  2868. "php": ">=7.3"
  2869. },
  2870. "require-dev": {
  2871. "phpunit/phpunit": "^9.5"
  2872. },
  2873. "type": "library",
  2874. "extra": {
  2875. "branch-alias": {
  2876. "dev-master": "3.2-dev"
  2877. }
  2878. },
  2879. "autoload": {
  2880. "classmap": [
  2881. "src/"
  2882. ]
  2883. },
  2884. "notification-url": "https://packagist.org/downloads/",
  2885. "license": [
  2886. "BSD-3-Clause"
  2887. ],
  2888. "authors": [
  2889. {
  2890. "name": "Sebastian Bergmann",
  2891. "email": "sebastian@phpunit.de",
  2892. "role": "lead"
  2893. }
  2894. ],
  2895. "description": "Collection of value objects that represent the types of the PHP type system",
  2896. "homepage": "https://github.com/sebastianbergmann/type",
  2897. "support": {
  2898. "issues": "https://github.com/sebastianbergmann/type/issues",
  2899. "source": "https://github.com/sebastianbergmann/type/tree/3.2.0"
  2900. },
  2901. "funding": [
  2902. {
  2903. "url": "https://github.com/sebastianbergmann",
  2904. "type": "github"
  2905. }
  2906. ],
  2907. "time": "2022-09-12T14:47:03+00:00"
  2908. },
  2909. {
  2910. "name": "sebastian/version",
  2911. "version": "3.0.2",
  2912. "source": {
  2913. "type": "git",
  2914. "url": "https://github.com/sebastianbergmann/version.git",
  2915. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  2916. },
  2917. "dist": {
  2918. "type": "zip",
  2919. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  2920. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  2921. "shasum": ""
  2922. },
  2923. "require": {
  2924. "php": ">=7.3"
  2925. },
  2926. "type": "library",
  2927. "extra": {
  2928. "branch-alias": {
  2929. "dev-master": "3.0-dev"
  2930. }
  2931. },
  2932. "autoload": {
  2933. "classmap": [
  2934. "src/"
  2935. ]
  2936. },
  2937. "notification-url": "https://packagist.org/downloads/",
  2938. "license": [
  2939. "BSD-3-Clause"
  2940. ],
  2941. "authors": [
  2942. {
  2943. "name": "Sebastian Bergmann",
  2944. "email": "sebastian@phpunit.de",
  2945. "role": "lead"
  2946. }
  2947. ],
  2948. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  2949. "homepage": "https://github.com/sebastianbergmann/version",
  2950. "support": {
  2951. "issues": "https://github.com/sebastianbergmann/version/issues",
  2952. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  2953. },
  2954. "funding": [
  2955. {
  2956. "url": "https://github.com/sebastianbergmann",
  2957. "type": "github"
  2958. }
  2959. ],
  2960. "time": "2020-09-28T06:39:44+00:00"
  2961. },
  2962. {
  2963. "name": "theseer/tokenizer",
  2964. "version": "1.2.1",
  2965. "source": {
  2966. "type": "git",
  2967. "url": "https://github.com/theseer/tokenizer.git",
  2968. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  2969. },
  2970. "dist": {
  2971. "type": "zip",
  2972. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  2973. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  2974. "shasum": ""
  2975. },
  2976. "require": {
  2977. "ext-dom": "*",
  2978. "ext-tokenizer": "*",
  2979. "ext-xmlwriter": "*",
  2980. "php": "^7.2 || ^8.0"
  2981. },
  2982. "type": "library",
  2983. "autoload": {
  2984. "classmap": [
  2985. "src/"
  2986. ]
  2987. },
  2988. "notification-url": "https://packagist.org/downloads/",
  2989. "license": [
  2990. "BSD-3-Clause"
  2991. ],
  2992. "authors": [
  2993. {
  2994. "name": "Arne Blankerts",
  2995. "email": "arne@blankerts.de",
  2996. "role": "Developer"
  2997. }
  2998. ],
  2999. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  3000. "support": {
  3001. "issues": "https://github.com/theseer/tokenizer/issues",
  3002. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  3003. },
  3004. "funding": [
  3005. {
  3006. "url": "https://github.com/theseer",
  3007. "type": "github"
  3008. }
  3009. ],
  3010. "time": "2021-07-28T10:34:58+00:00"
  3011. }
  3012. ],
  3013. "aliases": [],
  3014. "minimum-stability": "dev",
  3015. "stability-flags": [],
  3016. "prefer-stable": true,
  3017. "prefer-lowest": false,
  3018. "platform": [],
  3019. "platform-dev": [],
  3020. "plugin-api-version": "2.3.0"
  3021. }