| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699 |
- {
- "_readme": [
- "This file locks the dependencies of your project to a known state",
- "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
- "This file is @generated automatically"
- ],
- "content-hash": "db0f98cb9d83d2fdceec939867f9343b",
- "packages": [
- {
- "name": "n2n/n2n",
- "version": "7.5.x-dev",
- "source": {
- "type": "git",
- "url": "https://github.com/n2n/n2n.git",
- "reference": "4ae43658a549ed5989c19fd7827069abaa4438c1"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/n2n/n2n/zipball/4ae43658a549ed5989c19fd7827069abaa4438c1",
- "reference": "4ae43658a549ed5989c19fd7827069abaa4438c1",
- "shasum": ""
- },
- "require": {
- "ext-mbstring": "*",
- "n2n/n2n-composer-module-installer": "^7.1.5",
- "n2n/n2n-config": "~7.5.0",
- "n2n/n2n-context": "~7.5.0",
- "n2n/n2n-l10n": "~7.5.0",
- "n2n/n2n-log4php": "~7.4.0",
- "n2n/n2n-reflection": "~7.5.0",
- "n2n/n2n-spec-tx": "^1.0",
- "n2n/n2n-util": "~7.5.0",
- "n2n/n2n-util-attr": "~7.5.0",
- "n2n/n2n-util-crypt": "~7.5.0"
- },
- "require-dev": {
- "phpunit/phpunit": "^9.6.19"
- },
- "type": "n2n-module",
- "autoload": {
- "psr-4": {
- "n2n\\core\\": "src/app/n2n/core"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "LGPL-3.0-or-later"
- ],
- "authors": [
- {
- "name": "Andreas von Burg",
- "email": "a@von-burg.net",
- "homepage": "https://andreas.von-burg.net"
- },
- {
- "name": "Bert Hofmänner",
- "email": "hofmaenner@hnm.ch",
- "homepage": "https://www.hnm.ch"
- },
- {
- "name": "Thomas Günther",
- "email": "guenther@hnm.ch"
- },
- {
- "name": "David Meier",
- "email": "meier@hnm.ch"
- }
- ],
- "description": "Combines different components of n2n framework.",
- "homepage": "https://www.n2n.ch",
- "keywords": [
- "framework",
- "n2n"
- ],
- "support": {
- "issues": "https://github.com/n2n/n2n/issues",
- "source": "https://github.com/n2n/n2n/tree/7.5.x"
- },
- "time": "2026-07-31T13:25:46+00:00"
- },
- {
- "name": "n2n/n2n-batch",
- "version": "7.5.x-dev",
- "source": {
- "type": "git",
- "url": "https://github.com/n2n/n2n-batch.git",
- "reference": "5787b203b30dd5a3e046e66480b44e82f8bfb656"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/n2n/n2n-batch/zipball/5787b203b30dd5a3e046e66480b44e82f8bfb656",
- "reference": "5787b203b30dd5a3e046e66480b44e82f8bfb656",
- "shasum": ""
- },
- "require": {
- "n2n/n2n": "~7.5.0",
- "n2n/n2n-composer-module-installer": "^7.1.6",
- "n2n/n2n-queue": "~7.5.0",
- "n2n/n2n-reflection": "~7.5.0",
- "n2n/n2n-util": "~7.5.0"
- },
- "require-dev": {
- "n2n/n2n-test": "~7.5.0",
- "phpunit/phpunit": "^9.6.29"
- },
- "type": "n2n-module",
- "autoload": {
- "psr-4": {
- "n2n\\batch\\": "src/app/n2n/batch"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "LGPL-3.0-or-later"
- ],
- "authors": [
- {
- "name": "Andreas von Burg",
- "email": "a@von-burg.net",
- "homepage": "https://andreas.von-burg.net/"
- }
- ],
- "description": "batch job support for n2n framework",
- "homepage": "https://n2n.rocks/",
- "keywords": [
- "batch job",
- "n2n"
- ],
- "support": {
- "issues": "https://github.com/n2n/n2n-batch/issues",
- "source": "https://github.com/n2n/n2n-batch/tree/7.5.x"
- },
- "time": "2026-07-23T14:19:29+00:00"
- },
- {
- "name": "n2n/n2n-cache",
- "version": "7.5.x-dev",
- "source": {
- "type": "git",
- "url": "https://github.com/n2n/n2n-cache.git",
- "reference": "6a7a36bc6ee48fcbf45d79cea164823a09e1c03c"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/n2n/n2n-cache/zipball/6a7a36bc6ee48fcbf45d79cea164823a09e1c03c",
- "reference": "6a7a36bc6ee48fcbf45d79cea164823a09e1c03c",
- "shasum": ""
- },
- "require": {
- "n2n/n2n-concurrency": "~7.5.0",
- "n2n/n2n-spec-dbo": "~1.0",
- "n2n/n2n-util": "~7.5.0",
- "php": ">=8.4",
- "psr/cache": "^3.0",
- "psr/simple-cache": "^3.0"
- },
- "require-dev": {
- "ext-ctype": "*",
- "ext-mbstring": "*",
- "n2n/n2n-impl-persistence-meta": "^7.5.0",
- "n2n/n2n-test": "^7.4",
- "phpunit/phpunit": "^9.6.19"
- },
- "suggest": {
- "ext-igbinary": "*"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "7.5.x-dev",
- "dev-develop": "7.5.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "n2n\\cache\\": "src/app/n2n/cache"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "LGPL-3.0-or-later"
- ],
- "authors": [
- {
- "name": "Andreas von Burg",
- "email": "a@von-burg.net",
- "homepage": "https://www.von-burg.net/"
- }
- ],
- "description": "php cache utils by n2n",
- "homepage": "https://n2n.rocks/",
- "keywords": [
- "n2n"
- ],
- "support": {
- "issues": "https://github.com/n2n/n2n-cache/issues",
- "source": "https://github.com/n2n/n2n-cache/tree/7.5.x"
- },
- "time": "2026-01-28T10:13:40+00:00"
- },
- {
- "name": "n2n/n2n-composer-module-installer",
- "version": "v7.1.6",
- "source": {
- "type": "git",
- "url": "https://github.com/n2n/n2n-composer-module-installer.git",
- "reference": "0191904f4c72d088ab400931d84590215dae2f71"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/n2n/n2n-composer-module-installer/zipball/0191904f4c72d088ab400931d84590215dae2f71",
- "reference": "0191904f4c72d088ab400931d84590215dae2f71",
- "shasum": ""
- },
- "require": {
- "composer-plugin-api": ">=1 <3"
- },
- "require-dev": {
- "composer/composer": ">=1 <3"
- },
- "type": "composer-plugin",
- "extra": {
- "class": "n2n\\composer\\module\\ModulePlugin"
- },
- "autoload": {
- "psr-4": {
- "n2n\\composer\\module\\": "src/n2n/composer/module"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "LGPL-3.0-or-later"
- ],
- "authors": [
- {
- "name": "Andreas von Burg",
- "email": "a@von-burg.net",
- "homepage": "http://www.von-burg.net"
- }
- ],
- "description": "n2n module installer plugin for composer",
- "homepage": "http://n2n.rocks/",
- "keywords": [
- "installer",
- "module",
- "n2n"
- ],
- "support": {
- "issues": "https://github.com/n2n/n2n-composer-module-installer/issues",
- "source": "https://github.com/n2n/n2n-composer-module-installer/tree/v7.1.6"
- },
- "time": "2023-03-02T10:19:51+00:00"
- },
- {
- "name": "n2n/n2n-concurrency",
- "version": "7.5.x-dev",
- "source": {
- "type": "git",
- "url": "https://github.com/n2n/n2n-concurrency.git",
- "reference": "428b6eb19a38374e3fedd3ac61daa9311cfabfd4"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/n2n/n2n-concurrency/zipball/428b6eb19a38374e3fedd3ac61daa9311cfabfd4",
- "reference": "428b6eb19a38374e3fedd3ac61daa9311cfabfd4",
- "shasum": ""
- },
- "require": {
- "ext-ctype": "*",
- "ext-mbstring": "*",
- "n2n/n2n-util": "~7.5.0"
- },
- "require-dev": {
- "phpunit/phpunit": "^9.5"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "n2n\\concurrency\\": "src/app/n2n/concurrency"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "LGPL-3.0-or-later"
- ],
- "authors": [
- {
- "name": "Andreas von Burg",
- "email": "a@von-burg.net",
- "homepage": "https://www.von-burg.net/"
- }
- ],
- "description": "php concurrency utils by n2n",
- "homepage": "https://n2n.rocks/",
- "keywords": [
- "n2n"
- ],
- "support": {
- "issues": "https://github.com/n2n/n2n-concurrency/issues",
- "source": "https://github.com/n2n/n2n-concurrency/tree/7.5.x"
- },
- "time": "2025-11-07T13:13:27+00:00"
- },
- {
- "name": "n2n/n2n-config",
- "version": "7.5.x-dev",
- "source": {
- "type": "git",
- "url": "https://github.com/n2n/n2n-config.git",
- "reference": "35c03d65453fb6a3b3292dbb7b6334b8553d055c"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/n2n/n2n-config/zipball/35c03d65453fb6a3b3292dbb7b6334b8553d055c",
- "reference": "35c03d65453fb6a3b3292dbb7b6334b8553d055c",
- "shasum": ""
- },
- "require": {
- "n2n/n2n-cache": "~7.5.0",
- "n2n/n2n-util": "~7.4"
- },
- "require-dev": {
- "phpunit/phpunit": "^9.5"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "n2n\\config\\": "src/app/n2n/config"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "LGPL-3.0-or-later"
- ],
- "authors": [
- {
- "name": "Andreas von Burg",
- "email": "a@von-burg.net",
- "homepage": "https://www.von-burg.net/"
- }
- ],
- "description": "config utils for n2n",
- "homepage": "http://n2n.rocks/",
- "keywords": [
- "batch job",
- "n2n"
- ],
- "support": {
- "issues": "https://github.com/n2n/n2n-config/issues",
- "source": "https://github.com/n2n/n2n-config/tree/7.5.x"
- },
- "time": "2025-11-05T10:39:39+00:00"
- },
- {
- "name": "n2n/n2n-context",
- "version": "7.5.x-dev",
- "source": {
- "type": "git",
- "url": "https://github.com/n2n/n2n-context.git",
- "reference": "1302512f9bf727a01e2e8b50b4b92ec606b2c5ff"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/n2n/n2n-context/zipball/1302512f9bf727a01e2e8b50b4b92ec606b2c5ff",
- "reference": "1302512f9bf727a01e2e8b50b4b92ec606b2c5ff",
- "shasum": ""
- },
- "require": {
- "n2n/n2n-cache": "~7.5.0",
- "n2n/n2n-reflection": "~7.5.0",
- "n2n/n2n-util": "~7.5.0"
- },
- "provide": {
- "psr/container-implementation": "1.0.0"
- },
- "require-dev": {
- "phpunit/phpunit": "^9.5"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "n2n\\context\\": "src/app/n2n/context"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "LGPL-3.0-or-later"
- ],
- "authors": [
- {
- "name": "Andreas von Burg",
- "email": "a@von-burg.net",
- "homepage": "https://www.von-burg.net/"
- }
- ],
- "description": "Context support (request, session and application scope) for n2n framework.",
- "homepage": "https://n2n.rocks/",
- "keywords": [
- "Context",
- "application scope",
- "n2n",
- "request scope",
- "scope",
- "session scope"
- ],
- "support": {
- "issues": "https://github.com/n2n/n2n-context/issues",
- "source": "https://github.com/n2n/n2n-context/tree/7.5.x"
- },
- "time": "2025-11-07T13:05:57+00:00"
- },
- {
- "name": "n2n/n2n-impl-persistence-meta",
- "version": "7.5.x-dev",
- "source": {
- "type": "git",
- "url": "https://github.com/n2n/n2n-impl-persistence-meta.git",
- "reference": "c5d0e68fe39bf2ced4e9f61e4bd9a8ca3e475c9d"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/n2n/n2n-impl-persistence-meta/zipball/c5d0e68fe39bf2ced4e9f61e4bd9a8ca3e475c9d",
- "reference": "c5d0e68fe39bf2ced4e9f61e4bd9a8ca3e475c9d",
- "shasum": ""
- },
- "require": {
- "ext-pdo": "*",
- "n2n/n2n-io": "~7.5.0",
- "n2n/n2n-l10n": "~7.5.0",
- "n2n/n2n-persistence": "~7.5.0",
- "n2n/n2n-reflection": "~7.5.0",
- "n2n/n2n-util": "~7.5.0",
- "php": ">=8.1"
- },
- "require-dev": {
- "n2n/n2n": "~7.4",
- "n2n/n2n-test": "~7.4",
- "n2n/n2n-web": "~7.4",
- "phpunit/phpunit": "^9.6.19"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "n2n\\impl\\persistence\\meta\\": "src/app/n2n/impl/persistence/meta"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "LGPL-3.0-or-later"
- ],
- "authors": [
- {
- "name": "Thomas Günther",
- "email": "guenther@hnm.ch"
- }
- ],
- "description": "n2n persistence meta api implenation",
- "homepage": "https://n2n.rocks/",
- "keywords": [
- "database meta api",
- "n2n",
- "persistence"
- ],
- "support": {
- "issues": "https://github.com/n2n/n2n-impl-persistence-meta/issues",
- "source": "https://github.com/n2n/n2n-impl-persistence-meta/tree/7.5.x"
- },
- "time": "2026-04-24T10:08:10+00:00"
- },
- {
- "name": "n2n/n2n-impl-persistence-orm",
- "version": "7.5.x-dev",
- "source": {
- "type": "git",
- "url": "https://github.com/n2n/n2n-impl-persistence-orm.git",
- "reference": "8105ff264cdf62451572dc2e6b338eeeb967464c"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/n2n/n2n-impl-persistence-orm/zipball/8105ff264cdf62451572dc2e6b338eeeb967464c",
- "reference": "8105ff264cdf62451572dc2e6b338eeeb967464c",
- "shasum": ""
- },
- "require": {
- "n2n/n2n-composer-module-installer": "^7.1.5",
- "n2n/n2n-io": "~7.5.0",
- "n2n/n2n-l10n": "~7.5.0",
- "n2n/n2n-persistence": "~7.5.0",
- "n2n/n2n-reflection": "~7.5.0",
- "n2n/n2n-spec-valobj": "~1.0",
- "n2n/n2n-util": "~7.5.0"
- },
- "require-dev": {
- "n2n/n2n-impl-persistence-meta": "~7.5.0",
- "n2n/n2n-test": "~7.4",
- "phpunit/phpunit": "^9.6.23"
- },
- "type": "n2n-module",
- "autoload": {
- "psr-4": {
- "n2n\\impl\\persistence\\orm\\": "src/app/n2n/impl/persistence/orm"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "LGPL-3.0-or-later"
- ],
- "authors": [
- {
- "name": "Andreas von Burg",
- "email": "a@von-burg.net",
- "homepage": "https://www.von-burg.net/"
- }
- ],
- "description": "n2n persistence orm implementation",
- "homepage": "http://n2n.rocks/",
- "keywords": [
- "n2n",
- "orm",
- "persistence"
- ],
- "support": {
- "issues": "https://github.com/n2n/n2n-impl-persistence-orm/issues",
- "source": "https://github.com/n2n/n2n-impl-persistence-orm/tree/7.5.x"
- },
- "time": "2026-04-24T10:23:19+00:00"
- },
- {
- "name": "n2n/n2n-impl-web-dispatch",
- "version": "7.5.x-dev",
- "source": {
- "type": "git",
- "url": "https://github.com/n2n/n2n-impl-web-dispatch.git",
- "reference": "a398e8b43b0eafe5cc1d51492945a32dd925a9cf"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/n2n/n2n-impl-web-dispatch/zipball/a398e8b43b0eafe5cc1d51492945a32dd925a9cf",
- "reference": "a398e8b43b0eafe5cc1d51492945a32dd925a9cf",
- "shasum": ""
- },
- "require": {
- "n2n/n2n-composer-module-installer": "^7.1.5",
- "n2n/n2n-io": "~7.5.0",
- "n2n/n2n-l10n": "~7.5.0",
- "n2n/n2n-reflection": "~7.5.0",
- "n2n/n2n-util": "~7.5.0",
- "n2n/n2n-web": "~7.5.0"
- },
- "require-dev": {
- "phpunit/phpunit": "^9.5"
- },
- "type": "n2n-module",
- "autoload": {
- "psr-4": {
- "n2n\\impl\\web\\dispatch\\": "src/app/n2n/impl/web/dispatch"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "LGPL-3.0-or-later"
- ],
- "authors": [
- {
- "name": "Andreas von Burg",
- "email": "a@von-burg.net",
- "homepage": "https://www.von-burg.net/"
- }
- ],
- "description": "n2n dispatch implementation",
- "homepage": "http://n2n.rocks/",
- "keywords": [
- "form",
- "n2n",
- "web"
- ],
- "support": {
- "issues": "https://github.com/n2n/n2n-impl-web-dispatch/issues",
- "source": "https://github.com/n2n/n2n-impl-web-dispatch/tree/7.5.x"
- },
- "time": "2025-11-15T00:01:10+00:00"
- },
- {
- "name": "n2n/n2n-impl-web-ui",
- "version": "7.5.x-dev",
- "source": {
- "type": "git",
- "url": "https://github.com/n2n/n2n-impl-web-ui.git",
- "reference": "8c12fe95031e130fda7243b655eff96f8ddc8ff3"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/n2n/n2n-impl-web-ui/zipball/8c12fe95031e130fda7243b655eff96f8ddc8ff3",
- "reference": "8c12fe95031e130fda7243b655eff96f8ddc8ff3",
- "shasum": ""
- },
- "require": {
- "n2n/n2n-composer-module-installer": "^7.1.6",
- "n2n/n2n-io": "~7.5.0",
- "n2n/n2n-l10n": "~7.5.0",
- "n2n/n2n-reflection": "~7.5.0",
- "n2n/n2n-web": "~7.5.0"
- },
- "require-dev": {
- "phpunit/phpunit": "^9.5"
- },
- "type": "n2n-module",
- "autoload": {
- "psr-4": {
- "n2n\\impl\\web\\ui\\": "src/app/n2n/impl/web/ui"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "LGPL-3.0-or-later"
- ],
- "authors": [
- {
- "name": "Andreas von Burg",
- "email": "a@von-burg.net",
- "homepage": "https://www.von-burg.net/"
- }
- ],
- "description": "n2n web ui implementation",
- "homepage": "https://n2n.rocks/",
- "keywords": [
- "csv",
- "html",
- "n2n",
- "xml"
- ],
- "support": {
- "issues": "https://github.com/n2n/n2n-impl-web-ui/issues",
- "source": "https://github.com/n2n/n2n-impl-web-ui/tree/7.5.x"
- },
- "time": "2025-11-25T17:04:00+00:00"
- },
- {
- "name": "n2n/n2n-io",
- "version": "7.5.x-dev",
- "source": {
- "type": "git",
- "url": "https://github.com/n2n/n2n-io.git",
- "reference": "97e0cc09aba56f29afee154aed3a08b2fea4f58a"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/n2n/n2n-io/zipball/97e0cc09aba56f29afee154aed3a08b2fea4f58a",
- "reference": "97e0cc09aba56f29afee154aed3a08b2fea4f58a",
- "shasum": ""
- },
- "require": {
- "ext-fileinfo": "*",
- "n2n/n2n-concurrency": "~7.5.0",
- "n2n/n2n-reflection": "~7.5.0",
- "n2n/n2n-util": "~7.5.0"
- },
- "require-dev": {
- "n2n/n2n": "~7.4",
- "phpunit/phpunit": "^9.6"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "n2n\\io\\": "src/app/n2n/io"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "LGPL-3.0-or-later"
- ],
- "authors": [
- {
- "name": "Andreas von Burg",
- "email": "a@von-burg.net",
- "homepage": "https://www.von-burg.net/"
- }
- ],
- "description": "n2n io library",
- "homepage": "http://n2n.rocks/",
- "keywords": [
- "framework",
- "io",
- "n2n"
- ],
- "support": {
- "issues": "https://github.com/n2n/n2n-io/issues",
- "source": "https://github.com/n2n/n2n-io/tree/7.5.x"
- },
- "time": "2026-01-19T16:58:53+00:00"
- },
- {
- "name": "n2n/n2n-l10n",
- "version": "7.5.x-dev",
- "source": {
- "type": "git",
- "url": "https://github.com/n2n/n2n-l10n.git",
- "reference": "46ea9fd7b07596563f2c0f9e9d700ca29c48f33e"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/n2n/n2n-l10n/zipball/46ea9fd7b07596563f2c0f9e9d700ca29c48f33e",
- "reference": "46ea9fd7b07596563f2c0f9e9d700ca29c48f33e",
- "shasum": ""
- },
- "require": {
- "n2n/n2n-util": "~7.5.0"
- },
- "require-dev": {
- "phpunit/phpunit": "^9.6"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "n2n\\l10n\\": "src/app/n2n/l10n"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "LGPL-3.0-or-later"
- ],
- "authors": [
- {
- "name": "Andreas von Burg",
- "email": "a@von-burg.net",
- "homepage": "https://www.von-burg.net/"
- }
- ],
- "description": "n2n l10n support",
- "homepage": "https://n2n.rocks/",
- "keywords": [
- "l10n",
- "n2n"
- ],
- "support": {
- "issues": "https://github.com/n2n/n2n-l10n/issues",
- "source": "https://github.com/n2n/n2n-l10n/tree/7.5.x"
- },
- "time": "2026-01-12T13:58:05+00:00"
- },
- {
- "name": "n2n/n2n-log4php",
- "version": "v7.4.0",
- "source": {
- "type": "git",
- "url": "https://github.com/n2n/n2n-log4php.git",
- "reference": "61752bda9f606e1fcec1a86323c2b0fc6e1db1c5"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/n2n/n2n-log4php/zipball/61752bda9f606e1fcec1a86323c2b0fc6e1db1c5",
- "reference": "61752bda9f606e1fcec1a86323c2b0fc6e1db1c5",
- "shasum": ""
- },
- "require-dev": {
- "phpunit/phpunit": "^9.5"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "n2n\\log4php\\": "src/app/n2n/log4php"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "description": "log4php for n2n",
- "homepage": "http://n2n.rocks",
- "keywords": [
- "log4php",
- "n2n"
- ],
- "support": {
- "issues": "https://github.com/n2n/n2n-log4php/issues",
- "source": "https://github.com/n2n/n2n-log4php/tree/v7.4.0"
- },
- "time": "2024-12-03T23:09:52+00:00"
- },
- {
- "name": "n2n/n2n-mail",
- "version": "7.5.x-dev",
- "source": {
- "type": "git",
- "url": "https://github.com/n2n/n2n-mail.git",
- "reference": "2d03a33e41c267418771ec239bdf4a75e4426e7b"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/n2n/n2n-mail/zipball/2d03a33e41c267418771ec239bdf4a75e4426e7b",
- "reference": "2d03a33e41c267418771ec239bdf4a75e4426e7b",
- "shasum": ""
- },
- "require": {
- "n2n/n2n-util": "~7.5.0"
- },
- "require-dev": {
- "phpunit/phpunit": "^9.5"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "n2n\\mail\\": "src/app/n2n/mail"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "LGPL-3.0-or-later"
- ],
- "authors": [
- {
- "name": "Bert Hofmänner",
- "email": "hofmaenner@hnm.ch",
- "homepage": "https://www.hnm.ch/"
- }
- ],
- "description": "Simple mail library designed for n2n framework",
- "homepage": "http://n2n.rocks/",
- "keywords": [
- "mail",
- "n2n"
- ],
- "support": {
- "issues": "https://github.com/n2n/n2n-mail/issues",
- "source": "https://github.com/n2n/n2n-mail/tree/7.5.x"
- },
- "time": "2025-11-07T13:13:53+00:00"
- },
- {
- "name": "n2n/n2n-persistence",
- "version": "7.5.x-dev",
- "source": {
- "type": "git",
- "url": "https://github.com/n2n/n2n-persistence.git",
- "reference": "f29675d0776f9117d40e10f12ce705ef12c75c44"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/n2n/n2n-persistence/zipball/f29675d0776f9117d40e10f12ce705ef12c75c44",
- "reference": "f29675d0776f9117d40e10f12ce705ef12c75c44",
- "shasum": ""
- },
- "require": {
- "ext-mbstring": "*",
- "ext-pdo": "*",
- "n2n/n2n": "~7.5.0",
- "n2n/n2n-composer-module-installer": "^7.1.5",
- "n2n/n2n-io": "~7.5.0",
- "n2n/n2n-reflection": "~7.5.0",
- "n2n/n2n-spec-dbo": "~1.0",
- "n2n/n2n-util": "~7.5.0",
- "php": ">=8.4"
- },
- "require-dev": {
- "phpunit/phpunit": "^9.6.23"
- },
- "type": "n2n-module",
- "autoload": {
- "psr-4": {
- "n2n\\persistence\\": "src/app/n2n/persistence"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "LGPL-3.0-or-later"
- ],
- "authors": [
- {
- "name": "Andreas von Burg",
- "email": "a@von-burg.net",
- "homepage": "https://www.von-burg.net"
- }
- ],
- "description": "Persistence library for n2n. Includes ORM and Meta API.",
- "homepage": "https://n2n.rocks/",
- "keywords": [
- "db meta api",
- "n2n",
- "orm",
- "persistence"
- ],
- "support": {
- "issues": "https://github.com/n2n/n2n-persistence/issues",
- "source": "https://github.com/n2n/n2n-persistence/tree/7.5.x"
- },
- "time": "2026-05-11T08:58:39+00:00"
- },
- {
- "name": "n2n/n2n-queue",
- "version": "7.5.x-dev",
- "source": {
- "type": "git",
- "url": "https://github.com/n2n/n2n-queue.git",
- "reference": "7189fac68ef28fcae9f716e0d38e91fd01b9a68f"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/n2n/n2n-queue/zipball/7189fac68ef28fcae9f716e0d38e91fd01b9a68f",
- "reference": "7189fac68ef28fcae9f716e0d38e91fd01b9a68f",
- "shasum": ""
- },
- "require": {
- "n2n/n2n-concurrency": "~7.5.0",
- "n2n/n2n-spec-dbo": "~1.0",
- "n2n/n2n-util": "~7.5.0",
- "n2n/n2n-util-serialize": "~7.5.0",
- "php": ">=8.4"
- },
- "require-dev": {
- "ext-ctype": "*",
- "ext-mbstring": "*",
- "n2n/n2n-impl-persistence-meta": "^7.5.0",
- "n2n/n2n-test": "^7.4",
- "phpunit/phpunit": "^9.6.19"
- },
- "suggest": {
- "ext-igbinary": "*"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "n2n\\queue\\": "src/app/n2n/queue"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "LGPL-3.0-or-later"
- ],
- "authors": [
- {
- "name": "Andreas von Burg",
- "email": "a@von-burg.net",
- "homepage": "https://www.von-burg.net/"
- }
- ],
- "description": "php queue utils by n2n",
- "homepage": "https://n2n.rocks/",
- "keywords": [
- "n2n"
- ],
- "support": {
- "issues": "https://github.com/n2n/n2n-queue/issues",
- "source": "https://github.com/n2n/n2n-queue/tree/7.5.x"
- },
- "time": "2026-07-23T17:17:14+00:00"
- },
- {
- "name": "n2n/n2n-reflection",
- "version": "7.5.x-dev",
- "source": {
- "type": "git",
- "url": "https://github.com/n2n/n2n-reflection.git",
- "reference": "7cc3b7bf2bab08f92d41c82f1fbc4bf3a26b15c2"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/n2n/n2n-reflection/zipball/7cc3b7bf2bab08f92d41c82f1fbc4bf3a26b15c2",
- "reference": "7cc3b7bf2bab08f92d41c82f1fbc4bf3a26b15c2",
- "shasum": ""
- },
- "require": {
- "ext-mbstring": "*",
- "n2n/n2n-util": "~7.5.0"
- },
- "require-dev": {
- "phpunit/phpunit": "^9.6.20"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "n2n\\reflection\\": "src/app/n2n/reflection"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "LGPL-3.0-or-later"
- ],
- "authors": [
- {
- "name": "Andreas von Burg",
- "email": "a@von-burg.net",
- "homepage": "https://www.von-burg.net/",
- "role": "Developer"
- }
- ],
- "description": "n2n framework 7",
- "homepage": "http://n2n.rocks/",
- "keywords": [
- "awesome",
- "framework"
- ],
- "support": {
- "issues": "https://github.com/n2n/n2n-reflection/issues",
- "source": "https://github.com/n2n/n2n-reflection/tree/7.5.x"
- },
- "time": "2025-11-07T13:11:57+00:00"
- },
- {
- "name": "n2n/n2n-spec-dbo",
- "version": "1.0.x-dev",
- "source": {
- "type": "git",
- "url": "https://github.com/n2n/n2n-spec-dbo.git",
- "reference": "d2643be6aaa4171566b22fd159062b2aaf4149c4"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/n2n/n2n-spec-dbo/zipball/d2643be6aaa4171566b22fd159062b2aaf4149c4",
- "reference": "d2643be6aaa4171566b22fd159062b2aaf4149c4",
- "shasum": ""
- },
- "require": {
- "php": ">=8.1"
- },
- "require-dev": {
- "n2n/n2n-util": "^7.4"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "n2n\\spec\\dbo\\": "src/app/n2n/spec/dbo"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "LGPL-3.0-or-later"
- ],
- "authors": [
- {
- "name": "Andreas von Burg",
- "email": "a@von-burg.net",
- "homepage": "https://andreas.von-burg.net"
- }
- ],
- "description": "Specifies an abstraction of database connection which also provides functionality to build queries independent of the used database engine.",
- "homepage": "https://www.n2n.ch",
- "keywords": [
- "framework",
- "n2n",
- "pdo"
- ],
- "support": {
- "issues": "https://github.com/n2n/n2n-spec-dbo/issues",
- "source": "https://github.com/n2n/n2n-spec-dbo/tree/develop"
- },
- "time": "2024-12-03T23:09:52+00:00"
- },
- {
- "name": "n2n/n2n-spec-tx",
- "version": "1.0.x-dev",
- "source": {
- "type": "git",
- "url": "https://github.com/n2n/n2n-spec-tx.git",
- "reference": "44cadb03abd75e78efcb093e6db20ba56709e633"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/n2n/n2n-spec-tx/zipball/44cadb03abd75e78efcb093e6db20ba56709e633",
- "reference": "44cadb03abd75e78efcb093e6db20ba56709e633",
- "shasum": ""
- },
- "require-dev": {
- "n2n/n2n-util": "^7.4"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "n2n\\spec\\tx\\": "src/app/n2n/spec/tx"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "LGPL-3.0-or-later"
- ],
- "authors": [
- {
- "name": "David Meier",
- "email": "meier@hnm.ch",
- "homepage": "https://www.hnm.ch/de/agentur/team/meier"
- }
- ],
- "description": "Specifies an abstraction of transaction mechanism used in n2n",
- "homepage": "https://n2n.rocks",
- "keywords": [
- "framework",
- "n2n",
- "transaction"
- ],
- "support": {
- "issues": "https://github.com/n2n/n2n-spec-tx/issues",
- "source": "https://github.com/n2n/n2n-spec-tx/tree/1.0.x"
- },
- "time": "2025-11-04T16:06:13+00:00"
- },
- {
- "name": "n2n/n2n-spec-valobj",
- "version": "1.0.x-dev",
- "source": {
- "type": "git",
- "url": "https://github.com/n2n/n2n-spec-valobj.git",
- "reference": "7bfcd1e5ea5c1bbe0770051894d6525d4624d3e1"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/n2n/n2n-spec-valobj/zipball/7bfcd1e5ea5c1bbe0770051894d6525d4624d3e1",
- "reference": "7bfcd1e5ea5c1bbe0770051894d6525d4624d3e1",
- "shasum": ""
- },
- "require": {
- "php": ">=8.1"
- },
- "require-dev": {
- "n2n/n2n-util": "^7.4"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "n2n\\spec\\valobj\\": "src/app/n2n/spec/valobj"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "LGPL-3.0-or-later"
- ],
- "authors": [
- {
- "name": "Andreas von Burg",
- "email": "a@von-burg.net",
- "homepage": "https://andreas.von-burg.net"
- }
- ],
- "description": "Specifies an abstraction of basic value objects used in Domain Driven Design.",
- "homepage": "https://www.n2n.ch",
- "keywords": [
- "Domain Driven Design",
- "Value Object",
- "framework",
- "n2n"
- ],
- "support": {
- "issues": "https://github.com/n2n/n2n-spec-valobj/issues",
- "source": "https://github.com/n2n/n2n-spec-valobj/tree/develop"
- },
- "time": "2024-12-03T23:09:51+00:00"
- },
- {
- "name": "n2n/n2n-util",
- "version": "7.5.x-dev",
- "source": {
- "type": "git",
- "url": "https://github.com/n2n/n2n-util.git",
- "reference": "3a92db0da9cb15f932d744e339e780986a5324a1"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/n2n/n2n-util/zipball/3a92db0da9cb15f932d744e339e780986a5324a1",
- "reference": "3a92db0da9cb15f932d744e339e780986a5324a1",
- "shasum": ""
- },
- "require": {
- "ext-curl": "*",
- "ext-gd": "*",
- "ext-mbstring": "*",
- "ext-openssl": "*",
- "php": ">=8.4",
- "psr/container": "^2.0",
- "psr/http-factory": "^1",
- "psr/http-message": "^1|^2"
- },
- "require-dev": {
- "phpstan/phpstan": "^2.1",
- "phpunit/phpunit": "^9.6.29"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "n2n\\util\\": "src/app/n2n/util"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "LGPL-3.0-or-later"
- ],
- "authors": [
- {
- "name": "Andreas von Burg",
- "email": "a@von-burg.net",
- "homepage": "https://www.von-burg.net/"
- }
- ],
- "description": "n2n util library",
- "homepage": "https://n2n.rocks/",
- "keywords": [
- "n2n",
- "util"
- ],
- "support": {
- "issues": "https://github.com/n2n/n2n-util/issues",
- "source": "https://github.com/n2n/n2n-util/tree/7.5.x"
- },
- "time": "2026-08-24T20:38:43+00:00"
- },
- {
- "name": "n2n/n2n-util-attr",
- "version": "7.5.x-dev",
- "source": {
- "type": "git",
- "url": "https://github.com/n2n/n2n-util-attr.git",
- "reference": "dc156a1034bc30486165c5494e47c53df9cbd4f9"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/n2n/n2n-util-attr/zipball/dc156a1034bc30486165c5494e47c53df9cbd4f9",
- "reference": "dc156a1034bc30486165c5494e47c53df9cbd4f9",
- "shasum": ""
- },
- "require": {
- "n2n/n2n-spec-valobj": "~1.0.0",
- "n2n/n2n-util": "~7.5.0"
- },
- "require-dev": {
- "n2n/n2n-test": "~7.5.0",
- "phpunit/phpunit": "^9.6.26"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "n2n\\util\\attr\\": "src/app/n2n/util/attr"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "LGPL-3.0-or-later"
- ],
- "authors": [
- {
- "name": "Andreas von Burg",
- "email": "a@von-burg.net",
- "homepage": "https://www.von-burg.net/"
- },
- {
- "name": "David Meier",
- "email": "meier@hnm.ch"
- }
- ],
- "description": "data map/set support for n2n framework",
- "homepage": "http://n2n.rocks/",
- "keywords": [
- "data map",
- "data set",
- "n2n"
- ],
- "support": {
- "issues": "https://github.com/n2n/n2n-util-attr/issues",
- "source": "https://github.com/n2n/n2n-util-attr/tree/7.5.x"
- },
- "time": "2026-07-15T10:04:39+00:00"
- },
- {
- "name": "n2n/n2n-util-crypt",
- "version": "7.5.x-dev",
- "source": {
- "type": "git",
- "url": "https://github.com/n2n/n2n-util-crypt.git",
- "reference": "4d510eff4d3b281e617fe04ebc158d54a22b353e"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/n2n/n2n-util-crypt/zipball/4d510eff4d3b281e617fe04ebc158d54a22b353e",
- "reference": "4d510eff4d3b281e617fe04ebc158d54a22b353e",
- "shasum": ""
- },
- "require": {
- "n2n/n2n-spec-valobj": "~1.0.0",
- "n2n/n2n-util": "~7.5.0"
- },
- "require-dev": {
- "phpunit/phpunit": "^9.6.26"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "n2n\\util\\crypt\\": "src/app/n2n/util/crypt"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "LGPL-3.0-or-later"
- ],
- "authors": [
- {
- "name": "Nikolai Schmid",
- "email": "schmid@hnm.ch"
- },
- {
- "name": "Andreas von Burg",
- "email": "a@von-burg.net",
- "homepage": "https://www.von-burg.net/"
- }
- ],
- "description": "crypt support for n2n framework",
- "homepage": "http://n2n.rocks/",
- "keywords": [
- "n2n",
- "openssl"
- ],
- "support": {
- "issues": "https://github.com/n2n/n2n-util-crypt/issues",
- "source": "https://github.com/n2n/n2n-util-crypt/tree/7.5.x"
- },
- "time": "2026-06-25T15:54:29+00:00"
- },
- {
- "name": "n2n/n2n-util-serialize",
- "version": "7.5.x-dev",
- "source": {
- "type": "git",
- "url": "https://github.com/n2n/n2n-util-serialize.git",
- "reference": "8a9f3dc4e76403c01652e876f23f6e552468d361"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/n2n/n2n-util-serialize/zipball/8a9f3dc4e76403c01652e876f23f6e552468d361",
- "reference": "8a9f3dc4e76403c01652e876f23f6e552468d361",
- "shasum": ""
- },
- "require": {
- "n2n/n2n-spec-valobj": "~1.0.0",
- "n2n/n2n-util": "~7.5.0",
- "php": ">=8.4"
- },
- "require-dev": {
- "n2n/n2n-test": "~7.5.0",
- "phpunit/phpunit": "^9.6.26"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "n2n\\util\\serialize\\": "src/app/n2n/util/serialize"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "LGPL-3.0-or-later"
- ],
- "authors": [
- {
- "name": "Andreas von Burg",
- "email": "a@von-burg.net",
- "homepage": "https://www.von-burg.net/"
- }
- ],
- "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.",
- "homepage": "https://n2n.rocks/",
- "keywords": [
- "allowed-classes",
- "deserialization",
- "enum",
- "json",
- "n2n",
- "pop-chain",
- "security",
- "serialize",
- "unserialize"
- ],
- "support": {
- "email": "a@von-burg.net",
- "issues": "https://github.com/n2n/n2n-util-serialize/issues",
- "source": "https://github.com/n2n/n2n-util-serialize/tree/7.5.x"
- },
- "time": "2026-08-24T20:46:14+00:00"
- },
- {
- "name": "n2n/n2n-web",
- "version": "7.5.x-dev",
- "source": {
- "type": "git",
- "url": "https://github.com/n2n/n2n-web.git",
- "reference": "b0040a9efd64155e07f2aa27b7ee51b12c1bd520"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/n2n/n2n-web/zipball/b0040a9efd64155e07f2aa27b7ee51b12c1bd520",
- "reference": "b0040a9efd64155e07f2aa27b7ee51b12c1bd520",
- "shasum": ""
- },
- "require": {
- "ext-mbstring": "*",
- "ext-simplexml": "*",
- "n2n/n2n": "~7.5.0",
- "n2n/n2n-cache": "~7.5.0",
- "n2n/n2n-composer-module-installer": "^7.1.6",
- "n2n/n2n-context": "~7.5.0",
- "n2n/n2n-l10n": "~7.5.0",
- "n2n/n2n-reflection": "~7.5.0",
- "n2n/n2n-spec-valobj": "~1.0.0",
- "n2n/n2n-util": "~7.5.0",
- "psr/http-factory": "^1",
- "psr/http-message": "^1|^2"
- },
- "require-dev": {
- "guzzlehttp/psr7": "^3.0",
- "n2n/n2n-test": "~7.5.0",
- "phpunit/phpunit": "^9.6.20"
- },
- "type": "n2n-module",
- "autoload": {
- "psr-4": {
- "n2n\\web\\": "src/app/n2n/web"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "LGPL-3.0-or-later"
- ],
- "authors": [
- {
- "name": "Andreas von Burg",
- "email": "a@von-burg.net",
- "homepage": "https://www.von-burg.net/",
- "role": "Developer"
- }
- ],
- "description": "n2n web",
- "homepage": "https://n2n.rocks/",
- "keywords": [
- "controler",
- "form api",
- "http",
- "n2n",
- "rest"
- ],
- "support": {
- "issues": "https://github.com/n2n/n2n-web/issues",
- "source": "https://github.com/n2n/n2n-web/tree/7.5.x"
- },
- "time": "2026-08-20T16:25:33+00:00"
- },
- {
- "name": "psr/cache",
- "version": "3.0.0",
- "source": {
- "type": "git",
- "url": "https://github.com/php-fig/cache.git",
- "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
- "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
- "shasum": ""
- },
- "require": {
- "php": ">=8.0.0"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.0.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Psr\\Cache\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "PHP-FIG",
- "homepage": "https://www.php-fig.org/"
- }
- ],
- "description": "Common interface for caching libraries",
- "keywords": [
- "cache",
- "psr",
- "psr-6"
- ],
- "support": {
- "source": "https://github.com/php-fig/cache/tree/3.0.0"
- },
- "time": "2021-02-03T23:26:27+00:00"
- },
- {
- "name": "psr/container",
- "version": "2.0.2",
- "source": {
- "type": "git",
- "url": "https://github.com/php-fig/container.git",
- "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
- "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
- "shasum": ""
- },
- "require": {
- "php": ">=7.4.0"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "2.0.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Psr\\Container\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "PHP-FIG",
- "homepage": "https://www.php-fig.org/"
- }
- ],
- "description": "Common Container Interface (PHP FIG PSR-11)",
- "homepage": "https://github.com/php-fig/container",
- "keywords": [
- "PSR-11",
- "container",
- "container-interface",
- "container-interop",
- "psr"
- ],
- "support": {
- "issues": "https://github.com/php-fig/container/issues",
- "source": "https://github.com/php-fig/container/tree/2.0.2"
- },
- "time": "2021-11-05T16:47:00+00:00"
- },
- {
- "name": "psr/http-factory",
- "version": "1.1.0",
- "source": {
- "type": "git",
- "url": "https://github.com/php-fig/http-factory.git",
- "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
- "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
- "shasum": ""
- },
- "require": {
- "php": ">=7.1",
- "psr/http-message": "^1.0 || ^2.0"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.0.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Psr\\Http\\Message\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "PHP-FIG",
- "homepage": "https://www.php-fig.org/"
- }
- ],
- "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
- "keywords": [
- "factory",
- "http",
- "message",
- "psr",
- "psr-17",
- "psr-7",
- "request",
- "response"
- ],
- "support": {
- "source": "https://github.com/php-fig/http-factory"
- },
- "time": "2024-04-15T12:06:14+00:00"
- },
- {
- "name": "psr/http-message",
- "version": "2.0",
- "source": {
- "type": "git",
- "url": "https://github.com/php-fig/http-message.git",
- "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
- "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
- "shasum": ""
- },
- "require": {
- "php": "^7.2 || ^8.0"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "2.0.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Psr\\Http\\Message\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "PHP-FIG",
- "homepage": "https://www.php-fig.org/"
- }
- ],
- "description": "Common interface for HTTP messages",
- "homepage": "https://github.com/php-fig/http-message",
- "keywords": [
- "http",
- "http-message",
- "psr",
- "psr-7",
- "request",
- "response"
- ],
- "support": {
- "source": "https://github.com/php-fig/http-message/tree/2.0"
- },
- "time": "2023-04-04T09:54:51+00:00"
- },
- {
- "name": "psr/simple-cache",
- "version": "3.0.0",
- "source": {
- "type": "git",
- "url": "https://github.com/php-fig/simple-cache.git",
- "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
- "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
- "shasum": ""
- },
- "require": {
- "php": ">=8.0.0"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "3.0.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Psr\\SimpleCache\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "PHP-FIG",
- "homepage": "https://www.php-fig.org/"
- }
- ],
- "description": "Common interfaces for simple caching",
- "keywords": [
- "cache",
- "caching",
- "psr",
- "psr-16",
- "simple-cache"
- ],
- "support": {
- "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
- },
- "time": "2021-10-29T13:26:27+00:00"
- }
- ],
- "packages-dev": [
- {
- "name": "doctrine/instantiator",
- "version": "2.1.0",
- "source": {
- "type": "git",
- "url": "https://github.com/doctrine/instantiator.git",
- "reference": "23da848e1a2308728fe5fdddabf4be17ff9720c7"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/doctrine/instantiator/zipball/23da848e1a2308728fe5fdddabf4be17ff9720c7",
- "reference": "23da848e1a2308728fe5fdddabf4be17ff9720c7",
- "shasum": ""
- },
- "require": {
- "php": "^8.4"
- },
- "require-dev": {
- "doctrine/coding-standard": "^14",
- "ext-pdo": "*",
- "ext-phar": "*",
- "phpbench/phpbench": "^1.2",
- "phpstan/phpstan": "^2.1",
- "phpstan/phpstan-phpunit": "^2.0",
- "phpunit/phpunit": "^10.5.58"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Marco Pivetta",
- "email": "ocramius@gmail.com",
- "homepage": "https://ocramius.github.io/"
- }
- ],
- "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
- "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
- "keywords": [
- "constructor",
- "instantiate"
- ],
- "support": {
- "issues": "https://github.com/doctrine/instantiator/issues",
- "source": "https://github.com/doctrine/instantiator/tree/2.1.0"
- },
- "funding": [
- {
- "url": "https://www.doctrine-project.org/sponsorship.html",
- "type": "custom"
- },
- {
- "url": "https://www.patreon.com/phpdoctrine",
- "type": "patreon"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
- "type": "tidelift"
- }
- ],
- "time": "2026-01-05T06:47:08+00:00"
- },
- {
- "name": "myclabs/deep-copy",
- "version": "1.14.0",
- "source": {
- "type": "git",
- "url": "https://github.com/myclabs/DeepCopy.git",
- "reference": "8680aa248f8e07bc8fb43f56f0f5fc77a0c96aae"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/8680aa248f8e07bc8fb43f56f0f5fc77a0c96aae",
- "reference": "8680aa248f8e07bc8fb43f56f0f5fc77a0c96aae",
- "shasum": ""
- },
- "require": {
- "php": "^8.0"
- },
- "conflict": {
- "doctrine/collections": "<1.6.8",
- "doctrine/common": "<2.13.3 || >=3 <3.2.2"
- },
- "require-dev": {
- "doctrine/collections": "^1.6.8",
- "doctrine/common": "^2.13.3 || ^3.2.2",
- "phpspec/prophecy": "^1.10",
- "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
- },
- "type": "library",
- "autoload": {
- "files": [
- "src/DeepCopy/deep_copy.php"
- ],
- "psr-4": {
- "DeepCopy\\": "src/DeepCopy/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "description": "Create deep copies (clones) of your objects",
- "keywords": [
- "clone",
- "copy",
- "duplicate",
- "object",
- "object graph"
- ],
- "support": {
- "issues": "https://github.com/myclabs/DeepCopy/issues",
- "source": "https://github.com/myclabs/DeepCopy/tree/1.14.0"
- },
- "funding": [
- {
- "url": "https://github.com/mnapoli",
- "type": "github"
- }
- ],
- "time": "2026-08-11T10:17:44+00:00"
- },
- {
- "name": "n2n/hangar",
- "version": "7.5.x-dev",
- "source": {
- "type": "git",
- "url": "https://github.com/n2n/hangar.git",
- "reference": "1ec2fd671fe888fc6ba516638d2e225a9171ecb1"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/n2n/hangar/zipball/1ec2fd671fe888fc6ba516638d2e225a9171ecb1",
- "reference": "1ec2fd671fe888fc6ba516638d2e225a9171ecb1",
- "shasum": ""
- },
- "require": {
- "n2n/hangar-api": "^2",
- "n2n/n2n": "^7.2.33",
- "n2n/n2n-context": "^7.2.33",
- "n2n/n2n-impl-web-dispatch": "^7.2.33",
- "n2n/n2n-impl-web-ui": "^7.2.33",
- "n2n/n2n-mail": "^7.2.33",
- "n2n/n2n-persistence": "^7.2.33",
- "n2n/n2n-web": "^7.2.33",
- "n2n/phpbob": "^1.0.7",
- "php": ">=7.0"
- },
- "bin": [
- "bin/hangar"
- ],
- "type": "library",
- "notification-url": "https://packagist.org/downloads/",
- "authors": [
- {
- "name": "Thomas Günther",
- "email": "guenther@hnm.ch",
- "homepage": "https://www.hnm.ch/"
- }
- ],
- "description": "hangar",
- "homepage": "http://n2n.rocks/",
- "keywords": [
- "hangar",
- "n2n"
- ],
- "support": {
- "issues": "https://github.com/n2n/hangar/issues",
- "source": "https://github.com/n2n/hangar/tree/7.5.x"
- },
- "time": "2026-07-14T06:33:09+00:00"
- },
- {
- "name": "n2n/hangar-api",
- "version": "2.0.x-dev",
- "source": {
- "type": "git",
- "url": "https://github.com/n2n/hangar-api.git",
- "reference": "f1b44189abf4fd7bc37ef7f0388fffecb89ff40b"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/n2n/hangar-api/zipball/f1b44189abf4fd7bc37ef7f0388fffecb89ff40b",
- "reference": "f1b44189abf4fd7bc37ef7f0388fffecb89ff40b",
- "shasum": ""
- },
- "require": {
- "n2n/n2n-persistence": "^7.4",
- "n2n/n2n-reflection": "^7.4",
- "n2n/n2n-spec-dbo": "^1",
- "n2n/n2n-util": "^7.4",
- "n2n/n2n-web": "^7.4.1",
- "n2n/phpbob": "^1.0.7"
- },
- "require-dev": {
- "phpunit/phpunit": "^9.5"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "hangar\\api\\": "src/app/hangar/api"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "GPL-3.0-or-later"
- ],
- "authors": [
- {
- "name": "Thomas Günther",
- "email": "guenther@hnm.ch",
- "homepage": "https://www.hnm.ch/"
- }
- ],
- "description": "hangar api interfaces",
- "homepage": "https://n2n.rocks/",
- "keywords": [
- "hangar",
- "n2n"
- ],
- "support": {
- "issues": "https://github.com/n2n/hangar-api/issues",
- "source": "https://github.com/n2n/hangar-api/tree/2.0.x"
- },
- "time": "2026-07-31T08:02:08+00:00"
- },
- {
- "name": "n2n/n2n-test",
- "version": "7.5.x-dev",
- "source": {
- "type": "git",
- "url": "https://github.com/n2n/n2n-test.git",
- "reference": "f9e50d86d83b159906c7e53f4b4b075db40745d4"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/n2n/n2n-test/zipball/f9e50d86d83b159906c7e53f4b4b075db40745d4",
- "reference": "f9e50d86d83b159906c7e53f4b4b075db40745d4",
- "shasum": ""
- },
- "require": {
- "ext-fileinfo": "*",
- "n2n/n2n-util": "^7.2.33"
- },
- "require-dev": {
- "n2n/n2n": "~7.5.0",
- "n2n/n2n-batch": "~7.5.0",
- "n2n/n2n-impl-persistence-meta": "~7.5.0",
- "n2n/n2n-impl-persistence-orm": "~7.5.0",
- "n2n/n2n-persistence": "~7.5.0",
- "n2n/n2n-web": "~7.5.0",
- "phpunit/phpunit": "^9.6.11"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "n2n\\test\\": "src/app/n2n/test"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "LGPL-3.0-or-later"
- ],
- "authors": [
- {
- "name": "Andreas von Burg",
- "email": "a@von-burg.net",
- "homepage": "https://www.von-burg.net/",
- "role": "Developer"
- }
- ],
- "description": "n2n test utils",
- "homepage": "http://n2n.rocks/",
- "keywords": [
- "n2n",
- "test",
- "utils"
- ],
- "support": {
- "issues": "https://github.com/n2n/n2n-test/issues",
- "source": "https://github.com/n2n/n2n-test/tree/7.5.x"
- },
- "time": "2026-06-10T14:00:12+00:00"
- },
- {
- "name": "n2n/phpbob",
- "version": "v1.0.9",
- "source": {
- "type": "git",
- "url": "https://github.com/n2n/phpbob.git",
- "reference": "d227c9e33097aeb611bea2851fe8a56e789a65f7"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/n2n/phpbob/zipball/d227c9e33097aeb611bea2851fe8a56e789a65f7",
- "reference": "d227c9e33097aeb611bea2851fe8a56e789a65f7",
- "shasum": ""
- },
- "require": {
- "n2n/n2n-reflection": "^7.2.33",
- "n2n/n2n-util": "^7.2.33"
- },
- "require-dev": {
- "phpunit/phpunit": "^9.5"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "phpbob\\": "src/app/phpbob"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "GPL-3.0-or-later"
- ],
- "authors": [
- {
- "name": "Thomas Günther",
- "email": "guenther@hnm.ch",
- "homepage": "https://www.hnm.ch/"
- }
- ],
- "description": "n2n php representation builder",
- "homepage": "https://n2n.rocks/",
- "keywords": [
- "n2n",
- "phpbob"
- ],
- "support": {
- "issues": "https://github.com/n2n/phpbob/issues",
- "source": "https://github.com/n2n/phpbob/tree/v1.0.9"
- },
- "time": "2026-07-15T15:39:07+00:00"
- },
- {
- "name": "nikic/php-parser",
- "version": "v5.8.0",
- "source": {
- "type": "git",
- "url": "https://github.com/nikic/PHP-Parser.git",
- "reference": "044a6a392ff8ad0d61f14370a5fbbd0a0107152f"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/044a6a392ff8ad0d61f14370a5fbbd0a0107152f",
- "reference": "044a6a392ff8ad0d61f14370a5fbbd0a0107152f",
- "shasum": ""
- },
- "require": {
- "ext-json": "*",
- "ext-tokenizer": "*",
- "php": ">=7.4"
- },
- "require-dev": {
- "ircmaxell/php-yacc": "^0.0.7",
- "phpunit/phpunit": "^9.0"
- },
- "bin": [
- "bin/php-parse"
- ],
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "5.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "PhpParser\\": "lib/PhpParser"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Nikita Popov"
- }
- ],
- "description": "A PHP parser written in PHP",
- "keywords": [
- "parser",
- "php"
- ],
- "support": {
- "issues": "https://github.com/nikic/PHP-Parser/issues",
- "source": "https://github.com/nikic/PHP-Parser/tree/v5.8.0"
- },
- "time": "2026-07-04T14:30:18+00:00"
- },
- {
- "name": "phar-io/manifest",
- "version": "2.0.4",
- "source": {
- "type": "git",
- "url": "https://github.com/phar-io/manifest.git",
- "reference": "54750ef60c58e43759730615a392c31c80e23176"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
- "reference": "54750ef60c58e43759730615a392c31c80e23176",
- "shasum": ""
- },
- "require": {
- "ext-dom": "*",
- "ext-libxml": "*",
- "ext-phar": "*",
- "ext-xmlwriter": "*",
- "phar-io/version": "^3.0.1",
- "php": "^7.2 || ^8.0"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "2.0.x-dev"
- }
- },
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Arne Blankerts",
- "email": "arne@blankerts.de",
- "role": "Developer"
- },
- {
- "name": "Sebastian Heuer",
- "email": "sebastian@phpeople.de",
- "role": "Developer"
- },
- {
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de",
- "role": "Developer"
- }
- ],
- "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
- "support": {
- "issues": "https://github.com/phar-io/manifest/issues",
- "source": "https://github.com/phar-io/manifest/tree/2.0.4"
- },
- "funding": [
- {
- "url": "https://github.com/theseer",
- "type": "github"
- }
- ],
- "time": "2024-03-03T12:33:53+00:00"
- },
- {
- "name": "phar-io/version",
- "version": "3.2.1",
- "source": {
- "type": "git",
- "url": "https://github.com/phar-io/version.git",
- "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
- "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
- "shasum": ""
- },
- "require": {
- "php": "^7.2 || ^8.0"
- },
- "type": "library",
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Arne Blankerts",
- "email": "arne@blankerts.de",
- "role": "Developer"
- },
- {
- "name": "Sebastian Heuer",
- "email": "sebastian@phpeople.de",
- "role": "Developer"
- },
- {
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de",
- "role": "Developer"
- }
- ],
- "description": "Library for handling version information and constraints",
- "support": {
- "issues": "https://github.com/phar-io/version/issues",
- "source": "https://github.com/phar-io/version/tree/3.2.1"
- },
- "time": "2022-02-21T01:04:05+00:00"
- },
- {
- "name": "phpunit/php-code-coverage",
- "version": "9.2.32",
- "source": {
- "type": "git",
- "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
- "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/85402a822d1ecf1db1096959413d35e1c37cf1a5",
- "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5",
- "shasum": ""
- },
- "require": {
- "ext-dom": "*",
- "ext-libxml": "*",
- "ext-xmlwriter": "*",
- "nikic/php-parser": "^4.19.1 || ^5.1.0",
- "php": ">=7.3",
- "phpunit/php-file-iterator": "^3.0.6",
- "phpunit/php-text-template": "^2.0.4",
- "sebastian/code-unit-reverse-lookup": "^2.0.3",
- "sebastian/complexity": "^2.0.3",
- "sebastian/environment": "^5.1.5",
- "sebastian/lines-of-code": "^1.0.4",
- "sebastian/version": "^3.0.2",
- "theseer/tokenizer": "^1.2.3"
- },
- "require-dev": {
- "phpunit/phpunit": "^9.6"
- },
- "suggest": {
- "ext-pcov": "PHP extension that provides line coverage",
- "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "9.2.x-dev"
- }
- },
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de",
- "role": "lead"
- }
- ],
- "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
- "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
- "keywords": [
- "coverage",
- "testing",
- "xunit"
- ],
- "support": {
- "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
- "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
- "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.32"
- },
- "funding": [
- {
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
- }
- ],
- "time": "2024-08-22T04:23:01+00:00"
- },
- {
- "name": "phpunit/php-file-iterator",
- "version": "3.0.6",
- "source": {
- "type": "git",
- "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
- "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
- "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
- "shasum": ""
- },
- "require": {
- "php": ">=7.3"
- },
- "require-dev": {
- "phpunit/phpunit": "^9.3"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "3.0-dev"
- }
- },
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de",
- "role": "lead"
- }
- ],
- "description": "FilterIterator implementation that filters files based on a list of suffixes.",
- "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
- "keywords": [
- "filesystem",
- "iterator"
- ],
- "support": {
- "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
- "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
- },
- "funding": [
- {
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
- }
- ],
- "time": "2021-12-02T12:48:52+00:00"
- },
- {
- "name": "phpunit/php-invoker",
- "version": "3.1.1",
- "source": {
- "type": "git",
- "url": "https://github.com/sebastianbergmann/php-invoker.git",
- "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
- "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
- "shasum": ""
- },
- "require": {
- "php": ">=7.3"
- },
- "require-dev": {
- "ext-pcntl": "*",
- "phpunit/phpunit": "^9.3"
- },
- "suggest": {
- "ext-pcntl": "*"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "3.1-dev"
- }
- },
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de",
- "role": "lead"
- }
- ],
- "description": "Invoke callables with a timeout",
- "homepage": "https://github.com/sebastianbergmann/php-invoker/",
- "keywords": [
- "process"
- ],
- "support": {
- "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
- "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
- },
- "funding": [
- {
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
- }
- ],
- "time": "2020-09-28T05:58:55+00:00"
- },
- {
- "name": "phpunit/php-text-template",
- "version": "2.0.4",
- "source": {
- "type": "git",
- "url": "https://github.com/sebastianbergmann/php-text-template.git",
- "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
- "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
- "shasum": ""
- },
- "require": {
- "php": ">=7.3"
- },
- "require-dev": {
- "phpunit/phpunit": "^9.3"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "2.0-dev"
- }
- },
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de",
- "role": "lead"
- }
- ],
- "description": "Simple template engine.",
- "homepage": "https://github.com/sebastianbergmann/php-text-template/",
- "keywords": [
- "template"
- ],
- "support": {
- "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
- "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
- },
- "funding": [
- {
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
- }
- ],
- "time": "2020-10-26T05:33:50+00:00"
- },
- {
- "name": "phpunit/php-timer",
- "version": "5.0.3",
- "source": {
- "type": "git",
- "url": "https://github.com/sebastianbergmann/php-timer.git",
- "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
- "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
- "shasum": ""
- },
- "require": {
- "php": ">=7.3"
- },
- "require-dev": {
- "phpunit/phpunit": "^9.3"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "5.0-dev"
- }
- },
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de",
- "role": "lead"
- }
- ],
- "description": "Utility class for timing",
- "homepage": "https://github.com/sebastianbergmann/php-timer/",
- "keywords": [
- "timer"
- ],
- "support": {
- "issues": "https://github.com/sebastianbergmann/php-timer/issues",
- "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
- },
- "funding": [
- {
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
- }
- ],
- "time": "2020-10-26T13:16:10+00:00"
- },
- {
- "name": "phpunit/phpunit",
- "version": "9.6.36",
- "source": {
- "type": "git",
- "url": "https://github.com/sebastianbergmann/phpunit.git",
- "reference": "abab27ed286d3e1246fbbfe6b56bfd732d945ec9"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/abab27ed286d3e1246fbbfe6b56bfd732d945ec9",
- "reference": "abab27ed286d3e1246fbbfe6b56bfd732d945ec9",
- "shasum": ""
- },
- "require": {
- "doctrine/instantiator": "^1.5.0 || ^2",
- "ext-dom": "*",
- "ext-filter": "*",
- "ext-json": "*",
- "ext-libxml": "*",
- "ext-mbstring": "*",
- "ext-xmlwriter": "*",
- "myclabs/deep-copy": "^1.13.4",
- "phar-io/manifest": "^2.0.4",
- "phar-io/version": "^3.2.1",
- "php": ">=7.3",
- "phpunit/php-code-coverage": "^9.2.32",
- "phpunit/php-file-iterator": "^3.0.6",
- "phpunit/php-invoker": "^3.1.1",
- "phpunit/php-text-template": "^2.0.4",
- "phpunit/php-timer": "^5.0.3",
- "sebastian/cli-parser": "^1.0.2",
- "sebastian/code-unit": "^1.0.8",
- "sebastian/comparator": "^4.0.10",
- "sebastian/diff": "^4.0.6",
- "sebastian/environment": "^5.1.5",
- "sebastian/exporter": "^4.0.9",
- "sebastian/global-state": "^5.0.8",
- "sebastian/object-enumerator": "^4.0.4",
- "sebastian/resource-operations": "^3.0.4",
- "sebastian/type": "^3.2.1",
- "sebastian/version": "^3.0.2"
- },
- "suggest": {
- "ext-soap": "To be able to generate mocks based on WSDL files",
- "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
- },
- "bin": [
- "phpunit"
- ],
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "9.6-dev"
- }
- },
- "autoload": {
- "files": [
- "src/Framework/Assert/Functions.php"
- ],
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de",
- "role": "lead"
- }
- ],
- "description": "The PHP Unit Testing framework.",
- "homepage": "https://phpunit.de/",
- "keywords": [
- "phpunit",
- "testing",
- "xunit"
- ],
- "support": {
- "issues": "https://github.com/sebastianbergmann/phpunit/issues",
- "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
- "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.36"
- },
- "funding": [
- {
- "url": "https://phpunit.de/sponsoring.html",
- "type": "other"
- }
- ],
- "time": "2026-08-11T06:25:15+00:00"
- },
- {
- "name": "sebastian/cli-parser",
- "version": "1.0.2",
- "source": {
- "type": "git",
- "url": "https://github.com/sebastianbergmann/cli-parser.git",
- "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
- "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
- "shasum": ""
- },
- "require": {
- "php": ">=7.3"
- },
- "require-dev": {
- "phpunit/phpunit": "^9.3"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.0-dev"
- }
- },
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de",
- "role": "lead"
- }
- ],
- "description": "Library for parsing CLI options",
- "homepage": "https://github.com/sebastianbergmann/cli-parser",
- "support": {
- "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
- "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.2"
- },
- "funding": [
- {
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
- }
- ],
- "time": "2024-03-02T06:27:43+00:00"
- },
- {
- "name": "sebastian/code-unit",
- "version": "1.0.8",
- "source": {
- "type": "git",
- "url": "https://github.com/sebastianbergmann/code-unit.git",
- "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
- "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
- "shasum": ""
- },
- "require": {
- "php": ">=7.3"
- },
- "require-dev": {
- "phpunit/phpunit": "^9.3"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.0-dev"
- }
- },
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de",
- "role": "lead"
- }
- ],
- "description": "Collection of value objects that represent the PHP code units",
- "homepage": "https://github.com/sebastianbergmann/code-unit",
- "support": {
- "issues": "https://github.com/sebastianbergmann/code-unit/issues",
- "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
- },
- "funding": [
- {
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
- }
- ],
- "time": "2020-10-26T13:08:54+00:00"
- },
- {
- "name": "sebastian/code-unit-reverse-lookup",
- "version": "2.0.3",
- "source": {
- "type": "git",
- "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
- "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
- "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
- "shasum": ""
- },
- "require": {
- "php": ">=7.3"
- },
- "require-dev": {
- "phpunit/phpunit": "^9.3"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "2.0-dev"
- }
- },
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de"
- }
- ],
- "description": "Looks up which function or method a line of code belongs to",
- "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
- "support": {
- "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
- "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
- },
- "funding": [
- {
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
- }
- ],
- "time": "2020-09-28T05:30:19+00:00"
- },
- {
- "name": "sebastian/comparator",
- "version": "4.0.10",
- "source": {
- "type": "git",
- "url": "https://github.com/sebastianbergmann/comparator.git",
- "reference": "e4df00b9b3571187db2831ae9aada2c6efbd715d"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/e4df00b9b3571187db2831ae9aada2c6efbd715d",
- "reference": "e4df00b9b3571187db2831ae9aada2c6efbd715d",
- "shasum": ""
- },
- "require": {
- "php": ">=7.3",
- "sebastian/diff": "^4.0",
- "sebastian/exporter": "^4.0"
- },
- "require-dev": {
- "phpunit/phpunit": "^9.3"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "4.0-dev"
- }
- },
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de"
- },
- {
- "name": "Jeff Welch",
- "email": "whatthejeff@gmail.com"
- },
- {
- "name": "Volker Dusch",
- "email": "github@wallbash.com"
- },
- {
- "name": "Bernhard Schussek",
- "email": "bschussek@2bepublished.at"
- }
- ],
- "description": "Provides the functionality to compare PHP values for equality",
- "homepage": "https://github.com/sebastianbergmann/comparator",
- "keywords": [
- "comparator",
- "compare",
- "equality"
- ],
- "support": {
- "issues": "https://github.com/sebastianbergmann/comparator/issues",
- "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.10"
- },
- "funding": [
- {
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
- },
- {
- "url": "https://liberapay.com/sebastianbergmann",
- "type": "liberapay"
- },
- {
- "url": "https://thanks.dev/u/gh/sebastianbergmann",
- "type": "thanks_dev"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/sebastian/comparator",
- "type": "tidelift"
- }
- ],
- "time": "2026-01-24T09:22:56+00:00"
- },
- {
- "name": "sebastian/complexity",
- "version": "2.0.3",
- "source": {
- "type": "git",
- "url": "https://github.com/sebastianbergmann/complexity.git",
- "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a",
- "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a",
- "shasum": ""
- },
- "require": {
- "nikic/php-parser": "^4.18 || ^5.0",
- "php": ">=7.3"
- },
- "require-dev": {
- "phpunit/phpunit": "^9.3"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "2.0-dev"
- }
- },
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de",
- "role": "lead"
- }
- ],
- "description": "Library for calculating the complexity of PHP code units",
- "homepage": "https://github.com/sebastianbergmann/complexity",
- "support": {
- "issues": "https://github.com/sebastianbergmann/complexity/issues",
- "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.3"
- },
- "funding": [
- {
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
- }
- ],
- "time": "2023-12-22T06:19:30+00:00"
- },
- {
- "name": "sebastian/diff",
- "version": "4.0.6",
- "source": {
- "type": "git",
- "url": "https://github.com/sebastianbergmann/diff.git",
- "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc",
- "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc",
- "shasum": ""
- },
- "require": {
- "php": ">=7.3"
- },
- "require-dev": {
- "phpunit/phpunit": "^9.3",
- "symfony/process": "^4.2 || ^5"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "4.0-dev"
- }
- },
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de"
- },
- {
- "name": "Kore Nordmann",
- "email": "mail@kore-nordmann.de"
- }
- ],
- "description": "Diff implementation",
- "homepage": "https://github.com/sebastianbergmann/diff",
- "keywords": [
- "diff",
- "udiff",
- "unidiff",
- "unified diff"
- ],
- "support": {
- "issues": "https://github.com/sebastianbergmann/diff/issues",
- "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6"
- },
- "funding": [
- {
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
- }
- ],
- "time": "2024-03-02T06:30:58+00:00"
- },
- {
- "name": "sebastian/environment",
- "version": "5.1.5",
- "source": {
- "type": "git",
- "url": "https://github.com/sebastianbergmann/environment.git",
- "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
- "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
- "shasum": ""
- },
- "require": {
- "php": ">=7.3"
- },
- "require-dev": {
- "phpunit/phpunit": "^9.3"
- },
- "suggest": {
- "ext-posix": "*"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "5.1-dev"
- }
- },
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de"
- }
- ],
- "description": "Provides functionality to handle HHVM/PHP environments",
- "homepage": "http://www.github.com/sebastianbergmann/environment",
- "keywords": [
- "Xdebug",
- "environment",
- "hhvm"
- ],
- "support": {
- "issues": "https://github.com/sebastianbergmann/environment/issues",
- "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
- },
- "funding": [
- {
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
- }
- ],
- "time": "2023-02-03T06:03:51+00:00"
- },
- {
- "name": "sebastian/exporter",
- "version": "4.0.9",
- "source": {
- "type": "git",
- "url": "https://github.com/sebastianbergmann/exporter.git",
- "reference": "4352c1a3df741a7ba9e61af6fed51d1fee41cbf7"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/4352c1a3df741a7ba9e61af6fed51d1fee41cbf7",
- "reference": "4352c1a3df741a7ba9e61af6fed51d1fee41cbf7",
- "shasum": ""
- },
- "require": {
- "php": ">=7.3",
- "sebastian/recursion-context": "^4.0"
- },
- "require-dev": {
- "ext-mbstring": "*",
- "phpunit/phpunit": "^9.3"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "4.0-dev"
- }
- },
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de"
- },
- {
- "name": "Jeff Welch",
- "email": "whatthejeff@gmail.com"
- },
- {
- "name": "Volker Dusch",
- "email": "github@wallbash.com"
- },
- {
- "name": "Adam Harvey",
- "email": "aharvey@php.net"
- },
- {
- "name": "Bernhard Schussek",
- "email": "bschussek@gmail.com"
- }
- ],
- "description": "Provides the functionality to export PHP variables for visualization",
- "homepage": "https://www.github.com/sebastianbergmann/exporter",
- "keywords": [
- "export",
- "exporter"
- ],
- "support": {
- "issues": "https://github.com/sebastianbergmann/exporter/issues",
- "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.9"
- },
- "funding": [
- {
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
- },
- {
- "url": "https://liberapay.com/sebastianbergmann",
- "type": "liberapay"
- },
- {
- "url": "https://thanks.dev/u/gh/sebastianbergmann",
- "type": "thanks_dev"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/sebastian/exporter",
- "type": "tidelift"
- }
- ],
- "time": "2026-08-11T04:55:59+00:00"
- },
- {
- "name": "sebastian/global-state",
- "version": "5.0.8",
- "source": {
- "type": "git",
- "url": "https://github.com/sebastianbergmann/global-state.git",
- "reference": "b6781316bdcd28260904e7cc18ec983d0d2ef4f6"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/b6781316bdcd28260904e7cc18ec983d0d2ef4f6",
- "reference": "b6781316bdcd28260904e7cc18ec983d0d2ef4f6",
- "shasum": ""
- },
- "require": {
- "php": ">=7.3",
- "sebastian/object-reflector": "^2.0",
- "sebastian/recursion-context": "^4.0"
- },
- "require-dev": {
- "ext-dom": "*",
- "phpunit/phpunit": "^9.3"
- },
- "suggest": {
- "ext-uopz": "*"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "5.0-dev"
- }
- },
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de"
- }
- ],
- "description": "Snapshotting of global state",
- "homepage": "http://www.github.com/sebastianbergmann/global-state",
- "keywords": [
- "global state"
- ],
- "support": {
- "issues": "https://github.com/sebastianbergmann/global-state/issues",
- "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.8"
- },
- "funding": [
- {
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
- },
- {
- "url": "https://liberapay.com/sebastianbergmann",
- "type": "liberapay"
- },
- {
- "url": "https://thanks.dev/u/gh/sebastianbergmann",
- "type": "thanks_dev"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/sebastian/global-state",
- "type": "tidelift"
- }
- ],
- "time": "2025-08-10T07:10:35+00:00"
- },
- {
- "name": "sebastian/lines-of-code",
- "version": "1.0.4",
- "source": {
- "type": "git",
- "url": "https://github.com/sebastianbergmann/lines-of-code.git",
- "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5",
- "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5",
- "shasum": ""
- },
- "require": {
- "nikic/php-parser": "^4.18 || ^5.0",
- "php": ">=7.3"
- },
- "require-dev": {
- "phpunit/phpunit": "^9.3"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.0-dev"
- }
- },
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de",
- "role": "lead"
- }
- ],
- "description": "Library for counting the lines of code in PHP source code",
- "homepage": "https://github.com/sebastianbergmann/lines-of-code",
- "support": {
- "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
- "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.4"
- },
- "funding": [
- {
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
- }
- ],
- "time": "2023-12-22T06:20:34+00:00"
- },
- {
- "name": "sebastian/object-enumerator",
- "version": "4.0.4",
- "source": {
- "type": "git",
- "url": "https://github.com/sebastianbergmann/object-enumerator.git",
- "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
- "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
- "shasum": ""
- },
- "require": {
- "php": ">=7.3",
- "sebastian/object-reflector": "^2.0",
- "sebastian/recursion-context": "^4.0"
- },
- "require-dev": {
- "phpunit/phpunit": "^9.3"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "4.0-dev"
- }
- },
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de"
- }
- ],
- "description": "Traverses array structures and object graphs to enumerate all referenced objects",
- "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
- "support": {
- "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
- "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
- },
- "funding": [
- {
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
- }
- ],
- "time": "2020-10-26T13:12:34+00:00"
- },
- {
- "name": "sebastian/object-reflector",
- "version": "2.0.4",
- "source": {
- "type": "git",
- "url": "https://github.com/sebastianbergmann/object-reflector.git",
- "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
- "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
- "shasum": ""
- },
- "require": {
- "php": ">=7.3"
- },
- "require-dev": {
- "phpunit/phpunit": "^9.3"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "2.0-dev"
- }
- },
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de"
- }
- ],
- "description": "Allows reflection of object attributes, including inherited and non-public ones",
- "homepage": "https://github.com/sebastianbergmann/object-reflector/",
- "support": {
- "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
- "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
- },
- "funding": [
- {
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
- }
- ],
- "time": "2020-10-26T13:14:26+00:00"
- },
- {
- "name": "sebastian/recursion-context",
- "version": "4.0.7",
- "source": {
- "type": "git",
- "url": "https://github.com/sebastianbergmann/recursion-context.git",
- "reference": "c85be6922b7fd365942b986b9a50397d65407611"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/c85be6922b7fd365942b986b9a50397d65407611",
- "reference": "c85be6922b7fd365942b986b9a50397d65407611",
- "shasum": ""
- },
- "require": {
- "php": ">=7.3"
- },
- "require-dev": {
- "phpunit/phpunit": "^9.3"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "4.0-dev"
- }
- },
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de"
- },
- {
- "name": "Jeff Welch",
- "email": "whatthejeff@gmail.com"
- },
- {
- "name": "Adam Harvey",
- "email": "aharvey@php.net"
- }
- ],
- "description": "Provides functionality to recursively process PHP variables",
- "homepage": "https://github.com/sebastianbergmann/recursion-context",
- "support": {
- "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
- "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.7"
- },
- "funding": [
- {
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
- },
- {
- "url": "https://liberapay.com/sebastianbergmann",
- "type": "liberapay"
- },
- {
- "url": "https://thanks.dev/u/gh/sebastianbergmann",
- "type": "thanks_dev"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/sebastian/recursion-context",
- "type": "tidelift"
- }
- ],
- "time": "2026-08-11T05:25:24+00:00"
- },
- {
- "name": "sebastian/resource-operations",
- "version": "3.0.4",
- "source": {
- "type": "git",
- "url": "https://github.com/sebastianbergmann/resource-operations.git",
- "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
- "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
- "shasum": ""
- },
- "require": {
- "php": ">=7.3"
- },
- "require-dev": {
- "phpunit/phpunit": "^9.0"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "3.0-dev"
- }
- },
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de"
- }
- ],
- "description": "Provides a list of PHP built-in functions that operate on resources",
- "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
- "support": {
- "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.4"
- },
- "funding": [
- {
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
- }
- ],
- "time": "2024-03-14T16:00:52+00:00"
- },
- {
- "name": "sebastian/type",
- "version": "3.2.1",
- "source": {
- "type": "git",
- "url": "https://github.com/sebastianbergmann/type.git",
- "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
- "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
- "shasum": ""
- },
- "require": {
- "php": ">=7.3"
- },
- "require-dev": {
- "phpunit/phpunit": "^9.5"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "3.2-dev"
- }
- },
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de",
- "role": "lead"
- }
- ],
- "description": "Collection of value objects that represent the types of the PHP type system",
- "homepage": "https://github.com/sebastianbergmann/type",
- "support": {
- "issues": "https://github.com/sebastianbergmann/type/issues",
- "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
- },
- "funding": [
- {
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
- }
- ],
- "time": "2023-02-03T06:13:03+00:00"
- },
- {
- "name": "sebastian/version",
- "version": "3.0.2",
- "source": {
- "type": "git",
- "url": "https://github.com/sebastianbergmann/version.git",
- "reference": "c6c1022351a901512170118436c764e473f6de8c"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
- "reference": "c6c1022351a901512170118436c764e473f6de8c",
- "shasum": ""
- },
- "require": {
- "php": ">=7.3"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "3.0-dev"
- }
- },
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de",
- "role": "lead"
- }
- ],
- "description": "Library that helps with managing the version number of Git-hosted PHP projects",
- "homepage": "https://github.com/sebastianbergmann/version",
- "support": {
- "issues": "https://github.com/sebastianbergmann/version/issues",
- "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
- },
- "funding": [
- {
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
- }
- ],
- "time": "2020-09-28T06:39:44+00:00"
- },
- {
- "name": "theseer/tokenizer",
- "version": "1.3.1",
- "source": {
- "type": "git",
- "url": "https://github.com/theseer/tokenizer.git",
- "reference": "b7489ce515e168639d17feec34b8847c326b0b3c"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/theseer/tokenizer/zipball/b7489ce515e168639d17feec34b8847c326b0b3c",
- "reference": "b7489ce515e168639d17feec34b8847c326b0b3c",
- "shasum": ""
- },
- "require": {
- "ext-dom": "*",
- "ext-tokenizer": "*",
- "ext-xmlwriter": "*",
- "php": "^7.2 || ^8.0"
- },
- "type": "library",
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Arne Blankerts",
- "email": "arne@blankerts.de",
- "role": "Developer"
- }
- ],
- "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
- "support": {
- "issues": "https://github.com/theseer/tokenizer/issues",
- "source": "https://github.com/theseer/tokenizer/tree/1.3.1"
- },
- "funding": [
- {
- "url": "https://github.com/theseer",
- "type": "github"
- }
- ],
- "time": "2025-11-17T20:03:58+00:00"
- }
- ],
- "aliases": [],
- "minimum-stability": "dev",
- "stability-flags": {},
- "prefer-stable": true,
- "prefer-lowest": false,
- "platform": {},
- "platform-dev": {},
- "plugin-api-version": "2.9.0"
- }
|