composer.lock 130 KB

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