composer.lock 120 KB

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