| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528 |
- {
- "_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": "985252d6b07c955f7f4b5edac3663be4",
- "packages": [
- {
- "name": "n2n/n2n",
- "version": "v7.4.4",
- "source": {
- "type": "git",
- "url": "https://github.com/n2n/n2n.git",
- "reference": "7ab4aa9e5fab166429d7921ffd9fc50e9a78255c"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/n2n/n2n/zipball/7ab4aa9e5fab166429d7921ffd9fc50e9a78255c",
- "reference": "7ab4aa9e5fab166429d7921ffd9fc50e9a78255c",
- "shasum": ""
- },
- "require": {
- "ext-mbstring": "*",
- "n2n/n2n-composer-module-installer": "^7.1.5",
- "n2n/n2n-config": "~7.4",
- "n2n/n2n-context": "~7.4",
- "n2n/n2n-l10n": "~7.4",
- "n2n/n2n-log4php": "~7.4",
- "n2n/n2n-reflection": "~7.4",
- "n2n/n2n-util": "~7.4.3"
- },
- "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": "http://www.hnm.ch"
- },
- {
- "name": "Thomas Günther",
- "email": "guenther@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/v7.4.4"
- },
- "time": "2025-10-30T16:41:10+00:00"
- },
- {
- "name": "n2n/n2n-batch",
- "version": "v7.4.0",
- "source": {
- "type": "git",
- "url": "https://github.com/n2n/n2n-batch.git",
- "reference": "5731bbfd1c30c650a2d39d4e1c28656a732be846"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/n2n/n2n-batch/zipball/5731bbfd1c30c650a2d39d4e1c28656a732be846",
- "reference": "5731bbfd1c30c650a2d39d4e1c28656a732be846",
- "shasum": ""
- },
- "require": {
- "n2n/n2n": "~7.4",
- "n2n/n2n-reflection": "~7.4",
- "n2n/n2n-util": "~7.4"
- },
- "require-dev": {
- "phpunit/phpunit": "^9.5"
- },
- "type": "library",
- "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/v7.4.0"
- },
- "time": "2024-12-04T10:36:13+00:00"
- },
- {
- "name": "n2n/n2n-bind",
- "version": "v7.4.5",
- "source": {
- "type": "git",
- "url": "https://github.com/n2n/n2n-bind.git",
- "reference": "0f45991335bb15037ee42db4785737016d1945d2"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/n2n/n2n-bind/zipball/0f45991335bb15037ee42db4785737016d1945d2",
- "reference": "0f45991335bb15037ee42db4785737016d1945d2",
- "shasum": ""
- },
- "require": {
- "ext-ctype": "*",
- "ext-mbstring": "*",
- "n2n/n2n-reflection": "~7.4.1",
- "n2n/n2n-spec-valobj": "~1.0",
- "n2n/n2n-util": "~7.4.5",
- "n2n/n2n-validation": "~7.4.2"
- },
- "require-dev": {
- "phpunit/phpunit": "^9.6"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "n2n\\bind\\": "src/app/n2n/bind"
- }
- },
- "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": "bind/json support for n2n framework",
- "homepage": "https://n2n.rocks/",
- "keywords": [
- "batch job",
- "n2n"
- ],
- "support": {
- "issues": "https://github.com/n2n/n2n-bind/issues",
- "source": "https://github.com/n2n/n2n-bind/tree/v7.4.5"
- },
- "time": "2025-10-30T13:14:26+00:00"
- },
- {
- "name": "n2n/n2n-cache",
- "version": "v7.4.0",
- "source": {
- "type": "git",
- "url": "https://github.com/n2n/n2n-cache.git",
- "reference": "67777b392a6e65b81e1934380c27251da13f48f4"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/n2n/n2n-cache/zipball/67777b392a6e65b81e1934380c27251da13f48f4",
- "reference": "67777b392a6e65b81e1934380c27251da13f48f4",
- "shasum": ""
- },
- "require": {
- "n2n/n2n-concurrency": "~7.4",
- "n2n/n2n-spec-dbo": "~1.0",
- "n2n/n2n-util": "~7.4",
- "php": ">=8.1",
- "psr/cache": "^3.0",
- "psr/simple-cache": "^3.0"
- },
- "require-dev": {
- "ext-ctype": "*",
- "ext-mbstring": "*",
- "n2n/n2n-impl-persistence-meta": "^7.4",
- "n2n/n2n-test": "^7.4",
- "phpunit/phpunit": "^9.6.19"
- },
- "suggest": {
- "ext-igbinary": "*"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "7.4.x-dev",
- "dev-develop": "7.4.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/v7.4.0"
- },
- "time": "2025-03-11T08:44:00+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": "v7.4.1",
- "source": {
- "type": "git",
- "url": "https://github.com/n2n/n2n-concurrency.git",
- "reference": "1e404fb834a9b1e71eb00f6229dd80bfce86575c"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/n2n/n2n-concurrency/zipball/1e404fb834a9b1e71eb00f6229dd80bfce86575c",
- "reference": "1e404fb834a9b1e71eb00f6229dd80bfce86575c",
- "shasum": ""
- },
- "require": {
- "ext-ctype": "*",
- "ext-mbstring": "*",
- "n2n/n2n-util": "~7.4.3"
- },
- "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/v7.4.1"
- },
- "time": "2025-09-09T13:34:48+00:00"
- },
- {
- "name": "n2n/n2n-config",
- "version": "v7.4.0",
- "source": {
- "type": "git",
- "url": "https://github.com/n2n/n2n-config.git",
- "reference": "21bc4cf550d122a56bd751d5eea788b8a3fac12e"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/n2n/n2n-config/zipball/21bc4cf550d122a56bd751d5eea788b8a3fac12e",
- "reference": "21bc4cf550d122a56bd751d5eea788b8a3fac12e",
- "shasum": ""
- },
- "require": {
- "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/v7.4.0"
- },
- "time": "2024-12-03T23:09:53+00:00"
- },
- {
- "name": "n2n/n2n-context",
- "version": "v7.4.1",
- "source": {
- "type": "git",
- "url": "https://github.com/n2n/n2n-context.git",
- "reference": "3166436910d4051f57c4686170af8a8f3df5b855"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/n2n/n2n-context/zipball/3166436910d4051f57c4686170af8a8f3df5b855",
- "reference": "3166436910d4051f57c4686170af8a8f3df5b855",
- "shasum": ""
- },
- "require": {
- "n2n/n2n-cache": "~7.4",
- "n2n/n2n-reflection": "~7.4",
- "n2n/n2n-util": "~7.4"
- },
- "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/v7.4.1"
- },
- "time": "2025-08-07T13:16:24+00:00"
- },
- {
- "name": "n2n/n2n-impl-persistence-meta",
- "version": "v7.4.0",
- "source": {
- "type": "git",
- "url": "https://github.com/n2n/n2n-impl-persistence-meta.git",
- "reference": "6f0d1ee06bb4d0953e1bce8ee1da0657e8821aa0"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/n2n/n2n-impl-persistence-meta/zipball/6f0d1ee06bb4d0953e1bce8ee1da0657e8821aa0",
- "reference": "6f0d1ee06bb4d0953e1bce8ee1da0657e8821aa0",
- "shasum": ""
- },
- "require": {
- "ext-pdo": "*",
- "n2n/n2n-io": "~7.4",
- "n2n/n2n-l10n": "~7.4",
- "n2n/n2n-persistence": "~7.4",
- "n2n/n2n-reflection": "~7.4",
- "n2n/n2n-util": "~7.4",
- "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/v7.4.0"
- },
- "time": "2025-05-27T15:29:25+00:00"
- },
- {
- "name": "n2n/n2n-impl-persistence-orm",
- "version": "v7.4.1",
- "source": {
- "type": "git",
- "url": "https://github.com/n2n/n2n-impl-persistence-orm.git",
- "reference": "1ec0151f10fcc351c0db8f5a8f7ab1ee517e81a5"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/n2n/n2n-impl-persistence-orm/zipball/1ec0151f10fcc351c0db8f5a8f7ab1ee517e81a5",
- "reference": "1ec0151f10fcc351c0db8f5a8f7ab1ee517e81a5",
- "shasum": ""
- },
- "require": {
- "n2n/n2n-composer-module-installer": "^7.1.5",
- "n2n/n2n-io": "~7.4",
- "n2n/n2n-l10n": "~7.4",
- "n2n/n2n-persistence": "~7.4",
- "n2n/n2n-reflection": "~7.4",
- "n2n/n2n-spec-valobj": "~1.0",
- "n2n/n2n-util": "~7.4"
- },
- "require-dev": {
- "n2n/n2n-impl-persistence-meta": "~7.4",
- "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/v7.4.1"
- },
- "time": "2025-10-01T12:09:09+00:00"
- },
- {
- "name": "n2n/n2n-impl-web-dispatch",
- "version": "v7.4.0",
- "source": {
- "type": "git",
- "url": "https://github.com/n2n/n2n-impl-web-dispatch.git",
- "reference": "5407a947f72b4964b9e1662736e810a50ac38825"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/n2n/n2n-impl-web-dispatch/zipball/5407a947f72b4964b9e1662736e810a50ac38825",
- "reference": "5407a947f72b4964b9e1662736e810a50ac38825",
- "shasum": ""
- },
- "require": {
- "n2n/n2n-composer-module-installer": "^7.1.5",
- "n2n/n2n-io": "~7.4",
- "n2n/n2n-l10n": "~7.4",
- "n2n/n2n-reflection": "~7.4",
- "n2n/n2n-util": "~7.4",
- "n2n/n2n-web": "~7.4"
- },
- "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/v7.4.0"
- },
- "time": "2025-05-03T16:55:41+00:00"
- },
- {
- "name": "n2n/n2n-impl-web-ui",
- "version": "v7.4.0",
- "source": {
- "type": "git",
- "url": "https://github.com/n2n/n2n-impl-web-ui.git",
- "reference": "ec5ba7d758634476a061370223707e2a66036ac4"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/n2n/n2n-impl-web-ui/zipball/ec5ba7d758634476a061370223707e2a66036ac4",
- "reference": "ec5ba7d758634476a061370223707e2a66036ac4",
- "shasum": ""
- },
- "require": {
- "n2n/n2n-composer-module-installer": "^7.1",
- "n2n/n2n-io": "~7.4",
- "n2n/n2n-l10n": "~7.4",
- "n2n/n2n-reflection": "~7.4",
- "n2n/n2n-web": "~7.4"
- },
- "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/v7.4.0"
- },
- "time": "2025-07-20T10:09:37+00:00"
- },
- {
- "name": "n2n/n2n-io",
- "version": "v7.4.2",
- "source": {
- "type": "git",
- "url": "https://github.com/n2n/n2n-io.git",
- "reference": "b2b60612fbce147aa060ef06788cac7c47609a61"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/n2n/n2n-io/zipball/b2b60612fbce147aa060ef06788cac7c47609a61",
- "reference": "b2b60612fbce147aa060ef06788cac7c47609a61",
- "shasum": ""
- },
- "require": {
- "ext-fileinfo": "*",
- "n2n/n2n-concurrency": "~7.4",
- "n2n/n2n-reflection": "~7.4",
- "n2n/n2n-util": "~7.4.3"
- },
- "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/v7.4.2"
- },
- "time": "2025-09-05T12:56:04+00:00"
- },
- {
- "name": "n2n/n2n-l10n",
- "version": "v7.4.0",
- "source": {
- "type": "git",
- "url": "https://github.com/n2n/n2n-l10n.git",
- "reference": "236f14a3326beb1ab0cba6856183e8406b79ad6e"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/n2n/n2n-l10n/zipball/236f14a3326beb1ab0cba6856183e8406b79ad6e",
- "reference": "236f14a3326beb1ab0cba6856183e8406b79ad6e",
- "shasum": ""
- },
- "require": {
- "n2n/n2n-util": "~7.4"
- },
- "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/v7.4.0"
- },
- "time": "2025-05-08T09:01:26+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": "v7.4.0",
- "source": {
- "type": "git",
- "url": "https://github.com/n2n/n2n-mail.git",
- "reference": "4508e1736c198b1f3dc6d441eaf2d7668411af7c"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/n2n/n2n-mail/zipball/4508e1736c198b1f3dc6d441eaf2d7668411af7c",
- "reference": "4508e1736c198b1f3dc6d441eaf2d7668411af7c",
- "shasum": ""
- },
- "require": {
- "n2n/n2n-util": "~7.4"
- },
- "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/v7.4.0"
- },
- "time": "2023-06-08T13:37:14+00:00"
- },
- {
- "name": "n2n/n2n-persistence",
- "version": "v7.4.2",
- "source": {
- "type": "git",
- "url": "https://github.com/n2n/n2n-persistence.git",
- "reference": "2934b018c6edcee3eb94e211a593d2e8c22573b3"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/n2n/n2n-persistence/zipball/2934b018c6edcee3eb94e211a593d2e8c22573b3",
- "reference": "2934b018c6edcee3eb94e211a593d2e8c22573b3",
- "shasum": ""
- },
- "require": {
- "ext-mbstring": "*",
- "ext-pdo": "*",
- "n2n/n2n": "~7.4",
- "n2n/n2n-composer-module-installer": "^7.1.5",
- "n2n/n2n-io": "~7.4",
- "n2n/n2n-reflection": "~7.4.1",
- "n2n/n2n-spec-dbo": "~1.0",
- "n2n/n2n-util": "~7.4.3"
- },
- "require-dev": {
- "phpunit/phpunit": "^9.5"
- },
- "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/v7.4.2"
- },
- "time": "2025-10-31T15:09:10+00:00"
- },
- {
- "name": "n2n/n2n-reflection",
- "version": "v7.4.1",
- "source": {
- "type": "git",
- "url": "https://github.com/n2n/n2n-reflection.git",
- "reference": "8914049af1da4872c0b7b1fb3cc3bfd13bcf2719"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/n2n/n2n-reflection/zipball/8914049af1da4872c0b7b1fb3cc3bfd13bcf2719",
- "reference": "8914049af1da4872c0b7b1fb3cc3bfd13bcf2719",
- "shasum": ""
- },
- "require": {
- "ext-mbstring": "*",
- "n2n/n2n-util": "~7.4.5"
- },
- "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/v7.4.1"
- },
- "time": "2025-09-10T13:48:49+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-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": "v7.4.6",
- "source": {
- "type": "git",
- "url": "https://github.com/n2n/n2n-util.git",
- "reference": "0170ed5f2f9d2d988cc7e94418074a3e3047ed3a"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/n2n/n2n-util/zipball/0170ed5f2f9d2d988cc7e94418074a3e3047ed3a",
- "reference": "0170ed5f2f9d2d988cc7e94418074a3e3047ed3a",
- "shasum": ""
- },
- "require": {
- "ext-curl": "*",
- "ext-gd": "*",
- "ext-mbstring": "*",
- "psr/container": "^2.0",
- "psr/http-factory": "^1",
- "psr/http-message": "^1|^2"
- },
- "require-dev": {
- "phpunit/phpunit": "^9.6.19"
- },
- "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/v7.4.6"
- },
- "time": "2025-11-04T16:16:27+00:00"
- },
- {
- "name": "n2n/n2n-validation",
- "version": "v7.4.4",
- "source": {
- "type": "git",
- "url": "https://github.com/n2n/n2n-validation.git",
- "reference": "40b87b7e32dce3366fbf1a903cbbdbbde5d5c408"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/n2n/n2n-validation/zipball/40b87b7e32dce3366fbf1a903cbbdbbde5d5c408",
- "reference": "40b87b7e32dce3366fbf1a903cbbdbbde5d5c408",
- "shasum": ""
- },
- "require": {
- "ext-mbstring": "*",
- "n2n/n2n-l10n": "~7.4",
- "n2n/n2n-reflection": "~7.4",
- "n2n/n2n-util": "~7.4.3"
- },
- "require-dev": {
- "phpunit/phpunit": "^9.5"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "n2n\\validation\\": "src/app/n2n/validation"
- }
- },
- "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": "bind/json support for n2n framework",
- "homepage": "http://n2n.rocks/",
- "keywords": [
- "batch job",
- "n2n"
- ],
- "support": {
- "issues": "https://github.com/n2n/n2n-validation/issues",
- "source": "https://github.com/n2n/n2n-validation/tree/v7.4.4"
- },
- "time": "2025-11-03T11:02:40+00:00"
- },
- {
- "name": "n2n/n2n-web",
- "version": "v7.4.5",
- "source": {
- "type": "git",
- "url": "https://github.com/n2n/n2n-web.git",
- "reference": "2b40e40d74d69d64556b1458c551245e6e83efca"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/n2n/n2n-web/zipball/2b40e40d74d69d64556b1458c551245e6e83efca",
- "reference": "2b40e40d74d69d64556b1458c551245e6e83efca",
- "shasum": ""
- },
- "require": {
- "ext-mbstring": "*",
- "ext-simplexml": "*",
- "n2n/n2n": "~7.4",
- "n2n/n2n-cache": "~7.4",
- "n2n/n2n-composer-module-installer": "^7.1.5",
- "n2n/n2n-context": "~7.4",
- "n2n/n2n-l10n": "~7.4",
- "n2n/n2n-reflection": "~7.4",
- "n2n/n2n-util": "~7.4.3",
- "psr/http-factory": "^1",
- "psr/http-message": "^1|^2"
- },
- "require-dev": {
- "phpunit/phpunit": "^9.5"
- },
- "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/v7.4.5"
- },
- "time": "2025-09-11T16:01:13+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.0.0",
- "source": {
- "type": "git",
- "url": "https://github.com/doctrine/instantiator.git",
- "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/doctrine/instantiator/zipball/c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
- "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
- "shasum": ""
- },
- "require": {
- "php": "^8.1"
- },
- "require-dev": {
- "doctrine/coding-standard": "^11",
- "ext-pdo": "*",
- "ext-phar": "*",
- "phpbench/phpbench": "^1.2",
- "phpstan/phpstan": "^1.9.4",
- "phpstan/phpstan-phpunit": "^1.3",
- "phpunit/phpunit": "^9.5.27",
- "vimeo/psalm": "^5.4"
- },
- "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.0.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": "2022-12-30T00:23:10+00:00"
- },
- {
- "name": "myclabs/deep-copy",
- "version": "1.13.4",
- "source": {
- "type": "git",
- "url": "https://github.com/myclabs/DeepCopy.git",
- "reference": "07d290f0c47959fd5eed98c95ee5602db07e0b6a"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/07d290f0c47959fd5eed98c95ee5602db07e0b6a",
- "reference": "07d290f0c47959fd5eed98c95ee5602db07e0b6a",
- "shasum": ""
- },
- "require": {
- "php": "^7.1 || ^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.13.4"
- },
- "funding": [
- {
- "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
- "type": "tidelift"
- }
- ],
- "time": "2025-08-01T08:46:24+00:00"
- },
- {
- "name": "n2n/hangar",
- "version": "v7.3.1",
- "source": {
- "type": "git",
- "url": "https://github.com/n2n/hangar.git",
- "reference": "2ba330722e826a44770c7a05a0b8b329f36856a8"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/n2n/hangar/zipball/2ba330722e826a44770c7a05a0b8b329f36856a8",
- "reference": "2ba330722e826a44770c7a05a0b8b329f36856a8",
- "shasum": ""
- },
- "require": {
- "n2n/hangar-api": "1.0.x-dev",
- "n2n/n2n": "^7.3",
- "n2n/n2n-context": "^7.3",
- "n2n/n2n-impl-web-dispatch": "^7.3",
- "n2n/n2n-impl-web-ui": "^7.3",
- "n2n/n2n-mail": "^7.3",
- "n2n/n2n-persistence": "^7.3",
- "n2n/n2n-web": "^7.3",
- "n2n/phpbob": "1.0.x-dev",
- "php": ">=7.0"
- },
- "bin": [
- "bin/hangar"
- ],
- "type": "n2n-skeleton-component",
- "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/v7.3.1"
- },
- "time": "2023-01-31T11:19:32+00:00"
- },
- {
- "name": "n2n/hangar-api",
- "version": "1.0.x-dev",
- "source": {
- "type": "git",
- "url": "https://github.com/n2n/hangar-api.git",
- "reference": "10dde727dca0800d436f1ff45f2f15c5e0277964"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/n2n/hangar-api/zipball/10dde727dca0800d436f1ff45f2f15c5e0277964",
- "reference": "10dde727dca0800d436f1ff45f2f15c5e0277964",
- "shasum": ""
- },
- "require": {
- "n2n/n2n-persistence": "^7.2.33",
- "n2n/n2n-reflection": "^7.2.33",
- "n2n/n2n-util": "^7.2.33",
- "n2n/n2n-web": "^7.2.33",
- "n2n/phpbob": "^1.0.7",
- "php": ">=7.0"
- },
- "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/1.0.x"
- },
- "time": "2021-07-31T17:30:07+00:00"
- },
- {
- "name": "n2n/n2n-test",
- "version": "v7.4.2",
- "source": {
- "type": "git",
- "url": "https://github.com/n2n/n2n-test.git",
- "reference": "5cfdd550b41098ab27ee1295b592777001660c4a"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/n2n/n2n-test/zipball/5cfdd550b41098ab27ee1295b592777001660c4a",
- "reference": "5cfdd550b41098ab27ee1295b592777001660c4a",
- "shasum": ""
- },
- "require": {
- "ext-fileinfo": "*",
- "n2n/n2n-util": "^7.2.33"
- },
- "require-dev": {
- "n2n/n2n": "~7.4",
- "n2n/n2n-impl-persistence-meta": "^7.4",
- "n2n/n2n-impl-persistence-orm": "^7.4",
- "n2n/n2n-persistence": "~7.4",
- "n2n/n2n-web": "~7.4.1",
- "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/v7.4.2"
- },
- "time": "2025-11-01T13:45:04+00:00"
- },
- {
- "name": "n2n/phpbob",
- "version": "1.0.x-dev",
- "source": {
- "type": "git",
- "url": "https://github.com/n2n/phpbob.git",
- "reference": "d35725bf48abb3f52e3760afc06e77d727d9e10c"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/n2n/phpbob/zipball/d35725bf48abb3f52e3760afc06e77d727d9e10c",
- "reference": "d35725bf48abb3f52e3760afc06e77d727d9e10c",
- "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/develop"
- },
- "time": "2023-01-09T17:41:07+00:00"
- },
- {
- "name": "nikic/php-parser",
- "version": "v5.7.0",
- "source": {
- "type": "git",
- "url": "https://github.com/nikic/PHP-Parser.git",
- "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/dca41cd15c2ac9d055ad70dbfd011130757d1f82",
- "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82",
- "shasum": ""
- },
- "require": {
- "ext-ctype": "*",
- "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.7.0"
- },
- "time": "2025-12-06T11:56:16+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.31",
- "source": {
- "type": "git",
- "url": "https://github.com/sebastianbergmann/phpunit.git",
- "reference": "945d0b7f346a084ce5549e95289962972c4272e5"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/945d0b7f346a084ce5549e95289962972c4272e5",
- "reference": "945d0b7f346a084ce5549e95289962972c4272e5",
- "shasum": ""
- },
- "require": {
- "doctrine/instantiator": "^1.5.0 || ^2",
- "ext-dom": "*",
- "ext-json": "*",
- "ext-libxml": "*",
- "ext-mbstring": "*",
- "ext-xml": "*",
- "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.9",
- "sebastian/diff": "^4.0.6",
- "sebastian/environment": "^5.1.5",
- "sebastian/exporter": "^4.0.8",
- "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.31"
- },
- "funding": [
- {
- "url": "https://phpunit.de/sponsors.html",
- "type": "custom"
- },
- {
- "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/phpunit/phpunit",
- "type": "tidelift"
- }
- ],
- "time": "2025-12-06T07:45:52+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.9",
- "source": {
- "type": "git",
- "url": "https://github.com/sebastianbergmann/comparator.git",
- "reference": "67a2df3a62639eab2cc5906065e9805d4fd5dfc5"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/67a2df3a62639eab2cc5906065e9805d4fd5dfc5",
- "reference": "67a2df3a62639eab2cc5906065e9805d4fd5dfc5",
- "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.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/comparator",
- "type": "tidelift"
- }
- ],
- "time": "2025-08-10T06:51:50+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.8",
- "source": {
- "type": "git",
- "url": "https://github.com/sebastianbergmann/exporter.git",
- "reference": "14c6ba52f95a36c3d27c835d65efc7123c446e8c"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/14c6ba52f95a36c3d27c835d65efc7123c446e8c",
- "reference": "14c6ba52f95a36c3d27c835d65efc7123c446e8c",
- "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.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/exporter",
- "type": "tidelift"
- }
- ],
- "time": "2025-09-24T06:03:27+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.6",
- "source": {
- "type": "git",
- "url": "https://github.com/sebastianbergmann/recursion-context.git",
- "reference": "539c6691e0623af6dc6f9c20384c120f963465a0"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/539c6691e0623af6dc6f9c20384c120f963465a0",
- "reference": "539c6691e0623af6dc6f9c20384c120f963465a0",
- "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.6"
- },
- "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": "2025-08-10T06:57:39+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.3.0"
- }
|