composer.lock 124 KB

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